User Mark Baker - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T15:36:26Z http://stackoverflow.com/feeds/user/11815 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/234075/what-is-your-best-programmer-joke/234152#234152 528 Answer by Mark Baker for What is your best programmer joke? Mark Baker 2008-10-24T16:00:46Z 2009-08-15T20:17:07Z <p>A physicist, an engineer and a programmer were in a car driving over a steep alpine pass when the brakes failed. The car was getting faster and faster, they were struggling to get round the corners and once or twice only the feeble crash barrier saved them from crashing down the side of the mountain. They were sure they were all going to die, when suddenly they spotted an escape lane. They pulled into the escape lane, and came safely to a halt.</p> <p>The physicist said "We need to model the friction in the brake pads and the resultant temperature rise, see if we can work out why they failed".</p> <p>The engineer said "I think I've got a few spanners in the back. I'll take a look and see if I can work out what's wrong".</p> <p>The programmer said "Why don't we get going again and see if it's reproducible?"</p> http://stackoverflow.com/questions/909138/how-do-i-add-an-init-d-script-into-a-deb/981055#981055 0 Answer by Mark Baker for How do I add an init.d script into a .deb Mark Baker 2009-06-11T13:25:16Z 2009-06-11T13:25:16Z <p>Just a guess, are you using a -P option to other dh_* scripts but not this one? If you use that option, you need to use it on all the dh_* scripts.</p> http://stackoverflow.com/questions/511432/how-fast-is-mysql-compared-to-a-c-c-program-running-in-the-server/511926#511926 0 Answer by Mark Baker for How fast is MySQL compared to a C/C++ program running in the server? Mark Baker 2009-02-04T15:48:31Z 2009-02-04T15:48:31Z <p>MySQL is fairly efficient. You need to consider whether writing your own C program would mean more or less records need to be accessed to get the final result, and whether more or less data needs to be transferred over the network to get the final result.</p> <p>If either solution will result in the same number of records being accessed, and the same amount transferred over the network, then there probably won't be a big difference either way. If performance is critical then try both and benchmark them (if you don't have time to benchmark both then you probably want to go for whichever is easiest to implemnent anyway).</p> http://stackoverflow.com/questions/278526/what-was-your-biggest-nix-blooper/283667#283667 0 Answer by Mark Baker for What was your biggest *nix blooper? Mark Baker 2008-11-12T11:31:14Z 2008-11-12T11:31:14Z <p>I had a nasty keyboard with a big return key that extended to where ~ was meant to be, so when I tried to do "rm -rf ~" I lost a lot more than I intended.</p> <p>It could have been a lot worse, I wasn't in / at the time.</p> http://stackoverflow.com/questions/41925/is-there-a-standard-for-storing-normalized-phone-numbers-in-a-database/262382#262382 0 Answer by Mark Baker for Is there a standard for storing normalized phone numbers in a database? Mark Baker 2008-11-04T16:33:02Z 2008-11-04T16:33:02Z <p>Where are you getting the phone numbers from? If you're getting them from part of the phone network, you'll get a string of digits and a number type and plan, eg</p> <p>441234567890 type/plan 0x11 (which means international E.164)</p> <p>In most cases the best thing to do is to store all of these as they are, and normalise for display, though storing normalised numbers can be useful if you want to use them as a unique key or similar. </p> http://stackoverflow.com/questions/261375/simple-mysql-insert-error/261381#261381 1 Answer by Mark Baker for Simple MySQL INSERT error... Mark Baker 2008-11-04T09:56:52Z 2008-11-04T09:56:52Z <p>Single quotes are used for string literals. In MySQL, by default, double quotes are also used for string literals although this is incompatible with standard SQL and you should stick to single quotes in your code.</p> <p>For column names, you normally wouldn't quote them at all. If you need to - and you don't for any of yours - then quote them with a backquote (`), or set it to strict ANSI compatible mode (ANSI_QUOTES) and use double quotes.</p> http://stackoverflow.com/questions/246319/peer-review-code-before-or-after-check-in/246358#246358 3 Answer by Mark Baker for peer review code before or after check in Mark Baker 2008-10-29T10:38:33Z 2008-10-29T10:38:33Z <p>We have a policy of only checking in code that's tested and working. There are advantages and disadvantages of this policy, but that's not what's being discussed here. Given this policy, review before check-in is obviously the right way.</p> <p>I actually find it much easier to review before check-in anyway; just change to the right directory and cvs diff, or better still use something like emacs's cvs status command to see what files have changed and ediff them. With a better source control system review after check in might work just as well but CVS makes it hard to see what was checked in together so it can be reviewed together.</p> <p>I'd prefer to use a DVCS, and then review obviously should happen after checking in to the developer's private branch, but before merging into the main tree.</p> http://stackoverflow.com/questions/246043/how-to-add-display-a-message-in-linux-commandline-upon-logging-in/246304#246304 0 Answer by Mark Baker for How to add display a message in linux commandline upon logging in? Mark Baker 2008-10-29T10:08:44Z 2008-10-29T10:08:44Z <p>Another possibility, depending on exactly what you want to do, is to use sysnews. This isn't a standard part of linux but is included with many distributions ("aptitude install sysnews" on debian).</p> <p>This will let you have a directory of messages that you want people to see on login. When they log in they will be shown any that they haven't previously seen.</p> http://stackoverflow.com/questions/204823/automatically-discovering-c-dependencies/204930#204930 9 Answer by Mark Baker for Automatically discovering C dependencies Mark Baker 2008-10-15T14:28:21Z 2008-10-28T17:21:14Z <p>What I do in my Makefile is</p> <pre><code>SRCS=$(wildcard *.c) depend: $(SRCS) gcc -M $(CFLAGS) $(SRCS) &gt;depend include depend </code></pre> <p>This means that if any of the source files are updated, the depend rule will run, and use gcc -M to update the file called depend. This is then included in the makefile to provide the dependency rules for all the source files.</p> <p>Make will check that a file is up to date before including it, so this depend rule will run if necessary whenever you run make without you needing to do a "make depend".</p> <p>This will run any time any file has changed. I've never found this a problem, but if you had a huge number of files in the directory you might find it took too long, in which case you could try having one dependency file per source file, like this:</p> <pre><code>SRCS=$(wildcard *.c) DEPS=$(SRCS:.c=.dep) %.dep : %.c gcc -M $(CFLAGS) $&lt; &gt;$@ include $(DEPS) </code></pre> <p>Note that you can use -MM instead of -M to not include system headers.</p> http://stackoverflow.com/questions/229551/string-contains-in-bash/240181#240181 0 Answer by Mark Baker for String contains in bash Mark Baker 2008-10-27T14:57:44Z 2008-10-27T14:57:44Z <p>I'd use grep, and not use the [ command, just do</p> <pre><code>if grep -q foo &lt;&lt;&lt;$string; then echo "It's there" fi </code></pre> <p>The -q option makes grep not output anything, as we only want the return code. &lt;&lt;&lt; makes the shell expand the next word and use it as the input to the command, a one-line version of the &lt;&lt; here document (I'm not sure whether this is standard or a bashism).</p> http://stackoverflow.com/questions/222833/whats-a-more-concise-way-of-finding-text-in-a-set-of-files/240123#240123 0 Answer by Mark Baker for what's a more concise way of finding text in a set of files? Mark Baker 2008-10-27T14:44:27Z 2008-10-27T14:44:27Z <p>You say that you like the output of your method (using find) better. The only difference I can see between them is that grepping multiple files will put the filename on the front. </p> <p>You can always (in GNU grep, but you must be using that or -r and --include wouldn't work) turn the filename off by using -h (--no-filename). The opposite, for anyone who does want filenames but has to use find for some other reason, is -H (--with-filename).</p> http://stackoverflow.com/questions/239526/truncate-output-in-bash/239535#239535 9 Answer by Mark Baker for truncate output in BASH Mark Baker 2008-10-27T10:40:52Z 2008-10-27T10:40:52Z <p>I'd recommend cut, as others have said. But another alternative that is sometimes useful because it allows any whitespace as separators, is to use awk:</p> <pre><code>du file.name | awk '{print $1}' </code></pre> http://stackoverflow.com/questions/234075/what-is-your-best-programmer-joke/234123#234123 9 Answer by Mark Baker for What is your best programmer joke? Mark Baker 2008-10-24T15:55:25Z 2008-10-24T15:55:25Z <p>How many hardware engineers does it take to change a lightbulb? None, we can work around it in software.</p> <p>How many software engineers does it take to change a lightbulb? None, we'll just put it in the manual.</p> <p>How many technical authors does it take to change a lightbulb? None, the customer will figure it out.</p> http://stackoverflow.com/questions/231528/do-any-databases-support-automatic-index-creation/233917#233917 1 Answer by Mark Baker for Do any databases support automatic Index Creation? Mark Baker 2008-10-24T15:02:25Z 2008-10-24T15:02:25Z <p>Part of the reason may be that indexes don't just give a small speedup. If you don't have a suitable index on a large table queries can run so slowly that the application is entirely unusable, and possibly if it is interacting with other software it simply won't work. So you really need the indexes to be right before you start trying to use the application.</p> <p>Also, rather than building an index in the background, and slowing things down further while it's being built, it is better to have the index defined before you start adding significant amounts of data.</p> <p>I'm sure we'll get more tools that take sample queries and work out what indexes are necessary; also probably we will eventually get databases that do as you suggest and monitor performance and add indexes they think are necessary, but I don't think they will be a replacement for starting off with the right indexes.</p> http://stackoverflow.com/questions/225546/amazing-programming-achievements/225740#225740 0 Answer by Mark Baker for Amazing programming achievements Mark Baker 2008-10-22T13:34:18Z 2008-10-22T13:34:18Z <p>I remember on various home computers there were quite a few programs that changed screen mode half way down the screen. All fairly clever, but I can understand how they did it, you count hsync interrupts and change mode (by register tweaking rather than an API call) after you've had a certain number of them.</p> <p>But I saw one program, a 3D modeller whose name I've long since forgotten, which changed mode half way <em>across</em> the screen. Presumably it changes to one mode on the hsync interrupt then uses a timing loop to wait until it's time to switch back, and puts up with wasting half of the limited CPU power (but if all you're doing is running the GUI you can probably afford this).</p> <p>(This was on the Atari ST. ST Medium res was 640x200 4 colours; ST Low res has 320x200 16 colours).</p> http://stackoverflow.com/questions/221267/copying-symbolic-links-in-mac-os-x/221316#221316 3 Answer by Mark Baker for Copying symbolic links in Mac OS X Mark Baker 2008-10-21T09:40:08Z 2008-10-21T17:06:15Z <p>As David mentioned, OS X is missing the handy -a option that gnu cp has.</p> <p>However, if you use -R to do a recursive copy, then it will copy symlinks by default, so</p> <pre><code>cp -R source destination </code></pre> <p>ought to work.</p> http://stackoverflow.com/questions/221250/reducing-coding-standards-brainwashing-duration-and-effort-of-new-hires/221438#221438 0 Answer by Mark Baker for Reducing coding standards 'brainwashing' duration and effort of new hires. Mark Baker 2008-10-21T10:48:01Z 2008-10-21T10:48:01Z <p>I don't think you can reduce the length of the learning period, but you can reduce the amount of un-necessary work caused during it by having more frequent code reviews than you would for more experienced developers.</p> <p>Start by giving the new starters some bugs to fix, and review each of their fixes as they have done it. An additional benefit of starting them off doing bug fixing should be that they'll be exposed to your existing code which you hope will meet your standards already (sadly too high a proportion of ours doesn't).</p> http://stackoverflow.com/questions/212466/what-is-a-bus-error/212514#212514 2 Answer by Mark Baker for What is a bus error? Mark Baker 2008-10-17T14:57:03Z 2008-10-17T14:57:03Z <p>It normally means an un-aligned access.</p> <p>An attempt to access memory that isn't physically present would also give a bus error, but you won't see this if you're using a processor with an MMU and an OS that's not buggy, because you won't have any non-existent memory mapped to your process's address space.</p> http://stackoverflow.com/questions/132241/hidden-features-of-c/211481#211481 10 Answer by Mark Baker for Hidden features of C Mark Baker 2008-10-17T08:54:17Z 2008-10-17T08:54:17Z <p>Well, I've never used it, and I'm not sure whether I'd ever recommend it to anyone, but I feel this question would be incomplete without a mention of Simon Tatham's <a href="http://www.chiark.greenend.org.uk/~sgtatham/coroutines.html" rel="nofollow">co-routine trick.</a></p> http://stackoverflow.com/questions/208772/process-text-files-ftped-into-a-set-of-directories-in-a-hosted-server/209422#209422 1 Answer by Mark Baker for Process text files ftp'ed into a set of directories in a hosted server Mark Baker 2008-10-16T16:56:45Z 2008-10-16T16:56:45Z <p>The 30 minute limitation is pretty silly really. Starting processes in linux is not an expensive operation, so if all you're doing is checking for new files there's no good reason not to do it more often than that. We have cron jobs that run every minute and they don't have any noticeable effect on performance. However, I realise it's not your rule and if you're going to stick with that hosting provider you don't have a choice.</p> <p>You'll need a long running daemon of some kind. The easy way is to just poll regularly, and probably that's what I'd do. Inotify, so you get notified as soon as a file is created, is a better option.</p> <p>You can use inotify from perl with Linux::Inotify, or from python with pyinotify.</p> <p>Be careful though, as you'll be notified as soon as the file is created, not when it's closed. So you'll need some way to make sure you don't pick up partial files.</p> <p>With polling it's less likely you'll see partial files, but it will happen eventually and will be a nasty hard-to-reproduce bug when it does happen, so better to deal with the problem now.</p> http://stackoverflow.com/questions/209148/mfc-what-on-earth-is-a-csplitterwnd-caret/209350#209350 0 Answer by Mark Baker for MFC: What on earth is a CSplitterWnd Caret? Mark Baker 2008-10-16T16:36:18Z 2008-10-16T16:36:18Z <p>It's the text cursor.</p> <p>In early versions of windows, the text cursor was like a proofreader's caret mark (like ^ only on the baseline). This makes some sense, as that mark is what proofreaders use to indicate where text should be inserted.</p> <p>Still seems bizarre to call it the caret, but they did, possibly because they'd already decided to use the word "cursor" for what everyone else calls the mouse pointer.</p> http://stackoverflow.com/questions/208193/why-should-i-use-an-ide/208359#208359 0 Answer by Mark Baker for Why should I use an IDE? Mark Baker 2008-10-16T12:32:06Z 2008-10-16T12:32:06Z <p>I'm not sure there's a clear dividing line between a text editor and an IDE. You have the likes of Notepad at one end of the scale, and the best modern IDEs at the other, but there are a lot of thing in between. Most text editors have syntax highlighting; editors aimed at programmers often have various other features such as easy code navigation and auto complete. Emacs even lets you integrate a debugger. The IDEs of even ten years ago had far less features to help programmers than you'd expect of a serious text editor these days.</p> http://stackoverflow.com/questions/208054/user-names-and-white-spaces/208113#208113 0 Answer by Mark Baker for User Names and White-Spaces Mark Baker 2008-10-16T11:01:29Z 2008-10-16T11:01:29Z <p>It depends where they're going to be used. Not using spaces in unix user names makes sense for the same reason it makes sense not to use them in unix filenames - they're a pain to type at the command line. That said, unix does allow spaces in user names as well as in filenames.</p> <p>I can see no reason for things like web apps not to allow spaces.</p> <p>Actually the thing that annoys me most is web apps not allowing @ in user names. When it's something with millions of users the chances of a name I really want being available is small, so I like to use my email address which at least is guaranteed to be unique.</p> http://stackoverflow.com/questions/207848/getting-the-full-result-from-ps/207945#207945 2 Answer by Mark Baker for Getting The Full Result from "ps" Mark Baker 2008-10-16T09:36:57Z 2008-10-16T09:36:57Z <p>There are two different option syntaxes for ps; the standard POSIX one based on SysV, and the BSD one. GNU ps, as used on linux, supports both, which it can do because the POSIX options have dashes in front and the BSD ones don't, as well as some of it's own options in the normal GNU --long-option-name style.</p> <p>Anyway, to get all processes in POSIX style is -e, in BSD it's ax (a includes other user's processes, x includes processes without a controlling terminal i.e. daemons).</p> <p>There is no single option that will make it include all the columns. There are a huge number of possible columns. The POSIX options -f, -F and -L all cause it to show different sets of extra columns, as does the BSD option u (hence the "ps aux" mentioned in another answer is a very common command).</p> <p>If you really want more columns than that you have to name explicitly which ones you want, using the -o (or o) option. See the man page for a list. There's about a hundred different names you can use, but some of them are duplicates, and others display the same info in different ways.</p> http://stackoverflow.com/questions/126141/how-do-you-find-out-which-version-of-the-gtk-ubuntu-is-using/126193#126193 6 Answer by Mark Baker for How do you find out which version of the GTK Ubuntu is using? Mark Baker 2008-09-24T09:26:40Z 2008-10-15T17:09:21Z <p>The above suggestion will tell you which minor version of 2.0 is installed. Different major versions will have different package names because they can co-exist on the system (in order to support applications built with older versions).</p> <p>Even for development files, which normally would only let you have one version on the system, you can have a version of gtk 1.x and a version of gtk 2.0 on the same system (the include files are in directories called gtk-1.2 or gtk-2.0).</p> <p>So in short there isn't a simple answer to "what version of GTK is on the system". But...</p> <p>Try something like:</p> <pre><code>dpkg -l libgtk[0-9]* | grep ^i </code></pre> <p>to list all the libgtk packags, including -dev ones, that are on your system. dpkg -l will list all the packages that dpkg knows about, including ones that aren't currently installed, so I've used grep to list only ones that are installed (line starts with i).</p> <p>Alternatively, and probably better if it's the version of the headers etc that you're interested in, use pkg-config:</p> <pre><code>pkg-config --modversion gtk+ </code></pre> <p>will tell you what version of GTK 1.x development files are installed, and</p> <pre><code>pkg-config --modversion gtk+-2.0 </code></pre> <p>will tell you what version of GTK 2.0. The old 1.x version also has its own gtk-config program that does the same thing.</p> http://stackoverflow.com/questions/204708/primary-partition-limit-on-linux/204730#204730 6 Answer by Mark Baker for primary partition limit on Linux Mark Baker 2008-10-15T13:39:13Z 2008-10-15T13:39:13Z <p>It isn't a limit of linux, but of the PC partition table format (invented by IBM I think), and therefore is obviously per drive.</p> <p>Linux actually supports other partition table formats too though I wouldn't really reccommend them if you're running on PC hardware, they're mainly provided so it can co-exist with other operating systems and/or be booted by the firmware on hardware where those partition table formats are customarily used.</p> http://stackoverflow.com/questions/204202/how-does-the-ls-command-work-in-linux-unix/204211#204211 19 Answer by Mark Baker for How does the 'ls' command work in Linux/Unix? Mark Baker 2008-10-15T09:59:00Z 2008-10-15T09:59:00Z <p>ls doesn't fork. The shell forks and execs in order to run any command that isn't built in, and one of the commands it can run is ls.</p> <p>ls uses opendir() and readdir() to step through all the files in the directory. If it needs more information about one of them it calls stat().</p> http://stackoverflow.com/questions/134375/conferences-symposiums-courses-in-britain/134464#134464 1 Answer by Mark Baker for Conferences/Symposiums/Courses in Britain Mark Baker 2008-09-25T16:47:29Z 2008-10-15T02:28:55Z <p>I've never been to one, but <a href="http://www.accu.org/" rel="nofollow" title="ACCU">ACCU</a> conferences have a very good reputation. They're not specifically about web development, but looking at past programmes there's likely to be a few sessions that are directly relevant and lots more of more general interest to you.</p> http://stackoverflow.com/questions/199661/what-linux-shell-should-i-use/201400#201400 4 Answer by Mark Baker for What Linux shell should I use? Mark Baker 2008-10-14T14:31:29Z 2008-10-14T14:31:29Z <p>The problem with csh is that it's crap for scripting, as explained <a href="http://faqs.cs.uu.nl/na-dir/unix-faq/shell/csh-whynot.html" rel="nofollow">here</a>. There's no real reason why you shouldn't use it as an interactive shell, but most people find it confusing having to learn two different shells and not being able to try out bits of their scripts on the command line, so it's easiest to use the same for everything.</p> <p>The obvious candidates for an interactive shell are bash, dash, zsh and {pd,}ksh. All of these implement the posix shell standard, with some minor extensions. Pick whichever you like for interactive use, I'd tend to go with bash just because it's the standard on linux but they all have their merits and zsh in particular seems popular.</p> <p>If you're writing a script that you intend to be portable, use #!/bin/sh, and make sure you use standard posix shell syntax. If it works on both bash and ksh it's probably standard. There are some old versions of unix which have a non-standard /bin/sh but I wouldn't bother with that unless you know you have to. More of a problem for portability are all the command line tools you call from your script.</p> http://stackoverflow.com/questions/199555/how-would-you-go-about-implementing-the-game-reversi-othello/201293#201293 0 Answer by Mark Baker for How would you go about implementing the game reversi? (othello) Mark Baker 2008-10-14T14:08:32Z 2008-10-14T14:08:32Z <p>I wrote a reversi game many years ago, when I was still at school. Its strategy was very simple, it just went for the maximum number of pieces, but weighted so it preferred the edges and particularly the corners and didn't like squares that risked giving away the corners.</p> <p>This worked fairly well against people who hadn't yet worked out what it was doing, but once you had it was very easy to use its strategy against it. I'm not proud to say, however, that it beat me the first few times even though I'd written it!</p> <p>A proper AI with a few moves of lookahead is far more complicated. Should be an interesting problem, but at the time I was more interested in the user interface.</p> http://stackoverflow.com/questions/406760/whats-your-most-controversial-programming-opinion/410293#410293 Comment by Mark Baker on What's your most controversial programming opinion? Mark Baker 2009-08-17T12:41:38Z 2009-08-17T12:41:38Z &quot;What you have he can pick up in an instant&quot; - Not necessarily. The ability to write good code is something that tends to come with experience, though some people pick it up quickly and some never seem to get there. The guy with the CS degree will certainly be able to pick up the languages and APIs you use in an instant, but there's no guarantee he'll ever be a good programmer. And he certainly won't become one overnight if he's not one now. http://stackoverflow.com/questions/406760/whats-your-most-controversial-programming-opinion/406857#406857 Comment by Mark Baker on What's your most controversial programming opinion? Mark Baker 2009-08-14T16:30:47Z 2009-08-14T16:30:47Z I'd say if something is half as fast, it doesn't matter (in most cases) because you can always buy faster hardware. But a bad algorithm or bad data structure can make things thousands of times slower. If you really think performance doesn't matter you've obviously only ever done noddy programming. http://stackoverflow.com/questions/406760/whats-your-most-controversial-programming-opinion/406812#406812 Comment by Mark Baker on What's your most controversial programming opinion? Mark Baker 2009-08-14T16:21:52Z 2009-08-14T16:21:52Z I think in a complicated algorithm comments saying things like &quot;If we get here then either X or Y&quot; help a lot with understanding how the code works; this is true however good the code is. Yes, if the code is good then someone reading the code can work out for themselves, but not instantly if it's a complicated algorithm. I also think you shouldn't need to read the code to work out how to use a function. Ideally just the name of the function and its arguments should be enough, but realistically that will often not be true and a comment can be very useful. http://stackoverflow.com/questions/1154410/how-does-a-systems-tcp-ip-stack-differentiate-between-multiple-programs-connecti/1154419#1154419 Comment by Mark Baker on How does a system's TCP/IP stack differentiate between multiple programs connecting to the same address and port? Mark Baker 2009-07-20T16:10:05Z 2009-07-20T16:10:05Z why was this voted down? It's somewhat lacking in detail but it's not wrong and the link to wikipedia would be useful if it wasn't a rather confusing wikipedia page http://stackoverflow.com/questions/828053/how-do-you-link-to-a-specific-version-of-a-shared-library-in-gcc Comment by Mark Baker on How do you link to a specific version of a shared library in GCC Mark Baker 2009-06-11T13:30:31Z 2009-06-11T13:30:31Z kastauyra: the versions are not, or at least cannot be assumed to be, binary compatible. So when you link it records the major version linked against in the binary: if you compile on the newer system it will require version 4 and not work on the old system. (Actually what it records is the soname, which is a string stored in the library file which conventionally but not necessarily is something &quot;libcurl.so.3&quot;) http://stackoverflow.com/questions/278526/what-was-your-biggest-nix-blooper/283667#283667 Comment by Mark Baker on What was your biggest *nix blooper? Mark Baker 2008-12-01T16:55:33Z 2008-12-01T16:55:33Z On the few occasions I've used an actual US keyboard I've not had that problem because I was expecting it to be different from what I was used to. http://stackoverflow.com/questions/278526/what-was-your-biggest-nix-blooper/283667#283667 Comment by Mark Baker on What was your biggest *nix blooper? Mark Baker 2008-12-01T16:54:38Z 2008-12-01T16:54:38Z Sorry, I should have said that I'm used to a UK keyboard, and this keyboard was supposedly a UK keyboard too. Normally the UK keyboard has a the ~ in the bottom left of where the return key is on a US keyboard (see <a href="http://en.wikipedia.org/wiki/Keyboard_layout#UK" rel="nofollow">en.wikipedia.org/wiki/Keyboard_layout#UK</a>) http://stackoverflow.com/questions/280938/how-to-script-a-standard-linux-build/281087#281087 Comment by Mark Baker on How to script a standard Linux build? Mark Baker 2008-11-12T11:34:43Z 2008-11-12T11:34:43Z If you use dd like that, make sure you make the blocksize much higher than the default or it goes really slowly. http://stackoverflow.com/questions/280938/how-to-script-a-standard-linux-build/282517#282517 Comment by Mark Baker on How to script a standard Linux build? Mark Baker 2008-11-12T11:34:06Z 2008-11-12T11:34:06Z What does FAI give you that just using debian-installer with a preseed file doesn't? http://stackoverflow.com/questions/262657/the-coolest-server-names/262686#262686 Comment by Mark Baker on The Coolest Server Names Mark Baker 2008-11-05T14:31:13Z 2008-11-05T14:31:13Z My grandma's names are Gladys Doreen Enid. Any of them would do. She hates all of them. http://stackoverflow.com/questions/41925/is-there-a-standard-for-storing-normalized-phone-numbers-in-a-database/41949#41949 Comment by Mark Baker on Is there a standard for storing normalized phone numbers in a database? Mark Baker 2008-11-04T16:26:52Z 2008-11-04T16:26:52Z Who exactly is +44 (0)181 4642542 meant to be friendly for? UK users who might not know what to do with the +44 if they're not used to dialling internationally, or international users who won't know that they're supposed to drop the (0)? http://stackoverflow.com/questions/257552/c-program-communicating-with-mysql-database/257556#257556 Comment by Mark Baker on C++ Program communicating with MySQL Database Mark Baker 2008-11-04T10:14:19Z 2008-11-04T10:14:19Z I've found it very easy to use actually. But I'd recommend writing a wrapper that retries automatically on lock timeouts or connection fails. http://stackoverflow.com/questions/261375/simple-mysql-insert-error/261380#261380 Comment by Mark Baker on Simple MySQL INSERT error... Mark Baker 2008-11-04T10:01:08Z 2008-11-04T10:01:08Z Yes, but not using quotes at all is eassier to read (and if your column names are such that you need to quote them, you chose the wrong column names) http://stackoverflow.com/questions/250425/should-i-edit-a-question-or-answer-with-offensive-content/250454#250454 Comment by Mark Baker on Should I edit a question or answer with offensive content? Mark Baker 2008-10-30T15:46:26Z 2008-10-30T15:46:26Z What do you consider offensive language? Personally I'm offended by &quot;f**k&quot; but not by &quot;fuck&quot;. http://stackoverflow.com/questions/250425/should-i-edit-a-question-or-answer-with-offensive-content/250524#250524 Comment by Mark Baker on Should I edit a question or answer with offensive content? Mark Baker 2008-10-30T15:45:47Z 2008-10-30T15:45:47Z I find it very hard to believe that there is anywhere that would fire an employee for reading something work related that happened to include an &quot;offensive&quot; word.