-2
votes
1answer
55 views
What’s the strangest corner case you’ve seen in C/C++ ? [closed]
What’s the strangest corner case you’ve seen in C/C++ ?
0
votes
2answers
27 views
Counting div elements based on id
I have a page similar to:
<div id="content">
<div id="boxes">
<div id="box:content:1:text" />
<div id="box:content:2:text" />
<div id="another_id" …
88
votes
39answers
2k views
Is 4-5 years the “Midlife Crisis” for a programming career?
I’ve been programming C# professionally for a bit over 4 years now. For the past 4 years I’ve worked for a few small/medium companies ranging from “web/ads agencies”, small industr …
0
votes
2answers
21 views
A tough table transforming into XML
Hey guys,
I want to transform a Table like this
ColumnA ColumnB
a 11
b &n …
0
votes
3answers
35 views
Append value to multidimensional array
function append (array, value, dimension) {
switch (dimension) {
case 0:
array.push( value );
break;
case 1:
array[array.length-1].push( value );
…
0
votes
3answers
35 views
How to send js array via ajax?
I can only send string or numeric values,how to send an array?
1
vote
8answers
79 views
what is an abstract data type in object oriented programming?
what is an abstract data type in object oriented programming? I gone through wiki.But i dint get cleared.Please make me clear
1
vote
4answers
18 views
Declaring an array whose size is declared as extern const
I have a problem initializing an array whose size is defined as extern const.
I have always followed the rule that global variables should be declared as extern in the header files …
3
votes
3answers
67 views
Interesting Interview question
Give an algorithm for the following problem-
We have an N X N array of 0's and 1's. Each row and column can be toggled. Toggling a row toggles all the bits in the row, same for co …
0
votes
3answers
24 views
Besides button, submit and <a></a>, is there other way that can make text clickable?
Besides <input type="button" value="Click me" />, <input type="submit" value="Click me" />, <a>Click me</a>, is there another way that can make "Click me" c …
1
vote
7answers
63 views
How to stop a java application?
I have made a java application and have packed it into an executable jar file. Now a user can start that program from either of the following two ways:
Start if from command prom …
0
votes
1answer
77 views
What Wiki system does Stackoverflow use? [closed]
Any one knows the kind of wiki system Stackoverflow uses? Or any recommendations for the best wikis out there that can do a decent job like stackoverflow?
-Merci dank
4
votes
4answers
34 views
What is the use of Python’s basic optimizations mode? (`python -O`)
Python has a flag -O that you can execute the interpreter with. The option will generate "optimized" bytecode (written to .pyo files), and given twice, it will discard docstrings. …
0
votes
3answers
57 views
Shva in GMail’s URL, What is this?
Hi,
I wonder what this url portions:
https://mail.google.com/mail/?zx=1efobg68r40co&shva=1#inbox
If you changed it, nothing happens!!
I know GMail is not an Open-Source progr …
2
votes
3answers
43 views
What cool hacks can be done using sys.settrace?
I love being able to modify the arguments the get sent to a function, using settrace, like :
import sys
def trace_func(frame,event,arg):
value = frame.f_locals["a"]
if va …
