Orders of Magnitude: What was the lowest-level code you have worked on? The highest level? - Stack Overflow most recent 30 from stackoverflow.com2009-12-08T06:50:05Zhttp://stackoverflow.com/feeds/question/211360http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/211360/orders-of-magnitude-what-was-the-lowest-level-code-you-have-worked-on-the-highe2Orders of Magnitude: What was the lowest-level code you have worked on? The highest level?pookleblinky2008-10-17T08:05:51Z2009-07-04T08:01:33Z
<p>Dijkstra once noted that a programmer can reasonably expect to have to work within a range of at least thirty orders of magnitude- from dealing with individual bits all the way up to gigabyte-sized units.</p>
<p>Let's test this. In your career, what was the smallest level of data manipulation you have worked on, and the largest? In which direction has your career moved: toward the bare metal, or toward inhumanly large constructs?</p>
<p>Extra kudos to those brave punch-card veterans of the days of <a href="http://catb.org/jargon/html/story-of-mel.html" rel="nofollow">Mel</a> who have survived and even thrived in the transition from raw binary to massive software architecture. We salute you.</p>
http://stackoverflow.com/questions/211360/orders-of-magnitude-what-was-the-lowest-level-code-you-have-worked-on-the-highe/211368#2113680Answer by Adam Pierce for Orders of Magnitude: What was the lowest-level code you have worked on? The highest level?Adam Pierce2008-10-17T08:09:08Z2008-10-17T08:09:08Z<p>Lowest - hand soldering chips.
Up through VHDL, hand-assembled machine code, burning my own ROMS, Assemblers, Macro assemblers, C, C++ and the highest level would probably be Python.</p>
<p>But I'm still going to vote this question down because it is too subjective.</p>
http://stackoverflow.com/questions/211360/orders-of-magnitude-what-was-the-lowest-level-code-you-have-worked-on-the-highe/211372#2113720Answer by Nicolai Reuschling for Orders of Magnitude: What was the lowest-level code you have worked on? The highest level?Nicolai Reuschling2008-10-17T08:11:08Z2008-10-17T08:19:07Z<p><strong>Lowest level</strong></p>
<p>ARM Assembler and even below: some sort of HDL, hardware description language, which I can't remember the name</p>
<p><strong>Highest level</strong></p>
<p>business process orchestration with BPEL; domain specific languages</p>
http://stackoverflow.com/questions/211360/orders-of-magnitude-what-was-the-lowest-level-code-you-have-worked-on-the-highe/211387#2113872Answer by Greg Hewgill for Orders of Magnitude: What was the lowest-level code you have worked on? The highest level?Greg Hewgill2008-10-17T08:17:26Z2008-10-17T08:17:26Z<p>Lowest level: debugging my code with an oscilloscope (did that recently, that was fun)</p>
<p>Highest level: not sure how to measure this, but the wikipedia database dump is something like 2 terabytes uncompressed. Also built a compiler and runtime system for a proprietary scripting language in the early 1990s (and then wrote a whole pile of code on top of that).</p>
http://stackoverflow.com/questions/211360/orders-of-magnitude-what-was-the-lowest-level-code-you-have-worked-on-the-highe/211538#21153810Answer by tolomea for Orders of Magnitude: What was the lowest-level code you have worked on? The highest level?tolomea2008-10-17T09:23:46Z2008-10-17T09:23:46Z<p>I am and always have been a Software Engineer, I have no formal hardware training. During University I always expected to go into something really abstract like language design. In reality I stumbled into the embedded C industry and found to my great surprise that I enjoy it.</p>
<p>On the low end:</p>
<ul>
<li>I've used a PCI sniffer to debug
memory issues.</li>
<li>I once wrote one chunk of code that had
to execute in 10us with a tolerance
of less than 1us.</li>
<li>I had one issue where I ended up
having to prove to the digital
designers that the actual hardware
behavior differed from the verilog
code that was used to generate it.</li>
<li>I was party to a bug fix that
involved using command line poke
calls to rewrite the body of a
function so it was a byte shorter so
we could insert a NOP at a
particular point where the CPU was
prone to double increment the PC.</li>
</ul>
<p>On the high end:</p>
<ul>
<li>I used FUSE to write a filesystem to
manage the 2TB we have floating
around on our home network. (high
for the 2TB, I guess since it's a
file system it could also be on the
low list)</li>
<li>I recently wrote a Python RPC
system, this uses introspection to
implement the RPC in a way that is
almost totally transparent to the
code on either end.</li>
<li>I've written a couple of
machine learning systems in Lisp and
Prolog.</li>
<li>And finally I wrote some code that
was directly responsible for power
cuts in a smallish south American
country. For the record my
implementation was perfect the
design was flawed.</li>
</ul>
http://stackoverflow.com/questions/211360/orders-of-magnitude-what-was-the-lowest-level-code-you-have-worked-on-the-highe/211655#2116551Answer by Torbjörn Gyllebring for Orders of Magnitude: What was the lowest-level code you have worked on? The highest level?Torbjörn Gyllebring2008-10-17T10:27:46Z2008-10-17T10:27:46Z<p>Lowest - Building a simple CPU and Memory with VHDL then writing an assembler for the thing.</p>
<p>Highest - WebPortal aggregating WS-* based services.</p>
http://stackoverflow.com/questions/211360/orders-of-magnitude-what-was-the-lowest-level-code-you-have-worked-on-the-highe/211783#2117830Answer by PhiLho for Orders of Magnitude: What was the lowest-level code you have worked on? The highest level?PhiLho2008-10-17T11:21:36Z2008-10-17T11:21:36Z<p>The lower level is easy: after learning to program with my TI-57 calculator, I learned assembly language on one of the early microprocessor boards with only an hexa keyboard and LED numeric display. It was really low level because we had to write the opcodes on paper and use a table to convert them to hex digits and compute by hand the offsets. It was fun, except there was no save facility (later, it was saved on audio tape...).<br />
You had to send bits to some hardware addresses to light the digit segments. Of course, I did a cyclic animation...</p>
<p>I suppose there was an even lower level, when you had to flip switches to set the bits and read them back on little lights...</p>
<p>I have also programmed radio-altimeters, analyzing analog signals (thus using an oscilloscope for "debugging" and using digital analyzer to check signals on processor's pins.</p>
<p>Highest level? Not sure. Professionally, I am working on a large Java system to analyze raw data from mobile phone networks. It has some levels of abstraction.<br />
Using high level scripting languages like Lua or JavaScript (although not on complex systems) gives a taste of this level.</p>
http://stackoverflow.com/questions/211360/orders-of-magnitude-what-was-the-lowest-level-code-you-have-worked-on-the-highe/213220#2132200Answer by humble_guru for Orders of Magnitude: What was the lowest-level code you have worked on? The highest level?humble_guru2008-10-17T18:13:16Z2008-10-17T18:13:16Z<p>I transition from high levels of abstraction to the bit level for ASIC verification. Then even lower as I need to see the physical level of waveforms that the SW produces. The high level consists of managing automation systems that gather large amounts of data from unit tests. Managing different HW configurations etc. Making tools that help debug and manage this process is challenging. Since I've done memory characterization I guess I've worked in the area between the transition of bits. Where the clock meets the "eye". I find data mining and report generation to be easy compared to UI design (command line). Trained as a HW engineer I learned SW and transitioned from programming the metal up to systems and then architecture for SW. I can still enjoy days of debugging a bit on intermittent HW though. </p>
http://stackoverflow.com/questions/211360/orders-of-magnitude-what-was-the-lowest-level-code-you-have-worked-on-the-highe/213346#2133460Answer by JB King for Orders of Magnitude: What was the lowest-level code you have worked on? The highest level?JB King2008-10-17T18:43:06Z2008-10-17T18:43:06Z<p>The lowest level was actually writing machine code into a Commodore PET for a high school Computer Science class, though others close behind would include working with breadboards using AND,OR,NAND, NOR, NOT and XOR gates, Commodore PET assembly and LOGO.</p>
<p>On the highest level, there is the abstractly abstract abstract model I had at one place where there was ASP code on the page that led to classes in ASP that led to C/C++ Object model code that led to Oracle functions to update a database. The other was what was called, the triplet database, that consisted of a few tables with the big one being 4 IDs in a row where there was an identity, an item ID column and then a pair of string IDs that coded a name/value pair for this item. That was rather funky to see as well as the nightmare it became when there were a few hundred thousand rows in it.</p>
http://stackoverflow.com/questions/211360/orders-of-magnitude-what-was-the-lowest-level-code-you-have-worked-on-the-highe/213412#2134121Answer by Michael Kohne for Orders of Magnitude: What was the lowest-level code you have worked on? The highest level?Michael Kohne2008-10-17T18:55:02Z2008-10-17T18:55:02Z<p>Lowest pure software:<BR>
8051-derivative code (assembly) that controlled a <a href="http://en.wikipedia.org/wiki/Evoked_potential" rel="nofollow">evoked potential</a> stimulator for an EEG monitor.</p>
<p>Lowest:<BR>
Used logic analyzer and oscilloscope to debug the hardware of the EEG monitor. Altera AHDL code for the FPGA on the Evoked Potential device mentioned above. </p>
<p>Highest:<BR>
Perl script that acted as a specialized code generator. This was used in a credit card authorization system for use in gas stations. The perl script generated all of the messaging classes needed for our framework from a small message definition.</p>
http://stackoverflow.com/questions/211360/orders-of-magnitude-what-was-the-lowest-level-code-you-have-worked-on-the-highe/213567#2135672Answer by mpez0 for Orders of Magnitude: What was the lowest-level code you have worked on? The highest level?mpez02008-10-17T19:33:55Z2008-10-17T19:33:55Z<p>Lowest:
Worked on an experimental computer that had reprogrammable microcode. It was defined for high performance floating point (intended to rival Cray and CDC style vector performance for less cost). One could redefine some assembler opcodes to use the underlying stack based microcode on the FP functional units to have one-op AX+Y, for example.</p>
<p>Now try to write an optimizing Fortran compiler for that beastie...</p>
<p>Or, if you mean smallest data unit, that was some other floating point code where I emulated some specialized hardware that had some special codes in the last two bits of otherwise IEEE 754 floats. All FP operations were defined on how those last two bits would combine for their results, but those results were independent of the arithmetic involved.</p>
<p>Largest:
Enterprise backup schemes.</p>
http://stackoverflow.com/questions/211360/orders-of-magnitude-what-was-the-lowest-level-code-you-have-worked-on-the-highe/214614#2146140Answer by Paul Nathan for Orders of Magnitude: What was the lowest-level code you have worked on? The highest level?Paul Nathan2008-10-18T05:13:04Z2008-10-18T05:13:04Z<p>Oscilloscope to verify serial connection was my lowest level.</p>
<p>Highest level code would be PHP interface into SQL.</p>
http://stackoverflow.com/questions/211360/orders-of-magnitude-what-was-the-lowest-level-code-you-have-worked-on-the-highe/214625#2146250Answer by Sridhar Iyer for Orders of Magnitude: What was the lowest-level code you have worked on? The highest level?Sridhar Iyer2008-10-18T05:19:53Z2008-10-18T05:19:53Z<p>Lowest: Using x86 assembly to simulate functions of an elevator.
Highest: Some buzzy orchestrator using J2EE/JMX/MBeans etc etc .. didn't like it all that much.</p>
<p>Now: C/C++ based projects.. involves large data analysis.</p>
http://stackoverflow.com/questions/211360/orders-of-magnitude-what-was-the-lowest-level-code-you-have-worked-on-the-highe/214653#2146530Answer by Will Hartung for Orders of Magnitude: What was the lowest-level code you have worked on? The highest level?Will Hartung2008-10-18T05:58:51Z2008-10-18T05:58:51Z<p>Assembly on an old school single board computer 8-bit, assembly drivers, embedded C code, all the way up to working on Expert Systems on TI Lisp Machines.</p>
<p>It's all interesting.</p>
http://stackoverflow.com/questions/211360/orders-of-magnitude-what-was-the-lowest-level-code-you-have-worked-on-the-highe/214655#2146552Answer by kloucks for Orders of Magnitude: What was the lowest-level code you have worked on? The highest level?kloucks2008-10-18T06:01:53Z2008-10-18T06:01:53Z<p>Lowest: writing out the microcode on paper and converting it to binary then hand loading it through a 8 switch (1 byte word) panel on a Speer Micro-Linc 300 Computer. </p>
<p>Highest: SAS, JAva, C#, Cobol</p>
http://stackoverflow.com/questions/211360/orders-of-magnitude-what-was-the-lowest-level-code-you-have-worked-on-the-highe/302963#3029630Answer by badbadboy for Orders of Magnitude: What was the lowest-level code you have worked on? The highest level?badbadboy2008-11-19T19:00:49Z2008-11-19T19:00:49Z<p>coding .com files in command.com editor ("copy con a.com") using assembler op-code reference</p>
http://stackoverflow.com/questions/211360/orders-of-magnitude-what-was-the-lowest-level-code-you-have-worked-on-the-highe/303014#3030143Answer by wnoise for Orders of Magnitude: What was the lowest-level code you have worked on? The highest level?wnoise2008-11-19T19:14:39Z2008-11-19T19:14:39Z<p>Lowest: I've made my own transistors in a physics lab.</p>
<p>Highest: Haskell -- patches to darcs, xmonad.</p>
http://stackoverflow.com/questions/211360/orders-of-magnitude-what-was-the-lowest-level-code-you-have-worked-on-the-highe/303046#3030460Answer by Steven A. Lowe for Orders of Magnitude: What was the lowest-level code you have worked on? The highest level?Steven A. Lowe2008-11-19T19:27:53Z2008-11-19T19:27:53Z<p>lowest level: wrote my own disk I/O library in 6502 Aseembly Lanauge for the Apple ][ to increase the amount of data we could store on a floppy disk</p>
<p>median level: wrote object-oriented languages and language extensions, developed framework and class libraries for new OOPL</p>
<p>highest level: wrote near-real-time monitor to watch all other systems and applications across all servers in 7 states (a poor man's event bus)</p>
http://stackoverflow.com/questions/211360/orders-of-magnitude-what-was-the-lowest-level-code-you-have-worked-on-the-highe/303050#3030500Answer by David for Orders of Magnitude: What was the lowest-level code you have worked on? The highest level?David2008-11-19T19:28:18Z2008-11-19T19:28:18Z<p>Lowest level:</p>
<ul>
<li><p>MACRO32 code to simulate a "ramdisk" for an application otherwise written in VAX-COBOL (with DCL and Datatrieve thrown in for good measure)</p></li>
<li><p>bit-twiddling in COS-310's DIBOL (Digital's Business Oriented Language - think COBOL without the words) so that we could reduce the record length a byte or two so that we could fit another couple of records on a floppy disk.</p></li>
<li><p>Writing a code-generator in VAX-BASIC that would interpret output from FMS (a screen/forms package) and generate the COBOL code to be INCLUDEd for reports and maintenance programs.</p></li>
</ul>
<p>Highest level:</p>
<ul>
<li><p>Almost anything in .NET qualifies since it's built on such high levels. Was too wasy to write a program that scanned my MP3s and copied them to directories based on the ID3 tags when you have an ID3-tag-decoding library to build upon.</p></li>
<li><p>Anything in SQL</p></li>
<li><p>Any report writer. I've used Crystal a lot over the past 2 years.</p></li>
</ul>
http://stackoverflow.com/questions/211360/orders-of-magnitude-what-was-the-lowest-level-code-you-have-worked-on-the-highe/554172#5541721Answer by dbasnett for Orders of Magnitude: What was the lowest-level code you have worked on? The highest level?dbasnett2009-02-16T18:51:02Z2009-02-16T18:51:02Z<p>IBM 1620 Assembler - it wasn't a fixed word length computer.</p>
http://stackoverflow.com/questions/211360/orders-of-magnitude-what-was-the-lowest-level-code-you-have-worked-on-the-highe/1026150#10261500Answer by John Barrett for Orders of Magnitude: What was the lowest-level code you have worked on? The highest level?John Barrett2009-06-22T08:55:09Z2009-06-22T08:55:09Z<p>Low level:</p>
<ul>
<li>Z80 Assembly (very simple scrolling routines and the like)</li>
<li>x86 Assembly (college assignment - DOS mouse routine calls, screen writing)</li>
<li>Hex editing the startup message on a MS-DOS 6 box ;) (Hey, I was young..)</li>
</ul>
<p>High level:</p>
<ul>
<li>VBA Office 97 Macros</li>
<li>Adding an additional abstraction and API on top of a FUSE module for pluggable features</li>
<li>Mainframe and Minicomputer programming in various 4GLs (including the dread COBOL). This was government work that paid out thousands of cheques in a nightly run.</li>
</ul>
<p>My career is moving in whatever direction allows me code in C, Perl & PHP on *nix (although I will, of course, use whatever the job requires).</p>
http://stackoverflow.com/questions/211360/orders-of-magnitude-what-was-the-lowest-level-code-you-have-worked-on-the-highe/1081713#10817130Answer by yan bellavance for Orders of Magnitude: What was the lowest-level code you have worked on? The highest level?yan bellavance2009-07-04T07:07:27Z2009-07-04T07:07:27Z<p>the lowest level was machine language for a simple cpu i coded in vhdl , harvard architecture and pipeline. I could actually modify the architecture to fit my instruction set...thats low XD.</p>
http://stackoverflow.com/questions/211360/orders-of-magnitude-what-was-the-lowest-level-code-you-have-worked-on-the-highe/1081770#10817700Answer by Ray Tayek for Orders of Magnitude: What was the lowest-level code you have worked on? The highest level?Ray Tayek2009-07-04T08:01:33Z2009-07-04T08:01:33Z<p>lowest: <a href="http://en.wikipedia.org/wiki/IBM_1620" rel="nofollow">http://en.wikipedia.org/wiki/IBM_1620</a> machine language (binary).</p>
<p>highest (level of abstraction): writing builders in groovy</p>