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
874 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 …
5
votes
1answer
230 views
‘default’ as a variable name
While debugging some code, I came across an array named default. I thought that keywords were not allowed as variable names.
#include "stdafx.h"
#include <stdio.h>
int main()
{
int default …
3
votes
4answers
340 views
C function seemingly not defined anywhere!
I'm looking at the vim source code, specifically the file normal.c, and I see this function nv_operator being used, but it's not defined anywhere (I grepped the entire src directory)
It's only …
3
votes
3answers
222 views
Logging causing XML Parsing to break?!
I'm seeing something very very strange happening in a Flex app I'm maintaining.
I've been going through it removing all calls to trace() and replacing it with calls into the logging framework (using …
3
votes
28answers
870 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?
3
votes
2answers
441 views
Why is Java on a Vista box reporting it is on XP?
I have stumbled across something truly puzzling regarding System.getProperty("os.name"). According to a Java bug on the matter and the Java 5 release notes (search for "os.name"), there was a bug in …
2
votes
3answers
147 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 = …
2
votes
3answers
129 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 …
2
votes
4answers
176 views
Weird behavior in referring to global variable. Is this a bug in javascript? Surely it isn’t!
Consider the following piece of code.
<html>
<body>
<script>
var x = 5; //globally declared
function showX()
{
alert("x="+x); //trying to display global value
var …
2
votes
1answer
152 views
Weird problem with PHP mail() under Linux.
This is the case when it "works on my machine". Except that my machine is Windows, and the target is some sort of Linux.
The idea is that the mail() function puts a newline between the MIME-Version …
1
vote
1answer
133 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 …
1
vote
12answers
306 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 …
1
vote
3answers
111 views
How can parallelism affect number of results?
I have a fairly complex query that looks something like this:
create table Items(SomeOtherTableID int,SomeField int)
create table SomeOtherTable(Id int,GroupID int)
with cte1 as
(
select
…
0
votes
1answer
58 views
Very weird errors when linking (LNK1000)?
Error 1 fatal error LNK1000: Internal
error during
IncrBuildImage MFC_Test MFC_Test
Why do I get this weird error every 2nd time I compile?
