vote up -1 vote down star

Hi,

As a programmer, I know sometime all has to write some code which they think -"Thank God! It's done" or "Ohh, how did I write it?"...

Do you have any such piece of code.

flag
8  
Community wiki, anyone? – Aistina Sep 8 at 9:57
2  
-1: You could at least have given an example yourself. – Jon Cage Sep 8 at 10:11

8 Answers

vote up 4 vote down

I avoid writing tricky code. Not fun, neither to anyone nor to myself six months later.

link|flag
1  
So you don't code at all? – Sam Sep 8 at 10:13
I believe in writing tricky code / quick fix in crunch situations, But always get back to it after crunch time and fixit. – Sunny Shah Oct 2 at 11:25
vote up 2 vote down

The trickiest thing for me was a ticketing system that allocated seating, choosing seats filling exact gaps and allocating the best seats first. This involved some tricky SQL to get contiguous(sequential) seat number ranges available.

link|flag
Smells like NP problem cheat ^^ – Clement Herreman Sep 8 at 10:03
what does that mean? – Mark Redman Sep 8 at 10:06
@Mark See NP Complete: en.wikipedia.org/wiki/Np_complete – mezoid Sep 8 at 10:26
I dont know so much, NP indicates that no efficient algorithm would exist, but the implementation in the end was pretty sound and straight forward after working out the details. – Mark Redman Sep 8 at 10:51
vote up 0 vote down

a python script i wrote to learn python:

it takes a keyboard layout and a text and calculates the way every single finger has to go writing that text.

i think the tricky part here was learning python

link|flag
vote up 0 vote down

I once had to write code, in Assembler, on a Mainframe, that goes through a large body of code and changes parenthesis direction (i.e. "(hello)" turns to ")hello(" and vice versa - don't ask me why).
New commands were coming in all the time, and at one time, I started re-reversing already-reversed code and fun and merriment ensued (not :)).

As someone who came from a C/C++ background, writing this all in Assembler, compiled in large JCL batch files, it was hell on earth.

link|flag
Why? For at least fifteen characters. – Sam Sep 8 at 10:12
I'm also curious why anyone would want that. – Aistina Sep 8 at 11:15
I guess adding "don't ask why" doesn't carry any weight any more :) Ok, here's the reason: it was for a natural language compiler, and one of the languages supported was Hebrew - a right-to-left language. For some reason, whenever the text direction on the screen is reverted, the Mainframe reversed every parenthesis in the code. I had to write the code that went and reversed them back. But if someone went back and edited his saved code... the parenthesis reversed right back - and back to square one we went :) – Traveling Tech Guy Sep 8 at 14:22
vote up 0 vote down

I don't recall the specifics well, but a couple times I used something of this form:

do {
    switch(foo) {
    case 1:
        break; // syntactically breaks switch, but actually breaks loop
    case 2:
        continue; // as if this were supported by switch
    }
} while(false);
link|flag
vote up 0 vote down

The trickiest code I ever wrote was a set of Prolog predicates to generalize a case defined in terms of of constant expressions by turning those constants into variables. One weekend, over 30 hours... good times.

I was the only person who figured out how to do it, so in all subsequent semesters, Dr. Upal just gave people the code. That takes all the fun out of it! LOL.

link|flag
vote up 0 vote down

A parser for Mork in Java using regular expressions. It was a bad idea.

link|flag
vote up -3 vote down

C#:

Console.WriteLine("Hello world!");
link|flag
5  
Pointless – tomfanning Sep 8 at 10:01
+1 with tomfanning, uselles I'd say – Clement Herreman Sep 8 at 10:02
2  
...if you're Anders Hejlsberg doing that for the first time! – Mark Redman Sep 8 at 10:04
6  
You mean the humour tag? Well, it wasn't very funny... – tomfanning Sep 8 at 10:09
1  
Funny how my rep just took a hit of a few points... – tomfanning Sep 8 at 10:10
show 3 more comments

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.