Keith Smith

689
reputation
122 views

Registered User

name Keith Smith
member for 1 year
seen Nov 7 at 5:49
website
location Cambridge, MA
age 44
Building file systems for fun and for profit
Dec
6
awarded  Mortarboard
Sep
17
awarded  Yearling
Sep
4
comment Is it ok to ask an interviewer a technical question?
Don'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.
Aug
12
accepted If you were organizing books in a library, how would you store them and what data structure would you use?”
Aug
10
revised If you were organizing books in a library, how would you store them and what data structure would you use?”
typos
Aug
10
comment Reading binary files, Linux Buffer Cache
It'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...
Aug
10
answered Reading binary files, Linux Buffer Cache
Aug
5
awarded  Nice Answer
Jul
31
answered Does a background in physics make you a better programmer?
Jul
29
comment how to test io performance on linux
+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: cs.duke.edu/ari/fstress
Jul
27
answered Learning a New Language on the Job
Jul
27
comment I’m a university student who hopes to intern for a large company (msft, apple, rim, etc). What should I learn?
@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?
Jul
21
answered freebsd: current dir of running process by process id
Jul
21
comment freebsd: current dir of running process by process id
This works for Linux, but doesn't seem to be part of /proc in FreeBSD. See the procfs man page at: freebsd.org/cgi/man.cgi?query=procfs
Jul
21
comment planning for oracle takeover of sun - farewell mysql?
@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.
Jul
21
awarded  
Jul
16
comment When a potential employer wants “code samples”, what do they REALLY want?
I think the second paragraph is dead on. This is a way to weed out applicants who aren't worth interviewing.
Jul
15
revised What’s your experience with Flash drives?
Clarify one of the examples
Jul
15
revised What’s your experience with Flash drives?
Fix typo
Jul
15
comment Temporarily suspend the PC operating system.
I 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...)
Jul
15
revised Temporarily suspend the PC operating system.
wordsmithing
Jul
15
answered Temporarily suspend the PC operating system.
Jul
15
revised If you were organizing books in a library, how would you store them and what data structure would you use?”
added 137 characters in body
Jul
15
answered If you were organizing books in a library, how would you store them and what data structure would you use?”
Jul
15
comment If you were organizing books in a library, how would you store them and what data structure would you use?”
Are you asking about organizing physical books on library shelves, or organizing information about books in an electronic card catalog?
Jul
14
accepted How to do an active sleep?
Jul
14
answered How to do an active sleep?
Jul
14
revised What’s your experience with Flash drives?
Remove spurious word
Jul
14
comment How can I get the behavior of GNU’s readlink -f on a Mac?
Glad to help out. You had a question that tickled my fancy.
Jul
14
answered Graduate Degree needed in Programming Jobs?
Jul
14
answered What’s your experience with Flash drives?
Jul
14
revised How can I get the behavior of GNU’s readlink -f on a Mac?
Fix computation of current working directory
Jul
14
comment How can I get the behavior of GNU’s readlink -f on a Mac?
Thanks. 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.
Jul
13
revised How can I do better in interviews?
Fix typo
Jul
13
comment How can I get the behavior of GNU’s readlink -f on a Mac?
A 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?
Jul
13
revised How can I get the behavior of GNU’s readlink -f on a Mac?
Minor simplification to sample script
Jul
13
revised How can I get the behavior of GNU’s readlink -f on a Mac?
Remove extra word
Jul
13
comment How can I get the behavior of GNU’s readlink -f on a Mac?
Ah. 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.
Jul
13
comment What’s the Right Way to use the rand() Function in C++?
The 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.
Jul
12
answered How can I get the behavior of GNU’s readlink -f on a Mac?
Jul
2
comment Is there a one-line function that generates a triangle wave?
Doesn't that triangular wave oscillate between 3 and 0?
Jul
1
answered In C - check if a char exists in a char array
Jul
1
comment Why kernel code/thread executing in interrupt context cannot sleep?
+1 - Excellent points. You say "It's a property of how O/S's have to work." I would go further and say "It's the way the hardware works." The operating system has to live with it.
Jun
30
comment Why kernel code/thread executing in interrupt context cannot sleep?
@arsane - What do you mean when you say, "It's a design idea?"
Jun
30
answered Should “inability to code under pressure” be a valid excuse when writing code in an interview?
Jun
30
comment Should “inability to code under pressure” be a valid excuse when writing code in an interview?
+1 Good advice for avoiding some of the pitfalls of interview coding questions.
Jun
30
awarded  Commentator
Jun
30
comment Why kernel code/thread executing in interrupt context cannot sleep?
I don't know how you would prove, in the "mathematical" sense that it's impossible to build a system that allows an ISR to sleep. But I've programmed inside a number of OSs, and none of them allowed this. In practice, the closest I've ever seen to allowing an interrupt handler to do things like sleep is to have an explicit process that does the work of handling interrupts. But the system's I've seen that do this (e.g., Solaris) still have a minimal ISR that isn't allowed to do things like sleep. All it does is to wakeup the interrupt thread and let it do the real work.
Jun
30
revised Why kernel code/thread executing in interrupt context cannot sleep?
Expand example for clarity.
Jun
30
comment Why kernel code/thread executing in interrupt context cannot sleep?
@Methos - Re 2. In my example, its a kernel-mode process that holds the lock. I'll edit my answer to provide a clearer explanation. Note that the ISR can't release locks before calling sleep because the ISR can't acquire locks in the first place. If you try to acquire a lock, you might block, which is just as bad as directly calling sleep.