<?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>purrgatory &#187; tech</title>
	<atom:link href="http://www.bangsar.net/blog/tag/tech/feed" rel="self" type="application/rss+xml" />
	<link>http://www.bangsar.net/blog</link>
	<description>where cool cats linger</description>
	<lastBuildDate>Mon, 04 Apr 2011 03:08:11 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>ABAP: Stay logged into SAPGUI indefinitely</title>
		<link>http://www.bangsar.net/blog/2011/04/04/abap-stay-logged-into-sapgui-indefinitely</link>
		<comments>http://www.bangsar.net/blog/2011/04/04/abap-stay-logged-into-sapgui-indefinitely#comments</comments>
		<pubDate>Mon, 04 Apr 2011 03:08:11 +0000</pubDate>
		<dc:creator>myuu</dc:creator>
				<category><![CDATA[Rants]]></category>
		<category><![CDATA[ABAP]]></category>
		<category><![CDATA[SAP]]></category>
		<category><![CDATA[tech]]></category>

		<guid isPermaLink="false">http://www.bangsar.net/blog/?p=1020</guid>
		<description><![CDATA[Sometimes you&#8217;re doing something midway on your system, and you&#8217;re interrupted for a meeting or lunch or whatever. You come back and you&#8217;ve been automatically logged out, losing whatever you were working on earlier. Prior to our upgrade to ECC6, you can simply keep yourself logged in by making timed calls to function module SAPGUI_PROGRESS_INDICATOR. [...]]]></description>
			<content:encoded><![CDATA[<p>Sometimes you&#8217;re doing something midway on your system, and you&#8217;re interrupted for a meeting or lunch or whatever. You come back and you&#8217;ve been automatically logged out, losing whatever you were working on earlier.</p>
<p>Prior to our upgrade to ECC6, you can simply keep yourself logged in by making timed calls to function module SAPGUI_PROGRESS_INDICATOR. Once upgraded however, the code has changed, causing it to no longer extend your GUI session.</p>
<p>For those who missed out on the old code that does this, here it is:</p>
<blockquote><p>FUNCTION Z_SAPGUI_PROGRESS_INDICATOR.<br />
*&#8221;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-<br />
*&#8221;*&#8221;Local Interface:<br />
*&#8221;  IMPORTING<br />
*&#8221;     VALUE(PERCENTAGE) DEFAULT 0<br />
*&#8221;     VALUE(TEXT) DEFAULT SPACE<br />
*&#8221;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-<br />
DATA : OUT_TEXT LIKE SY-UCOMM,<br />
PERC     TYPE I,<br />
MODNO    TYPE I.</p>
<p>IF SY-BATCH &lt;&gt; SPACE.<br />
EXIT.    &#8220;do nothing in batch<br />
ENDIF.</p>
<p>IF PROG_INDI_CHECKED = SPACE.<br />
GET PARAMETER ID &#8216;SIN&#8217; FIELD PROG_INDI_MODE.<br />
PROG_INDI_CHECKED = &#8216;X&#8217;.<br />
ENDIF.<br />
IF PROG_INDI_MODE = &#8217;0&#8242;.<br />
EXIT.    &#8220;do nothing if turned off via SPA/GPA<br />
ENDIF.</p>
<p>OUT_TEXT = TEXT.<br />
PERC     = PERCENTAGE.<br />
MODNO    = SYST-MODNO.<br />
IF PERC &lt; 0.   PERC = 0.   ENDIF.<br />
IF PERC &gt; 100. PERC = 100. ENDIF.</p>
<p>CALL FUNCTION &#8216;SAPGUI_PROGRESS_INDICATOR&#8217;<br />
DESTINATION &#8216;SAPGUI&#8217;<br />
KEEPING LOGICAL UNIT OF WORK<br />
EXPORTING TEXT       = OUT_TEXT<br />
PERCENTAGE = PERC<br />
MODN       = MODNO<br />
EXCEPTIONS SYSTEM_FAILURE<br />
COMMUNICATION_FAILURE.<br />
SYST-SUBRC = 0.</p>
<p>ENDFUNCTION.</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.bangsar.net/blog/2011/04/04/abap-stay-logged-into-sapgui-indefinitely/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>avisynth/mencoder transcoding for ps3 media server on windows 7</title>
		<link>http://www.bangsar.net/blog/2009/06/06/avisynthmencoder-transcoding-for-ps3-media-server-on-windows-7</link>
		<comments>http://www.bangsar.net/blog/2009/06/06/avisynthmencoder-transcoding-for-ps3-media-server-on-windows-7#comments</comments>
		<pubDate>Sat, 06 Jun 2009 04:24:41 +0000</pubDate>
		<dc:creator>myuu</dc:creator>
				<category><![CDATA[Rants]]></category>
		<category><![CDATA[avisynth]]></category>
		<category><![CDATA[mencoder]]></category>
		<category><![CDATA[ps3]]></category>
		<category><![CDATA[ps3 media server]]></category>
		<category><![CDATA[tech]]></category>
		<category><![CDATA[windows]]></category>
		<category><![CDATA[windows 7]]></category>

		<guid isPermaLink="false">http://www.bangsar.net/blog/?p=969</guid>
		<description><![CDATA[Finally managed to get CoreAVC + Subtitles + Avisynth/Mencoder working for the PS3 Media Server on Windows 7 RC. By right, the default usage of just Mencoder for transcoding with subtitles is just fine. However, I have some anime files that don&#8217;t size/zoom just right on the TV (i.e. there is no Zoom screen mode [...]]]></description>
			<content:encoded><![CDATA[<p>Finally managed to get CoreAVC + Subtitles + Avisynth/Mencoder working for the PS3 Media Server on Windows 7 RC.</p>
<p>By right, the default usage of just Mencoder for transcoding with subtitles is just fine. However, I have some anime files that don&#8217;t size/zoom just right on the TV (i.e. there is no Zoom screen mode on the PS3, instead Normal mode displays like Zoom mode). AviSynth/Mencoder displays them fine though, with all 3 screen modes available, but of course, no subtitles. And since I have CoreAVC with CUDA acceleration, might as well make use of it for the other 1080p files.</p>
<p>So yes, follow the instructions for CoreAVC in PS3 Media Server&#8217;s README/FAQ files.</p>
<p>Then implement this hack to stop Windows 7 from using its built in DTV-DVD filter:<br />
<a href="http://www.hack7mc.com/2009/04/replacing-the-default-dtvdvd-decoder-without-breaking-live-tv-playback.html">Replacing the Default DTV/DVD Decoder without Breaking Live TV Playback<br />
</a>(Take note of the different registry path for 64-bit in the comments)<a href="http://www.hack7mc.com/2009/04/replacing-the-default-dtvdvd-decoder-without-breaking-live-tv-playback.html" class="liexternal"></a></p>
<p>Now, you should be set. I&#8217;ve tested this so far with MKV files that have built in subtitles. With vsfilter.dll in the Avisynth plugins folder, I&#8217;m expecting double subs to appear for movies with external subs (this is my assumption by logic, but might not be the case), so removing vsfilter.dll from the plugins dir might help with that.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bangsar.net/blog/2009/06/06/avisynthmencoder-transcoding-for-ps3-media-server-on-windows-7/feed</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>the karaoke trail</title>
		<link>http://www.bangsar.net/blog/2009/05/28/the-karaoke-trail</link>
		<comments>http://www.bangsar.net/blog/2009/05/28/the-karaoke-trail#comments</comments>
		<pubDate>Thu, 28 May 2009 03:04:48 +0000</pubDate>
		<dc:creator>myuu</dc:creator>
				<category><![CDATA[Rants]]></category>
		<category><![CDATA[dam]]></category>
		<category><![CDATA[drm]]></category>
		<category><![CDATA[irc]]></category>
		<category><![CDATA[japan]]></category>
		<category><![CDATA[karaoke]]></category>
		<category><![CDATA[pc]]></category>
		<category><![CDATA[ps3]]></category>
		<category><![CDATA[ps3 media server]]></category>
		<category><![CDATA[tech]]></category>
		<category><![CDATA[tversity]]></category>
		<category><![CDATA[youtube]]></category>

		<guid isPermaLink="false">http://www.bangsar.net/blog/?p=966</guid>
		<description><![CDATA[Initial plan was to stream karaoke files as video to the PS3. Hardware needed: PS3 (got it), mics with echo chamber (got a pair lying around in the old house), AV receiver &#38; surround speakers (not really needed for this particular use, but you know.. we must have them!). Forgetting about hardware for the time [...]]]></description>
			<content:encoded><![CDATA[<p>Initial plan was to stream karaoke files as video to the PS3. Hardware needed: PS3 (got it), mics with echo chamber (got a pair lying around in the old house), AV receiver &amp; surround speakers (not really needed for this particular use, but you know.. we must have them!).</p>
<p>Forgetting about hardware for the time being, we need to do a POC.</p>
<p>PS3 Media Server does not show CDG files on the XMB, so that&#8217;s off the table. TVersity shows them, but requires a DirectX filter to play them. A <a href="http://karaoke-dx.sourceforge.net/" class="liexternal">free DirectX filter</a> available on the net can&#8217;t work, because it&#8217;s too old and missing some tech. There&#8217;s a paid one available from <a href="http://www.powerkaraoke.com" class="liexternal">Power Karaoke</a>, but I can&#8217;t get the trial version to work (no audio in WMP, slow load in PS3 and hangs after about 5 seconds of play).</p>
<p>Another issue: English CDG files are usually paired with an MP3 file for the audio, so they&#8217;re usually zipped together for distribution. We assumed that they should be unzipped to be played, but apparently most karaoke players can play them zipped (in fact the free karaoke filter I mentioned earlier can do that using a bundled unzip filter). The IRC channel that we hang out in to get new English karaoke songs also requires our files to be zipped for sharing. Seems like a waste to keep 2 sets of the same files for different purposes (1 set is currently 7GB).</p>
<p>Both PS3MS and TVersity don&#8217;t show ZIP files on the XMB. PS3MS has an option called Browse ZIP/RAR files, but that doesn&#8217;t help in this matter.</p>
<p>The next idea that we had was to instead stream the karaoke playlist from the media server as a webcast. We can then configure PS3MS to grab it as Internet TV. It&#8217;s better than the original idea whereby we can browse for songs and add them to the playlist while people are singing.</p>
<p>Problem is, we can&#8217;t find any webcasting programs that simply supports DirectX. None of the karaoke players have a webcast function either. Windows Media Player has a media sharing function, but you can&#8217;t drag zip files into its playlist.</p>
<p>I&#8217;m currently attending a C# .NET class. Kinda tempted to just code one someday. <img src='http://www.bangsar.net/wordpress/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> </p>
<p>But anyway, that particular alternative is a dead end. The last choice that we have: use a dual-screen notebook. A notebook would be better than a desktop because 1) we already have two, and 2) we&#8217;re trying to keep the number of running machines in the house to a minimum. Besides, having a full tower that generates enough heat to power the Matrix in a living room without A/C isn&#8217;t generally a good idea. <img src='http://www.bangsar.net/wordpress/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> </p>
<p>So we have Faizah&#8217;s Powerbook G4: it&#8217;s nice and small, but it needs a proprietary AV out. It also has an overheating battery that was recalled in 2006 but we&#8217;re still using it. Contacting Apple now to see if we can still get it exchanged. <img src='http://www.bangsar.net/wordpress/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' />  Available karaoke players are also not free.</p>
<p>And then we have my HP Compaq 6910p: new and tons of RAM, but it&#8217;s the office notebook. <img src='http://www.bangsar.net/wordpress/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' />  Only needs an S-Video out, so we&#8217;re set! For software, we&#8217;d use <a href="http://www.karafun.com/" class="liexternal">Karafun</a>, which is free and simple enough to use. We&#8217;d just mount the karaoke folder from the media server and use Windows Search to search for music and drag them to the Karafun playlist.</p>
<p>So that&#8217;s settled mainly. Just need an S-Video cable to complete the POC.</p>
<p>Then we moved on to looking for Japanese karaoke files. Scoured IRC for a few days but couldn&#8217;t find any. Searched the web but nothing in English. Enabled Japanese IME to start doing Japanese language searches, which finally shed a little light.</p>
<p>There was one major source for Japanese karaoke: <a href="http://www.clubdam.com/" class="liexternal">Club DAM</a>, a website for the makers of a line of Japanese karaoke machines. At 1035? a month, you can download all the DRM10-encrypted karaoke videos you&#8217;d want. But my Japanese is rusty, so I&#8217;m not sure if the files expire after you terminate a subscription.</p>
<p>Today, I managed to find some videos on YouTube (search ????) but it&#8217;s definitely not comprehensive. It&#8217;s a start. Most are high quality and downloadable using <a href="http://www.downloadhelper.net/" class="liexternal">DownloadHelper</a>. Playing them back, however, was another problem: the FLV splitter that comes with K-Lite does not play the HQ35 Youtube format (which is essentially AVC/H264 and AAC in an FLV package), but I fixed that easy by downloading a newer version of <a href="http://www.videohelp.com/tools/FLV_Splitter" class="liexternal">FLVSplitter</a> (1.0.0.5) to replace the K-Lite one (1.0.0.4).</p>
<p>But now I&#8217;m stuck with the fact that Karafun can&#8217;t play FLV files. O.o I&#8217;m pretty sure there&#8217;s another player that does, but I can&#8217;t remember which one. Or I could just convert it to AVI or whatever.</p>
<p>I&#8217;m still tempted to sign up for a karaoke@DAM subscription. Might acquire <a href="http://tunebite.com/en/audio_video_drm_copy_protection/drm_remover/index.html" class="liexternal">Tunebite Platinum</a> for DRM removal.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bangsar.net/blog/2009/05/28/the-karaoke-trail/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>windows 7 first impressions</title>
		<link>http://www.bangsar.net/blog/2009/05/20/windows-7-first-impressions</link>
		<comments>http://www.bangsar.net/blog/2009/05/20/windows-7-first-impressions#comments</comments>
		<pubDate>Wed, 20 May 2009 00:50:43 +0000</pubDate>
		<dc:creator>myuu</dc:creator>
				<category><![CDATA[Rants]]></category>
		<category><![CDATA[pc]]></category>
		<category><![CDATA[tech]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://www.bangsar.net/blog/?p=964</guid>
		<description><![CDATA[Build 7100: Shiny! Love how I can have two sound systems, and the OS will automatically switch outputs depending on which sound system I plug my headphones into. Internet Explorer 8 corrupts downloads like a runaway train. True to tradition. NVidia drivers need to be installed manually from the Device Manager. Everything else seems to [...]]]></description>
			<content:encoded><![CDATA[<p>Build 7100:</p>
<p>Shiny!</p>
<p>Love how I can have two sound systems, and the OS will automatically switch outputs depending on which sound system I plug my headphones into.</p>
<p>Internet Explorer 8 corrupts downloads like a runaway train. True to tradition.</p>
<p>NVidia drivers need to be installed manually from the Device Manager.</p>
<p>Everything else seems to work: Firefox, WoW, SecureCRT, Proxifier, Steam.</p>
<p>Things left to try: Install PS3 Media Server, TVersity, CoreAVC, AviSynth, any Karaoke MP3+G filter to work with TVersity. Test CUDA acceleration. Play Portal, Left 4 Dead, CoD4. <img src='http://www.bangsar.net/wordpress/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.bangsar.net/blog/2009/05/20/windows-7-first-impressions/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>insert-catchy-twilight-zone-topic-here</title>
		<link>http://www.bangsar.net/blog/2009/05/19/insert-catchy-twilight-zone-topic-here</link>
		<comments>http://www.bangsar.net/blog/2009/05/19/insert-catchy-twilight-zone-topic-here#comments</comments>
		<pubDate>Tue, 19 May 2009 15:36:20 +0000</pubDate>
		<dc:creator>myuu</dc:creator>
				<category><![CDATA[Rants]]></category>
		<category><![CDATA[pc]]></category>
		<category><![CDATA[tech]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://www.bangsar.net/blog/?p=961</guid>
		<description><![CDATA[Did a CMOS jumper reset and the compie works fine now. Was finally able to install Windows 7 RC thanks to Merv&#8217;s friend. Had to actually get a physical copy of the original disc rather than downloading because all the downloads would be corrupt regardless of what method I use. Shiny! Now installing drivers and [...]]]></description>
			<content:encoded><![CDATA[<p> <img src='http://www.bangsar.net/wordpress/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> </p>
<p>Did a CMOS jumper reset and the compie works fine now.</p>
<p>Was finally able to install Windows 7 RC thanks to Merv&#8217;s friend. Had to actually get a physical copy of the original disc rather than downloading because all the downloads would be corrupt regardless of what method I use. Shiny! Now installing drivers and all that before the ultimate test: to see if WoW works. <img src='http://www.bangsar.net/wordpress/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.bangsar.net/blog/2009/05/19/insert-catchy-twilight-zone-topic-here/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>weird news</title>
		<link>http://www.bangsar.net/blog/2009/05/15/weird-news</link>
		<comments>http://www.bangsar.net/blog/2009/05/15/weird-news#comments</comments>
		<pubDate>Fri, 15 May 2009 07:47:06 +0000</pubDate>
		<dc:creator>myuu</dc:creator>
				<category><![CDATA[Rants]]></category>
		<category><![CDATA[pc]]></category>
		<category><![CDATA[tech]]></category>

		<guid isPermaLink="false">http://www.bangsar.net/blog/?p=957</guid>
		<description><![CDATA[Found that the issue was insufficient power supply, so upgraded to an 850W Coolermaster Real Power Pro. But now my computer won&#8217;t shut down. :O I&#8217;d shut it down, and 5 seconds later it wakes up again. Creepy! I checked my BIOS APM settings, XP Recovery settings, XP NIC WOL settings, updated my BIOS, but [...]]]></description>
			<content:encoded><![CDATA[<p>Found that the issue was insufficient power supply, so upgraded to an 850W Coolermaster Real Power Pro.</p>
<p>But now my computer won&#8217;t shut down. :O</p>
<p>I&#8217;d shut it down, and 5 seconds later it wakes up again. Creepy! I checked my BIOS APM settings, XP Recovery settings, XP NIC WOL settings, updated my BIOS, but to no avail! I even unplugged everything except power and it still restarts. I unplugged my casing power switch and it still manages to stay alive. :O :O</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bangsar.net/blog/2009/05/15/weird-news/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>news</title>
		<link>http://www.bangsar.net/blog/2009/05/14/news</link>
		<comments>http://www.bangsar.net/blog/2009/05/14/news#comments</comments>
		<pubDate>Thu, 14 May 2009 02:05:48 +0000</pubDate>
		<dc:creator>myuu</dc:creator>
				<category><![CDATA[Rants]]></category>
		<category><![CDATA[dungeons]]></category>
		<category><![CDATA[graphics]]></category>
		<category><![CDATA[pc]]></category>
		<category><![CDATA[raids]]></category>
		<category><![CDATA[tech]]></category>
		<category><![CDATA[wow]]></category>

		<guid isPermaLink="false">http://www.bangsar.net/blog/?p=953</guid>
		<description><![CDATA[good news: Ran Heroic Naxxramas, Plague &#38; Spider Quarters last night with the guild plus a few pugs. Picked up Leggings of Colossal Strides and Fool&#8217;s Trial. Continuing tonight for the other quarters. bad news: My graphics card might be faulty. PC kept shutting down and refusing to boot up until after a few minutes, [...]]]></description>
			<content:encoded><![CDATA[<p>good news:</p>
<p>Ran Heroic Naxxramas, Plague &amp; Spider Quarters last night with the guild plus a few pugs. Picked up <a href="http://www.wowhead.com/?item=40201" class="q4" style="font-family: Verdana,sans-serif;">Leggings of Colossal Strides</a> and <a href="http://www.wowhead.com/?item=40065" class="q4" style="font-family: Verdana,sans-serif;">Fool&#8217;s Trial</a>. Continuing tonight for the other quarters.</p>
<p>bad news:</p>
<p>My graphics card might be faulty. PC kept shutting down and refusing to boot up until after a few minutes, only to die again. Each time it recovers I need to reconfigure my BIOS. A quick google search showed a huge failure rate on GTX 280 cards, with them hitting 110 degrees only after a few minutes of use. I need to go back home and verify that my card is indeed hitting those temperatures, and if it is, see if I can mitigate the problem by improving airflow. Anything to avoid sending the card back to the US for RMA and possibly getting another defective card anyway.</p>
<p>Ended up having to raid on my notebook last night. <img src='http://www.bangsar.net/wordpress/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.bangsar.net/blog/2009/05/14/news/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>wow is pretty</title>
		<link>http://www.bangsar.net/blog/2009/05/11/wow-is-pretty</link>
		<comments>http://www.bangsar.net/blog/2009/05/11/wow-is-pretty#comments</comments>
		<pubDate>Mon, 11 May 2009 02:26:36 +0000</pubDate>
		<dc:creator>myuu</dc:creator>
				<category><![CDATA[Rants]]></category>
		<category><![CDATA[dungeons]]></category>
		<category><![CDATA[pc]]></category>
		<category><![CDATA[tech]]></category>
		<category><![CDATA[upgrade]]></category>
		<category><![CDATA[wow]]></category>

		<guid isPermaLink="false">http://www.bangsar.net/blog/?p=946</guid>
		<description><![CDATA[Picked up all the components I needed for a new PC on Friday. Machines page updated to reflect the new hardware. Spent pretty much all of Saturday installing a temporary OS (XP 32 SP3) and some essential software (WoW. not a proper install either, simply a copy from my notebook). Watched The Day After Tomorrow [...]]]></description>
			<content:encoded><![CDATA[<p>Picked up all the components I needed for a new PC on Friday. <a href="http://www.bangsar.net/blog/machines" class="liinternal">Machines</a> page updated to reflect the new hardware. Spent pretty much all of Saturday installing a temporary OS (XP 32 SP3) and some essential software (WoW. not a proper install either, simply a copy from my notebook). Watched The Day After Tomorrow (not bad) and 30 Days of Night (sux nuts) while the OS install was running. Took a breather and went out to catch Star Trek with the gang. Star Trek was really refreshing. <img src='http://www.bangsar.net/wordpress/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Continued installing stuff on Saturday morning. Started downloading Windows 7 x64 RC as well, which will probably be my permanent OS till Windows 7 proper is released. It&#8217;d be great to utilize 6GB of memory goodness. <img src='http://www.bangsar.net/wordpress/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' />  It&#8217;s also awesome to be finally be able to use my GTX 280.</p>
<p>WoW in Ultra settings is gorgeous. The biggest improvement is the frame rate; character and pet actions are so smooth, it&#8217;s surreal. Fai is now tempted to upgrade her PC as well. <img src='http://www.bangsar.net/wordpress/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' />  DaLAGran still hits the card hard on busy days, with frame rates going to about 15fps sometimes. Perhaps SLI might be a good idea after all. XD</p>
<p>Dungeon update:-</p>
<ul>
<li>Tried pugging Hall of Stone, but we kept wiping on Maiden of Grief. The DK Tank didn&#8217;t kite her as he should.</li>
<li>Did a Violet Hold guild run last nite. Wiped on trash. &gt;.&lt;</li>
</ul>
<p>After the wipe, we were hanging around in Dalaran when someone advertised a SG/MY guild called BoJ. Msged the guy for more info and he was pretty insistent that we join, saying they&#8217;re already super-geared and help us gear up.</p>
<p>BoJ stands for &#8230; Blowjob of Japan. Seriously. I kinda had a bad feeling about it, but was willing to try and see if the guildies are great and their raid times suitable. The only other SG guild that I know of is Merlion Cubs; tough choice of guild names eh? <img src='http://www.bangsar.net/wordpress/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> </p>
<p>In any case, once we joined, they started harping about needing more tanks and healers. Hey, don&#8217;t look at us, we&#8217;re hunters for life! <img src='http://www.bangsar.net/wordpress/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' />  I kinda miss Wad De Kao already. q.q</p>
<p>Anyways&#8230;</p>
<p>We&#8217;ve purchased dual talent specialization. Survival seems pretty nice with plenty of burst damage. I might respec my BM spec to something more pet-focused for future soloing of old raid instances. Next thing to do is grab glyphs for the SV spec and continue trying to hit heroics for gear.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bangsar.net/blog/2009/05/11/wow-is-pretty/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>dying hardware</title>
		<link>http://www.bangsar.net/blog/2008/11/19/dying-hardware</link>
		<comments>http://www.bangsar.net/blog/2008/11/19/dying-hardware#comments</comments>
		<pubDate>Wed, 19 Nov 2008 02:06:18 +0000</pubDate>
		<dc:creator>myuu</dc:creator>
				<category><![CDATA[Rants]]></category>
		<category><![CDATA[hard drive]]></category>
		<category><![CDATA[hardware]]></category>
		<category><![CDATA[linksys]]></category>
		<category><![CDATA[tech]]></category>
		<category><![CDATA[wireless]]></category>

		<guid isPermaLink="false">http://www.bangsar.net/?p=815</guid>
		<description><![CDATA[If you&#8217;ve noticed, my photo gallery is offline with a whole bunch of freaky PHP errors. Tis mainly due to me having to unplug my two 250GB drives from the server as they were constantly crashing the system every time fsck&#8217;ed. Thing is I&#8217;m not sure whether it&#8217;s one or the other or both that&#8217;s [...]]]></description>
			<content:encoded><![CDATA[<p>If you&#8217;ve noticed, my photo gallery is offline with a whole bunch of freaky PHP errors. Tis mainly due to me having to unplug my two 250GB drives from the server as they were constantly crashing the system every time fsck&#8217;ed. Thing is I&#8217;m not sure whether it&#8217;s one or the other or both that&#8217;s causing the problems. If I have time, I&#8217;ll probably mount it on my Windows machine to transfer the stuff out before the drives die for real.</p>
<p>But before that, I should probably buy some new hard drives to store said data. Fai-chan needs one herself, having only 1GB left on her machine. <img src='http://www.bangsar.net/wordpress/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> </p>
<p>Another problem I have is with my stupid wireless Linksys PCI adaptor. There came a point where my PC just couldn&#8217;t start due to BSODs originating from RT2500.sys (a Ralink driver used by this card). Updating the driver to generic Ralink ones would cause erratic connections instead. Updating to SP3 didn&#8217;t help. Windows File Protection scans didn&#8217;t help either.</p>
<p>Once I&#8217;m settled down, I&#8217;ll probably make the switch to N. And it damned well won&#8217;t be Linksys.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bangsar.net/blog/2008/11/19/dying-hardware/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

