<?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>Ignite Blog by Ruxton &#187; Technology</title>
	<atom:link href="http://ignite.digitalignition.net/category/technology/feed/" rel="self" type="application/rss+xml" />
	<link>http://ignite.digitalignition.net</link>
	<description>by Ruxton</description>
	<lastBuildDate>Fri, 10 Feb 2012 02:04:11 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=</generator>
		<item>
		<title>Raw SMTP Sending</title>
		<link>http://ignite.digitalignition.net/2011/04/04/raw-smtp-sending/</link>
		<comments>http://ignite.digitalignition.net/2011/04/04/raw-smtp-sending/#comments</comments>
		<pubDate>Mon, 04 Apr 2011 01:19:52 +0000</pubDate>
		<dc:creator>Ruxton</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[how to]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[manual smtp]]></category>
		<category><![CDATA[raw smtp]]></category>
		<category><![CDATA[sending email]]></category>
		<category><![CDATA[smtp]]></category>

		<guid isPermaLink="false">http://ignite.digitalignition.net/?p=19015</guid>
		<description><![CDATA[<p>Sending RAW SMTP was something I used to do often as a support guy when troubleshooting customer&#8217;s email problems.  It&#8217;s an easy way to check for the existence of a user on a mail server and a simple way to test message sending/receiving.  Handy, but for ages I always forgot how to do it and what to type.  So, quite a few years ago I wrote up this lovely internal document to help me remember.  After switching jobs and doing less and less support I realised I didn&#8217;t have it anymore and couldn&#8217;t remember it all so I  proceeded to re-create it.</p>
<p><strong>The Short &#38; Curley</strong></p>
<pre><code>HELO servername
MAIL FROM: sender@adomain.com
RCPT TO: receiver@adomain.com
data
From: The Man Who Sent It <sender @adomain.com>
Subject: A Test Message

This is a test message to ensure your mail is working on the mail server end.

You can safely disregard this message.
.</sender></code></pre>
<p><strong>The Long Explanation</strong></p>
<p>First you need to identify to the SMTP server, the <em>helo</em> command takes care of this.  Most mail servers do a lot of anti-spam checks and for this reason it&#8217;s suggested the <em>servername </em>you provide should be a valid mail server.  That <em>servername</em> should also resolve to whatever IP address you&#8217;re connnecting from (another antispam measure).</p>
<pre><code>helo servername</code></pre>
<p>Next you provide the email address you&#8217;re sending from.  It doesn&#8217;t have to be a valid email adress, but many servers will use SPF to ensure you&#8217;re allowed to send for that user/domain.</p>
<pre><code>mail from: sender@adomain.com</code></pre>
<p>Follow that with the email you&#8217;re sending too.  If an error is thrown after this, pay attention to the message as it generally means you&#8217;ve got something wrong or that mail can&#8217;t be accepted by this mail server for that email address.</p>
<pre><code>rcpt to: receiver@adomain.com</code></pre>
<p>After this we follow with the <em>data</em> command, this tells the email server that everything after this and up until a single line with a lone fullstop (.) is part of the email message.  Some exceptions to this are things like the <em>Subject</em> and <em>From</em> lines, which are each used for pretty presentation in e-mail clients.</p>
<pre><code>data
From: The Man Who Sent It <sender @adomain.com>
Subject: Test Message

This is a test message to ensure your mail is working on the mail server end.

You can safely disregard this message.
.</sender></code></pre>
<p>Following all of this, hit enter again to queue the message for sending.  A full stop (period) as the first and only character on a line informs the SMTP server that the message is finished.<br/><br/><a class="geolocation-link" href="#" id="geolocation19015" name="-31.944836012388272,115.84432965087888" onclick="return false;">Posted from Perth, Western Australia, Australia.</a></p>
]]></description>
			<content:encoded><![CDATA[<p>Sending RAW SMTP was something I used to do often as a support guy when troubleshooting customer&#8217;s email problems.  It&#8217;s an easy way to check for the existence of a user on a mail server and a simple way to test message sending/receiving.  Handy, but for ages I always forgot how to do it and what to type.  So, quite a few years ago I wrote up this lovely internal document to help me remember.  After switching jobs and doing less and less support I realised I didn&#8217;t have it anymore and couldn&#8217;t remember it all so I  proceeded to re-create it.</p>
<p><strong>The Short &amp; Curley</strong></p>
<pre><code>HELO servername
MAIL FROM: sender@adomain.com
RCPT TO: receiver@adomain.com
data
From: The Man Who Sent It <sender @adomain.com>
Subject: A Test Message

This is a test message to ensure your mail is working on the mail server end.

You can safely disregard this message.
.</sender></code></pre>
<p><strong>The Long Explanation</strong></p>
<p>First you need to identify to the SMTP server, the <em>helo</em> command takes care of this.  Most mail servers do a lot of anti-spam checks and for this reason it&#8217;s suggested the <em>servername </em>you provide should be a valid mail server.  That <em>servername</em> should also resolve to whatever IP address you&#8217;re connnecting from (another antispam measure).</p>
<pre><code>helo servername</code></pre>
<p>Next you provide the email address you&#8217;re sending from.  It doesn&#8217;t have to be a valid email adress, but many servers will use SPF to ensure you&#8217;re allowed to send for that user/domain.</p>
<pre><code>mail from: sender@adomain.com</code></pre>
<p>Follow that with the email you&#8217;re sending too.  If an error is thrown after this, pay attention to the message as it generally means you&#8217;ve got something wrong or that mail can&#8217;t be accepted by this mail server for that email address.</p>
<pre><code>rcpt to: receiver@adomain.com</code></pre>
<p>After this we follow with the <em>data</em> command, this tells the email server that everything after this and up until a single line with a lone fullstop (.) is part of the email message.  Some exceptions to this are things like the <em>Subject</em> and <em>From</em> lines, which are each used for pretty presentation in e-mail clients.</p>
<pre><code>data
From: The Man Who Sent It <sender @adomain.com>
Subject: Test Message

This is a test message to ensure your mail is working on the mail server end.

You can safely disregard this message.
.</sender></code></pre>
<p>Following all of this, hit enter again to queue the message for sending.  A full stop (period) as the first and only character on a line informs the SMTP server that the message is finished.<br/><br/><a class="geolocation-link" href="#" id="geolocation19015" name="-31.944836012388272,115.84432965087888" onclick="return false;">Posted from Perth, Western Australia, Australia.</a></p>
]]></content:encoded>
			<wfw:commentRss>http://ignite.digitalignition.net/2011/04/04/raw-smtp-sending/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Applications I&#8217;m Using On The iPhone</title>
		<link>http://ignite.digitalignition.net/2009/11/16/applications-im-using-on-the-iphone/</link>
		<comments>http://ignite.digitalignition.net/2009/11/16/applications-im-using-on-the-iphone/#comments</comments>
		<pubDate>Mon, 16 Nov 2009 07:53:22 +0000</pubDate>
		<dc:creator>Ruxton</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[applications]]></category>
		<category><![CDATA[ipa]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[iphone applications]]></category>
		<category><![CDATA[iphone apps]]></category>
		<category><![CDATA[itms]]></category>
		<category><![CDATA[itunes]]></category>
		<category><![CDATA[itunes store]]></category>

		<guid isPermaLink="false">http://ignite.digitalignition.net/?p=470</guid>
		<description><![CDATA[<p>I thought it might be a cool idea to get through a list of applicatons i&#8217;m using on the iPhone and what each application does.  Sometimes it&#8217;s hard to get an idea of what iPhone apps you should try out, so here goes my list.</p>
<ol>
<li><a title="Get Tweetdeck for iPhone Free Now!" href="http://www.rhythmandpoetry.net/itunes/TweetDeck-TweetDeck_for_iPhone">Tweetdeck</a> &#8211; Possibly the best iPhone application for Twitter, TweetDeck is great for users who are following lots of people.</li>
<li><a title="Get the free Yahoo!-flickR iPhone application from the iTunes store" href="http://www.rhythmandpoetry.net/itunes/Yahoo-Flickr">Flickr</a> &#8211; Yahoo&#8217;s Flickr iPhone application is used for browsing flickr and uploading your iPhone photos</li>
<li><a title="Get the free eBay Mobile iPhone application from the iTunes store now!" href="http://www.rhythmandpoetry.net/itunes/eBay_Inc-eBay_Mobile">eBay Mobile</a> &#8211; eBay on the go, this application is great for just browsing eBay on the move or getting push reminders about watch items</li>
<li><a title="Get the iPhone radio streaming application FStream from the iTunes store now, free of charge" href="http://www.rhythmandpoetry.net/itunes/SourceMac-FStream">FStream</a> &#8211; FStream is great for listening to those streaming radio stations on the go!</li>
<li><a title="Get the free Google Earth iPhone application from the iTunes store now!" href="http://www.rhythmandpoetry.net/itunes/Google-Google_Earth">Google Earth</a> &#8211; The world at your fingertips, literally!</li>
<li><a title="Get the free Google Mobile iPhone application from the iTunes store now" href="http://www.rhythmandpoetry.net/itunes/Google-Google_Mobile_App">Google Mobile Application</a> &#8211; Everything google Web App under one convenient roof, it&#8217;d be nice if the web apps launched inside this app though.</li>
<li><a title="Get the iPhone application for your WordPress blogs for free from the iTunes store!" href="http://www.rhythmandpoetry.net/itunes/Automattic-WordPress_2">WordPress 2</a> &#8211; WordPress 2 is an application to manage your WordPress blog, whether it be creating and editing posts or trashing comments.</li>
<li><a title="Buy Uno for the iPhone from the iTunes store now!" href="http://www.rhythmandpoetry.net/itunes/Gameloft-UNO%25e2%2584%25a2">Uno™</a> &#8211; Do you know Uno? The great game, transformed to iPhone with multiplayer capabilities.  A free version is available if you don&#8217;t want multiplayer.</li>
<li><a title="Get the official Facebook iPhone application for free!" href="http://www.rhythmandpoetry.net/itunes/Facebook-Facebook">Facebook</a> &#8211; Facebook, duh.</li>
<li><a title="Get the free Stanza application for your iPhone and start reading on your phone today!" href="http://www.rhythmandpoetry.net/itunes/Lexcycle-Stanza">Stanza</a> &#8211; Stanza is an e-book application for the iPhone and features purchasing through FeedBooks and others, plenty of free works available.</li>
<li><a title="Get the free Remote for iTunes for your iPhone from the iTunes store now" href="http://www.rhythmandpoetry.net/itunes/Apple_Inc-Remote">Apple iTunes Remote</a> &#8211; A must for all iTunes users the remote will allow you to control iTunes over your wireless network.</li>
<li><a title="Buy the game Ramp Champ for your iPhone from iTunes now!" href="http://www.rhythmandpoetry.net/itunes/The_Iconfactory-Ramp_Champ">RampChamp</a> &#8211; Another addictive casual game, think shooting or ball toss at the carnival</li>
<li><a title="Buy Quota for your iPhone from iTunes now!" href="http://www.rhythmandpoetry.net/itunes/SouthFreo_Software-Quota">Quota</a> &#8211; Quota is an application for viewing your bandwidth quota with ISP&#8217;s like Telstra, iiNet, Optus, 3 Mobile, etc. free versions are available for iiNet and Optus</li>
<li><a title="Buy Popcap's casual nightmare Peggle for your iPhone from the iTunes store today" href="http://www.rhythmandpoetry.net/itunes/PopCap_Games_Inc-Peggle">Peggle</a> &#8211; The world&#8217;s most addictive casual game is now on the iPhone, waste time wherever you may be!</li>
<li><a title="Buy ozPDA's Oz Weather iPhone application from the iTunes store" href="http://www.rhythmandpoetry.net/itunes/ozPDA-Oz_Weather">Oz Weather</a> &#8211; The best weather tool for Australia on iPhone, Oz Weather data is supplied by BOM and doesn&#8217;t just provide numbers, but satellite imagery also.</li>
<li><a title="Get the free game OsXs (naughts n crosses) from the iTunes store for your iPhone today!" href="http://www.rhythmandpoetry.net/itunes/Frosty_Badger-OsXs">OsXs</a> &#8211; OsXs is a free Naught and Crosses game from some guys i know</li>
<li><a title="Buy NetNewswirePremium from the iTunes Store now!" href="http://www.rhythmandpoetry.net/itunes/NewsGator_Technologies_Inc-NetNewsWire_Premium">NetNewsWire Premium</a> <a title="Get the free NetNewsWire for iPhone from the iTunes store now!" href="http://www.rhythmandpoetry.net/itunes/NewsGator_Technologies_Inc-NetNewsWire">(Free/Lite/Ad Version)</a></li>
<li><a title="Get the Domino's Pizza iPhone application from the iTunes store free of charge now!" href="http://www.rhythmandpoetry.net/itunes/Dominos_Pizza_Enterprises_Limited-Dominos">Domino&#8217;s Pizza</a> &#8211; Sometimes you just want to order cheap pizza and have it meet you at home, this iPhone application will do just that</li>
<li><a title="Buy Crash Bandicoot Nitro Kart 3D for iPhone from iTunes now!" href="http://www.rhythmandpoetry.net/itunes/Vivendi_Games_Mobile-Crash_Bandicoot_Nitro_Kart_3D">Crash Bandicoot Nitro Kart 3D</a> &#8211; One of the first driving games to hit the iPhone, a fun little game</li>
<li><a title="Get Cardstar for iPhone for free from iTunes now!" href="http://www.rhythmandpoetry.net/itunes/CardStar_Inc-CardStar">CardStar</a> &#8211; CardStar is an application for storing the barcodes of all those customer loyalty cards you carry around, enter them all in CardStar and never carry them around in your wallet again.</li>
<li><a title="Buy Bomberman Touch 2- Volcano Party for iPhone Now!" href="http://www.rhythmandpoetry.net/itunes/Hudson-BOMBERMAN_TOUCH_2_-VOLCANO_PARTY">Bomberman Touch 2 &#8211; Volcano Party</a> &#8211; A classic video game, the Bomberman series for iPhone is everything you&#8217;d expect it to be and then some.</li>
</ol>
]]></description>
			<content:encoded><![CDATA[<p>I thought it might be a cool idea to get through a list of applicatons i&#8217;m using on the iPhone and what each application does.  Sometimes it&#8217;s hard to get an idea of what iPhone apps you should try out, so here goes my list.</p>
<ol>
<li><a title="Get Tweetdeck for iPhone Free Now!" href="http://www.rhythmandpoetry.net/itunes/TweetDeck-TweetDeck_for_iPhone">Tweetdeck</a> &#8211; Possibly the best iPhone application for Twitter, TweetDeck is great for users who are following lots of people.</li>
<li><a title="Get the free Yahoo!-flickR iPhone application from the iTunes store" href="http://www.rhythmandpoetry.net/itunes/Yahoo-Flickr">Flickr</a> &#8211; Yahoo&#8217;s Flickr iPhone application is used for browsing flickr and uploading your iPhone photos</li>
<li><a title="Get the free eBay Mobile iPhone application from the iTunes store now!" href="http://www.rhythmandpoetry.net/itunes/eBay_Inc-eBay_Mobile">eBay Mobile</a> &#8211; eBay on the go, this application is great for just browsing eBay on the move or getting push reminders about watch items</li>
<li><a title="Get the iPhone radio streaming application FStream from the iTunes store now, free of charge" href="http://www.rhythmandpoetry.net/itunes/SourceMac-FStream">FStream</a> &#8211; FStream is great for listening to those streaming radio stations on the go!</li>
<li><a title="Get the free Google Earth iPhone application from the iTunes store now!" href="http://www.rhythmandpoetry.net/itunes/Google-Google_Earth">Google Earth</a> &#8211; The world at your fingertips, literally!</li>
<li><a title="Get the free Google Mobile iPhone application from the iTunes store now" href="http://www.rhythmandpoetry.net/itunes/Google-Google_Mobile_App">Google Mobile Application</a> &#8211; Everything google Web App under one convenient roof, it&#8217;d be nice if the web apps launched inside this app though.</li>
<li><a title="Get the iPhone application for your WordPress blogs for free from the iTunes store!" href="http://www.rhythmandpoetry.net/itunes/Automattic-WordPress_2">WordPress 2</a> &#8211; WordPress 2 is an application to manage your WordPress blog, whether it be creating and editing posts or trashing comments.</li>
<li><a title="Buy Uno for the iPhone from the iTunes store now!" href="http://www.rhythmandpoetry.net/itunes/Gameloft-UNO%25e2%2584%25a2">Uno™</a> &#8211; Do you know Uno? The great game, transformed to iPhone with multiplayer capabilities.  A free version is available if you don&#8217;t want multiplayer.</li>
<li><a title="Get the official Facebook iPhone application for free!" href="http://www.rhythmandpoetry.net/itunes/Facebook-Facebook">Facebook</a> &#8211; Facebook, duh.</li>
<li><a title="Get the free Stanza application for your iPhone and start reading on your phone today!" href="http://www.rhythmandpoetry.net/itunes/Lexcycle-Stanza">Stanza</a> &#8211; Stanza is an e-book application for the iPhone and features purchasing through FeedBooks and others, plenty of free works available.</li>
<li><a title="Get the free Remote for iTunes for your iPhone from the iTunes store now" href="http://www.rhythmandpoetry.net/itunes/Apple_Inc-Remote">Apple iTunes Remote</a> &#8211; A must for all iTunes users the remote will allow you to control iTunes over your wireless network.</li>
<li><a title="Buy the game Ramp Champ for your iPhone from iTunes now!" href="http://www.rhythmandpoetry.net/itunes/The_Iconfactory-Ramp_Champ">RampChamp</a> &#8211; Another addictive casual game, think shooting or ball toss at the carnival</li>
<li><a title="Buy Quota for your iPhone from iTunes now!" href="http://www.rhythmandpoetry.net/itunes/SouthFreo_Software-Quota">Quota</a> &#8211; Quota is an application for viewing your bandwidth quota with ISP&#8217;s like Telstra, iiNet, Optus, 3 Mobile, etc. free versions are available for iiNet and Optus</li>
<li><a title="Buy Popcap's casual nightmare Peggle for your iPhone from the iTunes store today" href="http://www.rhythmandpoetry.net/itunes/PopCap_Games_Inc-Peggle">Peggle</a> &#8211; The world&#8217;s most addictive casual game is now on the iPhone, waste time wherever you may be!</li>
<li><a title="Buy ozPDA's Oz Weather iPhone application from the iTunes store" href="http://www.rhythmandpoetry.net/itunes/ozPDA-Oz_Weather">Oz Weather</a> &#8211; The best weather tool for Australia on iPhone, Oz Weather data is supplied by BOM and doesn&#8217;t just provide numbers, but satellite imagery also.</li>
<li><a title="Get the free game OsXs (naughts n crosses) from the iTunes store for your iPhone today!" href="http://www.rhythmandpoetry.net/itunes/Frosty_Badger-OsXs">OsXs</a> &#8211; OsXs is a free Naught and Crosses game from some guys i know</li>
<li><a title="Buy NetNewswirePremium from the iTunes Store now!" href="http://www.rhythmandpoetry.net/itunes/NewsGator_Technologies_Inc-NetNewsWire_Premium">NetNewsWire Premium</a> <a title="Get the free NetNewsWire for iPhone from the iTunes store now!" href="http://www.rhythmandpoetry.net/itunes/NewsGator_Technologies_Inc-NetNewsWire">(Free/Lite/Ad Version)</a></li>
<li><a title="Get the Domino's Pizza iPhone application from the iTunes store free of charge now!" href="http://www.rhythmandpoetry.net/itunes/Dominos_Pizza_Enterprises_Limited-Dominos">Domino&#8217;s Pizza</a> &#8211; Sometimes you just want to order cheap pizza and have it meet you at home, this iPhone application will do just that</li>
<li><a title="Buy Crash Bandicoot Nitro Kart 3D for iPhone from iTunes now!" href="http://www.rhythmandpoetry.net/itunes/Vivendi_Games_Mobile-Crash_Bandicoot_Nitro_Kart_3D">Crash Bandicoot Nitro Kart 3D</a> &#8211; One of the first driving games to hit the iPhone, a fun little game</li>
<li><a title="Get Cardstar for iPhone for free from iTunes now!" href="http://www.rhythmandpoetry.net/itunes/CardStar_Inc-CardStar">CardStar</a> &#8211; CardStar is an application for storing the barcodes of all those customer loyalty cards you carry around, enter them all in CardStar and never carry them around in your wallet again.</li>
<li><a title="Buy Bomberman Touch 2- Volcano Party for iPhone Now!" href="http://www.rhythmandpoetry.net/itunes/Hudson-BOMBERMAN_TOUCH_2_-VOLCANO_PARTY">Bomberman Touch 2 &#8211; Volcano Party</a> &#8211; A classic video game, the Bomberman series for iPhone is everything you&#8217;d expect it to be and then some.</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://ignite.digitalignition.net/2009/11/16/applications-im-using-on-the-iphone/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Recycled: iTunes, iPod, iPhone.. iChoose?</title>
		<link>http://ignite.digitalignition.net/2009/08/12/recycled-itunes-ipod-iphone-ichoose/</link>
		<comments>http://ignite.digitalignition.net/2009/08/12/recycled-itunes-ipod-iphone-ichoose/#comments</comments>
		<pubDate>Wed, 12 Aug 2009 01:30:30 +0000</pubDate>
		<dc:creator>Ruxton</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[choice]]></category>
		<category><![CDATA[choose]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[iphone syncing]]></category>
		<category><![CDATA[iphone updates]]></category>
		<category><![CDATA[ipod]]></category>
		<category><![CDATA[ipod syncing]]></category>
		<category><![CDATA[ipod updates]]></category>
		<category><![CDATA[itunes]]></category>
		<category><![CDATA[lock in]]></category>
		<category><![CDATA[monopoly tactics]]></category>
		<category><![CDATA[pda]]></category>
		<category><![CDATA[rabpd]]></category>
		<category><![CDATA[software updates]]></category>
		<category><![CDATA[sync]]></category>
		<category><![CDATA[sync software]]></category>
		<category><![CDATA[syncing]]></category>

		<guid isPermaLink="false">http://ignite.digitalignition.net/?p=422</guid>
		<description><![CDATA[<p><a title="iTunes, iPod, iPhone.. iChoose?" href="http://ignite.digitalignition.net/2008/07/15/itunes-ipod-iphone-ichoose/">Original post date: 2008-07-05</a></p>
<p><a title="Recycle A Blog Post Day 2009" href="http://ignite.digitalignition.net/2009/08/11/recycle-a-blog-post-day-2009-08-12/">Recycled for Recycle A Blog Post Day</a></p>
<div>
<p>Something just occurred to me this evening and it has to do with software companies and the monopoly ‘lock in’ tactics that some use.  Microsoft was pulled up over forcing Internet Explorer on people in XP many moons ago now and I’m sure we’re all completely happy with how it eventually turned out, most of us use Firefox and Windows now recognises something called a ‘default browser’.</p>
<p>Fast forward a few years and we’ve seen Apple since day one, ram iTunes down the throat of every ipod owner in the world. This was understandable, after all it’s a portable music player and it only ran on OSX to start with, so it’s ok to force a music player that’s already installed on the operating system along with the device to provide sync support, in fact it totally makes sense.  That is until they released on windows and iTunes wasn’t that great, also for years we’ve all been using Winamp or Windows Media Player and have no desire to switch to iTunes.</p>
<p>The one thing that always turned me off the iPod was iTunes, because on Mac it runs great but on Windows it just blows hard.  I was pretty much given a 20Gb iPod photo a while back and was glad to see Winamp supported sync of the iPod (just like it did my WM6 device), so i didn’t have to piss around with iTunes.  Wishful thinking, i still had to install iTunes just so i can restore and manage updates to my ipod, still.. i can swallow it, it’s a media player it makes sense that the program that controls the syncing is also a media player, right?</p>
<p>Here’s where it gets interesting, Apple released the iPhone, it runs it’s own flavour of iTunes/iPod and along with that is pretty much a fully blown smart phone/PDA.  So heres where i begin to question the integrity of iTunes, when i’m syncing my Calendar, Music, Contacts, Photos, Videos, Software Updates and Applications all through what used to be a media player that i will soon be forced to use 100%, just so i can keep my mobile phone up to date.  This little twist, in my opinion, makes the iTunes/iPhone(ipod) combo way worse than Microsoft ever did with Internet Explorer, yet for someone reason.. no one seems to give a shit? everyone is just copping it and dealing it with.</p>
<p>I shouldn’t have to install a media player that i don’t want to use, just because someone decided the updates for my phone should be delivered through it.  It’s high time Apple released something that synced everything on your phone without using iTunes, perhaps an extended iSync for Windows/OSX with the ability to put files into the devices media player DB without iTunes?</p>
<p>iTunes should be a media player, it should have a ’sync interface’ that any device can use (listen closely apple).  Apple should have some central ’sync software’ for their ipod/iphone collection that acts as a central point between the devices and ANY software (Yeah that’s right apple, not just iTunes).  This way apple can still maintain proprietary code in iTunes and in the way they handle the sync, but still allow people to make decisions for themselves about what software they want to use and not have something they don’t want to use, rammed down their throat.</p>
<p>Oh and please, this isn’t some debate about what’s better and what’s not, because that’s always going to come down to user preference, which is something Apple isn’t providing right now.  Yes i know most other major portable media players are playing the game the same way, but that doesn’t mean they’re playing fairly for us, the consumers.  Perhaps one day people will learn to work together a little to build great things instead of trying to win the war, whether it be a format war, a software war or just good old fashioned war.</p></div>
]]></description>
			<content:encoded><![CDATA[<p><a title="iTunes, iPod, iPhone.. iChoose?" href="http://ignite.digitalignition.net/2008/07/15/itunes-ipod-iphone-ichoose/">Original post date: 2008-07-05</a></p>
<p><a title="Recycle A Blog Post Day 2009" href="http://ignite.digitalignition.net/2009/08/11/recycle-a-blog-post-day-2009-08-12/">Recycled for Recycle A Blog Post Day</a></p>
<div>
<p>Something just occurred to me this evening and it has to do with software companies and the monopoly ‘lock in’ tactics that some use.  Microsoft was pulled up over forcing Internet Explorer on people in XP many moons ago now and I’m sure we’re all completely happy with how it eventually turned out, most of us use Firefox and Windows now recognises something called a ‘default browser’.</p>
<p>Fast forward a few years and we’ve seen Apple since day one, ram iTunes down the throat of every ipod owner in the world. This was understandable, after all it’s a portable music player and it only ran on OSX to start with, so it’s ok to force a music player that’s already installed on the operating system along with the device to provide sync support, in fact it totally makes sense.  That is until they released on windows and iTunes wasn’t that great, also for years we’ve all been using Winamp or Windows Media Player and have no desire to switch to iTunes.</p>
<p>The one thing that always turned me off the iPod was iTunes, because on Mac it runs great but on Windows it just blows hard.  I was pretty much given a 20Gb iPod photo a while back and was glad to see Winamp supported sync of the iPod (just like it did my WM6 device), so i didn’t have to piss around with iTunes.  Wishful thinking, i still had to install iTunes just so i can restore and manage updates to my ipod, still.. i can swallow it, it’s a media player it makes sense that the program that controls the syncing is also a media player, right?</p>
<p>Here’s where it gets interesting, Apple released the iPhone, it runs it’s own flavour of iTunes/iPod and along with that is pretty much a fully blown smart phone/PDA.  So heres where i begin to question the integrity of iTunes, when i’m syncing my Calendar, Music, Contacts, Photos, Videos, Software Updates and Applications all through what used to be a media player that i will soon be forced to use 100%, just so i can keep my mobile phone up to date.  This little twist, in my opinion, makes the iTunes/iPhone(ipod) combo way worse than Microsoft ever did with Internet Explorer, yet for someone reason.. no one seems to give a shit? everyone is just copping it and dealing it with.</p>
<p>I shouldn’t have to install a media player that i don’t want to use, just because someone decided the updates for my phone should be delivered through it.  It’s high time Apple released something that synced everything on your phone without using iTunes, perhaps an extended iSync for Windows/OSX with the ability to put files into the devices media player DB without iTunes?</p>
<p>iTunes should be a media player, it should have a ’sync interface’ that any device can use (listen closely apple).  Apple should have some central ’sync software’ for their ipod/iphone collection that acts as a central point between the devices and ANY software (Yeah that’s right apple, not just iTunes).  This way apple can still maintain proprietary code in iTunes and in the way they handle the sync, but still allow people to make decisions for themselves about what software they want to use and not have something they don’t want to use, rammed down their throat.</p>
<p>Oh and please, this isn’t some debate about what’s better and what’s not, because that’s always going to come down to user preference, which is something Apple isn’t providing right now.  Yes i know most other major portable media players are playing the game the same way, but that doesn’t mean they’re playing fairly for us, the consumers.  Perhaps one day people will learn to work together a little to build great things instead of trying to win the war, whether it be a format war, a software war or just good old fashioned war.</p></div>
]]></content:encoded>
			<wfw:commentRss>http://ignite.digitalignition.net/2009/08/12/recycled-itunes-ipod-iphone-ichoose/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>PayPal Developer Day Perth</title>
		<link>http://ignite.digitalignition.net/2009/07/24/paypal-developer-day-perth/</link>
		<comments>http://ignite.digitalignition.net/2009/07/24/paypal-developer-day-perth/#comments</comments>
		<pubDate>Fri, 24 Jul 2009 12:25:02 +0000</pubDate>
		<dc:creator>Ruxton</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[Web Dev]]></category>
		<category><![CDATA[paypal]]></category>
		<category><![CDATA[paypal developer day]]></category>
		<category><![CDATA[paypaldd]]></category>
		<category><![CDATA[paypaldd 2009]]></category>

		<guid isPermaLink="false">http://ignite.digitalignition.net/?p=400</guid>
		<description><![CDATA[<p>Through some work of magic i dragged myself out of bed at 6am this morning so i could get into the city by 8am to goto the PayPal Developer Day, a half day event put on by PayPal to engage the web developer community.  While the day was great and I learnt alot about PayPal&#8217;s products, a few issues come to mind.</p>
<ol>
<li>I got the feeling PayPal loves the buyer more than the Merchant, something seems backwards there</li>
<li>PayPal want you to think &#8220;outside the box&#8221; but still do things their way?  I must say though, being forced to do things their way is sometimes a good thing, othertimes not so much.</li>
<li>Criticism is generally met with spin &#8211; some products were criticised or lack of products and spin spin &#8220;maybe we will, maybe we&#8217;ll do something else&#8221; just answer the question, if you don&#8217;t know you don&#8217;t know.</li>
<li>They failed to engage our local web community as a whole, due to this the turnout was terrible, next time get in touch with the AWIA.</li>
<li>My security key won&#8217;t activate, i called on the phone for help (i&#8217;ll never be calling PayPal again, just because your primary business is online, it doesn&#8217;t mean your phone support can be TERRIBLE, yes that&#8217;s right my experience was TERRIBLE)</li>
</ol>
<p>I want to expand upon that last point, at the event we were told we could activate the security keys onto our accounts, upon trying to do this when i got back to work it just wouldn&#8217;t activate.  The error eventually told me to call the 1800 number, which i did.  After waiting on hold i spoke to a girl who basically kept telling me I had no card associate with my account and i didn&#8217;t order it, after i repeatidly told her how i aquired it free at the Developer Day.  She then asked me if it was an eBay security key, which i told her it wasn&#8217;t, she then told me it was an eBay security key because thats the only way i can get a free one and that i needed to call eBay.  After 15 minutes of this back and forth over the card i gave up, fairwelled the young lady, tweeted to @PayPalAustralia to try get help (still waiting but thats ok, it&#8217;s friday night) and now have a very negative perception of the kind of service my customers are going to receive when they phone PayPal with an issue.</p>
<p>Later in the afternoon i thought i&#8217;d try my hand at another call (after all the website did tell me to call that number to sort it out).  This time, the prompter forwarded me to another line that basically went like this &#8220;We&#8217;re experiencing a high volume of calls at the moment, most questions can be answered by visting the help link at the top of every page, Thank You for calling PayPal, have a nice day *hang up*&#8221;.  Ummm, if the call centre your IVR is targetting me to doesn&#8217;t have enough lines to take my call, that&#8217;s possibly the worst way you can handle the situtation.</p>
<p>All in all the developer day itself was great and i hope they come back next year if only so everyone can come next time.  But I feel PayPal Australia still have a bit more to do in Australia to win people over, they still have a very negative perception amongst alot of users (just because they&#8217;re active users, doesn&#8217;t mean they&#8217;re happy users), but they definately look to be taking steps towards changing how they&#8217;re perceived.</p>
]]></description>
			<content:encoded><![CDATA[<p>Through some work of magic i dragged myself out of bed at 6am this morning so i could get into the city by 8am to goto the PayPal Developer Day, a half day event put on by PayPal to engage the web developer community.  While the day was great and I learnt alot about PayPal&#8217;s products, a few issues come to mind.</p>
<ol>
<li>I got the feeling PayPal loves the buyer more than the Merchant, something seems backwards there</li>
<li>PayPal want you to think &#8220;outside the box&#8221; but still do things their way?  I must say though, being forced to do things their way is sometimes a good thing, othertimes not so much.</li>
<li>Criticism is generally met with spin &#8211; some products were criticised or lack of products and spin spin &#8220;maybe we will, maybe we&#8217;ll do something else&#8221; just answer the question, if you don&#8217;t know you don&#8217;t know.</li>
<li>They failed to engage our local web community as a whole, due to this the turnout was terrible, next time get in touch with the AWIA.</li>
<li>My security key won&#8217;t activate, i called on the phone for help (i&#8217;ll never be calling PayPal again, just because your primary business is online, it doesn&#8217;t mean your phone support can be TERRIBLE, yes that&#8217;s right my experience was TERRIBLE)</li>
</ol>
<p>I want to expand upon that last point, at the event we were told we could activate the security keys onto our accounts, upon trying to do this when i got back to work it just wouldn&#8217;t activate.  The error eventually told me to call the 1800 number, which i did.  After waiting on hold i spoke to a girl who basically kept telling me I had no card associate with my account and i didn&#8217;t order it, after i repeatidly told her how i aquired it free at the Developer Day.  She then asked me if it was an eBay security key, which i told her it wasn&#8217;t, she then told me it was an eBay security key because thats the only way i can get a free one and that i needed to call eBay.  After 15 minutes of this back and forth over the card i gave up, fairwelled the young lady, tweeted to @PayPalAustralia to try get help (still waiting but thats ok, it&#8217;s friday night) and now have a very negative perception of the kind of service my customers are going to receive when they phone PayPal with an issue.</p>
<p>Later in the afternoon i thought i&#8217;d try my hand at another call (after all the website did tell me to call that number to sort it out).  This time, the prompter forwarded me to another line that basically went like this &#8220;We&#8217;re experiencing a high volume of calls at the moment, most questions can be answered by visting the help link at the top of every page, Thank You for calling PayPal, have a nice day *hang up*&#8221;.  Ummm, if the call centre your IVR is targetting me to doesn&#8217;t have enough lines to take my call, that&#8217;s possibly the worst way you can handle the situtation.</p>
<p>All in all the developer day itself was great and i hope they come back next year if only so everyone can come next time.  But I feel PayPal Australia still have a bit more to do in Australia to win people over, they still have a very negative perception amongst alot of users (just because they&#8217;re active users, doesn&#8217;t mean they&#8217;re happy users), but they definately look to be taking steps towards changing how they&#8217;re perceived.</p>
]]></content:encoded>
			<wfw:commentRss>http://ignite.digitalignition.net/2009/07/24/paypal-developer-day-perth/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>You Don&#8217;t Need Find The Phone Apps..</title>
		<link>http://ignite.digitalignition.net/2009/07/22/you-dont-need-find-the-phone-apps/</link>
		<comments>http://ignite.digitalignition.net/2009/07/22/you-dont-need-find-the-phone-apps/#comments</comments>
		<pubDate>Wed, 22 Jul 2009 15:25:50 +0000</pubDate>
		<dc:creator>Ruxton</dc:creator>
				<category><![CDATA[Life]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[good people]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[iphone apps]]></category>
		<category><![CDATA[losing phone]]></category>
		<category><![CDATA[lost iphone]]></category>

		<guid isPermaLink="false">http://ignite.digitalignition.net/?p=390</guid>
		<description><![CDATA[<p>Last night mid-way through my train ride home i had a sudden realisation, i had no idea where my phone was and I left the office with it, OUCH.  The though patterns started to retrace, etc. I got off the train a stop early and shot to my parents house to use their phone to try call it, unfortunately the battery on my phone was dead.</p>
<p>Sitting at my parents house I started to realise where it got to and convinced my mum to drive me 40 odd minutes back to work and wait for me while I looked everywhere for it.  You can be assured I didn&#8217;t find it and in a way I&#8217;m kind of retrospectively happy about it.</p>
<p>I slept like crap last night, not because I lost an iPhone (that&#8217;s laughable), but because I couldn&#8217;t stop thinking of all the things connected to my iPhone i needed to be changing passwords on or watching like a hawk.  The list was huge, my phone has been seriously connected to my life since the XDA Atom. In the end I gave up and resigned to changing things that matter and preying someone would use the public services like Facebook, last.fm or Twitter.</p>
<p>Everyone kept saying to me &#8220;Don&#8217;t you have that app that helps you find your fone?&#8221; &#8220;Dont you have mobile me?&#8221; my response was simple &#8220;None of that helps when it&#8217;s flat&#8221; and even if it wasn&#8217;t i would&#8217;ve been able call it and find it anyway, unless of course they threw the sim.  At no point amongst any of this banter did I remember that I could just log straight into my Apps4Rent WebMail, hit options and wipe my device, had I realised this I would&#8217;ve done it last night.</p>
<p>This is the greatest feature ever, who cares about finding your phone i was too busy caring about every ounce of what my life that was on there.  The hardware was replaceable, someone having someone elses pesronal data is not a good thing in my books.</p>
<p>So I&#8217;d been calling it all today (and so had friends and family it seemed) and finally at about 10 past 5 it came on and someone answered, OMFG! Not only does this guy have my phone, he lives around the corner and rides the exact same train stops as me.  We often cross paths at the train station and even ride the same train, had I _NOT_ gone to my Mum&#8217;s house, this guy would&#8217;ve walked right passed me about 10 minutes later while i waited for my friends, with my phone in his bag unknowing that it belonged to me.</p>
<p>I put a call block on my phone last night as I didn&#8217;t want un-necessary calls going out and the first thing he tried to do when the phone powered up was call entries like &#8220;Dad&#8221;.  When they didn&#8217;t work, he went to the start of my phone book and tried to call the first person and a few seconds later <a title="Chris Messina's - The Landscaper" href="http://landscaper.visual-assault.net/">Chris</a> called him and we organised to get the phone back.  Long story short, he came around in his car about 20 minutes later with my phone and I don&#8217;t think i&#8217;ve ever felt so happy, relieved or thankfull.  I owe this guy something and he&#8217;ll get it along with worlds of good karma. The hard part is i&#8217;m going to be so happy everytime this guy turns up anywhere near me for the next few weeks, his presence is just going to remind me that people are still amazing.</p>
<p>Some points to take away:</p>
<ul>
<li>What good are these &#8220;find the phone&#8221; services when theres no sim/battery?</li>
<li>Does chaning the password on my exchange/mobile me acct, stop the find the phone/remote wipe from working?</li>
<li>If i&#8217;d done a remote wipe, he&#8217;d never been able to have seen who the phone belonged too, he&#8217;d never have been able to try call Dad, he&#8217;d never know who was calling when we rang, <em>it may not have been callable anymore?</em></li>
<li><em><strong>Good people still exist<br />
</strong></em></li>
<li><em><strong>I think i have a guardian angel watching closely or something like that&#8230;.<br />
</strong></em></li>
</ul>
]]></description>
			<content:encoded><![CDATA[<p>Last night mid-way through my train ride home i had a sudden realisation, i had no idea where my phone was and I left the office with it, OUCH.  The though patterns started to retrace, etc. I got off the train a stop early and shot to my parents house to use their phone to try call it, unfortunately the battery on my phone was dead.</p>
<p>Sitting at my parents house I started to realise where it got to and convinced my mum to drive me 40 odd minutes back to work and wait for me while I looked everywhere for it.  You can be assured I didn&#8217;t find it and in a way I&#8217;m kind of retrospectively happy about it.</p>
<p>I slept like crap last night, not because I lost an iPhone (that&#8217;s laughable), but because I couldn&#8217;t stop thinking of all the things connected to my iPhone i needed to be changing passwords on or watching like a hawk.  The list was huge, my phone has been seriously connected to my life since the XDA Atom. In the end I gave up and resigned to changing things that matter and preying someone would use the public services like Facebook, last.fm or Twitter.</p>
<p>Everyone kept saying to me &#8220;Don&#8217;t you have that app that helps you find your fone?&#8221; &#8220;Dont you have mobile me?&#8221; my response was simple &#8220;None of that helps when it&#8217;s flat&#8221; and even if it wasn&#8217;t i would&#8217;ve been able call it and find it anyway, unless of course they threw the sim.  At no point amongst any of this banter did I remember that I could just log straight into my Apps4Rent WebMail, hit options and wipe my device, had I realised this I would&#8217;ve done it last night.</p>
<p>This is the greatest feature ever, who cares about finding your phone i was too busy caring about every ounce of what my life that was on there.  The hardware was replaceable, someone having someone elses pesronal data is not a good thing in my books.</p>
<p>So I&#8217;d been calling it all today (and so had friends and family it seemed) and finally at about 10 past 5 it came on and someone answered, OMFG! Not only does this guy have my phone, he lives around the corner and rides the exact same train stops as me.  We often cross paths at the train station and even ride the same train, had I _NOT_ gone to my Mum&#8217;s house, this guy would&#8217;ve walked right passed me about 10 minutes later while i waited for my friends, with my phone in his bag unknowing that it belonged to me.</p>
<p>I put a call block on my phone last night as I didn&#8217;t want un-necessary calls going out and the first thing he tried to do when the phone powered up was call entries like &#8220;Dad&#8221;.  When they didn&#8217;t work, he went to the start of my phone book and tried to call the first person and a few seconds later <a title="Chris Messina's - The Landscaper" href="http://landscaper.visual-assault.net/">Chris</a> called him and we organised to get the phone back.  Long story short, he came around in his car about 20 minutes later with my phone and I don&#8217;t think i&#8217;ve ever felt so happy, relieved or thankfull.  I owe this guy something and he&#8217;ll get it along with worlds of good karma. The hard part is i&#8217;m going to be so happy everytime this guy turns up anywhere near me for the next few weeks, his presence is just going to remind me that people are still amazing.</p>
<p>Some points to take away:</p>
<ul>
<li>What good are these &#8220;find the phone&#8221; services when theres no sim/battery?</li>
<li>Does chaning the password on my exchange/mobile me acct, stop the find the phone/remote wipe from working?</li>
<li>If i&#8217;d done a remote wipe, he&#8217;d never been able to have seen who the phone belonged too, he&#8217;d never have been able to try call Dad, he&#8217;d never know who was calling when we rang, <em>it may not have been callable anymore?</em></li>
<li><em><strong>Good people still exist<br />
</strong></em></li>
<li><em><strong>I think i have a guardian angel watching closely or something like that&#8230;.<br />
</strong></em></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://ignite.digitalignition.net/2009/07/22/you-dont-need-find-the-phone-apps/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>iTunes Affiliate Link Maker WordPress Plugin</title>
		<link>http://ignite.digitalignition.net/2009/05/31/itunes-affiliate-link-maker-plugin/</link>
		<comments>http://ignite.digitalignition.net/2009/05/31/itunes-affiliate-link-maker-plugin/#comments</comments>
		<pubDate>Sun, 31 May 2009 07:23:38 +0000</pubDate>
		<dc:creator>Ruxton</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Web Dev]]></category>
		<category><![CDATA[affiliate deep linking]]></category>
		<category><![CDATA[deep link]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[itms link maker]]></category>
		<category><![CDATA[itunes]]></category>
		<category><![CDATA[itunes affiliate linking]]></category>
		<category><![CDATA[itunes deep linking]]></category>
		<category><![CDATA[itunes link maker]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[wordpress plugin]]></category>

		<guid isPermaLink="false">http://ignite.digitalignition.net/?p=354</guid>
		<description><![CDATA[<p>Got a worpdress blog? do you link to the iTunes Store with or without an affiliate program? <a title="iTunes Affiliate Link Maker WordPress Plugin" href="http://ignite.digitalignition.net/articlesexamples/itunes-affiliate-link-plugin/">this plugins for you</a>!</p>
<p>The plugin adds an itunes button to the visual editor which when clicked brings forward a dialog containing a search for the iTunes store link maker.</p>
<p>After searching, clicking on any link will ask for a title for the link and insert it into the content editor. The link also enables the ability to directly link to albums, something the standard link generator does not normally do.</p>
<p>Enough gaff, if you want it, it&#8217;s <a title="iTunes Affiliate Link Maker WordPress Plugin" href="http://ignite.digitalignition.net/articlesexamples/itunes-affiliate-link-plugin/">here</a>.  It&#8217;ll be on wordpress.org soon enough.</p>
]]></description>
			<content:encoded><![CDATA[<p>Got a worpdress blog? do you link to the iTunes Store with or without an affiliate program? <a title="iTunes Affiliate Link Maker WordPress Plugin" href="http://ignite.digitalignition.net/articlesexamples/itunes-affiliate-link-plugin/">this plugins for you</a>!</p>
<p>The plugin adds an itunes button to the visual editor which when clicked brings forward a dialog containing a search for the iTunes store link maker.</p>
<p>After searching, clicking on any link will ask for a title for the link and insert it into the content editor. The link also enables the ability to directly link to albums, something the standard link generator does not normally do.</p>
<p>Enough gaff, if you want it, it&#8217;s <a title="iTunes Affiliate Link Maker WordPress Plugin" href="http://ignite.digitalignition.net/articlesexamples/itunes-affiliate-link-plugin/">here</a>.  It&#8217;ll be on wordpress.org soon enough.</p>
]]></content:encoded>
			<wfw:commentRss>http://ignite.digitalignition.net/2009/05/31/itunes-affiliate-link-maker-plugin/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>iPhoneOS 3.0</title>
		<link>http://ignite.digitalignition.net/2009/03/18/iphoneos-30/</link>
		<comments>http://ignite.digitalignition.net/2009/03/18/iphoneos-30/#comments</comments>
		<pubDate>Wed, 18 Mar 2009 04:10:19 +0000</pubDate>
		<dc:creator>Ruxton</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[iphone 3.0]]></category>
		<category><![CDATA[iphone gps]]></category>
		<category><![CDATA[iphone mms]]></category>
		<category><![CDATA[iphone os]]></category>
		<category><![CDATA[mms]]></category>
		<category><![CDATA[turn by turn]]></category>

		<guid isPermaLink="false">http://ignite.digitalignition.net/2009/03/18/iphoneos-30/</guid>
		<description><![CDATA[<p>So finally it&#8217;s here, Turn-by-turn directions, Bluetooth A2DP, MMS and Push notifications amongst other things.  Apple are really pulling out the big guns here and it&#8217;s nice to see we&#8217;re finally starting to get a phone thats feature set is on-par with the rest of the devices out there.</p>
<p>Coupe all this with the fact i&#8217;m really starting to not hate the iPhone as much as i used too, because i barely use iTunes anymore and i might just start to be happy with my purchase.  You can check out some pictures of what&#8217;s coming <a href="http://www.engadget.com/2009/03/17/iphone-os-3-0-hands-on/">over at</a> <a href="http://www.engadget.com/">Engadget</a> and also see <a href="http://www.apple.com/">Apple</a>&#8216;s <a href="http://events.apple.com.edgesuite.net/0903lajkszg/event/index.html">iPhone 3.0 Preview Presentation</a>.</p>
]]></description>
			<content:encoded><![CDATA[<p>So finally it&#8217;s here, Turn-by-turn directions, Bluetooth A2DP, MMS and Push notifications amongst other things.  Apple are really pulling out the big guns here and it&#8217;s nice to see we&#8217;re finally starting to get a phone thats feature set is on-par with the rest of the devices out there.</p>
<p>Coupe all this with the fact i&#8217;m really starting to not hate the iPhone as much as i used too, because i barely use iTunes anymore and i might just start to be happy with my purchase.  You can check out some pictures of what&#8217;s coming <a href="http://www.engadget.com/2009/03/17/iphone-os-3-0-hands-on/">over at</a> <a href="http://www.engadget.com/">Engadget</a> and also see <a href="http://www.apple.com/">Apple</a>&#8216;s <a href="http://events.apple.com.edgesuite.net/0903lajkszg/event/index.html">iPhone 3.0 Preview Presentation</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://ignite.digitalignition.net/2009/03/18/iphoneos-30/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>iTunes, iPod, iPhone.. iChoose?</title>
		<link>http://ignite.digitalignition.net/2008/07/15/itunes-ipod-iphone-ichoose/</link>
		<comments>http://ignite.digitalignition.net/2008/07/15/itunes-ipod-iphone-ichoose/#comments</comments>
		<pubDate>Tue, 15 Jul 2008 12:41:34 +0000</pubDate>
		<dc:creator>Ruxton</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[choice]]></category>
		<category><![CDATA[choose]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[iphone syncing]]></category>
		<category><![CDATA[iphone updates]]></category>
		<category><![CDATA[ipod]]></category>
		<category><![CDATA[ipod syncing]]></category>
		<category><![CDATA[ipod updates]]></category>
		<category><![CDATA[itunes]]></category>
		<category><![CDATA[lock in]]></category>
		<category><![CDATA[monopoly tactics]]></category>
		<category><![CDATA[pda]]></category>
		<category><![CDATA[software updates]]></category>
		<category><![CDATA[sync]]></category>
		<category><![CDATA[sync software]]></category>
		<category><![CDATA[syncing]]></category>

		<guid isPermaLink="false">http://ignite.digitalignition.net/?p=177</guid>
		<description><![CDATA[<p>Something just occurred to me this evening and it has to do with software companies and the monopoly &#8216;lock in&#8217; tactics that some use.  Microsoft was pulled up over forcing Internet Explorer on people in XP many moons ago now and I&#8217;m sure we&#8217;re all completely happy with how it eventually turned out, most of us use Firefox and Windows now recognises something called a &#8216;default browser&#8217;.</p>
<p>Fast forward a few years and we&#8217;ve seen Apple since day one, ram iTunes down the throat of every ipod owner in the world. This was understandable, after all it&#8217;s a portable music player and it only ran on OSX to start with, so it&#8217;s ok to force a music player that&#8217;s already installed on the operating system along with the device to provide sync support, in fact it totally makes sense.  That is until they released on windows and iTunes wasn&#8217;t that great, also for years we&#8217;ve all been using Winamp or Windows Media Player and have no desire to switch to iTunes.</p>
<p>The one thing that always turned me off the iPod was iTunes, because on Mac it runs great but on Windows it just blows hard.  I was pretty much given a 20Gb iPod photo a while back and was glad to see Winamp supported sync of the iPod (just like it did my WM6 device), so i didn&#8217;t have to piss around with iTunes.  Wishful thinking, i still had to install iTunes just so i can restore and manage updates to my ipod, still.. i can swallow it, it&#8217;s a media player it makes sense that the program that controls the syncing is also a media player, right?</p>
<p>Here&#8217;s where it gets interesting, Apple released the iPhone, it runs it&#8217;s own flavour of iTunes/iPod and along with that is pretty much a fully blown smart phone/PDA.  So heres where i begin to question the integrity of iTunes, when i&#8217;m syncing my Calendar, Music, Contacts, Photos, Videos, Software Updates and Applications all through what used to be a media player that i will soon be forced to use 100%, just so i can keep my mobile phone up to date.  This little twist, in my opinion, makes the iTunes/iPhone(ipod) combo way worse than Microsoft ever did with Internet Explorer, yet for someone reason.. no one seems to give a shit? everyone is just copping it and dealing it with.</p>
<p>I shouldn&#8217;t have to install a media player that i don&#8217;t want to use, just because someone decided the updates for my phone should be delivered through it.  It&#8217;s high time Apple released something that synced everything on your phone without using iTunes, perhaps an extended iSync for Windows/OSX with the ability to put files into the devices media player DB without iTunes?</p>
<p>iTunes should be a media player, it should have a &#8216;sync interface&#8217; that any device can use (listen closely apple).  Apple should have some central &#8216;sync software&#8217; for their ipod/iphone collection that acts as a central point between the devices and ANY software (Yeah that&#8217;s right apple, not just iTunes).  This way apple can still maintain proprietary code in iTunes and in the way they handle the sync, but still allow people to make decisions for themselves about what software they want to use and not have something they don&#8217;t want to use, rammed down their throat.</p>
<p>Oh and please, this isn&#8217;t some debate about what&#8217;s better and what&#8217;s not, because that&#8217;s always going to come down to user preference, which is something Apple isn&#8217;t providing right now.  Yes i know most other major portable media players are playing the game the same way, but that doesn&#8217;t mean they&#8217;re playing fairly for us, the consumers.  Perhaps one day people will learn to work together a little to build great things instead of trying to win the war, whether it be a format war, a software war or just good old fashioned war.</p>
]]></description>
			<content:encoded><![CDATA[<p>Something just occurred to me this evening and it has to do with software companies and the monopoly &#8216;lock in&#8217; tactics that some use.  Microsoft was pulled up over forcing Internet Explorer on people in XP many moons ago now and I&#8217;m sure we&#8217;re all completely happy with how it eventually turned out, most of us use Firefox and Windows now recognises something called a &#8216;default browser&#8217;.</p>
<p>Fast forward a few years and we&#8217;ve seen Apple since day one, ram iTunes down the throat of every ipod owner in the world. This was understandable, after all it&#8217;s a portable music player and it only ran on OSX to start with, so it&#8217;s ok to force a music player that&#8217;s already installed on the operating system along with the device to provide sync support, in fact it totally makes sense.  That is until they released on windows and iTunes wasn&#8217;t that great, also for years we&#8217;ve all been using Winamp or Windows Media Player and have no desire to switch to iTunes.</p>
<p>The one thing that always turned me off the iPod was iTunes, because on Mac it runs great but on Windows it just blows hard.  I was pretty much given a 20Gb iPod photo a while back and was glad to see Winamp supported sync of the iPod (just like it did my WM6 device), so i didn&#8217;t have to piss around with iTunes.  Wishful thinking, i still had to install iTunes just so i can restore and manage updates to my ipod, still.. i can swallow it, it&#8217;s a media player it makes sense that the program that controls the syncing is also a media player, right?</p>
<p>Here&#8217;s where it gets interesting, Apple released the iPhone, it runs it&#8217;s own flavour of iTunes/iPod and along with that is pretty much a fully blown smart phone/PDA.  So heres where i begin to question the integrity of iTunes, when i&#8217;m syncing my Calendar, Music, Contacts, Photos, Videos, Software Updates and Applications all through what used to be a media player that i will soon be forced to use 100%, just so i can keep my mobile phone up to date.  This little twist, in my opinion, makes the iTunes/iPhone(ipod) combo way worse than Microsoft ever did with Internet Explorer, yet for someone reason.. no one seems to give a shit? everyone is just copping it and dealing it with.</p>
<p>I shouldn&#8217;t have to install a media player that i don&#8217;t want to use, just because someone decided the updates for my phone should be delivered through it.  It&#8217;s high time Apple released something that synced everything on your phone without using iTunes, perhaps an extended iSync for Windows/OSX with the ability to put files into the devices media player DB without iTunes?</p>
<p>iTunes should be a media player, it should have a &#8216;sync interface&#8217; that any device can use (listen closely apple).  Apple should have some central &#8216;sync software&#8217; for their ipod/iphone collection that acts as a central point between the devices and ANY software (Yeah that&#8217;s right apple, not just iTunes).  This way apple can still maintain proprietary code in iTunes and in the way they handle the sync, but still allow people to make decisions for themselves about what software they want to use and not have something they don&#8217;t want to use, rammed down their throat.</p>
<p>Oh and please, this isn&#8217;t some debate about what&#8217;s better and what&#8217;s not, because that&#8217;s always going to come down to user preference, which is something Apple isn&#8217;t providing right now.  Yes i know most other major portable media players are playing the game the same way, but that doesn&#8217;t mean they&#8217;re playing fairly for us, the consumers.  Perhaps one day people will learn to work together a little to build great things instead of trying to win the war, whether it be a format war, a software war or just good old fashioned war.</p>
]]></content:encoded>
			<wfw:commentRss>http://ignite.digitalignition.net/2008/07/15/itunes-ipod-iphone-ichoose/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SVEC FD7419 KVM Console Switch</title>
		<link>http://ignite.digitalignition.net/2008/04/23/svec-fd7419-kvm-console-switch/</link>
		<comments>http://ignite.digitalignition.net/2008/04/23/svec-fd7419-kvm-console-switch/#comments</comments>
		<pubDate>Wed, 23 Apr 2008 09:05:22 +0000</pubDate>
		<dc:creator>Ruxton</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[console switch]]></category>
		<category><![CDATA[fd7419]]></category>
		<category><![CDATA[fd7419 console switch]]></category>
		<category><![CDATA[fd7419 hotkeys]]></category>
		<category><![CDATA[kvm]]></category>
		<category><![CDATA[kvm hotkey]]></category>
		<category><![CDATA[svec]]></category>
		<category><![CDATA[svec console switch]]></category>
		<category><![CDATA[svec fd7419]]></category>
		<category><![CDATA[svec hotkey]]></category>
		<category><![CDATA[svec kvm]]></category>
		<category><![CDATA[svec kvm hotkey]]></category>

		<guid isPermaLink="false">http://ignite.digitalignition.net/?p=158</guid>
		<description><![CDATA[<p>So, earlier today while bashing our heads against a wall we were trying to locate some information on the SVEC FD7419 KVM Console Switch.  This piece of hardware has been installed in the office for quite some time now and since then we&#8217;ve been through about 3 or 4 sys admins and nobody really knows how to configure it. </p>
<p>After searching for a while and finding nothing, we eventually worked out what we wanted to know through trial and error.  So for everybody else who has SVEC KVM and can&#8217;t locate the manual and can&#8217;t locate SVEC for a manual (they seem to have gone out of business) heres a quick run down on what we found.</p>
<p>The default password is 00000000 and the hotkey is scroll lock, scroll lock (that&#8217;s a double-tap on scroll-lock), once you&#8217;ve hit that, you can follow it up with any of the keys below:</p>
<ul>
<li>R &#8211; Reflash ROM (wipe it clean and start from defaults)</li>
<li>SPACE &#8211; Enter the Configuration (setup names, etc.)</li>
<li>F &#8211; Find (Type in machine name, it&#8217;ll locate that machine)</li>
<li>UP &#8211; Browse up through all the connected machines</li>
<li>DOWN &#8211; Browse down through all the connected machines</li>
<li>ESC &#8211; Go back to normal keyboard connected to the machine mode</li>
</ul>
<p>Hope this is useful to you, it took us a bit of trial and error to sort this thing out with no manual and theres pretty much no useful google results for the FD7419, so i figured i&#8217;d write something so anyone else having the headache we were can sort the problem and move on.</p>
]]></description>
			<content:encoded><![CDATA[<p>So, earlier today while bashing our heads against a wall we were trying to locate some information on the SVEC FD7419 KVM Console Switch.  This piece of hardware has been installed in the office for quite some time now and since then we&#8217;ve been through about 3 or 4 sys admins and nobody really knows how to configure it. </p>
<p>After searching for a while and finding nothing, we eventually worked out what we wanted to know through trial and error.  So for everybody else who has SVEC KVM and can&#8217;t locate the manual and can&#8217;t locate SVEC for a manual (they seem to have gone out of business) heres a quick run down on what we found.</p>
<p>The default password is 00000000 and the hotkey is scroll lock, scroll lock (that&#8217;s a double-tap on scroll-lock), once you&#8217;ve hit that, you can follow it up with any of the keys below:</p>
<ul>
<li>R &#8211; Reflash ROM (wipe it clean and start from defaults)</li>
<li>SPACE &#8211; Enter the Configuration (setup names, etc.)</li>
<li>F &#8211; Find (Type in machine name, it&#8217;ll locate that machine)</li>
<li>UP &#8211; Browse up through all the connected machines</li>
<li>DOWN &#8211; Browse down through all the connected machines</li>
<li>ESC &#8211; Go back to normal keyboard connected to the machine mode</li>
</ul>
<p>Hope this is useful to you, it took us a bit of trial and error to sort this thing out with no manual and theres pretty much no useful google results for the FD7419, so i figured i&#8217;d write something so anyone else having the headache we were can sort the problem and move on.</p>
]]></content:encoded>
			<wfw:commentRss>http://ignite.digitalignition.net/2008/04/23/svec-fd7419-kvm-console-switch/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Microsoft WPF Presentations</title>
		<link>http://ignite.digitalignition.net/2007/12/12/microsoft-wpf-presentations/</link>
		<comments>http://ignite.digitalignition.net/2007/12/12/microsoft-wpf-presentations/#comments</comments>
		<pubDate>Wed, 12 Dec 2007 01:08:24 +0000</pubDate>
		<dc:creator>Ruxton</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[gradients]]></category>
		<category><![CDATA[microsoft]]></category>
		<category><![CDATA[technology presentation]]></category>
		<category><![CDATA[training]]></category>
		<category><![CDATA[ui design]]></category>
		<category><![CDATA[windows presentation foundation]]></category>
		<category><![CDATA[wpf]]></category>
		<category><![CDATA[xaml]]></category>

		<guid isPermaLink="false">http://ignite.digitalignition.net/2007/12/12/microsoft-wpf-presentations/</guid>
		<description><![CDATA[<p>Today we watched some presentations from Microsoft on Windows Presentation Foundation, while it was nice to see some of the technology and how it can be used, theres no way this was presented anywhere near as good as it could have been.  After seeing Java demos from people like <a href="http://www.curious-creature.org/">Romain</a> and other java people, it&#8217;s a bit hard to stomach a technology presentation where the person giving the presentation is setting the background of their buttons to a full bodied red and the background of their panels to gradients of Red to Green.</p>
<p>If Microsoft are trying to get us to go Wow at what they&#8217;re doing, they&#8217;re definitely going the wrong way about it.  How about showing me some real world use cases? Instead of useless applications that look like I just threw up McDonalds after a night of heavy drinking.  Hey Microsoft, i&#8217;m not going WOW yet, as much as i like the idea of being able to pass my UI design off to a designer and having him send me back XAML i can integrate into my project, you&#8217;re just not showing me how great it really can be.</p>
<p>One of the guys at work has been doing some XAML UI design for a client and i&#8217;m aware of how good it can be and how great the use cases are, but they need to show people this.  Theres 29 people in the live meeting training session i&#8217;m in all getting a very poor impression of WPF.</p>
]]></description>
			<content:encoded><![CDATA[<p>Today we watched some presentations from Microsoft on Windows Presentation Foundation, while it was nice to see some of the technology and how it can be used, theres no way this was presented anywhere near as good as it could have been.  After seeing Java demos from people like <a href="http://www.curious-creature.org/">Romain</a> and other java people, it&#8217;s a bit hard to stomach a technology presentation where the person giving the presentation is setting the background of their buttons to a full bodied red and the background of their panels to gradients of Red to Green.</p>
<p>If Microsoft are trying to get us to go Wow at what they&#8217;re doing, they&#8217;re definitely going the wrong way about it.  How about showing me some real world use cases? Instead of useless applications that look like I just threw up McDonalds after a night of heavy drinking.  Hey Microsoft, i&#8217;m not going WOW yet, as much as i like the idea of being able to pass my UI design off to a designer and having him send me back XAML i can integrate into my project, you&#8217;re just not showing me how great it really can be.</p>
<p>One of the guys at work has been doing some XAML UI design for a client and i&#8217;m aware of how good it can be and how great the use cases are, but they need to show people this.  Theres 29 people in the live meeting training session i&#8217;m in all getting a very poor impression of WPF.</p>
]]></content:encoded>
			<wfw:commentRss>http://ignite.digitalignition.net/2007/12/12/microsoft-wpf-presentations/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

