User mpez0 - Stack Overflowmost recent 30 from stackoverflow.com2009-12-02T05:28:46Zhttp://stackoverflow.com/feeds/user/27898http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1798879/download-file-using-partial-download-http/1798957#17989570Answer by mpez0 for Download file using partial download (HTTP)mpez02009-11-25T18:21:24Z2009-11-25T18:21:24Z<p>If I understand your question correctly, the file is not changing during download, but is updated regularly. If that is the question, <a href="http://rsync.samba.org/" rel="nofollow">rsync</a> is the answer.</p>
<p>If the file is being updated continually including during download, you'll need to modify rsync or a bittorrent program. They split files into separate chunks and download or update the chunks independently. When you get to the end of the file from the first iteration, repeat to get the appended chunk; continue as necessary. With less efficiency, one could just repeatedly rsync.</p>
http://stackoverflow.com/questions/238180/what-is-the-best-ui-youve-ever-used/1597065#15970650Answer by mpez0 for What is the best UI you've ever used?mpez02009-10-20T20:21:48Z2009-10-20T20:21:48Z<p>Does anyone else remember Interleaf? One of the original desktop publishing programs (it predated Sun Windows), it had its own windowing system and was organized optimally for a print shop. Clumsy for content generating/editing users, but very intuitive for production work.</p>
http://stackoverflow.com/questions/9603/what-is-some-great-source-code-to-read/213595#2135952Answer by mpez0 for What is some great source code to read?mpez02008-10-17T19:47:23Z2009-10-19T20:43:54Z<p>"<a href="http://rads.stackoverflow.com/amzn/click/0201657880" rel="nofollow">Programming Pearls</a>" by Jon Bentley and "Elements of Programming Style" by Kernighan and Plauger.</p>
<p>I second the mention of the Tcl source, and would like to add the BSD 4.4 source.</p>
http://stackoverflow.com/questions/803807/new-unix-account-shell-setup/803879#8038790Answer by mpez0 for New Unix Account Shell Setupmpez02009-04-29T19:26:06Z2009-04-29T19:26:06Z<p>I used to consult for a lot of clients and was always moving from system to system. In that situation, I got used to using only the normal defaults. Well, I did prefer using ksh if it was available.</p>
<p>Seriously, the extra effectiveness and efficiency you imply by your question is probably overstated. Meanwhile, the loss of portability should be considered ("What do you mean, the nifty script I sent didn't work for you? Oh, it needs fifteen customized aliases?").</p>
http://stackoverflow.com/questions/690868/what-are-replacement-and-new-practices-from-sh-to-bash/690921#6909213Answer by mpez0 for What are replacement and new practices from sh to Bash?mpez02009-03-27T18:20:43Z2009-03-27T18:20:43Z<p>For scripting, unless there's a specific reason to do otherwise, I limit myself to the Bourne constructs. They are maximally portable, and should run on systems that use bash, ksh, or even sh as their default shell.</p>
<p>I find any actual performance differences to be minimal (stopwatch timing); if performance is both important and limited by the shell, I'll move the time-critical part to a compiled language. The extra capabilities of more modern shells are great, and I use them interactively or maybe for ad hoc quick scripts. If I'm going to distribute and maintain the code, however, I've found that ignoring the extensions saves me time and effort.</p>
<p>If you are comfortable with the Bourne shell syntax, and can make the script do what you want using Bourne shell, then don't bother with the extensions. </p>
http://stackoverflow.com/questions/651411/most-performant-nix-system/651488#6514880Answer by mpez0 for Most performant *nix systemmpez02009-03-16T17:55:25Z2009-03-16T17:55:25Z<p>I'd say UNICOS, but it's not so hot for network performance.</p>
<p>Seriously, how much of a performance difference do you think you'll see between different *nix versions on the same hardware? Leaving aside not-ready-for-prime-time versions (such as very early Solaris with a single kernel lock), you'll probably be hard pressed to find 10% difference if you're staying with the same general OS architecture/philosophy. </p>
<p>What sort of hardware is under consideration, and how well is it supported by the different OS versions you're considering? What's the OS that best supports that hardware?</p>
http://stackoverflow.com/questions/548351/are-games-the-most-complex-impressive-applications/597031#5970310Answer by mpez0 for Are games the most complex / impressive applications?mpez02009-02-27T23:07:32Z2009-02-27T23:07:32Z<p>Most of the modern, graphics-oriented games, as programs, aren't particularly impressive or complex (they may be complex games, but the concepts for programming them aren't).</p>
<p>I find the natural language parsers for some text based games impressive.</p>
<p>Sheer massiveness in either data or lines of code might be impressive, but any given mark set there will shortly be surpassed. Complexity of implementation can be extreme (e.g., the myriad interaction of all the APIs that Microsoft has put into Windows over the years), but there's no underlying need for all that complexity. What are the programs that have underlying, unavoidable complexity?</p>
http://stackoverflow.com/questions/51627/file-descriptor-assignment-in-c/596671#5966710Answer by mpez0 for File Descriptor Assignment in Cmpez02009-02-27T20:59:27Z2009-02-27T20:59:27Z<p>The C spec says that it's implementation dependent. If you're looking at a Unix implementation, the man page for open(2) says "The file descriptor returned by a successful call will be the lowest-numbered file descriptor not currently open for the process."</p>
<p>This helps if you're trying to attach a specific file to a specific descriptor. Say you want to redirect stderr to /dev/null. Something like</p>
<p>close(2); open("/dev/null", O_WRONLY);</p>
<p>ought to do it. You should, of course, capture the fd returned by open and ensure that it's 2.</p>
http://stackoverflow.com/questions/596473/how-do-you-teach-best-practices/596542#5965422Answer by mpez0 for How do you TEACH best practices?mpez02009-02-27T20:27:55Z2009-02-27T20:27:55Z<p>You're "just a co-worker," so you can't prescribe any actions. The best alternative is to set a good example and ensure that it's public without cramming it down people's throats. If they aren't already in place, try to get code reviews instituted as a good practice. Looking at samples of everyone's code will help each individual improve their coding.</p>
<p>If you follow best practices, and they really are best practices and not just formatting standards, your code will be better. It will have fewer bugs and be easier to understand. That understanding will make it easier to extend, or to debug when it does have problems. Your co-workers who see your code will note that if they follow those practices, they will also have fewer bugs and easier to understand modules.</p>
<p>Even if you did have authority, having a good example is probably more effective in the long run than dictating "best practices."</p>
http://stackoverflow.com/questions/595596/orbital-equations-and-power-required-to-run-them/596346#5963461Answer by mpez0 for Orbital equations, and power required to run themmpez02009-02-27T19:52:46Z2009-02-27T19:52:46Z<p>With more than three bodies, there is no closed form solution. There are various methods of approximation (look at the N-Body simulation articles <a href="http://en.wikipedia.org/wiki/N-body%5Fsimulation" rel="nofollow">here</a> or <a href="http://www.scholarpedia.org/article/N-body%5Fsimulations" rel="nofollow">here</a>). Depending on how much accuracy you'll require, you'll need anywhere from seven to hundreds of bodies. Because of the relative scale (compared to, say, galaxy simulations), you won't be able to get much simplification from clustering.</p>
<p>As far as the specific question, though, you'd also have to work on estimates for changes in the Sun's diameter. I think the red giant phase would happen sooner than orbital decay, and that will make the Sun's diameter larger than the current Earth orbit.</p>
http://stackoverflow.com/questions/509209/as-a-programmer-how-much-are-you-expected-to-know-outside-of-programming/509311#5093110Answer by mpez0 for As a programmer how much are you expected to know outside of programming?mpez02009-02-03T22:50:51Z2009-02-03T22:50:51Z<p>This depends greatly on what you're programming. If you're doing low level device drivers, it's vital that you understand the underlying hardware. If you're doing a standalone Java app, the better you understand the JVM and libraries you're using, the better - but it isn't strictly necessary to know a lot.</p>
<p>In general, the more you understand about your system environment, the better. How much your peers and management expect you to know depends on them.</p>
<p>Ignorance will, eventually, be punished. If not by your peers and management, the world will do it. Check any week's headlines or RISKS digest for examples where ignorance of the system environment cause software failure.</p>
http://stackoverflow.com/questions/378835/a-standard-set-of-questions-to-ask-an-interviewer/378925#3789253Answer by mpez0 for A standard set of questions to ask an interviewer?mpez02008-12-18T19:27:26Z2008-12-18T19:27:26Z<p>How long does the typical hiree at my level stay with the company?</p>
<p>(Similar to Airsource's staff turnover question, but more specific to this position).</p>
http://stackoverflow.com/questions/171597/dvorak-vs-qwerty/347696#3476960Answer by mpez0 for Dvorak vs QWERTYmpez02008-12-07T15:48:17Z2008-12-07T15:48:17Z<p>Way back when, I worked as a phototypesetter. That involved straight typing from copy for hours at a time. The typesetter used QWERTY (SHRDLU was for old Linotype operators...).</p>
<p>I had no hand strain. Also, after that practice, I could type about 120-130 wpm.</p>
<p>Most of the time people have strain issues with typing these days, the cause is that the keyboard is too high. Your forearms should be parallel to the floor or sloped slightly down, reducing the angle of the wrist. If you look at old photos of typing or steno pools, the typewriters were always on a desk "typing return" that lowered the keyboard well below the desktop handwriting level.</p>
<p>Unless you change the keyboard height, Dvorak layout won't help with RSI. For most development work, you aren't limited by typing speed so the speed isn't really that relevant.</p>
http://stackoverflow.com/questions/286813/how-do-you-convert-html-to-plain-text/286827#2868270Answer by mpez0 for How do you convert Html to plain text?mpez02008-11-13T12:46:54Z2008-11-13T12:46:54Z<p>Depends on what you mean by "html." The most complex case would be complete web pages. That's also the easiest to handle, since you can use a text-mode web browser. See the <a href="http://en.wikipedia.org/wiki/List_of_web_browsers#Text-based" rel="nofollow">Wikipedia article</a> listing web browsers, including text mode browsers. Lynx is probably the best known, but one of the others may be better for your needs.</p>
http://stackoverflow.com/questions/267287/unix-c-shell-scripting-printf-help/269571#2695710Answer by mpez0 for Unix C Shell Scripting printf helpmpez02008-11-06T17:40:15Z2008-11-06T17:40:15Z<p>I believe the pr(1) command with the -m option will help do what you want. Look at its man page to eliminate the header/trailer options and set the column widths.</p>
<p>Also, I recommend you not use the C-Shell for scripting; you'll find the sh-syntax shells (sh, bash, ksh, etc) are more consistent and much easier to debug.</p>
http://stackoverflow.com/questions/40368/maximum-number-of-inodes-in-a-directory/269512#2695120Answer by mpez0 for Maximum number of inodes in a directory?mpez02008-11-06T17:21:28Z2008-11-06T17:21:28Z<p>As noted by Rob Adams, ls is sorting the files before displaying them. Note that if you are using NFS, the NFS server will be sorting the directory before sending it, and 2 million entries may well take longer than the NFS timeout. That makes the directory unlistable via NFS, even with the -f flag.</p>
<p>This may be true for other network file systems as well.</p>
<p>While there's no enforced limit to the number of entries in a directory, it's good practice to have some limit to the entries you anticipate.</p>
http://stackoverflow.com/questions/74372/how-to-overcome-an-incompatibility-between-the-ksh-on-linux-vs-that-installed-on/255217#2552170Answer by mpez0 for How to overcome an incompatibility between the ksh on Linux vs. that installed on AIX/Solaris/HPUX?mpez02008-10-31T23:05:01Z2008-10-31T23:05:01Z<p>The reason for the differences is whether the inside block is executed in the original shell context or in a subshell. You may be able to control this with the () and {} grouping commands. Using a temporary file, as you do in your update, will work most of the time but will run into problems if the script is run twice rapidly, or if it executes without clearing the file, etc.</p>
<pre><code>#!/bin/ksh
flag=false
echo "a\nb" | { while read x
do
flag=true
done }
echo "flag = ${flag}"
exit 0
</code></pre>
<p>That may help with the problem you were getting on the Linux ksh. If you use parentheses instead of braces, you'll get the Linux behavior on the other ksh implementations.</p>
http://stackoverflow.com/questions/204202/how-does-the-ls-command-work-in-linux-unix/255124#2551241Answer by mpez0 for How does the 'ls' command work in Linux/Unix?mpez02008-10-31T22:20:53Z2008-10-31T22:20:53Z<p>If you really want to understand the detailed innards of ls, look at the source code. You can follow tpgould's link to the Solaris source, or it's easy to find the source online from any Linux or BSD distribution.</p>
<p>I'll particularly recommend the 4.4BSD source.</p>
<p>As I recall, ls starts by parsing its many options, then starts with the files or directories listed on the command line (default is "."). Subdirectories are handled by recursion into the directory list routine. There's no fork() or exec() that I recall.</p>
http://stackoverflow.com/questions/238177/worst-ui-youve-ever-used/241608#2416081Answer by mpez0 for Worst UI You've Ever Usedmpez02008-10-27T22:34:38Z2008-10-27T22:34:38Z<p>I'd say the Control Data NOS text editor.
Combine an interface that makes teco look straightforward with not quite achieving the expressive power of notepad.</p>
<p>Search for a string? Sorry, you have to rewind the file first. Yes, those are separate commands.</p>
<p>In OSes that had, say, somewhat more market penetration than NOS, I'll go with DEC's VMS text editor. Not bad if you were on a DEC terminal, but miserable if you had another vendor's TTY hooked up.</p>
http://stackoverflow.com/questions/240661/whats-the-best-practice-for-changing-working-directories-inside-scripts/241551#2415512Answer by mpez0 for What's the best practice for changing working directories inside scripts?mpez02008-10-27T22:11:29Z2008-10-27T22:11:29Z<p>I'll second Schwern's and Hugo's comments above. Note Schwern's caution about returning to the original directory in the event of an unexpected exit. He provided appropriate Perl code to handle that. I'll point out the shell (Bash, Korn, Bourne) trap command.</p>
<p>trap "cd $saved_dir" 0</p>
<p>will return to saved_dir on subshell exit (if you're .'ing the file).</p>
<p>mike</p>
http://stackoverflow.com/questions/175309/how-do-i-tighten-security-of-my-hybrid-asp-net-1-1-ajax-solution/217107#2171071Answer by mpez0 for How do I tighten security of my hybrid ASP.NET 1.1 / Ajax solution?mpez02008-10-19T22:51:59Z2008-10-19T22:51:59Z<p>The easiest solution from a programming standpoint is to use two way HTTPS. That is, the server presents a certificate to the client, and the client presents a certificate to the server. Then only clients with proper certs (issued by you) can connect.</p>
<p>That helps reassure clients that your site is not generally accessible, yet the security is transparent to the application and, once they've signed up and received a cert, to them. The downside is that you have admin overhead in issuing and tracking the user certs -- but that's probably less than you'd have dealing with username/password combos.</p>
http://stackoverflow.com/questions/205070/whats-the-deal-with-all-the-different-uids-a-process-can-have/217078#2170780Answer by mpez0 for What's the deal with all the different UIDs a process can have?mpez02008-10-19T22:38:15Z2008-10-19T22:38:15Z<p>In addition to the real, effective, and saved UIDs, Unix systems with auditing enabled also have the audit UID. A process's AUID identifies the user who started the process; it is not changed by setuid(2) or seteuid(2). The intent is that it remains constant through the process and is used only to tag audit records. Thus, if a user executes a privileged shell (even an authorized user via su or sudo), the audit records of that process are tagged from that user.</p>
http://stackoverflow.com/questions/216820/is-it-worth-mitigating-security-risks-in-every-application/217068#2170680Answer by mpez0 for Is it worth mitigating security risks in every applicationmpez02008-10-19T22:29:52Z2008-10-19T22:29:52Z<p>Properly, one should do a risk/return estimate for any security programming effort. However, of the three major aspects of computer security (confidentiality, integrity, and availability), you are really only thinking of confidentiality. That is, preventing unauthorized user access.</p>
<p>If you include data integrity and system availability, you find that the return on most security programming efforts is much greater than that solely from confidentiality. Proper secure design also catches a surprisingly large amount of non-malicious errors, leading to better application uptime and data integrity.</p>
<p>What's the cost of downtime, not necessarily due to an attacker? What's the reputational cost of presenting incorrect data that could easily have been detected as bad? Add that to the calculation, and following secure programming practices is worth it in nearly every case. Security precautions should <em>not</em> be thought of as additional effort, but should be part of every application design and implementation. If you do that, the additional effort becomes very small, and the return, in terms of more reliable operation and application trust, is very large.</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/200737/get-full-path-of-executable-of-running-process-on-hpux/213530#2135301Answer by mpez0 for Get full path of executable of running process on HPUX...mpez02008-10-17T19:25:07Z2008-10-17T19:25:07Z<p>For what purpose do you need the executable path? Bear in mind, as I put in my earlier post, that there is no guarantee that a path to the executable will exist, or that it will be unique.</p>
http://stackoverflow.com/questions/184108/how-can-i-capture-single-keystrokes-in-a-unix-console-app-without-blocking/212920#2129200Answer by mpez0 for How can I capture single keystrokes in a unix console app without blocking?mpez02008-10-17T16:47:05Z2008-10-17T16:47:05Z<p>In Unix, whether on the system console or in an X terminal window, keyboard I/O goes through a virtual terminal. Device /dev/tty is the usual way, these days, of accessing a process's controlling terminal. Device manipulations other than open/close/read/write are all handled by the ioctl(2) system call for that specific device. The general idea of what you want to do is</p>
<p>Open the controlling terminal (which may or may not be stdin)</p>
<p>Change the operating mode on that terminal to return without waiting for a full line of input (which is the normal default)</p>
<p>Continue with the rest of your program, knowing that reads from that terminal (which might be stdin) may return partial lines or even zero characters without it being an error or termination condition.</p>
<p><hr /></p>
<p>A detailed answer on how to do the second step is found at the <a href="http://c-faq.com/osdep/cbreak.html" rel="nofollow">C-programming faq</a>. They also point out that this is an OS question, not a language question. They provide nine possibilities, but the three major ones relevant to this question are</p>
<ol>
<li>Use the curses(3) library</li>
<li>Old BSD style systems, use sgttyb to set CBREAK or RAW</li>
<li>Posix or old System V style systems, use TCGETAW/TCSETAW to set c_cc[VMIN] to 1 and c_cc[VTIME] to 0.</li>
</ol>
<p>Following a couple of references in the C FAQ could lead to to <a href="http://c-faq.com/osdep/kbhit.txt" rel="nofollow">this page of kbhit code fragments</a>.</p>
http://stackoverflow.com/questions/192793/what-is-your-favorite-programmer-t-shirt/209567#2095678Answer by mpez0 for What is your favorite "programmer" t-shirt?mpez02008-10-16T17:43:06Z2008-10-16T17:43:06Z<p>I have a tee shirt that I wear when leading tech classes.</p>
<p>It is just "/nev/dull"</p>
http://stackoverflow.com/questions/205153/how-would-you-implement-salted-passwords-in-tomcat-5-5/209543#2095430Answer by mpez0 for How would you implement salted passwords in Tomcat 5.5mpez02008-10-16T17:35:16Z2008-10-16T17:35:16Z<p>Passord-based encryption in JCE uses salt as per PKCS#5. See <a href="http://java.sun.com/j2se/1.4.2/docs/guide/security/jce/JCERefGuide.html#PBEEx" rel="nofollow">http://java.sun.com/j2se/1.4.2/docs/guide/security/jce/JCERefGuide.html#PBEEx</a> for an example. </p>
http://stackoverflow.com/questions/201750/is-there-a-php-or-general-programming-book-similar-to-whys-poignant-guide-to-r/201927#2019270Answer by mpez0 for Is there a PHP or general programming book similar to why's (poignant) guide to ruby?mpez02008-10-14T16:43:27Z2008-10-14T16:43:27Z<p>Programming Pearls by Jon Bentley</p>
<p>Elements of Programming Style by Kernighan and Plauger</p>
<p><hr /></p>
<p>A little further afield:</p>
<p>Starting Forth by Leo Brodie</p>
<p>A FORTRAN Coloring Book by Roger Kaufman</p>
http://stackoverflow.com/questions/200737/get-full-path-of-executable-of-running-process-on-hpux/201860#2018601Answer by mpez0 for Get full path of executable of running process on HPUX...mpez02008-10-14T16:20:45Z2008-10-14T16:20:45Z<p>The earlier answer referring to the Unix Programming FAQ was right. The problem, even with the Linux /proc answer, is that the path to the executable may have changed since the exec(). In fact, the executable may have been deleted. Further complications arise from considering links (both symbolic and hard) -- there may be multiple paths to the same executable. There is no general answer that covers all cases, since there may not be a path remaining, and if there is one it may not be unique.</p>
<p>That said, using argv[0] with some logic, as advocated by cjhuitt earlier, will probably do what you want 99.9% of the time. I'd add a check for a path containing "/" before doing the relative path check (and note, you must do that before any cwd() calls). Note that if your calling program is feeling mischievous, there's a host of things that can be done between fork() and exec() to mess this up. Don't rely on this for anything that could affect application security (like location of configuration files).</p>
http://stackoverflow.com/questions/1787530/how-do-you-determine-equality-between-two-ipv6-addresses/1790040#1790040Comment by mpez0 on How do you determine equality between two ipv6 addresses?mpez02009-11-24T13:45:52Z2009-11-24T13:45:52ZNote well the "actual syntax of zone indices depends on the OS.." You can not assume the zone index is three characters. You can, however, assume that if present, it follows a % symbol. So, if you're comparing addresses without concern for the local interface specification, stop at the %. Conversely, if you differ between local interfaces, include the string after the %.http://stackoverflow.com/questions/1788783/is-system-programming-dead/1788837#1788837Comment by mpez0 on Is system programming dead?mpez02009-11-24T13:22:46Z2009-11-24T13:22:46ZThere will always be some things that are better or easier to do in a low-level, closer to the hardware, type of programming language. C is the best example of that category right now.http://stackoverflow.com/questions/1339913/strange-64-32-bit-guid-issue-under-iis7/1339995#1339995Comment by mpez0 on Strange 64/32-bit GUID issue under IIS7mpez02009-08-27T19:04:32Z2009-08-27T19:04:32ZSimilar wild guess -- could this be order of evaluation? Try putting parens around the ternary statement to ensure that you're not parsing the assignment as the conditional.http://stackoverflow.com/questions/1342894/utility-to-search-for-a-class-inside-dozens-of-jar-files/1343026#1343026Comment by mpez0 on Utility to search for a class inside dozens of jar files?mpez02009-08-27T18:50:04Z2009-08-27T18:50:04Zfind <directory trees to search for .jar files> -name '*.jar' -print | while read i; do <same jar -tvf | grep as above>; donehttp://stackoverflow.com/questions/1261007/whats-better-multiplication-by-2-or-adding-the-number-to-itself-bignumsComment by mpez0 on What's better multiplication by 2 or adding the number to itself ? BIGnumsmpez02009-08-11T15:32:52Z2009-08-11T15:32:52ZHow much performance difference do you see? First thing, benchmark it.http://stackoverflow.com/questions/1173539/what-scripting-language-should-i-learn-for-file-text-manipulation-tasks/1173560#1173560Comment by mpez0 on What scripting language should I learn for file/text manipulation tasks?mpez02009-07-24T01:00:53Z2009-07-24T01:00:53ZThe usual tongue-in-cheek algorithm for correcting one is initial estimate is to double it, then go to the next higher unit of time. Thus, a 2 hour initial estimate will map to 4 days.http://stackoverflow.com/questions/1071762/what-are-software-practices-in-mission-critical-industries-e-g-nuclear-power-plComment by mpez0 on What are software practices in mission-critical industries (e.g. nuclear power plant)?mpez02009-07-01T23:32:26Z2009-07-01T23:32:26ZThe software practices, at least a decade ago, were simple: No safety precaution or operating control would rely on software, since it couldn't be properly analyzed for failure modes. Sofware was only used for log keeping, communication facilities, etc.
So there isn't much to learn in terms of how to build reliable SW. I think you might be better off looking to "Safety of flight" rated systems.http://stackoverflow.com/questions/63668/confessions-of-your-worst-wtf-moment-what-not-to-do/64012#64012Comment by mpez0 on Confessions of your worst WTF Moment. (What not to do.)mpez02009-02-27T21:10:45Z2009-02-27T21:10:45ZWanting to do a clean recompile, it did rm * .0; make all
Yeah, there was an inadvertent space between the * and the .ohttp://stackoverflow.com/questions/595884/what-is-the-smallest-size-of-bytes-that-you-can-store-a-timestamp/595930#595930Comment by mpez0 on What is the smallest size of bytes that you can store a timestamp?mpez02009-02-27T20:44:36Z2009-02-27T20:44:36ZUse bitfields instead of shift and maskhttp://stackoverflow.com/questions/509075/what-percentage-of-existing-systems-are-old-legacy-systems/509143#509143Comment by mpez0 on What percentage of existing systems are old legacy systems?mpez02009-02-03T23:01:31Z2009-02-03T23:01:31ZI wouldn't bet on those systems being replaced as people retire. As long as they can keep limping along, and the staff can kinda sorta do it, it'll be cheaper to keep them going than rewrite, test, migrate.http://stackoverflow.com/questions/455623/how-can-i-prevent-users-from-taking-screenshots-of-my-application-window/456157#456157Comment by mpez0 on How can I prevent users from taking screenshots of my application window?mpez02009-01-26T22:43:00Z2009-01-26T22:43:00ZWorked on a similar project at a similar timeframe, but this group wanted designated users to be able to reclassify cut'n'paste snippets. So I rewrote the cut'n'paste parts to follow the modified security rules.http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/34526#34526Comment by mpez0 on What is the single most influential book every programmer should read?mpez02008-12-18T18:45:06Z2008-12-18T18:45:06ZK&R also set a very high standard for consiseness and readability. I wish other languages had similar reference manuals. It's a mark to aim for when writing documentation.http://stackoverflow.com/questions/88/is-gettimeofday-guaranteed-to-be-of-microsecond-resolution/522#522Comment by mpez0 on Is gettimeofday() guaranteed to be of microsecond resolution?mpez02008-11-13T13:38:40Z2008-11-13T13:38:40ZSo what happens in your code when gettimeofday() jumps forward or backward with daylight savings?http://stackoverflow.com/questions/278273/how-to-guarantee-files-that-are-decrypted-during-run-time-are-cleaned-up/278300#278300Comment by mpez0 on How to guarantee files that are decrypted during run time are cleaned up?mpez02008-11-13T13:27:51Z2008-11-13T13:27:51ZIf you decrypt to a RAM based file system (that is, not actually on disk) then a crash or process failure will have all all the data actually gone.