User JBB - Stack Overflow most recent 30 from stackoverflow.com 2009-12-06T08:52:55Z http://stackoverflow.com/feeds/user/12332 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/85816/force-https-how-is-it-possible/85878#85878 0 Answer by JBB for Force HTTPS. How is it possible? JBB 2008-09-17T17:57:36Z 2009-10-19T09:23:26Z <p>Don't mix HTTP and HTTPS on the same page. If you have a form page that is served up via HTTP, I'm going to be nervous about submitting data -- I can't see if the submit goes over HTTPS or HTTP without doing a View Source and hunting for it.</p> <p>Serving up the form over HTTPS along with the submit link isn't that heavy a change for the advantage.</p> http://stackoverflow.com/questions/93816/do-you-chat-online-for-work-purposes 3 Do you chat online for work purposes? JBB 2008-09-18T15:52:23Z 2009-09-22T03:25:57Z <p>I've worked with folks who are chatting online with their peers, constantly batting around ideas. I've also worked with folks who adamantly refuse and think it's a waste of time.</p> <p>Are online live chatting forums of particular use to you? Why or why not? Internal to your company, or external and world-wide? Does your employer encourage or discourage their use? </p> <p>Update: I see some people are voting this question down, yet so far all the answers have been positive, if with some reservations. If someone has a strong negative opinion (I hate online chatting and think it should be banned etc.) I'd really like to hear why.</p> http://stackoverflow.com/questions/150058/mysql-drop-database-takes-time-why 3 mysql "drop database" takes time -- why? JBB 2008-09-29T18:42:14Z 2009-08-29T05:05:05Z <p>mysql5.0 with a pair of databases "A" and "B", both with large innodb tables. "drop database A;" freezes database "B" for a couple minutes. Nothing is using "A" at that point, so why is this such an intensive operation?</p> <p>Bonus points: Given that we use "A", upload data into "B", and then switch to using "B", how can we do this faster? Dropping databases isn't the sort of thing one typically has to do all the time, so this is a bit off the charts.</p> http://stackoverflow.com/questions/75857/how-can-myisam-tables-be-used-more-safely 1 How can MyISAM tables be used more safely? JBB 2008-09-16T19:10:34Z 2008-12-20T01:49:47Z <p>I like InnoDB's safety, consistency, and self-checking.</p> <p>But I need MyISAM's speed and light weight.</p> <p>How can I make MyISAM less prone to corruption due to crashes, bad data, etc.? It takes forever to go through a check (either CHECK TABLE or myisamchk). </p> <p>I'm not asking for transactional security -- that's what InnoDB is for. But I do want a database I can restart quickly rather than hours (or days!) later.</p> <p><em>UPDATE:</em> I'm not asking how to load data into tables faster. I've beat my head against that already, and determined that using the MyISAM tables for my LOAD DATA is simply much faster. What I'm after now is <em>mitigating the risks</em> of using MyISAM tables. That is, reducing chances of damage, increasing speed of recovery.</p> http://stackoverflow.com/questions/97179/must-an-smtp-client-provide-the-mta-a-globally-resolvable-hostname-in-the-helo/97282#97282 0 Answer by JBB for Must an SMTP client provide the MTA a globally resolvable hostname in the HELO? JBB 2008-09-18T21:40:14Z 2008-09-18T21:40:14Z <p>Eh, I disagree. It can provide total garbage within the EHLO/HELO if it wants to. As long as it says something, <em>and</em> as long as I can resolve the ip address it's coming from, I'm happy.</p> <p>Inside the EHLO is often a short hostname, not a FQDN.</p> http://stackoverflow.com/questions/96405/deploying-to-multiple-servers/96453#96453 0 Answer by JBB for Deploying to multiple servers JBB 2008-09-18T20:18:04Z 2008-09-18T20:18:04Z <p>I concur -- set your svn tree up, and use rsync over ssh to copy the tree out to the remote locations. rsync will make it fast and efficient, only copying changes rather than full files.</p> <p>You want to export your svn tree to some directory, then rsync from there to the remote host's directory tree.</p> http://stackoverflow.com/questions/95631/open-a-file-with-su-sudo-inside-emacs/95758#95758 0 Answer by JBB for Open a file with su/sudo inside Emacs JBB 2008-09-18T19:03:15Z 2008-09-18T19:03:15Z <p>Ugh. Perhaps you could open a shell in Emacs and exec sudo emacs. </p> <p>The problem is that you presumably don't just want to open the file. You want to be able to save it later. Thus you need your root privs to persist, not just exist for opening the file.</p> <p>Sounds like you want Emacs to become your window manager. It's bloated enough without that. :)</p> http://stackoverflow.com/questions/95575/while-coding-how-many-columns-do-you-format-for/95634#95634 3 Answer by JBB for While coding, how many columns do you format for? JBB 2008-09-18T18:52:03Z 2008-09-18T18:52:03Z <p>80, out of custom. It's also fairly practical -- I find my eyes can't scan 132 columns of code as easily as 80. With 80 I can focus on the middle of the screen and scroll and have a reasonable chance of spotting what I'm looking for. With 132 I scroll WAY slower and have to scan my eyes back and forth.</p> http://stackoverflow.com/questions/95504/how-do-i-remind-myself-to-take-breaks-while-coding/95532#95532 0 Answer by JBB for How do I remind myself to take breaks while coding? JBB 2008-09-18T18:43:15Z 2008-09-18T18:43:15Z <p>I bought one of these <a href="http://www.invisibleclock.com/" rel="nofollow">Invisible Clocks</a> a while back. Lets you set multiple alarms, repeating alarms, etc.</p> <p>I had it set to vibrate every ten minutes to remind me to unclench my jaw and relax my shoulders and neck. :P</p> <p>(The advantage to this versus computerized alarms is that it stayed on my belt while I stormed around the office, rather than only working while I was sitting at the computer.)</p> http://stackoverflow.com/questions/95305/looking-for-regex-to-extract-email-addresses-from-etc-passwd/95342#95342 1 Answer by JBB for Looking for regex to extract email addresses from /etc/passwd JBB 2008-09-18T18:29:02Z 2008-09-18T18:29:02Z <p>Search for all email-valid-characters before and after the @ sign. Like:</p> <p>[-A-z0-9.<em>]+@[-A-z0-9.</em>]+</p> <p>Greedy matching should pull in everything it can, and it'll stop at the commas or colons.</p> <p>Check which characters are valid in email addresses, though. I've left some out (like +)</p> http://stackoverflow.com/questions/95111/what-are-good-ways-of-improving-my-programming-skills-during-times-of-low-energy/95145#95145 9 Answer by JBB for What are good ways of improving my programming skills during times of low energy? JBB 2008-09-18T18:12:46Z 2008-09-18T18:12:46Z <p>Do Something Else Instead!</p> <p>Your brain's already tired from programming, etc. -- spend time doing something else. Learn something new! It's amazing how that will a) help you regain your energy and b) will inspire your brain to learn more about programming when the opportunity presents itself.</p> <p>Seriously, spending time doing something else will enhance your abilities in your focus area.</p> http://stackoverflow.com/questions/68862/how-to-remain-employable-in-the-face-of-constant-technological-change/95039#95039 0 Answer by JBB for How to remain employable in the face of constant technological change JBB 2008-09-18T18:02:27Z 2008-09-18T18:02:27Z <p>Use Pareto's Principle (80/20 rule) -- While you should work to be excellent at something, it really isn't possible to be excellent at everything. However, if you don't need to be an absolute expert at something, don't spend that much time on it! Instead spend the time on something else. You can learn 80% of the material in the first 20% of your time (get the basics, become useful.) To learn that last 20% will cost you 80% of your time. </p> <p>So you can spend N hours becoming an expert at one thing, or you can spend N hours becoming useful and familiar with <em>five different</em> things.</p> <p>Don't <em>just</em> specialize. If you're overly specialized, you're in a niche, and if that niche disappears (and new tech always does come along), you're in for trouble.</p> <p>Worse still, if you don't keep in practice <em>learning</em> things, it's remarkably difficult to get back into learning mode. (Just think about how hard it'd be to take college classes now. It was easier back then, because you did it all the time.)</p> <p>If you find something particularly interesting, spend more time on it. Becoming an expert is expensive -- only do it for stuff you really want to be an expert in. Becoming a generalist will set you up to find something to become an expert in.</p> <p>Keep learning! What you know now will be outdated soon. Can you learn what you need to function tomorrow? </p> http://stackoverflow.com/questions/90268/sleeping-problems-computer-addiction/93697#93697 2 Answer by JBB for Sleeping problems, computer addiction JBB 2008-09-18T15:40:39Z 2008-09-18T15:40:39Z <p><A HREF="http://www.pzizz.com" rel="nofollow">Pzizz</a> has worked wonders for me! I've gotten pretty good at mental relaxation "exercises" to quiet down the racing thoughts in my brain, but when I can't manage on my own I stick on a set of headphones and play one of the <a href="http://www.pzizz.com/download" rel="nofollow">Sleep tracks</a>, lie back and relax.</p> <p>I've also found their power naps helpful.</p> <p>In addition to this, I highly recommend:</p> <p>Exercise</p> <p>Write things down to get them off your mind (you can think about them later)</p> <p>Be in bed at the same time every night</p> <p>Get up at the same time every morning! This is crucial and a lot of people seem to forget it!</p> <p>Consider a Dawn Simulator alarm clock. This helps me a lot with getting up at the same time daily.</p> <p>Consider a SAD (Seasonal Affective Disorder) lightbox -- use it first thing in the morning over a cup of coffee or an email session. Helps get the ol' metabolism going.</p> <p>EAT BREAKFAST -- again, get the metabolism going!</p> <p>Honestly, for me the morning routine seems more important than the evening routine -- other than keeping things off my mind when it's time for bed. </p> http://stackoverflow.com/questions/19876/e-learning-online-courses-recommendations/87301#87301 2 Answer by JBB for e-Learning/Online courses recommendations JBB 2008-09-17T20:31:09Z 2008-09-17T20:31:09Z <p>Find something related but which will stretch you. Like doing security stuff? Do some online <a href="http://www.sans.org" rel="nofollow">SANS</a> training, or get your <A href="http://www.isc2.org" rel="nofollow">CISSP</a>. Ask your manager what areas of work you're weak in, and find a course on those. Not just tech stuff, soft skills are crucial. And it gives you something to brag about at your performance review. </p> http://stackoverflow.com/questions/48115/dhcp-overwrites-cisco-vpn-resolv-conf-on-linux/87238#87238 0 Answer by JBB for DHCP overwrites Cisco VPN resolv.conf on Linux JBB 2008-09-17T20:25:34Z 2008-09-17T20:25:34Z <p>vpnc seems to be doing the right thing for my employer's cisco concentrator. I jump on and off the vpn, and it seems to update everything smoothly.</p> http://stackoverflow.com/questions/77352/how-do-i-reward-my-developers-for-the-little-things-they-get-right/87202#87202 1 Answer by JBB for How do I reward my developers for the little things they get right? JBB 2008-09-17T20:21:27Z 2008-09-17T20:21:27Z <p>Reward them with fun and important things to do, alongside the praise and recognition. "That was really clever. Here are some other brain-bangers I have on my plate. Let me know if you come up with something clever for one of them."</p> <p>I'm very motivated by the opportunity to try to come up with something unusual, something other people have scratched their heads over for a while. Best of all, a fresh perspective can often turn up something obvious that everyone else missed. Which makes me feel good, which makes me do a better job.</p> <p>Give them a chunk of time to work on their own work-related projects, while in the office. An hour or two a week. You'll wind up with some very helpful code, and some well-developed well-rounded employees.</p> http://stackoverflow.com/questions/80341/best-os-app-for-outbound-smtp-packet-capture/87083#87083 0 Answer by JBB for Best OS App for Outbound SMTP Packet Capture? JBB 2008-09-17T20:07:54Z 2008-09-17T20:07:54Z <p>Use Snort, stripped down, if this is a long-term thing. It's built to watch for particular packets flying by, examining payload where needed, recording data and launching alerts.</p> <p>It's intended for intrusion detection, but it makes a surprisingly good network monitor for particular things over long term use.</p> http://stackoverflow.com/questions/74993/which-resources-should-one-monitor-on-a-linux-server-running-a-web-server-or-data/87035#87035 0 Answer by JBB for Which resources should one monitor on a Linux server running a web-server or database JBB 2008-09-17T20:03:28Z 2008-09-17T20:03:28Z <p>Beware the afore-mentioned slowquerylog in mysql. It should only be used when trying to figure out why some queries are slow. It has the side-effect of making ALL your queries slow while it's enabled. :P It's intended for debugging, not logging. </p> <p>Think 'passive monitoring' whenever possible. For instance, sniff the network traffic rather than monitor it from your server -- have another machine watch the packets fly back and forth and record statistics about them.</p> <p>(By the way, that's one of my favorites -- if you watch connections being established and note when they end, you can find a lot of data about slow queries or slow anything else, without putting any load on the server you care about.)</p> http://stackoverflow.com/questions/1915/how-do-i-know-if-have-rsi-or-carpal-tunnel/86969#86969 1 Answer by JBB for How do I know if have RSI or carpal tunnel? JBB 2008-09-17T19:55:44Z 2008-09-17T19:55:44Z <p>Back in highschool, I could type 120+ wpm. So, being the helpful sort of guy I am, I offered to type up a bunch of last-minute research papers for folks in class.</p> <p>I did all my typing with my palms down on the keyboard so my wrists were at a steep angle. I really pushed to finish, and remember challenging myself to type faster and faster.</p> <p>End result was permanent nerve damage in both wrists. My fingers still twitch inexplicably now. I've gotten really good at noticing the twitches and hitting the backspace key when I feel it happen.</p> <p>Over time, with much care, I've rebuilt my typing speed to 80wpm. It's really tough for me to get beyond that now, which frustrates me immensely. My wrists still bother me, my fingers still go numb. </p> <p>The BEST thing that ever happened was convincing work to buy me a special keyboard -- the now discontinued Kinesis Evolution chair-arm-mounted keyboard. After getting that adjusted just right, and sitting easily in my chair so my arms were relaxed and my wrists were reasonably straight and relaxed, I realized just how much pain I'd been in "normally" and just been ignoring. </p> <p>Sadly, that keyboard was hideously expensive. But it was the best keyboard I've ever had. I miss it badly.</p> http://stackoverflow.com/questions/81677/whats-your-motto-as-a-developer-programmer/86805#86805 2 Answer by JBB for What's Your Motto As A Developer/Programmer? JBB 2008-09-17T19:39:39Z 2008-09-17T19:39:39Z <p>Do it once, do it right, never have to do it again.</p> http://stackoverflow.com/questions/86036/is-stack-overflow-a-good-place-for-finding-top-notch-developers/86085#86085 0 Answer by JBB for Is Stack Overflow a good place for finding top-notch developers? JBB 2008-09-17T18:19:28Z 2008-09-17T18:19:28Z <p>It could certainly be a resource for a headhunter, but I don't know that it'd be a primary mechanism. </p> <p>Rather than encouraging headhunters to poke around here and post ads or something, put a link on your profile to your resume, and put a link on your resume to your profile (and call it a 'portfolio,' say).</p> <p>It'd be interesting to see if a 'developer wanted' ad here would be responded to, voted up, or voted down. Kind of depends on what everyone here thinks!</p> http://stackoverflow.com/questions/85880/determine-if-a-function-exists-in-bash/85903#85903 13 Answer by JBB for Determine if a function exists in bash JBB 2008-09-17T18:00:15Z 2008-09-17T18:00:15Z <p>I think you're looking for the 'type' command. It'll tell you whether something is a function, built-in function, external command, or just not defined. Example:</p> <pre><code>batzel@batzel-laptop:~$ type foo bash: type: foo: not found batzel@batzel-laptop:~$ type ls ls is aliased to `ls --color=auto' batzel@batzel-laptop:~$ which type batzel@batzel-laptop:~$ type type type is a shell builtin </code></pre> http://stackoverflow.com/questions/85595/flush-disk-cache-from-windows-cli/85657#85657 0 Answer by JBB for Flush disk cache from Windows CLI JBB 2008-09-17T17:34:05Z 2008-09-17T17:34:05Z <p>Sync, see <a href="http://technet.microsoft.com/en-us/sysinternals/bb897438.aspx" rel="nofollow">http://technet.microsoft.com/en-us/sysinternals/bb897438.aspx</a></p> <p>Not ideal, but it works.</p> http://stackoverflow.com/questions/85487/reverse-dns-lookup-in-perl/85510#85510 10 Answer by JBB for Reverse DNS lookup in perl JBB 2008-09-17T17:15:58Z 2008-09-17T17:15:58Z <p>gethostbyaddr and similar calls. See <a href="http://perldoc.perl.org/functions/gethostbyaddr.html" rel="nofollow">http://perldoc.perl.org/functions/gethostbyaddr.html</a></p> http://stackoverflow.com/questions/78756/what-do-you-use-to-keep-notes-as-a-developer/78781#78781 454 Answer by JBB for What do you use to keep notes as a developer? JBB 2008-09-17T00:59:19Z 2008-09-17T16:48:56Z <p>I like physical notebooks. Preferably small ones (4x6 or 5x8, not 8.5x11), permanently bound (spiral bound, book binding, etc.). </p> <p>One notebook per project, typically, unless they're really small projects, in which case I reach for a partially used notebook and add to it.</p> <p>I find it very helpful to grab a notebook off my shelf and re-read my maunderings from when I was thinking my way through something. Scribbling on paper lets me record partial thoughts instead of doing a 'finished' write-up. This lets me revisit my thought process in addition to the solutions I found -- and that tends to be more enlightening than merely recording a solution.</p> <p>UPDATE: I'm extremely gratified at the response of my peers to this simple answer, and so I thought perhaps I should elaborate on my methods.</p> <p>First off, I find the typical Moleskine notebooks to be too small, and they tend to be expensive. I usually use something like <a href="http://www.staples.com/office/supplies/p1_Steno-Memo-Notebooks_98429_Business_Supplies_10051_SC1:CG10:CL140571" rel="nofollow">this one from Staples</a>.</p> <p>Top of each page: Project name, Page number, and Date I started writing on this page.</p> <p>Daily: Draw a line across the page, and write the current date (and sometimes the time) down before adding more notes. It's helpful to see the gaps of time in working out ideas. And I often find my best ideas turn up just below one of these lines -- that is, after I've thought for a while and come up with something.</p> <p>Review and Redact: If I've written out a few ideas of directions to go, and later I decide on one of them, I make sure to go back to the original list of ideas and add notes; specifically, I'll hilight the chosen solution somehow (underline, circle, etc.), and add a reference to the new page where I wrote down <em>why</em> I chose this solution. Also, I try to make these revision notes in a different color ink, or written at a different angle, or make them in some other way obviously not part of the old information.</p> <p>Reference: If I flip back to look at something, I consider jotting down 'see pg. 13' so I don't have to go flipping around for that information again. I also never hesitate to refer to other project notebooks, noting them with 'See proj. Alpha, pg 23' or something similar. Sometimes I backlink that notebook as well, say in Alpha pg 23 a note 'Very helpful for proj Beta pg 7!'. These sorts of notes across projects are fairly rare.</p> <p>I'm sure I've left out some of my other ideas and techniques. Perhaps others could add their ideas and techniques here as well? I know I'd appreciate hearing them!</p> http://stackoverflow.com/questions/78157/bursty-writes-to-sd-usb-stalling-my-time-critical-apps-on-embedded-linux/83438#83438 2 Answer by JBB for Bursty writes to SD/USB stalling my time-critical apps on embedded Linux JBB 2008-09-17T13:51:29Z 2008-09-17T13:51:29Z <p><a href="http://www.westnet.com/~gsmith/content/linux-pdflush.htm" rel="nofollow">Here</a> is some information about tuning pdflush for write-heavy operations.</p> http://stackoverflow.com/questions/60939/the-best-way-to-start-a-project/81715#81715 0 Answer by JBB for The best way to start a project... JBB 2008-09-17T10:13:08Z 2008-09-17T10:13:08Z <p>Define the goal for the project. Sounds like you are looking almost exclusively at the solution rather than the problem.</p> <p>A program isn't useful to you or anyone else unless it addresses some problem. Writing code to get moving is great, but you appear to lose interest and focus after you start -- because you're looking at the code, not the problem.</p> <p>Spend some time considering what led you to write this code. Ponder how other people might discover the same need, what path might take them to the same frustration you worked to solve.</p> <p>Then, find some of those people and offer your (partial) solution, and you'll generate interest and suggestions among them all.</p> <p>THAT will keep you going on your project. The fellow interest, the sharing, even the disagreements -- it's people who need software! Don't create solutions (software) looking for a problem (people). You started with YOU, with your need or desire, but focused on the code, and lost the impetus for the project. </p> <p>Programming's a lot more fun when you're problem-solving. But you need to keep the problem in front of you. Sharing the problem builds community. That's what this is really all about, isn't it?</p> http://stackoverflow.com/questions/81591/how-can-i-set-triggers-for-sendmail/81625#81625 2 Answer by JBB for How can I set triggers for sendmail? JBB 2008-09-17T09:58:57Z 2008-09-17T09:58:57Z <p>This is what Procmail is for.</p> <p>Set Sendmail up to use procmail as the mail delivery agent (MDA), or set up your .forward to pipe stuff through procmail. (See the man page.)</p> <p>Then you can write your .procmailrc to do all sorts of things along these lines.</p> <p>This filter predates gmail. Still useful if you're running a mail server.</p> http://stackoverflow.com/questions/78639/what-should-a-conference-newbie-bring-to-make-the-most-out-of-their-first-confere/78647#78647 8 Answer by JBB for What should a conference newbie bring to make the most out of their first conference? JBB 2008-09-17T00:24:37Z 2008-09-17T00:24:37Z <p>Business cards -- fast way to trade contact info with folks you'll want to keep in touch with.</p> <p>(Also required by many vendor booths to get free toys.)</p> http://stackoverflow.com/questions/78619/what-is-the-fastest-way-to-convert-float-to-int-on-x86/78629#78629 0 Answer by JBB for What is the fastest way to convert float to int on x86 JBB 2008-09-17T00:21:17Z 2008-09-17T00:21:17Z <p>Switch from a Pentium 5 to a chip that does math right... (Man that makes me feel old...)</p> http://stackoverflow.com/questions/78756/what-do-you-use-to-keep-notes-as-a-developer/78781#78781 Comment by JBB on What do you use to keep notes as a developer? JBB 2008-09-21T23:54:49Z 2008-09-21T23:54:49Z Leaving notebooks behind is one thing that I haven't solved. I don't want to lose my thoughts. I've told people &quot;You should have a copy of this. Go make one.&quot; But I generally want to keep my originals. And, by the way, a dated log book is considered a legal document, very useful in arguments. http://stackoverflow.com/questions/78756/what-do-you-use-to-keep-notes-as-a-developer/78781#78781 Comment by JBB on What do you use to keep notes as a developer? JBB 2008-09-21T23:52:44Z 2008-09-21T23:52:44Z I number pages, and can keep an index if I need to, but generally I don't need one. I think &quot;What was I working on where I needed to do something like this.. Right, project Foo. Flip through notebook, aha, right, I solved this by doing that, and I noted project Bar p. 73...&quot; http://stackoverflow.com/questions/96264/batch-file-to-copy-files-from-one-directory-to-another Comment by JBB on Batch file to copy files from one directory to another. JBB 2008-09-18T19:57:47Z 2008-09-18T19:57:47Z Presumably you're talking about a Windows batch file, right? http://stackoverflow.com/questions/95305/looking-for-regex-to-extract-email-addresses-from-etc-passwd/95342#95342 Comment by JBB on Looking for regex to extract email addresses from /etc/passwd JBB 2008-09-18T18:33:27Z 2008-09-18T18:33:27Z Actually I put underscores in there. That's why the ]+@[-A-z0-9. is italicized. :) http://stackoverflow.com/questions/95183/how-does-one-create-an-index-on-the-date-part-of-datetime-field-in-mysql/95248#95248 Comment by JBB on How does one create an index on the date part of DATETIME field in MySql JBB 2008-09-18T18:26:13Z 2008-09-18T18:26:13Z If you use date() you won't hit the index. Mysql can't use indexes inside function calls like that. http://stackoverflow.com/questions/95183/how-does-one-create-an-index-on-the-date-part-of-datetime-field-in-mysql/95265#95265 Comment by JBB on How does one create an index on the date part of DATETIME field in MySql JBB 2008-09-18T18:25:14Z 2008-09-18T18:25:14Z Yup -- and add a column with just the time part, and eliminate the DATETIME altogether. http://stackoverflow.com/questions/78619/what-is-the-fastest-way-to-convert-float-to-int-on-x86/78629#78629 Comment by JBB on What is the fastest way to convert float to int on x86 JBB 2008-09-17T19:32:59Z 2008-09-17T19:32:59Z It was worth it. :) http://stackoverflow.com/questions/86036/is-stack-overflow-a-good-place-for-finding-top-notch-developers Comment by JBB on Is Stack Overflow a good place for finding top-notch developers? JBB 2008-09-17T18:21:25Z 2008-09-17T18:21:25Z Retagging solely as 'spam' is a bit harsh. :P http://stackoverflow.com/questions/75857/how-can-myisam-tables-be-used-more-safely/75961#75961 Comment by JBB on How can MyISAM tables be used more safely? JBB 2008-09-17T13:11:47Z 2008-09-17T13:11:47Z Time's being spent writing to the disk. &quot;disable keys&quot; doesn't work for innodb tables, only for myisam. innodb builds and rebuilds the keys as you insert data. Times for enhanced INSERT statements and LOAD DATA INFILE statements (via mysqlimport) are very similar. http://stackoverflow.com/questions/81561/parental-control-or-outbound-firewall Comment by JBB on Parental control or outbound firewall? JBB 2008-09-17T09:56:29Z 2008-09-17T09:56:29Z Hm, consider adding a tag like parental-control? http://stackoverflow.com/questions/78336/hard-drive-device-name-on-solaris/78366#78366 Comment by JBB on Hard drive device name on Solaris JBB 2008-09-16T23:43:39Z 2008-09-16T23:43:39Z Indeed! The real fun is when you start trying to translate the REAL device names. Do an 'ls -l /dev/dsk/c0t0d0s0' and look at the hideous path through the &quot;real&quot; device tree. Once upon a time I could translate that for specific CPU/IO boards in larger servers. Uuuuugly! http://stackoverflow.com/questions/78157/bursty-writes-to-sd-usb-stalling-my-time-critical-apps-on-embedded-linux Comment by JBB on Bursty writes to SD/USB stalling my time-critical apps on embedded Linux JBB 2008-09-16T23:40:40Z 2008-09-16T23:40:40Z FWIW, I find shorter, more concise titles helpful in glancing over questions to answer. YMMV. http://stackoverflow.com/questions/76762/scaling-cheaply-mysql-and-ms-sql Comment by JBB on Scaling cheaply: MySQL and MS SQL JBB 2008-09-16T20:45:17Z 2008-09-16T20:45:17Z &quot;Cheap&quot; in what sense -- lightweight (cheap computations), or monetary (free software, less beefy hardware needed, etc.)? http://stackoverflow.com/questions/75857/how-can-myisam-tables-be-used-more-safely/75961#75961 Comment by JBB on How can MyISAM tables be used more safely? JBB 2008-09-16T20:01:52Z 2008-09-16T20:01:52Z No, the major problem is the amazingly disk-intensive initial import of data into the table. MyISAM time: 12 minutes. InnoDB time: 3+ hrs. After my initial load, UPDATEs are non-existent and INSERTs are rare. No known solution to InnoDB's disappointing load operation. http://stackoverflow.com/questions/75857/how-can-myisam-tables-be-used-more-safely/75892#75892 Comment by JBB on How can MyISAM tables be used more safely? JBB 2008-09-16T19:57:31Z 2008-09-16T19:57:31Z Yes I'm married to MySQL. Thanks for playing...