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?
|
6
|
|||||||
|
|
|
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.
|
||||||||||
|
|
|
a compiler |
||
|
|
|
The one I didn't want to, or have fun, writing. |
|||
|
|
|
|
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. |
|||
|
|
|
|
An application that compiled and ran on both - windows and mac with one codebase. |
|||
|
|
|
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... |
|||
|
|
|
|
Automation with COM, with execution across the Grid |
|||
|
|
|
|
Anything to do with encryption and security is always 1000% harder that it appears! |
|||
|
|
|
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! |
|||
|
|
|
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. |
|||
|
|
|
|
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. |
|||
|
|
|
|
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. :) |
|||
|
|
|
a debugger |
|||
|
|
|
|
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. |
|||
|
|
|
|
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. |
|||
|
|
|
|
I'm working on Yet Another PHP Framework, which has been a fun journey thus far. |
|||
|
|
|
|
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 :) |
|||
|
|
|
|
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 ;-) |
|||
|
|

