User Keith Smith - Stack Overflowmost recent 30 from stackoverflow.com2009-12-16T14:51:57Zhttp://stackoverflow.com/feeds/user/12347http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/72406/what-development-book-made-the-most-impact-on-you-as-a-developer/72572#7257211Answer by Keith Smith for What development book made the most impact on you as a developer?Keith Smith2008-09-16T14:01:15Z2009-11-26T06:06:28Z<p><em><a href="http://rads.stackoverflow.com/amzn/click/1556155514" rel="nofollow">Writing Solid Code</a></em>, by Steve Maguire. <em><a href="http://rads.stackoverflow.com/amzn/click/0735619670" rel="nofollow">Code Complete</a></em> is a close runner-up.</p>
http://stackoverflow.com/questions/1131789/if-you-were-organizing-books-in-a-library-how-would-you-store-them-and-what-data/1132026#11320261Answer by Keith Smith for If you were organizing books in a library, how would you store them and what data structure would you use?"Keith Smith2009-07-15T15:11:44Z2009-08-10T17:30:39Z<p>This sounds like a homework or interview question. If I were asking it, I would be interested in more than just whether you understand a couple of data structures. I would also want to know how you analyze a real-world problem and translate it to the world of computers and data structures.</p>
<p>As such, you should probably think about what operations you need to perform on the data before you pick a data structure. You should also think some about real libraries and some of the "gotchas" that could come up with any data structure you chose.</p>
<p>If all you need to do is translate from an ISBN to the catalog entry for the corresponding book, then a hash table might be a reasonable choice. But you might want to think about how you would deal with popular books, such as best sellers, that a library could have many copies of. </p>
<p>But is ISBN lookup really the important use case? I use my local library all the time, and I never look up books by ISBN. Some of things that I do are:</p>
<ul>
<li>Look up a specific book by title. Sometimes there are different books with the same title.</li>
<li>Browse the list of books by an author I like</li>
<li>Find where books on a particular subject are shelved, so I can browse them. </li>
</ul>
<p>Librarians probably have additional uses for a catalog system:</p>
<ul>
<li>Add new books to the catalog</li>
<li>Mark books as checked out</li>
<li>Change listing information, such as subject classification, for a book</li>
</ul>
<p>So I guess my recommendation would be to think more carefully about what problem you want to solve before you decide on the solution.</p>
<p>Apologies for asking more questions instead of providing an answer. I hope this is helpful anyway.</p>
http://stackoverflow.com/questions/1254815/reading-binary-files-linux-buffer-cache/1255386#12553861Answer by Keith Smith for Reading binary files, Linux Buffer CacheKeith Smith2009-08-10T14:56:06Z2009-08-10T14:56:06Z<blockquote>
<p>It appears to take a correct amount of time the first time the file is read.</p>
</blockquote>
<p>On that first read, you're reading 150GB in about 2 minutes. That works out to about 10 gigabits per second. Is that what you're expecting (based on the network to your NFS mount)?</p>
http://stackoverflow.com/questions/1202545/does-a-background-in-physics-make-you-a-better-programmer/1213025#12130250Answer by Keith Smith for Does a background in physics make you a better programmer?Keith Smith2009-07-31T14:59:17Z2009-07-31T14:59:17Z<p>Correlation is not causation. </p>
<p>I've known some top-notch programmers who studied physics---either at the undergraduate or graduate level. But I never got the impression that they were good programmers <i>because</i> they studied physics, but rather that they were good programmers who happened to have studied physics. </p>
http://stackoverflow.com/questions/1183869/learning-a-new-language-on-the-job/1188682#11886822Answer by Keith Smith for Learning a New Language on the JobKeith Smith2009-07-27T15:00:03Z2009-07-27T15:00:03Z<p>As a former colleague liked to say, "You can train a smart person, but you can't smart a trained person." </p>
<p>A lot of places emphasize hiring the best talent, with the assumption that the talent can learn whatever is required to get the job done.</p>
http://stackoverflow.com/questions/1158435/freebsd-current-dir-of-running-process-by-process-id/1159901#11599011Answer by Keith Smith for freebsd: current dir of running process by process idKeith Smith2009-07-21T15:20:49Z2009-07-21T15:20:49Z<p>You can get the inode number of the current working directory with </p>
<pre><code>fstat -p $PID
</code></pre>
<p>It looks like lsof will give you a human readable form of the current working directory, but we don't have that installed on any of the local FreeBSD machines, so I can't verify that.</p>
http://stackoverflow.com/questions/57962/whats-your-experience-with-flash-drives/1123214#11232142Answer by Keith Smith for What's your experience with Flash drives?Keith Smith2009-07-14T02:50:52Z2009-07-15T20:42:10Z<p>A couple of people have called out the write limitations on flash. This isn't much of an issue for the better SSDs---especially for the high-end ones that folks EMC are using.</p>
<p>Take a look, for example, at Intel's <a href="http://download.intel.com/design/flash/nand/extreme/319984.pdf" rel="nofollow">X25-E</a>. It uses single-layer cell (SLC) flash, which can handle more writes than the cheaper, denser multi-layer cell (MLC) flash that is used in low end and consumer-grade SSDs. Typical SLC parts these days have a <i>write endurance</i> of 100,000 writes.</p>
<p>So if you get Intel's 64GB drive, and write to it at the maximum sustained bandwidth (170MB/s), it would take 64K * 100,000 / 170 seconds = 1.22 years to write enough data to the SSD to start running into the write limitations. </p>
<p>This is an over-simplification, of course. There are other factors that come into play. Most importantly:</p>
<ul>
<li>SSDs over-provision flash, sometimes by as much as 25%. So the drive with 64GB of advertised capacity may have 80GB of flash inside. So it will take even longer to wear it out.</li>
<li>On average, one write to an SSD results in more than one write to internal flash, as the flash erase block size is larger than the typical I/O, and the SSD needs to move data between flash banks to ensure even wear. Over-provisioning flash (see above) and intelligent firmware minimizes this effect---you might have 1.1 flash writes for every write to the SSD. But this will still cause the SSD to wear out after a smaller number of writes than the above calculation suggests.</li>
<li>Most importantly, realistic workloads aren't going to come close to long-term, sustained write bandwidths of 170MB/s. </li>
</ul>
<p>All in all, any SLC-based SSD on the market these days should be able to go several years before write endurance becomes an issue. As an indicator of this, you'll find that many of the better SSDs come with multi-year warranties.</p>
http://stackoverflow.com/questions/1132290/temporarily-suspend-the-pc-operating-system/1132333#11323332Answer by Keith Smith for Temporarily suspend the PC operating system.Keith Smith2009-07-15T16:01:47Z2009-07-15T16:07:43Z<p>There are lots of really ugly ways to do this. You could modify the running kernel by writing some trampoline code to /dev/kmem that passes control to your application. But I wouldn't recommend attempting something like that!</p>
<p>Basically, you would need to have your application act as its own operating system. If you want to read data from a file, you would have to figure out where the data lives on disk, and generate your own SCSI requests to talk to the disk drive. You would have to implement your own interrupt handler to get notified when the data is ready. Likewise you would have to handle page faults, memory allocation, etc. Most users feel that this isn't worth the effort...</p>
<p>Why do you want to do this?</p>
<p>Is there something that your application needs to do that the OS won't let it do? Are you concerned with the OS impact on performance? Something else?</p>
http://stackoverflow.com/questions/1125412/how-to-do-an-active-sleep/1125699#11256992Answer by Keith Smith for How to do an active sleep?Keith Smith2009-07-14T14:19:20Z2009-07-14T14:19:20Z<p>What kind of a system are you on? In UNIX-like systems you can use setitimer() to send a signal to a process after a specified period of time. This is the facility you would need to implement the type of "active sleep" you're looking for.</p>
<p>Set the timer, then loop until you receive the signal.</p>
http://stackoverflow.com/questions/1123204/graduate-degree-needed-in-programming-jobs/1123259#11232590Answer by Keith Smith for Graduate Degree needed in Programming Jobs?Keith Smith2009-07-14T03:05:29Z2009-07-14T03:05:29Z<blockquote>
<p>Do firms really care if I have a degree, or do they just care about the language I know and if I can deliver?</p>
</blockquote>
<p>Firms want to know if you can deliver, and they want to see evidence that will convince them of this. If you've got good experience, that will count. One of the big values of a CS degree is in getting a foot in the door in industry, by demonstrating that you have <i>some</i> (small) amount of relevant experience.</p>
<p>That said, you will run into companies that won't hire people without a college degree (which you have---English counts). I wouldn't be surprised if there are individual managers or HR departments who will refuse to hire people without a CS degree. But that kind of narrow thinking is probably a sign of a place you don't want to work in the first place...</p>
<p>One of the best programmers I worked with on a recent project was, in fact, an undergrad English major. He didn't have any graduate degree that I was aware of. He was recently laid off and didn't have much trouble finding an interesting new position, despite the economy.</p>
<p>I've also worked with excellent programmers with degrees in physics, mathematics, political science, and philosophy.</p>
http://stackoverflow.com/questions/1055671/how-can-i-get-the-behavior-of-gnus-readlink-f-on-a-mac/1116890#11168901Answer by Keith Smith for How can I get the behavior of GNU's readlink -f on a Mac?Keith Smith2009-07-12T20:51:37Z2009-07-14T01:55:11Z<p>"readlink -f" does two things:</p>
<ol>
<li>It iterates along a sequence of symlinks until it finds an actual file.</li>
<li>It returns that file's <i>canonicalized</i> name---i.e., its absolute pathname.</li>
</ol>
<p>If you want to, you can just build a shell script that uses vanilla readlink behavior to achieve the same thing. Here's an example. Obviously you could insert this in your own script where you'd like to call "readlink -f":</p>
<pre><code>#!/bin/sh
TARGET_FILE=$1
cd `dirname $TARGET_FILE`
TARGET_FILE=`basename $TARGET_FILE`
# Iterate down a (possible) chain of symlinks
while [ -L "$TARGET_FILE" ]
do
TARGET_FILE=`readlink $TARGET_FILE`
cd `dirname $TARGET_FILE`
TARGET_FILE=`basename $TARGET_FILE`
done
# Compute the canonicalized name by finding the physical path
# for the directory we're in and appending the target file.
PHYS_DIR=`pwd -P`
RESULT=$PHYS_DIR/$TARGET_FILE
echo $RESULT
</code></pre>
<p>Note that this doesn't include any error handling. Of particular importance, it doesn't detect symlink cycles. A simple way to do this would be to count the number of times you go around the loop and fail if you hit an improbably large number, such as 1,000.</p>
<p>EDITED to use 'pwd -P' instead of $PWD.</p>
http://stackoverflow.com/questions/1052897/how-can-i-do-better-in-interviews/1052955#10529555Answer by Keith Smith for How can I do better in interviews?Keith Smith2009-06-27T14:52:04Z2009-07-13T17:06:18Z<p>Three suggestions:</p>
<p>Treat every interview as a learning experience. If you come out of an interview feeling like you goofed up, think about how you could have handled things better. If there is stuff that you were asked but you didn't know, go and learn something about it. Look up unfamiliar terms. Ask questions here on StackOverflow about specific things that you don't understand. </p>
<p>When you're at an interview, be engaged and curious. Ask questions---about the potential employer, about the tools and technology they use, about their product and market, etc. It's human nature, most people feel more positive about somebody who is interested in them and what they do. Some people worry that asking questions will make them look dumb or ignorant. But in my professional life, I find that the more senior engineers are usually folks who are never afraid to ask a question when they don't understand something.</p>
<p>Try to look at the interview process not as a stressful worrying time, but rather as a great opportunity. You can meet new people, learn new things, learn about a new segment of the industry. Even if you don't get the offer, the people you meet and the things you learn can be useful later in your career. Have fun!</p>
http://stackoverflow.com/questions/1059948/should-inability-to-code-under-pressure-be-a-valid-excuse-when-writing-code-in/1061666#10616660Answer by Keith Smith for Should "inability to code under pressure" be a valid excuse when writing code in an interview?Keith Smith2009-06-30T04:06:07Z2009-07-13T16:07:28Z<p>There are times when you need to know if a candidate actually has basic coding skills. How are you going to find out? </p>
<p>There are always going to be times when the interview is the only opportunity to figure out if the candidate can actually write code. I wouldn't consider "inability to code at an interview" a valid excuse for a candidate to avoid this. I'm not going to play ogre, and deliberately try to make things hard for them. I'll encourage them and tell them that I'm not going to fuss about syntactic details. I'll talk them through it, or leave the room, if I think it will help them. But at the end of the day, we need to hire people who can get the job done. If a candidate can't show us that they can do the job, we're not going to hire them.</p>
<p>Having said that, I'm certainly interested in other ways to get at this information. Sometimes there are obvious ways to learn more about a candidate, such as references. But that only works if the reference is somebody you know and trust.</p>
<p>I don't like having them bring sample code, since that's a problem for folks whose current (or former) employers own the code. And the fact that they have code doesn't tell you anything about how it was written. How long did it take to write? to debug? What kind of review and input did they get from others? </p>
<p>I like the idea of hiring somebody for a "no fault" probationary period. I'd be curious to know how this has worked for folks in practice. I can't imagine the typical HR department signing off on it. Also you have to be sure that you and your team will be ruthless enough to let them go if things don't work out. It's easy to say that, "We'll get rid of them if they turn out to be a bozo." But in my experience, the real problems aren't the bozos, but rather the second-tier programmers. The nice but mediocre programmer probably won't raise any red flags during their probationary period, but then spend the next few years delivering late, producing more than their share of bugs, and generally getting in the way.</p>
<p>Another technique is to ask the candidate to do some coding as part of the phone screen. This is where you really want to weed out the folks who can't code, so you don't waste lots of time interviewing them. I haven't tried this, but it would be nice to ask somebody for a 2 hour phone screen. Talk to them for an hour, then give them a simple coding problem and ask them to e-mail you their code in an hour. Obviously you'd want to pick something a bit off the beaten track, so they can't just google a solution.</p>
http://stackoverflow.com/questions/1071542/in-c-check-if-a-char-exists-in-a-char-array/1071561#10715611Answer by Keith Smith for In C - check if a char exists in a char arrayKeith Smith2009-07-01T21:52:12Z2009-07-01T21:52:12Z<p>You want</p>
<blockquote>
<p>strchr (const char *s, int c)</p>
</blockquote>
<p>If the character <em>c</em> is in the string <em>s</em> it returns a pointer to the location in s. Otherwise it returns NULL. So just use your list of invalid characters as the string.</p>
http://stackoverflow.com/questions/1053572/why-kernel-code-thread-executing-in-interrupt-context-cannot-sleep/1053634#10536344Answer by Keith Smith for Why kernel code/thread executing in interrupt context cannot sleep?Keith Smith2009-06-27T21:10:49Z2009-06-30T03:19:51Z<blockquote>
<p>So what stops the scehduler from putting interrupt context to sleep and taking next schedulable process and passing it the control?</p>
</blockquote>
<p>The problem is that the interrupt context is not a process, and therefore cannot be put to sleep. </p>
<p>When an interrupt occurs, the processor saves the registers onto the stack and jumps to the start of the interrupt service routine. This means that when the interrupt handler is running, it is running in the context of the process that was executing when the interrupt occurred. The interrupt is executing on that process's stack, and when the interrupt handler completes, that process will resume executing.</p>
<p>If you tried to sleep or block inside an interrupt handler, you would wind up not only stopping the interrupt handler, but also the process it interrupted. This could be dangerous, as the interrupt handler has no way of knowing what the interrupted process was doing, or even if it is safe for that process to be suspended. </p>
<p>A simple scenario where things could go wrong would be a deadlock between the interrupt handler and the process it interrupts.</p>
<ol>
<li><em>Process1</em> enters kernel mode.</li>
<li><em>Process1</em> acquires <em>LockA</em>.</li>
<li>Interrupt occurs.</li>
<li>ISR starts executing using <em>Process1</em>'s stack.</li>
<li>ISR tries to acquire <em>LockA</em>.</li>
<li>ISR calls sleep to wait for <em>LockA</em> to be released.</li>
</ol>
<p>At this point, you have a deadlock. <em>Process1</em> can't resume execution until the ISR is done with its stack. But the ISR is blocked waiting for <em>Process1</em> to release <em>LockA</em>.</p>
http://stackoverflow.com/questions/1053212/tips-for-becoming-a-better-programmer/1053787#10537870Answer by Keith Smith for Tips for becoming a better programmer...Keith Smith2009-06-27T22:35:26Z2009-06-27T22:35:26Z<p>Learn to always ask yourself, "How could things be better?" </p>
<p>When you make mistakes, don't ignore them. Think about what you could have done differently to avoid the problem. This ranges from little mistakes to big ones. When you find a bug in your code, think about how you could avoid that type of bug in the future. I don't mean in the simple sense of telling yourself to "watch out for fence-post errors." Rather, are there coding practices or testing practice you could adopt that would automatically avoid those errors, or bring them to light quickly. The book "Writing Solid Code" has lots of examples of this type of thinking.</p>
<p>But this applies beyond programming. Senior engineer usually need to do more than just write code. They have to be able to mentor and make decisions and recommendations in the context of the companies larger business needs, and so forth. So think about these "big picture" issues too. If you feel like your company makes it hard for junior programmers to figure out how to do something, then ask yourself how to fix that. If you interview somebody and like them, and they turn out to be a bozo, ask yourself what you should have done differently in the interview. </p>
<p>And do likewise with what everyone else is doing around you. If the build process is too slow, don't just grumble about it, figure out how to make it better, even if it's not your job---this could range from actually doing it to learning more about it so you can make useful suggestions to the people who own it. If you don't like or don't understand what your managers or executives are doing, ask yourself what you'd do differently. </p>
<p>Don't be afraid to ask your peers these questions. I find these types of questions great fodder for lunchtime conversations and it's a great way to learn from other people's experience. </p>
http://stackoverflow.com/questions/1041616/file-type-indicator-sys-stat-h-stmode-regular-file-code-value/1044154#10441540Answer by Keith Smith for File type indicator, sys/stat.h st_mode regular file code valueKeith Smith2009-06-25T14:06:22Z2009-06-25T14:16:54Z<p>I would trust the definitions of S_IFREG and S_ISREG. I've never worked with a file system that broke those macros.</p>
<p>My guess is that the 0x0000 definition for a regular file is to handle legacy file systems that may have used a different encoding of file type information. What OS and file system are you using?</p>
http://stackoverflow.com/questions/1043928/avoid-deadlocks-in-a-multithreaded-process/1043990#10439901Answer by Keith Smith for Avoid deadlocks in a multithreaded processKeith Smith2009-06-25T13:37:40Z2009-06-25T13:37:40Z<p>The canonical technique for deadlock avoidance is to have a lock hierarchy. Make sure that all threads acquire locks or other resources in the same order. This avoids the deadlock scenario where thread 1 hold lock A and needs lock B while thread 2 holds lock B and needs lock A. With a lock hierarchy, both threads would have to acquire the locks in the same order (say, A before B).</p>
http://stackoverflow.com/questions/1041699/what-school-if-any-for-cs/1041905#10419051Answer by Keith Smith for What school, if any for CS?Keith Smith2009-06-25T02:27:16Z2009-06-25T02:27:16Z<p>Regarding the degree, I agree that you'll do better in the long run with a 4-year degree. A lot of employers won't look at you unless you have that credential.</p>
<p>As for how to find a job, you might try working through your college. Many groups at a college are used to hiring students to do various jobs. See if the IT department has any opportunities. If not, the departments that use their own computers may need somebody to program or administer them---CS, physics, engineering, etc. </p>
<p>Many colleges also have career offices that help students find work---both after graduation and part time work while they're in school.</p>
<p>Your computer science department may also be a place to network to find jobs. Your professors may know people in the area who would hire you---especially after you impress them by acing their classes ;-) Get to know classmates. They may have connections to potential employers.</p>
<p>One way or the other, I would strongly encourage you to find programming work outside of your program of study. If there isn't something you can do for pay, get involved with an open source project. Having "real world" accomplishments on your resume will make you a stronger job candidate after you graduate.</p>
http://stackoverflow.com/questions/861257/for-kernel-os-is-c-still-it/1038819#10388190Answer by Keith Smith for For kernel/OS is C still itKeith Smith2009-06-24T14:43:34Z2009-06-24T14:43:34Z<p>You should definitely be fluent in C. </p>
<p>As others have pointed out, there is no reason that an operating system has to be written in C, and there is a lot to be gained by using more sophisticated languages. But if you're going to work on operating systems in the real world (i.e., not in academia or a research lab) there are a couple of realities that you have to live with:</p>
<ol>
<li>Existing operating systems are huge, often many millions of lines of code, and are written in C or C-derivatives, such as Objective-C or C++. </li>
<li>New operating systems take hundreds of engineer-years (and many calendar years) to reach match the functionality and robustness of existing operating systems.</li>
</ol>
<p>As a result, it's hard for me to see how and when the world will move away from C-based operating system kernels. Yes, it's technically possible. But the cost may be too high. If anything, the trend seems to be toward consolidation on a small number of OS families---Windows, Linux, and BSD---all C-based.</p>
<p>It would be interesting to know what research has been done, or what tools and techniques might be available to evolve an existing code-base (such as Linux) to a better language. I think this would be a much more viable approach than getting the world to adopt a completely new OS.</p>
http://stackoverflow.com/questions/1033080/what-is-a-good-way-to-find-the-latest-created-file-in-a-folder-in-c/1033144#10331445Answer by Keith Smith for What is a good way to find the latest created file in a folder in c#?Keith Smith2009-06-23T15:05:52Z2009-06-23T15:05:52Z<p>Sorting the files is taking you O(nlogn) time. If all you need is the most recently created, it would be faster to just scan through the files and find the most recent---O(n).</p>
http://stackoverflow.com/questions/1030304/tar-a-specific-folder/1030330#10303300Answer by Keith Smith for Tar a specific folderKeith Smith2009-06-23T02:12:22Z2009-06-23T02:12:22Z<p>Something like this should do the trick:</p>
<pre><code>tar cf tarfile folder
</code></pre>
<p>This will create a tar image of "folder" and put it in the file "tarfile"</p>
<p>The "cf" are the options to tar. </p>
<p>"c" means that you want to create a new tar image</p>
<p>"f" means that the next word will be the name of the file for the tar image. </p>
<p>I didn't use it in my example, but some people like to use the "v" option also. This will make tar list every file as it archives it. It's a way to track its progress.</p>
<p>One minor gotcha to be aware of is that if you use a path for the folder name, such as:</p>
<pre><code>tar cf tarfile path/to/my/folder
</code></pre>
<p>then when you untar the image all of the files will recreate (or use) the same path for the new files. (i.e., path/to/my/folder) in this example. In some cases this is good. In others it creates a bunch of intermediate directories that you may not care about. </p>
http://stackoverflow.com/questions/1019116/using-ls-to-list-directories-and-their-total-sizes/1029493#10294931Answer by Keith Smith for Using ls to list directories and their total sizesKeith Smith2009-06-22T21:29:17Z2009-06-22T21:29:17Z<p>The command you want is 'du -sk' du = "disk usage"</p>
<p>The -k flag gives you output in kilobytes, rather than the du default of disk sectors (512-byte blocks). </p>
<p>The -s flag will only list things in the top level directory (i.e., the current directory, by default, or the directory specified on the command line). It's odd that du has the opposite behavior of ls in this regard. By default du will recursively give you the disk usage of each sub-directory. In contrast, ls will only give list files in the specified directory. (ls -R gives you recursive behavior.)</p>
http://stackoverflow.com/questions/1012488/when-running-ls-l-why-does-the-filesize-on-a-directory-not-match-the-output-of/1028398#10283980Answer by Keith Smith for When running ls -l, why does the filesize on a directory not match the output of du?Keith Smith2009-06-22T17:17:09Z2009-06-22T17:17:09Z<p>4096, in your example, is the number of bytes used by the directory itself. In other words, this is the space required to store the list of items contained in the directory. It is <strong>not</strong>, as the question title suggests, the sum of the space of all of the items stored in the directory.</p>
<p>You don't say what system you're using, but in many UNIX/Linux file systems, the minimum unit of storage allocation is 4K, which is why the size is showing as 4096. The directory entries for two items, plus "." and "..", should take considerably less space.</p>
http://stackoverflow.com/questions/992220/wafl-write-anywhere-file-layout/993647#9936471Answer by Keith Smith for WAFL: Write Anywhere File LayoutKeith Smith2009-06-14T20:06:40Z2009-06-14T20:19:44Z<p>The NetApp website has an <a href="http://www.netapp.com/us/library" rel="nofollow">extensive library</a> of papers about WAFL and their file servers.</p>
<p>If you're interested in technical aspects of what WAFL is and how it works, the <a href="http://media.netapp.com/documents/wp_3002.pdf" rel="nofollow">technical report</a> linked from the Wikipedia article is a very good starting point. This article was originally published at the 1994 USENIX Conference, so it's 15 years old. Some things have changed---and a lot of features have been added---but it still provides a good description of the key innovations in WAFL. </p>
<p>p.s. FWIW, they stopped calling themselves "Network Appliance" a couple years ago and officially changed their name to "NetApp."</p>
http://stackoverflow.com/questions/1331026/is-it-ok-to-ask-an-interviewer-a-technical-questionComment by Keith Smith on Is it ok to ask an interviewer a technical question?Keith Smith2009-09-04T14:53:16Z2009-09-04T14:53:16ZDon't count on all of your interviewers being top talent at a company. Interviewing is a skill that gets better with experience and practice. So a manager who is cares about developing his team's skill set will include some of the less experienced members on the interview schedule.http://stackoverflow.com/questions/1254815/reading-binary-files-linux-buffer-cache/1255386#1255386Comment by Keith Smith on Reading binary files, Linux Buffer CacheKeith Smith2009-08-10T15:12:15Z2009-08-10T15:12:15ZIt's always good to sanity check your numbers.
Do you need to write your own program to do this? If I wanted to measure the time to read a large file in 1MB chunks, I'd just use dd...http://stackoverflow.com/questions/1198691/how-to-test-io-performance-on-linux/1198856#1198856Comment by Keith Smith on how to test io performance on linuxKeith Smith2009-07-29T15:03:41Z2009-07-29T15:03:41Z+1 - Good list of tools and the Transactions on Storage paper is a good reference. Another potentially useful tool for network-based file system testing (i.e., NFS) is fstress: <a href="http://www.cs.duke.edu/ari/fstress/" rel="nofollow">cs.duke.edu/ari/fstress</a>http://stackoverflow.com/questions/1184907/im-a-university-student-who-hopes-to-intern-for-a-large-company-msft-apple-ri/1184923#1184923Comment by Keith Smith on I'm a university student who hopes to intern for a large company (msft, apple, rim, etc). What should I learn?Keith Smith2009-07-27T14:53:10Z2009-07-27T14:53:10Z@Norman & Alex: Are you talking about a generic letter of reference from a Professor, or a more presonal recommendation from a professor---such as when my former advisor calls me and tells me she has a great student who is looking for an internship?http://stackoverflow.com/questions/1158435/freebsd-current-dir-of-running-process-by-process-id/1158447#1158447Comment by Keith Smith on freebsd: current dir of running process by process idKeith Smith2009-07-21T15:10:40Z2009-07-21T15:10:40ZThis works for Linux, but doesn't seem to be part of /proc in FreeBSD. See the procfs man page at: <a href="http://www.freebsd.org/cgi/man.cgi?query=procfs" rel="nofollow">freebsd.org/cgi/man.cgi?query=procfs</a>http://stackoverflow.com/questions/1142889/planning-for-oracle-takeover-of-sun-farewell-mysql/1143652#1143652Comment by Keith Smith on planning for oracle takeover of sun - farewell mysql?Keith Smith2009-07-21T14:20:50Z2009-07-21T14:20:50Z@mson: bdb was originally community developed. A few of the key developers started a company---Sleepycat Software---to improve and support it. Oracle acquired Sleepycat a few years ago.http://stackoverflow.com/questions/1134705/when-a-potential-employer-wants-code-samples-what-do-they-really-want/1134836#1134836Comment by Keith Smith on When a potential employer wants "code samples", what do they REALLY want?Keith Smith2009-07-16T02:50:34Z2009-07-16T02:50:34ZI think the second paragraph is dead on. This is a way to weed out applicants who aren't worth interviewing. http://stackoverflow.com/questions/1132290/temporarily-suspend-the-pc-operating-system/1132333#1132333Comment by Keith Smith on Temporarily suspend the PC operating system.Keith Smith2009-07-15T17:47:30Z2009-07-15T17:47:30ZI agree that if you want real-time response, you will want to get Windows (or Linux) "out of the way." But I would still argue that the sane way to achieve that is to run a real-time operating system (or executive) between the hardware are the application, rather than having the application completely take over the HW. If that's what the OP is after, I agree that the RTX approach is a good one. (FWIW, years ago I worked for VenturCom, whose technology is now part of IntervalZero's RTX...)http://stackoverflow.com/questions/1131789/if-you-were-organizing-books-in-a-library-how-would-you-store-them-and-what-dataComment by Keith Smith on If you were organizing books in a library, how would you store them and what data structure would you use?"Keith Smith2009-07-15T14:41:51Z2009-07-15T14:41:51ZAre you asking about organizing physical books on library shelves, or organizing information about books in an electronic card catalog?http://stackoverflow.com/questions/1055671/how-can-i-get-the-behavior-of-gnus-readlink-f-on-a-mac/1116890#1116890Comment by Keith Smith on How can I get the behavior of GNU's readlink -f on a Mac?Keith Smith2009-07-14T11:27:39Z2009-07-14T11:27:39ZGlad to help out. You had a question that tickled my fancy.http://stackoverflow.com/questions/1055671/how-can-i-get-the-behavior-of-gnus-readlink-f-on-a-mac/1116890#1116890Comment by Keith Smith on How can I get the behavior of GNU's readlink -f on a Mac?Keith Smith2009-07-14T01:52:07Z2009-07-14T01:52:07ZThanks. The problem is that $PWD is giving us the logical working directory, based in the values in the symlinks that we've followed. We can get the real physical directory with 'pwd -P' It should compute it by chasing ".." up to the root of the file system. I'll update the script in my answer accordingly.http://stackoverflow.com/questions/1055671/how-can-i-get-the-behavior-of-gnus-readlink-f-on-a-mac/1116890#1116890Comment by Keith Smith on How can I get the behavior of GNU's readlink -f on a Mac?Keith Smith2009-07-13T15:51:09Z2009-07-13T15:51:09ZA link earlier in the path shouldn't matter. All of the tools and system calls that operate on paths automatically follow symlinks in pathnames. In testing on my system, the above script and "readlink -f" produce the same results when there is a symlink in the middle of a path---either the argument or in another symlink. Can you provide an example where it's a problem?http://stackoverflow.com/questions/1055671/how-can-i-get-the-behavior-of-gnus-readlink-f-on-a-mac/1116890#1116890Comment by Keith Smith on How can I get the behavior of GNU's readlink -f on a Mac?Keith Smith2009-07-13T12:36:17Z2009-07-13T12:36:17ZAh. Yes. It's not as simple but you can update the above script to deal with that. I'll edit (rewrite, really) the answer accordingly.http://stackoverflow.com/questions/1117292/whats-the-right-way-to-use-the-rand-function-in-c/1117299#1117299Comment by Keith Smith on What's the Right Way to use the rand() Function in C++?Keith Smith2009-07-13T00:56:33Z2009-07-13T00:56:33ZThe point here is that for a given seed, rand() will produce the same sequence of random numbers. So if you want a different sequence of random numbers each time your program runs, you need to provide a different seed on each run. That's the point of using the current time as the seed.http://stackoverflow.com/questions/1073606/is-there-a-one-line-function-that-generates-a-triangle-wave/1073634#1073634Comment by Keith Smith on Is there a one-line function that generates a triangle wave?Keith Smith2009-07-02T11:18:57Z2009-07-02T11:18:57ZDoesn't that triangular wave oscillate between 3 and <i>0</i>?