<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Ich bin root &#187; codeschnipsel</title>
	<atom:link href="http://ichbinroot.de/tag/codeschnipsel/feed/" rel="self" type="application/rss+xml" />
	<link>http://ichbinroot.de</link>
	<description>ich darf das!</description>
	<lastBuildDate>Fri, 13 Jan 2012 13:49:04 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>C++ IO-Performance verbessern</title>
		<link>http://ichbinroot.de/2008/09/c-io-performance-verbessern/</link>
		<comments>http://ichbinroot.de/2008/09/c-io-performance-verbessern/#comments</comments>
		<pubDate>Tue, 09 Sep 2008 16:44:16 +0000</pubDate>
		<dc:creator>root</dc:creator>
				<category><![CDATA[c++]]></category>
		<category><![CDATA[codeschnipsel]]></category>

		<guid isPermaLink="false">http://ichbinroot.de/?p=50</guid>
		<description><![CDATA[std::ios::sync_with_stdio(false);]]></description>
			<content:encoded><![CDATA[<pre>std::ios::sync_with_stdio(false);</pre>
]]></content:encoded>
			<wfw:commentRss>http://ichbinroot.de/2008/09/c-io-performance-verbessern/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MySQL: UTF-8 Zeichenketten deutsch sortieren.</title>
		<link>http://ichbinroot.de/2007/08/mysql-utf-8-zeichenketten-deutsch-sortieren/</link>
		<comments>http://ichbinroot.de/2007/08/mysql-utf-8-zeichenketten-deutsch-sortieren/#comments</comments>
		<pubDate>Mon, 20 Aug 2007 09:13:31 +0000</pubDate>
		<dc:creator>root</dc:creator>
				<category><![CDATA[codeschnipsel]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[utf-8]]></category>

		<guid isPermaLink="false">http://ichbinroot.de/?p=19</guid>
		<description><![CDATA[Über Google gefunden in den HostEurope-FAQ: SELECT utf8_spalte FROM tabelle ORDER BY CONVERT(utf8_spalte USING utf8) COLLATE utf8_german2_ci ASC;]]></description>
			<content:encoded><![CDATA[<p>Über Google gefunden in den HostEurope-FAQ:</p>
<pre>SELECT utf8_spalte FROM tabelle	ORDER BY CONVERT(utf8_spalte USING utf8) 	COLLATE utf8_german2_ci ASC;</pre>
]]></content:encoded>
			<wfw:commentRss>http://ichbinroot.de/2007/08/mysql-utf-8-zeichenketten-deutsch-sortieren/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Zufallszahlen in MySQL</title>
		<link>http://ichbinroot.de/2007/04/zufallszahlen-in-mysql/</link>
		<comments>http://ichbinroot.de/2007/04/zufallszahlen-in-mysql/#comments</comments>
		<pubDate>Sun, 15 Apr 2007 17:14:17 +0000</pubDate>
		<dc:creator>root</dc:creator>
				<category><![CDATA[codeschnipsel]]></category>
		<category><![CDATA[mysql]]></category>

		<guid isPermaLink="false">http://ichbinroot.de/?p=13</guid>
		<description><![CDATA[Zufallszahl im von min bis max in MySQL: FLOOR(min + (RAND() * (max - min + 1)))]]></description>
			<content:encoded><![CDATA[<p>Zufallszahl im von <i>min</i> bis <i>max</i> in MySQL:</p>
<pre>FLOOR(min + (RAND() * (max - min + 1)))</pre>
]]></content:encoded>
			<wfw:commentRss>http://ichbinroot.de/2007/04/zufallszahlen-in-mysql/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Liste der verfügbaren Controller in Ruby On Rails</title>
		<link>http://ichbinroot.de/2007/02/liste-der-verfugbaren-controller-in-ruby-on-rails/</link>
		<comments>http://ichbinroot.de/2007/02/liste-der-verfugbaren-controller-in-ruby-on-rails/#comments</comments>
		<pubDate>Wed, 07 Feb 2007 16:56:56 +0000</pubDate>
		<dc:creator>root</dc:creator>
				<category><![CDATA[codeschnipsel]]></category>
		<category><![CDATA[ruby on rails]]></category>

		<guid isPermaLink="false">http://ichbinroot.de/?p=11</guid>
		<description><![CDATA[Alle verfügbaren Controller in einer Rails-Anwenung stehen im Array ActionController::Routing.possible_controllers Diese Liste enthält neben den eigenen Controllern auch 2 Rails-Controller rails_inforails/info]]></description>
			<content:encoded><![CDATA[<p>Alle verfügbaren Controller in einer Rails-Anwenung stehen im Array</p>
<pre>ActionController::Routing.possible_controllers</pre>
<p>Diese Liste enthält neben den eigenen Controllern auch 2 Rails-Controller</p>
<pre>rails_inforails/info</pre>
]]></content:encoded>
			<wfw:commentRss>http://ichbinroot.de/2007/02/liste-der-verfugbaren-controller-in-ruby-on-rails/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Datum von gestern herausfinden unter Linux</title>
		<link>http://ichbinroot.de/2006/09/datum-von-gestern-herausfinden-unter-linux/</link>
		<comments>http://ichbinroot.de/2006/09/datum-von-gestern-herausfinden-unter-linux/#comments</comments>
		<pubDate>Thu, 28 Sep 2006 09:08:06 +0000</pubDate>
		<dc:creator>root</dc:creator>
				<category><![CDATA[codeschnipsel]]></category>

		<guid isPermaLink="false">http://ichbinroot.de/?p=1</guid>
		<description><![CDATA[Oft benötigt man in Shellskripten das Datum von gestern zum Beispiel um Logdateien einmal täglich entsprechend umzubenennen. Mit GNU Date geht das so: date -d 'yesterday' "+%d.%m.%Y"# oder date -d '1 day ago' "+%d.%m.%Y"]]></description>
			<content:encoded><![CDATA[<p>Oft benötigt man in Shellskripten das Datum von gestern zum Beispiel um Logdateien einmal täglich entsprechend umzubenennen.</p>
<p><span id="more-1"></span></p>
<p>Mit GNU Date geht das so:</p>
<pre>date -d 'yesterday' "+%d.%m.%Y"# oder
date -d '1 day ago' "+%d.%m.%Y"</pre>
]]></content:encoded>
			<wfw:commentRss>http://ichbinroot.de/2006/09/datum-von-gestern-herausfinden-unter-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

