<?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>Development Cycle</title>
	<atom:link href="http://www.development-cycle.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.development-cycle.com</link>
	<description>Binary Bits &#38; Pieces</description>
	<lastBuildDate>Sat, 19 Dec 2009 01:58:17 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>Wordpress 2.9.0 Is Here!</title>
		<link>http://www.development-cycle.com/2009/12/wordpress-2-9-0-is-here/</link>
		<comments>http://www.development-cycle.com/2009/12/wordpress-2-9-0-is-here/#comments</comments>
		<pubDate>Sat, 19 Dec 2009 01:58:17 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Open Source]]></category>

		<guid isPermaLink="false">http://www.development-cycle.com/?p=231</guid>
		<description><![CDATA[
The 2.9.0 version of Wordpress has been released some of the main new features include:

A &#8220;trash bin&#8221; feature, allow the restoration of deleted comments or posts.
Built in image editor, forget Photoshop! You can now scale, flip, rotate images directly in Wordpress.
Easier embedding of video, just post the URL and Wordpress will generate the embed code [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.development-cycle.com/wp-content/uploads/2009/12/wordpress-logo.png" alt="wordpress-logo" title="wordpress-logo" width="150" height="93" class="alignright size-full wp-image-232" />
<p>The 2.9.0 version of Wordpress has been released some of the main new features include:</p>
<ul>
<li>A &#8220;trash bin&#8221; feature, allow the restoration of deleted comments or posts.</li>
<li>Built in image editor, forget Photoshop! You can now scale, flip, rotate images directly in Wordpress.</li>
<li>Easier embedding of video, just post the URL and Wordpress will generate the embed code on its own.</li>
<li>Multiple updating of plug-ins, forget the days of having to go through and update each plug-in one by one.</li>
</ul>
<p>Plus much more the 2.9 release of Wordpress incorporates over <a rel="nofollow" target="_blank" href="http://core.trac.wordpress.org/query?status=closed&#038;milestone=2.9">500 tickets for bugs and enhancements</a>.</p>
<p>So what are you waiting for <a rel="nofollow" target="_blank" href="http://wordpress.org/download/">download</a> it now here!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.development-cycle.com/2009/12/wordpress-2-9-0-is-here/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Setting Up PowerDNS With A MySQL Backend On Ubuntu 9.10</title>
		<link>http://www.development-cycle.com/2009/12/setting-up-powerdns-with-a-mysql-backend-on-ubuntu-9-10/</link>
		<comments>http://www.development-cycle.com/2009/12/setting-up-powerdns-with-a-mysql-backend-on-ubuntu-9-10/#comments</comments>
		<pubDate>Tue, 01 Dec 2009 02:21:39 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Sysadmin]]></category>
		<category><![CDATA[DNS]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[PowerDNS]]></category>
		<category><![CDATA[Replication]]></category>

		<guid isPermaLink="false">http://www.development-cycle.com/?p=201</guid>
		<description><![CDATA[Bind9 has treated us well over the years, but its lack of support for database back ends in a default install is very annoying, especially when an application needs to control DNS  services dynamically. PowerDNS is a powerful alternative it supports a wide variety of back ends and can also be configured to serve [...]]]></description>
			<content:encoded><![CDATA[<p>Bind9 has treated us well over the years, but its lack of support for database back ends in a default install is very annoying, especially when an application needs to control DNS  services dynamically. PowerDNS is a powerful alternative it supports a wide variety of back ends and can also be configured to serve different records dependant on the clients Geographical location making it a valuable asset in these coming days of private clouds gaining traction.</p>
<p>This article will walk you through the process of setting up a PowerDNS server with a replicated MySQL back end on two Ubuntu 9.10 systems.</p>
<h2>Step 1 &#8211; Configuring the Master Nameserver</h2>
<p>This nameserver is going to be your primary server, any changes that need to be made to the DNS records are made on this server and they will be replicated on the the slave. To get started log into your primary name server via SSH and execute:</p>
<p><i><br />
apt-get update<br />
apt-get install apt-get install pdns-server pdns-backend-mysql mysql-server<br />
</i></p>
<p>When prompted by the installer create a password for the MySQL root user and then configure the MySQL service itself:</p>
<p><i>pico /etc/mysql/my.cnf</i></p>
<p>Go down to line 53, it should look like the line below comment it out.</p>
<p><i>bind-address  = 127.0.0.1 </i> <strong><- becomes -></strong> <i># bind-address  = 127.0.0.1 </i></p>
<p>This is needed so the slave server can talk to the master and be aware of any changes made to its records. Save the file, then restart the MySQL service to make your changes active.</p>
<p><i>/etc/init.d/mysql restart</i></p>
<p>Okay now its time to sort out the database side of things by creating a MySQL user for PowerDNS to use and the database for the storage of its DNS records:</p>
<p><i>mysql -u root -p</i></p>
<p>Whilst in the MySQL client execute the following commands:</p>
<p><i>CREATE DATABASE dns_server;</i></p>
<p><i>GRANT ALL ON dns_server.* TO &#8216;pdns&#8217;@'localhost&#8217; IDENTIFIED BY &#8216;pdns_pass&#8217;;</i></p>
<p><strong>NOTE:</strong> Be sure to change the password for the pdns user to something a tad stronger.</p>
<p><i>GRANT ALL ON dns_server.* TO &#8216;pdns&#8217;@'localhost.localdomain&#8217; IDENTIFIED BY &#8216;pdns_pass&#8217;;</i></p>
<p><i>FLUSH PRIVILEGES;</i></p>
<p><i>USE dns_server;</i></p>
<p><i>CREATE TABLE domains (<br />
id INT auto_increment,<br />
name VARCHAR(255) NOT NULL,<br />
master VARCHAR(128) DEFAULT NULL,<br />
last_check INT DEFAULT NULL,<br />
type VARCHAR(6) NOT NULL,<br />
notified_serial INT DEFAULT NULL,<br />
account VARCHAR(40) DEFAULT NULL,<br />
primary key (id)<br />
);</i></p>
<p><i>CREATE UNIQUE INDEX name_index ON domains(name);</i></p>
<p><i>CREATE TABLE records (<br />
id INT auto_increment,<br />
domain_id INT DEFAULT NULL,<br />
name VARCHAR(255) DEFAULT NULL,<br />
type VARCHAR(6) DEFAULT NULL,<br />
content VARCHAR(255) DEFAULT NULL,<br />
ttl INT DEFAULT NULL,<br />
prio INT DEFAULT NULL,<br />
change_date INT DEFAULT NULL,<br />
primary key(id)<br />
);</i></p>
<p><i>CREATE INDEX rec_name_index ON records(name);</i><br />
<i>CREATE INDEX nametype_index ON records(name,type);</i><br />
<i>CREATE INDEX domain_id ON records(domain_id);</i><br />
<i><br />
CREATE TABLE supermasters (<br />
ip VARCHAR(25) NOT NULL,<br />
nameserver VARCHAR(255) NOT NULL,<br />
account VARCHAR(40) DEFAULT NULL<br />
);</i></p>
<p>Then exit the MySQL client with the command:</p>
<p><i>exit;</i></p>
<p>Alternatively if you don&#8217;t feel that comfortable using the command line MySQL client you could install phpmyadmin and use that to create the database and user within web based environment.</p>
<p>Now that the database has been setup we need to configure PowerDNS to use our newly created MySQL database and user for any lookups it needs to make.</p>
<p><i>pico /etc/powerdns/pdns.conf</i></p>
<p>Go down to line 82 or thereabouts and find the line:</p>
<p><i># launch=</i></p>
<p>Uncomment this line and modify so that it reads:</p>
<p><i>launch=gmysql </i></p>
<p>Edit the file /etc/powerdns/pdns.d/pdns.local</p>
<p>:</p>
<p><i>pico ﻿ /etc/powerdns/pdns.d/pdns.local</i></p>
<p>Add the following lines so that PowerDNS can connect with the MySQL service. </p>
<p><i>gmysql-host=127.0.0.1</i><br />
<i>gmysql-user=pdns</i><br />
<i>gmysql-password=pdns_pass</i><br />
<i>gmysql-dbname=dns_server</i></p>
<p>Save the file and its show time, just restart the PowerDNS service for your changes to take effect and the DNS side of your server should be good to go!</p>
<p><i>/etc/init.d/pdns restart</i></p>
<h2>Step 2 &#8211; Setting up PowerAdmin</h2>
<p>Okay its working but not very useful at the present, as it has no DNS records to serve. So lets install PowerAdmin so we can manage our DNS records using a web based interface. I am assuming the server you are working on already has Apache2, PHP and its modules installed already. If this is not the case you will need to install these before continuing as they are required for the operation PowerAdmin.</p>
<p>PowerAdmin also requires the mdb2 module to work properly, which i doubt many people will have installed already. So:</p>
<p><i>apt-get install php-mdb2-driver-mysql </i></p>
<p>Or on some older versions of Ubuntu it wont be in the repository so make sure you have PEAR installed and</p>
<p><i>apt-get install php-pear</i><br />
<i>pear install MDB2-2.5.0b2</i><br />
<i>pear install MDB2_Driver_mysql-1.5.0b2</i></p>
<p>Then continue the poweradmin install with:</p>
<p><i>cd /tmp</i><br />
<i>wget https://www.poweradmin.org/download/poweradmin-2.1.3.tgz</i><br />
<i>tar zxvf poweradmin-2.1.3.tgz</i><br />
<i>mv poweradmin-2.1.3 /var/www/poweradmin</i><br />
<i>cd /var/www/poweradmin</i></p>
<p>Now the code base is in place open your browser and point it at the Poweradmin location to continue the install process e.g <i>http://ns1.mydomain.com/poweradmin/install</i></p>
<p>Follow the install instructions and when you reach step 6 of the install process copy the PHP code displayed on screen, go back to your terminal window create the file:</p>
<p><i>pico /var/www/poweradmin/inc/config.inc.php</i></p>
<p>Then paste the code from the browser window into the new file and save.</p>
<p><strong>NOTE:</strong> The browser gives you the code with white space between some of the lines make sure these have been removed before saving the file. Otherwise after logging in you will be greeted by a &#8220;<strong>Warning: Cannot modify header information</strong>&#8221; PHP error.</p>
<p>Step 7 is the last step of the install process and simply asks you to delete the install directory. If you fail to complete this step,  the program will not let you login!</p>
<p><i>rm -rf /var/www/poweradmin/install</i></p>
<p>The operation of PowerAdmin is pretty straight forward although if you have only used Bind in the past you may find some of the terms a little confusing. A quick look at the <a href="http://www.powerdns.com/en/documentation.aspx" target="_blank" rel="nofollow">PowerDNS documentation</a> should point you in the right direction though.</p>
<h2>Step 3 &#8211; Replicating Changes on the Slave Server</h2>
<p>Log in to the server you will be using as your MySQL slave. Update the repositories and then install the MySQL server application:</p>
<p><em>apt-get update</em><br />
<em>apt-get install mysql-server</em></p>
<p>On your master server edit the <em>/etc/mysql/my.cnf</em> file go down to around line 92. Uncomment and modify the lines that regard replication so they resemble:</p>
<p><em>server-id               = 1</em><br />
<em>log_bin                 = /var/log/mysql/mysql-bin.log</em><br />
<em>expire_logs_days        = 10</em><br />
<em>max_binlog_size         = 100M</em><br />
<em>binlog_do_db            = dns_server</em></p>
<p>Save your changes to the file and then open up the MySQL client to create a new user for the replication process:</p>
<p><em>﻿CREATE USER &#8216;replication_user&#8217;@'192.168.0.2&#8242; IDENTIFIED BY &#8216;mypassword&#8217;;</em></p>
<p><em> GRANT REPLICATION SLAVE ON * . * TO &#8216;replication_user&#8217;@'192.168.0.2&#8242; IDENTIFIED BY &#8216;mypassword&#8217;;</em></p>
<p><strong>NOTE:</strong> replace the IP address &#8216;<em>192&#8242;.168.0.2</em>&#8216; with the IP of your slave server, and change the password to something a bit stronger than &#8216;<em>mypassword</em>&#8216;</p>
<p>Now edit the <em>/etc/mysql/my.cnf</em> file of your slave server and append the following lines after the [mysqld] declaration so that the slave can connect to its master:</p>
<p><em>﻿server-id=2</em><br />
<em>master-host = 192.168.0.1</em><br />
<em>master-user = replication_user</em><br />
<em>master-password = mypassword</em><br />
<em>master-port = 3306</em></p>
<p>Be sure to change the ip address of the master server and the users password to match your setup. Save the file and restart the MySQL service on both the Master and Slave nodes so that your changes will take effect.</p>
<p>On the slave now use the <em>mysql</em> command line tool and execute the following commands:
<p><em>start slave;</em><br />
<em>show slave status\G;</em></p>
<p>You you should see something like:</p>
<p><em><br />
*************************** 1. row ***************************<br />
             Slave_IO_State: Waiting for master to send event<br />
                Master_Host: 192.168.0.1<br />
                Master_User: replication_user<br />
                Master_Port: 3306<br />
              Connect_Retry: 60<br />
            Master_Log_File: mysqld-bin.000001<br />
        Read_Master_Log_Pos: 98<br />
             Relay_Log_File: mysqld-relay-bin.000002<br />
              Relay_Log_Pos: 236<br />
      Relay_Master_Log_File: mysqld-bin.000001<br />
           Slave_IO_Running: Yes<br />
          Slave_SQL_Running: Yes<br />
            Replicate_Do_DB:<br />
        Replicate_Ignore_DB:<br />
         Replicate_Do_Table:<br />
     Replicate_Ignore_Table:<br />
    Replicate_Wild_Do_Table:<br />
Replicate_Wild_Ignore_Table:<br />
                 Last_Errno: 0<br />
                 Last_Error:<br />
               Skip_Counter: 0<br />
        Exec_Master_Log_Pos: 98<br />
            Relay_Log_Space: 236<br />
            Until_Condition: None<br />
             Until_Log_File:<br />
              Until_Log_Pos: 0<br />
         Master_SSL_Allowed: No<br />
         Master_SSL_CA_File:<br />
         Master_SSL_CA_Path:<br />
            Master_SSL_Cert:<br />
          Master_SSL_Cipher:<br />
             Master_SSL_Key:<br />
      Seconds_Behind_Master: 0<br />
1 row in set (0.00 sec)</em></p>
<p>Now test it by creating a record on the master and with any luck you will also be able to see it on the slave. That said i stuffed around a bit when setting mine up and the slave service wouldn&#8217;t start as it was looking for the wrong bin file on the master. I was able to <a rel="nofollow" target="_blank" href="http://forums.mysql.com/read.php?26,94292,134637#msg-134637">follow these instructions</a> though to point the slave in the right direction to get it working again.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.development-cycle.com/2009/12/setting-up-powerdns-with-a-mysql-backend-on-ubuntu-9-10/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Zend Framework 1.9.6</title>
		<link>http://www.development-cycle.com/2009/11/zend-framework-1-9-6/</link>
		<comments>http://www.development-cycle.com/2009/11/zend-framework-1-9-6/#comments</comments>
		<pubDate>Wed, 25 Nov 2009 12:23:26 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Zend Framework]]></category>

		<guid isPermaLink="false">http://www.development-cycle.com/?p=197</guid>
		<description><![CDATA[Zend Framework 1.9.6 has been released today with over 60 bug fixed included, most of which where found during the bug hunt days last week. The official Zend Framework site reports this release is planned to be the last before the 1.10.0 release.
The new release can be downloaded here, and a full list of the [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-198" title="zf_logo_white" src="http://www.development-cycle.com/wp-content/uploads/2009/11/zf_logo_white.jpg" alt="zf_logo_white" width="130" height="58" />Zend Framework 1.9.6 has been released today with over 60 bug fixed included, most of which where found during the bug hunt days last week. The official Zend Framework site reports this release is planned to be the last before the 1.10.0 release.</p>
<p>The new release can be downloaded <a rel="nofollow" href="http://framework.zend.com/download/latest" target="_blank">here</a>, and a full list of the changes in this release the <a href="http://framework.zend.com/changelog/1.9.6" target="_blank" rel="nofollow">change log can be found here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.development-cycle.com/2009/11/zend-framework-1-9-6/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Firediff For Tracking DOM Changes</title>
		<link>http://www.development-cycle.com/2009/07/node/194/</link>
		<comments>http://www.development-cycle.com/2009/07/node/194/#comments</comments>
		<pubDate>Thu, 02 Jul 2009 14:59:03 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<guid isPermaLink="false"></guid>
		<description><![CDATA[<p>A major problem with developing AJAX applications is trying to follow data flowing back and forth between the server and client and the changes being made to the DOM.</p>]]></description>
			<content:encoded><![CDATA[<p>A major problem with developing AJAX applications is trying to follow data flowing back and forth between the server and client and the changes being made to the DOM.</p>
<p>Enter <a href="http://www.incaseofstairs.com/firediff/" target="_blank" title="Firediff track changes to the DOM">FireDiff</a> to ease the pain! Firediff is an extension for <a href="http://getfirebug.com/" target="_blank" title="Firebug Development Extension">Firebug</a> that adds a change monitor, logging all changes made to the CSS and DOM. Which makes it a must for most web developers, FireDiff requires Firebug 1.4 or higher to work, and you can find the latest version to install from <a href="http://www.incaseofstairs.com/download/firediff/" target="_blank" title="FireDiff DOM tracker Download">http://www.incaseofstairs.com/download/firediff/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.development-cycle.com/2009/07/node/194/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Online Games to be banned in Australia</title>
		<link>http://www.development-cycle.com/2009/06/node/192/</link>
		<comments>http://www.development-cycle.com/2009/06/node/192/#comments</comments>
		<pubDate>Thu, 25 Jun 2009 23:36:17 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<guid isPermaLink="false"></guid>
		<description><![CDATA[<p>Everyone's favorite communications minister Stephen Conroy today confirmed what had long been suspected. That under the new filtering regime online "adult" games of those perceived to have adult elements such as Second Life will be banned in Australia.</p>
<p>This will apply to all flash games, downloadable games and sites that sell games that do not meet Australia's limited MA 15+ classification.</p>]]></description>
			<content:encoded><![CDATA[<p>Everyone&#8217;s favorite communications minister Stephen Conroy today confirmed what had long been suspected. That under the new filtering regime online &#8220;adult&#8221; games of those perceived to have adult elements such as Second Life will be banned in Australia.</p>
<p>This will apply to all flash games, downloadable games and sites that sell games that do not meet Australia&#8217;s limited MA 15+ classification.</p>
<p>Shameful! Read the <a href="http://www.inquisitr.com/27288/confirmed-second-life-online-adult-games-to-banned-outright-in-australia/" title="Adult Games to be banned throughout Australia">full story here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.development-cycle.com/2009/06/node/192/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google opens up internal speed tool</title>
		<link>http://www.development-cycle.com/2009/06/node/189/</link>
		<comments>http://www.development-cycle.com/2009/06/node/189/#comments</comments>
		<pubDate>Fri, 05 Jun 2009 12:46:38 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<guid isPermaLink="false"></guid>
		<description><![CDATA[<p>The loading time of a webpage is crucial it can mean the difference between a user staying to enjoy your content or heading to a competing site to find the information they are after.</p>
<p>Google up until today has been using an in house tool called "Page Speed", similiar to the Yahoo Y-Slow plugin to aid developers.</p>
<p>Today <a href="http://code.google.com/speed/page-speed/" target="_blank" title="Google Page Speed Tool">Google has released the tool</a> to the developer community for download and use to optimize the loading time of their own sites.</p>]]></description>
			<content:encoded><![CDATA[<p>The loading time of a webpage is crucial it can mean the difference between a user staying to enjoy your content or heading to a competing site to find the information they are after.</p>
<p>Google up until today has been using an in house tool called &#8220;Page Speed&#8221;, similiar to the Yahoo Y-Slow plugin to aid developers.</p>
<p>Today <a href="http://code.google.com/speed/page-speed/" target="_blank" title="Google Page Speed Tool">Google has released the tool</a> to the developer community for download and use to optimize the loading time of their own sites.</p>
<p>Quote from the Google blog:</p>
<p> </p>
<p> </p>
<p><em><span class="Apple-style-span" style="border-collapse: separate; font-size: 13px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 19px; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; font-family: 'Lucida Grande'; color: #5d5d5d;">For example, Page Speed automatically optimizes images for you, giving you a compressed image that you can use immediately on your web site. It also identifies issues such as JavaScript and CSS loaded by your page that wasn’t actually used to display the page, which can help reduce time your users spend waiting for the page to download and display.</span></em></p>
]]></content:encoded>
			<wfw:commentRss>http://www.development-cycle.com/2009/06/node/189/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Client Negotiations</title>
		<link>http://www.development-cycle.com/2009/06/node/188/</link>
		<comments>http://www.development-cycle.com/2009/06/node/188/#comments</comments>
		<pubDate>Thu, 04 Jun 2009 22:33:52 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<guid isPermaLink="false"></guid>
		<description><![CDATA[<p>If you have ever done any freelancing or run your own business you have no doubt come across clients like this. For some reason they won't pay full fare but want full service and will hound you relentlessly for not allowing them to screw you over if you try and walk away!</p>]]></description>
			<content:encoded><![CDATA[<p>If you have ever done any freelancing or run your own business you have no doubt come across clients like this. For some reason they won&#8217;t pay full fare but want full service and will hound you relentlessly for not allowing them to screw you over if you try and walk away!</p>
<p>
<object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/R2a8TRSgzZY&amp;color1=0xe1600f&amp;color2=0xfebd01&amp;hl=en&amp;feature=player_embedded&amp;fs=1" /><param name="allowFullScreen" value="true" /><embed type="application/x-shockwave-flash" width="425" height="344" src="http://www.youtube.com/v/R2a8TRSgzZY&amp;color1=0xe1600f&amp;color2=0xfebd01&amp;hl=en&amp;feature=player_embedded&amp;fs=1" allowfullscreen="true"></embed></object>
</p>
<p> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.development-cycle.com/2009/06/node/188/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Jailbreaking An Ipod Touch 2nd Generation</title>
		<link>http://www.development-cycle.com/2009/05/node/187/</link>
		<comments>http://www.development-cycle.com/2009/05/node/187/#comments</comments>
		<pubDate>Sun, 17 May 2009 17:30:49 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<guid isPermaLink="false"></guid>
		<description><![CDATA[<p>I have had my ipod touch (<strong>2.2.1 firmware</strong>) now for almost two months and i have found it to be a great little gadget. Although i have continually been annoyed Apple's efforts to cripple the applications available through the itunes app store eg no last.fm scrobbling, having to sync to itunes to retrieved episodes of subscribed podcasts.</p>]]></description>
			<content:encoded><![CDATA[<p>I have had my ipod touch (<strong>2.2.1 firmware</strong>) now for almost two months and i have found it to be a great little gadget. Although i have continually been annoyed Apple&#8217;s efforts to cripple the applications available through the itunes app store eg no last.fm scrobbling, having to sync to itunes to retrieved episodes of subscribed podcasts.</p>
<p>Last week i decided enough was enough and the only way around the limitations from Apple was to jail break the gadget. I found a lot of the guides on the net easy to follow but it still seems a bit of an inexact science and i ran into plenty of issues. After first trying i had to lived with a bricked ipod for a few days until i could find the time again to fix it properly. First i tried <a href="http://www.quickpwn.com/" title="Quickpwn Home page">Quickpwn</a> this technique seemed to give me an error of the #1600 variety when trying to restore my custom firmware in itunes.</p>
<p>Next up i went with the <a href="http://redsn0w.com/" title="Redsnow Ipod Jailbreak Software">RedSn0w</a> 0.3 beta, this script was pretty smooth although after running it the ipod just seemed to reset into recovery mode again with no forward progress. I then tried <a href="http://u.dopaul.com/Voltage.rar" title="Voltage Jailbreak Software">Voltage</a> reading around the net people seemed to be saying good things about this one, but alas it also let me down due to a bug, so refused to find my original Apple firmware.</p>
<p>By this stage i had wasted a lot of time and was starting to lose hope in ever finding freedom from the itunes appstore, that was until <a href="http://quickfreedom.com/" title="Quick Freedom Ipod Jailbreak software">Quick Freedom</a>. I restored my ipod back to it&#8217;s default state for what seemed like the 100th time ready to have my hope crushed by another 1600 error. But this time it was different i glanced down at my ipod whilst itunes told me &#8220;preparing ipod for restore&#8221; only to see the pengiun wallpaper i had selected when i created the custom firmware.</p>
<p>Another 15 minutes later and the custom install had successfully completed offering me the &#8220;installer&#8221; and &#8220;cydia&#8221; applications after rebooting. For anyone hoping to jail break their devices i give two pieces of advice. First although most of the youtube videos are only 10 minutes long showing how to jailbreak an ipod by the time you get all of the software together and find a method that will works for you. Be prepared to spend a huge amount of time getting it done. Second if a method dosent work for you return right back to the start with the default firmware before trying again. I found trying to charge ahead and skipping this step will only lead to failure and more wasted time.</p>
<p>Happy jail breaking!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.development-cycle.com/2009/05/node/187/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Australian Pirate Party</title>
		<link>http://www.development-cycle.com/2009/05/node/186/</link>
		<comments>http://www.development-cycle.com/2009/05/node/186/#comments</comments>
		<pubDate>Wed, 06 May 2009 01:34:16 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<guid isPermaLink="false"></guid>
		<description><![CDATA[<p>The Pirate Party in Sweden seems to be making waves after four men where found guilly of helping run the infamous bit torrent tracker site known as The Pirate bay.</p>]]></description>
			<content:encoded><![CDATA[<p>The Pirate Party in Sweden seems to be making waves after four men where found guilly of helping run the infamous bit torrent tracker site known as The Pirate bay.</p>
<p>It seems though Australian may not have to wait to long for a <a href="http://pirateparty.org.au/" title="Australian pirate Party">Pirate party</a> of it&#8217;s very own! The domain has been registered and a basic site built to gauge support for the planned party, with the group currently working on a constition based on the <a href="http://pirateparty.org.au/wiki/index.php?title=Pirate_Manifesto" title="The Pirate Manifesto">Pirate manifesto</a> which can then be submitted to the <a href="http://www.aec.gov.au/" title="The Australian Electrol Commision">AEC</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.development-cycle.com/2009/05/node/186/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Jaunty Jackalope Is Here!</title>
		<link>http://www.development-cycle.com/2009/04/node/185/</link>
		<comments>http://www.development-cycle.com/2009/04/node/185/#comments</comments>
		<pubDate>Thu, 23 Apr 2009 22:02:30 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<guid isPermaLink="false"></guid>
		<description><![CDATA[<p>The day has finally come and the latest release of <strong>Ubuntu 9.04</strong> (Jaunty Jackalope) is <a href="http://releases.ubuntu.com/releases/9.04/" title="Ubuntu 9.04 Download">available for download</a>.</p>
<h2>So Whats Been Improved?</h2>
<p> </p>]]></description>
			<content:encoded><![CDATA[<p>The day has finally come and the latest release of <strong>Ubuntu 9.04</strong> (Jaunty Jackalope) is <a href="http://releases.ubuntu.com/releases/9.04/" title="Ubuntu 9.04 Download">available for download</a>.</p>
<h2>So Whats Been Improved?</h2>
<p> </p>
<ul>
<li>Easier configuration of multiple monitor setups</li>
<li>A number of video cards now have free drivers available</li>
<li>Significantly faster boot up times</li>
<li>Support for the ext4 filesystem</li>
<li>Improved range of wireless and 3g devices supported</li>
<li>Intelligent switching between wireless and 3g connections</li>
<li>The server version comes with <a href="http://eucalyptus.cs.ucsb.edu/" title="Open source cloud computing">Eucalyptus</a>, allowing you to play with cloud computing before paying money for the likes of <a href="http://aws.amazon.com/ec2/" title="Amazon ec2 Elastic Cloud">Amazon&#8217;s ec2</a></li>
</ul>
<p> </p>
<h2>Can I Upgrade From 8.10?</h2>
<p>Sure, just press the ALT &amp; F2 keys, in the dialog box that appears type <em>update-manager -d</em>.This should open up the update manager which will tell you a new release is available. To get the ball rolling simply press the upgrade button the next screen will show you the realease notes for Jaunty. Press the upgrade button down the bottom of this screen and the system will go have a look at what pakages it needs to complete the upgrade.</p>
<p style="text-align: center;"><img src="/files/images/upgrade1.png" title="Ubuntu Upgrade Screen" width="300" height="402" /></p>
<p>If no issues are found a window will eventually pop up asking you if you would like to start the upgrade. Pressing the &#8220;start upgrade&#8221; button on this dialog box will then start the upgrade in earnest downloading all the packages it needs and then installing them. Be forewarned the actual upgrade can take a long time especially if you have a slow connection or are not getting great speeds from you mirror of choice.</p>
<p>When the process is done you will be asked if you want to remove any obsolete packages, just click the &#8220;remove&#8221; button to continue . The next dialog box will inform you the system requests a restart, click the &#8220;restart now&#8221; button and wave goodbye to Intrepid Ibex and hello Jaunty Jackalope. Upon restart if you want to be absolutely sure you didn&#8217;t get short changed open up a terminal and type <em>sudo lsb_release -a</em>, you will be told what version of Ubuntu you are currently running in the output.</p>
<p> </p>
<p><strong>Links</strong></p>
<p><a href="http://www.ubuntu.com/" title="Ubuntu Linux Homepage">Ubuntu</a></p>
<p><a href="http://www.kubuntu.org/" title="Kubuntu Linux">Kubuntu</a></p>
<p><a href="http://ubuntuforums.org/" title="The Ubuntu Forums">The Ubuntu Forums</a></p>
<p><a href="http://search.twitter.com/search?q=%22Ubuntu+9%22" title="Ubuntu 9.04 Tweets">Ubuntu 9 Tweets</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.development-cycle.com/2009/04/node/185/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
