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 …
23
votes
83answers
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 …
5
votes
9answers
337 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)
{
}
…
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 …
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 …
2
votes
3answers
171 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)
{
$cliTemp1[] …
1
vote
2answers
87 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
212 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);
…
1
vote
1answer
101 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 …
1
vote
5answers
3k views
Could not load type from assembly error
I have written the following simple test in trying to learn Castle Windsor's Fluent Interface:
using NUnit.Framework;
using Castle.Windsor;
using System.Collections;
using …
0
votes
2answers
39 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 …
0
votes
2answers
26 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 …
0
votes
4answers
184 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 …
0
votes
2answers
212 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 …
0
votes
1answer
119 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 …
