<?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>Fkn 1337 &#187; Other</title>
	<atom:link href="http://fkn1337.com/category/other/feed/" rel="self" type="application/rss+xml" />
	<link>http://fkn1337.com</link>
	<description>I R TEH 1337</description>
	<lastBuildDate>Fri, 12 Mar 2010 16:46:03 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>S.M.A.R.T status failing to verified</title>
		<link>http://fkn1337.com/s-m-a-r-t-status-failing-to-verified/</link>
		<comments>http://fkn1337.com/s-m-a-r-t-status-failing-to-verified/#comments</comments>
		<pubDate>Fri, 12 Mar 2010 11:31:30 +0000</pubDate>
		<dc:creator>Hasnat</dc:creator>
				<category><![CDATA[Other]]></category>

		<guid isPermaLink="false">http://fkn1337.com/?p=151</guid>
		<description><![CDATA[I read all over the internet to get your HDD replaced if you are getting the S.M.A.R.T status failing (or failed) Now what I did was dissembled my macbook air to replace the HDD, but unfortunately i didn&#8217;t have the &#8230; <a href="http://fkn1337.com/s-m-a-r-t-status-failing-to-verified/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I read all over the internet to get your HDD replaced if you are getting the S.M.A.R.T status failing (or failed)</p>
<p>Now what I did was dissembled my macbook air to replace the HDD, but unfortunately i didn&#8217;t have the right zif cable to replace the HDD, so i simply reconnected my old HDD back.</p>
<p>What i see now is the same HDD with S.M.A.R.T status verified (in other words its fixed), its not making any sense to me but working so far.</p>
<p>But before you do any thing i would strongly suggest to backup your full drive or atleast important data before you try anything.</p>
<p>Now my HDD status is</p>
<p><code>SAMSUNG HS082HB:<br />
  Capacity:	80.03 GB (80,026,361,856 bytes)<br />
  Model:	SAMSUNG HS082HB<br />
  Revision:	NL101-06<br />
  Serial Number:	S1BPJ16Q421794<br />
  Removable Media:	No<br />
  Detachable Drive:	No<br />
  BSD Name:	disk0<br />
  Protocol:	ATA<br />
  Unit Number:	0<br />
  Socket Type:	Internal<br />
  Low Power Polling:	No<br />
  Partition Map Type:	GPT (GUID Partition Table)<br />
  S.M.A.R.T. status:	Verified<br />
  Volumes:<br />
Macintosh HD:<br />
  Capacity:	68.59 GB (68,585,259,008 bytes)<br />
  Available:	32.24 GB (32,244,850,688 bytes)<br />
  Writable:	Yes<br />
  File System:	Journaled HFS+<br />
  BSD Name:	disk0s2<br />
  Mount Point:	/<br />
</code></p>
<p>which am sure was failed or failing.</p>
<p>and hai am not responsible for anything that goes wrong with you, never trust the internet <img src='http://fkn1337.com/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://fkn1337.com/s-m-a-r-t-status-failing-to-verified/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>decode google maps PolyLines objective C</title>
		<link>http://fkn1337.com/decode-google-maps-polylines-objective-c/</link>
		<comments>http://fkn1337.com/decode-google-maps-polylines-objective-c/#comments</comments>
		<pubDate>Fri, 29 Jan 2010 15:20:00 +0000</pubDate>
		<dc:creator>Hasnat</dc:creator>
				<category><![CDATA[Other]]></category>

		<guid isPermaLink="false">http://fkn1337.com/?p=133</guid>
		<description><![CDATA[If you are working on Google maps API and using routes/directions this will help you decode route polylines works on MAC OS X and iPhone SDK -(NSMutableArray *)decodePolyLine: (NSMutableString *)encoded { [encoded replaceOccurrencesOfString:@"\\\\" withString:@"\\" options:NSLiteralSearch range:NSMakeRange(0, [encoded length])]; NSInteger len &#8230; <a href="http://fkn1337.com/decode-google-maps-polylines-objective-c/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>If you are working on Google maps API and using routes/directions<br />
this will help you decode route polylines<br />
works on MAC OS X and iPhone SDK</p>
<p><code>-(NSMutableArray *)decodePolyLine: (NSMutableString *)encoded {<br />
	[encoded replaceOccurrencesOfString:@"\\\\" withString:@"\\"<br />
		options:NSLiteralSearch<br />
		range:NSMakeRange(0, [encoded length])];<br />
	NSInteger len = [encoded length];<br />
	NSInteger index = 0;<br />
	NSMutableArray *array = [[NSMutableArray alloc] init];<br />
	NSInteger lat=0;<br />
	NSInteger lng=0;<br />
	while (index &lt; len) {<br />
		NSInteger b;<br />
		NSInteger shift = 0;<br />
		NSInteger result = 0;<br />
		do {<br />
			b = [encoded characterAtIndex:index++] - 63;<br />
			result |= (b &#038; 0x1f) &lt;&lt; shift;<br />
			shift += 5;<br />
		} while (b &gt;= 0x20);<br />
		NSInteger dlat = ((result &#038; 1) ? ~(result &gt;&gt; 1) : (result &gt;&gt; 1));<br />
		lat += dlat;<br />
		shift = 0;<br />
		result = 0;<br />
		do {<br />
			b = [encoded characterAtIndex:index++] - 63;<br />
			result |= (b &#038; 0x1f) &lt;&lt; shift;<br />
			shift += 5;<br />
		} while (b >= 0x20);<br />
		NSInteger dlng = ((result &#038; 1) ? ~(result &gt;&gt; 1) : (result &gt;&gt; 1));<br />
		lng += dlng;<br />
		NSNumber *latitude = [[NSNumber alloc] initWithFloat:lat * 1e-5];<br />
		NSNumber *longitude = [[NSNumber alloc] initWithFloat:lng * 1e-5];<br />
		CLLocation *loc = [[CLLocation alloc] initWithLatitude:[latitude floatValue] longitude:[longitude floatValue]];<br />
		[polyLines addObject:loc];<br />
		NSLog(@"%f,%f",[latitude floatValue],[longitude floatValue]);<br />
		[loc release];<br />
		[latitude release];<br />
		[longitude release];<br />
	}<br />
	return array;<br />
}<br />
</code></p>
]]></content:encoded>
			<wfw:commentRss>http://fkn1337.com/decode-google-maps-polylines-objective-c/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>IIS 6.0 PHP Invalid access to memory location error</title>
		<link>http://fkn1337.com/iis-6-0-php-invalid-access-to-memory-location-error/</link>
		<comments>http://fkn1337.com/iis-6-0-php-invalid-access-to-memory-location-error/#comments</comments>
		<pubDate>Mon, 30 Nov 2009 11:53:44 +0000</pubDate>
		<dc:creator>Hasnat</dc:creator>
				<category><![CDATA[Other]]></category>
		<category><![CDATA[IIS ISAPI Invalid access to memory location php]]></category>

		<guid isPermaLink="false">http://fkn1337.com/iis-6-0-php-invalid-access-to-memory-location-error/</guid>
		<description><![CDATA[installed php 5.2.11 on windows 2003 IIS 6.0 (ISAPI) encountred following error on phpinfo() Invalid access to memory location FIX: check directory write permissions for following paths in php.ini upload_tmp_dir="C:\Temp" session.save_path="C:\Temp" error_log="C:\temp\php-errors.log" paths on your php.ini might be different]]></description>
			<content:encoded><![CDATA[<p>installed php 5.2.11 on windows 2003 IIS 6.0 (ISAPI)<br />
encountred following error on phpinfo()<br />
<code>Invalid access to memory location</code></p>
<p>FIX:<br />
check directory write permissions for following paths in php.ini<br />
<code>upload_tmp_dir="C:\Temp"<br />
session.save_path="C:\Temp"<br />
error_log="C:\temp\php-errors.log"</code><br />
paths on your php.ini might be different</p>
]]></content:encoded>
			<wfw:commentRss>http://fkn1337.com/iis-6-0-php-invalid-access-to-memory-location-error/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>iPhone cycorder application</title>
		<link>http://fkn1337.com/iphone-cycorder-application/</link>
		<comments>http://fkn1337.com/iphone-cycorder-application/#comments</comments>
		<pubDate>Tue, 17 Mar 2009 15:38:14 +0000</pubDate>
		<dc:creator>Hasnat</dc:creator>
				<category><![CDATA[Other]]></category>

		<guid isPermaLink="false">http://fkn1337.com/?p=96</guid>
		<description><![CDATA[I am stunned! Record video from your iPhone and in very very impressive quality you can get the application in Cydia search for cycorder after video is done SSH to: /private/var/mobile/Media/Videos to download *.mov file(s) from iPhone here is one &#8230; <a href="http://fkn1337.com/iphone-cycorder-application/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I am stunned!<br />
Record video from your iPhone and in very very impressive quality<br />
you can get the application in Cydia search for cycorder</p>
<p>after video is done<br />
SSH to: /private/var/mobile/Media/Videos<br />
to download *.mov file(s) from iPhone<br />
here is one i made<br />
<object type="application/x-shockwave-flash" width="400" height="300" data="http://www.flickr.com/apps/video/stewart.swf?v=68975" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"><param name="flashvars" value="intl_lang=en-us&amp;photo_secret=df763d3715&amp;photo_id=3362428657"></param><param name="movie" value="http://www.flickr.com/apps/video/stewart.swf?v=68975"></param><param name="bgcolor" value="#000000"></param><param name="allowFullScreen" value="true"></param><embed type="application/x-shockwave-flash" src="http://www.flickr.com/apps/video/stewart.swf?v=68975" bgcolor="#000000" allowfullscreen="true" flashvars="intl_lang=en-us&amp;photo_secret=df763d3715&amp;photo_id=3362428657" height="300" width="400"></embed></object></p>
<p>
</p>
<p class="download">download <a href="http://fkn1337.com/videos/1237300304.mov">cycorder video test (mov)</a></p>
]]></content:encoded>
			<wfw:commentRss>http://fkn1337.com/iphone-cycorder-application/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
<enclosure url="http://fkn1337.com/videos/1237300304.mov" length="31214255" type="video/quicktime" />
		</item>
		<item>
		<title>iTunes 64-bit on its way?!</title>
		<link>http://fkn1337.com/itunes-64-bit-on-its-way/</link>
		<comments>http://fkn1337.com/itunes-64-bit-on-its-way/#comments</comments>
		<pubDate>Tue, 27 Nov 2007 11:05:54 +0000</pubDate>
		<dc:creator>Hasnat</dc:creator>
				<category><![CDATA[Other]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://fkn1337.com/itunes-64-bit-on-its-way/</guid>
		<description><![CDATA[connected my iPhone to charge and i got this pretty message by iTunes am using iTunes 7.5, iPhone 1.1.2 and Vista 64 previous iTunes just gave message that iPhone is not supported. well if this is true i can finally &#8230; <a href="http://fkn1337.com/itunes-64-bit-on-its-way/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>connected my iPhone to charge and i got this pretty message by iTunes</p>
<p><img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="171" alt="itunes 64bit" src="http://fkn1337.com/wp-content/uploads/2007/11/itunes-64bit.jpg" width="411" border="0" /> </p>
<p>am using iTunes 7.5, iPhone 1.1.2 and Vista 64</p>
<p>previous iTunes just gave message that iPhone is not supported.   <br />well if this is true i can finally delete my windows XP.</p>
]]></content:encoded>
			<wfw:commentRss>http://fkn1337.com/itunes-64-bit-on-its-way/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>weird hidden Word document</title>
		<link>http://fkn1337.com/weird-hidden-word-document/</link>
		<comments>http://fkn1337.com/weird-hidden-word-document/#comments</comments>
		<pubDate>Thu, 26 Jul 2007 12:00:06 +0000</pubDate>
		<dc:creator>Hasnat</dc:creator>
				<category><![CDATA[Other]]></category>

		<guid isPermaLink="false">http://fkn1337.com/weird-hidden-word-document/</guid>
		<description><![CDATA[MS word keeps cache of the document that you are typing in a separate file hidden and with little weird name, usually virus files have such names but this is not a virus file is undeleteable while MS word is &#8230; <a href="http://fkn1337.com/weird-hidden-word-document/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>
MS word keeps cache of the document that you are typing in a separate file hidden and with little weird name, usually virus files have such names but this is not a virus<br />
<img src='http://fkn1337.com/wp-content/uploads/2007/07/hidden-word-file.jpg' alt='hidden word file' /><br />
<br />
file is undeleteable while MS word is running</p>
<p>this cache comes handy when your computer (most probably windows) carshes or electricity plays with you<br />
next time you open that document (which you were typing while your computer crashed) MS word will automatically detect that file(s) and ask you to save the desired recoeverd file.<br />
<img src='http://fkn1337.com/wp-content/uploads/2007/07/word-file-recovery.jpg' alt='word file recovery' /><br />
</p>
<p>you can set the auto recovery file save time in Word options -> save<br />
<img src='http://fkn1337.com/wp-content/uploads/2007/07/word-options.jpg' alt='word options' /><br />
<br />
by default its 10 minutes<br />
<img src='http://fkn1337.com/wp-content/uploads/2007/07/word-recovery-file-save-settings.jpg' alt='word file recovery save settings' /><br />
<br />
you can delete this file or keep its your call, before deleting its wise to check if it contains some data to be recoverd, word probably cannot read those files directly so open the orignal word document and word will see if there is any file for recovery.</p>
]]></content:encoded>
			<wfw:commentRss>http://fkn1337.com/weird-hidden-word-document/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Linkin Park or Linkin Fart</title>
		<link>http://fkn1337.com/linkin-park-or-linkin-fart/</link>
		<comments>http://fkn1337.com/linkin-park-or-linkin-fart/#comments</comments>
		<pubDate>Fri, 22 Jun 2007 11:54:07 +0000</pubDate>
		<dc:creator>Hasnat</dc:creator>
				<category><![CDATA[Other]]></category>

		<guid isPermaLink="false">http://fkn1337.com/linkin-park-or-linkin-fart/</guid>
		<description><![CDATA[i have listened to new Linkin Park album Minutes to midnight, tho LP claims that they have been working on this album from long, but dude they sound more like Linkin Fart, am pretty much disappointed from LP.They are not &#8230; <a href="http://fkn1337.com/linkin-park-or-linkin-fart/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>i have listened to new Linkin Park album Minutes to midnight, tho LP claims that they have been working on this album from long, but dude they sound more like Linkin Fart, am pretty much disappointed from LP.<br />They are not the same.</p>
<p><img src='http://fkn1337.com/wp-content/uploads/2007/06/linkinfart.jpg' alt='Linkin Park or Linkin Fart' /></p>
<p>Hope they come up with good stuff next time</p>
]]></content:encoded>
			<wfw:commentRss>http://fkn1337.com/linkin-park-or-linkin-fart/feed/</wfw:commentRss>
		<slash:comments>16</slash:comments>
		</item>
		<item>
		<title>My first designed Forza motorsport 2 car</title>
		<link>http://fkn1337.com/my-first-designed-forza-motorsport-2-car/</link>
		<comments>http://fkn1337.com/my-first-designed-forza-motorsport-2-car/#comments</comments>
		<pubDate>Sat, 16 Jun 2007 20:12:15 +0000</pubDate>
		<dc:creator>Hasnat</dc:creator>
				<category><![CDATA[Other]]></category>

		<guid isPermaLink="false">http://fkn1337.com/my-first-designed-forza-motorsport-2-car/</guid>
		<description><![CDATA[i was very bored today so i thought why not show my skills (ok please don&#8217;t laugh) almost 2.5 hours of work, i think its good for first car Yes i am 22 and still love watching dexter, ill be &#8230; <a href="http://fkn1337.com/my-first-designed-forza-motorsport-2-car/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>i was very bored today so i thought why not show my skills (ok please don&#8217;t laugh)<br />
almost 2.5 hours of work, i think its good for first car</p>
<p><img src='http://fkn1337.com/wp-content/uploads/2007/06/tv2007061614082300.jpg' alt='dexter Forza motorsport 2 car' /><br />
<br />
<img src='http://fkn1337.com/wp-content/uploads/2007/06/tv2007061614084800.jpg' alt='dexter Forza motorsport 2 car' /><br />
<br />
<img src='http://fkn1337.com/wp-content/uploads/2007/06/tv2007061614090800.jpg' alt='dexter Forza motorsport 2 car' /><br />
<br />
<img src='http://fkn1337.com/wp-content/uploads/2007/06/tv2007061614093400.jpg' alt='dexter Forza motorsport 2 car' /><br />
<br />
<img src='http://fkn1337.com/wp-content/uploads/2007/06/tv2007061614170700.jpg' alt='dexter Forza motorsport 2 car' /><br />
<br />
Yes i am 22 and still love watching dexter, ill be making spongebob next</p>
]]></content:encoded>
			<wfw:commentRss>http://fkn1337.com/my-first-designed-forza-motorsport-2-car/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>e-shop ASP.NET + mySql script</title>
		<link>http://fkn1337.com/e-shop-aspnet-mysql-script/</link>
		<comments>http://fkn1337.com/e-shop-aspnet-mysql-script/#comments</comments>
		<pubDate>Fri, 01 Jun 2007 16:49:06 +0000</pubDate>
		<dc:creator>Hasnat</dc:creator>
				<category><![CDATA[Other]]></category>

		<guid isPermaLink="false">http://fkn1337.com/e-shop-aspnet-mysql-script/</guid>
		<description><![CDATA[sorry guys, i don&#8217;t have demo link for this Download e-shop ASP.NET mySql script again its a simple web shop, so only basic shop features are covered]]></description>
			<content:encoded><![CDATA[<p>sorry guys, i don&#8217;t have demo link for this</p>
<p></p>
<p class="download">Download <a href="http://fkn1337.com/scripts/e-shop_asp_net_mysql.zip">e-shop ASP.NET mySql script</a></p>
<p></p>
<p>again its a simple web shop, so only basic shop features are covered</p>
]]></content:encoded>
			<wfw:commentRss>http://fkn1337.com/e-shop-aspnet-mysql-script/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Big ass adsense check</title>
		<link>http://fkn1337.com/big-ass-adsense-check/</link>
		<comments>http://fkn1337.com/big-ass-adsense-check/#comments</comments>
		<pubDate>Thu, 31 May 2007 02:17:17 +0000</pubDate>
		<dc:creator>Hasnat</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Other]]></category>

		<guid isPermaLink="false">http://fkn1337.com/big-ass-adsense-check/</guid>
		<description><![CDATA[Some guys might laugh at this amount, but honestly is 1600/month is quite enough for me. But this doesn&#8217;t mean I have reached my goals Yes, its one month income.]]></description>
			<content:encoded><![CDATA[<p>Some guys might laugh at this amount, but honestly is 1600/month is quite enough for me. <br />
But this doesn&#8217;t mean I have reached my goals</p>
<p>
<a href='http://fkn1337.com/wp-content/uploads/2007/05/adsense_check.jpg' title='adsense check may 2007'><img src='http://fkn1337.com/wp-content/uploads/2007/05/adsense_check.thumbnail.jpg' alt='adsense check may 2007' /></a><br />
</p>
<p>Yes, its one month income.</p>
]]></content:encoded>
			<wfw:commentRss>http://fkn1337.com/big-ass-adsense-check/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
