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 …
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 buil …
5
votes
9answers
305 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 …
0
votes
2answers
20 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 />";
}
}
e …
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 grad …
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 …
0
votes
3answers
954 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:
…
0
votes
4answers
175 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 W …
1
vote
2answers
80 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 browse …
1
vote
1answer
208 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.l …
1
vote
1answer
97 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 Ac …
0
votes
2answers
197 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 th …
3
votes
1answer
89 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 commen …
0
votes
4answers
3k views
The filename, directory name, or volume label syntax is incorrect, c#
i've written a console application deploy.exe which runs a batch script.
Process p1 = new Process();
p1.StartInfo.FileName = AppDomain.CurrentDomain.BaseDirectory + "installer.bat …
2
votes
3answers
166 views
My script stops after a foreach loop
Hi,
My script is acting strange. After a foreach loop, the script stops. I don't have any error, any warning or notice from Apache.
This is the code:
foreach($clientFact as $line …
