<?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>lewanscheck.de &#187; Programming</title>
	<atom:link href="http://www.lewanscheck.de/category/prog/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.lewanscheck.de</link>
	<description>I saw the movie and I read the book.</description>
	<lastBuildDate>Mon, 07 Feb 2011 15:41:18 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Nützliche Mysql Snippets</title>
		<link>http://www.lewanscheck.de/2010/10/26/mysql-spalte-innerhalb-einer-tabelle-verschieben-rearrange-column-order-in-table/</link>
		<comments>http://www.lewanscheck.de/2010/10/26/mysql-spalte-innerhalb-einer-tabelle-verschieben-rearrange-column-order-in-table/#comments</comments>
		<pubDate>Tue, 26 Oct 2010 13:44:05 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[MySQL]]></category>
		<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://www.lewanscheck.de/?p=157</guid>
		<description><![CDATA[Dinge die man sich nicht merken kann, sollte man sich aufschreiben! Bitmask Select MySQL SELECT * FROM menus WHERE (owner &#038; 2) = 2 (with 2 being the bitmask value and owner the field with your bitmask values) Varchar-Datum in richtiges DateTime wandeln SELECT zeit,STR_TO_DATE(zeit, '%d\. %M %Y') FROM guestbook WHERE 1 Auto-increment anpassen / [...]]]></description>
			<content:encoded><![CDATA[<p>Dinge die man sich nicht merken kann, sollte man sich aufschreiben!</p>
<p>Bitmask Select MySQL<br />
<code>SELECT * FROM menus WHERE (owner &#038; 2) = 2</code> (with 2 being the bitmask value and owner the field with your bitmask values)</p>
<p>Varchar-Datum in richtiges DateTime wandeln</p>
<p><code>SELECT zeit,STR_TO_DATE(zeit, '%d\. %M %Y')  FROM guestbook WHERE 1</code></p>
<p>Auto-increment anpassen / adjust auto-increment value</p>
<p><code>ALTER TABLE tbl AUTO_INCREMENT = 100;</code></p>
<p><strong>Spalte innerhalb einer Tabelle verschieben, Rearrange column order in table:</strong></p>
<p><code>ALTER TABLE my_table MODIFY COLUMN products_id int AFTER categories_id</code></p>
<p><strong>Table zu utf-8 wandeln, Convert table to utf-8:</strong></p>
<p><code>ALTER TABLE tbl_name CONVERT TO CHARACTER SET utf8 COLLATE utf8_general_ci;</code></p>
<p><strong>Tabellen-Kommentare hinzufügen, Inserting database table comments:</strong></p>
<p><code>ALTER TABLE tablename COMMENT = 'new updated comment';</code></p>
]]></content:encoded>
			<wfw:commentRss>http://www.lewanscheck.de/2010/10/26/mysql-spalte-innerhalb-einer-tabelle-verschieben-rearrange-column-order-in-table/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Recover Dreamweaver FTP-Zugang</title>
		<link>http://www.lewanscheck.de/2010/04/24/recover-dreamweaver-ftp-zugang/</link>
		<comments>http://www.lewanscheck.de/2010/04/24/recover-dreamweaver-ftp-zugang/#comments</comments>
		<pubDate>Sat, 24 Apr 2010 08:44:32 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://www.lewanscheck.de/?p=75</guid>
		<description><![CDATA[DaftLogic Password recovery]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.daftlogic.com/projects-decode-dreamweaver-password.htm">DaftLogic Password recovery</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.lewanscheck.de/2010/04/24/recover-dreamweaver-ftp-zugang/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>preg_match limit</title>
		<link>http://www.lewanscheck.de/2009/12/08/preg_match-and-preg_replace-limit/</link>
		<comments>http://www.lewanscheck.de/2009/12/08/preg_match-and-preg_replace-limit/#comments</comments>
		<pubDate>Tue, 08 Dec 2009 13:06:25 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://www.lewanscheck.de/?p=56</guid>
		<description><![CDATA[One thing to note when working with larger texts and preg_replace() is that the matched text cannot be longer than (usually) 100 000. I discovered this while debugging a CMS-system which wouldn&#8217;t display a certain text. Took forever to find the problem. Thankfully the default values can be changed &#8211; but only if you have [...]]]></description>
			<content:encoded><![CDATA[<p>One thing to note when working with larger texts and <strong>preg_replace()</strong> is that the matched text cannot be longer than (usually) 100 000.<br />
I discovered this while debugging a CMS-system which wouldn&#8217;t display a certain text. Took forever to find the problem.</p>
<p>Thankfully the default values can be changed &#8211; but only if you have access to the server.</p>
<p><a href="http://us.php.net/manual/en/pcre.configuration.php">http://us.php.net/manual/en/pcre.configuration.php</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.lewanscheck.de/2009/12/08/preg_match-and-preg_replace-limit/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Convert page from latin to utf-8</title>
		<link>http://www.lewanscheck.de/2009/11/10/convert-page-from-latin-to-utf-8/</link>
		<comments>http://www.lewanscheck.de/2009/11/10/convert-page-from-latin-to-utf-8/#comments</comments>
		<pubDate>Tue, 10 Nov 2009 12:04:04 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://www.lewanscheck.de/?p=48</guid>
		<description><![CDATA[If you ever had the pleasure of converting a page from iso to utf-8 and had mixed encodings in your database you will appreciate this link. http://www.oreillynet.com/onlamp/blog/2006/01/turning_mysql_data_in_latin1_t.html]]></description>
			<content:encoded><![CDATA[<p>If you ever had the pleasure of converting a page from iso to utf-8 and had mixed encodings in your database you will appreciate this link.</p>
<p><a href="http://www.oreillynet.com/onlamp/blog/2006/01/turning_mysql_data_in_latin1_t.html">http://www.oreillynet.com/onlamp/blog/2006/01/turning_mysql_data_in_latin1_t.html</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.lewanscheck.de/2009/11/10/convert-page-from-latin-to-utf-8/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Adobe Wave WordPress Plugin</title>
		<link>http://www.lewanscheck.de/2009/10/27/adobe-wave-wordpress-plugin/</link>
		<comments>http://www.lewanscheck.de/2009/10/27/adobe-wave-wordpress-plugin/#comments</comments>
		<pubDate>Tue, 27 Oct 2009 20:06:03 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[adobe]]></category>
		<category><![CDATA[automated]]></category>
		<category><![CDATA[notification]]></category>
		<category><![CDATA[wave]]></category>

		<guid isPermaLink="false">http://www.lewanscheck.de/?p=8</guid>
		<description><![CDATA[Did you ever want to notify all your fans at once if something on your blog changes? Have them download Adobe wave and send messages directly to their desktop. You can download the plugin here: http://blog.grobmeier.de/2009/08/04/adobe-wave-wordpress-plugin-finished.html]]></description>
			<content:encoded><![CDATA[<p>Did you ever want to notify all your fans at once if something on your blog changes? Have them download Adobe wave and send messages directly to their desktop.</p>
<p>You can download the plugin here:</p>
<p><a href="http://blog.grobmeier.de/2009/08/04/adobe-wave-wordpress-plugin-finished.html">http://blog.grobmeier.de/2009/08/04/adobe-wave-wordpress-plugin-finished.html</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.lewanscheck.de/2009/10/27/adobe-wave-wordpress-plugin/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

