<?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>PHP and Unix tips</title>
	<atom:link href="http://www.fordnox.com/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.fordnox.com/blog</link>
	<description>Web developer for web developers</description>
	<lastBuildDate>Mon, 21 Mar 2011 16:00:14 +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>Dual monitors issue</title>
		<link>http://www.fordnox.com/blog/2011/03/dual-monitors-issue/</link>
		<comments>http://www.fordnox.com/blog/2011/03/dual-monitors-issue/#comments</comments>
		<pubDate>Thu, 17 Mar 2011 12:41:50 +0000</pubDate>
		<dc:creator>Andrius</dc:creator>
				<category><![CDATA[Life]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://www.fordnox.com/blog/2011/03/dual-monitors-issue/</guid>
		<description><![CDATA[I was having trouble with dual monitors and &#8220;Make default&#8221; button. Thanks to http://www.thetechrepo.com/main-articles/502-how-to-change-the-primary-monitor-in-ubuntu-or-other-linux-distributions Short code: xrandr &#8211;output HDMI2 &#8211;primary]]></description>
		<wfw:commentRss>http://www.fordnox.com/blog/2011/03/dual-monitors-issue/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Ubuntu and Apple Keyboard</title>
		<link>http://www.fordnox.com/blog/2011/02/ubuntu-and-apple-keyboard/</link>
		<comments>http://www.fordnox.com/blog/2011/02/ubuntu-and-apple-keyboard/#comments</comments>
		<pubDate>Tue, 22 Feb 2011 13:46:24 +0000</pubDate>
		<dc:creator>Andrius</dc:creator>
				<category><![CDATA[Life]]></category>
		<category><![CDATA[ubuntu apple]]></category>

		<guid isPermaLink="false">http://www.fordnox.com/blog/2011/02/ubuntu-and-apple-keyboard/</guid>
		<description><![CDATA[Fix apple keyboard functional buttons. Add this line to start up script /etc/rc.local sudo nano /etc/rc.local echo 2 > /sys/module/hid_apple/parameters/fnmode]]></description>
		<wfw:commentRss>http://www.fordnox.com/blog/2011/02/ubuntu-and-apple-keyboard/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ubuntu notify about work timeout</title>
		<link>http://www.fordnox.com/blog/2010/10/ubuntu-notify-about-work-timeout/</link>
		<comments>http://www.fordnox.com/blog/2010/10/ubuntu-notify-about-work-timeout/#comments</comments>
		<pubDate>Fri, 08 Oct 2010 12:23:10 +0000</pubDate>
		<dc:creator>Andrius</dc:creator>
				<category><![CDATA[Life]]></category>

		<guid isPermaLink="false">http://www.fordnox.com/blog/?p=342</guid>
		<description><![CDATA[As a non smoker i need to rest my eyes once in an hour. So here is a method to remind me, that the time has come You will need Notification library for ubuntu sudo apt-get install libnotify-bin And a script is, to run every 10th minute of an hour: timeout.sh #!/bin/bash if [ $(date [...]]]></description>
		<wfw:commentRss>http://www.fordnox.com/blog/2010/10/ubuntu-notify-about-work-timeout/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Facebook oAuth adapter for Zend Framework</title>
		<link>http://www.fordnox.com/blog/2010/09/facebook-oauth-adapter-for-zend-framework/</link>
		<comments>http://www.fordnox.com/blog/2010/09/facebook-oauth-adapter-for-zend-framework/#comments</comments>
		<pubDate>Tue, 14 Sep 2010 10:09:19 +0000</pubDate>
		<dc:creator>Andrius</dc:creator>
				<category><![CDATA[Life]]></category>
		<category><![CDATA[zend]]></category>

		<guid isPermaLink="false">http://www.fordnox.com/blog/2010/09/facebook-oauth-adapter-for-zend-framework/</guid>
		<description><![CDATA[Check this out. I am releasing Zend_Auth_Adapter_Facebook on github http://github.com/fordnox/Zend_Auth_Adapter_Facebook]]></description>
		<wfw:commentRss>http://www.fordnox.com/blog/2010/09/facebook-oauth-adapter-for-zend-framework/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>Hide password with jQuery</title>
		<link>http://www.fordnox.com/blog/2010/03/hide-password-with-jquery/</link>
		<comments>http://www.fordnox.com/blog/2010/03/hide-password-with-jquery/#comments</comments>
		<pubDate>Fri, 19 Mar 2010 22:42:32 +0000</pubDate>
		<dc:creator>Andrius</dc:creator>
				<category><![CDATA[Life]]></category>
		<category><![CDATA[jQuery]]></category>

		<guid isPermaLink="false">http://www.fordnox.com/blog/?p=322</guid>
		<description><![CDATA[Simple javascript to toggle password visibility Your HTML structure nneded for this to work is as simple as: my_secret_password Add javascript $(function() { /** * Hide password with bulets and make it toggle */ $("div.password").contents().wrap('&#60;span class="pass" /&#62;'); $('span.pass').before('&#60;span class="bullets"&#62;&#38;bull;&#38;bull;&#38;bull;&#38;bull;&#60;/span&#62;').hide(); $("div.password").click(function(){ $('span.pass',this).toggle(); $('span.bullets',this).toggle(); }); }); And the result is: my_secret_password // < ![CDATA[ jQuery(function() { /** [...]]]></description>
		<wfw:commentRss>http://www.fordnox.com/blog/2010/03/hide-password-with-jquery/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Payment Gateways Sandboxes</title>
		<link>http://www.fordnox.com/blog/2010/02/payment-gateways-sandboxes/</link>
		<comments>http://www.fordnox.com/blog/2010/02/payment-gateways-sandboxes/#comments</comments>
		<pubDate>Wed, 10 Feb 2010 10:04:21 +0000</pubDate>
		<dc:creator>Andrius</dc:creator>
				<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://www.fordnox.com/blog/?p=315</guid>
		<description><![CDATA[PayPal: Both for buyer and seller https://developer.paypal.com Authorize.net For seller: http://developer.authorize.net/testaccount/ Google Checkout: For buyer: https://sandbox.google.com/checkout For seller https://sandbox.google.com/checkout/sell 2Checkout: http://developers.2checkout.com/]]></description>
		<wfw:commentRss>http://www.fordnox.com/blog/2010/02/payment-gateways-sandboxes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Default Zend Framework Layout</title>
		<link>http://www.fordnox.com/blog/2010/01/default-zend-framework-layout/</link>
		<comments>http://www.fordnox.com/blog/2010/01/default-zend-framework-layout/#comments</comments>
		<pubDate>Sun, 10 Jan 2010 16:46:58 +0000</pubDate>
		<dc:creator>Andrius</dc:creator>
				<category><![CDATA[Life]]></category>
		<category><![CDATA[zend framework]]></category>

		<guid isPermaLink="false">http://www.fordnox.com/blog/?p=309</guid>
		<description><![CDATA[&#60; ?php echo $this-&#62;doctype() ?&#62; &#60;html&#62; &#60;head&#62; &#60; ?php echo $this-&#62;headTitle() ?&#62; &#60; ?php echo $this-&#62;headLink() ?&#62; &#60; ?php echo $this-&#62;headStyle() ?&#62; &#60;/head&#62; &#60;body&#62; &#60; ?php echo $this-&#62;layout()-&#62;content ?&#62; &#60; ?php echo $this-&#62;headScript() ?&#62; &#60;/body&#62; &#60;/html&#62;]]></description>
		<wfw:commentRss>http://www.fordnox.com/blog/2010/01/default-zend-framework-layout/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ubuntu notify message</title>
		<link>http://www.fordnox.com/blog/2009/12/ubuntu-notify-message/</link>
		<comments>http://www.fordnox.com/blog/2009/12/ubuntu-notify-message/#comments</comments>
		<pubDate>Tue, 15 Dec 2009 23:07:49 +0000</pubDate>
		<dc:creator>Andrius</dc:creator>
				<category><![CDATA[Life]]></category>
		<category><![CDATA[tip]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://www.fordnox.com/blog/?p=302</guid>
		<description><![CDATA[Little useful Ubuntu terminal command: notify-send "Computer Says" "Hi"]]></description>
		<wfw:commentRss>http://www.fordnox.com/blog/2009/12/ubuntu-notify-message/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Php Under Control on Ubuntu</title>
		<link>http://www.fordnox.com/blog/2009/12/php-under-control-on-ubuntu/</link>
		<comments>http://www.fordnox.com/blog/2009/12/php-under-control-on-ubuntu/#comments</comments>
		<pubDate>Tue, 15 Dec 2009 22:54:41 +0000</pubDate>
		<dc:creator>Andrius</dc:creator>
				<category><![CDATA[Life]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://www.fordnox.com/blog/?p=289</guid>
		<description><![CDATA[Install Java sudo apt-get install sun-java6-jre sun-java6-plugin sun-java6-fonts Test Java java -version Create SymLink sudo ln -s /usr/bin/java /bin/java Install Cruise Control cd /opt Download Cruise Control binary files at http://sourceforge.net/projects/cruisecontrol/files/CruiseControl/2.8.2/ or directly sudo wget http://mesh.dl.sourceforge.net/project/cruisecontrol/CruiseControl/2.8.2/cruisecontrol-bin-2.8.2.zip Unzip Cruise Control sudo unzip cruisecontrol-bin-2.8.2.zip -d /opt Create SymLink sudo ln -s /opt/cruisecontrol-bin-2.8.2 /opt/cruisecontrol Start CruiseControl /opt/cruisecontrol/cruisecontrol.sh The [...]]]></description>
		<wfw:commentRss>http://www.fordnox.com/blog/2009/12/php-under-control-on-ubuntu/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>No video on Ubuntu with dual monitors</title>
		<link>http://www.fordnox.com/blog/2009/12/no-video-ubuntu-dual-monitor/</link>
		<comments>http://www.fordnox.com/blog/2009/12/no-video-ubuntu-dual-monitor/#comments</comments>
		<pubDate>Tue, 15 Dec 2009 22:52:57 +0000</pubDate>
		<dc:creator>Andrius</dc:creator>
				<category><![CDATA[Life]]></category>
		<category><![CDATA[tip]]></category>
		<category><![CDATA[ubutnu]]></category>

		<guid isPermaLink="false">http://www.fordnox.com/blog/2009/12/no-video-ubuntu/</guid>
		<description><![CDATA[I had trouble with my Dual monitors and video. No matter what player i usede it just showed black screen. So the solution is: Alt +F2 enter: gstreamer-properties Then Video tab > Output and choose X Windows System (No Xv) Restart and give a try to video player.]]></description>
		<wfw:commentRss>http://www.fordnox.com/blog/2009/12/no-video-ubuntu-dual-monitor/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
	</channel>
</rss>

