User docgnome - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T08:45:20Z http://stackoverflow.com/feeds/user/10738 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/203303/how-do-you-beat-rsi 32 How do you beat RSI? docgnome 2008-10-15T00:14:33Z 2009-12-15T18:28:03Z <p>I've been worried more and more about <a href="http://en.wikipedia.org/wiki/Repetitive%5Fstrain%5Finjury" rel="nofollow">RSI</a> lately. Especially of the dreaded "Emacs Pinky" as I'm an avid emacs users. How do you guys beat RSI? I thought we could share ideas for beating this common problem.</p> <p><strong>EDIT</strong>: Advice here is <strong>not</strong> meant to replace advice from a medical professional. If you are having serious pain, go see a doctor.</p> http://stackoverflow.com/questions/135651/learning-unit-testing 11 Learning Unit Testing docgnome 2008-09-25T20:02:13Z 2009-12-07T06:55:58Z <p>So I've put this off for a good long time and I think it's time to stop procrastinating. I need to learn how to do unit testing, but I don't know where to start! Does anyone have any good, preferably online, resources on the subject?</p> <p><hr /></p> <p><strong>Exact Duplicate:</strong> <a href="http://stackoverflow.com/questions/107541/what-is-your-single-favorite-book-or-online-resource-for-getting-started-with-uni">What is your single favorite book or online resource for getting started with unit testing?</a><br /> <strong>Exact Duplicate:</strong> <a href="http://stackoverflow.com/questions/111743/can-people-recommend-some-good-books-and-resources-on-unit-testing">Can people recommend some good books and resources on unit testing?</a><br /> .. and others</p> http://stackoverflow.com/questions/1786004/concatenating-pdfs-in-php 1 Concatenating PDFs in PHP docgnome 2009-11-23T21:13:39Z 2009-11-24T04:47:06Z <p>I've got a grip of PDFs that I need to combine into one using PHP. Googling around gives me very little that seems like a reasonable solution. The best thing I can find is to use <a href="http://us.php.net/manual/en/function.exec.php" rel="nofollow">exec()</a> and <a href="http://www.accesspdf.com/pdftk/" rel="nofollow">pdftk</a> but that's just ugly. Does anyone know of a more elegant solution that doesn't involve me shelling out all the money on the planet for some non-free lib?</p> http://stackoverflow.com/questions/1786027/how-to-view-file-history-in-git/1786049#1786049 3 Answer by docgnome for how to view file history in GIT? docgnome 2009-11-23T21:20:14Z 2009-11-23T21:20:14Z <p>Looks like you want <a href="http://www.kernel.org/pub/software/scm/git-core/docs/git-diff.html" rel="nofollow">git diff</a> and/or <a href="http://www.kernel.org/pub/software/scm/git/docs/git-log.html" rel="nofollow">git log</a>. Also check out <a href="http://www.kernel.org/pub/software/scm/git/docs/gitk.html" rel="nofollow">gitk</a></p> <pre><code>gitk path/to/file git diff path/to/file git log path/to/file </code></pre> http://stackoverflow.com/questions/1765168/cleaning-a-production-database-for-use-in-testing 1 Cleaning a Production Database for use in Testing docgnome 2009-11-19T17:41:43Z 2009-11-19T17:59:40Z <p>I'm building a local vm for doing web dev rather than using our on site development. I need a database locally, but I don't want to just pull down a production db and use that as it has information that, while not protected by HIPAA or anything, should not be available in the case of laptop theft. Are there any apps or recommended practices to sanitize this data so that I am able to pull down a db, clean it, and install it in my vm?</p> <p><strong>Clarification</strong>: What I'm really looking for is an app that would allow me to mark the specific columns as sensitive and whack those ones whenever I imported a new copy of the DB.</p> http://stackoverflow.com/questions/1575346/documentation-on-geting-driving-directions-and-calculating-driving-distance-with 0 Documentation on geting driving directions and calculating driving distance with Mapstraction docgnome 2009-10-15T21:58:24Z 2009-11-18T10:06:35Z <p>I'm trying to build an easy to use map system for the applications we develop at work. I started using Google Maps but I have to abandon that because of the lack of SSL support. While Google Maps API Premier has SSL support, we can't afford the 10k a year fee. I'm considering using <a href="http://mapstraction.com/" rel="nofollow">Mapstraction</a> so that in future, if I need to change providers it's much less of a hassle. However, what I'm primarily interested in, calculating the driving distance between two points, seems ti have no documentation for doing with Mapstration. Their website says that driving directions are available, but the API for this appears to be poorly documented. Does anyone know how to do this? </p> http://stackoverflow.com/questions/1510091/with-emacs-how-do-you-swap-the-position-of-2-windows/1510133#1510133 5 Answer by docgnome for With emacs, How do you swap the position of 2 windows docgnome 2009-10-02T15:08:30Z 2009-10-02T15:17:35Z <p>I shamelessly stole this from <a href="http://steve.yegge.googlepages.com/my-dot-emacs-file" rel="nofollow">Steve Yegge's .emacs</a></p> <pre><code>(defun swap-windows () "If you have 2 windows, it swaps them." (interactive) (cond ((not (= (count-windows) 2)) (message "You need exactly 2 windows to do this.")) (t (let* ((w1 (first (window-list))) (w2 (second (window-list))) (b1 (window-buffer w1)) (b2 (window-buffer w2)) (s1 (window-start w1)) (s2 (window-start w2))) (set-window-buffer w1 b2) (set-window-buffer w2 b1) (set-window-start w1 s2) (set-window-start w2 s1))))) </code></pre> <p>Tested on Emacs 23.1.1 on Gentoo. This does preserve window sizes.</p> <p>I also found this which is a little cleaner.</p> <pre><code>(defun transpose-windows () (interactive) (let ((this-buffer (window-buffer (selected-window))) (other-buffer (prog2 (other-window +1) (window-buffer (selected-window)) (other-window -1)))) (switch-to-buffer other-buffer) (switch-to-buffer-other-window this-buffer) (other-window -1))) </code></pre> <p>Also tested on Emacs 23.1.1</p> http://stackoverflow.com/questions/1449787/are-there-any-halfway-decent-free-html-editors-for-the-mac/1449811#1449811 4 Answer by docgnome for Are there any halfway decent free HTML editors for the Mac? docgnome 2009-09-19T23:42:12Z 2009-09-19T23:42:12Z <p>There's always <a href="http://homepage.mac.com/zenitani/emacs-e.html" rel="nofollow">Carbon Emacs</a>.</p> http://stackoverflow.com/questions/28999/favorite-ide-feature/1430220#1430220 1 Answer by docgnome for Favorite IDE feature? docgnome 2009-09-15T23:54:47Z 2009-09-15T23:54:47Z <p>Having the ability to perform any function with out having to reach for the mouse, including reasonable text navigation. (Emacs)</p> http://stackoverflow.com/questions/1413691/how-do-i-edit-html-files-directly/1413706#1413706 2 Answer by docgnome for How do I edit HTML files directly? docgnome 2009-09-11T23:26:08Z 2009-09-11T23:26:08Z <p>Depending on how much work you want to do you could just use <a href="http://www.php.net/manual/en/function.fopen.php" rel="nofollow">fopen</a> and friends.</p> http://stackoverflow.com/questions/979222/why-isnt-everything-we-do-in-unicode 21 Why isn't everything we do in Unicode? docgnome 2009-06-11T03:44:22Z 2009-09-10T21:26:41Z <p>Given that Unicode has <a href="http://en.wikipedia.org/wiki/Unicode#History%5Fof%5FUnicode" rel="nofollow">been around for 18 years</a>, why are there still apps that don't have Unicode support? Even my experiences with some operating systems and Unicode have been painful to say the least. As Joel Spolsky pointed out in 2003, <a href="http://www.joelonsoftware.com/articles/Unicode.html" rel="nofollow">it's not that hard.</a> So what's the deal? Why can't we get it together?</p> http://stackoverflow.com/questions/1374383/saving-the-userid-of-a-user-that-deleted-a-record-with-a-trigger-in-mysql 0 Saving the USER_ID of a user that deleted a record with a trigger in MySQL docgnome 2009-09-03T16:08:36Z 2009-09-03T17:24:23Z <p>I'm trying to set up a series of history triggers to automatically collect history for a given table via triggers. I want to use triggers as this guarantees I capture all changes regardless if someone forgets about saving it in the app. My problem is that I have this trigger.</p> <pre><code>CREATE TRIGGER `db`.`delete_history_trigger` BEFORE DELETE ON `db`.`payments` FOR EACH ROW BEGIN INSERT INTO `payments_history` select *, 'delete', NOW(), USER() from `payments` where `PAYMENT_ID` = OLD.`PAYMENT_ID`; END // </code></pre> <p>This stuff everything in <code>payments</code> into <code>payments_history</code> and fills out the action that was performed, the date/time the action occurred, the MySQL user that caused the action to be performed. Each user in my app has a <code>USER_ID</code> (which is from the <code>users</code> table) that I want to save. For updates this is no problem as <code>USER_ID</code> is one fields used in the <code>update</code> query. However, in delete there is no data passed in and therefore NEW is not accessible as there is nothing there. I can't think of a good way to get the <code>USER_ID</code> to save into the history table on deletes short of doing a second query to update the record. I'd rather not use this solution as it is possible that someone else may forget to call the method to update the record after a delete and that data would be lost.</p> http://stackoverflow.com/questions/1036585/unicode-support-in-various-programming-languages 3 Unicode Support in Various Programming Languages docgnome 2009-06-24T05:49:30Z 2009-09-03T15:23:49Z <p>I'd like to have a canonical place to pool information about Unicode support in various languages. Is it a part of the core language? Is it provided in libraries? Is it not available at all? Is there a resource popular resource for Unicode information in a language? One language per answer please. Also if you could make the language a heading that would make it easier to find.</p> http://stackoverflow.com/questions/92159/how-do-you-vent-stress-as-a-programmer/1348529#1348529 0 Answer by docgnome for How do you vent stress as a programmer? docgnome 2009-08-28T18:00:46Z 2009-08-28T18:00:46Z <p>I find writing <a href="http://en.wikipedia.org/wiki/Haiku" rel="nofollow">haiku</a> can be stress relieving. I also find playing <a href="http://en.wikipedia.org/wiki/Go%5F%28game%29" rel="nofollow">Go</a> to be a great activity to involve the mind and still not be stressful.</p> http://stackoverflow.com/questions/38210/what-non-programming-books-should-programmers-read/1072060#1072060 1 Answer by docgnome for What non-programming books should programmers read? docgnome 2009-07-02T01:10:26Z 2009-08-21T19:29:12Z <p>I've been really enjoying haiku recently. To that end, I'd very strongly recommend <a href="http://rads.stackoverflow.com/amzn/click/4770014309" rel="nofollow">The Haiku Handbook: How to Write, Share, and Teach Haiku</a> by <a href="http://en.wikipedia.org/wiki/William%5FJ.%5FHigginson" rel="nofollow">William J. Higinson</a>.</p> <p><img src="http://www.freeimagehosting.net/uploads/0e495e717d.jpg" alt="Book Cover" /></p> <p>I recommend reading/writing haiku as a way to relax.</p> http://stackoverflow.com/questions/1173692/what-is-the-best-api-framework-platform-you-ever-worked-with/1269207#1269207 2 Answer by docgnome for What is the best API/framework/platform you ever worked with? docgnome 2009-08-12T23:03:46Z 2009-08-12T23:03:46Z <p>I really enjoy <a href="http://pylonshq.com/" rel="nofollow">Pylons</a>.</p> http://stackoverflow.com/questions/26280/favorite-web-host/1268957#1268957 1 Answer by docgnome for Favorite web host. docgnome 2009-08-12T21:52:35Z 2009-08-12T21:52:35Z <p>I've been super happy with <a href="http://www.webfaction.com/" rel="nofollow">WebFaction</a> for my personal stuff.</p> http://stackoverflow.com/questions/1256189/git-svn-dcommiting-a-single-git-commit 3 git-svn dcommiting a single git commit docgnome 2009-08-10T17:35:10Z 2009-08-12T17:37:07Z <p>Given multiple unpushed <code>git</code> commits, is it possible to <code>git-svn dcommit</code> only one of those commits?</p> <p>e.g. I have commit foo, bar, and baz, but right now I only want to have bar end up in the svn repo. Is this possible?</p> http://stackoverflow.com/questions/1256189/git-svn-dcommiting-a-single-git-commit/1256195#1256195 2 Answer by docgnome for git-svn dcommiting a single git commit docgnome 2009-08-10T17:36:29Z 2009-08-12T17:37:07Z <p>I have one sort of crusty answer. You can create a new branch with out foo, bar, and baz in it and then <code>cherry-pick</code> bar to the new branch and then <code>git-svn dcommit</code> that branch and remove it when you're done. That doesn't seem very elegant though.</p> <p>So assuming foo, bar, and baz are in branch x and master doesn't have any of them.</p> <blockquote> <p><code>git branch y master</code></p> <p><code>git checkout y</code></p> <p><code>git cherry-pick &lt;sha1 of bar&gt;</code></p> <p><code>git svn dcommit</code> </p> <p><code>git checkout x</code></p> <p><code>git svn rebase</code></p> <p><code>git branch -d y</code></p> </blockquote> <p>If master does have these commits you can reset the head as Sizzler suggests.</p> http://stackoverflow.com/questions/1262283/how-to-release-web-applications/1262336#1262336 1 Answer by docgnome for How to release web applications? docgnome 2009-08-11T19:09:17Z 2009-08-11T19:09:17Z <p>I would recommend the first option. If you have a structure where you can put versions of the code and flip between them by changing a link, it is much easier to roll back than if you just have an svn checkout. With svn you have to merge with a previous version to revert.</p> http://stackoverflow.com/questions/1257236/django-emacs-as-textmate-replacement/1257260#1257260 1 Answer by docgnome for Django + Emacs (as TextMate replacement) docgnome 2009-08-10T21:15:35Z 2009-08-10T21:15:35Z <p>You might check out <a href="http://code.djangoproject.com/wiki/Emacs" rel="nofollow">Django mode for emacs</a>. What specific functionality were you looking for? For snippets, I recommend <a href="http://code.google.com/p/yasnippet/" rel="nofollow">yasnippet</a> which is inspired by the TextMate snippet system.</p> http://stackoverflow.com/questions/1252044/successful-programmer-incompetent-with-algorithms/1252076#1252076 3 Answer by docgnome for "Successful" Programmer incompetent with algorithms docgnome 2009-08-09T19:45:18Z 2009-08-09T19:45:18Z <p>While I'm not sure how helpful it will be if you struggle with this sort of thing, the authoritative text on the subject is probably <a href="http://en.wikipedia.org/wiki/The%5FArt%5Fof%5FComputer%5FProgramming" rel="nofollow">The Art of Computer Programming</a>. Be warned it's a monster of a text and it will have no qualms about eating you.</p> http://stackoverflow.com/questions/994460/pylons-formencode-with-an-array-of-form-elements 1 Pylons FormEncode with an array of form elements docgnome 2009-06-15T04:04:25Z 2009-08-03T21:07:17Z <p>I have a Pylons app and am using FormEncode and HtmlFill to handle my forms. I have an array of text fields in my template (Mako)</p> <pre> &lt;tr&gt; &lt;td&gt;Yardage&lt;/td&gt; &lt;td&gt;${h.text('yardage[]', maxlength=3, size=3)}&lt;/td&gt; &lt;td&gt;${h.text('yardage[]', maxlength=3, size=3)}&lt;/td&gt; &lt;td&gt;${h.text('yardage[]', maxlength=3, size=3)}&lt;/td&gt; &lt;td&gt;${h.text('yardage[]', maxlength=3, size=3)}&lt;/td&gt; &lt;td&gt;${h.text('yardage[]', maxlength=3, size=3)}&lt;/td&gt; &lt;td&gt;${h.text('yardage[]', maxlength=3, size=3)}&lt;/td&gt; &lt;td&gt;${h.text('yardage[]', maxlength=3, size=3)}&lt;/td&gt; &lt;td&gt;${h.text('yardage[]', maxlength=3, size=3)}&lt;/td&gt; &lt;td&gt;${h.text('yardage[]', maxlength=3, size=3)}&lt;/td&gt; &lt;/tr&gt; </pre> <p>However, I can't seem to figure out how to validate these fields. Here is the relevant entry from my Schema</p> <p><code>yardage = formencode.ForEach(formencode.validators.Int())</code></p> <p>I'm trying to validate that each of these fields is an Int. However, no validation occurs for these fields.</p> <p><strong>UPDATE</strong> As requested here is the code for the action of this controller. I know it was working as I can validate other form fields. </p> <pre> def submit(self): schema = CourseForm() try: c.form_result = schema.to_python(dict(request.params)) except formencode.Invalid, error: c.form_result = error.value c.form_errors = error.error_dict or {} c.heading = 'Add a course' html = render('/derived/course/add.html') return htmlfill.render( html, defaults = c.form_result, errors = c.form_errors ) else: h.redirect_to(controler='course', action='view') </pre> <p><strong>UPDATE</strong> It was suggested on IRC that I change the name of the elements from <code>yardage[]</code> to <code>yardage</code> No result. They should all be ints but putting in f into one of the elements doesn't cause it to be invalid. As I said before, I am able to validate other form fields. Below is my entire schema.</p> <pre> import formencode class CourseForm(formencode.Schema): allow_extra_fields = True filter_extra_fields = True name = formencode.validators.NotEmpty(messages={'empty': 'Name must not be empty'}) par = formencode.ForEach(formencode.validators.Int()) yardage = formencode.ForEach(formencode.validators.Int()) </pre> http://stackoverflow.com/questions/1169197/where-can-i-find-some-good-documentation-about-haskell-programming-language/1169269#1169269 9 Answer by docgnome for Where can I find some good documentation about Haskell programming language? docgnome 2009-07-23T02:28:19Z 2009-07-23T02:28:19Z <p>You might try <a href="http://learnyouahaskell.com/" rel="nofollow">Learn You a Haskell for Great Good!</a></p> http://stackoverflow.com/questions/1145132/how-safe-is-it-to-send-a-plain-text-password-using-ajax/1145147#1145147 0 Answer by docgnome for How safe is it to send a plain text password using AJAX? docgnome 2009-07-17T19:12:14Z 2009-07-17T23:30:19Z <p>It isn't safe. Don't send unencrypted passwords. It's very likely that they will be intercepted at some point you will have a major problem.</p> <p>Here is a <a href="http://ccp120.blogspot.com/2009/03/cracking-telnet-in-4-minutes.html" rel="nofollow">video</a> example of capturing a telnet password. Telnet sends in plain text and this nicely illustrates the major problem you have if you even think of doing this. Any two bit script kiddie can snag a plain text password faster than you can so "Oh my God, where did my database go?" </p> http://stackoverflow.com/questions/1128869/how-would-you-code-this-the-so-announcement-bar/1128878#1128878 3 Answer by docgnome for How would you code this: The SO Announcement bar docgnome 2009-07-15T01:04:15Z 2009-07-15T01:25:59Z <p>I'd say you definitely should check out one of the JS frameworks that are around. I haven't used JQuery but I have heard good things about it. I have used MooTools and it makes effects very easy.</p> http://stackoverflow.com/questions/1084816/fatal-unable-to-run-git-svn/1101054#1101054 0 Answer by docgnome for fatal: unable to run 'git-svn' docgnome 2009-07-08T23:17:58Z 2009-07-08T23:17:58Z <p>It looks to me like when you install <code>git-core</code> via MacPorts you need to install the +svn variant, like so </p> <p><code>sudo port install git-core +svn</code></p> <p>Are you sure you did this?</p> http://stackoverflow.com/questions/1095404/bringing-a-team-together-what-are-programmers-looking-for/1095423#1095423 1 Answer by docgnome for Bringing a team together - what are programmers looking for? docgnome 2009-07-07T23:47:03Z 2009-07-07T23:47:03Z <p>I think you've hit the nail on the head. Working with smart people is a major thing hackers look for. It really would help if the project itself was interesting. If the project isn't interesting, it would help if it had some interesting/technically challenging aspects. New technologies can help attract people too. Or rather, interesting technologies. Also having a say in what is used can really make for an enjoyable work environment.</p> <p>Generally, they also want to be left alone after being given something to work on. Seriously. Don't bother the programmers unless the building is on fire. And even then it's iffy.</p> http://stackoverflow.com/questions/1078332/should-i-upgrade-to-php-5-3/1078353#1078353 10 Answer by docgnome for Should I upgrade to PHP 5.3? docgnome 2009-07-03T08:25:34Z 2009-07-03T08:25:34Z <p>You might consider upgrading just for the "Improved PHP runtime speed and memory usage" and bug fixes. <a href="http://php.net/ChangeLog-5.php" rel="nofollow">Source</a>. I would also say that if you are using <a href="http://us2.php.net/manual/en/function.create-function.php" rel="nofollow">create_function</a> anywhere, you should upgrade and replace that ugly, nasty mess, with the much cleaner <a href="http://us.php.net/manual/en/functions.anonymous.php" rel="nofollow">lambda</a>. <a href="http://us.php.net/migration53" rel="nofollow">Here</a> is the migration guide from 5.2.</p> http://stackoverflow.com/questions/1072410/how-should-i-use-transparent-pngs-in-ie-6-over-a-background-repeat/1072427#1072427 0 Answer by docgnome for How should I use transparent pngs in IE 6 over a background-repeat? docgnome 2009-07-02T04:07:55Z 2009-07-02T04:07:55Z <p>I haven't tested this out but you might try <a href="http://24ways.org/2007/supersleight-transparent-png-in-ie6" rel="nofollow">this</a>. Apply this class to the appropriate images.</p> <pre><code> img.transparent { filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(...); } </code></pre> <p>I don't have a copy of IE6 available so I can't make sure this works.</p> <p>I also found <a href="http://labs.unitinteractive.com/unitpngfix.php" rel="nofollow">this</a> which appears to solve the problem with JS. After reading a bit more the last solution is probably the best way to deal with it.</p> http://stackoverflow.com/questions/1871323/using-ido-el-to-find-files-in-a-git-repository Comment by docgnome on Using ido.el to find files in a git repository docgnome 2009-12-09T07:36:28Z 2009-12-09T07:36:28Z So you're talking about a temporary key binding while that function is invoked? As as side note, I find it works better to use the kdb function when expressing key chords than escaping characters. But that's just me. http://stackoverflow.com/questions/1786004/concatenating-pdfs-in-php Comment by docgnome on Concatenating PDFs in PHP docgnome 2009-11-24T16:03:40Z 2009-11-24T16:03:40Z @Jason And no one said it does... Using exec() is just kinna gross when there are libs available. http://stackoverflow.com/questions/1786004/concatenating-pdfs-in-php Comment by docgnome on Concatenating PDFs in PHP docgnome 2009-11-23T21:23:42Z 2009-11-23T21:23:42Z @schnaader Aye, I think so. But using exec() is just really inelegant if there is a better solution. http://stackoverflow.com/questions/1771872/mysql-get-all-records-that-have-an-id-for-one-year-but-not-another/1771917#1771917 Comment by docgnome on MySQL: Get all records that have an id for one year but not another docgnome 2009-11-20T17:20:06Z 2009-11-20T17:20:06Z This is slightly different than what mediaslave asked for. This will select all HOST_ID where ContractYear is 2009 and it has HOST_ID has never appeared in t2 before. http://stackoverflow.com/questions/1765168/cleaning-a-production-database-for-use-in-testing/1765244#1765244 Comment by docgnome on Cleaning a Production Database for use in Testing docgnome 2009-11-19T17:56:54Z 2009-11-19T17:56:54Z While migrations would be super useful, the app we build is internal so deploying other servers isn't an issue... Yet. :-) http://stackoverflow.com/questions/1765168/cleaning-a-production-database-for-use-in-testing Comment by docgnome on Cleaning a Production Database for use in Testing docgnome 2009-11-19T17:50:48Z 2009-11-19T17:50:48Z @Andrew Obviously, it's DB specific. I was just wondering if there was a tool to say, mark all of the columns that are sensitive and whack them when I threw a DB into it. http://stackoverflow.com/questions/1765168/cleaning-a-production-database-for-use-in-testing Comment by docgnome on Cleaning a Production Database for use in Testing docgnome 2009-11-19T17:47:36Z 2009-11-19T17:47:36Z @Andrew I was looking for something a little more sophisticated than that. It's sort of looking like I'll just need to write a script to do it though. http://stackoverflow.com/questions/1765168/cleaning-a-production-database-for-use-in-testing Comment by docgnome on Cleaning a Production Database for use in Testing docgnome 2009-11-19T17:46:02Z 2009-11-19T17:46:02Z Specific columns in certain tables. I'm just looking to wipe out anything that could be used to find a particular user, address, email, etc. http://stackoverflow.com/questions/1575346/documentation-on-geting-driving-directions-and-calculating-driving-distance-with/1754901#1754901 Comment by docgnome on Documentation on geting driving directions and calculating driving distance with Mapstraction docgnome 2009-11-19T00:34:27Z 2009-11-19T00:34:27Z So I understand. http://stackoverflow.com/questions/1039817/git-commit-frequency/1039841#1039841 Comment by docgnome on git commit frequency docgnome 2009-11-17T00:11:18Z 2009-11-17T00:11:18Z It should be noted that git rebase, while awesome, is a very dangerous tool if you are not careful. http://stackoverflow.com/questions/1592457/how-to-debug-a-program-without-a-debugger Comment by docgnome on How to debug a program without a debugger? docgnome 2009-10-20T04:55:23Z 2009-10-20T04:55:23Z It should be CW cause it's subjective. http://stackoverflow.com/questions/3437/options-for-google-maps-over-ssl/1500201#1500201 Comment by docgnome on Options for Google Maps over SSL docgnome 2009-10-15T19:25:41Z 2009-10-15T19:25:41Z Google Maps Premier is great, if you work for a larger company with 10k just sitting around. If you're like me, you're sort of out of luck it seems. http://stackoverflow.com/questions/1509246/git-over-ssh-without-git-being-installed-on-server/1509251#1509251 Comment by docgnome on Git over ssh without Git being installed on server docgnome 2009-10-03T01:10:07Z 2009-10-03T01:10:07Z To go along with what Roman said, on a Debian based system you should install build-essentials to get gcc and make and so forth. http://stackoverflow.com/questions/1493579/vimperator-conkeror-like-link-selection Comment by docgnome on Vimperator/Conkeror-like link selection docgnome 2009-09-29T16:55:57Z 2009-09-29T16:55:57Z This is the browser in question. Conkeror is not Konqueror. <a href="http://conkeror.org/" rel="nofollow">conkeror.org</a> http://stackoverflow.com/questions/1416945/how-can-i-use-perl-to-test-c-programs Comment by docgnome on How can I use Perl to test C programs? docgnome 2009-09-13T16:32:16Z 2009-09-13T16:32:16Z Just because this user doesn't accept many answers doesn't mean that someone else won't find this useful later. Seems to me everyone has started taking the short view (what do I get out of this right now?) of the process since the accept rate was added.