<?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>Deadly Technology &#187; Tips of the Week</title>
	<atom:link href="http://deadlytechnology.com/category/web-development-tips/feed/" rel="self" type="application/rss+xml" />
	<link>http://deadlytechnology.com</link>
	<description></description>
	<lastBuildDate>Thu, 26 Apr 2012 03:00:55 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.3</generator>
		<item>
		<title>Compare versions of a file in git</title>
		<link>http://deadlytechnology.com/web-development/compare-versions-file-in-git/</link>
		<comments>http://deadlytechnology.com/web-development/compare-versions-file-in-git/#comments</comments>
		<pubDate>Tue, 28 Sep 2010 06:21:42 +0000</pubDate>
		<dc:creator>frank</dc:creator>
				<category><![CDATA[Tips of the Week]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://deadlytechnology.com/?p=648</guid>
		<description><![CDATA[Super quick tip because I&#8217;m always forgetting &#8211; if you want to compare an older version of a file with the most recent version in your git repository: git difftool HEAD~50 path/to/file Just swap out 50 with the number of commits you want to go back. Install Meld if you want a great diff tool [...]<p>Post from: <a href="http://deadlytechnology.com">Deadly Technology</a> &copy;<br/><br/><a href="http://deadlytechnology.com/web-development/compare-versions-file-in-git/">Compare versions of a file in git</a></p>



More articles like this one:<ol><li><a href='http://deadlytechnology.com/windows-server/group-policy-file-system-and-registry-rights-not-applying/' rel='bookmark' title='Permanent Link: Group Policy File System and Registry Rights Not Applying'>Group Policy File System and Registry Rights Not Applying</a></li>
<li><a href='http://deadlytechnology.com/windows-server/resetting-default-file-permissions-on-windows-server-2003/' rel='bookmark' title='Permanent Link: Resetting default file permissions on Windows Server 2003'>Resetting default file permissions on Windows Server 2003</a></li>
</ol>]]></description>
		<wfw:commentRss>http://deadlytechnology.com/web-development/compare-versions-file-in-git/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>How to access array data from SilverStripe sessions easily</title>
		<link>http://deadlytechnology.com/silverstripe/silverstripe-sessions/</link>
		<comments>http://deadlytechnology.com/silverstripe/silverstripe-sessions/#comments</comments>
		<pubDate>Tue, 14 Sep 2010 02:28:07 +0000</pubDate>
		<dc:creator>frank</dc:creator>
				<category><![CDATA[SilverStripe]]></category>
		<category><![CDATA[Tips of the Week]]></category>

		<guid isPermaLink="false">http://deadlytechnology.com/?p=631</guid>
		<description><![CDATA[Its not evident from the SilverStripe documentation on sessions, but you can access nested array data from SilverStripe sessions using dot notation. If you save an array of data using the SilverStripe&#8217;s Session class: $myArrayOfValues = array&#40;'keyword'=&#62;'value'&#41;; Session::set&#40;'MyArrayOfValues', $myArrayOfValues&#41;; You can access and clear the &#8216;value&#8217; above specifically using something like: $valueFromSession = Session::get&#40;&#34;MyArrayOfValues.keyword&#34;&#41;; //Clear [...]<p>Post from: <a href="http://deadlytechnology.com">Deadly Technology</a> &copy;<br/><br/><a href="http://deadlytechnology.com/silverstripe/silverstripe-sessions/">How to access array data from SilverStripe sessions easily</a></p>
]]></description>
		<wfw:commentRss>http://deadlytechnology.com/silverstripe/silverstripe-sessions/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How to change the breadcrumb separator on SilverStripe</title>
		<link>http://deadlytechnology.com/web-development-tips/change-breadcrumb-separator/</link>
		<comments>http://deadlytechnology.com/web-development-tips/change-breadcrumb-separator/#comments</comments>
		<pubDate>Mon, 13 Sep 2010 01:04:27 +0000</pubDate>
		<dc:creator>frank</dc:creator>
				<category><![CDATA[SilverStripe]]></category>
		<category><![CDATA[Tips of the Week]]></category>

		<guid isPermaLink="false">http://deadlytechnology.com/?p=621</guid>
		<description><![CDATA[Quick tip to change the separator used by SilverStripe to separate the links of the breadcrumb. By default SilverStripe uses &#187; to separate breadcrumb links, in the SiteTree class there is a public static varaible called breadcrumbs_delimiter: /** * Delimit breadcrumb-links generated by BreadCrumbs() * * @var string */ public static $breadcrumbs_delimiter = &#34; &#38;raquo; [...]<p>Post from: <a href="http://deadlytechnology.com">Deadly Technology</a> &copy;<br/><br/><a href="http://deadlytechnology.com/web-development-tips/change-breadcrumb-separator/">How to change the breadcrumb separator on SilverStripe</a></p>



More articles like this one:<ol><li><a href='http://deadlytechnology.com/silverstripe/silverstripe-recaptcha/' rel='bookmark' title='Permanent Link: Silverstripe Captcha'>Silverstripe Captcha</a></li>
<li><a href='http://deadlytechnology.com/silverstripe/silverstripe-image-gallery/' rel='bookmark' title='Permanent Link: Silverstripe Image Gallery Tutorial'>Silverstripe Image Gallery Tutorial</a></li>
<li><a href='http://deadlytechnology.com/silverstripe/google-map-module/' rel='bookmark' title='Permanent Link: A better way to add google maps to SilverStripe pages'>A better way to add google maps to SilverStripe pages</a></li>
</ol>]]></description>
		<wfw:commentRss>http://deadlytechnology.com/web-development-tips/change-breadcrumb-separator/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Jquery Lightbox Not Working?</title>
		<link>http://deadlytechnology.com/web-development-tips/jquery-lightbox-not-working/</link>
		<comments>http://deadlytechnology.com/web-development-tips/jquery-lightbox-not-working/#comments</comments>
		<pubDate>Thu, 12 Aug 2010 16:17:09 +0000</pubDate>
		<dc:creator>frank</dc:creator>
				<category><![CDATA[Tips of the Week]]></category>

		<guid isPermaLink="false">http://deadlytechnology.com/?p=453</guid>
		<description><![CDATA[Had a struggle getting this jquery lightbox working recently, the solution for me was to alter the markup of the popup div because some divs were not closing correctly with /&#62;. Basically I had to replace this portion of code: /** * Create the jQuery lightBox plugin interface * * The HTML markup will be [...]<p>Post from: <a href="http://deadlytechnology.com">Deadly Technology</a> &copy;<br/><br/><a href="http://deadlytechnology.com/web-development-tips/jquery-lightbox-not-working/">Jquery Lightbox Not Working?</a></p>



More articles like this one:<ol><li><a href='http://deadlytechnology.com/web-development-tips/jquery-cakephp-tips/' rel='bookmark' title='Permanent Link: cakePHP saveall() and transactions, jQuery form plugin AJAX error handling'>cakePHP saveall() and transactions, jQuery form plugin AJAX error handling</a></li>
</ol>]]></description>
		<wfw:commentRss>http://deadlytechnology.com/web-development-tips/jquery-lightbox-not-working/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Call user function for magic method PHP</title>
		<link>http://deadlytechnology.com/web-development-tips/call-user-function-for-magic-method-php/</link>
		<comments>http://deadlytechnology.com/web-development-tips/call-user-function-for-magic-method-php/#comments</comments>
		<pubDate>Wed, 11 Aug 2010 10:42:29 +0000</pubDate>
		<dc:creator>frank</dc:creator>
				<category><![CDATA[Tips of the Week]]></category>

		<guid isPermaLink="false">http://deadlytechnology.com/?p=449</guid>
		<description><![CDATA[Put a bit of work into upgrading the blog and might as well make a quick post now. Heres a trick to test if a class variable exists, isset or has a particular value dynamically. Call the magic method __get() for the variable name which you can generate on the fly. For example, in SilverStripe [...]<p>Post from: <a href="http://deadlytechnology.com">Deadly Technology</a> &copy;<br/><br/><a href="http://deadlytechnology.com/web-development-tips/call-user-function-for-magic-method-php/">Call user function for magic method PHP</a></p>
]]></description>
		<wfw:commentRss>http://deadlytechnology.com/web-development-tips/call-user-function-for-magic-method-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>vnStat hack to measure data usage in a given billing cycle</title>
		<link>http://deadlytechnology.com/web-development-tips/vnstat-usage-billing-cycle/</link>
		<comments>http://deadlytechnology.com/web-development-tips/vnstat-usage-billing-cycle/#comments</comments>
		<pubDate>Wed, 09 Jun 2010 06:22:57 +0000</pubDate>
		<dc:creator>frank</dc:creator>
				<category><![CDATA[Tips of the Week]]></category>

		<guid isPermaLink="false">http://deadlytechnology.com/?p=425</guid>
		<description><![CDATA[I&#8217;m using vnStat to measure internet usage on my Ubuntu 10.04 laptop, coupled with the vnStat PHP frontend it works nicely. Only problem was the summaries of disk usage started at the beginning of the month (sensibly) and we get billed on the 23rd, which is when our month ticks over and we get a [...]<p>Post from: <a href="http://deadlytechnology.com">Deadly Technology</a> &copy;<br/><br/><a href="http://deadlytechnology.com/web-development-tips/vnstat-usage-billing-cycle/">vnStat hack to measure data usage in a given billing cycle</a></p>
]]></description>
		<wfw:commentRss>http://deadlytechnology.com/web-development-tips/vnstat-usage-billing-cycle/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Non capturing groups in Perl regular expressions</title>
		<link>http://deadlytechnology.com/web-development-tips/perl-regex/</link>
		<comments>http://deadlytechnology.com/web-development-tips/perl-regex/#comments</comments>
		<pubDate>Wed, 20 May 2009 03:22:22 +0000</pubDate>
		<dc:creator>frank</dc:creator>
				<category><![CDATA[Tips of the Week]]></category>

		<guid isPermaLink="false">http://deadlytechnology.com/?p=313</guid>
		<description><![CDATA[Non capturing groups are very handy, recently I was working on grabbing a portion of xml out of a document. After trying the PHP 5 xmlReader() class I opted for the quick and dirty Perl regular expressions for this script. Problem is with the dot/period operator . which matches any character except for newlines \n. [...]<p>Post from: <a href="http://deadlytechnology.com">Deadly Technology</a> &copy;<br/><br/><a href="http://deadlytechnology.com/web-development-tips/perl-regex/">Non capturing groups in Perl regular expressions</a></p>



More articles like this one:<ol><li><a href='http://deadlytechnology.com/web-development-tips/ie-on-ubuntu/' rel='bookmark' title='Permanent Link: Don&#8217;t install IE on Ubuntu 8.04'>Don&#8217;t install IE on Ubuntu 8.04</a></li>
</ol>]]></description>
		<wfw:commentRss>http://deadlytechnology.com/web-development-tips/perl-regex/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Blackberry 8800 html checkbox issues</title>
		<link>http://deadlytechnology.com/web-development-tips/blackberry-8800/</link>
		<comments>http://deadlytechnology.com/web-development-tips/blackberry-8800/#comments</comments>
		<pubDate>Mon, 30 Mar 2009 13:49:41 +0000</pubDate>
		<dc:creator>frank</dc:creator>
				<category><![CDATA[Tips of the Week]]></category>
		<category><![CDATA[8800]]></category>
		<category><![CDATA[blackberry]]></category>
		<category><![CDATA[bug]]></category>

		<guid isPermaLink="false">http://deadlytechnology.com/?p=264</guid>
		<description><![CDATA[This was such a mission to fix, it deserves a post. Starting with a very basic login page using standard html form elements, a couple of text inputs for username and password, a checkbox to accept terms and conditions and a submit button. The login system would work fine on very early blackberries version 3.7.0 [...]<p>Post from: <a href="http://deadlytechnology.com">Deadly Technology</a> &copy;<br/><br/><a href="http://deadlytechnology.com/web-development-tips/blackberry-8800/">Blackberry 8800 html checkbox issues</a></p>
]]></description>
		<wfw:commentRss>http://deadlytechnology.com/web-development-tips/blackberry-8800/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Fix Eclipse crashing on Ubuntu 8.04</title>
		<link>http://deadlytechnology.com/web-development-tips/eclipse-crashing-ubuntu/</link>
		<comments>http://deadlytechnology.com/web-development-tips/eclipse-crashing-ubuntu/#comments</comments>
		<pubDate>Wed, 28 Jan 2009 21:37:50 +0000</pubDate>
		<dc:creator>frank</dc:creator>
				<category><![CDATA[Tips of the Week]]></category>

		<guid isPermaLink="false">http://deadlytechnology.com/?p=206</guid>
		<description><![CDATA[I&#8217;ve had some problems with Eclipse 3.3, Ubuntu 8.04 and Java JVM 1.6, just crashing mostly. There are a slew of fixes out there, but this simple fix has seemed to work so far&#8230; Edit eclipse.ini to explicitly add details for the vm Eclipse needs to use: -vm /usr/lib/jvm/java-6-openjdk/bin/java HTH. Post from: Deadly Technology &#169;Fix [...]<p>Post from: <a href="http://deadlytechnology.com">Deadly Technology</a> &copy;<br/><br/><a href="http://deadlytechnology.com/web-development-tips/eclipse-crashing-ubuntu/">Fix Eclipse crashing on Ubuntu 8.04</a></p>



More articles like this one:<ol><li><a href='http://deadlytechnology.com/web-development-tips/ie-on-ubuntu/' rel='bookmark' title='Permanent Link: Don&#8217;t install IE on Ubuntu 8.04'>Don&#8217;t install IE on Ubuntu 8.04</a></li>
</ol>]]></description>
		<wfw:commentRss>http://deadlytechnology.com/web-development-tips/eclipse-crashing-ubuntu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to switch off compiz and keep your settings</title>
		<link>http://deadlytechnology.com/web-development-tips/save-compiz-settings-ubunt/</link>
		<comments>http://deadlytechnology.com/web-development-tips/save-compiz-settings-ubunt/#comments</comments>
		<pubDate>Fri, 19 Dec 2008 19:08:47 +0000</pubDate>
		<dc:creator>frank</dc:creator>
				<category><![CDATA[Tips of the Week]]></category>
		<category><![CDATA[compiz]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://deadlytechnology.com/?p=163</guid>
		<description><![CDATA[I was noticing some flickering watching dvds on Ubuntu 8.04 whilst running compiz. The flickering was even worse on those rare occassions I play a game. All this flickering went away when I disabled compiz, however, when enabling compiz again all the settings had been reset to defaults which was really annoying! Here is the [...]<p>Post from: <a href="http://deadlytechnology.com">Deadly Technology</a> &copy;<br/><br/><a href="http://deadlytechnology.com/web-development-tips/save-compiz-settings-ubunt/">How to switch off compiz and keep your settings</a></p>
]]></description>
		<wfw:commentRss>http://deadlytechnology.com/web-development-tips/save-compiz-settings-ubunt/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

