Skip to main content
Filter by
Sorted by
Tagged with
0 votes
1 answer
140 views

Why, objectively, in programming languages in general, as far as I know, isn't possibile to compare 3 variable at once doing something like this: if(a == b == c) { do something; } but it is ...
willy wonka's user avatar
  • 1,822
0 votes
2 answers
100 views

I would like to use certain keywords and unary/binary operators as functions. For example: _not = lambda a: not a _plus = lambda a, b: a + b _or = lambda a, b: a | b I think there is an opportunity ...
Evan's user avatar
  • 489
1 vote
1 answer
473 views

Is it necessary to call cleanup() before close() in a PythonInterpreter in Jython every time? I've been reading the docs, but I don't find much information about this function. The javadocs don't say ...
MiguelMJ's user avatar
  • 2,239
1 vote
1 answer
343 views

JavaScript was designed specifically for browsers. It wasn't pulled off the shelf. So what were the reasons behind making it a scripting language rather than a compiled language? With the ...
Croolsby's user avatar
  • 1,476
-2 votes
1 answer
31 views

I have a table on my web-page with thousands of entries and it shows 20 entries at a time. I want to take screenshots of all the entries page by page and then create a video of them using code. What ...
Shashank Gupta's user avatar
0 votes
1 answer
404 views

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="Content-type" content="text.html" charset="utf-8"> <...
Thamber's user avatar
0 votes
1 answer
271 views

I am using below command to get the child LI nodes for the element ID 'treeview_sub' but it returns me the count of all the LI present recursively. var treeLILength = document.getElementById("...
Prayas Bhatnagar's user avatar
2 votes
1 answer
1k views

What I want is to edit PDF file, and remove digital signature form field. I would like to do that without buying Adobre Pro liscence. I remember some time ago I opened PDF file in text editor and saw ...
shjeff's user avatar
  • 443
2 votes
1 answer
141 views

IronRuby and IronPython have custom built-ins, standard modules and you can write code straight out of hand(Directly using statements and declarations in the code), instead of using namespaces and ...
Mr.DeleteMyMessages's user avatar
1 vote
2 answers
2k views

I've started long ago to work on a dynamic graph visualizer, editor and algorithm testing platform (graphs with nodes and arcs, not the other kinds). For the algorithm testing platform i need to let ...
Barnack's user avatar
  • 951
0 votes
3 answers
679 views

I have one txt file that has bunch of class names. I would like to read those class names line by line in bash script and assign that value to a variable to use it globally in another command in the ...
dicle's user avatar
  • 1,140
0 votes
0 answers
157 views

I am trying to fix the PowerShell script below to list the member of AD security group called Domain Admins and export it to .CSV file. $ADGroupType = 'security' $ADGroupNamePattern = 'Domain Admins' ...
Senior Systems Engineer's user avatar
3 votes
3 answers
12k views

I am using Jmeter 5.0 where i have piece of java code written inside a JSR223 PostProcessor. The code is as follows - import java.util.Map; import java.util.HashMap; Map gamePlayHistoryMap = new ...
Aritro Sen's user avatar
0 votes
1 answer
768 views

By searching I have found a similarity that is both import libraries. But unable to point out any other similarities, as everywhere I can see only differences.
Amrita CSE's user avatar
5 votes
1 answer
242 views

I am currently looking into implementing a cleaner way to call native C functions from the Gravity scripting language. So far, the most simplistic example would be this one: int add(int lhs, int rhs)...
Ingwie Phoenix's user avatar

15 30 50 per page
1
2 3 4 5
19