<?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"
	>

<channel>
	<title>Semantic web flowers</title>
	<atom:link href="http://micrub.info/feed/" rel="self" type="application/rss+xml" />
	<link>http://micrub.info</link>
	<description>All sort of web development insights.</description>
	<pubDate>Tue, 14 Apr 2009 13:38:53 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.2</generator>
	<language>en</language>
			<item>
		<title>HowTo clear subclipse plugin for Eclipse IDE and subversion password on windows xp/vista</title>
		<link>http://micrub.info/2009/04/14/howto-clear-subclipse-plugin-for-eclipse-ide-and-subversion-password-on-windows-xpvista/</link>
		<comments>http://micrub.info/2009/04/14/howto-clear-subclipse-plugin-for-eclipse-ide-and-subversion-password-on-windows-xpvista/#comments</comments>
		<pubDate>Tue, 14 Apr 2009 13:38:53 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[eclipse]]></category>

		<category><![CDATA[howto]]></category>

		<category><![CDATA[svn]]></category>

		<category><![CDATA[windows]]></category>

		<category><![CDATA[subclipse]]></category>

		<category><![CDATA[subversion]]></category>

		<guid isPermaLink="false">http://micrub.info/?p=46</guid>
		<description><![CDATA[This method works if subclipse plugin for Eclipse is setup to use JavaHL , open cmd with administrative privileges in %APPDATA%\Subversion\auth\svn.simple , there is files with auth settings for each repository , remove the necessary , also in some cases you should clear keyring cache :

cd %APPDATA%\Subversion\auth\svn.simple
C:\Users\someuser\AppData\Roaming\Subversion\auth\svn.simple&#62;del *
cd %ECLIPSE_FOLDER%\configuration\org.eclipse.core.runtime
del .keyring

Don&#8217;t forget to restart eclipse .
]]></description>
		<wfw:commentRss>http://micrub.info/2009/04/14/howto-clear-subclipse-plugin-for-eclipse-ide-and-subversion-password-on-windows-xpvista/feed/</wfw:commentRss>
		</item>
		<item>
		<title>How to get first and last day of the month with php</title>
		<link>http://micrub.info/2009/02/12/how-to-get-first-and-last-day-of-the-month-with-php/</link>
		<comments>http://micrub.info/2009/02/12/how-to-get-first-and-last-day-of-the-month-with-php/#comments</comments>
		<pubDate>Thu, 12 Feb 2009 14:48:27 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[PHP]]></category>

		<category><![CDATA[howto]]></category>

		<category><![CDATA[date]]></category>

		<category><![CDATA[time]]></category>

		<guid isPermaLink="false">http://micrub.info/?p=39</guid>
		<description><![CDATA[Using PHP&#8217;s mktime function , the last day of any given month can be expressed as the &#8220;0&#8243; day of the next month , therefore :

$lastDayOftheMonthTimestamp = mktime&#40;0,0,0,$currentMonthNumeric + 1,0,$currentFullYear&#41;;

Full example :

$currentTime         = time&#40;&#41;;
$dateTime            = getdate&#40;$currentTime&#41;;
$currentFullYear [...]]]></description>
		<wfw:commentRss>http://micrub.info/2009/02/12/how-to-get-first-and-last-day-of-the-month-with-php/feed/</wfw:commentRss>
		</item>
		<item>
		<title>MD5 hash validation with PHP</title>
		<link>http://micrub.info/2009/01/17/md5-hash-validation-with-php/</link>
		<comments>http://micrub.info/2009/01/17/md5-hash-validation-with-php/#comments</comments>
		<pubDate>Sat, 17 Jan 2009 20:29:34 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[PHP]]></category>

		<category><![CDATA[regular expression php md5 hash]]></category>

		<guid isPermaLink="false">http://micrub.info/?p=37</guid>
		<description><![CDATA[
preg_match&#40;'/(?&#60;![a-z0-9])[a-f0-9]{32}(?![a-z0-9])/i', '123456789024567d890f123456789012',$result&#41;;

Result :

Array
&#40;
    &#91;0&#93; =&#62; 123456789024567d890f123456789012
&#41;

]]></description>
		<wfw:commentRss>http://micrub.info/2009/01/17/md5-hash-validation-with-php/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Howto make pages controller like in CakePhp with Zend_Action_Controller</title>
		<link>http://micrub.info/2009/01/05/howto-make-pages-controller-like-in-cakephp-with-zend_action_controller/</link>
		<comments>http://micrub.info/2009/01/05/howto-make-pages-controller-like-in-cakephp-with-zend_action_controller/#comments</comments>
		<pubDate>Mon, 05 Jan 2009 21:36:29 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[PHP]]></category>

		<category><![CDATA[Zend framework]]></category>

		<category><![CDATA[howto]]></category>

		<category><![CDATA[cakephp]]></category>

		<category><![CDATA[controller]]></category>

		<category><![CDATA[mvc]]></category>

		<category><![CDATA[pages]]></category>

		<category><![CDATA[Zend_Controller_Action]]></category>

		<guid isPermaLink="false">http://micrub.info/?p=28</guid>
		<description><![CDATA[CakePhp framework comes with controller class extension called PagesController , this extension serves very productive propose , it checks what actions was called and renders view template with same name . 
For example if user accesses url http://micrub.info/pages/examples/ , the controller should search for view template in PagesController views directory , like app/views/pages/examples.ctp , if [...]]]></description>
		<wfw:commentRss>http://micrub.info/2009/01/05/howto-make-pages-controller-like-in-cakephp-with-zend_action_controller/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Get powerful word processor with Ubuntu</title>
		<link>http://micrub.info/2008/12/18/get-powerful-word-processor-with-ubuntu/</link>
		<comments>http://micrub.info/2008/12/18/get-powerful-word-processor-with-ubuntu/#comments</comments>
		<pubDate>Wed, 17 Dec 2008 22:27:43 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[software]]></category>

		<category><![CDATA[ubuntu]]></category>

		<category><![CDATA[word processor]]></category>

		<guid isPermaLink="false">http://micrub.info/?p=21</guid>
		<description><![CDATA[In some cases you don&#8217;t need the monolith office software suite , you need only good word processor software that have best of your current editor futures .
It&#8217;s called AbiWord and you install it via Ubuntu&#8217;s Synaptic Package Manager , it will cost you something like 25 MB of your hard drive , it&#8217;s operable [...]]]></description>
		<wfw:commentRss>http://micrub.info/2008/12/18/get-powerful-word-processor-with-ubuntu/feed/</wfw:commentRss>
		</item>
		<item>
		<title>HowTo: set sun&#8217;s java enabled on Ubuntu</title>
		<link>http://micrub.info/2008/12/17/howto-set-suns-java-enabled-on-ubuntu/</link>
		<comments>http://micrub.info/2008/12/17/howto-set-suns-java-enabled-on-ubuntu/#comments</comments>
		<pubDate>Wed, 17 Dec 2008 21:39:10 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[howto]]></category>

		<category><![CDATA[java]]></category>

		<category><![CDATA[ubuntu]]></category>

		<category><![CDATA[default]]></category>

		<category><![CDATA[enable]]></category>

		<category><![CDATA[sun]]></category>

		<guid isPermaLink="false">http://micrub.info/?p=17</guid>
		<description><![CDATA[In order to enable sun&#8217;s java after installation through synaptic check list of ubuntu&#8217;s java alternatives :

1
sudo update-java-alternatives -l

You should get something like this :

1
2
java-1.5.0-sun 53 /usr/lib/jvm/java-1.5.0-sun
java-gcj 1042 /usr/lib/jvm/java-gcj

Now enable your preferred java alternative :

1
sudo update-java-alternatives -s java-1.5.0-sun

Ensure that it&#8217;s enabled :

1
2
3
4
:~$ java -version
java version &#34;1.5.0_16&#34;
Java&#40;TM&#41; 2 Runtime Environment, Standard Edition &#40;build 1.5.0_16-b02&#41;
Java HotSpot&#40;TM&#41; Client [...]]]></description>
		<wfw:commentRss>http://micrub.info/2008/12/17/howto-set-suns-java-enabled-on-ubuntu/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Send an email with Zend_Mail using Gmail&#8217;s smtp services</title>
		<link>http://micrub.info/2008/09/22/sending-email-with-zend_mail-using-gmail-smtp-services/</link>
		<comments>http://micrub.info/2008/09/22/sending-email-with-zend_mail-using-gmail-smtp-services/#comments</comments>
		<pubDate>Mon, 22 Sep 2008 15:23:21 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[PHP]]></category>

		<category><![CDATA[Zend framework]]></category>

		<category><![CDATA[gmail]]></category>

		<category><![CDATA[smtp]]></category>

		<category><![CDATA[Zend_Mail]]></category>

		<guid isPermaLink="false">http://micrub.info/?p=6</guid>
		<description><![CDATA[SSL support on your http server must be enabled .
Before you continue , in php.ini used by your http server enable openssl extention and restart the http server .
Now in your application bootstrap file use next code snippet :

1
2
3
4
5
6
7
8
9
10
11
12
13
14
try &#123;
&#160;
$config = array&#40;'auth' =&#62; 'login',
          'username' =&#62; [...]]]></description>
		<wfw:commentRss>http://micrub.info/2008/09/22/sending-email-with-zend_mail-using-gmail-smtp-services/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
