<?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>dividebyzero</title>
	<atom:link href="http://www.dividebyzero.co.za/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.dividebyzero.co.za</link>
	<description>Black holes are where god divided by zero</description>
	<lastBuildDate>Sun, 08 Jan 2012 20:33:22 +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>Generate Symfony2 Documents in PDF</title>
		<link>http://www.dividebyzero.co.za/blog/2011/11/generate-symfony2-documents-in-pdf/</link>
		<comments>http://www.dividebyzero.co.za/blog/2011/11/generate-symfony2-documents-in-pdf/#comments</comments>
		<pubDate>Wed, 30 Nov 2011 21:08:23 +0000</pubDate>
		<dc:creator>dividebyzeroZA</dc:creator>
				<category><![CDATA[Symfony2]]></category>

		<guid isPermaLink="false">http://www.dividebyzero.co.za/?p=375</guid>
		<description><![CDATA[The Symfony site gives brief information on how to build the Symfony2 documentation, but I felt it lacked some of the finer details for anybody who might be new to reStructuredText documents.  I decided to put up a blog post after trying to find a more detailed explanation and failing &#8211; I hope this helps [...]


No related posts.]]></description>
			<content:encoded><![CDATA[<p>The Symfony site gives brief information on <a title="Symfony2 Documentation Format" href="http://symfony.com/doc/current/contributing/documentation/format.html">how to build the Symfony2 documentation</a>, but I felt it lacked some of the finer details for anybody who might be new to <a title="reStructuredText" href="http://docutils.sourceforge.net/rst.html">reStructuredText</a> documents.  I decided to put up a blog post after trying to find a more detailed explanation and failing &#8211; I hope this helps others who have also just started using ReST files.</p>
<h3>Install packages</h3>
<p>Firstly, we need to install some required software packages.</p>
<p>Open up a terminal and install the python packages:</p>
<pre><code>apt-get install python-setuptools python-dev build-essential</code></pre>
<p>Next install the gargantuan <a title="LaTeX document preparation system" href="http://www.latex-project.org/">LaTeX</a>. LaTeX is a document preparation system that weighs in at over 1Gb. This is required to build the reStructuredText as PDF.</p>
<pre><code>apt-get install texlive-full</code></pre>
<p>Lastly, we install <a title="Sphinx documentation generator" href="http://sphinx.pocoo.org/">Sphinx</a>, the python documentation generator</p>
<pre><code>easy_install -U Sphinx</code></pre>
<h3>Initialise the Symfony2 Documentation directory</h3>
<p>I personally like to keep the generated files under /var/www/symfony2docs as I create a vhost that points to the built HTML to browse whether I&#8217;m online or offline.</p>
<p>To mimic this, run:</p>
<pre><code>mkdir /var/www/symfony2docs
cd /var/www/symfony2docs
sphinx-quickstart</code></pre>
<p>The command sphinx-quickstart will run a project setup wizard. You can safely just press Enter to accept the defaults showing between [ ] brackets.</p>
<p>There are, however, four options that will require input. I fill them in as follows:</p>
<ul>
<li>Project Name: Symfony2 Documentation</li>
<li>Author Name(s): SensioLabs</li>
<li>Project Version: 2</li>
<li>Do you want to use the epub builder (y/N) [n]: y</li>
</ul>
<p>The question regarding the epub builder is set to &#8220;n&#8221; by default.  Change this option to &#8220;y&#8221; if you would also like to build the documentation into an epub format.</p>
<h3>Install SensioLab&#8217;s configuration-block Sphinx extension</h3>
<p>To install the extension, run the following:</p>
<pre><code>mkdir /var/www/symfony2docs/_exts
cd /var/www/symfony2docs/_exts
wget https://raw.github.com/fabpot/sphinx-php/master/configurationblock.py</code></pre>
<p>Next, we have to activate the extension by editing the conf.py file.</p>
<p>Search for:</p>
<pre><code>extensions = []</code></pre>
<p>Replace with:</p>
<pre><code>sys.path.append(os.path.abspath('_exts'))
# Activating the configurationblock extension
extensions = ['configurationblock']</code></pre>
<h3>Download latest Symfony2 Documentation</h3>
<p>We have two ways of retrieving the latest Symfony2 Documentation &#8211; either using Git or by downloading the latest tarball.</p>
<p>I usually download the latest documentation into the /tmp directory and then copy it into the Sphinx project from there.  Git creates symfony-docs directory whereas, the tarball creates a directory named symfony-symfony-docs-xxxnnnn (e.g. symfony-symfony-docs-dfe0182).  If using the tarball please verify the name of the folder created when unpacking the archive.</p>
<p>If using Git, run:</p>
<pre><code>cd /tmp
git clone https://github.com/symfony/symfony-docs.git
mv /tmp/symfony-docs/* /var/www/symfony2docs </code></pre>
<p>If using the tarball, run:</p>
<pre><code>cd /tmp
wget https://github.com/symfony/symfony-docs/tarball/master -O symfony-docs.tar.gz
tar -zxvf symfony-docs.tar.gz
mv /tmp/symfony-symfony-docs-dfe0182/* /var/www/symfony2docs </code></pre>
<h3>Build Symfony2 Documentation PDF</h3>
<p>We finally have all the files in the right locations to build the PDF.</p>
<pre><code>cd /var/www/symfony2docs
make latexpdf</code></pre>
<p>The output can be found in the _build directory</p>
<h3>Build Symfony2 Documentation HTML</h3>
<pre><code>cd /var/www/symfony2docs
make html</code></pre>
<h3>Build Symfony2 Documentation EPUB</h3>
<pre><code>cd /var/www/symfony2docs
make epub</code></pre>


<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://www.dividebyzero.co.za/blog/2011/11/generate-symfony2-documents-in-pdf/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Setup a Linux Web Development Environment in VirtualBox</title>
		<link>http://www.dividebyzero.co.za/blog/2011/11/setup-lamp-server-in-virtualbox/</link>
		<comments>http://www.dividebyzero.co.za/blog/2011/11/setup-lamp-server-in-virtualbox/#comments</comments>
		<pubDate>Wed, 30 Nov 2011 17:46:16 +0000</pubDate>
		<dc:creator>dividebyzeroZA</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[LAMP Server]]></category>
		<category><![CDATA[VirtualBox]]></category>

		<guid isPermaLink="false">http://www.dividebyzero.co.za/?p=337</guid>
		<description><![CDATA[I enjoy using Windows as my primary OS on my laptop, but nothing beats developing for the web in Linux.  This article will show you how to install a local Web Server using Ubuntu Server 64-bit into VirtualBox to allow you to seamlessly continue coding in NetBeans and testing in the largest set of browsers. [...]


No related posts.]]></description>
			<content:encoded><![CDATA[<p>I enjoy using Windows as my primary OS on my laptop, but nothing beats developing for the web in Linux.  This article will show you how to install a local Web Server using Ubuntu Server 64-bit into VirtualBox to allow you to seamlessly continue coding in NetBeans and testing in the largest set of browsers.</p>
<h3>1. Preparation</h3>
<p>Before starting, you&#8217;ll need to download the following:</p>
<p>- <a title="VirtualBox" href="https://www.virtualbox.org/wiki/Downloads">VirtualBox</a> (version 4.1.8 at the time of writing)<br />
- <a title="Download Ubuntu Server 64-bit" href="http://www.ubuntu.com/download/server/download">Ubuntu Server 64-bit</a> (11.10 at the time of writing)<br />
- <a title="NetBeans PHP IDE" href="http://netbeans.org/downloads/index.html">NetBeans IDE</a> (7.0.1)<br />
- <a title="PuTTY SSH Client" href="http://www.chiark.greenend.org.uk/~sgtatham/putty/download.html">PuTTY SSH Client</a></p>
<p>Begin by installing VirtualBox, NetBeans and PuTTY. Be sure to install the network host-adapters when prompted during the VirtualBox installation.</p>
<h3>2. Create a new VirtualMachine</h3>
<p>Open VirtualBox and create a New Virtual Machine.</p>
<div>When prompted, select the following:</div>
<ul>
<li><strong>Name and OS Type:</strong>  You can call it anything you wish, I tend to name it after the distribution (e.g. UbuntuServer).  Be sure to select Linux and Ubuntu (64-bit) as the Operating System.</li>
<li><strong>Base Memory:</strong> The default is 512Mb but push this up to as much as your system can allow.  I have 8Gb of RAM so I give the VirtualMachine between 2.5 and 3Gb.</li>
<li><strong>Virtual Hard Disk:</strong>  Ensure &#8220;Start-up Disk&#8221; is checked and &#8220;Create new hard disk&#8221; is selected</li>
<li><strong>Virtual Disk File Type:</strong>  Leave it as the default VDI unless you have other requirements</li>
<li><strong>Storage Details:</strong>  Set this to be Dynamically Allocated</li>
<li><strong>Disk Size:</strong>  This is down to your own preferences.  I use a Dynamically Allocated storage type with a very spacious 50Gb maximum size limit.</li>
</ul>
<div>Open the Settings of the new Virtual Machine and make the following changes:</div>
<div>
<ul>
<li><strong>System &#8211; Processor:</strong>  Set this to an amount appropriate for your system.  I have an i7 with 8 logical cores so I set this to 3 CPUs.</li>
<li><strong>Display &#8211; Video:</strong>  I tend to push the Video Memory up a bit but this isn&#8217;t strictly required for a Server setup.</li>
<li><strong>Network &#8211; Adapter 1:</strong>  Leave this set to NAT</li>
<li><strong>Network &#8211; Adapter 2:</strong>  Enable this Adapter and set to use &#8220;Host-only Adapter&#8221; / &#8220;VirtualBox Host-Only Ethernet Adapter&#8221;.</li>
</ul>
</div>
<h3>3. Installing Ubuntu Server 64-bit</h3>
<p>Now that all of the Virtual Machine settings are correct, it&#8217;s time to install Linux.  Click on Start and when prompted, select the Linux Ubuntu Server ISO you previously downloaded.</p>
<p>Click Start to fire off the installation of the Server software:</p>
<ul>
<li>Select your language and then select “Install Ubuntu Server”</li>
<li>Run through the setup by setting the language, region, and keyboard</li>
<li><strong>Primary Network Interface:</strong>  Select eth0</li>
<li><strong>Hostname:</strong>  you can enter anything you wish to uniquely identify the server.  I usually call mine &#8220;thegrid&#8221;.</li>
<li><strong>Partitioning Method:</strong>  Select “Guided – use entire disk and set up LVM”.<br />
The next screen will give you one option so select that and then confirm that you want to “Write the changes to disks and configure LVM”.  The screen after that asks you to confirm the maximum partition size. Use the entire partition so just leave the default value and select continue.</li>
<li>At this point the large part of the base installation will take place and may take a few minutes.</li>
<li><strong>User Creation:</strong>  Type in your full name on the first screen followed by the username that you will use to login on the next.  Enter a password for your main user and finally confirm that you do not want to encrypt your home directory.</li>
<li><strong>HTTP Proxy:</strong>  This can be left blank.</li>
<li>You will be asked how you want to manage upgrades.  Select “No Automatic updates” to ensure you have full control.</li>
<li><strong>Software:</strong>  When prompted, choose to install the following (use spacebar to select options):<br />
- OpenSSH Server<br />
- LAMP Server<br />
- Mail server<br />
- Samba file server</li>
<li><strong>Postfix Configuration:</strong>  You can leave the default “Internet Site” and then enter a system mail name (the hostname previously entered is used by default – use that and select continue).</li>
<li>The selected server software is now installed.  This can take a few minutes to complete.</li>
<li>Install the GRUB boot loader?  Select Yes</li>
</ul>
<p>Installation is now complete.</p>
<h3>4. Install vim-nox</h3>
<p>I install vim-nox at the first opportunity to make the default vi a lot more user-friendly under Ubuntu.</p>
<p>Log into the Ubuntu Server and run:</p>
<pre><code>sudo apt-get install vim-nox</code></pre>
<h3>5. Assign a Static IP to Ubuntu Server</h3>
<p>At this point, we assign a Static IP to the Ubuntu Server.  This will allow you to SSH into the server from the Windows Host as well as to access VirtualHosts setup later.</p>
<p>Currently, only the first Ethernet Adapter 1 (eth0) has been setup within Ubuntu.  This adapter bridges to the Host&#8217;s external connection and will allow the Ubuntu Server Guest to access the Internet.</p>
<p>Previously we changed the VirtualMachine&#8217;s settings to enable Ethernet Adapter 2 to use the VirtualBox Host-Only Adapter.  It is through this Adapter that we can access the Guest OS from within the Host.  VirtualBox always assigns &#8220;192.168.56.101&#8243; to this Adapter.</p>
<p>While logged into the Server, run:</p>
<pre><code>sudo vi /etc/network/interfaces</code></pre>
<p>Then add the following to the bottom of the file:</p>
<pre><code>auto eth1
iface eth1 inet static
address 192.168.56.101
netmask 255.255.255.0</code></pre>
<p>Finish by rebooting the system.</p>
<h3>6.  SSH into the Server using PuTTY</h3>
<p>At this point I prefer to switch over to using PuTTY.  SSH into the Static IP we have setup in the previous step.</p>
<p>We will use this terminal to finalise the setup of the Server.</p>
<h3>7.  Create SAMBA share</h3>
<p>Firstly, we need to add a user to the www-data group group (replace &#8220;username&#8221; with your own):</p>
<pre><code>sudo adduser username www-data</code></pre>
<p>Now we give the group write permissions to /var/www</p>
<pre><code>sudo chown -R root:www-data /var/www
sudo chmod -R 755 /var/www </code></pre>
<p>Now edit your smb.conf</p>
<pre><code>sudo vi /etc/samba/smb.conf</code></pre>
<p>And add the following (replacing username with your own):</p>
<pre><code>[www]
 comment = www
 path = /var/www
 public = yes
 writable = yes
 valid users = username
 create mask = 0775
 directory mask = 0775
 force user = username
 force group = www-users
 follow symlinks = yes
 wide links = yes</code></pre>
<p>Create a SAMBA user with a password</p>
<pre><code>sudo smbpasswd –a username</code></pre>
<p>Now just restart samba and enjoy</p>
<pre><code>sudo service smbd restart</code></pre>
<p>You will now be able to Map a Network Drive in Windows Explorer and use \\hostname\www as the address.</p>
<h3>8. Bind MySQL to the Static IP</h3>
<p>In the SSH Terminal, run:</p>
<pre><code>sudo vi /etc/mysql/my.cnf</code></pre>
<p>Change bind-address from 127.0.0.1 to 192.168.56.101</p>
<h3>9. Setup the Fully Qualified Domain Name</h3>
<p>At this point if you restarted Apache, you would get the following error:</p>
<p><em>“apache2: Could not reliably determine the server&#8217;s fully qualified domain name, using 127.0.1.1 for ServerName</em><br />
<em>&#8230; waiting .apache2: Could not reliably determine the server&#8217;s fully qualified domain name, using 127.0.1.1 for ServerName”</em></p>
<p>To fix this, run:</p>
<pre><code>sudo vi /etc/hosts</code></pre>
<p>It should look like (replacing &#8220;thegrid&#8221; with your hostname):</p>
<pre><code>127.0.0.1       <strong>localhost.localdomain</strong> localhost
<strong>::1     thegrid localhost6.localdomain6 localhost6
</strong>127.0.1.1       thegrid
# The following lines are desirable for IPv6 capable hosts
::1     <strong>localhost</strong> ip6-localhost ip6-loopback
fe00::0 ip6-localnet
ff00::0 ip6-mcastprefix
ff02::1 ip6-allnodes
ff02::2 ip6-allrouters</code></pre>
<h3>10. Fix an Ubuntu 11.10 PHP5 quirk</h3>
<p>There is a quirk with Ubuntu 11.10 related to legacy items removed but the configuration wasn&#8217;t changed.  The error thrown related to PHP not being able to load the dynamic library &#8216;/usr/lib/php5/20090626/sqlite.so&#8217;.</p>
<p>To fix this, just zip up the conf.d (in case you require it later):</p>
<pre><code>sudo bzip2 /etc/php5/conf.d/sqlite.ini</code></pre>
<h3>11. Setup a sandbox virtualhost</h3>
<p>The default location for your websites on the Apache server is in /var/www/.  We&#8217;ll setup a &#8220;sandbox&#8221; site but this procedure can be repeated for any other sites you need to create.</p>
<p>Firstly, create the site&#8217;s directory:</p>
<pre><code>sudo mkdir /var/www/sandbox</code></pre>
<p>Create a virtualhost configuration for the new site.</p>
<pre><code>sudo vi /etc/apache2/sites-available/sandbox.localdev</code></pre>
<p>Save the contents of the Apache config as:</p>
<pre><code>&lt;VirtualHost *:80&gt;
 ServerAdmin webmaster@localhost
 ServerName sandbox.local.dev
 DocumentRoot /var/www/sandbox

 &lt;Directory /&gt;
 Options FollowSymLinks
 AllowOverride None
 &lt;/Directory&gt;

 &lt;Directory /var/www/sandbox/&gt;
 Options Indexes FollowSymLinks MultiViews
 AllowOverride All
 Order allow,deny
 allow from all
 &lt;/Directory&gt;

 ErrorLog ${APACHE_LOG_DIR}/sandbox_error.log
 # Possible values include: debug, info, notice, warn, error, crit,
 # alert, emerg.
 LogLevel warn

 CustomLog ${APACHE_LOG_DIR}/sandbox_access.log combined
&lt;/VirtualHost&gt;</code></pre>
<p>Enable the new Apache config:</p>
<pre><code>sudo a2ensite sandbox.localdev</code></pre>
<p>(You can disable sites by running a2dissite instead of a2ensite)</p>
<p>Restart Apache:</p>
<pre><code>sudo services apache2 restart</code></pre>
<p>Finally, enable access to the website from within your Windows Host by editing the <em>C:\Windows\System32\drivers\etc\host</em> file to include the line:</p>
<pre><code>192.168.56.101     sandbox.local.dev</code></pre>
<h3>12. Setup NetBeans to use the remote server</h3>
<p>Open NetBeans and create a New Project (we&#8217;ll keep with the Sandbox example).  Ensure you set it to be &#8220;PHP Application from Remote Server&#8221;</p>
<p>Under <strong>&#8220;Name and Location&#8221;</strong>  type Sandbox for the Project Name.  Select the appropriate Source Folder, set PHP Version to PHP5.3 and click Next.</p>
<p>Under <strong>&#8220;Remote Configuration&#8221;</strong> set the Project URL to http://sandbox.local.dev.  Next click on Manage and setup the Remote Connection to use the new Ubuntu Server&#8217;s details.  Set the Initial Directory to /var/www.   If you don&#8217;t want to be asked to verify the connection each time specify a Known Hosts File (e.g. known_hosts.txt).  This will save all trusted hosts so use the same file across all projects.  Finally set the Upload Directory to &#8220;sandbox&#8221; and click Next.</p>
<p>Complete the New Project creation.</p>
<p>Lastly, click on File and select Project Properties.  Under the &#8220;Run Configuration&#8221; ensure that the Upload Files setting is set to &#8220;On Save&#8221; and &#8220;Preserve Remote File Permissions&#8221; is ticked.</p>
<p>Now everytime you save the file it will be automatically synced with the Ubuntu Server.  This means that you can continue to develop using NetBeans in Windows and immediately view these changes against your new LAMP server running locally on your laptop.</p>


<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://www.dividebyzero.co.za/blog/2011/11/setup-lamp-server-in-virtualbox/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Batman Arkham City &#8211; Story Teller Achievement</title>
		<link>http://www.dividebyzero.co.za/blog/2011/11/batman-arkham-city-story-teller-achievement/</link>
		<comments>http://www.dividebyzero.co.za/blog/2011/11/batman-arkham-city-story-teller-achievement/#comments</comments>
		<pubDate>Wed, 23 Nov 2011 21:41:50 +0000</pubDate>
		<dc:creator>dividebyzeroZA</dc:creator>
				<category><![CDATA[Gaming]]></category>
		<category><![CDATA[achievements]]></category>
		<category><![CDATA[Arkham City]]></category>
		<category><![CDATA[Batman]]></category>
		<category><![CDATA[Xbox 360]]></category>

		<guid isPermaLink="false">http://www.dividebyzero.co.za/?p=330</guid>
		<description><![CDATA[This Achievement (or Trophy for all you PS3 gamers) requires you to &#8220;Have 12 murderous dates with Calendar Man&#8221;. This involves nothing more than talking to Calendar Man on 12 different dates &#8211; one per month, in fact. Calendar Man can be found locked away in the basement of the Courthouse at the top left [...]


Related posts:<ol><li><a href='http://www.dividebyzero.co.za/blog/2009/08/prototype-cleanup-achievement-guide/' rel='bookmark' title='Prototype &#8211; Cleanup Achievement Guide'>Prototype &#8211; Cleanup Achievement Guide</a></li>
<li><a href='http://www.dividebyzero.co.za/blog/2010/05/alan-wake-how-to-unlock-boob-tube-achievement/' rel='bookmark' title='Alan Wake &#8211; how to unlock Boob Tube achievement'>Alan Wake &#8211; how to unlock Boob Tube achievement</a></li>
<li><a href='http://www.dividebyzero.co.za/blog/2010/09/halo-reach-start-of-something-achievement-didnt-unlock/' rel='bookmark' title='Halo Reach &#8211; Start of Something achievement didn&#8217;t unlock'>Halo Reach &#8211; Start of Something achievement didn&#8217;t unlock</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>This Achievement (or Trophy for all you PS3 gamers) requires you to &#8220;Have 12 murderous dates with Calendar Man&#8221;.  This involves nothing more than talking to Calendar Man on 12 different dates &#8211; one per month, in fact.  Calendar Man can be found locked away in the basement of the Courthouse at the top left of the map.</p>
<p>Below are the dates in order since the game launched:<br />
31/11/2011 &#8211; Halloween<br />
24/11/2011 &#8211; Thanksgiving<br />
25/12/2011 &#8211; Christmas Day<br />
01/01/2012 &#8211; New Years Day<br />
14/02/2012 &#8211; Valentine&#8217;s Day<br />
17/03/2012 &#8211; St Patrick&#8217;s Day<br />
01/04/2012 &#8211; April Fool&#8217;s Day<br />
13/05/2012 &#8211; Mother&#8217;s Day<br />
17/06/2012 &#8211; Father&#8217;s Day<br />
04/07/2012 &#8211; U.S. Independence Day<br />
16/08/2012 &#8211; Feast Day of St Roch<br />
03/09/2012 &#8211; Labour Day</p>
<p>Please keep in mind that Thanksgiving, Mother&#8217;s Day, Father&#8217;s Day and Labour Day will be on different dates after 2012.</p>
<p>You could, if you&#8217;re so inclined, disconnect from Xbox Live and change your system date to match and speak to Calendar Man.</p>


<p>Related posts:<ol><li><a href='http://www.dividebyzero.co.za/blog/2009/08/prototype-cleanup-achievement-guide/' rel='bookmark' title='Prototype &#8211; Cleanup Achievement Guide'>Prototype &#8211; Cleanup Achievement Guide</a></li>
<li><a href='http://www.dividebyzero.co.za/blog/2010/05/alan-wake-how-to-unlock-boob-tube-achievement/' rel='bookmark' title='Alan Wake &#8211; how to unlock Boob Tube achievement'>Alan Wake &#8211; how to unlock Boob Tube achievement</a></li>
<li><a href='http://www.dividebyzero.co.za/blog/2010/09/halo-reach-start-of-something-achievement-didnt-unlock/' rel='bookmark' title='Halo Reach &#8211; Start of Something achievement didn&#8217;t unlock'>Halo Reach &#8211; Start of Something achievement didn&#8217;t unlock</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.dividebyzero.co.za/blog/2011/11/batman-arkham-city-story-teller-achievement/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Nirvana versus Rick Astley</title>
		<link>http://www.dividebyzero.co.za/blog/2011/02/nirvana-versus-rick-astley/</link>
		<comments>http://www.dividebyzero.co.za/blog/2011/02/nirvana-versus-rick-astley/#comments</comments>
		<pubDate>Mon, 14 Feb 2011 22:14:17 +0000</pubDate>
		<dc:creator>dividebyzeroZA</dc:creator>
				<category><![CDATA[Miscellaneous]]></category>

		<guid isPermaLink="false">http://www.dividebyzero.co.za/?p=309</guid>
		<description><![CDATA[No related posts.


No related posts.]]></description>
			<content:encoded><![CDATA[<p><iframe title="YouTube video player" width="600" height="480" src="http://www.youtube.com/embed/q1YABGdai5k" frameborder="0" allowfullscreen></iframe></p>


<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://www.dividebyzero.co.za/blog/2011/02/nirvana-versus-rick-astley/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Dead Rising 2 Assault Rifle Location</title>
		<link>http://www.dividebyzero.co.za/blog/2010/10/dead-rising-2-assault-rifle-location/</link>
		<comments>http://www.dividebyzero.co.za/blog/2010/10/dead-rising-2-assault-rifle-location/#comments</comments>
		<pubDate>Fri, 15 Oct 2010 10:18:12 +0000</pubDate>
		<dc:creator>dividebyzeroZA</dc:creator>
				<category><![CDATA[Gaming]]></category>
		<category><![CDATA[Dead Rising]]></category>
		<category><![CDATA[Xbox 360]]></category>
		<category><![CDATA[Zombies]]></category>

		<guid isPermaLink="false">http://www.dividebyzero.co.za/?p=296</guid>
		<description><![CDATA[The Assault Rifle counts towards the &#8220;He hasn&#8217;t covered wars&#8230;&#8221; achievement where you have to use every type of firearm on a zombie.  It&#8217;s important to note that the Assault Rifle in question is NOT the same as the Merc Assault Rifle found during the Cases. The Assault Rifle can be found in the Food [...]


Related posts:<ol><li><a href='http://www.dividebyzero.co.za/blog/2010/09/dead-rising-2-secret-achievement/' rel='bookmark' title='Dead Rising 2 Secret Achievement'>Dead Rising 2 Secret Achievement</a></li>
<li><a href='http://www.dividebyzero.co.za/blog/2010/09/dead-rising-2-burning-skull-combo-card/' rel='bookmark' title='Dead Rising 2 Burning Skull Combo Card'>Dead Rising 2 Burning Skull Combo Card</a></li>
<li><a href='http://www.dividebyzero.co.za/blog/2010/10/dead-rising-2-zombrex-locations/' rel='bookmark' title='Dead Rising 2 Zombrex Locations'>Dead Rising 2 Zombrex Locations</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>The Assault Rifle counts towards the &#8220;He hasn&#8217;t covered wars&#8230;&#8221; achievement where you have to use every type of firearm on a zombie.  It&#8217;s important to note that the Assault Rifle in question is NOT the same as the Merc Assault Rifle found during the Cases.</p>
<p>The Assault Rifle can be found in the Food Court above Hungry Joe&#8217;s Pizza.</p>
<p>To get up there, circle around to the left until you find a set of vending machines against the wall.  You should be able to climb on top of the vending machines and jump up to climb on top of the stores.  Now all you need to do is run back along the roofs until you&#8217;re on top of Hungry Joe&#8217;s.  The tricky bit is that the rifle is on the awning and not the roof itself so jump down from Hungry Joe&#8217;s onto the awning and the Assault Rifle is yours.</p>
<p>Now shoot some zombies and watch the achievement pop (assuming you&#8217;ve already used the other firearms).</p>


<p>Related posts:<ol><li><a href='http://www.dividebyzero.co.za/blog/2010/09/dead-rising-2-secret-achievement/' rel='bookmark' title='Dead Rising 2 Secret Achievement'>Dead Rising 2 Secret Achievement</a></li>
<li><a href='http://www.dividebyzero.co.za/blog/2010/09/dead-rising-2-burning-skull-combo-card/' rel='bookmark' title='Dead Rising 2 Burning Skull Combo Card'>Dead Rising 2 Burning Skull Combo Card</a></li>
<li><a href='http://www.dividebyzero.co.za/blog/2010/10/dead-rising-2-zombrex-locations/' rel='bookmark' title='Dead Rising 2 Zombrex Locations'>Dead Rising 2 Zombrex Locations</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.dividebyzero.co.za/blog/2010/10/dead-rising-2-assault-rifle-location/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Dead Rising 2 Zombie Genocide Master Achievement</title>
		<link>http://www.dividebyzero.co.za/blog/2010/10/dead-rising-2-zombie-genocide-master-achievement/</link>
		<comments>http://www.dividebyzero.co.za/blog/2010/10/dead-rising-2-zombie-genocide-master-achievement/#comments</comments>
		<pubDate>Sat, 09 Oct 2010 23:51:54 +0000</pubDate>
		<dc:creator>dividebyzeroZA</dc:creator>
				<category><![CDATA[Gaming]]></category>
		<category><![CDATA[achievements]]></category>
		<category><![CDATA[Dead Rising]]></category>
		<category><![CDATA[Xbox 360]]></category>
		<category><![CDATA[Zombies]]></category>

		<guid isPermaLink="false">http://www.dividebyzero.co.za/?p=290</guid>
		<description><![CDATA[I recently found a guide to obtain the Zombie Genocide Master achievement. It&#8217;s basically summarised as: 1. Grab the Driving Magazine (This is found at the soda fountain in Bennie Jack&#8217;s BBQ Shack in Americana Casino) 2. Use the SUV to kill zombies outside from Silver Strip down to Platinum Strip.  You will have to [...]


Related posts:<ol><li><a href='http://www.dividebyzero.co.za/blog/2010/09/dead-rising-2-secret-achievement/' rel='bookmark' title='Dead Rising 2 Secret Achievement'>Dead Rising 2 Secret Achievement</a></li>
<li><a href='http://www.dividebyzero.co.za/blog/2010/09/dead-rising-2-burning-skull-combo-card/' rel='bookmark' title='Dead Rising 2 Burning Skull Combo Card'>Dead Rising 2 Burning Skull Combo Card</a></li>
<li><a href='http://www.dividebyzero.co.za/blog/2010/10/dead-rising-2-zombrex-locations/' rel='bookmark' title='Dead Rising 2 Zombrex Locations'>Dead Rising 2 Zombrex Locations</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>I recently found a guide to obtain the Zombie Genocide Master achievement.</p>
<p>It&#8217;s basically summarised as:<br />
1. Grab the Driving Magazine (This is found at the soda fountain in Bennie Jack&#8217;s BBQ Shack in Americana Casino)</p>
<p>2. Use the SUV to kill zombies outside from Silver Strip down to Platinum Strip.  You will have to complete the Story Cases throughout though to ensure you get the extra time required from Overtime Mode to hit that magic 72,000 number.</p>
<p>Milestones:<br />
5,000 Kills<span style="white-space: pre;"> </span>- 25/09  14:00<br />
10,000 Kills<span style="white-space: pre;"> </span>- 25/09  22:30<br />
20,000 Kills<span style="white-space: pre;"> </span>- 26/09  10:00<br />
30,000 Kills<span style="white-space: pre;"> </span>- 27/09  00:00 (Midnight)<br />
40,000 Kills<span style="white-space: pre;"> </span>- 27/09  12:30<br />
53,596 Kills<span style="white-space: pre;"> </span>- 28/09  04:00<br />
72,000 Kills<span style="white-space: pre;"> </span>- 29/09  05:00</p>
<p>3. (Optional)  Grab the Biker magazine in Case 3-2 (On a sofa in the Slot Ranch Casino mission area) if you want to also kill zombies using a chainsaw-enhanced bike.</p>
<p>(Source: <a title="Dead Rising 2 Genocide Master" href="http://www.youtube.com/watch?v=bDkCef2Xi_c" target="_blank">PowerPyx Productions</a>)</p>


<p>Related posts:<ol><li><a href='http://www.dividebyzero.co.za/blog/2010/09/dead-rising-2-secret-achievement/' rel='bookmark' title='Dead Rising 2 Secret Achievement'>Dead Rising 2 Secret Achievement</a></li>
<li><a href='http://www.dividebyzero.co.za/blog/2010/09/dead-rising-2-burning-skull-combo-card/' rel='bookmark' title='Dead Rising 2 Burning Skull Combo Card'>Dead Rising 2 Burning Skull Combo Card</a></li>
<li><a href='http://www.dividebyzero.co.za/blog/2010/10/dead-rising-2-zombrex-locations/' rel='bookmark' title='Dead Rising 2 Zombrex Locations'>Dead Rising 2 Zombrex Locations</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.dividebyzero.co.za/blog/2010/10/dead-rising-2-zombie-genocide-master-achievement/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Dead Rising 2 Zombrex Locations</title>
		<link>http://www.dividebyzero.co.za/blog/2010/10/dead-rising-2-zombrex-locations/</link>
		<comments>http://www.dividebyzero.co.za/blog/2010/10/dead-rising-2-zombrex-locations/#comments</comments>
		<pubDate>Sun, 03 Oct 2010 13:50:56 +0000</pubDate>
		<dc:creator>dividebyzeroZA</dc:creator>
				<category><![CDATA[Gaming]]></category>
		<category><![CDATA[Dead Rising]]></category>
		<category><![CDATA[Xbox 360]]></category>
		<category><![CDATA[Zombies]]></category>
		<category><![CDATA[zombrex]]></category>

		<guid isPermaLink="false">http://www.dividebyzero.co.za/?p=286</guid>
		<description><![CDATA[The Pawn Shops charge incrementally exorbitant prices for Zombrex, but there are 5 boxes of Zombrex just waiting to be found around Fortune City. Free Zombrex Locations: Royal Flush Plaza &#8211; The first box is found as part of your first mission at the Roy&#8217;s Mart pharmacy. Americana Casino &#8211; Go to Bennie Jack&#8217;s BBQ [...]


Related posts:<ol><li><a href='http://www.dividebyzero.co.za/blog/2010/09/dead-rising-2-secret-achievement/' rel='bookmark' title='Dead Rising 2 Secret Achievement'>Dead Rising 2 Secret Achievement</a></li>
<li><a href='http://www.dividebyzero.co.za/blog/2010/09/dead-rising-2-burning-skull-combo-card/' rel='bookmark' title='Dead Rising 2 Burning Skull Combo Card'>Dead Rising 2 Burning Skull Combo Card</a></li>
<li><a href='http://www.dividebyzero.co.za/blog/2010/10/dead-rising-2-zombie-genocide-master-achievement/' rel='bookmark' title='Dead Rising 2 Zombie Genocide Master Achievement'>Dead Rising 2 Zombie Genocide Master Achievement</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>The Pawn Shops charge incrementally exorbitant prices for Zombrex, but there are 5 boxes of Zombrex just waiting to be found around Fortune City.</p>
<p>Free Zombrex Locations:</p>
<ol>
<li><strong>Royal Flush Plaza</strong> &#8211; The first box is found as part of your first mission at the Roy&#8217;s Mart pharmacy.</li>
<li><strong>Americana Casino</strong> &#8211; Go to Bennie Jack&#8217;s BBQ Shack and climb the stairs to the second floor keeping right.  Immediately on your left you can jump onto the light fixtures.  Keep jumping across and you&#8217;ll get to an area with a cache of goods including some Zombrex.</li>
<li><strong>Slot Ranch Casino</strong> &#8211; Find the stage and go backstage.  As you do you&#8217;ll see some boxes/crates immediately ahead of you.  Jump on top of them to find a free box of Zombrex for Katey.</li>
<li><strong>Yucatan Casion</strong> &#8211; Search the casino for the Lucky Marble mini-game and climb on top.  You should be able to easily jump to the next free medication.</li>
<li><strong>Underground/Maintenance Area</strong> &#8211; You will have to head to Maintenance Room 32 underground.  Search the area and you&#8217;ll be rewarded with yet another free box of Zombrex.</li>
</ol>
<p>These free caches of medication should allow you to keep Katey and any potential survivors medicated for free without having to line the pockets of the Pawn Shops.</p>
<p>Happy Zombie hunting <img src='http://www.dividebyzero.co.za/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>


<p>Related posts:<ol><li><a href='http://www.dividebyzero.co.za/blog/2010/09/dead-rising-2-secret-achievement/' rel='bookmark' title='Dead Rising 2 Secret Achievement'>Dead Rising 2 Secret Achievement</a></li>
<li><a href='http://www.dividebyzero.co.za/blog/2010/09/dead-rising-2-burning-skull-combo-card/' rel='bookmark' title='Dead Rising 2 Burning Skull Combo Card'>Dead Rising 2 Burning Skull Combo Card</a></li>
<li><a href='http://www.dividebyzero.co.za/blog/2010/10/dead-rising-2-zombie-genocide-master-achievement/' rel='bookmark' title='Dead Rising 2 Zombie Genocide Master Achievement'>Dead Rising 2 Zombie Genocide Master Achievement</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.dividebyzero.co.za/blog/2010/10/dead-rising-2-zombrex-locations/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Dead Rising 2 Burning Skull Combo Card</title>
		<link>http://www.dividebyzero.co.za/blog/2010/09/dead-rising-2-burning-skull-combo-card/</link>
		<comments>http://www.dividebyzero.co.za/blog/2010/09/dead-rising-2-burning-skull-combo-card/#comments</comments>
		<pubDate>Sun, 26 Sep 2010 21:30:54 +0000</pubDate>
		<dc:creator>dividebyzeroZA</dc:creator>
				<category><![CDATA[Gaming]]></category>
		<category><![CDATA[Dead Rising]]></category>
		<category><![CDATA[Xbox 360]]></category>
		<category><![CDATA[Zombies]]></category>

		<guid isPermaLink="false">http://www.dividebyzero.co.za/?p=283</guid>
		<description><![CDATA[One of the trickier Combo Cards to locate in Dead Rising 2 is the Burning Skull Combo Card.  The location of the Burning Skull Combo Card is in fact one of the hidden ones. To obtain the card you will first need quite a large stash of money (approximately 1 million).  Once you&#8217;ve amassed the [...]


Related posts:<ol><li><a href='http://www.dividebyzero.co.za/blog/2010/09/dead-rising-2-secret-achievement/' rel='bookmark' title='Dead Rising 2 Secret Achievement'>Dead Rising 2 Secret Achievement</a></li>
<li><a href='http://www.dividebyzero.co.za/blog/2010/10/dead-rising-2-zombrex-locations/' rel='bookmark' title='Dead Rising 2 Zombrex Locations'>Dead Rising 2 Zombrex Locations</a></li>
<li><a href='http://www.dividebyzero.co.za/blog/2010/10/dead-rising-2-zombie-genocide-master-achievement/' rel='bookmark' title='Dead Rising 2 Zombie Genocide Master Achievement'>Dead Rising 2 Zombie Genocide Master Achievement</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>One of the trickier Combo Cards to locate in <a title="Dead Rising 2" href="http://en.wikipedia.org/wiki/Dead_Rising_2" target="_blank">Dead Rising 2</a> is the Burning Skull Combo Card.  The location of the Burning Skull Combo Card is in fact one of the hidden ones.</p>
<p>To obtain the card you will first need quite a large stash of money (approximately 1 million).  Once you&#8217;ve amassed the cash head to the Silver Strip area and go to One Little Duck Bingo.  Outside you&#8217;ll see a fortune teller machine (which is also an awesome reference to the Zoltan Fortune Teller Machine from the movie <a title="Big Movie" href="http://www.imdb.com/title/tt0094737/" target="_blank">Big</a>!).  Keep inserting money until EVENTUALLY, the Fortune Teller Machine will spit out the Burning Skull Combo Card.</p>
<p>Now celebrate acquiring the Burning Skull Combo Card by taking the nearby bike for a spin over the surrounding zombies <img src='http://www.dividebyzero.co.za/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>


<p>Related posts:<ol><li><a href='http://www.dividebyzero.co.za/blog/2010/09/dead-rising-2-secret-achievement/' rel='bookmark' title='Dead Rising 2 Secret Achievement'>Dead Rising 2 Secret Achievement</a></li>
<li><a href='http://www.dividebyzero.co.za/blog/2010/10/dead-rising-2-zombrex-locations/' rel='bookmark' title='Dead Rising 2 Zombrex Locations'>Dead Rising 2 Zombrex Locations</a></li>
<li><a href='http://www.dividebyzero.co.za/blog/2010/10/dead-rising-2-zombie-genocide-master-achievement/' rel='bookmark' title='Dead Rising 2 Zombie Genocide Master Achievement'>Dead Rising 2 Zombie Genocide Master Achievement</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.dividebyzero.co.za/blog/2010/09/dead-rising-2-burning-skull-combo-card/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Dead Rising 2 Secret Achievement</title>
		<link>http://www.dividebyzero.co.za/blog/2010/09/dead-rising-2-secret-achievement/</link>
		<comments>http://www.dividebyzero.co.za/blog/2010/09/dead-rising-2-secret-achievement/#comments</comments>
		<pubDate>Sun, 26 Sep 2010 12:11:55 +0000</pubDate>
		<dc:creator>dividebyzeroZA</dc:creator>
				<category><![CDATA[Gaming]]></category>
		<category><![CDATA[achievements]]></category>
		<category><![CDATA[Dead Rising]]></category>
		<category><![CDATA[Xbox 360]]></category>
		<category><![CDATA[Zombies]]></category>

		<guid isPermaLink="false">http://www.dividebyzero.co.za/?p=277</guid>
		<description><![CDATA[Dead Rising 2 has one secret achievement to unlock and if you&#8217;re wondering how then you&#8217;ve come to the right place! Firstly, you&#8217;ll need to mix up some Nectar.  Nectar in Dead Rising is created by blending orange juice with orange juice.  You can find blenders in most bars and food courts around Fortune City. [...]


Related posts:<ol><li><a href='http://www.dividebyzero.co.za/blog/2010/10/dead-rising-2-zombie-genocide-master-achievement/' rel='bookmark' title='Dead Rising 2 Zombie Genocide Master Achievement'>Dead Rising 2 Zombie Genocide Master Achievement</a></li>
<li><a href='http://www.dividebyzero.co.za/blog/2010/09/dead-rising-2-burning-skull-combo-card/' rel='bookmark' title='Dead Rising 2 Burning Skull Combo Card'>Dead Rising 2 Burning Skull Combo Card</a></li>
<li><a href='http://www.dividebyzero.co.za/blog/2010/10/dead-rising-2-zombrex-locations/' rel='bookmark' title='Dead Rising 2 Zombrex Locations'>Dead Rising 2 Zombrex Locations</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><a title="Dead Rising 2" href="http://deadrising-2.com/" target="_blank">Dead Rising 2</a> has one secret achievement to unlock and if you&#8217;re wondering how then you&#8217;ve come to the right place!</p>
<p>Firstly, you&#8217;ll need to mix up some Nectar.  Nectar in Dead Rising is created by blending orange juice with orange juice.  You can find blenders in most bars and food courts around Fortune City.</p>
<p>Next up you&#8217;ll have to capture one of the <a title="Dead Rising Queen Bee" href="http://deadrising.wikia.com/wiki/Ampulex_Compressa_Giganteus" target="_blank">Queen Bees</a>.  These are found by hacking up one of the queen-infected zombies later in the game after the scene where Chuck crushes a Queen Bee.  The zombies are easy to spot as they stand looking like they&#8217;re trying to remove something from their neck.</p>
<p>Once you have a captured Queen Bee and your blended Nectar, head to a Maintenance Room and combine the Nectar and Queen Bee for Wingman.  The combo card will unlock along with unlocking the secret achievement called &#8220;Tape it or DIE!&#8221;</p>


<p>Related posts:<ol><li><a href='http://www.dividebyzero.co.za/blog/2010/10/dead-rising-2-zombie-genocide-master-achievement/' rel='bookmark' title='Dead Rising 2 Zombie Genocide Master Achievement'>Dead Rising 2 Zombie Genocide Master Achievement</a></li>
<li><a href='http://www.dividebyzero.co.za/blog/2010/09/dead-rising-2-burning-skull-combo-card/' rel='bookmark' title='Dead Rising 2 Burning Skull Combo Card'>Dead Rising 2 Burning Skull Combo Card</a></li>
<li><a href='http://www.dividebyzero.co.za/blog/2010/10/dead-rising-2-zombrex-locations/' rel='bookmark' title='Dead Rising 2 Zombrex Locations'>Dead Rising 2 Zombrex Locations</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.dividebyzero.co.za/blog/2010/09/dead-rising-2-secret-achievement/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Halo Reach &#8211; Start of Something achievement didn&#8217;t unlock</title>
		<link>http://www.dividebyzero.co.za/blog/2010/09/halo-reach-start-of-something-achievement-didnt-unlock/</link>
		<comments>http://www.dividebyzero.co.za/blog/2010/09/halo-reach-start-of-something-achievement-didnt-unlock/#comments</comments>
		<pubDate>Sun, 19 Sep 2010 12:10:35 +0000</pubDate>
		<dc:creator>dividebyzeroZA</dc:creator>
				<category><![CDATA[Gaming]]></category>
		<category><![CDATA[achievements]]></category>
		<category><![CDATA[Halo]]></category>
		<category><![CDATA[Xbox 360]]></category>

		<guid isPermaLink="false">http://www.dividebyzero.co.za/?p=271</guid>
		<description><![CDATA[Have you reached the rank of Corporal in Halo Reach recently and the achievement &#8220;Start of Something&#8221; didn&#8217;t unlock?  Well, the very thing happened to me and I have the solution! Simply start a Campaign mission, hit Start then select &#8220;Save &#38; Quit&#8221;.  The achievement should pop at that point. Good luck, Spartan! Related posts:Prototype [...]


Related posts:<ol><li><a href='http://www.dividebyzero.co.za/blog/2009/08/prototype-cleanup-achievement-guide/' rel='bookmark' title='Prototype &#8211; Cleanup Achievement Guide'>Prototype &#8211; Cleanup Achievement Guide</a></li>
<li><a href='http://www.dividebyzero.co.za/blog/2010/05/alan-wake-how-to-unlock-boob-tube-achievement/' rel='bookmark' title='Alan Wake &#8211; how to unlock Boob Tube achievement'>Alan Wake &#8211; how to unlock Boob Tube achievement</a></li>
<li><a href='http://www.dividebyzero.co.za/blog/2010/09/dead-rising-2-secret-achievement/' rel='bookmark' title='Dead Rising 2 Secret Achievement'>Dead Rising 2 Secret Achievement</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Have you reached the rank of Corporal in Halo Reach recently and the achievement &#8220;Start of Something&#8221; didn&#8217;t unlock?  Well, the very thing happened to me and I have the solution!</p>
<p>Simply start a Campaign mission, hit Start then select &#8220;Save &amp; Quit&#8221;.  The achievement should pop at that point.</p>
<p>Good luck, Spartan!</p>


<p>Related posts:<ol><li><a href='http://www.dividebyzero.co.za/blog/2009/08/prototype-cleanup-achievement-guide/' rel='bookmark' title='Prototype &#8211; Cleanup Achievement Guide'>Prototype &#8211; Cleanup Achievement Guide</a></li>
<li><a href='http://www.dividebyzero.co.za/blog/2010/05/alan-wake-how-to-unlock-boob-tube-achievement/' rel='bookmark' title='Alan Wake &#8211; how to unlock Boob Tube achievement'>Alan Wake &#8211; how to unlock Boob Tube achievement</a></li>
<li><a href='http://www.dividebyzero.co.za/blog/2010/09/dead-rising-2-secret-achievement/' rel='bookmark' title='Dead Rising 2 Secret Achievement'>Dead Rising 2 Secret Achievement</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.dividebyzero.co.za/blog/2010/09/halo-reach-start-of-something-achievement-didnt-unlock/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

