vote up 9 vote down star
6

Just curious, I'm wondering what all you experienced programmers or newbies (like me) out there have done. So what's the HARDEST most complicated program you've written?

flag
should be a community wiki – aJ Apr 18 at 13:52
what a question.. and looking at below there is a wonderful trend emerging. Youth vs Experience.. :) – rama-jka toti Apr 18 at 16:43
yes thats what i was looking for :) – RaouL Apr 18 at 17:16

18 Answers

vote up 16 vote down check

The application I created some four years ago lets people create visualisations of their houses/cars etc painted in different colors. Now that can certainly be done in Photoshop, but there was much, much more to it.

Viresol output preview

link|flag
And why was it so hard? – Ćukasz Lew Apr 18 at 15:50
2  
It just happens to be the hardest I have written so far :) Not that it was too hard, but basically recreating a lot of Photoshop's capabilities was really hard for me. I was the one and only developer on that team and I was 19-20 years old. Layers, magic wand, color models, shading, textures, optimization for performance, and what you see is just one of 6 modules of the final product. Other modules would provide you with formulae for the color shades used in the project, or look up closest ones – MasterPeter Apr 18 at 16:26
1  
V.big job for a one man show... I'm impressed as a junior programmer myself – Aaron Apr 23 at 16:41
vote up 10 vote down

a compiler

link|flag
Would love to hear more about it... – Liran Orevi Jun 8 at 21:01
vote up 10 vote down

The one I didn't want to, or have fun, writing.

link|flag
vote up 8 vote down

I once had to write a compression algorithm that used BWT (Burrows Wheeler Transform) and there is a step in the algorithm where you have to create an HUGE matrix. I had issues with memory problems and speed because the matrix was so huge. Come to find out, there is a really simple algorithm that I could've used and avoided the matrix entirely.

I also had to write a simple operating system in ASM and that was pretty tricky.

link|flag
vote up 4 vote down

An application that compiled and ran on both - windows and mac with one codebase.

link|flag
back in the 90's - which was without a common framework like WxWidgets – jim May 7 at 13:13
vote up 4 vote down

A general purpose modem driver for a flaky online service. It also had to support 30 types of modem (before Hayes modems). They all had different timing characteristics.

It had to be written in both 8086 and Z80 assembler for the CP/M and DOS versions of our products. I still have nightmares about a certain half-duplex modem...

link|flag
vote up 3 vote down

Automation with COM, with execution across the Grid

link|flag
vote up 3 vote down

Anything to do with encryption and security is always 1000% harder that it appears!

link|flag
Hey were can I find information on this subject with regards to programming? – Aaron Apr 18 at 14:45
vote up 3 vote down

A proprietary video-streaming class using the ffmpeg api - at the level of handling packets and displaying frames at the right time, syncing with the audio. Not as hard as some of the others listed, but it kicked my butt for many weeks!

link|flag
+1 because I've battled with the same! – chrism1 Apr 18 at 18:08
vote up 3 vote down

A library for solving Non-linear Partial Differenential Equations. We used it in a theoretical physics group to solve a non-linear adaptation of the Schrodinger equation that occurs in very special low temperature environments.

It was relatively easy to get a simple solver working but generalizing it and making it fast was a challenge.

link|flag
vote up 3 vote down

Probably a tie: a decision problem solver for sets using satisfiability modulo theories and a cooperative process scheduler in C/ASM that ran on top of a UNIX operating system. The first one was just plain hard -- it had never been done before using SMT and translating the highly-theoretical paper into an actual implementation in a different context was difficult. The second one involved digging to to OS data structures to understand them, then replacing bits and pieces to jump back and forth between functions in the program as if they were separately scheduled threads.

link|flag
vote up 3 vote down

I once made a real-time multi-camera video processing software, doing motion detection and cumulative histographic magic, all on 33MHz processors and 640Mb of RAM. The hard part was making this go fast; copious amounts of hashing, bits-shifting, cheating, swearing and late nights with pizza and ephiphanies for about 4 years. Oh, and I did a version dealing with color as well. Oh, and a module that could see the difference between steam and white smoke in large rooms (like nuclear reactors, as it were). Hah, you just try it! You wouldn't find examples of such in any text-book. :)

link|flag
cool stuff. sounds definitely hard. – MasterPeter Apr 25 at 13:12
vote up 2 vote down

a debugger

link|flag
vote up 2 vote down

I've written several pieces of code that do modeling in multiple spatial dimensions (from 3 to as high as about 7 dimensions.) Problems become harder when you work on something that you cannot actually plot or even visualize.

But really, as one who has spent most of my time building toolkits for others to use in their work, I'd argue that the most complex programs I've done were actually toolboxes, sets of tools made to work with each other in a consistent way. Because they are all made to work together, you can argue that several dozen utilities actually work as in fact one single tool. (Of course, any modular code is similar in this respect.) Here too, what I provided were generally modeling tools, made to solve color management problems.

link|flag
vote up 1 vote down

I was asked this very question in an interview a couple weeks ago (still haven't heard whether I got the job).

For me it was several assignments in my first programming class after the basic intro classes. It was the first time a course in Web Design was offered at my university. Since it was new, several graduating seniors signed up and comprised about half the class. The instructor was used to teaching senior-level classes, and already knew many of those in the class. Basically he taught it at their level, rather than for the other half of the class who were pretty inexperienced.

Probably the most difficult assignment was writing a text-only browser. I had problems with parsing for the various tags and asked for help. The instructor said, Well, if you'd had the Compilers course you could just write a simple one. At that point 'Compiler' was a black box that did magic things before the program ran. I didn't really know what it was, much less was I able to write one.

The thing that made it difficult was not having the tools necessary to do the work, to include understanding the results I got when I Googled. (Man pages and APIs are great if you already understand what you are looking for, but not for teaching a noob.) In my co-op experiences I've learned the most when I had a mentor who said, If you're stuck more than a couple hours, let me know so I can get you unstuck and moving along. Much better than those who don't want to hear from me except every week or so.

link|flag
vote up 0 vote down

I'm working on Yet Another PHP Framework, which has been a fun journey thus far.

link|flag
vote up 0 vote down

Nothing special, but a function that could draw a "sphere" with triangles, with n x n points and interpolated the triangles betweeen two colors (so the input was the radius, number of subdivisons, color1, color2). It was hard but very fun when it worked :)

link|flag
vote up 0 vote down

I am currently writing an iPhone application. It is most definitely the hardest program I've ever written. Not because the language is difficult, the code is difficult or any other reason, but because everything on the device has to be so fluent.

Everything has to look and feel natural. Since I'm a real programmer (with nil understanding of fluency, smoothness or design .. so it appears) this makes it really difficult for me. The program works, code wise, but user interface wise I have a much harder time getting things done.

Also threads suck ;-)

link|flag

Your Answer

Get an OpenID
or

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