<?xml version="1.0" encoding="utf-8" ?>
<rss version="2.0"
   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
   xmlns:admin="http://webns.net/mvcb/"
   xmlns:dc="http://purl.org/dc/elements/1.1/"
   xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
   xmlns:wfw="http://wellformedweb.org/CommentAPI/"
   xmlns:content="http://purl.org/rss/1.0/modules/content/"
   >
<channel>
    <title>RND(tech)</title>
    <link>http://www.khanh.net/blog/</link>
    <description>My random co-existence with technology...</description>
    <dc:language>en</dc:language>
    <admin:errorReportsTo rdf:resource="mailto:" />
    <generator>Serendipity 0.8.2 - http://www.s9y.org/</generator>
    <pubDate>Thu, 27 May 2010 15:43:22 GMT</pubDate>

    <image>
        <url>http://www.khanh.net/blog/templates/default/img/s9y_banner_small.png</url>
        <title>RSS: RND(tech) - My random co-existence with technology...</title>
        <link>http://www.khanh.net/blog/</link>
        <width>100</width>
        <height>21</height>
    </image>
<item>
    <title>disabling NetBIOS over TCP/IP in Windows via DHCPD</title>
    <link>http://www.khanh.net/blog/archives/59-disabling-NetBIOS-over-TCPIP-in-Windows-via-DHCPD.html</link>
<category>Linux</category><category>Internet/Networking</category><category>Windows</category>    <comments>http://www.khanh.net/blog/archives/59-disabling-NetBIOS-over-TCPIP-in-Windows-via-DHCPD.html#comments</comments>
    <wfw:comment>http://www.khanh.net/blog/wfwcomment.php?cid=59</wfw:comment>
    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://www.khanh.net/blog/rss.php?version=2.0&amp;type=comments&amp;cid=59</wfw:commentRss>
    <author>khanh@khanh.net (Khanh)</author>
    <content:encoded>
This is scarce information on the Internet, so I'm reposting!&lt;br /&gt;
&lt;br /&gt;
NetBIOS can be disabled now that it's fairly ancient networking.  You're using TCP/IP and DNS right?&lt;br /&gt;
I don't use Microsoft DHCP or DNS servers, so finding the information to set this is hard to come by.  To disable NetBIOS over TCP/IP in an ISC DHCP server, add the following to your dhcpd.conf:&lt;br /&gt;
&lt;br /&gt;
option vendor-encapsulated-options 01:04:00:00:00:02;&lt;br /&gt;
&lt;br /&gt;
It's that easy!&lt;br /&gt;
    </content:encoded>
    <pubDate>Thu, 27 May 2010 08:31:40 -0700</pubDate>
    <guid isPermaLink="false">http://www.khanh.net/blog/archives/59-guid.html</guid>
    </item>
<item>
    <title>enabling OS X screen sharing remotely in Terminal</title>
    <link>http://www.khanh.net/blog/archives/58-enabling-OS-X-screen-sharing-remotely-in-Terminal.html</link>
<category>Apple/Mac</category><category>Softwarez</category>    <comments>http://www.khanh.net/blog/archives/58-enabling-OS-X-screen-sharing-remotely-in-Terminal.html#comments</comments>
    <wfw:comment>http://www.khanh.net/blog/wfwcomment.php?cid=58</wfw:comment>
    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://www.khanh.net/blog/rss.php?version=2.0&amp;type=comments&amp;cid=58</wfw:commentRss>
    <author>khanh@khanh.net (Khanh)</author>
    <content:encoded>
short and simple for 10.5 (Leopard)&lt;br /&gt;
&lt;br /&gt;
sudo sh -c &quot;/bin/echo -n enabled &gt; /Library/Preferences/com.apple.ScreenSharing.launchd&quot;&lt;br /&gt;
&lt;br /&gt;
slightly different for 10.6 (Snow Leopard)&lt;br /&gt;
&lt;br /&gt;
sudo sh -c &quot;/bin/echo -n enabled &gt; /private/etc/ScreenSharing.launchd&quot;&lt;br /&gt;
&lt;br /&gt;
rm the file to disable it.  launchd polls regularyly, so after you &quot;enable&quot; the service, it'll be loaded by the time you check for the open port with netstat -an    </content:encoded>
    <pubDate>Thu, 08 Oct 2009 19:40:56 -0700</pubDate>
    <guid isPermaLink="false">http://www.khanh.net/blog/archives/58-guid.html</guid>
    </item>
<item>
    <title>burning files larger than 4GB with linux!</title>
    <link>http://www.khanh.net/blog/archives/57-burning-files-larger-than-4GB-with-linux!.html</link>
<category>Hardware</category><category>Softwarez</category>    <comments>http://www.khanh.net/blog/archives/57-burning-files-larger-than-4GB-with-linux!.html#comments</comments>
    <wfw:comment>http://www.khanh.net/blog/wfwcomment.php?cid=57</wfw:comment>
    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://www.khanh.net/blog/rss.php?version=2.0&amp;type=comments&amp;cid=57</wfw:commentRss>
    <author>khanh@khanh.net (Khanh)</author>
    <content:encoded>
Burning files larger than 4GB seems to be a tricky thing in most programs.  Lets say for example, you have a DV file that's 6GB.  You should be able to fit it on a dual layer DVD without issue, but most burning programs fail to handle it.&lt;br /&gt;
&lt;br /&gt;
Linux seems to work wonders for me on the command line.  If I figure out something in Mac or Windows, I'll let you know, but I don't have access to a dual layer burner on either of those OSes at this time.&lt;br /&gt;
&lt;br /&gt;
In Linux, you can make the appropriate ISO image with either:&lt;br /&gt;
&lt;br /&gt;
mkisofs -r -R -J -l -allow-limited-size -udf -o largefile.iso largefile.ext&lt;br /&gt;
&lt;br /&gt;
or use:&lt;br /&gt;
&lt;br /&gt;
genisoimage -allow-limited-size -udf -o largefile.iso largefile.ext&lt;br /&gt;
&lt;br /&gt;
Once the ISO is generated, you could burn with growisofs -Z /dev/dvd=largefile.iso or move the ISO to Mac or Windows...&lt;br /&gt;
    </content:encoded>
    <pubDate>Fri, 01 May 2009 19:51:18 -0700</pubDate>
    <guid isPermaLink="false">http://www.khanh.net/blog/archives/57-guid.html</guid>
    </item>
<item>
    <title>AT&amp;T 3G Speedtests</title>
    <link>http://www.khanh.net/blog/archives/56-ATT-3G-Speedtests.html</link>
<category>Internet/Networking</category><category>Hardware</category>    <comments>http://www.khanh.net/blog/archives/56-ATT-3G-Speedtests.html#comments</comments>
    <wfw:comment>http://www.khanh.net/blog/wfwcomment.php?cid=56</wfw:comment>
    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://www.khanh.net/blog/rss.php?version=2.0&amp;type=comments&amp;cid=56</wfw:commentRss>
    <author>khanh@khanh.net (Khanh)</author>
    <content:encoded>
I haven't been writing much lately due to a busy schedule!&lt;br /&gt;
&lt;br /&gt;
Anyway, I recently borrowed one of those AT&amp;T 3G LaptopConnect cards.  It's a Sierra Wireless AirCard 881.  Compared to the speeds I've been getting with my AT&amp;T Tilt (tethered via USB), it didn't hold up as well as I expected:&lt;br /&gt;
&lt;br /&gt;
AT&amp;T Tilt (HTC) tethered via USB:&lt;br /&gt;
&lt;a href=&quot;http://www.speedtest.net&quot;&gt;&lt;img src=&quot;http://www.speedtest.net/result/433778379.png&quot;&gt;&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
AT&amp;T Sierra Wireless LaptopConnect Card (AirCard 881):&lt;br /&gt;
&lt;a href=&quot;http://www.speedtest.net&quot;&gt;&lt;img src=&quot;http://www.speedtest.net/result/434746909.png&quot;&gt;&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
And although this isn't really for comparison to the AT&amp;T test, it seems Cablevision (Optimum Online) has been steadily increasing my bandwidth at home, even out in the middle of nowhere!&lt;br /&gt;
&lt;br /&gt;
&lt;a href=&quot;http://www.speedtest.net&quot;&gt;&lt;img src=&quot;http://www.speedtest.net/result/434751321.png&quot;&gt;&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;a href=&quot;http://www.speedtest.net&quot;&gt;&lt;img src=&quot;http://www.speedtest.net/result/273097096.png&quot;&gt;&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;a href=&quot;http://www.speedtest.net&quot;&gt;&lt;img src=&quot;http://www.speedtest.net/result/47552383.png&quot;&gt;&lt;/a&gt;    </content:encoded>
    <pubDate>Sun, 22 Mar 2009 12:33:22 -0700</pubDate>
    <guid isPermaLink="false">http://www.khanh.net/blog/archives/56-guid.html</guid>
    </item>
<item>
    <title>Super Mario Bros Fish Tank</title>
    <link>http://www.khanh.net/blog/archives/55-Super-Mario-Bros-Fish-Tank.html</link>
<category>Randomz</category>    <comments>http://www.khanh.net/blog/archives/55-Super-Mario-Bros-Fish-Tank.html#comments</comments>
    <wfw:comment>http://www.khanh.net/blog/wfwcomment.php?cid=55</wfw:comment>
    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://www.khanh.net/blog/rss.php?version=2.0&amp;type=comments&amp;cid=55</wfw:commentRss>
    <author>khanh@khanh.net (Khanh)</author>
    <content:encoded>
Well, not quite totally a Mario Bros fish tank.  However, I think the backdrop I made came out awesome.&lt;br /&gt;
&lt;br /&gt;
&lt;img border='0' hspace='5' width='800' src='http://www.khanh.net/blog/uploads/SMBTank/100_2405.JPG' alt='' /&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;img border='0' hspace='5' width='800' src='http://www.khanh.net/blog/uploads/SMBTank/100_2401.JPG' alt='' /&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;img border='0' hspace='5' width='800' src='http://www.khanh.net/blog/uploads/SMBTank/100_2400.JPG' alt='' /&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;img border='0' hspace='5' width='800' src='http://www.khanh.net/blog/uploads/SMBTank/100_2399.JPG' alt='' /&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;img border='0' hspace='5' width='800' src='http://www.khanh.net/blog/uploads/SMBTank/100_2397.JPG' alt='' /&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;img border='0' hspace='5' width='800' src='http://www.khanh.net/blog/uploads/SMBTank/100_2395.JPG' alt='' /&gt;    </content:encoded>
    <pubDate>Sun, 08 Feb 2009 20:42:44 -0700</pubDate>
    <guid isPermaLink="false">http://www.khanh.net/blog/archives/55-guid.html</guid>
    </item>
<item>
    <title>eh, wordle...</title>
    <link>http://www.khanh.net/blog/archives/54-eh,-wordle....html</link>
<category>Internet/Networking</category>    <comments>http://www.khanh.net/blog/archives/54-eh,-wordle....html#comments</comments>
    <wfw:comment>http://www.khanh.net/blog/wfwcomment.php?cid=54</wfw:comment>
    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://www.khanh.net/blog/rss.php?version=2.0&amp;type=comments&amp;cid=54</wfw:commentRss>
    <author>khanh@khanh.net (Khanh)</author>
    <content:encoded>
Wordle generated and interesting graphic of the blog today...&lt;br /&gt;
&lt;br /&gt;
&lt;a href=&quot;http://www.wordle.net/gallery/wrdl/504466/Untitled&quot; title=&quot;Wordle: Untitled&quot;&gt;&lt;br /&gt;
&lt;img src=&quot;http://www.wordle.net/thumb/wrdl/504466/Untitled&quot; alt=&quot;Wordle: Untitled&quot; style=&quot;padding:4px;border:1px solid #ddd&quot;&gt;&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
If you look at it hard enough, it's slightly 3D!&lt;br /&gt;
&lt;br /&gt;
Then there was this, more relaxed graphic:&lt;br /&gt;
&lt;br /&gt;
&lt;a href=&quot;http://www.wordle.net/gallery/wrdl/504491/Untitled&quot; title=&quot;Wordle: Untitled&quot;&gt;&lt;br /&gt;
&lt;img src=&quot;http://www.wordle.net/thumb/wrdl/504491/Untitled&quot; alt=&quot;Wordle: Untitled&quot; style=&quot;padding:4px;border:1px solid #ddd&quot;&gt;&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
    </content:encoded>
    <pubDate>Wed, 04 Feb 2009 11:36:47 -0700</pubDate>
    <guid isPermaLink="false">http://www.khanh.net/blog/archives/54-guid.html</guid>
    </item>
<item>
    <title>Finished Final Fantasy IV Again!</title>
    <link>http://www.khanh.net/blog/archives/53-Finished-Final-Fantasy-IV-Again!.html</link>
<category>Gamez</category>    <comments>http://www.khanh.net/blog/archives/53-Finished-Final-Fantasy-IV-Again!.html#comments</comments>
    <wfw:comment>http://www.khanh.net/blog/wfwcomment.php?cid=53</wfw:comment>
    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://www.khanh.net/blog/rss.php?version=2.0&amp;type=comments&amp;cid=53</wfw:commentRss>
    <author>khanh@khanh.net (Khanh)</author>
    <content:encoded>
If you don't keep up with the blog, I've been re-living the Final Fantasy saga again.  I've been playing them in order, and depending on how I feel after Final Fantasy VIII, I may stop or go on to Final Fantasy IX.&lt;br /&gt;
&lt;br /&gt;
In any event, it took me nearly a year of on-again-off-again playing (totaling just under 43 hours of game time):&lt;br /&gt;
&lt;br /&gt;
 &lt;img width='360' height='240' border='0' hspace='5' src='http://www.khanh.net/blog/uploads/FF_Screenshots/FF-IV-sav.jpg' alt='' /&gt;&lt;br /&gt;
&lt;br /&gt;
This story was one of my favorites too.  Final Fantasy IV (orginally released as Final Fantasy II on SNES in America) was the first to have all of the original elements of the Final Fantasy we know and love.  It's the five-member party, the near-active battle system, classic music, summons, fat chocobo, etc.  Yes, and this is the one where you go to the moon.  Contrary to popular belief, you don't have to have a level 70 party to complete it.  I was fine with my mid-60 level party.  Of course, higher would have helped more, but you can defeat Zeromus just fine.  As you can see, in addition to Cecil, I brought along Palom, Porom, Cid, and Yang.  Yang just uses his &quot;power&quot; for double attacks.  Cecil just attacks since his white mage curaga is useless for healing even one person on a turn.  Which means, you'll rely on Porom's more powerful curaja or full-life (instead of wasting a turn on a phoenix down, then curing).  Next to Yang's attack, Cid's standard attack was important.  Cecil is still fairly weak comparatively in the attack department.  He's your standard RPG main character (who's always a knight or a fighter) so you have no choice but to bring him along in this case.  The majority of your attack will be dealt by Palom.  You could have brough Rydia and her summonses, but whatever.  Palom has meteor which is probably just as powerful, although not as pretty to watch.  Palom will hit for 9999 hit points, but your party will be countered with similar magic from Zeromus.  Watch out for that Big Bang attack of his!&lt;br /&gt;
&lt;br /&gt;
Now on to Final Fantasy V!    </content:encoded>
    <pubDate>Sun, 11 Jan 2009 16:03:49 -0700</pubDate>
    <guid isPermaLink="false">http://www.khanh.net/blog/archives/53-guid.html</guid>
    </item>
<item>
    <title>Star Wars Coffee!</title>
    <link>http://www.khanh.net/blog/archives/52-Star-Wars-Coffee!.html</link>
<category>Randomz</category>    <comments>http://www.khanh.net/blog/archives/52-Star-Wars-Coffee!.html#comments</comments>
    <wfw:comment>http://www.khanh.net/blog/wfwcomment.php?cid=52</wfw:comment>
    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://www.khanh.net/blog/rss.php?version=2.0&amp;type=comments&amp;cid=52</wfw:commentRss>
    <author>khanh@khanh.net (Khanh)</author>
    <content:encoded>
Star Wars mugs always make coffee taste good!&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;img width='640' height='480' border='0' hspace='5' src='http://www.khanh.net/blog/uploads/IMAG0050.jpg' alt='' /&gt;    </content:encoded>
    <pubDate>Fri, 21 Nov 2008 09:40:09 -0700</pubDate>
    <guid isPermaLink="false">http://www.khanh.net/blog/archives/52-guid.html</guid>
    </item>
<item>
    <title>using openSSH as a layer-2 ethernet bridge (VPN)</title>
    <link>http://www.khanh.net/blog/archives/51-using-openSSH-as-a-layer-2-ethernet-bridge-VPN.html</link>
<category>Linux</category><category>Internet/Networking</category>    <comments>http://www.khanh.net/blog/archives/51-using-openSSH-as-a-layer-2-ethernet-bridge-VPN.html#comments</comments>
    <wfw:comment>http://www.khanh.net/blog/wfwcomment.php?cid=51</wfw:comment>
    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://www.khanh.net/blog/rss.php?version=2.0&amp;type=comments&amp;cid=51</wfw:commentRss>
    <author>khanh@khanh.net (Khanh)</author>
    <content:encoded>
Consider the following network setup (which I live with by the way):&lt;br /&gt;
&lt;br /&gt;
[main LAN] &lt;-----------------------------------------------------&gt; [remote datacenter LAN]&lt;br /&gt;
(192.168.0.0/16) &lt;-------- leased point-to-point ------------&gt; (192.168.0.0/16)&lt;br /&gt;
&lt;br /&gt;
Both locations also have separate connections to the public Internet with different public IP subnets.  However, for this discussion it's not necessary to have different public IP subnets.  Under normal circumstances the local LAN and the remote LAN are the same logical LAN via the magic of the leased point to point line.&lt;br /&gt;
&lt;br /&gt;
However, today that p2p connection broke (physically between the two locations, out of our control).  This outage lasted several hours, but brought out an interesting use of SSH tunneling for ethernet bridging aka Layer-2 VPN or tunneling.  For this to work, you'll need to have at least openSSH 4.3, a somewhat recent linux distro and the bridge-utils package for your distro.  This also assumes you have a basic knowledge of IP and the linux command line.  I use openSuSE 11.0, but this should work for almost any similar linux.&lt;br /&gt;
&lt;br /&gt;
Let's say for example, the main location has a linux box (router1) with two NICs:&lt;br /&gt;
eth0: 1.1.1.1 (the public interface)&lt;br /&gt;
eth1: unassigned IP, but connected to your LAN (192.168.0.0/16 in my case)&lt;br /&gt;
&lt;br /&gt;
On the other box, at the remote location (router2) we also have two NICs:&lt;br /&gt;
eth0: 2.2.2.2 (the public interface)&lt;br /&gt;
eth1: unassigned IP, but connected to your LAN (192.168.0.0/16 in my case)&lt;br /&gt;
&lt;br /&gt;
Both routers should be set with it's public IP gateway as the default route, working DNS, etc.  You'll want to enable IP forwarding (consult your specific distro) and in my case, I disabled the distro's firewall.  On the remote side (consider it the &quot;server&quot;), you'll need to edit your sshd config to allow remote root logins and tunnels via SSH.&lt;br /&gt;
&lt;br /&gt;
/etc/ssh/sshd_config:&lt;br /&gt;
PermitRootLogin yes&lt;br /&gt;
PermitTunnel yes&lt;br /&gt;
&lt;br /&gt;
The root login is necessary to allow ssh to create the TAP devices for the bridge.  Because of that, you'll also want to add your local side's IPs to /etc/hosts.allow for the sshd process.  Now, on the local side (IP 1.1.1.1, which you might consider the client now) you'll want to &quot;su root&quot; and do the following:&lt;br /&gt;
&lt;br /&gt;
ssh -o Tunnel=ethernet -f  -w 0:0 2.2.2.2 true&lt;br /&gt;
&lt;br /&gt;
The -o switch sets client options on the command line.  We're specifying the tunnel type as ethernet (bridge) as opposed to point-to-point, which it'll do by default (for Layer-3 type VPN routing).  The -f switch just forks ssh in the background so we're returned to our &quot;client's&quot; command line and not remote's.  Since we've done that, ssh will expect a remote command of some kind, so we'll just run &quot;true&quot;, effectively doing nothing.  The -w 0:0 switch actually sets up our tap devices on either side as tap0.  You can do -w 1:1 for tap1, -w 0:1 for tap0 on one side and tap1 on the other, etc.&lt;br /&gt;
&lt;br /&gt;
On both sides now, you should be able to see via ifconfig -a your eth0, eth1 and tap0 devices.  Make sure to call ifconfig with -a, or you'll only see interfaces with defined IPs.  Now that the two boxes are connected via the public Internet to each other via SSH, you can finally start to establish the bridge interface.  Now we'll use the bridge-utils binary to create a bridge interface called br0:&lt;br /&gt;
&lt;br /&gt;
brctl addbr br0&lt;br /&gt;
brctl addif br0 eth1&lt;br /&gt;
brctl addif br0 tap0&lt;br /&gt;
&lt;br /&gt;
Then you'll want to bring up all of your interfaces, if they aren't already:&lt;br /&gt;
&lt;br /&gt;
ifconfig eth1 up&lt;br /&gt;
ifconfig tap0 up&lt;br /&gt;
ifconfig br0 up&lt;br /&gt;
&lt;br /&gt;
Doing so will create the br0 interface, then bridge your eth1 and tap0 together and bring up the interfaces.  Don't forget, YOU MUST RUN THE brctl and ifconfig COMANDS ON BOTH SIDES!!!  Once you've done this, you can check the remote side to see if it knows about the MAC addresses (from Layer-2) on the local side:&lt;br /&gt;
&lt;br /&gt;
brctl showmacs br0&lt;br /&gt;
&lt;br /&gt;
This will report on the known MAC address from the ARP protocol.  Depending on your network, you'll see a few or many.  Depending on your setup, you can get a DHCP address on the &quot;other side&quot; of the tunnel now or configure an appropriate IP and ping across as if you were on the same physical broadcast domain!&lt;br /&gt;
&lt;br /&gt;
As a final note, there's always a downside.  TCP encapsulated TCP is bad and will put a STRAIN on your hardware.  Make sure it's decent for the amount of anticipated traffic and use only as a quick and dirty solution or a temporary measure.  The following is good reading for why this is not a long-term, permanent solution:&lt;br /&gt;
&lt;a href=&quot;http://sites.inka.de/~W1011/devel/tcp-tcp.html&quot;&gt;http://sites.inka.de/~W1011/devel/tcp-tcp.html&lt;/a&gt;    </content:encoded>
    <pubDate>Tue, 18 Nov 2008 21:11:40 -0700</pubDate>
    <guid isPermaLink="false">http://www.khanh.net/blog/archives/51-guid.html</guid>
    </item>
<item>
    <title>more MythTV and Intel G33 video performance</title>
    <link>http://www.khanh.net/blog/archives/50-more-MythTV-and-Intel-G33-video-performance.html</link>
<category>Linux</category><category>Video</category><category>Softwarez</category>    <comments>http://www.khanh.net/blog/archives/50-more-MythTV-and-Intel-G33-video-performance.html#comments</comments>
    <wfw:comment>http://www.khanh.net/blog/wfwcomment.php?cid=50</wfw:comment>
    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://www.khanh.net/blog/rss.php?version=2.0&amp;type=comments&amp;cid=50</wfw:commentRss>
    <author>khanh@khanh.net (Khanh)</author>
    <content:encoded>
Apparently the key to HD playback on MythTV using the Intel integrated X3100 video card (G33 chipset) is not the &quot;extra audio buffering&quot; setting.  In a previous post, I enabled this setting and suddenly my HD video stopped stuttering.&lt;br /&gt;
&lt;br /&gt;
Unfortunately, that wasn't totally the solution.  When I started playing back my homemade DVDs (from iDVD), I noticed they were all playing back audio fine, but the video was choppy, like the frames were dropping.  The audio tracks on these DVDs were uncompressed PCM.  Anything else (like AC3) would be fine.  The issue was that I was using OSS for sound (via /dev/dsp).&lt;br /&gt;
&lt;br /&gt;
The trick here is to use ALSA.  Changing the sound output in MythTV to ALSA and undoing the &quot;extra audio buffering&quot; yielded HD playback and smooth DVDs with PCM audio.&lt;br /&gt;
&lt;br /&gt;
So far, I can get the Intel X3100 to perform well with MPEG-2 HD (720p and 1080i) content, DVDs (with greedyhdeint x2) and MPEG-4/AAC video at HD frame sizes but low bitrates.  Unfortunately, h.264 video from the HD PVR 1212 with 720p frame sizes at high bitrates (the 7, 10 and 13.5 samples found &lt;a href=&quot;http://www.mythtv.org/wiki/index.php/Hauppauge_HD-PVR&quot;&gt;here&lt;/a&gt;) still peg my Core 2 Duo 2.53GHz at 102%+    </content:encoded>
    <pubDate>Fri, 07 Nov 2008 20:30:10 -0700</pubDate>
    <guid isPermaLink="false">http://www.khanh.net/blog/archives/50-guid.html</guid>
    </item>
<item>
    <title>Election 2008 flash widget thingy</title>
    <link>http://www.khanh.net/blog/archives/49-Election-2008-flash-widget-thingy.html</link>
<category>News</category>    <comments>http://www.khanh.net/blog/archives/49-Election-2008-flash-widget-thingy.html#comments</comments>
    <wfw:comment>http://www.khanh.net/blog/wfwcomment.php?cid=49</wfw:comment>
    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://www.khanh.net/blog/rss.php?version=2.0&amp;type=comments&amp;cid=49</wfw:commentRss>
    <author>khanh@khanh.net (Khanh)</author>
    <content:encoded>
Election 2008 flash widget thingy!&lt;br /&gt;
&lt;br /&gt;
&lt;object type=&quot;application/x-shockwave-flash&quot; data=&quot;http://widgets.clearspring.com/o/48ffa387494151d4/490f8cabd9bf37d0/49053293fe1d6987/f7a0bbc5/-cpid/81c1079680a525a&quot; id=&quot;W48ffa387494151d4490f8cabd9bf37d0&quot; width=&quot;600&quot; height=&quot;360&quot;&gt;&lt;param name=&quot;movie&quot; value=&quot;http://widgets.clearspring.com/o/48ffa387494151d4/490f8cabd9bf37d0/49053293fe1d6987/f7a0bbc5/-cpid/81c1079680a525a&quot; /&gt;&lt;param name=&quot;wmode&quot; value=&quot;transparent&quot; /&gt;&lt;param name=&quot;allowNetworking&quot; value=&quot;all&quot; /&gt;&lt;param name=&quot;allowScriptAccess&quot; value=&quot;always&quot; /&gt;&lt;/object&gt;    </content:encoded>
    <pubDate>Mon, 03 Nov 2008 19:39:30 -0700</pubDate>
    <guid isPermaLink="false">http://www.khanh.net/blog/archives/49-guid.html</guid>
    </item>
<item>
    <title>RAWR! Bowser Pumpkin!!!</title>
    <link>http://www.khanh.net/blog/archives/48-RAWR!-Bowser-Pumpkin!!!.html</link>
<category>Randomz</category>    <comments>http://www.khanh.net/blog/archives/48-RAWR!-Bowser-Pumpkin!!!.html#comments</comments>
    <wfw:comment>http://www.khanh.net/blog/wfwcomment.php?cid=48</wfw:comment>
    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://www.khanh.net/blog/rss.php?version=2.0&amp;type=comments&amp;cid=48</wfw:commentRss>
    <author>khanh@khanh.net (Khanh)</author>
    <content:encoded>
RAWR! Bowser Pumpkin!!!&lt;br /&gt;
&lt;br /&gt;
&lt;img width='640' height='480' border='0' hspace='5' align='left' src='http://www.khanh.net/blog/uploads/IMAG0032.jpg' alt='' /&gt;    </content:encoded>
    <pubDate>Sun, 02 Nov 2008 15:55:20 -0700</pubDate>
    <guid isPermaLink="false">http://www.khanh.net/blog/archives/48-guid.html</guid>
    </item>
<item>
    <title>no power :(</title>
    <link>http://www.khanh.net/blog/archives/47-no-power.html</link>
<category>Hardware</category>    <comments>http://www.khanh.net/blog/archives/47-no-power.html#comments</comments>
    <wfw:comment>http://www.khanh.net/blog/wfwcomment.php?cid=47</wfw:comment>
    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://www.khanh.net/blog/rss.php?version=2.0&amp;type=comments&amp;cid=47</wfw:commentRss>
    <author>khanh@khanh.net (Khanh)</author>
    <content:encoded>
This has only a little to do with technology, but the power was out all weekend due to a bad storm we just had.  So, I fired up the generator and played some Nintendo-style Uno.  Apparently, it's a good time!&lt;br /&gt;
&lt;br /&gt;
&lt;img border='0' hspace='5' src='http://www.khanh.net/blog/uploads/IMAG0025.jpg' alt='' /&gt;    </content:encoded>
    <pubDate>Mon, 27 Oct 2008 11:28:23 -0700</pubDate>
    <guid isPermaLink="false">http://www.khanh.net/blog/archives/47-guid.html</guid>
    </item>
<item>
    <title>Gallagher's take on the English language and Final Fantasy IV</title>
    <link>http://www.khanh.net/blog/archives/46-Gallaghers-take-on-the-English-language-and-Final-Fantasy-IV.html</link>
<category>Randomz</category>    <comments>http://www.khanh.net/blog/archives/46-Gallaghers-take-on-the-English-language-and-Final-Fantasy-IV.html#comments</comments>
    <wfw:comment>http://www.khanh.net/blog/wfwcomment.php?cid=46</wfw:comment>
    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://www.khanh.net/blog/rss.php?version=2.0&amp;type=comments&amp;cid=46</wfw:commentRss>
    <author>khanh@khanh.net (Khanh)</author>
    <content:encoded>
So I had completely forgot about my quest to relive the Final Fantasy sagas, again, finally.  &lt;a href=&quot;http://www.khanh.net/blog/index.php?serendipity[action]=search&amp;serendipity[searchTerm]=reliving+the+saga&quot;&gt;Over a year ago&lt;/a&gt; I had finished Final Fantasy I and II, &lt;a href=&quot;http://www.khanh.net/blog/archives/18-Re-living-the-saga,-finally,-again.-update-4.html&quot;&gt;gave up on III due to a technicality&lt;/a&gt;, and started Final Fantasy IV.  Actually, it was just over a year ago to the day that I started, but somehow got lost in life work and other things.  Anyway, I'm picking it back up again and apparently, I'm on the moon and close to the end.  Blah.&lt;br /&gt;
&lt;br /&gt;
Along the lines of my last post, I rediscovered some of my old stand-up comedy favorites on YouTube.  That site is such a ridiculous waste of bandwidth sometimes, but there are some gems.  This has little to nothing to do with technology, but it's one of my favorite Gallaghers.  It's somewhat hard to find, but a classic of his take on school and the English language.&lt;br /&gt;
&lt;br /&gt;
&lt;object width=&quot;425&quot; height=&quot;344&quot;&gt;&lt;param name=&quot;movie&quot; value=&quot;http://www.youtube.com/v/p2acXjdPzlY&amp;hl=en&amp;fs=1&quot;&gt;&lt;/param&gt;&lt;param name=&quot;allowFullScreen&quot; value=&quot;true&quot;&gt;&lt;/param&gt;&lt;embed src=&quot;http://www.youtube.com/v/p2acXjdPzlY&amp;hl=en&amp;fs=1&quot; type=&quot;application/x-shockwave-flash&quot; allowfullscreen=&quot;true&quot; width=&quot;425&quot; height=&quot;344&quot;&gt;&lt;/embed&gt;&lt;/object&gt;    </content:encoded>
    <pubDate>Thu, 23 Oct 2008 20:18:36 -0700</pubDate>
    <guid isPermaLink="false">http://www.khanh.net/blog/archives/46-guid.html</guid>
    </item>
<item>
    <title>Eddie Izzard on Computers</title>
    <link>http://www.khanh.net/blog/archives/45-Eddie-Izzard-on-Computers.html</link>
<category>Hardware</category>    <comments>http://www.khanh.net/blog/archives/45-Eddie-Izzard-on-Computers.html#comments</comments>
    <wfw:comment>http://www.khanh.net/blog/wfwcomment.php?cid=45</wfw:comment>
    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://www.khanh.net/blog/rss.php?version=2.0&amp;type=comments&amp;cid=45</wfw:commentRss>
    <author>khanh@khanh.net (Khanh)</author>
    <content:encoded>
&lt;object width=&quot;425&quot; height=&quot;344&quot;&gt;&lt;param name=&quot;movie&quot; value=&quot;http://www.youtube.com/v/k6C_HjWr3Nk&amp;hl=en&amp;fs=1&quot;&gt;&lt;/param&gt;&lt;param name=&quot;allowFullScreen&quot; value=&quot;true&quot;&gt;&lt;/param&gt;&lt;embed src=&quot;http://www.youtube.com/v/k6C_HjWr3Nk&amp;hl=en&amp;fs=1&quot; type=&quot;application/x-shockwave-flash&quot; allowfullscreen=&quot;true&quot; width=&quot;425&quot; height=&quot;344&quot;&gt;&lt;/embed&gt;&lt;/object&gt;    </content:encoded>
    <pubDate>Sat, 18 Oct 2008 23:02:13 -0700</pubDate>
    <guid isPermaLink="false">http://www.khanh.net/blog/archives/45-guid.html</guid>
    </item>
</channel>
</rss>
