0
votes
1answer
20 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 imag …
22
votes
81answers
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 …
0
votes
1answer
52 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}" >
<Lis …
0
votes
1answer
71 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 includ …
0
votes
3answers
111 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]; …
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 en …
2
votes
3answers
129 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) {
…
1
vote
1answer
130 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 wh …
0
votes
3answers
274 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 …
5
votes
9answers
700 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 % …
0
votes
3answers
137 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
…
1
vote
12answers
302 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 i …
0
votes
1answer
58 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 n …
3
votes
28answers
851 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
121 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 O …
