<?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>406 Not Acceptable</title>
	<atom:link href="http://406notacceptable.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://406notacceptable.com</link>
	<description>406 Not Acceptable, not just an error message, but now a blog!</description>
	<lastBuildDate>Tue, 28 Jun 2011 15:13:38 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Not enough time</title>
		<link>http://406notacceptable.com/site-news/not-enough-time/</link>
		<comments>http://406notacceptable.com/site-news/not-enough-time/#comments</comments>
		<pubDate>Tue, 28 Jun 2011 15:13:38 +0000</pubDate>
		<dc:creator>Jim</dc:creator>
				<category><![CDATA[Site Related]]></category>
		<category><![CDATA[busy]]></category>
		<category><![CDATA[SEO]]></category>

		<guid isPermaLink="false">http://406notacceptable.com/?p=560</guid>
		<description><![CDATA[I haven&#8217;t really had the time to update this site in a long time. If I get some time free I&#8217;ll try to create a number of posts that will post automatically.
I am also looking at migrating posts across from an old site, so that I can shut it down and save some cash on [...]


Related posts:<ol><li><a href='http://406notacceptable.com/site-news/the-migration-to-linode-is-complete/' rel='bookmark' title='Permanent Link: The migration to Linode is complete'>The migration to Linode is complete</a></li>
<li><a href='http://406notacceptable.com/operating-systems/fixing-flac-music-for-the-n900-media-player/' rel='bookmark' title='Permanent Link: Fixing FLAC music for the N900 media player'>Fixing FLAC music for the N900 media player</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>I haven&#8217;t really had the time to update this site in a long time. If I get some time free I&#8217;ll try to create a number of posts that will post automatically.</p>
<p>I am also looking at migrating posts across from an old site, so that I can shut it down and save some cash on hosting/domain names. My only concern is Google classing the relocating as &#8216;copied/duplicate content&#8217; and blacklisting this site.</p>


<p>Related posts:<ol><li><a href='http://406notacceptable.com/site-news/the-migration-to-linode-is-complete/' rel='bookmark' title='Permanent Link: The migration to Linode is complete'>The migration to Linode is complete</a></li>
<li><a href='http://406notacceptable.com/operating-systems/fixing-flac-music-for-the-n900-media-player/' rel='bookmark' title='Permanent Link: Fixing FLAC music for the N900 media player'>Fixing FLAC music for the N900 media player</a></li>
</ol></p><hr />
<p><small>&copy; jim for <a href="http://406notacceptable.com">406 Not Acceptable</a>, 2011. |
<a href="http://406notacceptable.com/site-news/not-enough-time/">Permalink</a> |
<a href="http://406notacceptable.com/site-news/not-enough-time/#comments">No comment</a> |
Add to
<a href="http://del.icio.us/post?url=http://406notacceptable.com/site-news/not-enough-time/&amp;title=Not enough time">del.icio.us</a>
<br/>
Post tags: <a href="http://406notacceptable.com/tag/busy/" rel="tag">busy</a>, <a href="http://406notacceptable.com/tag/seo/" rel="tag">SEO</a><br/>
</small></p>
<p><small>Feed enhanced by <a href='http://planetozh.com/blog/my-projects/wordpress-plugin-better-feed-rss/'>Better Feed</a> from  <a href='http://planetozh.com/blog/'>Ozh</a></small></p>
]]></content:encoded>
			<wfw:commentRss>http://406notacceptable.com/site-news/not-enough-time/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ArrayList in J2ME and generics</title>
		<link>http://406notacceptable.com/java/j2me/arraylist-in-j2me-and-generics/</link>
		<comments>http://406notacceptable.com/java/j2me/arraylist-in-j2me-and-generics/#comments</comments>
		<pubDate>Thu, 01 Apr 2010 10:09:33 +0000</pubDate>
		<dc:creator>Jim</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[j2me]]></category>
		<category><![CDATA[arraylists]]></category>
		<category><![CDATA[j2me code]]></category>
		<category><![CDATA[j2me performance]]></category>
		<category><![CDATA[J2ME Polish]]></category>
		<category><![CDATA[NaStar]]></category>

		<guid isPermaLink="false">http://www.406notacceptable.com/?p=130</guid>
		<description><![CDATA[As you may, or may not know, J2ME does not support the ArrayList functionality of standard Java. In addition, as J2ME is based on Java 1.3 it does not feature generics. This means as a developer you are stuck with a choice of using arrays or vectors. Now arrays are fast, but you are stuck [...]


No related posts.]]></description>
			<content:encoded><![CDATA[<p>As you may, or may not know, J2ME does not support the ArrayList functionality of standard Java. In addition, as J2ME is based on Java 1.3 it does not feature generics. This means as a developer you are stuck with a choice of using arrays or vectors. Now arrays are fast, but you are stuck with the initial size and a number of other issues. These are things you really do not want to be messing around with, unless speed is of the highest priority.</p>
<p>Whilst Vectors are dynamic, they bring about one annoying issue &#8211; you have to cast each entry back from an Object type to its original type on retrieval. This takes up a lot of processor cycles, and on phones processor cycles are a limited commodity. Secondly, you will have to use the Vector enumerator to iterate through your vectors. This is very processor intensive, in NaStar I found this was using around 30% of my cycles! Finally Vectors are synchronised, this means they are thread safe. Now a synchronised collection is much slower than an unsynchonised one; plus, you will most likely not need the safety benefits synchronisation brings. As you will usually be using one thread for acessing your collections in a game (in the main game loop.)</p>
<p>Now the J2ME Polish project gives you the chance to use some Java 1.5 features, most importantly generics are included. Second, an arraylist implementation is included, which uses generics. However, many people have had issues with integrating this plugin to their chosen IDE. I have worked out some <a title="J2ME Polish Netbeans Integration" href="http://www.406notacceptable.com/j2me/fixing-j2me-polish-integration-with-netbeans-6/" target="_self">fixes for Netbeans J2ME Polish integration</a>, but when coding my project decided against using the tools.</p>
<p>So you now find yourself stuck between no generics, slow vectors, or fixing (and maintaining) a plugin.</p>
<p>If all you want is access to ArrayLists or generics, your best bet is to strip the ArrayList code from J2ME Polish and create your own lists. I guess you could simply find an implementation of ArrayList floating around on the web, but the J2ME Polish code is very good. You will then simply create a number of new ArrayList classes, such as SpriteList, EnemyList, et al. There will be two other classes that the ArrayList depends on, you should also clone these for each implementation; these will let you use for each loops! Let each list only deal with one defined type. Now you will no longer have to deal with Vectors and their iterators and will find your game runs a lot faster! I found around 20 &#8211; 60% of processor time was dealing with Iterators; whilst ArrayLists cut this down to under 10%. For my project this was the best performance tweak available.</p>
<p>Before anyone asks, no you can&#8217;t play my game! Sadly the rights are held by the University of Birmingham <img src='http://406notacceptable.com/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' />  Whilst I doubt they care much about a J2Me game!</p>


<p>No related posts.</p><hr />
<p><small>&copy; jim for <a href="http://406notacceptable.com">406 Not Acceptable</a>, 2010. |
<a href="http://406notacceptable.com/java/j2me/arraylist-in-j2me-and-generics/">Permalink</a> |
<a href="http://406notacceptable.com/java/j2me/arraylist-in-j2me-and-generics/#comments">No comment</a> |
Add to
<a href="http://del.icio.us/post?url=http://406notacceptable.com/java/j2me/arraylist-in-j2me-and-generics/&amp;title=ArrayList in J2ME and generics">del.icio.us</a>
<br/>
Post tags: <a href="http://406notacceptable.com/tag/arraylists/" rel="tag">arraylists</a>, <a href="http://406notacceptable.com/tag/j2me-code/" rel="tag">j2me code</a>, <a href="http://406notacceptable.com/tag/j2me-performance/" rel="tag">j2me performance</a>, <a href="http://406notacceptable.com/tag/j2me-polish/" rel="tag">J2ME Polish</a>, <a href="http://406notacceptable.com/tag/nastar/" rel="tag">NaStar</a><br/>
</small></p>
<p><small>Feed enhanced by <a href='http://planetozh.com/blog/my-projects/wordpress-plugin-better-feed-rss/'>Better Feed</a> from  <a href='http://planetozh.com/blog/'>Ozh</a></small></p>
]]></content:encoded>
			<wfw:commentRss>http://406notacceptable.com/java/j2me/arraylist-in-j2me-and-generics/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>I hate Solaris, or should that be Oracle?</title>
		<link>http://406notacceptable.com/operating-systems/linux/i-hate-solaris-or-should-that-be-oracle/</link>
		<comments>http://406notacceptable.com/operating-systems/linux/i-hate-solaris-or-should-that-be-oracle/#comments</comments>
		<pubDate>Mon, 01 Mar 2010 11:07:45 +0000</pubDate>
		<dc:creator>Jim</dc:creator>
				<category><![CDATA[Operating Systems]]></category>
		<category><![CDATA[Rants]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[databases]]></category>
		<category><![CDATA[Solaris]]></category>
		<category><![CDATA[ssh]]></category>
		<category><![CDATA[Xauthority]]></category>

		<guid isPermaLink="false">http://406notacceptable.com/?p=493</guid>
		<description><![CDATA[Actually make that I hate both Solaris 9 and Oracle 9. If you ever get asked to set these buggers up on a machine just say no. It probably is a whole lot easier using the current versions! (Or get Oracle to do it for you!)
I had to get this working environment up on an [...]


No related posts.]]></description>
			<content:encoded><![CDATA[<p>Actually make that I hate both Solaris 9 and Oracle 9. If you ever get asked to set these buggers up on a machine just say no. It probably is a whole lot easier using the current versions! (Or get Oracle to do it for you!)</p>
<p>I had to get this working environment up on an old system at work (programmers get to do hardware, yay!) Running on some old SPARC boxes with not-so-healthy drives and broken backups. Sat back and watched Solaris 9 take about half a day to install! Then the nightmare began&#8230;</p>
<p>Next you run into issues with your standard Solaris SPARC machine being headless and Oracle deciding to require a GUI and X windows when all you would do is click &#8216;ok&#8217; four or five times. So off you go setting up the server to allow remote X connections, only Solaris is bolted down in a number of places to stop this happening (think security.) SSH -x may do some things but not all you need on Solaris!</p>
<p>In case your getting the handy &#8220;timeout locking .Xauthority&#8221; message, as root you need to copy the /.Xauthority file into the users home directory. Then give ownership using chown to the user. You may need to set up the user&#8217;s home directory, have a look at the contents of /etc/passwd to see where the user&#8217;s home directory is located. This should reside in /export/home/username/</p>
<p>Then when you actually get xclock and friends running you hit another wall. Oracle needs to link a bunch of files, but Solaris 9 does not come with the required tools! Being an old system you do not get a nice apitude style installer for simple dependencies; you have to go dig around for them yourselves. In case you&#8217;re wondering where to go, they&#8217;ve been hidden on the second of three install CDs.. Then Oracle will probably crash out for another reason and you&#8217;ll be left wanting to grab the nearest gun/axe/chainsaw and finish off the decrepid system yourself.</p>


<p>No related posts.</p><hr />
<p><small>&copy; jim for <a href="http://406notacceptable.com">406 Not Acceptable</a>, 2010. |
<a href="http://406notacceptable.com/operating-systems/linux/i-hate-solaris-or-should-that-be-oracle/">Permalink</a> |
<a href="http://406notacceptable.com/operating-systems/linux/i-hate-solaris-or-should-that-be-oracle/#comments">No comment</a> |
Add to
<a href="http://del.icio.us/post?url=http://406notacceptable.com/operating-systems/linux/i-hate-solaris-or-should-that-be-oracle/&amp;title=I hate Solaris, or should that be Oracle?">del.icio.us</a>
<br/>
Post tags: <a href="http://406notacceptable.com/tag/databases/" rel="tag">databases</a>, <a href="http://406notacceptable.com/tag/solaris/" rel="tag">Solaris</a>, <a href="http://406notacceptable.com/tag/ssh/" rel="tag">ssh</a>, <a href="http://406notacceptable.com/tag/xauthority/" rel="tag">Xauthority</a><br/>
</small></p>
<p><small>Feed enhanced by <a href='http://planetozh.com/blog/my-projects/wordpress-plugin-better-feed-rss/'>Better Feed</a> from  <a href='http://planetozh.com/blog/'>Ozh</a></small></p>
]]></content:encoded>
			<wfw:commentRss>http://406notacceptable.com/operating-systems/linux/i-hate-solaris-or-should-that-be-oracle/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Meamo becomes Meego, but what of the N900?</title>
		<link>http://406notacceptable.com/operating-systems/android/meamo-becomes-meego-but-what-of-the-n900/</link>
		<comments>http://406notacceptable.com/operating-systems/android/meamo-becomes-meego-but-what-of-the-n900/#comments</comments>
		<pubDate>Wed, 24 Feb 2010 18:16:14 +0000</pubDate>
		<dc:creator>Jim</dc:creator>
				<category><![CDATA[Maemo]]></category>
		<category><![CDATA[Operating Systems]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[Meego]]></category>
		<category><![CDATA[mobile phones]]></category>
		<category><![CDATA[N900]]></category>

		<guid isPermaLink="false">http://406notacceptable.com/?p=553</guid>
		<description><![CDATA[For sometime N900 users have been wondering whether we would get Maemo 6 (Harmatten.) Whilst everyone wants the latest update on their device, and feels let down when it doesn&#8217;t happen; Nokia&#8217;s transparency with regards to bug fixes exacerbated the desire for the update. Nokia have labeled many bugs with a &#8216;To be fixed in [...]


Related posts:<ol><li><a href='http://406notacceptable.com/operating-systems/android/nokia-n900-vs-g1/' rel='bookmark' title='Permanent Link: Nokia N900 vs G1'>Nokia N900 vs G1</a></li>
<li><a href='http://406notacceptable.com/operating-systems/pr1-1-1-n900-update-still-not-out-in-the-uk/' rel='bookmark' title='Permanent Link: PR1.1.1 N900 Update still not out in the UK'>PR1.1.1 N900 Update still not out in the UK</a></li>
<li><a href='http://406notacceptable.com/guides/aircrack-on-the-n900/' rel='bookmark' title='Permanent Link: Aircrack on the N900'>Aircrack on the N900</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>For sometime N900 users have been wondering whether we would get Maemo 6 (Harmatten.) Whilst everyone wants the latest update on their device, and feels let down when it doesn&#8217;t happen; Nokia&#8217;s transparency with regards to bug fixes exacerbated the desire for the update. Nokia have labeled many bugs with a &#8216;To be fixed in Harmatten&#8217;, basically saying &#8220;live with it&#8221; &#8212; unless the N900 can be upgraded. So if Nokia do leave the N90 behind it could be a damning blow to many fans.</p>
<p>Earlier this month at MWC Nokia and Intel announced the merger between their two opensource Linux based operating systems. I can only assume this is an attempt to cement the operating system alongside iPhone OS and Android as one of the mainstream smartphone operating systems of the future. Whilst Nokia&#8217;s Symbian is still the top selling mobile phone operating system, its days look to be numbered with Apple and Google making a big impact in the market.</p>
<p>Still, I am not sure what position there is in the market for Meego. It is highly likely that we will eventually see just a handfull of sucessful operating systems for smartphones. For example, manufacturers like LG, have noticed that using their own custom systems was detrimental to their phone&#8217;s sales. Sure the hardware was good, but what use is it if no-one is making software for it? So Meego will have to fight with Android, Windows Mobile, Symbian, and eventually Bada for these manufacturers support.</p>
<p>The issue here is Android already has a number of devices from different manufacturers in the market and it looks like support for Android will steadily grow after a difficult first year (when only HTC offered devices.) It would be a difficult choice manufacturers to switch allegiance, but I would expect a few devices to appear (to test the waters so to speak.) Whilst Windows Mobile seems to have a strong grasp of the business market (alongside the Blackberrys.)</p>
<p>It&#8217;s such a shame that Nokia have decided to drop Debian as the upstream for their system with this merge. Whilst I&#8217;d like to see an updated system, I can&#8217;t say I am happy at losing the ability to install Debian packages without any worries.</p>
<p>So I struggle to see where the system will fit in the market; unless Nokia and Intel go for tablets&#8230;</p>


<p>Related posts:<ol><li><a href='http://406notacceptable.com/operating-systems/android/nokia-n900-vs-g1/' rel='bookmark' title='Permanent Link: Nokia N900 vs G1'>Nokia N900 vs G1</a></li>
<li><a href='http://406notacceptable.com/operating-systems/pr1-1-1-n900-update-still-not-out-in-the-uk/' rel='bookmark' title='Permanent Link: PR1.1.1 N900 Update still not out in the UK'>PR1.1.1 N900 Update still not out in the UK</a></li>
<li><a href='http://406notacceptable.com/guides/aircrack-on-the-n900/' rel='bookmark' title='Permanent Link: Aircrack on the N900'>Aircrack on the N900</a></li>
</ol></p><hr />
<p><small>&copy; jim for <a href="http://406notacceptable.com">406 Not Acceptable</a>, 2010. |
<a href="http://406notacceptable.com/operating-systems/android/meamo-becomes-meego-but-what-of-the-n900/">Permalink</a> |
<a href="http://406notacceptable.com/operating-systems/android/meamo-becomes-meego-but-what-of-the-n900/#comments">No comment</a> |
Add to
<a href="http://del.icio.us/post?url=http://406notacceptable.com/operating-systems/android/meamo-becomes-meego-but-what-of-the-n900/&amp;title=Meamo becomes Meego, but what of the N900?">del.icio.us</a>
<br/>
Post tags: <a href="http://406notacceptable.com/tag/android/" rel="tag">android</a>, <a href="http://406notacceptable.com/tag/meego/" rel="tag">Meego</a>, <a href="http://406notacceptable.com/tag/mobile-phones/" rel="tag">mobile phones</a>, <a href="http://406notacceptable.com/tag/n900/" rel="tag">N900</a><br/>
</small></p>
<p><small>Feed enhanced by <a href='http://planetozh.com/blog/my-projects/wordpress-plugin-better-feed-rss/'>Better Feed</a> from  <a href='http://planetozh.com/blog/'>Ozh</a></small></p>
]]></content:encoded>
			<wfw:commentRss>http://406notacceptable.com/operating-systems/android/meamo-becomes-meego-but-what-of-the-n900/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Annoying Turkish Script Kiddies</title>
		<link>http://406notacceptable.com/site-news/annoying-turkish-script-kiddies/</link>
		<comments>http://406notacceptable.com/site-news/annoying-turkish-script-kiddies/#comments</comments>
		<pubDate>Tue, 23 Feb 2010 08:30:09 +0000</pubDate>
		<dc:creator>Jim</dc:creator>
				<category><![CDATA[Site Related]]></category>
		<category><![CDATA[old site]]></category>
		<category><![CDATA[tech rant]]></category>
		<category><![CDATA[turkish hackers]]></category>

		<guid isPermaLink="false">http://406notacceptable.com/?p=487</guid>
		<description><![CDATA[It looks like &#8211; for the second time &#8211; a random Turkish &#8216;hacker&#8217; has decided to take down my old site. Tech Rant is a dead site running a dead Content Management Service (CMS,) hence it is going to be an easy target! I can never recall why I chose Postnuke&#8230; There&#8217;s probably a number [...]


Related posts:<ol><li><a href='http://406notacceptable.com/site-news/the-migration-to-linode-is-complete/' rel='bookmark' title='Permanent Link: The migration to Linode is complete'>The migration to Linode is complete</a></li>
<li><a href='http://406notacceptable.com/site-news/goodbye-dreamhost-ive-moved-to-linode/' rel='bookmark' title='Permanent Link: Goodbye Dreamhost, I&#039;ve moved to Linode'>Goodbye Dreamhost, I&#039;ve moved to Linode</a></li>
<li><a href='http://406notacceptable.com/site-news/not-enough-time/' rel='bookmark' title='Permanent Link: Not enough time'>Not enough time</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>It looks like &#8211; for the second time &#8211; a random Turkish &#8216;hacker&#8217; has decided to take down my old site. Tech Rant is a dead site running a dead Content Management Service (CMS,) hence it is going to be an easy target! I can never recall why I chose Postnuke&#8230; There&#8217;s probably a number of weaknesses in the CMS in it&#8217;s current state and with no updates available since the developers decided to drop version 8 and start with a clean slate; the site is effectively a dead duck. Let that be a lesson for anyone deciding to not choose the popular option! Be sensible and get a well supported, popular CMS like Wordpress &#8212; or do a Katy and make your own (again!) <img src='http://406notacceptable.com/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> </p>
<p>This little escapade has reminded me that since I have already ported over all the posts from Tech Rant to here; there is little point in the site being alive. After all it will simply be waiting for the next script kiddie to come along&#8230; Once I get round to setting up a downloads database here, then the domain will simply point here for a year or so before getting dropped. I have moved the files over for now, its just setting up all the files will be a boring and loooooong task.</p>
<p>I have set up a few posts regarding the N900 and some nice software, so there should be some content here! At the same time I have gone through the usual duties of updating Wordpress through a good few thousand builds (it updates soo fast!) alongside a bunch of plugins.</p>


<p>Related posts:<ol><li><a href='http://406notacceptable.com/site-news/the-migration-to-linode-is-complete/' rel='bookmark' title='Permanent Link: The migration to Linode is complete'>The migration to Linode is complete</a></li>
<li><a href='http://406notacceptable.com/site-news/goodbye-dreamhost-ive-moved-to-linode/' rel='bookmark' title='Permanent Link: Goodbye Dreamhost, I&#039;ve moved to Linode'>Goodbye Dreamhost, I&#039;ve moved to Linode</a></li>
<li><a href='http://406notacceptable.com/site-news/not-enough-time/' rel='bookmark' title='Permanent Link: Not enough time'>Not enough time</a></li>
</ol></p><hr />
<p><small>&copy; jim for <a href="http://406notacceptable.com">406 Not Acceptable</a>, 2010. |
<a href="http://406notacceptable.com/site-news/annoying-turkish-script-kiddies/">Permalink</a> |
<a href="http://406notacceptable.com/site-news/annoying-turkish-script-kiddies/#comments">No comment</a> |
Add to
<a href="http://del.icio.us/post?url=http://406notacceptable.com/site-news/annoying-turkish-script-kiddies/&amp;title=Annoying Turkish Script Kiddies">del.icio.us</a>
<br/>
Post tags: <a href="http://406notacceptable.com/tag/old-site/" rel="tag">old site</a>, <a href="http://406notacceptable.com/tag/tech-rant/" rel="tag">tech rant</a>, <a href="http://406notacceptable.com/tag/turkish-hackers/" rel="tag">turkish hackers</a><br/>
</small></p>
<p><small>Feed enhanced by <a href='http://planetozh.com/blog/my-projects/wordpress-plugin-better-feed-rss/'>Better Feed</a> from  <a href='http://planetozh.com/blog/'>Ozh</a></small></p>
]]></content:encoded>
			<wfw:commentRss>http://406notacceptable.com/site-news/annoying-turkish-script-kiddies/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PR1.1.1 N900 Update still not out in the UK</title>
		<link>http://406notacceptable.com/operating-systems/pr1-1-1-n900-update-still-not-out-in-the-uk/</link>
		<comments>http://406notacceptable.com/operating-systems/pr1-1-1-n900-update-still-not-out-in-the-uk/#comments</comments>
		<pubDate>Sat, 20 Feb 2010 18:32:13 +0000</pubDate>
		<dc:creator>Jim</dc:creator>
				<category><![CDATA[Maemo]]></category>
		<category><![CDATA[Operating Systems]]></category>
		<category><![CDATA[N900]]></category>
		<category><![CDATA[Nokia]]></category>
		<category><![CDATA[update]]></category>

		<guid isPermaLink="false">http://406notacceptable.com/?p=556</guid>
		<description><![CDATA[The N900 received an update from v2.2009.51.1 to  V3.2010.02-08 on the 16th of this month; however, thi update is still not available to owners in the UK. The firmware update is not available via the N900&#8217;s application manager nor via Nokia Software Updater.
The N900 software page on Maemo.org only shows PR1.1.1 for the US, [...]


Related posts:<ol><li><a href='http://406notacceptable.com/the-real-world/update-on-aircrack-for-n900/' rel='bookmark' title='Permanent Link: Update on Aircrack for N900'>Update on Aircrack for N900</a></li>
<li><a href='http://406notacceptable.com/operating-systems/android/meamo-becomes-meego-but-what-of-the-n900/' rel='bookmark' title='Permanent Link: Meamo becomes Meego, but what of the N900?'>Meamo becomes Meego, but what of the N900?</a></li>
<li><a href='http://406notacceptable.com/security/nmap-now-on-the-n900/' rel='bookmark' title='Permanent Link: Nmap now on the N900!'>Nmap now on the N900!</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>The N900 received an update from v2.2009.51.1 to  V3.2010.02-08 on the 16th of this month; however, thi update is still not available to owners in the UK. The firmware update is not available via the N900&#8217;s application manager nor via Nokia Software Updater.</p>
<p>The N900 software page on Maemo.org only shows PR1.1.1 for the US, the middle east, and &#8216;global&#8217;. The site only offers PR1.1 for UK devices.</p>
<p>Previously, Nokia could hide behind the network operators who like to fill devices with bloatware; which meant the firmware needed extra testing. Often it was down to the operator to release the update, so Nokia were not to blame. However, the N900 was sold without network branding and typically direct from Nokia. So why has this update taken so long to reach the UK? And why is their a Vodaphone only variant for some users?</p>


<p>Related posts:<ol><li><a href='http://406notacceptable.com/the-real-world/update-on-aircrack-for-n900/' rel='bookmark' title='Permanent Link: Update on Aircrack for N900'>Update on Aircrack for N900</a></li>
<li><a href='http://406notacceptable.com/operating-systems/android/meamo-becomes-meego-but-what-of-the-n900/' rel='bookmark' title='Permanent Link: Meamo becomes Meego, but what of the N900?'>Meamo becomes Meego, but what of the N900?</a></li>
<li><a href='http://406notacceptable.com/security/nmap-now-on-the-n900/' rel='bookmark' title='Permanent Link: Nmap now on the N900!'>Nmap now on the N900!</a></li>
</ol></p><hr />
<p><small>&copy; jim for <a href="http://406notacceptable.com">406 Not Acceptable</a>, 2010. |
<a href="http://406notacceptable.com/operating-systems/pr1-1-1-n900-update-still-not-out-in-the-uk/">Permalink</a> |
<a href="http://406notacceptable.com/operating-systems/pr1-1-1-n900-update-still-not-out-in-the-uk/#comments">No comment</a> |
Add to
<a href="http://del.icio.us/post?url=http://406notacceptable.com/operating-systems/pr1-1-1-n900-update-still-not-out-in-the-uk/&amp;title=PR1.1.1 N900 Update still not out in the UK">del.icio.us</a>
<br/>
Post tags: <a href="http://406notacceptable.com/tag/n900/" rel="tag">N900</a>, <a href="http://406notacceptable.com/tag/nokia/" rel="tag">Nokia</a>, <a href="http://406notacceptable.com/tag/update/" rel="tag">update</a><br/>
</small></p>
<p><small>Feed enhanced by <a href='http://planetozh.com/blog/my-projects/wordpress-plugin-better-feed-rss/'>Better Feed</a> from  <a href='http://planetozh.com/blog/'>Ozh</a></small></p>
]]></content:encoded>
			<wfw:commentRss>http://406notacceptable.com/operating-systems/pr1-1-1-n900-update-still-not-out-in-the-uk/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Nmap now on the N900!</title>
		<link>http://406notacceptable.com/security/nmap-now-on-the-n900/</link>
		<comments>http://406notacceptable.com/security/nmap-now-on-the-n900/#comments</comments>
		<pubDate>Mon, 15 Feb 2010 11:06:15 +0000</pubDate>
		<dc:creator>Jim</dc:creator>
				<category><![CDATA[Maemo]]></category>
		<category><![CDATA[Operating Systems]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[aircrack]]></category>
		<category><![CDATA[N900]]></category>
		<category><![CDATA[nmap]]></category>

		<guid isPermaLink="false">http://406notacceptable.com/?p=478</guid>
		<description><![CDATA[It looks like the N900 may become a network security/hackers dream phone! First aircrack, now Nmap; hopefully, we can get kismet, metasploit, air-pwn, and friends up and running on the device in the near future.
Installing Nmap is a breeze, the program is located in the extras-testing repository. I believe it is under &#8216;network&#8217; in the [...]


Related posts:<ol><li><a href='http://406notacceptable.com/guides/aircrack-on-the-n900/' rel='bookmark' title='Permanent Link: Aircrack on the N900'>Aircrack on the N900</a></li>
<li><a href='http://406notacceptable.com/the-real-world/update-on-aircrack-for-n900/' rel='bookmark' title='Permanent Link: Update on Aircrack for N900'>Update on Aircrack for N900</a></li>
<li><a href='http://406notacceptable.com/operating-systems/pr1-1-1-n900-update-still-not-out-in-the-uk/' rel='bookmark' title='Permanent Link: PR1.1.1 N900 Update still not out in the UK'>PR1.1.1 N900 Update still not out in the UK</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>It looks like the N900 may become a network security/hackers dream phone! First aircrack, now Nmap; hopefully, we can get kismet, metasploit, air-pwn, and friends up and running on the device in the near future.</p>
<p>Installing Nmap is a breeze, the program is located in the extras-testing repository. I believe it is under &#8216;network&#8217; in the application manager, but it&#8217;s faster to simply search for the program. To run this program, you will have to use the X terminal and simply type nmap &#8211; the application will then report a LOT of options! It&#8217;s best not to try and crash out of a scan on the N900 using CTRL+C as the x terminal will no longer accept any keyboard commands until you close it. I guess that is one reason why Nmap is still in extras-testing!</p>
<p>Here is the result of a basic scan, you don&#8217;t need to be root for this one; but you do for a number of options. For a basic scan you simply need to type nmap &lt;target ip&gt; . In the example, I had to use option -PN to find the machine; this treats all hosts as online and doesn&#8217;t bother checking if it is alive.</p>
<p style="text-align: center;"><img class="aligncenter" src="http://406notacceptable.com/wp-content/uploads/2010/02/screenshot08.png" alt="" width="560" height="336" /></p>
<p style="text-align: left;">Nmap is typically used to find available ports/machines and the operating system (option -O) before running other tools to attempt to exploit the open ports. It&#8217;s also a nice way to check your router is doing what it should be!</p>
<p style="text-align: left;">For a comphrensive list of the options and more information on how to use Nmap, please see the <a title="Nmap manual" href="http://nmap.org/book/man-briefoptions.html" target="_blank">official manual pages</a>.</p>


<p>Related posts:<ol><li><a href='http://406notacceptable.com/guides/aircrack-on-the-n900/' rel='bookmark' title='Permanent Link: Aircrack on the N900'>Aircrack on the N900</a></li>
<li><a href='http://406notacceptable.com/the-real-world/update-on-aircrack-for-n900/' rel='bookmark' title='Permanent Link: Update on Aircrack for N900'>Update on Aircrack for N900</a></li>
<li><a href='http://406notacceptable.com/operating-systems/pr1-1-1-n900-update-still-not-out-in-the-uk/' rel='bookmark' title='Permanent Link: PR1.1.1 N900 Update still not out in the UK'>PR1.1.1 N900 Update still not out in the UK</a></li>
</ol></p><hr />
<p><small>&copy; jim for <a href="http://406notacceptable.com">406 Not Acceptable</a>, 2010. |
<a href="http://406notacceptable.com/security/nmap-now-on-the-n900/">Permalink</a> |
<a href="http://406notacceptable.com/security/nmap-now-on-the-n900/#comments">One comment</a> |
Add to
<a href="http://del.icio.us/post?url=http://406notacceptable.com/security/nmap-now-on-the-n900/&amp;title=Nmap now on the N900!">del.icio.us</a>
<br/>
Post tags: <a href="http://406notacceptable.com/tag/aircrack/" rel="tag">aircrack</a>, <a href="http://406notacceptable.com/tag/n900/" rel="tag">N900</a>, <a href="http://406notacceptable.com/tag/nmap/" rel="tag">nmap</a>, <a href="http://406notacceptable.com/tag/security/" rel="tag">Security</a><br/>
</small></p>
<p><small>Feed enhanced by <a href='http://planetozh.com/blog/my-projects/wordpress-plugin-better-feed-rss/'>Better Feed</a> from  <a href='http://planetozh.com/blog/'>Ozh</a></small></p>
]]></content:encoded>
			<wfw:commentRss>http://406notacceptable.com/security/nmap-now-on-the-n900/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Watch Hulu, South Park, One Piece videos using a SSH Tunnel</title>
		<link>http://406notacceptable.com/guides/watch-hulu-south-park-one-piece-videos-using-a-ssh-tunnel/</link>
		<comments>http://406notacceptable.com/guides/watch-hulu-south-park-one-piece-videos-using-a-ssh-tunnel/#comments</comments>
		<pubDate>Tue, 09 Feb 2010 10:52:09 +0000</pubDate>
		<dc:creator>Jim</dc:creator>
				<category><![CDATA[Guides]]></category>
		<category><![CDATA[foxyproxy]]></category>
		<category><![CDATA[hulu]]></category>
		<category><![CDATA[ssh tunnel]]></category>
		<category><![CDATA[stream video]]></category>

		<guid isPermaLink="false">http://406notacceptable.com/?p=511</guid>
		<description><![CDATA[Sadly for those of us not in America, we cannot watch the streams provided on Hulu and these other sites. So how do we watch Hulu from the UK, Canada, or anywhere outside of the US? We have to use a SSH Tunnel and some other software to trick Hulu into thinking we are from [...]


Related posts:<ol><li><a href='http://406notacceptable.com/guides/aircrack-on-the-n900/' rel='bookmark' title='Permanent Link: Aircrack on the N900'>Aircrack on the N900</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Sadly for those of us not in America, we cannot watch the streams provided on Hulu and these other sites. So how do we watch Hulu from the UK, Canada, or anywhere outside of the US? We have to use a SSH Tunnel and some other software to trick Hulu into thinking we are from America.. Otherwise we have to wait for the latest episodes of Family Guy or American Dad to finally get relased in our respective countries&#8230; Now you may think that it would be easy to simply set up a connection to a proxy server in the United States and trick Hulu into believeing you are in America. This is not the best solution! First, you will find free proxy servers to be slow and unreliable; plus, even if you do find a working proxy, you will not be able to watch the videos on Hulu or One Piece Official, due to the way flash works.</p>
<p>So you are left with two options: purchase or set up a VPN connection on your own webhost/VPS, or use putty to set up a SSH tunnel and ProxyCap to connect to server in America. Thankfully, for me anyway, my Linode is in the United States! Setting up a VPN connection is a lengthy process, you really want to avoid doing so at all costs; whilst a SSH tunnel requires very little work! For those of you without a server to connect to, finding a cheap VPN is your best option for streaming video from these sites.</p>
<p>What you will need to do is: set up a SSH tunnel to your US server, then instruct your web browser to connect via that tunnel. This will work like setting a proxy server, but pointing to localhost/127.0.0.1 (your own computer) Putty will then force all connections to Hulu to go through your US server, and will make it possible to watch Hulu/South Park/One Piece videos.</p>
<p>You should already have SSH on your webhost/server. Most shared web providers will allow SSH access with the same details you use for your FTP settings. This is because SSH is far more secure than FTP; so you should be using it already!</p>
<p>To set up the SSH tunnel, you will need to use a certain set of options in Putty:</p>
<div id="attachment_512" class="wp-caption aligncenter" style="width: 479px"><a href="http://406notacceptable.com/wp-content/uploads/2010/02/ssh_tunnel1.png"><img class="size-full wp-image-512" title="ssh_tunnel" src="http://406notacceptable.com/wp-content/uploads/2010/02/ssh_tunnel1.png" alt="SSH Tunneling Options for Hulu" width="469" height="452" /></a><p class="wp-caption-text">This is from the SSH -&gt; Tunnelling Menu</p></div>
<p>Once you have it set up like in the picture, press &#8216;add&#8217; and the forwarded ports should state D8080 or D&lt;your port&gt;. Save your connection settings for later and connect to your site. Alternatively, you may use a command line tool like this:</p>
<pre>ssh -D 8080 -p 22 -f -N exampleuser@exampleserver.com</pre>
<p>In either case, you may use a different port than 8080.</p>
<p>Next in your browser, you need to change your connection settings to connect via a SOCKS proxy based at 127.0.0.1 using port 8080. The following picture shows the correct set up on Firefox:</p>
<div id="attachment_513" class="wp-caption aligncenter" style="width: 526px"><a href="http://406notacceptable.com/wp-content/uploads/2010/02/firefox_tunnel.png"><img class="size-full wp-image-513" title="firefox_tunnel" src="http://406notacceptable.com/wp-content/uploads/2010/02/firefox_tunnel.png" alt="Proxy settings for Firefox" width="516" height="630" /></a><p class="wp-caption-text">This is how you set up Firefox for SSH tunneling</p></div>
<p>Now you are almost there! Check your connection works, if it doesn&#8217;t it is likely you have typed in the wrong port or have not connected to your server yet, both easy mistakes. You could use the FoxyProxy extension if you wish to set up some advanced rules (e.g. use the proxy only for Hulu.)</p>
<p>Now you may find you can now browse One Piece Official, which you could not before; this is because you now have an American IP. Check it out on any of the hundreds of &#8216;what is my ip&#8217; clones. Yet, don&#8217;t bother trying the watch any of the videos on Hulu yet, there is still one step to go! This is because Flash does not respect your browser&#8217;s settings and just does what it wants, so tries to connect via your standard connection &#8212; effectively bypassing your proxy. You will need to get a copy of ProxyCap, they provide a free 30 day trial on their site. I am not sure if the trial is like WinRar&#8217;s infamous 30 days, or if you can simply redownload it. There is a FoxyProxy video helper, which supposedly does the same job; but I can not get it to work for me. If anyone has any tips, that would be a great free alternative.</p>
<p>Once ProxyCap is installed you need to edit the preferences to use your proxy, click the dotted square nto the right of the text &#8216;Manage your proxies&#8217;. Enter 127.0.0.1 and your port, as shown below:</p>
<div id="attachment_518" class="wp-caption aligncenter" style="width: 597px"><a href="http://406notacceptable.com/wp-content/uploads/2010/02/proxycap_hulu_1.png"><img class="size-full wp-image-518" title="proxycap_hulu_1" src="http://406notacceptable.com/wp-content/uploads/2010/02/proxycap_hulu_1.png" alt="Proxycap proxy settings" width="587" height="460" /></a><p class="wp-caption-text">Setting up our tunnel as a proxy</p></div>
<p>Next you need to update the rules to allow ProxyCap to deal with UDP, as follows:</p>
<div id="attachment_519" class="wp-caption aligncenter" style="width: 588px"><a href="http://406notacceptable.com/wp-content/uploads/2010/02/proxycap_hulu_2.png"><img class="size-full wp-image-519" title="proxycap_hulu_2" src="http://406notacceptable.com/wp-content/uploads/2010/02/proxycap_hulu_2.png" alt="ProxyCap rules for Hulu" width="578" height="514" /></a><p class="wp-caption-text">The only change here is a tick on UDP</p></div>
<p>Now go check out Hulu and enjoy some TV!</p>
<p>For those of you who wish to use the BBC iPlayer this will work in the same manner, just get a UK based server <img src='http://406notacceptable.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>


<p>Related posts:<ol><li><a href='http://406notacceptable.com/guides/aircrack-on-the-n900/' rel='bookmark' title='Permanent Link: Aircrack on the N900'>Aircrack on the N900</a></li>
</ol></p><hr />
<p><small>&copy; jim for <a href="http://406notacceptable.com">406 Not Acceptable</a>, 2010. |
<a href="http://406notacceptable.com/guides/watch-hulu-south-park-one-piece-videos-using-a-ssh-tunnel/">Permalink</a> |
<a href="http://406notacceptable.com/guides/watch-hulu-south-park-one-piece-videos-using-a-ssh-tunnel/#comments">No comment</a> |
Add to
<a href="http://del.icio.us/post?url=http://406notacceptable.com/guides/watch-hulu-south-park-one-piece-videos-using-a-ssh-tunnel/&amp;title=Watch Hulu, South Park, One Piece videos using a SSH Tunnel">del.icio.us</a>
<br/>
Post tags: <a href="http://406notacceptable.com/tag/foxyproxy/" rel="tag">foxyproxy</a>, <a href="http://406notacceptable.com/tag/hulu/" rel="tag">hulu</a>, <a href="http://406notacceptable.com/tag/ssh-tunnel/" rel="tag">ssh tunnel</a>, <a href="http://406notacceptable.com/tag/stream-video/" rel="tag">stream video</a><br/>
</small></p>
<p><small>Feed enhanced by <a href='http://planetozh.com/blog/my-projects/wordpress-plugin-better-feed-rss/'>Better Feed</a> from  <a href='http://planetozh.com/blog/'>Ozh</a></small></p>
]]></content:encoded>
			<wfw:commentRss>http://406notacceptable.com/guides/watch-hulu-south-park-one-piece-videos-using-a-ssh-tunnel/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Freeme2: an alternative to Fairuse4wm</title>
		<link>http://406notacceptable.com/security/drm/freeme2-an-alternative-to-fairuse4wm/</link>
		<comments>http://406notacceptable.com/security/drm/freeme2-an-alternative-to-fairuse4wm/#comments</comments>
		<pubDate>Sun, 07 Feb 2010 15:20:16 +0000</pubDate>
		<dc:creator>Jim</dc:creator>
				<category><![CDATA[DRM]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[FairUse4WM]]></category>
		<category><![CDATA[FreeMe2]]></category>
		<category><![CDATA[music]]></category>

		<guid isPermaLink="false">http://406notacceptable.com/?p=500</guid>
		<description><![CDATA[This handy program &#8211; Freeme2 &#8211; is an open source project that removes pesky Digital Rights Management (DRM) protection from Windows Media WMA audio files and WMV video files. This is rather handy for those older MP3 downloads you may have purchased, as many sites are now selling their music without DRM. This program is [...]


Related posts:<ol><li><a href='http://406notacceptable.com/guides/aircrack-on-the-n900/' rel='bookmark' title='Permanent Link: Aircrack on the N900'>Aircrack on the N900</a></li>
<li><a href='http://406notacceptable.com/operating-systems/fixing-flac-music-for-the-n900-media-player/' rel='bookmark' title='Permanent Link: Fixing FLAC music for the N900 media player'>Fixing FLAC music for the N900 media player</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>This handy program &#8211; Freeme2 &#8211; is an open source project that removes pesky Digital Rights Management (DRM) protection from Windows Media WMA audio files and WMV video files. This is rather handy for those older MP3 downloads you may have purchased, as many sites are now selling their music without DRM. This program is a little harder to use than FairUse4WM, but it&#8217;s always nice to have an alternative in case FairUse4WM does not work; however, you may prefer Freeme to FairUse4WM!</p>
<p>There are <strong>download links</strong> both in the middle and one at the bottom of this article.</p>
<p>This post is taken from my old site Tech Rant. For some reason the exported xml did not contain this post, so for that reason I am recreating the post. I know that Tech Rant got a lot of traffic for providing links to software such as FairUse4WM; so I feel this site should begin to take some of the burden away from the old one.</p>
<p><script type="text/javascript">// <![CDATA[
google_ad_client = "pub-2418041767429522";
google_ad_width = 728;
google_ad_height = 15;
google_ad_format = "728x15_0ads_al_s";
//2007-07-22: tech rant article
google_ad_channel = "3280111919";
google_color_border = "FFFFFF";
google_color_bg = "FFFFFF";
google_color_link = "000000";
google_color_text = "000000";
google_color_url = "7C82A4";
// ]]&gt;</script> <script src="http://pagead2.googlesyndication.com/pagead/show_ads.js" type="text/javascript">
</script><script type="text/javascript">// <![CDATA[
google_protectAndRun("ads_core.google_render_ad", google_handleError, google_render_ad);
// ]]&gt;</script>When using FreeMe2 you have the choice of using the third party helper program or manually using the command line to free individual tracks of DRM. Download links and instructions on how to use both versions of the software are included in this post. For those who are not command line savvy, or are used to FairUse4WM&#8217;s interfact, I highly recommend you use a GUI when using FreeMe.</p>
<p>FreeMe2 should also work with Vista and should also run on Windows 7; although, problems have been reported with Vista. If you are using Windows 7, you should try using XP Mode; the tool should be more reliable. Alternatively, you can always try running FreeMe in a virtual machine; such as VirtualBox.</p>
<p>Please only use these program to remove DRM from files you already own, or for educational purposes. 406NotAcceptable and Tech Rant do not condone piracy.</p>
<p>Please remember that none of these download links are hosted by any Linode, 406NotAcceptable, Dreamhost, or Tech Rant server . They are all external. Always use a virus scanner when downloading files from third party sites.</p>
<p><strong>Download links</strong></p>
<p><a title="Freeme" href="http://rapidshare.com/files/132357269/freemecollection.zip">Latest Version, source, and help file</a><br />
<a href="http://sourceforge.net/project/showfiles.php?group_id=205801">Latest version</a><br />
<a href="http://www.file-upload.net/download-606114/fm2helper-0.2.zip.html">FreeMe2 Helper</a></p>
<p>Instructions for use with FreeMe2 Helper</p>
<p><em>Simply copy the executable into the same folder as freeme2.exe. You can to drag and drop complete folders on it which are being processed recursively (i.e. with all subdirectories).</em></p>
<p>Instructions for use without helper:</p>
<p><em>From the readme</p>
<p>How to use freeme2<br />
Freeme2 is a command line application. You need to learn how to use Windows command console to run it.</p>
<p>How to use freeme2 to remove DRM from Windows Media .WMA and .WMV files (command line console)</p>
<p>1. Put your DRM protected media files in the same folder as Freeme2.<br />
2. Run the Windows command console: Hit &#8220;Start&#8221;-&gt;Hit &#8220;Run&#8230;&#8221;-&gt;type CMD-&gt;Hit the &#8220;OK&#8221; button.<br />
3. Then, once in the command console, change the directory by using the &#8220;cd&#8221; command to the directory where your FreeMe2 is located.<br />
4. Extract your license keys. You can do this with drmdbg.<br />
5. Type the following in the command line console:<br />
Code:</p>
<p>freeme2 &lt;name_of_drm_wma_file&gt;</p>
<p>and press the Enter button</p>
<p>How to use freeme2 to remove DRM from Windows Media .WMA and .WMV files (drag-n-drop)<br />
Drag-n-drop method is much easier than the one using command line console:</p>
<p>1. Put your DRM protected media files in the same folder as Freeme2.<br />
2. Extract your license keys. You can do this with drmdbg. If you use drmdbg you can<br />
take the drm2-i.key file generated by drmdbg, rename it to drm2.key and copy it to the FreeMe2 folder.<br />
3. Drag your sample.wma file onto FreeMe2.exe. It starts up and runs fine.</p>
<p>The latest version of FreeMe2 supports decryption engine from MPlayer. There are three options to use freeme2: v,s and 2. Any combination of those is valid:</p>
<p>* v &#8211; verbose mode<br />
* s &#8211; ask for SID<br />
* 2 &#8211; use FreeMe2 original decryption engine (by default we use MPlayers one).</p>
<p>Example configurations:</p>
<p>* Decrypt file<br />
Code:</p>
<p>FreeMe2 some_file</p>
<p>* Decrypt file in verbose mode<br />
Code:</p>
<p>FreeMe2 -v some_file</p>
<p>* Decrypt file but force program to ask for sid<br />
Code:</p>
<p>FreeMe2 -s some_file</p>
<p>* Decrypt file but force program to ask for sid in verbose mode<br />
Code:</p>
<p>FreeMe2 -vs some_file</p>
<p>* Decrypt file but force program to ask for sid in verbose mode using FreeMe2 decryption engine<br />
Code:</p>
<p>FreeMe2 -vs2 some_file</em></p>
<p><strong>Download link</strong></p>
<p><a href="http://sourceforge.net/project/showfiles.php?group_id=205801">Latest version</a></p>
<div id="_mcePaste" style="overflow: hidden; position: absolute; left: -10000px; top: 1632px; width: 1px; height: 1px;">
<p>Freeme2 is a freeware open source piece of software that removes <a title="Digital Rights Management Articles" href="http://www.tech-rant.com/Topic11.htm" target="_blank">Digital Rights Management</a> (<a title="Digital Rights Management Articles" href="http://www.tech-rant.com/Topic11.htm" target="_blank">DRM</a>) protection from Windows Media WMA audio files and WMV video files. This program is a little harder to use than <a title="FairUse4WM download" href="http://tech-rant.com/Article113.htm" target="_blank">FairUse4WM</a>, but it&#8217;s always nice to have an alternative in case FairUse4WM does not work.</p>
<p>&lt;a href=&#8221;http://rapidshare.com/files/132357269/freemecollection.zip&gt;Latest version, source, and help file</p>
<p><script type="text/javascript">// <![CDATA[
google_ad_client = "pub-2418041767429522";
google_ad_width = 728;
google_ad_height = 15;
google_ad_format = "728x15_0ads_al_s";
//2007-07-22: tech rant article
google_ad_channel = "3280111919";
google_color_border = "FFFFFF";
google_color_bg = "FFFFFF";
google_color_link = "000000";
google_color_text = "000000";
google_color_url = "7C82A4";
// ]]&gt;</script> <script src="http://pagead2.googlesyndication.com/pagead/show_ads.js" type="text/javascript">
</script><script type="text/javascript">// <![CDATA[
google_protectAndRun("ads_core.google_render_ad", google_handleError, google_render_ad);
// ]]&gt;</script> When using FreeMe2 you have the choice of using the third party helper program or manually using the command line to free individual tracks of <a title="Digital Rights Management Articles" href="http://www.tech-rant.com/Topic11.htm" target="_blank">DRM</a>. <a title="Tech Rant Download Section" href="http://www.tech-rant.com/Downloads.htm" target="_blank">Download</a> links and instructions on how to use both versions of the software are included in this post.</p>
<p>FreeMe2 should also work with Vista; although, problems have been reported.</p>
<p>Again only use these program to remove DRM from files you already own, or for educational purposes. <a title="Alternative news and opinion on computer hardware news" href="http://www.tech-rant.com/" target="_blank">Tech Rant</a> does not condone piracy.</p>
<p>Please remember that none of these download links are hosted by Tech Rant or Dreamhost servers. They are all external. Always use a virus scanner when downloading files from third party sites.</p>
<p><strong>Download link</strong></p>
<p>&lt;a href=&#8221;http://rapidshare.com/files/132357269/freemecollection.zip&gt;Latest version, source, and help file</p>
<p><a href="http://sourceforge.net/project/showfiles.php?group_id=205801">Latest version</a></p>
<p><a href="http://www.file-upload.net/download-606114/fm2helper-0.2.zip.html">FreeMe2 Helper</a></p>
<p>Instructions for use with FreeMe2 Helper</p>
<p><em>Simply copy the executable into the same folder as freeme2.exe. You can to drag and drop complete folders on it which are being processed recursively (i.e. with all subdirectories).</em></p>
<p>Instructions for use without helper:</p>
<p><em>From the readme</p>
<p>How to use freeme2<br />
Freeme2 is a command line application. You need to learn how to use Windows command <a title="Consoles Articles" href="http://www.tech-rant.com/Topic9.htm" target="_blank">console</a> to run it.</p>
<p>How to use freeme2 to remove DRM from Windows Media .WMA and .WMV files (command line console)</p>
<p>1. Put your DRM protected media files in the same folder as Freeme2.<br />
2. Run the Windows command console: Hit &#8220;Start&#8221;-&gt;Hit &#8220;Run&#8230;&#8221;-&gt;type CMD-&gt;Hit the &#8220;OK&#8221; button.<br />
3. Then, once in the command console, change the directory by using the &#8220;cd&#8221; command to the directory where your FreeMe2 is located.<br />
4. Extract your license keys. You can do this with drmdbg.<br />
5. Type the following in the command line console:<br />
Code:</p>
<p>freeme2 &lt;name_of_drm_wma_file&gt;</p>
<p>and press the Enter button</p>
<p>How to use freeme2 to remove DRM from Windows Media .WMA and .WMV files (drag-n-drop)<br />
Drag-n-drop method is much easier than the one using command line console:</p>
<p>1. Put your DRM protected media files in the same folder as Freeme2.<br />
2. Extract your license keys. You can do this with drmdbg. If you use drmdbg you can<br />
take the drm2-i.key file generated by drmdbg, rename it to drm2.key and copy it to the FreeMe2 folder.<br />
3. Drag your sample.wma file onto FreeMe2.exe. It starts up and runs fine.</p>
<p>The latest version of FreeMe2 supports decryption engine from MPlayer. There are three options to use freeme2: v,s and 2. Any combination of those is valid:</p>
<p>* v &#8211; verbose mode<br />
* s &#8211; ask for SID<br />
* 2 &#8211; use FreeMe2 original decryption engine (by default we use MPlayers one).</p>
<p>Example configurations:</p>
<p>* Decrypt file<br />
Code:</p>
<p>FreeMe2 some_file</p>
<p>* Decrypt file in verbose mode<br />
Code:</p>
<p>FreeMe2 -v some_file</p>
<p>* Decrypt file but force program to ask for sid<br />
Code:</p>
<p>FreeMe2 -s some_file</p>
<p>* Decrypt file but force program to ask for sid in verbose mode<br />
Code:</p>
<p>FreeMe2 -vs some_file</p>
<p>* Decrypt file but force program to ask for sid in verbose mode using FreeMe2 decryption engine<br />
Code:</p>
<p>FreeMe2 -vs2 some_file</em></p>
<p>Download link</p>
<p><a href="http://sourceforge.net/project/showfiles.php?group_id=205801">Latest version</a><strong>Download link</strong></div>


<p>Related posts:<ol><li><a href='http://406notacceptable.com/guides/aircrack-on-the-n900/' rel='bookmark' title='Permanent Link: Aircrack on the N900'>Aircrack on the N900</a></li>
<li><a href='http://406notacceptable.com/operating-systems/fixing-flac-music-for-the-n900-media-player/' rel='bookmark' title='Permanent Link: Fixing FLAC music for the N900 media player'>Fixing FLAC music for the N900 media player</a></li>
</ol></p><hr />
<p><small>&copy; jim for <a href="http://406notacceptable.com">406 Not Acceptable</a>, 2010. |
<a href="http://406notacceptable.com/security/drm/freeme2-an-alternative-to-fairuse4wm/">Permalink</a> |
<a href="http://406notacceptable.com/security/drm/freeme2-an-alternative-to-fairuse4wm/#comments">No comment</a> |
Add to
<a href="http://del.icio.us/post?url=http://406notacceptable.com/security/drm/freeme2-an-alternative-to-fairuse4wm/&amp;title=Freeme2: an alternative to Fairuse4wm">del.icio.us</a>
<br/>
Post tags: <a href="http://406notacceptable.com/tag/drm/" rel="tag">DRM</a>, <a href="http://406notacceptable.com/tag/fairuse4wm/" rel="tag">FairUse4WM</a>, <a href="http://406notacceptable.com/tag/freeme2/" rel="tag">FreeMe2</a>, <a href="http://406notacceptable.com/tag/music/" rel="tag">music</a><br/>
</small></p>
<p><small>Feed enhanced by <a href='http://planetozh.com/blog/my-projects/wordpress-plugin-better-feed-rss/'>Better Feed</a> from  <a href='http://planetozh.com/blog/'>Ozh</a></small></p>
]]></content:encoded>
			<wfw:commentRss>http://406notacceptable.com/security/drm/freeme2-an-alternative-to-fairuse4wm/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Update on Aircrack for N900</title>
		<link>http://406notacceptable.com/the-real-world/update-on-aircrack-for-n900/</link>
		<comments>http://406notacceptable.com/the-real-world/update-on-aircrack-for-n900/#comments</comments>
		<pubDate>Wed, 03 Feb 2010 15:57:18 +0000</pubDate>
		<dc:creator>Jim</dc:creator>
				<category><![CDATA[The real world]]></category>
		<category><![CDATA[aircrack]]></category>
		<category><![CDATA[N900]]></category>
		<category><![CDATA[update]]></category>

		<guid isPermaLink="false">http://406notacceptable.com/the-real-world/update-on-aircrack-for-n900/</guid>
		<description><![CDATA[It seems there are a number of issues with Aircrack on the N900. Whilst you can sniff packets and sometimes injection may be successful; many other features do not work.
This looked to be an early success for the the N900. Sadly, aircrack is not that useful at the moment. As it sees every network as [...]


Related posts:<ol><li><a href='http://406notacceptable.com/guides/aircrack-on-the-n900/' rel='bookmark' title='Permanent Link: Aircrack on the N900'>Aircrack on the N900</a></li>
<li><a href='http://406notacceptable.com/operating-systems/pr1-1-1-n900-update-still-not-out-in-the-uk/' rel='bookmark' title='Permanent Link: PR1.1.1 N900 Update still not out in the UK'>PR1.1.1 N900 Update still not out in the UK</a></li>
<li><a href='http://406notacceptable.com/security/nmap-now-on-the-n900/' rel='bookmark' title='Permanent Link: Nmap now on the N900!'>Nmap now on the N900!</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>It seems there are a number of issues with Aircrack on the N900. Whilst you can sniff packets and sometimes injection may be successful; many other features do not work.</p>
<p>This looked to be an early success for the the N900. Sadly, aircrack is not that useful at the moment. As it sees every network as being on channel 6. Airodump-ng does not work on the latest SVN version; unless you are actually connected to the network (which renders it pointless.)</p>
<p>Before I go testing other utilities on the N900 I really need to flash my device. For no apparent reason I did not get the PR1.01 update pushed to my device; so I have had to make do with a manual update using apt. This has left my N900 in a weird state. All my applications are working with PR1.1 features (e.g. rotation, Ovi store) but my device reports as using PR1.0 <img src='http://406notacceptable.com/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> </p>


<p>Related posts:<ol><li><a href='http://406notacceptable.com/guides/aircrack-on-the-n900/' rel='bookmark' title='Permanent Link: Aircrack on the N900'>Aircrack on the N900</a></li>
<li><a href='http://406notacceptable.com/operating-systems/pr1-1-1-n900-update-still-not-out-in-the-uk/' rel='bookmark' title='Permanent Link: PR1.1.1 N900 Update still not out in the UK'>PR1.1.1 N900 Update still not out in the UK</a></li>
<li><a href='http://406notacceptable.com/security/nmap-now-on-the-n900/' rel='bookmark' title='Permanent Link: Nmap now on the N900!'>Nmap now on the N900!</a></li>
</ol></p><hr />
<p><small>&copy; jim for <a href="http://406notacceptable.com">406 Not Acceptable</a>, 2010. |
<a href="http://406notacceptable.com/the-real-world/update-on-aircrack-for-n900/">Permalink</a> |
<a href="http://406notacceptable.com/the-real-world/update-on-aircrack-for-n900/#comments">One comment</a> |
Add to
<a href="http://del.icio.us/post?url=http://406notacceptable.com/the-real-world/update-on-aircrack-for-n900/&amp;title=Update on Aircrack for N900">del.icio.us</a>
<br/>
Post tags: <a href="http://406notacceptable.com/tag/aircrack/" rel="tag">aircrack</a>, <a href="http://406notacceptable.com/tag/n900/" rel="tag">N900</a>, <a href="http://406notacceptable.com/tag/update/" rel="tag">update</a><br/>
</small></p>
<p><small>Feed enhanced by <a href='http://planetozh.com/blog/my-projects/wordpress-plugin-better-feed-rss/'>Better Feed</a> from  <a href='http://planetozh.com/blog/'>Ozh</a></small></p>
]]></content:encoded>
			<wfw:commentRss>http://406notacceptable.com/the-real-world/update-on-aircrack-for-n900/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

