23
votes
82answers
3k views
What is the strangest/weirdest program you’ve ever made?
Programmers are strange people. We build things out of thin air, a part of our sanity and with weird codes that would make any grown sane man cry.
But sometimes, a programmer builds a program that is …
31
votes
121answers
6k views
What is the strangest programming language you have used?
For me I think it has to be the scripting language of an old proprietary telephony platform I used in the early 2000s. The language itself was not so bad, but the fact that it was meant to be edited …
0
votes
3answers
995 views
C#: AcceptButton not working??
Ok, this is bugging me, and I just can't figure out what is wrong...
I have made two forms. First form just has a simple button on it, which opens the other as a dialog like so:
using (Form2 f = new …
0
votes
2answers
29 views
PHP scandir strange behaviour
ok, so what i'm trying to do is to scan the "previous" folder.
$scanned = scandir("..");
foreach($scanned as $file){
if(is_file($file)){
print $file."<br />";
}
}
even though in my …
5
votes
9answers
314 views
C# Generics - Strange Interview Question
An interviewer argued me "Genrics are not completely Genrics",
He provided the example (Parameters int k,int d are not generic)
public static void PrintThis<T>(T a, T b, T c, int k,int d)
{
}
…
0
votes
2answers
25 views
Unable to understand this strange MySql client behavior.
I'm not sure what's going on here with the line art output by /usr/bin/mysql here.
The problem: I'm unable to redirect the line art (used in creating the table columns) to a file!
First, I do this …
1
vote
2answers
82 views
layout falls apart on ie8 on some machines
Hi all,
I issued a strange behaviour from IE8. We uploaded asp.net application on iis6.
Everything works fine and layout is in place.
But on my colleague machine, with same browser(IE8), layout falls …
1
vote
1answer
99 views
VBA Code closes my separate .Net Winform App!?!?
The below code is the close routine of an Access App our BA wrote. When executed it is not only closing the Access App but my C# winform app as well, on the same computer. The Access app is named …
0
votes
4answers
180 views
os.path.basename works with URLs, why?
>>> os.path.basename('http://example.com/file.txt')
'file.txt'
.. and I thought os.path.* work only on local paths and not URLs? Note that the above example was run on Windows too .. with …
2
votes
3answers
1k views
Drawing a transparent button in C# Winforms
I'm trying to create a transparent button in C# (.NET 3.5 SP1) to use in my WinForms application. I've tried everything to get the button to be transparent (it should show the gradient background …
1
vote
1answer
210 views
Javascript for/in loops through properties, not indexes and returns strings.
Ok, I have this code:
var room = [ { time: 0, people: 0 } ];
and then:
time = 5;
for( var i in room ) {
if( room[i].time < time ){
spliceIndex = i + 1;
}
}
console.log(spliceIndex);
…
0
votes
2answers
204 views
Weird flex date issue
Flex is driving me CRAZY and I think it's some weird gotcha with how it handles leap years and none leap years. So here's my example. I have the below dateDiff method that finds the number of days or …
3
votes
1answer
90 views
cryptic comment in jdk source: // HD, Section 2-1
i just stumbled onto this comment.
public static int lowestOneBit(int i) {
// HD, Section 2-1
return i & -i;
}
in the 1.5 java source.
what does this comment mean? is it a …
0
votes
1answer
117 views
Strange ‘Unknown Property’ error in grails
hi. i've just been giving grails a go, followed the most basic tutorial and that worked, but then moved onto the next most basic, where I create one class which has a many to one relationship to …
-1
votes
3answers
137 views
Strange behavior of javascript
Hi I'm using following function to goto a proxypage on a click of href. for first click to the href it works fine. but second click onwards the code does not call the …
