User Dean - Stack Overflowmost recent 30 from stackoverflow.com2009-12-15T22:00:34Zhttp://stackoverflow.com/feeds/user/14966http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1403787/can-you-recommend-a-free-light-weight-mysql-gui-for-linux2Can you recommend a free light-weight MySQL GUI for Linux?Dean2009-09-10T07:18:55Z2009-12-12T04:22:57Z
<p>I'm setting up my first development Linux box - a netbook actually.
I'm quite fond of MySQL Yog for Windows, but that's not on linux.</p>
<p>I've checked these two threads
<a href="http://stackoverflow.com/questions/1001710/what-is-the-best-free-sql-gui-for-linux-mssql-mysql-oracle-etc">What is the best free SQL GUI for Linux (MSSQL, MySQL, Oracle, Etc…)</a>
and <a href="http://stackoverflow.com/questions/721852/developer-tools-to-directly-access-databases">Developer tools to directly access databases</a></p>
<p>I'm not interesting in something large and resource hungry (netbook) or that I have to pay for. Nor am I particularly interested in compatibility with SQL.</p>
<p>so, <strong><em>Can you recommend a free light-weight MySQL GUI for Linux?</em></strong></p>
<p>Unless someone suggests something better I'll probably just go with phpMyAdmin.</p>
<p>Thanks,
Dean.</p>
http://stackoverflow.com/questions/162644/why-cant-i-save-css-changes-in-firebug11Why can't I save CSS changes in FireBug?Dean2008-10-02T14:36:48Z2009-12-05T14:59:21Z
<p>FireBug is the most convenient tool I've found for editing CSS - so why isn't there a simple "Save" option?</p>
<p>I am always finding myself making tweaks in FireBug, then going back to my original .css file and replicating the tweaks.</p>
<p>Has anyone come up with a better solution?</p>
<p><b>EDIT:</b> I'm aware the code is stored on a server (in most cases not my own), but I use it when building my own websites.</p>
<p>Firebug's just using the .css file FireFox downloaded from the server, it knows precisely what lines in which files its editing, I can't see why there's not an "Export" or "Save" option which allows you to store the new .css file. (Which I could then replace the remote one with).
I have tried looking in temporary locations, and choosing file->save and experimenting with the output options on FireFox, but I still haven't found a way.</p>
<p>Here's hoping someone has a nice solution...</p>
<p><b>EDIT 2:</b>
The <a href="http://groups.google.com/group/firebug/search?group=firebug&q=save+css&qt_g=Search+this+group" rel="nofollow">Official Group</a> has a lot of questions, but no answers.</p>
http://stackoverflow.com/questions/1806586/how-to-get-google-to-understand-links-that-trigger-javascript/1806596#18065961Answer by Dean for How to get Google to understand links that trigger Javascript?Dean2009-11-27T03:20:39Z2009-11-27T03:29:07Z<p>You could change the link to actually go to a separate page with the content, and change the behaviour of the JavaScript to nullify the default action of that link (return false) and load things the way it is now.</p>
<p>Like this:</p>
<pre><code><html>
<head>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script>
<script type="text/javascript">
jQuery(document).ready(function() {
$('.javascript-link').click(function(){
alert('usual behavior');
return false;
});
});
</script>
</head>
<body>
<a class="javascript-link" href="somewhere.html">click me</a>
</body>
</html>
</code></pre>
http://stackoverflow.com/questions/1804966/which-linux-softwares-do-you-recommend-for-c-programming/1804967#18049673Answer by Dean for Which linux softwares do you recommend for C++ programming?Dean2009-11-25T23:58:30Z2009-11-26T17:55:05Z<p><a href="http://www.eclipse.org/cdt/" rel="nofollow">Eclipse CDT</a></p>
http://stackoverflow.com/questions/1780198/zend-certification/1780292#17802921Answer by Dean for Zend CertificationDean2009-11-22T22:41:09Z2009-11-22T22:41:09Z<p>A friend of mine who did it (and had many great job opps after getting it) has recommended to me: <strong>Do the online practice tests first.</strong> I think it cost a few dollars but you get to do the test several times online before you go in and do it for real.</p>
http://stackoverflow.com/questions/276927/can-i-concatenate-multiple-mysql-rows-into-one-field3Can I concatenate multiple MySQL rows into one field?Dean2008-11-10T02:34:26Z2009-11-15T16:17:25Z
<p>Using MySQL, I can do something like</p>
<pre><code>select hobbies from peoples_hobbies where person_id = 5;
</code></pre>
<p>and get:</p>
<pre><code>shopping
fishing
coding
</code></pre>
<p>but instead I just want 1 row, 1 col:</p>
<pre><code>shopping, fishing, coding
</code></pre>
<p>The reason is that I'm selecting multiple values from multiple tables, and after all the joins I've got a lot more rows than I'd like.</p>
<p>I've looked for a function on <a href="http://dev.mysql.com/doc/refman/5.0/en/string-functions.html#function_concat-ws" rel="nofollow">MySQL Doc</a> and it doesn't look like the CONCAT or CONCAT_WS functions accept result sets, so does anyone here know how to do this?</p>
http://stackoverflow.com/questions/1698340/how-to-develop-a-successful-sitemap/1698369#16983692Answer by Dean for How to Develop a Successful SitemapDean2009-11-08T23:43:36Z2009-11-08T23:43:36Z<p>Jeff Atwood, (One of the guys who made this site) wrote a great article on the <a href="http://www.codinghorror.com/blog/archives/001174.html" rel="nofollow">importance of sitemaps</a>.</p>
<blockquote>
<p>I'm a little aggravated that we have
to set up this special file for the
Googlebot to do its job properly; it
seems to me that web crawlers should
be able to spider down our simple
paging URL scheme without me giving
them an explicit assist.</p>
<p>The good news is that since we set up
our sitemaps.xml, every question on
Stack Overflow is eminently findable.
But when 50% of your traffic comes
from one source, perhaps it's best not
to ask these kinds of questions.</p>
</blockquote>
<p>So yeah, effective for people, or effective for google?</p>
http://stackoverflow.com/questions/1698330/webdesign-jpg-or-png-which-one-is-the-best-for-web/1698353#16983533Answer by Dean for webdesign - jpg or png, which one is the best for webDean2009-11-08T23:38:57Z2009-11-08T23:38:57Z<p><img src="http://lbrandy.com/blog/wp-content/uploads/2008/10/jpg%5Fvs%5Fpng2.png" alt="alt text"></p>
http://stackoverflow.com/questions/1698330/webdesign-jpg-or-png-which-one-is-the-best-for-web/1698344#16983445Answer by Dean for webdesign - jpg or png, which one is the best for webDean2009-11-08T23:34:06Z2009-11-08T23:34:06Z<p><strong>It depends.</strong></p>
<p>PNG is better for crisp images with a low number of colours,</p>
<p>JPG is better for a low-bandwidth image - however it is not as crisp and therefore not very good for GUI.</p>
<p>Generally, JPG is for photos and pictures, whereas PNG (or GIF) is for layout.</p>
<p>You may find <a href="http://articles.sitepoint.com/article/gif-jpg-png-whats-difference" rel="nofollow">this page</a> interesting, as it goes over the basics of PNG vs GIF.</p>
http://stackoverflow.com/questions/152023/wsdl-validator/1501201#15012011Answer by Dean for WSDL validatorDean2009-09-30T23:31:33Z2009-09-30T23:31:33Z<p>If you're using Eclipse, just have your WSDL in a .wsdl file, eclipse will validate it automatically.</p>
<p>From the <a href="http://wiki.eclipse.org/WSDL%5FValidator" rel="nofollow">Doc</a></p>
<blockquote>
<p>The WSDL validator handles validation
according to the 4 step process
defined above. Steps 1 and 2 are both
delegated to Apache Xerces (and XML
parser). Step 3 is handled by the WSDL
validator and any extension namespace
validators (more on extensions below).
Step 4 is handled by any declared
custom validators (more on this below
as well). Each step must pass in order
for the next step to run.</p>
</blockquote>
http://stackoverflow.com/questions/1485085/wheres-jeffs-blog-comparing-adsense-to-other-advertising-methods0Where's Jeff's Blog comparing AdSense to other Advertising Methods? [closed]Dean2009-09-28T01:55:32Z2009-09-28T02:04:12Z
<p>I remember Jeff once blogged about advertising on Coding Horror or Stack Overflow.</p>
<p>He said something to the lines of "AdSense is the bottom of the barrel, I'm going with Affiliate Marketing".</p>
<p>I'm trying to convince some co-workers against AdSense and would like to use this as a reference.</p>
<p>Tried google-searching, and codinghorror-searching, but couldn't find it.</p>
<p>Can anyone help?</p>
http://stackoverflow.com/questions/1479875/php-function-that-returns-the-names-of-all-columns-in-a-certain-table-as-an-arra/1479893#14798931Answer by Dean for PHP function that returns the names of all columns in a certain table, as an arrayDean2009-09-25T22:57:12Z2009-09-25T22:57:12Z<p>Theres a MySQL Query, which returns the column names asa result set.</p>
<pre><code>SHOW COLUMNS FROM tablename
</code></pre>
http://stackoverflow.com/questions/1414125/how-do-i-run-all-my-phpunit-tests/1419457#14194570Answer by Dean for How do I run all my PHPUnit tests?Dean2009-09-14T02:32:48Z2009-09-14T02:32:48Z<p>I think forPHPUnit to decide to automatically run it it must follow a filename convention: somethingTest.php.</p>
http://stackoverflow.com/questions/1419071/how-do-i-get-this-array-properly-formatted-in-php/1419436#14194360Answer by Dean for How do I get this array properly formatted in PHPDean2009-09-14T02:21:56Z2009-09-14T02:21:56Z<p>I'm still a little confused about your problem, but perhaps it would help to check how many you have "per date" dynamically so you don't need to manually put that magic "6" in there.</p>
<pre><code>// We want to get the number of API's per date
$perDate = 0;
// Lets count them
for($i=0; $i<sizeof($array); $i+=4)
{
// The "API[X]" string
$apiNumber = $array[$i];
// The actual number on the end of the string
$apiNumber = substr($apiNumber, 3, (3-strlen($apiNumber)));
// If this api number is the largest
if($apiNumber > $perDate)
{
// save it
$perDate = $apiNumber;
}
else
{
// stop trying to find the largest
break;
}
}
// now $perDate is 6, for you example.
</code></pre>
http://stackoverflow.com/questions/322877/can-you-enable-variable-highlighting-with-eclipse-pdt3Can you enable variable highlighting with Eclipse PDT?Dean2008-11-27T03:32:26Z2009-08-26T19:50:34Z
<p>I'm using version 3.3.2, I know that regular Eclipse for Java does variable highlighting.
Notepad++ does it regardless of what language you're using (if you select any text, it highlights similar text)</p>
<p>I know it's not critically important, and a back/forward incremental search is an adequate workaround, but it would be nice to have.</p>
<p><b>Update</b> Looks like I had PDT 1.03, (current version is 2.0), I have Eclipse 3.2.2. Needed to look in "Help -> Software Updates -> Manage Configuration", not just "Help -> About".</p>
http://stackoverflow.com/questions/155762/best-c-resource16Best C++ ResourceDean2008-10-01T00:52:14Z2009-08-18T21:09:25Z
<p>Java has its own (self-documented) <a href="http://www.javadoconline.com/" rel="nofollow">Javadoc</a>, PHP has <a href="http://www.php.net" rel="nofollow">PHP.net</a>, all the MS documenation can be found at the <a href="http://msdn.microsoft.com/en-us/library/aa139615.aspx" rel="nofollow">MS Developers Network</a>, but whenever it comes to throwing together some C++ my first stop is always Google.</p>
<p>To all the C++ developers out there, what's your one-stop-shop?</p>
http://stackoverflow.com/questions/185486/which-eclipse-subversion-plugin-should-i-use12Which Eclipse Subversion plugin should I use?Dean2008-10-09T00:30:08Z2009-07-31T02:02:36Z
<p><a href="http://subclipse.tigris.org/" rel="nofollow">Subclipse</a>, <a href="http://www.eclipse.org/subversive/" rel="nofollow">Subversive</a>, or <a href="http://www.google.com/search?hl=en&safe=off&sa=X&oi=spell&resnum=0&ct=result&cd=1&q=svn+eclipse&spell=1" rel="nofollow">something else</a>?</p>
<p>There's a bit of <a href="http://www.google.com/search?source=ig&hl=en&rlz=&q=subclipse+vs+subversive&btnG=Google+Search&meta=" rel="nofollow">debate</a> around the topic, can we come to some conclusion here?</p>
<p><strong>EDIT:</strong>
It's been a couple months now, and I ended up deciding the plugin slowed Eclipse down too much, and was a hassle to use every time I changed a file from outside Eclipse.
I ditched the plugin all together and just went with TortiseSVN.</p>
http://stackoverflow.com/questions/1129703/can-you-disable-unc-paths-in-windows/1129751#11297510Answer by Dean for Can you disable UNC paths in Windows?Dean2009-07-15T06:36:50Z2009-07-15T06:36:50Z<p>According to windowsitpro.com,</p>
<blockquote>
<p>You must edit the NoRun value (of type
DWORD) in the
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\Explorer
or
HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer
registry subkey.</p>
</blockquote>
<p>[<a href="http://windowsitpro.com/Articles/Print.cfm?ArticleID=25421" rel="nofollow">http://windowsitpro.com/Articles/Print.cfm?ArticleID=25421</a>][1]</p>
<p>But as Richard said, this is more of a serverfault.com.au question.</p>
http://stackoverflow.com/questions/61401/hidden-features-of-php/255623#25562339Answer by Dean for Hidden Features of PHP?Dean2008-11-01T07:42:37Z2009-07-09T15:17:45Z<p>The <b>standard class</b> is a neat container. I only learned about it recently.</p>
<p>Instead of using an array to hold serveral attributes</p>
<pre><code>$person = array();
$person['name'] = 'bob';
$person['age'] = 5;
</code></pre>
<p>You can use a standard class</p>
<pre><code>$person = new stdClass();
$person->name = 'bob';
$person->age = 5;
</code></pre>
<p>This is particularly helpful when accessing these variables in a string</p>
<pre><code>$string = $person['name'] . ' is ' . $person['age'] . ' years old.';
// vs
$string = "$person->name is $person->age years old.";
</code></pre>
http://stackoverflow.com/questions/877586/what-char-should-i-use-to-replace-illegal-characters-in-a-url-slug/877613#8776133Answer by Dean for What char should I use to replace illegal characters in a url slugDean2009-05-18T12:58:42Z2009-05-18T23:05:43Z<p>Just use - for space and get rid of the illegal chars (like this site is).</p>
<p>Also it's all lower-case.</p>
http://stackoverflow.com/questions/811074/what-is-the-coolest-thing-you-can-do-in-10-lines-of-simple-code-help-me-inspir/855776#8557760Answer by Dean for What is the coolest thing you can do in <10 lines of simple code? Help me inspire beginners!Dean2009-05-13T02:23:30Z2009-05-13T02:23:30Z<p>I remember finding simple loops amazing. Each time I learn a new language I usually throw something like this together:</p>
<pre><code><?php
$numberOfBottles = 99;
print("<h1>$numberOfBottles Bottles of Beer on the Wall</h1>");
print("$numberOfBottles bottles of beer on the wall,<br />");
print("$numberOfBottles bottles of beer!<br />");
print("Take one down, pass it around,<br />");
for($numberOfBottles--; $numberOfBottles>1; $numberOfBottles--)
{
print("$numberOfBottles bottles of beer on the wall!<br />");
print("<br />");
print("$numberOfBottles bottles of beer on the wall,<br />");
print("$numberOfBottles bottles of beer!<br />");
print("Take one down, pass it around,<br />");
}
print("One last bottle of beer on the wall!");
?>
</code></pre>
<p>Maybe some variations with while or foreach loops would be easy too.</p>
http://stackoverflow.com/questions/679854/can-i-make-phpunit-fail-if-the-code-throws-a-notice1Can I make PHPUnit fail if the code throws a notice?Dean2009-03-25T01:01:08Z2009-03-28T19:21:38Z
<p>It doesn't appear to do it by default, and I don't see any switch for it either.</p>
<p>This is PHPUnit 2.3.5, and PHP 5.2.0-8.</p>
http://stackoverflow.com/questions/588803/is-post-as-secure-as-a-cookie1Is POST as secure as a Cookie?Dean2009-02-26T01:53:18Z2009-02-26T04:19:46Z
<p>While implementing a <a href="http://swfupload.org/" rel="nofollow">flash-based uploader</a>, we were faced with an issue: <a href="http://swfupload.org/forum/generaldiscussion/383" rel="nofollow">Flash doesn't provide the correct cookies</a>.
We need our PHP Session ID to be passed via a POST variable.</p>
<p>We have come up with and implemented a functional solution, checking for a POST PHPSESSID.</p>
<p><strong>Is POSTing the Session ID as secure as sending it in a cookie?</strong></p>
<p>Possible reason for: Because both are in the http header, and equally possible for a client to forge.
Possible reason against: Because it's easier to forge a POST variable than a Cookie.</p>
http://stackoverflow.com/questions/370073/whats-your-best-and-or-funniest-data-loss-story/562984#5629840Answer by Dean for What's your best and/or funniest data loss story?Dean2009-02-18T21:49:03Z2009-02-18T22:15:20Z<p>Using </p>
<pre><code>"data" > file.txt
</code></pre>
<p>Instead of </p>
<pre><code>"data" >> file.txt
</code></pre>
<p>in bash once cost me a couple of hours...</p>
http://stackoverflow.com/questions/562917/simple-mysql-table-join-problem/562939#5629390Answer by Dean for Simple Mysql table join problemDean2009-02-18T21:34:42Z2009-02-18T21:34:42Z<p>You need to link the <code>numbers</code> table's users_id and game_id columns to the users and games id cols.
Just add:</p>
<p>AND users_id = users.id</p>
<p>AND game_id = games.id</p>
<p>You could also use a JOIN instead.</p>
http://stackoverflow.com/questions/165408/what-programming-acronyms-do-you-frequently-use-without-knowing-the-meaning-of6What Programming acronyms do you frequently use without knowing the meaning ofDean2008-10-03T02:15:33Z2009-02-05T08:27:09Z
<p>I just told someone I'd <a href="http://en.wikipedia.org/wiki/Vnc" rel="nofollow">VNC</a> into their machine. It can be very embarrassing when someone asks you what that stands for and you don't know.</p>
<p>Throwing around terms like PHP, SQL, ASP, ESX, XNA, XHTML, AJAX etc. you need to be careful not to let an acronym into your vocabulary without knowing its meaning.</p>
<p>I would have asked what your favorite acronym was, but that's <a href="http://stackoverflow.com/questions/131729/best-itprogrammingtechnology-related-acronym">already been done</a>.</p>
<p><b>So what acronyms do you frequently use without knowing the meaning of?</b></p>
http://stackoverflow.com/questions/490464/how-to-design-a-movie-database/490470#490470-1Answer by Dean for How to design a movie database?Dean2009-01-29T04:23:48Z2009-01-29T04:49:21Z<p>You don't really need a YearTable, and all you need is a genre_id, director_id, and actor_id columns in your films table.</p>
<p>Also, your genre, director, and actor tables need their own unique IDs.</p>
<p><strong>Edit:</strong> This is, of course, assuming that you're only going to have 1 genre, director, <em>and actor</em> for each movie. Which probably isn't the case.</p>
<p>To have many actors belonging to many movies, you will need a seperate relations table. You could call it "moviesActors" (or actorsMovies) and each row will have an actor_id and a movie_id to say <strong>this actor</strong> was in <strong>this movie</strong>.</p>
http://stackoverflow.com/questions/146466/tutorials-for-wii-programming/486743#4867431Answer by Dean for Tutorials for Wii programmingDean2009-01-28T07:15:49Z2009-01-28T07:15:49Z<p><a href="http://www.gamedev.net/" rel="nofollow">Gamedev.net</a> and <a href="http://www.dcemu.co.uk" rel="nofollow">DCEmu</a> are 2 great homebrew game dev resources.</p>
<p>Gamedev.net has a lot of great articles, and forums.</p>
<p>DCEmu started as a Dreamcast Emulator website, but it's strong community is probably the current most active for all things game development.</p>
<p>I'm sure you will have a lot of fun reading these websites and their forums, and you will certainly find some tutorials there.</p>
http://stackoverflow.com/questions/181015/net-vs-comments-convention/181172#1811722Answer by Dean for .NET // vs /// Comments conventionDean2008-10-08T02:54:10Z2009-01-12T22:44:28Z<p>It's similar to /* comment */ vs /** documented comment */ in Java.</p>
<p>The latter works the same, but is also recognised by documentation software to be developer documentation - not just a note.</p>
http://stackoverflow.com/questions/358387/is-it-possible-to-get-the-image-mouse-click-location-with-php/358494#3584941Answer by Dean for Is it possible to get the image mouse click location with PHP?Dean2008-12-11T05:12:12Z2008-12-11T05:12:12Z<p>You could try using
<a href="http://www.w3.org/TR/REC-html40/struct/objects.html#h-13.6" rel="nofollow">W3C Image Maps</a></p>
<blockquote>
<p>Image maps allow authors to specify
regions of an image or object and
assign a specific action to each
region (e.g., retrieve a document, run
a program, etc.) When the region is
activated by the user, the action is
executed.</p>
</blockquote>
<p>But on a forum in BBCode, I really don't think you're going to be able to get what you're after.</p>
http://stackoverflow.com/questions/162644/why-cant-i-save-css-changes-in-firebug/1852411#1852411Comment by Dean on Why can't I save CSS changes in FireBug?Dean2009-12-06T22:23:58Z2009-12-06T22:23:58ZThat was pretty much my original question...http://stackoverflow.com/questions/1837353/one-handed-coding-tablet-special-keyboard-one-handed-typing/1837455#1837455Comment by Dean on One handed coding -- tablet, special keyboard, one-handed typing?Dean2009-12-03T04:22:41Z2009-12-03T04:22:41ZAlso doesn't help much for parenthesis, curly braces, and other special characters...http://stackoverflow.com/questions/1837353/one-handed-coding-tablet-special-keyboard-one-handed-typing/1837455#1837455Comment by Dean on One handed coding -- tablet, special keyboard, one-handed typing?Dean2009-12-03T04:15:23Z2009-12-03T04:15:23ZI love this - but it's for your left hand. Nick can only use his right hand.http://stackoverflow.com/questions/162644/why-cant-i-save-css-changes-in-firebug/1833759#1833759Comment by Dean on Why can't I save CSS changes in FireBug?Dean2009-12-03T00:57:50Z2009-12-03T00:57:50ZI'll check it out!http://stackoverflow.com/questions/1806586/how-to-get-google-to-understand-links-that-trigger-javascript/1806596#1806596Comment by Dean on How to get Google to understand links that trigger Javascript?Dean2009-11-27T03:31:47Z2009-11-27T03:31:47Zthe link on the page as well as the one the permalink generates.http://stackoverflow.com/questions/1677121/is-there-an-ignore-command-for-git-like-there-is-for-svn/1677198#1677198Comment by Dean on Is there an ignore command for git like there is for svn?Dean2009-11-04T23:06:22Z2009-11-04T23:06:22Z+1 for git help gitignorehttp://stackoverflow.com/questions/1485085/wheres-jeffs-blog-comparing-adsense-to-other-advertising-methodsComment by Dean on Where's Jeff's Blog comparing AdSense to other Advertising Methods?Dean2009-09-28T01:58:49Z2009-09-28T01:58:49ZWhoever voted to close this - I understand it's not entirely programming related - but could you advise a better place to ask this question?http://stackoverflow.com/questions/1442805/how-to-make-lyrics-site-database/1442826#1442826Comment by Dean on how to make lyrics site database Dean2009-09-18T06:14:42Z2009-09-18T06:14:42ZI was in the middle of writing a similar response; this man is correct.http://stackoverflow.com/questions/1403787/can-you-recommend-a-free-light-weight-mysql-gui-for-linux/1403800#1403800Comment by Dean on Can you recommend a free light-weight MySQL GUI for Linux?Dean2009-09-18T06:08:45Z2009-09-18T06:08:45ZI'm really liking SQL Buddy too. Unless I find myself needing to go back to phpmyadmin some time soon, you'll get the win.http://stackoverflow.com/questions/63668/confessions-of-your-worst-wtf-moment-what-not-to-do/64512#64512Comment by Dean on Confessions of your worst WTF Moment. (What not to do.)Dean2009-06-04T01:53:22Z2009-06-04T01:53:22ZThis happened to us once as well; but with a remote machine connected via VPN.http://stackoverflow.com/questions/818159/what-are-some-bad-programming-habits-to-look-out-for-and-avoid/818211#818211Comment by Dean on What are some bad programming habits to look out for and avoid?Dean2009-05-13T02:27:04Z2009-05-13T02:27:04ZAlso, it's better to use a bad naming convention and stick with it than it is to not use a naming convention. If you don't like your naming convention, refactor - or just use a new one next time.http://stackoverflow.com/questions/855360/when-and-why-to-return-false-in-javascript/855376#855376Comment by Dean on When and why to 'return false' in javascript?Dean2009-05-13T01:50:37Z2009-05-13T01:50:37ZThis is particularly good if you want an AJAX form that submits without reloading the page - but also works by submitting and reloading the page when javascript is not available.http://stackoverflow.com/questions/679854/can-i-make-phpunit-fail-if-the-code-throws-a-notice/693357#693357Comment by Dean on Can I make PHPUnit fail if the code throws a notice?Dean2009-04-01T04:39:15Z2009-04-01T04:39:15ZHey man! I'm actually implementing PHPUnit after you presented it to us at the Sydney PHP Conference recently. It's Great!http://stackoverflow.com/questions/643949/poll-whats-your-best-computer-science-analogy-to-a-real-life-situation/644000#644000Comment by Dean on Poll: What's your best computer science analogy to a real life situation?Dean2009-03-13T18:32:42Z2009-03-13T18:32:42ZTell her it's like bringing a bucket of water into the house, as opposed to running a hose through the window for a few minuteshttp://stackoverflow.com/questions/614308/free-bug-tracker-with-desktop-clientComment by Dean on Free bug tracker with desktop client?Dean2009-03-05T10:54:57Z2009-03-05T10:54:57ZWhy desktop client? Will it be taken offline?