up vote 0 down vote favorite
share [g+] share [fb]

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.

link|improve this question
3  
-1: You could at least have given an example yourself. – Jon Cage Sep 8 '09 at 10:11
clever is highly overrated. clarity is to be cherished. – Sky Sanders Apr 22 '10 at 2:46
4  
Why do people upvote comments like "Community wiki, anyone?". Its the equivalent of "first post" on forums for anything thats an open question. – Daniel Apr 22 '10 at 3:18
Is this [practical-programming] like "standard practice", or like a practical joke? – Mark Rushakoff May 19 '10 at 16:44
Daniel: You don't get rep points for comment votes, so it's not all that important. People just use it to show agreement with the comment. (They too think that it should be CW.) – Ben Alpert Jun 29 '10 at 3:31
feedback

closed as not constructive by Bill the Lizard Oct 26 '11 at 12:31

This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion. See the FAQ.

12 Answers

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

link|improve this answer
2  
So you don't code at all? – Sam Sep 8 '09 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. – SunnyShah Oct 2 '09 at 11:25
1  
Wallah - I always want to go back after crunch time to improve tricky/poor code, but all too often crunch time is quickly followed by another crunch time. :( – Bill W Feb 19 '10 at 12:52
feedback

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|improve this answer
Smells like NP problem cheat ^^ – Clement Herreman Sep 8 '09 at 10:03
what does that mean? – Mark Redman Sep 8 '09 at 10:06
@Mark See NP Complete: en.wikipedia.org/wiki/Np_complete – mezoid Sep 8 '09 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 '09 at 10:51
feedback

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|improve this answer
feedback

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|improve this answer
feedback

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|improve this answer
Why? For at least fifteen characters. – Sam Sep 8 '09 at 10:12
I'm also curious why anyone would want that. – Aistina Sep 8 '09 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 '09 at 14:22
Actually, I think the real 'why' question is 'why write this in assembler'. It's a one-liner with tr. – Chris Dodd Apr 22 '10 at 3:20
Because it ran as a procedure inside a database - written in Assembler. – Traveling Tech Guy Apr 22 '10 at 4:33
feedback

A program that I wrote to check Tripit and place a graphic that says "Yes Honey, those jeans DO make your butt look fat" in my wife's Chumby stream only when I'm out of town. I did think "Thank God! It's done" but not until I was safely in the hotel. Somebody had to tell her.

link|improve this answer
feedback

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|improve this answer
feedback

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

link|improve this answer
feedback

I've logged 100+ development hours on this one: http://stackoverflow.com/questions/2550315/

Who'd thunk that adding a button to a report row would be so freaking frustrating >_<

link|improve this answer
feedback

It was a function to implement US Patent 5,873,116. The function in question wound up being about 10 or 15 lines of actual code. It took six months to work through all the different problems that could be caused by the different models of memory caching hardware that were involved.

link|improve this answer
feedback

It was pretty late in the evening but I once got

1/0

to return an rational number. I don't remember how it did it though..

link|improve this answer
feedback

C#:

Console.WriteLine("Hello world!");
link|improve this answer
6  
Pointless – tomfanning Sep 8 '09 at 10:01
2  
...if you're Anders Hejlsberg doing that for the first time! – Mark Redman Sep 8 '09 at 10:04
6  
You mean the humour tag? Well, it wasn't very funny... – tomfanning Sep 8 '09 at 10:09
1  
Funny how my rep just took a hit of a few points... – tomfanning Sep 8 '09 at 10:10
1  
Actually you know, if this was the first ever code you wrote there would be an argument for saying it's the trickiest 'cause you've got to grasp the concept of a programming language to get this far – Cruachan Nov 21 '09 at 20:14
show 3 more comments
feedback

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