<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:admin="http://webns.net/mvcb/"
	xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
	xmlns:content="http://purl.org/rss/1.0/modules/content/">
	<channel>
		<title>
			CoffeeBreak
		</title>
		<link>
			http://www.neverpanic.de/blog/
		</link>
		<atom:link href="http://www.neverpanic.de/blog/rss2/" rel="self" type="application/rss+xml" />
		<description>
			CoffeeBreak, the neverpanic.de blog
		</description>
		<dc:language>
			en
		</dc:language>
		<dc:creator>
			Clemens Lang
		</dc:creator>
		<dc:rights>
			Creative Commons Attribution-NonCommercial-ShareAlike 2.0 Germany License
		</dc:rights>
		<dc:date>
			2010-07-30T22:55:01+00:00
		</dc:date>
		<admin:generatorAgent rdf:resource="http://expressionengine.com/" />
		
		<item>
			<title>
				whatthecommit.com git hook
			</title>
			<link>
				http://www.neverpanic.de/blog/single/whatthecommit.com-git-hook/
			</link>
			<guid>
				http://www.neverpanic.de/blog/single/whatthecommit.com-git-hook/#When:17:23:52Z
			</guid>
			<description>
				whatthecommit.com generates commit messages for the lazy… but being one of the laziest people, this isn&#39;t just easy enough!I currently use Git for most of my version control needs. I&#39;m keeping all of my hand&#45;ins for university under version control to be able to sync them between university and my laptop easily and to make it easy for others to contribute (and sometimes they actually do!). But those of you using version control systems know what the biggest problem with version control is: Thinking of a commit message. Wait no moar! The ultimate solution is here!
whatthecommit.com is a website that provides you with a fresh commit message every time you load it. So all you have to do, is copy and paste the line into your commit window. Still too much work? That&#39;s why git comes with hook scripts. Paste the following code in .git/hooks/prepare&#45;commit&#45;msg in your working copy and make the file executable and you&#39;ll be provided with a wonderful commit message every time you type git commit automatically!
#!/bin/sh## A hook script to prepare the commit log message.# Called by &amp;quot;git commit&amp;quot; with the name of the file that has the# commit message, followed by the description of the commit# message&#39;s source.  The hook&#39;s purpose is to edit the commit# message file.  If the hook fails with a non&#45;zero status,# the commit is aborted.&amp;nbsp;case &amp;quot;$2,$3&amp;quot; in        ,|template,&#41;                line=$&#40; wget http://whatthecommit.com/ &#45;O &#45; 2&amp;gt;/dev/null | grep &#45;o &#39;&amp;lt;p&amp;gt;.*$&#39; | sed &#39;s/&amp;lt;[^&amp;gt;]*&amp;gt;//g&#39; &#41;                file=$&#40; sed &#39;1d&#39; &amp;quot;${1}&amp;quot; &#41;                echo &amp;quot;${line}&amp;quot; &amp;gt; &amp;quot;${1}&amp;quot;                echo &amp;quot;${file}&amp;quot; &amp;gt;&amp;gt; &amp;quot;${1}&amp;quot;        ;;        *&#41; ;;esac
			</description>
			<dc:subject>
				Development, Linux
			</dc:subject>
			<dc:date>
				2010-07-03T17:23:52+00:00
			</dc:date>
		</item>
		
		<item>
			<title>
				Xcode from NULL to 100;
			</title>
			<link>
				http://www.neverpanic.de/blog/single/xcode-from-null-to-100/
			</link>
			<guid>
				http://www.neverpanic.de/blog/single/xcode-from-null-to-100/#When:16:24:41Z
			</guid>
			<description>
				I was recently browsing the new iTunes 9 Store and somehow ended up in the podcast section. I had a look around the featured podcast and noticed a somewhat new podcast about Xcode called “Xcode von NULL auf Hundert;” (the podcast is german and, as such, has a german title). Ever since I switched to a Mac I have wanted to learn some basics of Cocoa programming.


    I started reading some resources on Objective&#45;C programming a while ago, but didn&#39;t finish any because most of them were pretty technical and theoretical and thus getting boring pretty fast. The “Xcode from NULL to 100;” podcast does a lot more learning by doing – e.g. they guide you to build a (graphical!) calculator and explain memory allocating and releasing using that example.


    The podcast targets absolute beginners – if you already have a background in programming, some of the information not related to OS X GUI programming will probably be pretty redundant to you, but you might still use the podcast to get started with Apple&#39;s Interface Builder.


    Xcode von NULL auf Hundert; podcast
			</description>
			<dc:subject>
				Development, OS X
			</dc:subject>
			<dc:date>
				2009-09-17T16:24:41+00:00
			</dc:date>
		</item>
		
		<item>
			<title>
				Thunderbird IMAP push email
			</title>
			<link>
				http://www.neverpanic.de/blog/single/thunderbird-imap-push-email/
			</link>
			<guid>
				http://www.neverpanic.de/blog/single/thunderbird-imap-push-email/#When:10:18:49Z
			</guid>
			<description>
				Using Thunderbird as the e&#45;mail client of your choice and the IMAP protocol to fetch and manage your mail?
RFC 2177 defines IDLE, an extension to the IMAP protocol allowing mail clients to change into an idle mode while keeping the TCP&#45;connection open. This allows the servers to notify the clients of new mails on arrival (the so&#45;called push e&#45;mail).
Not all e&#45;mail providers support IMAP IDLE, though – you should check whether your mail provider supports it by opening a telnet connection to the IMAP server (standard port for IMAP is 143) and sending 001 capability. If the answer contains „IDLE” your server supports IMAP IDLE.
GMail for example answers
* CAPABILITY IMAP4rev1 UNSELECT IDLE NAMESPACE QUOTA XLIST CHILDREN XYZZY
001 OK Thats all she wrote!
There&#39;s one thing to look out for, though – Thunderbird only sends the IDLE command (effectively enabling push e&#45;mail) if you disable the „check for new mail every nth minute”&#45;option. I could not find any documentation on that feature – however using Help » Mozilla Thunderbird Help causes a 404 File Not Found error for me anyway (using the German version of Thunderbird).
Steve Jobs would say: „Exchange for the rest of us” – using GMail, IMAP and Thunderbird.
			</description>
			<dc:subject>
				Development, Web Development, Personal
			</dc:subject>
			<dc:date>
				2008-07-12T10:18:49+00:00
			</dc:date>
		</item>
		
	</channel>
</rss>