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 …
0
votes
1answer
53 views
UIImagePickerController weirdness …
Hello, all ...
UIImagePickerController is easy to use, but i'm all of a sudden finding it exasperating when I didn't find it so before. What's happening is that sometimes the …
0
votes
3answers
133 views
Access Violation Reading Location on std::set::erase
Hi.
I have recently catched the following crash in my application:
m_players[0].erase(plr); -- CRASHES HERE
m_players[1].erase(plr);
m_players is declared as:
set m_players[2];
Visual Studio …
0
votes
1answer
95 views
WPF listbox : problem with selection
Hello.
In my XAML file, I have a ListBox declared like this :
<ListBox x:Name="lstDeck" Height="280" ItemsSource="{Binding Path=Deck}" >
…
0
votes
1answer
112 views
Flash - Firefox issue
I realised that if I do have a flash object and do not include a 'wmode' attribute, I will not be able to overlay HTML because the flash will always play on top. But if I do include a …
2
votes
3answers
137 views
Getting functions from another script in JS
I load this JS code from a bookmarklet:
function in_array(a, b)
{
for (i in b)
if (b[i] == a)
return true;
return false;
}
function include_dom(script_filename) {
var html_doc = …
0
votes
1answer
24 views
Weird result comparing property values using reflection
Can someone explain why this is occurring? The code below was executed in the immediate window in vs2008. The prop is an Int32 property (id column) on an object created by the entity framework.
The …
5
votes
9answers
812 views
Weird Objective-C Mod Behavior
So I thought that negative numbers, when mod'ed should be put into positive space... I cant get this to happen in objective-c
I expect this:
-1 % 3 = 2
0 % 3 = 0
1 % 3 = 1
2 % 3 = 2
But get …
1
vote
1answer
132 views
The weirdest css issue I have ever seen
Below I have 2 css codes for a div, please note that the first one does not even have a div on the page or ANYTHING with it's name on it. I can also rename it to anything.
Now where the weird part …
0
votes
3answers
331 views
Why is the user.dir system property working in Java?
Almost every article I read told me that you can't have chdir in Java. The accepted answer to this question says you can't do it in Java.
However, here's some of the stuff I tried :
geo@codebox:~$ …
0
votes
3answers
144 views
Any Reason Why IsNumeric() Fails On A Number?
I currently have this line of code which has been working for the past 6 months:
If IsNumeric(txtProductID.Text) Then
...do stuff
Else
Dim msg As String = "Error!"
End If
All of the sudden, …
1
vote
12answers
304 views
Why doesn’t this overflow?
Given this code:
int x = 20000;
int y = 20000;
int z = 40000;
// Why is it printing WTF? Isn't 40,000 > 32,767?
if ((x + y) == z) Console.WriteLine("WTF?");
And knowing an int can hold −32,768 …
0
votes
1answer
86 views
fullcalendar javascript issue - its not showing the events in IE?
On my team website: http://www.berzerkers.org, head over to the Schedule. The calendar is supposed to have a few events listed - it works fine in Firefox, Chrome and Safari - but not in IE...what is …
3
votes
28answers
864 views
What is the weirdest commercial language/system you’ve ever used?
Ah. I know everyone of you have worked on a system so weird only a handful of people know about. So what about it?
2
votes
3answers
124 views
ObjectDataSource reacts to commented-out GridView?
I came across a very strange behavior in asp.net's ObjectDataSource, the description to reproduce is somewhat long, so bear with me while I set the scene.
So, imagine a trivial …
