<?xml version="1.0" encoding="UTF-8"?><!-- generator="WordPress/2.6.2" -->
<rss version="0.92">
<channel>
	<title>Semantic web flowers</title>
	<link>http://micrub.info</link>
	<description>All sort of web development insights.</description>
	<lastBuildDate>Thu, 24 Jun 2010 18:54:47 +0000</lastBuildDate>
	<docs>http://backend.userland.com/rss092</docs>
	<language>en</language>
	
	<item>
		<title>Which CentOs am I running ?</title>
		<description><![CDATA[
&#91;root@dev ~&#93;# tail /etc/redhat-release
CentOS release 5.4 &#40;Final&#41;

]]></description>
		<link>http://micrub.info/2010/06/24/which-centos-am-i-running/</link>
			</item>
	<item>
		<title>Setting display size of linux guest on VirtualBox</title>
		<description><![CDATA[Recently I have initiated a jeos image with VirtualBox , after booting I had a small sized shell window , which wasn&#8217;t really friendly to use .
Basic installation of jeos dosn&#8217;t have any X related stuff installed so I have found that there is an option to set vga mode ( resolution and color depth [...]]]></description>
		<link>http://micrub.info/2010/04/05/setting-display-size-of-linux-guest-on-virtualbox/</link>
			</item>
	<item>
		<title>HowTo clear subclipse plugin for Eclipse IDE and subversion password on windows xp/vista</title>
		<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>
		<link>http://micrub.info/2009/04/14/howto-clear-subclipse-plugin-for-eclipse-ide-and-subversion-password-on-windows-xpvista/</link>
			</item>
	<item>
		<title>How to get first and last day of the month with php</title>
		<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>
		<link>http://micrub.info/2009/02/12/how-to-get-first-and-last-day-of-the-month-with-php/</link>
			</item>
	<item>
		<title>MD5 hash validation with PHP</title>
		<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>
		<link>http://micrub.info/2009/01/17/md5-hash-validation-with-php/</link>
			</item>
	<item>
		<title>Howto make pages controller like in CakePhp with Zend_Action_Controller</title>
		<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>
		<link>http://micrub.info/2009/01/05/howto-make-pages-controller-like-in-cakephp-with-zend_action_controller/</link>
			</item>
	<item>
		<title>Get powerful word processor with Ubuntu</title>
		<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>
		<link>http://micrub.info/2008/12/18/get-powerful-word-processor-with-ubuntu/</link>
			</item>
	<item>
		<title>HowTo: set sun&#8217;s java enabled on Ubuntu</title>
		<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>
		<link>http://micrub.info/2008/12/17/howto-set-suns-java-enabled-on-ubuntu/</link>
			</item>
	<item>
		<title>Send an email with Zend_Mail using Gmail&#8217;s smtp services</title>
		<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>
		<link>http://micrub.info/2008/09/22/sending-email-with-zend_mail-using-gmail-smtp-services/</link>
			</item>
</channel>
</rss>
