<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:dc="http://purl.org/dc/elements/1.1/" version="2.0"><channel><atom:link rel="hub" href="http://tumblr.superfeedr.com/" xmlns:atom="http://www.w3.org/2005/Atom"/><description>Arjan van der Gaag’s semi-regularly updated swipe file</description><title>Arjan’s tumblelog</title><generator>Tumblr (3.0; @avdgaag)</generator><link>http://tumble.arjanvandergaag.nl/</link><item><title>"The art of the connection is the end result of a nerd’s highly obsessive due diligence performed on..."</title><description>“The art of the connection is the end result of a nerd’s highly obsessive due diligence performed on anything that falls into the relevant bucket.”&lt;br/&gt;&lt;br/&gt; - &lt;em&gt;&lt;a href="http://www.randsinrepose.com/archives/2010/10/21/an_unexpected_connection.html"&gt;Michael Lopp&lt;/a&gt;&lt;/em&gt;</description><link>http://tumble.arjanvandergaag.nl/post/1421926519</link><guid>http://tumble.arjanvandergaag.nl/post/1421926519</guid><pubDate>Thu, 28 Oct 2010 09:30:51 +0200</pubDate></item><item><title>"Quit iTunes 10, and enter defaults write com.apple.iTunes full-window -1 in a Terminal prompt...."</title><description>“Quit iTunes 10, and enter &lt;code&gt;defaults write com.apple.iTunes full-window -1&lt;/code&gt; in a Terminal prompt. Relaunch iTunes and—voilà!—the standard window controls return.”&lt;br/&gt;&lt;br/&gt; - &lt;em&gt;&lt;a href="http://arstechnica.com/apple/news/2010/09/itunes-10-hands-on-snappier-performance-questionable-ui-choices.ars"&gt;Chris Foresman at ars technica&lt;/a&gt;&lt;/em&gt;</description><link>http://tumble.arjanvandergaag.nl/post/1075448118</link><guid>http://tumble.arjanvandergaag.nl/post/1075448118</guid><pubDate>Mon, 06 Sep 2010 15:56:28 +0200</pubDate></item><item><title>"[anthropologist Susan D. Blum] contends that undergraduates are less interested in cultivating a..."</title><description>“[anthropologist Susan D. Blum] contends that undergraduates are less interested in cultivating a unique and authentic identity — as their 1960s counterparts were — than in trying on many different personas, which the Web enables with social networking.”&lt;br/&gt;&lt;br/&gt; - &lt;em&gt;&lt;a href="http://www.nytimes.com/2010/08/02/education/02cheat.html?_r=1"&gt;Lines on Plagiarism Blur for Students in the Digital Age - NYTimes.com&lt;/a&gt;&lt;/em&gt;</description><link>http://tumble.arjanvandergaag.nl/post/1074201936</link><guid>http://tumble.arjanvandergaag.nl/post/1074201936</guid><pubDate>Mon, 06 Sep 2010 09:19:35 +0200</pubDate></item><item><title>Indonesian deforestation exposed</title><description>&lt;a href="http://www.guardian.co.uk/environment/picture/2010/aug/20/indonesia-deforestation?CMP=twt_ipd"&gt;Indonesian deforestation exposed&lt;/a&gt;: &lt;p&gt;A Greenpeace aerial survey reveals an area of deforestation in Sumatra stripped for pulp and palm oil plantations and logging (from The Guardian)&lt;/p&gt;</description><link>http://tumble.arjanvandergaag.nl/post/1038279433</link><guid>http://tumble.arjanvandergaag.nl/post/1038279433</guid><pubDate>Mon, 30 Aug 2010 22:00:48 +0200</pubDate></item><item><title>IE6 and CSS media types</title><description>&lt;p&gt;When trying to reduce the number of HTTP requests on a web project I was working on, I tried to combine my screen and print stylesheets into a single file. Using the &lt;code&gt;@media&lt;/code&gt; declaration, one should be able to specify media-specific styles. Other browsers were ok, but as usual IE6 was playing up. My &lt;code&gt;@media print&lt;/code&gt; block was completely ignored.&lt;/p&gt;

&lt;h2&gt;The setup&lt;/h2&gt;

&lt;p&gt;First, I had only generic rules and a single print block, like so:&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;body { font-size: 12px }
@media print {
    body { font-size: 14pt }
}
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;Then, I included the stylesheet on my page with a media type:&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;&lt;link rel="stylesheet" href="styles.css" media="screen, projection"&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;As I understood the specs all generic styles (outside the &lt;code&gt;@media print&lt;/code&gt; block) should apply to the media specified in the &lt;code&gt;link&lt;/code&gt;, while the print-specific styles should apply only to the &lt;code&gt;print&lt;/code&gt; media type.&lt;/p&gt;

&lt;h2&gt;The solution&lt;/h2&gt;

&lt;p&gt;It seems the media type from the &lt;code&gt;link&lt;/code&gt; overrides the &lt;code&gt;@media print&lt;/code&gt; block in IE6, so removing that un-ignored those styles:&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;&lt;link rel="stylesheet" href="styles.css"&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;Then, in order to keep my generic styles (which are actually screen-only styles) from influencing my print styles, I used another &lt;code&gt;@media&lt;/code&gt; block:&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;@media screen {
    body { font-size: 12px }
}
@media print {
    body { font-size: 14pt }
}
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;All was well and both my screen and print styles were picked up nicely. Now I could use one single stylesheet and remove one additional HTTP request, speeding up the site loading time.&lt;/p&gt;</description><link>http://tumble.arjanvandergaag.nl/post/971700326</link><guid>http://tumble.arjanvandergaag.nl/post/971700326</guid><pubDate>Wed, 18 Aug 2010 13:35:00 +0200</pubDate><category>html</category><category>css</category><category>ie</category><category>web</category><category>code</category></item><item><title>Modifying Subversion commit messages</title><description>&lt;p&gt;Sometimes when I try to quickly repeat my last command in the terminal, I end up firing off a &lt;code&gt;svn commit&lt;/code&gt;. Unlike with Git, you cannot modify commits in Subversion, but you &lt;em&gt;can&lt;/em&gt; modify a revision’s properties — like the log message.&lt;/p&gt;

&lt;p&gt;Here’s how:&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;svn propedit --revprop -r 1234 svn:log
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;This will open your &lt;code&gt;$EDITOR&lt;/code&gt; and it lets you edit the log message for the specified commit (&lt;code&gt;1234&lt;/code&gt;).&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Note&lt;/strong&gt;: in order to make this work, you repository needs to be configured correctly. This means you should rename &lt;code&gt;/path/to/your/repo/hooks/pre-revprop-change.tmpl&lt;/code&gt; to &lt;code&gt;/path/to/your/repo/hooks/pre-revprop-change&lt;/code&gt; and &lt;code&gt;chmod +x&lt;/code&gt; it.&lt;/p&gt;</description><link>http://tumble.arjanvandergaag.nl/post/753225715</link><guid>http://tumble.arjanvandergaag.nl/post/753225715</guid><pubDate>Wed, 30 Jun 2010 11:40:37 +0200</pubDate><category>subversion</category><category>svn</category></item><item><title>Using relatedTarget in event handlers</title><description>&lt;p&gt;Here’s a nice trick for working with mouse events in a web page. Given a simple drop down menu, I used to use a timer to delay the closing of a submenu while the mouse travels from the menu title to the sub menu (where it nog longer hovers over the menu title, that had the original event handler). The timer going off would hide the submenu, unless the mouse entering the submenu fired a new event handler that would reset the timer.&lt;/p&gt;

&lt;p&gt;So, yeah, that wasn’t ideal.&lt;/p&gt;

&lt;p&gt;I learned the other day that, given &lt;strong&gt;adjacent element&lt;/strong&gt; you can actually use &lt;code&gt;event.relatedTarget&lt;/code&gt; to get to the element the mouse travels &lt;em&gt;to&lt;/em&gt; when &lt;em&gt;leaving&lt;/em&gt; the element that fired the &lt;code&gt;mouseout&lt;/code&gt; event. Neat!&lt;/p&gt;

&lt;p&gt;Now you can check for the target element and do all kinds of nifty stuff, and get rid of all timers. They sucked anyway.&lt;/p&gt;

&lt;p&gt;Example jQuery code:&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;$('nav a').mouseout(function(e) {
    var submenu = $('.submenu', this.parentNode);
    if(e.relatedTarget != submenu) {
        submenu.slideUp();
    }
});
&lt;/code&gt;&lt;/pre&gt;</description><link>http://tumble.arjanvandergaag.nl/post/731145955</link><guid>http://tumble.arjanvandergaag.nl/post/731145955</guid><pubDate>Thu, 24 Jun 2010 13:53:00 +0200</pubDate><category>javascript</category><category>code</category></item><item><title>Quick text manipulation with Ruby</title><description>&lt;p&gt;Here’s a nice trick I like to use to quickly transform some random piece of text using Ruby and Textmate:&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;string = DATA.read
# do stuff here...
__END__
Text to transform goes here
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;By using the &lt;code&gt;__END__&lt;/code&gt; line you tell Ruby to not executre all that follows, but capture it in an &lt;code&gt;IO&lt;/code&gt; which you can read. You can then quickly whip up a script and have Textmate run it using ⌘R. The script’s output can then be copied and pasted.&lt;/p&gt;

&lt;p&gt;I use this all the time to transform plain text into HTML, crunch some numbers or filter some text. Think of it as a ‘filter through command’ (⌥⌘R) on steroids.&lt;/p&gt;

&lt;p&gt;Here’s a quick example to convert ugly plain-text fractions in an HTML page to pretty entities:&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;input = DATA.read
{ 
  '1/2' =&gt; '&amp;frac12;',
  '1/4' =&gt; '&amp;frac14;',
  '3/4' =&gt; '&amp;frac34;'
}.each_pair do |plain_text, html_entity|
  input.gsub!(/\b#{plain_text}\b/, html_entity)
end
puts input
__END__
1/2 an egg and 1/4 pint of milk
&lt;/code&gt;&lt;/pre&gt;</description><link>http://tumble.arjanvandergaag.nl/post/722265156</link><guid>http://tumble.arjanvandergaag.nl/post/722265156</guid><pubDate>Mon, 21 Jun 2010 18:18:36 +0200</pubDate><category>ruby</category></item><item><title>Use Kaleidoscope to spot the differences in text and image...</title><description>&lt;img src="http://24.media.tumblr.com/tumblr_l3cd9vFbjz1qbsh2yo1_500.jpg"/&gt;&lt;br/&gt;&lt;br/&gt;&lt;p&gt;Use &lt;a href="http://www.kaleidoscopeapp.com/"&gt;Kaleidoscope&lt;/a&gt; to spot the differences in text and image files. I like it better than Changes.&lt;/p&gt;</description><link>http://tumble.arjanvandergaag.nl/post/659121915</link><guid>http://tumble.arjanvandergaag.nl/post/659121915</guid><pubDate>Thu, 03 Jun 2010 08:00:00 +0200</pubDate></item><item><title>Open Mail window</title><description>&lt;p&gt;Here’s something that has annoyed me ever since I got a Mac: when switching applications using the keyboard (e.g. ⌥-Tab), choosing Mail would not actually open a window if there wasn’t one open already. It seemed this was only good for switching to windows, not applications.&lt;/p&gt;

&lt;p&gt;Although this bugged me, I never got round to finding a solution, until now. It struck me that you can switch between mailboxes using ⌘ and a number key. So ⌘1 will actually open my Inbox nicely.&lt;/p&gt;</description><link>http://tumble.arjanvandergaag.nl/post/656650258</link><guid>http://tumble.arjanvandergaag.nl/post/656650258</guid><pubDate>Wed, 02 Jun 2010 15:36:14 +0200</pubDate><category>tips</category><category>osx</category><category>mac</category></item><item><title>Issues using VCSCommand with MacVim</title><description>&lt;p&gt;I tried to use the &lt;a href="http://vim.sourceforge.net/scripts/script.php?script_id=90"&gt;VCSCommand&lt;/a&gt;-plugin for Vim the other day, but I ran into a strange issue: the plugin tried to use an &lt;em&gt;older&lt;/em&gt; version of subversion with my working copy, resulting in “this client is too old” error messages.&lt;/p&gt;

&lt;h2&gt;The setup&lt;/h2&gt;

&lt;p&gt;I’ve got two copies of Subversion installed on my system: the default that comes with Mac OS X (1.4.4) and the one I manually installed (1.6.9). I have set my &lt;code&gt;$PATH&lt;/code&gt; so that 1.6.9 (in &lt;code&gt;/opt/subversion/bin&lt;/code&gt;) gets precedence over 1.4.4 (in &lt;code&gt;/usr/bin&lt;/code&gt;). It all works fine from the command line.&lt;/p&gt;

&lt;h2&gt;The problem&lt;/h2&gt;

&lt;p&gt;I am using &lt;a href="http://code.google.com/p/macvim/"&gt;MacVim&lt;/a&gt;, which is very nice, but it apparently doesn’t know about my 1.6.9 installation and complains. It appears (from running &lt;code&gt;:!which svn&lt;/code&gt; in MacVim) that MacVim (or so it seems any OS X app) ignores my &lt;code&gt;$PATH&lt;/code&gt; adjustments in &lt;code&gt;.bash_profile&lt;/code&gt;. Hence it is unaware of the &lt;code&gt;/opt/subversion/bin/svn&lt;/code&gt; executable.&lt;/p&gt;

&lt;h2&gt;The fix&lt;/h2&gt;

&lt;p&gt;I tried adding a file with the extra location to the &lt;code&gt;/etc/paths.d&lt;/code&gt; directory, &lt;a href="http://superuser.com/questions/31353/path-in-vim-doesnt-match-terminal"&gt;as per this suggestion&lt;/a&gt;. That worked but did not help, as it &lt;em&gt;appended&lt;/em&gt; rather &lt;em&gt;prepended&lt;/em&gt; the new location to MacVim’s &lt;code&gt;$PATH&lt;/code&gt;. It gave &lt;code&gt;/usr/bin&lt;/code&gt; precedence over &lt;code&gt;/opt/subversion/bin&lt;/code&gt;.&lt;/p&gt;

&lt;p&gt;I then gave up trying to solve this neatly. Instead I configured the plugin around the issue, which still works rather nicely. I included this line in my &lt;code&gt;.vimrc&lt;/code&gt; file:&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;let VCSCommandSVNExec="/opt/subversion/bin/svn"
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;This tells the plugin which executable to use. This solution is not very portable (the path to &lt;code&gt;svn&lt;/code&gt; may very well be different on other machines), but I have not found another way to solve this. Of course I could mess with my Subversion installations, but down that path madness lies, or so I hear. For now, I’m glad I can get on with it.&lt;/p&gt;</description><link>http://tumble.arjanvandergaag.nl/post/634024312</link><guid>http://tumble.arjanvandergaag.nl/post/634024312</guid><pubDate>Wed, 26 May 2010 11:41:46 +0200</pubDate><category>subversion</category><category>mac os x</category><category>macvim</category><category>vim</category></item><item><title>"…when Apple ties my hands behind my back and lets users punch me publicly in the face without..."</title><description>“…when Apple ties my hands behind my back and lets users punch me publicly in the face without allowing me to at least respond back, it’s hard to get excited about building an app.”&lt;br/&gt;&lt;br/&gt; - &lt;em&gt;Garrett Murray, creator of the awesome ego iPhone app, on &lt;a href="http://log.maniacalrage.net/post/98510137/a-little-over-a-week-and-a-half-ago-google"&gt;how Apple’s App Store is not helping him at all&lt;/a&gt;.&lt;/em&gt;</description><link>http://tumble.arjanvandergaag.nl/post/555453366</link><guid>http://tumble.arjanvandergaag.nl/post/555453366</guid><pubDate>Wed, 28 Apr 2010 10:05:19 +0200</pubDate></item><item><title>Literally, A Web Log</title><description>&lt;a href="http://literally.barelyfitz.com/"&gt;Literally, A Web Log&lt;/a&gt;: &lt;p&gt;An English language grammar blog tracking abuse of the word “literally”&lt;/p&gt;</description><link>http://tumble.arjanvandergaag.nl/post/472753637</link><guid>http://tumble.arjanvandergaag.nl/post/472753637</guid><pubDate>Thu, 25 Mar 2010 17:26:59 +0100</pubDate><category>language</category></item><item><title>zsh arguments-fu</title><description>&lt;p&gt;When using Subversion from the command-line I commonly do:&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;svn copy ^/myproject/branches/FB-branch1 ^/myproject/branches/FB-branch2
svn switch ^/myproject/branches/FB-branch2
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;This is a lot of typing. One way of working around this &lt;a href="http://github.com/avdgaag/subcheat" title="Look at my project at Github"&gt;a wrapper around &lt;code&gt;svn&lt;/code&gt; to automate these patterns&lt;/a&gt;, but another is using shell power. I use zsh, but bash and others can do the same with slightly different syntax:&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;svn copy ^/myproject/branches/FB-branch1 ^/myproject/branches/FB-branch2
svn switch !!:3
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;Here &lt;code&gt;!!:3&lt;/code&gt; is the third argument of the last command. Neat!&lt;/p&gt;</description><link>http://tumble.arjanvandergaag.nl/post/456356891</link><guid>http://tumble.arjanvandergaag.nl/post/456356891</guid><pubDate>Thu, 18 Mar 2010 10:45:36 +0100</pubDate><category>subversion</category><category>zsh</category><category>shell</category><category>terminal</category><category>programming</category><category>development</category></item><item><title>Librarian: There's a problem with this account update. It seems you have changed your default library account password.&#13;</title><description>Librarian: There's a problem with this account update. It seems you have changed your default library account password.&lt;br /&gt;&#13;
Me: yes.&lt;br /&gt;&#13;
Librarian: ...&lt;br /&gt;&#13;
Me: I like chaning my passwords every now and then.&lt;br /&gt;&#13;
Librarian: It's not recommended to change your password. No we cannot update your account.&lt;br /&gt;&#13;
Me: ...&lt;br /&gt;&#13;
Librarian: I'll create this extra account for you, and restore its default password. Your password should be the first four digits of your birthday. But don't change it again. It's makes life difficult for all of us.&lt;br /&gt;&#13;
Me: Ehm… thanks?</description><link>http://tumble.arjanvandergaag.nl/post/452832148</link><guid>http://tumble.arjanvandergaag.nl/post/452832148</guid><pubDate>Tue, 16 Mar 2010 21:36:34 +0100</pubDate><category>fail</category></item><item><title>Designing for the Web</title><description>&lt;a href="http://designingfortheweb.co.uk/book/index.php"&gt;Designing for the Web&lt;/a&gt;: &lt;p&gt;Wonderful book, now available online for free.&lt;/p&gt;</description><link>http://tumble.arjanvandergaag.nl/post/443886195</link><guid>http://tumble.arjanvandergaag.nl/post/443886195</guid><pubDate>Fri, 12 Mar 2010 21:57:46 +0100</pubDate><category>book</category><category>design</category></item><item><title>McDonald's employee: here's your burger. You might want to check if it's still good. </title><description>McDonald's employee: here's your burger. You might want to check if it's still good. &lt;br /&gt;
Me: excuse me?&lt;br /&gt;
McDonald's employee: you know, try it. I'm not sure if it's still good. &lt;br /&gt;
Me: I think I prefer a new one, regardless. &lt;br /&gt;
McDonald's employee: why? It might still be okay!</description><link>http://tumble.arjanvandergaag.nl/post/442874688</link><guid>http://tumble.arjanvandergaag.nl/post/442874688</guid><pubDate>Fri, 12 Mar 2010 07:51:57 +0100</pubDate><category>fail</category></item><item><title>Using Postbox</title><description>&lt;p&gt;I’ve decided to give &lt;a href="http://postbox-inc.com"&gt;Postbox&lt;/a&gt; a try as my default e-mail client. I love Mail.app’s simplicity, but it has some quirks and I feel I could do better.&lt;/p&gt;

&lt;p&gt;Here’s what I like so far:&lt;/p&gt;

&lt;ul&gt;&lt;li&gt;A sleek interface for tagging (called &lt;em&gt;topics&lt;/em&gt;)&lt;/li&gt;
&lt;li&gt;Quick browsing of attachments in a folder or from a contact&lt;/li&gt;
&lt;li&gt;Archive message immediately with ‘a’&lt;/li&gt;
&lt;li&gt;Gmail-style conversation view&lt;/li&gt;
&lt;li&gt;Pretty good and quick search&lt;/li&gt;
&lt;li&gt;Plug-in potential, although there’s not much available yet.&lt;/li&gt;
&lt;/ul&gt;&lt;p&gt;Here’s what I dislike so far:&lt;/p&gt;

&lt;ul&gt;&lt;li&gt;No global folders, i.e. one inbox, trash, sent and drafts for all accounts&lt;/li&gt;
&lt;li&gt;Topics don’t seem to be IMAP-portable, so you have to apply tags both at home and at work&lt;/li&gt;
&lt;li&gt;Message rules can not filter on content, only on message headers&lt;/li&gt;
&lt;li&gt;The message composer is bulky&lt;/li&gt;
&lt;li&gt;Integration with Mac OS X is not as good as Mail.app&lt;/li&gt;
&lt;li&gt;It’s Mozilla-based, not native.&lt;/li&gt;
&lt;/ul&gt;&lt;p&gt;I’m undecided on:&lt;/p&gt;

&lt;ul&gt;&lt;li&gt;Tabbed interface. I’m not used to it, I don’t need it and I don’t use it. But it might grow on me.&lt;/li&gt;
&lt;li&gt;Editing messages: not sure why I’d want to do that.&lt;/li&gt;
&lt;li&gt;Facebook and Twitter integration&lt;/li&gt;
&lt;/ul&gt;&lt;p&gt;Postbox does not come for free, while Mail.app and Thunderbird do. So it should really impress be before I switch. I remain unconvinced but hopeful for now.&lt;/p&gt;</description><link>http://tumble.arjanvandergaag.nl/post/441101889</link><guid>http://tumble.arjanvandergaag.nl/post/441101889</guid><pubDate>Thu, 11 Mar 2010 13:27:12 +0100</pubDate><category>software</category><category>gtd</category><category>mac os x</category><category>postbox</category><category>email</category><category>review</category></item><item><title>Attention Deficit Disorder by Ricardo (via gamesdaypodcast)</title><description>&lt;img src="http://28.media.tumblr.com/tumblr_kxhy3fSAC81qzpugoo1_500.jpg"/&gt;&lt;br/&gt;&lt;br/&gt;&lt;p&gt;&lt;b&gt;Attention Deficit Disorder&lt;/b&gt; by Ricardo (via &lt;a href="http://gamesdaypodcast.com/post/376996846/revenge"&gt;gamesdaypodcast&lt;/a&gt;)&lt;/p&gt;</description><link>http://tumble.arjanvandergaag.nl/post/439562961</link><guid>http://tumble.arjanvandergaag.nl/post/439562961</guid><pubDate>Wed, 10 Mar 2010 21:49:54 +0100</pubDate></item><item><title>Test apache configuration syntax</title><description>&lt;p&gt;Recently my Mac OS X stock install of Apache failed to launch properly. The regular system preferences interface stopped and started Web Sharing without complaining, but I could not find &lt;code&gt;httpd&lt;/code&gt; actually running using &lt;code&gt;ps -ax | grep httpd&lt;/code&gt; in the terminal.&lt;/p&gt;

&lt;p&gt;I was at a loss to explain why, until I found this little gem that you can use to syntax-test your configuration files with: &lt;code&gt;apachectl -t&lt;/code&gt; will report on any errors in httpd.conf or any of your other included files.&lt;/p&gt;

&lt;p&gt;It appeared that some time ago when I was attempting a manual upgrade of my Subversion install to 1.6.9 some Apache modules were corrupted. As I have no use for them I disabled them.&lt;/p&gt;

&lt;p&gt;That did the trick, and now I’ve got my local development environment up and running again.&lt;/p&gt;</description><link>http://tumble.arjanvandergaag.nl/post/438710736</link><guid>http://tumble.arjanvandergaag.nl/post/438710736</guid><pubDate>Wed, 10 Mar 2010 10:33:25 +0100</pubDate><category>tips</category><category>sysadmin</category></item></channel></rss>

