<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	>
<channel>
	<title>Comments for Jkx@home</title>
	<atom:link href="http://www.larsen-b.com/comments/feed" rel="self" type="application/rss+xml" />
	<link>http://www.larsen-b.com</link>
	<description>Titanium Exposé</description>
	<pubDate>Thu, 24 Jul 2008 02:52:00 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5</generator>
		<item>
		<title>Comment on MP3 Bitrates compared by Igor M Podlesny</title>
		<link>http://www.larsen-b.com/Article/273.html#comment-6676</link>
		<dc:creator>Igor M Podlesny</dc:creator>
		<pubDate>Sun, 20 Jul 2008 10:38:56 +0000</pubDate>
		<guid isPermaLink="false">#comment-6676</guid>
		<description>«… I’m not sure how looking at spectograms is useful for such a debate. The object of perceptual coding is not to produce something that looks the same on a spectrogram as the original — but which sounds the same. …»

Well, if spectogram is different, then we know that sound wasn't properly encoded, therefore it couldn't have been properly played.

At other side, spectrogram likeness is required but not sufficient.</description>
		<content:encoded><![CDATA[<p>«… I’m not sure how looking at spectograms is useful for such a debate. The object of perceptual coding is not to produce something that looks the same on a spectrogram as the original — but which sounds the same. …»</p>
<p>Well, if spectogram is different, then we know that sound wasn&#8217;t properly encoded, therefore it couldn&#8217;t have been properly played.</p>
<p>At other side, spectrogram likeness is required but not sufficient.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Howto to a delete lot of Zope/Plone/CPS User account ? by Framp</title>
		<link>http://www.larsen-b.com/Article/253.html#comment-6675</link>
		<dc:creator>Framp</dc:creator>
		<pubDate>Thu, 17 Jul 2008 23:12:21 +0000</pubDate>
		<guid isPermaLink="false">#comment-6675</guid>
		<description>Nice code :)
Line 18 is genial xD:

if u('re) not in GOOD_USERS:

:D</description>
		<content:encoded><![CDATA[<p>Nice code :)<br />
Line 18 is genial xD:</p>
<p>if u(&#8217;re) not in GOOD_USERS:</p>
<p>:D</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on 2D benchmarks on Linux Nvidia, Intel, ATI: xrender by Dimitris</title>
		<link>http://www.larsen-b.com/Article/290.html#comment-6671</link>
		<dc:creator>Dimitris</dc:creator>
		<pubDate>Tue, 15 Jul 2008 07:49:36 +0000</pubDate>
		<guid isPermaLink="false">http://www.larsen-b.com/?p=290#comment-6671</guid>
		<description>The next nvidia release. Yes, but for who? Do legacy drivers get to be fixed as well? I'm afraid not!! And i don't think that so called "legacy" nvidia cards, lack the capabilities of giving a decent 2D working environment</description>
		<content:encoded><![CDATA[<p>The next nvidia release. Yes, but for who? Do legacy drivers get to be fixed as well? I&#8217;m afraid not!! And i don&#8217;t think that so called &#8220;legacy&#8221; nvidia cards, lack the capabilities of giving a decent 2D working environment</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to convert matroska MKV to AVI on Linux ? by Steven</title>
		<link>http://www.larsen-b.com/Article/261.html#comment-6670</link>
		<dc:creator>Steven</dc:creator>
		<pubDate>Sun, 13 Jul 2008 16:19:55 +0000</pubDate>
		<guid isPermaLink="false">#comment-6670</guid>
		<description>To Yoshii, this script needs you to tab in some things to work...

#!/usr/bin/python
# Little script to depack Matroska file, and repack them
# in a AVI + subtitle format.

import sys
import os

def message(msg):
TAB---&#62;print "=" * 78
TAB---&#62;print "= %s" % msg
TAB---&#62;print "=" * 78

def usage():
TAB---&#62;print "Mastroka repacker script"
TAB---&#62;print "  Usage: "+sys.argv[0]+ " filename"

if __name__ == "__main__":
TAB---&#62;if len(sys.argv) TAB---&#62;usage()
TAB---&#62;else:
TAB---&#62;TAB---&#62;filename = sys.argv[1]
TAB---&#62;TAB---&#62;basename = filename[:-4]

message("Unpacking file: %s" % filename)
os.system("mkvextract tracks %s 1:temp_video.avi 2:temp_audio.ogg 3:%s.srt" % (filename,basename) )

message("Repacking file: %s.avi" % basename)
os.system("ffmpeg -i temp_audio.ogg  -i temp_video.avi  -vcodec copy  %s.avi" % (basename) )

message("Cleaning files")
os.system("rm temp_video.avi temp_audio.ogg")</description>
		<content:encoded><![CDATA[<p>To Yoshii, this script needs you to tab in some things to work&#8230;</p>
<p>#!/usr/bin/python<br />
# Little script to depack Matroska file, and repack them<br />
# in a AVI + subtitle format.</p>
<p>import sys<br />
import os</p>
<p>def message(msg):<br />
TAB&#8212;&gt;print &#8220;=&#8221; * 78<br />
TAB&#8212;&gt;print &#8220;= %s&#8221; % msg<br />
TAB&#8212;&gt;print &#8220;=&#8221; * 78</p>
<p>def usage():<br />
TAB&#8212;&gt;print &#8220;Mastroka repacker script&#8221;<br />
TAB&#8212;&gt;print &#8221;  Usage: &#8220;+sys.argv[0]+ &#8221; filename&#8221;</p>
<p>if __name__ == &#8220;__main__&#8221;:<br />
TAB&#8212;&gt;if len(sys.argv) TAB&#8212;&gt;usage()<br />
TAB&#8212;&gt;else:<br />
TAB&#8212;&gt;TAB&#8212;&gt;filename = sys.argv[1]<br />
TAB&#8212;&gt;TAB&#8212;&gt;basename = filename[:-4]</p>
<p>message(&#8221;Unpacking file: %s&#8221; % filename)<br />
os.system(&#8221;mkvextract tracks %s 1:temp_video.avi 2:temp_audio.ogg 3:%s.srt&#8221; % (filename,basename) )</p>
<p>message(&#8221;Repacking file: %s.avi&#8221; % basename)<br />
os.system(&#8221;ffmpeg -i temp_audio.ogg  -i temp_video.avi  -vcodec copy  %s.avi&#8221; % (basename) )</p>
<p>message(&#8221;Cleaning files&#8221;)<br />
os.system(&#8221;rm temp_video.avi temp_audio.ogg&#8221;)</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Using Broadcom Wireless-G card (Linksys WMP54G) on Linux by Darren</title>
		<link>http://www.larsen-b.com/Article/28.html#comment-6669</link>
		<dc:creator>Darren</dc:creator>
		<pubDate>Sat, 12 Jul 2008 15:34:39 +0000</pubDate>
		<guid isPermaLink="false">#comment-6669</guid>
		<description>i have open sues .10.3 i would like to use wireless on it but i cant find ndiswrapper-1.7 to download and help install it my wireless dongle is netgear wg111t if anyone knows any other programs that can help or where i can download that one plz send them to me at evilcaboose@live.co.uk</description>
		<content:encoded><![CDATA[<p>i have open sues .10.3 i would like to use wireless on it but i cant find ndiswrapper-1.7 to download and help install it my wireless dongle is netgear wg111t if anyone knows any other programs that can help or where i can download that one plz send them to me at <a href="mailto:evilcaboose@live.co.uk">evilcaboose@live.co.uk</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Howto recover wrong fuses settings on a AVR by admin</title>
		<link>http://www.larsen-b.com/Article/260.html#comment-6668</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Wed, 09 Jul 2008 07:14:44 +0000</pubDate>
		<guid isPermaLink="false">#comment-6668</guid>
		<description>Santiago, you need to set the right fuse (clock, reset flag etc ..)</description>
		<content:encoded><![CDATA[<p>Santiago, you need to set the right fuse (clock, reset flag etc ..)</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Howto recover wrong fuses settings on a AVR by Santiago</title>
		<link>http://www.larsen-b.com/Article/260.html#comment-6667</link>
		<dc:creator>Santiago</dc:creator>
		<pubDate>Wed, 09 Jul 2008 00:55:12 +0000</pubDate>
		<guid isPermaLink="false">#comment-6667</guid>
		<description>i'd like to know if I need only set the external clock and the default values back, or I need make anything else</description>
		<content:encoded><![CDATA[<p>i&#8217;d like to know if I need only set the external clock and the default values back, or I need make anything else</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Fonera SD Card Hack by computmaxer</title>
		<link>http://www.larsen-b.com/Article/262.html#comment-6665</link>
		<dc:creator>computmaxer</dc:creator>
		<pubDate>Mon, 07 Jul 2008 15:44:42 +0000</pubDate>
		<guid isPermaLink="false">#comment-6665</guid>
		<description>Hey nice article.  Ya'll should come check out the fonera-hacking community at:
www.fonerahacks.com</description>
		<content:encoded><![CDATA[<p>Hey nice article.  Ya&#8217;ll should come check out the fonera-hacking community at:<br />
<a href="http://www.fonerahacks.com" rel="nofollow">http://www.fonerahacks.com</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Lumex Graphic LCD 128&#215;64 (S12864GSF) + AVR (Atmega32) by Lily</title>
		<link>http://www.larsen-b.com/Article/274.html#comment-6662</link>
		<dc:creator>Lily</dc:creator>
		<pubDate>Wed, 02 Jul 2008 08:18:25 +0000</pubDate>
		<guid isPermaLink="false">#comment-6662</guid>
		<description>Dear Sir,
 
We are LCD and LED manufacturer in China, Our main products are as follows:
 
1. Backlight:
 
Array and edge LED backlight CCFL backlight 
 
2. MONO LCD Panel/Module
 
Standard and custom LCDs in TN,  STN, FSTN，Segment/ Character /Graphic LCD Module With COB/COG/TAB Technology .

Welcome you to join my MSN, in order to communicate timely .
 
Thank you !
 

Best regards,
 
Lily Huang
 
Xiamen Longtech Optics  Co., Ltd.
 
MSN : hlh_lily@hotmail.com</description>
		<content:encoded><![CDATA[<p>Dear Sir,</p>
<p>We are LCD and LED manufacturer in China, Our main products are as follows:</p>
<p>1. Backlight:</p>
<p>Array and edge LED backlight CCFL backlight </p>
<p>2. MONO LCD Panel/Module</p>
<p>Standard and custom LCDs in TN,  STN, FSTN，Segment/ Character /Graphic LCD Module With COB/COG/TAB Technology .</p>
<p>Welcome you to join my MSN, in order to communicate timely .</p>
<p>Thank you !</p>
<p>Best regards,</p>
<p>Lily Huang</p>
<p>Xiamen Longtech Optics  Co., Ltd.</p>
<p>MSN : <a href="mailto:hlh_lily@hotmail.com">hlh_lily@hotmail.com</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to convert matroska MKV to AVI on Linux ? by earthforce_1</title>
		<link>http://www.larsen-b.com/Article/261.html#comment-6661</link>
		<dc:creator>earthforce_1</dc:creator>
		<pubDate>Tue, 01 Jul 2008 15:53:33 +0000</pubDate>
		<guid isPermaLink="false">#comment-6661</guid>
		<description>Ok, figured out an answer to my own question, and got it down to one line with no intermediate files.  Your modified .py script becomes:

#!/usr/bin/python
# Little script to depack Matroska file, and repack them
# in a AVI + subtitle format.

import sys
import os

def message(msg):
	print "=" * 78
	print "= %s" % msg
	print "=" * 78

def usage():
	print "Mastroka repacker script"
	print "  Usage: "+sys.argv[0]+ " filename"

if __name__ == "__main__":
	if len(sys.argv) &#60; 2:
		usage()
	else:
		filename = sys.argv[1]
		basename = filename[:-4]
 		message("Converting file: %s" % filename)
		os.system("mencoder %s -ovc lavc -oac lavc -o %s.avi" % (filename,basename) )</description>
		<content:encoded><![CDATA[<p>Ok, figured out an answer to my own question, and got it down to one line with no intermediate files.  Your modified .py script becomes:</p>
<p>#!/usr/bin/python<br />
# Little script to depack Matroska file, and repack them<br />
# in a AVI + subtitle format.</p>
<p>import sys<br />
import os</p>
<p>def message(msg):<br />
	print &#8220;=&#8221; * 78<br />
	print &#8220;= %s&#8221; % msg<br />
	print &#8220;=&#8221; * 78</p>
<p>def usage():<br />
	print &#8220;Mastroka repacker script&#8221;<br />
	print &#8221;  Usage: &#8220;+sys.argv[0]+ &#8221; filename&#8221;</p>
<p>if __name__ == &#8220;__main__&#8221;:<br />
	if len(sys.argv) &lt; 2:<br />
		usage()<br />
	else:<br />
		filename = sys.argv[1]<br />
		basename = filename[:-4]<br />
 		message(&#8221;Converting file: %s&#8221; % filename)<br />
		os.system(&#8221;mencoder %s -ovc lavc -oac lavc -o %s.avi&#8221; % (filename,basename) )</p>
]]></content:encoded>
	</item>
</channel>
</rss>
