<?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>Wapnet Blog &#187; Programmeren</title>
	<atom:link href="http://blog.wapnet.nl/category/programmeren/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.wapnet.nl</link>
	<description>Knowledge Base</description>
	<lastBuildDate>Sat, 24 Dec 2011 09:25:42 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
		<item>
		<title>Regular Expressions Example</title>
		<link>http://blog.wapnet.nl/2011/08/regular-expressions-example/</link>
		<comments>http://blog.wapnet.nl/2011/08/regular-expressions-example/#comments</comments>
		<pubDate>Wed, 24 Aug 2011 10:06:22 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Programmeren]]></category>
		<category><![CDATA[regex]]></category>

		<guid isPermaLink="false">http://blog.wapnet.nl/?p=522</guid>
		<description><![CDATA[If you want to use regular expressions to know if some numerical value is higher then 199 use the following code: ^\d{1,2}$&#124;^[1]\d\d$ Explanation: ^          = String begins with \d         = numerical string (character 0-9) {1,2}    = minimal 1 maximum 2 numerical characters $          = end script &#124;           = OR (to bind 2 regular [...]]]></description>
			<content:encoded><![CDATA[<p>If you want to use regular expressions to know if some numerical value is higher then 199 use the following code:</p>
<blockquote><p><strong>^\d{1,2}$|^[1]\d\d$</strong></p></blockquote>
<p>Explanation:</p>
<p>^          = String begins with</p>
<p>\d         = numerical string (character 0-9)</p>
<p>{1,2}    = minimal 1 maximum 2 numerical characters</p>
<p>$          = end script</p>
<p>|           = OR (to bind 2 regular expressions)</p>
<p>^          = begins with</p>
<p>[1]        = first character = 1 (if you want to go till 299 it may be [1-2])</p>
<p>\d\d      = the next 2 character must be numerical strings</p>
<p>$          = end</p>
<p>For 399 the parameter can be:</p>
<blockquote><p><strong>^\d{1,2}$|^[1,2,3]\d\d$</strong></p></blockquote>
<p>or</p>
<blockquote><p><strong>^\d{1,2}$|^[1-3]\d\d$</strong></p></blockquote>
<p>Nice freeware regex tool: <a href="http://www.radsoftware.com.au/regexdesigner/" target="_blank">http://www.radsoftware.com.au/regexdesigner/</a></p>
<p>Lot of samples: <a href="http://www.regular-expressions.info/examples.html" target="_blank">http://www.regular-expressions.info/examples.html</a></p>
<p>Online test: <a href="http://www.regexplanet.com/simple/index.html">http://www.regexplanet.com/simple/index.html</a></p>
<p>Hope this helps <img src='http://blog.wapnet.nl/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://blog.wapnet.nl/2011/08/regular-expressions-example/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Text to speech in URL</title>
		<link>http://blog.wapnet.nl/2011/06/text-to-speech-in-url/</link>
		<comments>http://blog.wapnet.nl/2011/06/text-to-speech-in-url/#comments</comments>
		<pubDate>Mon, 27 Jun 2011 21:30:42 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Programmeren]]></category>

		<guid isPermaLink="false">http://blog.wapnet.nl/?p=588</guid>
		<description><![CDATA[Dutch http://translate.google.com/translate_tts?tl=nl&#38;q=hier%20kun%20%20je%20wel%20leuke%20dingen%20mee%20doen. English http://translate.google.com/translate_tts?tl=en&#38;q=you.can.do.very.nice.things.with.this.url]]></description>
			<content:encoded><![CDATA[<p>Dutch</p>
<p><a href="http://translate.google.com/translate_tts?tl=nl&amp;q=hier%20kun%20%20je%20wel%20leuke%20dingen%20mee%20doen">http://translate.google.com/translate_tts?tl=nl&amp;q=hier%20kun%20%20je%20wel%20leuke%20dingen%20mee%20doen</a>.</p>
<p>English</p>
<p><a href="http://translate.google.com/translate_tts?tl=en&amp;q=you.can.do.very.nice.things.with.this.url">http://translate.google.com/translate_tts?tl=en&amp;q=you.can.do.very.nice.things.with.this.url</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.wapnet.nl/2011/06/text-to-speech-in-url/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="http://translate.google.com/translate_tts?tl=nl&amp;amp" length="0" type="audio/mpeg" />
<enclosure url="http://translate.google.com/translate_tts?tl=en&amp;amp" length="0" type="audio/mpeg" />
		</item>
		<item>
		<title>Migrate my Joomla 1.0.15 to 1.5.x</title>
		<link>http://blog.wapnet.nl/2010/01/migrate-my-joomla-1-0-15-to-1-5-x/</link>
		<comments>http://blog.wapnet.nl/2010/01/migrate-my-joomla-1-0-15-to-1-5-x/#comments</comments>
		<pubDate>Tue, 12 Jan 2010 21:54:47 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Networking]]></category>
		<category><![CDATA[Programmeren]]></category>

		<guid isPermaLink="false">http://blog.wapnet.nl/?p=313</guid>
		<description><![CDATA[Yes, I know&#8230; My Joomla site is very old. In this article I will write down all my migration steps. The best practise is to create a development environment. I download and install a Debian 5.0 (lenny) OS and installed all the common LAMP, SSH, Samba, PHPMyadmin &#38; ImageMagick  packages. Then: I Copy the content [...]]]></description>
			<content:encoded><![CDATA[<p>Yes, I know&#8230; My Joomla site is very old. In this article I will write down all my migration steps. The best practise is to create a development environment. I download and install a Debian 5.0 (lenny) OS and installed all the common LAMP, SSH, Samba, PHPMyadmin &amp; ImageMagick  packages. Then:</p>
<ol>
<li>I Copy the content of my site to my development environment</li>
<li>Edit the joomla configuration.php file and change my physical paths</li>
<li>Upload my database</li>
<li>Check all my joomla modules</li>
<li>set 777 permisions for easy testing <img src='http://blog.wapnet.nl/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </li>
<li>I know from earlier testing that mine Joomla template is not compatible with 1.5. So I download and install Artisteer 2 to create a new template. This software works so easy I created the template with my girlfriend <img src='http://blog.wapnet.nl/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  (<a href="http://thepiratebay.org/torrent/5252382/Artisteer_2.3.0.23023___Crack_Loader___VirusFree___Working">download torrent</a>)</li>
<li>My Biggest concern is the community builder component and the forum. This are the most important modules so I will upgrade them first.</li>
<li>Backup administrator/components/com_comprofiler/<strong>ue_config.php</strong>, remove the CB module and reinstall the latest versions. (note: latest CB have 1.5.10 native support)</li>
<li>My Fireboard version is aleady to the latest version (1.0.5 RC2) <img src='http://blog.wapnet.nl/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </li>
<li>Now I will install the migrator tools and follow the 5 migration steps @<a href="http://docs.joomla.org/Migrating_from_1.0.x_to_1.5_Stable"> http://docs.joomla.org/Migrating_from_1.0.x_to_1.5_Stable</a></li>
<li>I have installed the migrator and the fireboard ETL&#8217;s. After that I create A SQL Dump. Now I must create a new 1.5 install and import everything.</li>
<li>Note: You can now download your SQL dump file and upload it into your Joomla! 1.5 installation to continue the process. Don&#8217;t forget to select migration and use the prefix &#8216;jos_&#8217; (this migrator rewrites your prefix to jos_ even if the sites prefix is different).</li>
<li>I found a small community builder howto @ <a href="http://www.alledia.com/blog/joomla-15/migrating-to-joomla-15/">http://www.alledia.com/blog/joomla-15/migrating-to-joomla-15/</a></li>
<li>* Step 1: Export the Community Builder database tables from 1.0<br />
* Step 2: Download administrator / components / com_profiler / ue_config.php<br />
* Step 3: Install CB on the 1.5 site:<br />
* Step 4: Delete the CBt database tables on 1.5 and import the old tables from 1.0<br />
* Step 5: Upload the old ue_config.php to administrator / components / com_profiler / ue_config.php</li>
<li>For expose I can install the latest version. The copy the ../components/com_expose/expose/img and xml folders to the new site. That as very easy <img src='http://blog.wapnet.nl/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </li>
<li>For the CB Profile pictures I copy images/comprofiler to the new site.</li>
<li></li>
<li>.. to be continued</li>
</ol>
<p>Template fix:</p>
<p>Extensions &gt; Module manager &gt; Top Menu (or any other menu, e.g. Main Menu) &gt; click to Edit this module &gt; select Position = <strong>user3</strong>. Save the configuration and go to the frontpage. You should see your Artisteer style applied to the menu items.</p>
<p>And first assign another default template and then your template</p>
<div id="_mcePaste" style="overflow: hidden; position: absolute; left: -10000px; top: 79px; width: 1px; height: 1px;">http://thepiratebay.org/torrent/5252382/Artisteer_2.3.0.23023___Crack_Loader___VirusFree___Working</div>
]]></content:encoded>
			<wfw:commentRss>http://blog.wapnet.nl/2010/01/migrate-my-joomla-1-0-15-to-1-5-x/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>[Hyves] WordPress Plugin Works!</title>
		<link>http://blog.wapnet.nl/2009/12/hyves-wordpress-plugin-works/</link>
		<comments>http://blog.wapnet.nl/2009/12/hyves-wordpress-plugin-works/#comments</comments>
		<pubDate>Wed, 23 Dec 2009 12:20:54 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Programmeren]]></category>

		<guid isPermaLink="false">http://blog.wapnet.nl/?p=296</guid>
		<description><![CDATA[Hi, To create a connection between your Hyves and your wordpress blog follow this steps: Create an hyves API key @ http://www.hyves.nl/api/ (in detail) Install the WP-Hyves plugin in your WordPress Insert the API keys in the plugin After your published a post in WP  you can publish it to hyves: Have fun! Thomas]]></description>
			<content:encoded><![CDATA[<p>Hi,</p>
<p>To create a connection between your Hyves and your wordpress blog follow this steps:</p>
<ol>
<li>Create an hyves API key @ http://www.hyves.nl/api/ (<a href="http://wp-hyves.hyves.nl/forum/2835704/eoxR/Installation_Tutorial_5_Steps_in_getting_WP_Hyves_to_work/">in detail</a>)</li>
<li>Install the WP-Hyves plugin in your WordPress</li>
<li>Insert the API keys in the plugin</li>
</ol>
<p>After your published a post in WP  you can publish it to hyves:</p>
<p><a href="http://blog.wapnet.nl/wp-content/uploads/2009/12/publishpost.png"><img class="alignnone size-full wp-image-297" title="publishpost" src="http://blog.wapnet.nl/wp-content/uploads/2009/12/publishpost.png" alt="" width="296" height="76" /></a></p>
<p>Have fun!</p>
<p>Thomas</p>
<ol></ol>
]]></content:encoded>
			<wfw:commentRss>http://blog.wapnet.nl/2009/12/hyves-wordpress-plugin-works/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>[Hyves] WP-Hyves Plugin</title>
		<link>http://blog.wapnet.nl/2009/12/hyves-wp-hyves-plugin/</link>
		<comments>http://blog.wapnet.nl/2009/12/hyves-wp-hyves-plugin/#comments</comments>
		<pubDate>Wed, 23 Dec 2009 11:29:23 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Networking]]></category>
		<category><![CDATA[Programmeren]]></category>

		<guid isPermaLink="false">http://blog.wapnet.nl/?p=294</guid>
		<description><![CDATA[Hi, I found a WordPress plugin for my Hyves. All my blog posts must be added automatically now to hyves. Hope it works!! Thomas]]></description>
			<content:encoded><![CDATA[<p>Hi,</p>
<p>I found a WordPress plugin for my Hyves. All my blog posts must be added automatically now to hyves.</p>
<p>Hope it works!!</p>
<p>Thomas</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.wapnet.nl/2009/12/hyves-wp-hyves-plugin/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Howto: Automaticly install printer and printer port</title>
		<link>http://blog.wapnet.nl/2009/05/howto-automaticly-install-printer-and-printer-port/</link>
		<comments>http://blog.wapnet.nl/2009/05/howto-automaticly-install-printer-and-printer-port/#comments</comments>
		<pubDate>Tue, 05 May 2009 21:16:48 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Programmeren]]></category>

		<guid isPermaLink="false">http://blog.wapnet.nl/?p=191</guid>
		<description><![CDATA[First create a port: cscript %windir%\system32\prnport.vbs -a -s localhost -r IP_10.31.32.100 -h 10.31.32.100 -o raw -n 9100 Then create a printer: rundll32 printui.dll,PrintUIEntry /if /b "Some Printer Name" /f C:\DEV\pcl5e_5c\P52KHAL.inf /r "IP_10.31.32.100" /m "Canon iR 3100C EUR PCL5c" For more info try the /? commands]]></description>
			<content:encoded><![CDATA[<p>First create a port:<br />
<code><br />
cscript %windir%\system32\prnport.vbs -a -s localhost -r IP_10.31.32.100 -h 10.31.32.100 -o raw -n 9100<br />
</code></p>
<p>Then create a printer:<br />
<code><br />
rundll32 printui.dll,PrintUIEntry /if /b "Some Printer Name" /f C:\DEV\pcl5e_5c\P52KHAL.inf /r "IP_10.31.32.100" /m "Canon iR 3100C EUR PCL5c"<br />
</code></p>
<p>For more info try the /? commands</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.wapnet.nl/2009/05/howto-automaticly-install-printer-and-printer-port/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Inno setup + ISTool</title>
		<link>http://blog.wapnet.nl/2008/10/inno-setup-istool/</link>
		<comments>http://blog.wapnet.nl/2008/10/inno-setup-istool/#comments</comments>
		<pubDate>Fri, 10 Oct 2008 23:12:09 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Programmeren]]></category>

		<guid isPermaLink="false">http://blog.wapnet.nl/?p=104</guid>
		<description><![CDATA[With Inno setup can you create a MSI or EXE installer file. I write different setups for customers. Always I used the Inno scripting tool. But you have a GUI for Inno setup also. The name of the tool is ISTool.]]></description>
			<content:encoded><![CDATA[<p>With Inno setup can you create a MSI or EXE installer file. I write different setups for customers. Always I used the Inno scripting tool. But you have a GUI for Inno setup also.</p>
<p>The name of the tool is <a href="http://www.istool.org">ISTool</a>.</p>
<p><a href="http://blog.wapnet.nl/wp-content/uploads/2008/10/istool4.png"><img class="alignnone size-medium wp-image-106" title="istool4" src="http://blog.wapnet.nl/wp-content/uploads/2008/10/istool4-300x197.png" alt="" width="300" height="197" /></a><a href="http://blog.wapnet.nl/wp-content/uploads/2008/10/istool1.png"><img class="alignnone size-medium wp-image-105" title="istool1" src="http://blog.wapnet.nl/wp-content/uploads/2008/10/istool1-300x188.png" alt="" width="312" height="196" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.wapnet.nl/2008/10/inno-setup-istool/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Programming a Linux GUI (GTK+)</title>
		<link>http://blog.wapnet.nl/2008/02/programming-a-linux-gui-gtk/</link>
		<comments>http://blog.wapnet.nl/2008/02/programming-a-linux-gui-gtk/#comments</comments>
		<pubDate>Mon, 04 Feb 2008 23:54:52 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Programmeren]]></category>
		<category><![CDATA[GUI]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Program]]></category>
		<category><![CDATA[Rubi]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://blog.wapnet.nl/?p=15</guid>
		<description><![CDATA[I have read allot of Linux GUI programming tutorials today. But now 12:48 AM i find the following interesting youtube video]]></description>
			<content:encoded><![CDATA[<p>I have read allot of Linux GUI programming tutorials today. But now 12:48 AM i find the following interesting youtube video <img src='http://blog.wapnet.nl/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><embed src="http://www.youtube.com/v/PXpwC1o5AcI&#038;rel=1" type="application/x-shockwave-flash" wmode="transparent" width="425" height="355"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.wapnet.nl/2008/02/programming-a-linux-gui-gtk/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk: basic
Page Caching using disk: enhanced
Database Caching 1/44 queries in 0.106 seconds using disk: basic
Object Caching 464/706 objects using disk: basic

Served from: blog.wapnet.nl @ 2011-12-25 17:53:56 -->
