<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" version="2.0">

<channel>
	<title>Blogging About» Blogging About – Technology, Software, Hardware and Webdesign</title>
	
	<link>http://bloggingabout.com</link>
	<description>Just another WordPress weblog</description>
	<lastBuildDate>Sat, 22 May 2010 06:58:01 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/bloggingabout" /><feedburner:info xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" uri="bloggingabout" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
		<title>Howto: Use updated jQuery version and accordion in WordPress</title>
		<link>http://bloggingabout.com/howto-updated-jquery-version-accordion-wordpress.html</link>
		<comments>http://bloggingabout.com/howto-updated-jquery-version-accordion-wordpress.html#comments</comments>
		<pubDate>Sat, 22 May 2010 06:50:36 +0000</pubDate>
		<dc:creator>Glitch</dc:creator>
				<category><![CDATA[Webdesign]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://bloggingabout.com/?p=440</guid>
		<description><![CDATA[I am designing a new theme for WordPress and within this theme I wanted to use the accordion effect that comes with the jQuery library. By default WordPress comes packaged with a jQuery function but because the jQuery libraries are updated constantly I decided to call my own jQuery libraries from a CDN. CDN stands [...]]]></description>
			<content:encoded><![CDATA[<p>I am designing a new theme for WordPress and within this theme I wanted to use the accordion effect that comes with the jQuery library. By default WordPress comes packaged with a jQuery function but because the jQuery libraries are updated constantly I decided to call my own jQuery libraries from a CDN. CDN stands for content delivery network, large enterprises have their own CDN&#8217;s where they host copies of popular script. In the following example I&#8217;m using the CDN of Google. What I&#8217;m going to do is make a function for <em>functions.php</em> that unloads the default libraries, registers the new and updated ones and makes them available for use.</p>
<p><span id="more-440"></span><br />
Copy the following function to your <em>functions.php</em> within your theme directory. Make sure this function is pasted within the php tags.</p>
<pre class="brush: php;">
function my_jquery() {
if ( !is_admin() ) { // This makes sure the updated libraries are not used within the admin area to avoid conflicts
		wp_deregister_script('jquery'); 																			// using wp_deregister_script() to disable the version that comes packaged with WordPress
		wp_deregister_script('jquery-ui-core');
		wp_deregister_script('jquery-ui-tabs');
		wp_register_script('jquery', 'http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js'); 			// using wp_register_script() to register updated libraries (this example uses the CDN from Google but you can use any other CDN or host the scripts yourself)
		wp_register_script('jquery-ui-core', 'http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.1/jquery-ui.min.js');
		wp_enqueue_script('jquery');																				// using wp_enqueue_script() to load the updated libraries
		wp_enqueue_script('jquery-ui-core');
		wp_enqueue_script('jquery-ui-tabs');
		wp_enqueue_script('jquery-ui-accordion');
    }
}
add_action('init', 'my_jquery'); // load the function
</pre>
<p>Now with the updated libraries in place they can be used within your theme. Here is a small explanation how to do this. WordPress loads jQuery in &#8220;no conflict mode&#8221; to avoid conflicts with other scripts and therefor requires a special way of calling the jQuery functions. jQuery functions can be called anywhere in you theme using javascript. Add the following before the &lt;&frasl;head&gt; tag within <em>header.php</em> in your theme directory.</p>
<pre class="brush: xml;">
&lt;script type=&quot;text/javascript&quot;&gt;
	jQuery(document).ready(function($){ $(&quot;#accordion&quot;).accordion(); });
&lt;/script&gt;
</pre>
<p>The code above creates a accordion function that looks for a div with the id accordion to create the accordion effect. Now you can use the correct CSS and HTML markup to create your own accordion menu. To get a quick idea on how it works, do the following. First add the jQuery stylesheet hosted by Google which includes all basic styles for all the jQuery effects. Eventually you will have to use your own CSS styles but this is a quick way to check if everything works and this stylesheet can be used as a basis for your own styles. Add the following within your &#038;lthead&gt; tags.</p>
<pre class="brush: xml;">
&lt;link href=&quot;http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/themes/base/jquery-ui.css&quot; rel=&quot;stylesheet&quot; type=&quot;text/css&quot;/&gt;
</pre>
<p>Use the following HTML markup anywhere in your theme to create the accordion effect.</p>
<pre class="brush: xml;">
&lt;div id=&quot;accordion&quot;&gt;
	&lt;h3&gt;&lt;a href=&quot;#&quot;&gt;Section 1&lt;/a&gt;&lt;/h3&gt;
	&lt;div&gt;
		&lt;p&gt;
			Mauris mauris ante, blandit et, ultrices a, suscipit eget, quam. Integer
			ut neque. Vivamus nisi metus, molestie vel, gravida in, condimentum sit
			amet, nunc. Nam a nibh. Donec suscipit eros. Nam mi. Proin viverra leo ut
			odio. Curabitur malesuada. Vestibulum a velit eu ante scelerisque vulputate.
		&lt;/p&gt;
	&lt;/div&gt;
	&lt;h3&gt;&lt;a href=&quot;#&quot;&gt;Section 2&lt;/a&gt;&lt;/h3&gt;
	&lt;div&gt;
		&lt;p&gt;
			&lt;a href=&quot;http://bloggingabout.com/howto-updated-jquery-version-accordion-wordpress.html&quot;&gt;Using updated jQuery libraries in WordPress&lt;/a&gt;
		&lt;/p&gt;
	&lt;/div&gt;
	&lt;h3&gt;&lt;a href=&quot;#&quot;&gt;Section 3&lt;/a&gt;&lt;/h3&gt;
	&lt;div&gt;
		&lt;p&gt;
		Nam enim risus, molestie et, porta ac, aliquam ac, risus. Quisque lobortis.
		Phasellus pellentesque purus in massa. Aenean in pede. Phasellus ac libero
		ac tellus pellentesque semper. Sed ac felis. Sed commodo, magna quis
		lacinia ornare, quam ante aliquam nisi, eu iaculis leo purus venenatis dui.
		&lt;/p&gt;
		&lt;ul&gt;
			&lt;li&gt;List item one&lt;/li&gt;
			&lt;li&gt;List item two&lt;/li&gt;
			&lt;li&gt;List item three&lt;/li&gt;
		&lt;/ul&gt;
	&lt;/div&gt;
	&lt;h3&gt;&lt;a href=&quot;#&quot;&gt;Section 4&lt;/a&gt;&lt;/h3&gt;
	&lt;div&gt;
		&lt;p&gt;
		Cras dictum. Pellentesque habitant morbi tristique senectus et netus
		et malesuada fames ac turpis egestas. Vestibulum ante ipsum primis in
		faucibus orci luctus et ultrices posuere cubilia Curae; Aenean lacinia
		mauris vel est.
		&lt;/p&gt;
		&lt;p&gt;
		Suspendisse eu nisl. Nullam ut libero. Integer dignissim consequat lectus.
		Class aptent taciti sociosqu ad litora torquent per conubia nostra, per
		inceptos himenaeos.
		&lt;/p&gt;
	&lt;/div&gt;
&lt;/div&gt;</pre>
<p>Your accordion menu is now in place!</p>
]]></content:encoded>
			<wfw:commentRss>http://bloggingabout.com/howto-updated-jquery-version-accordion-wordpress.html/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>XBMC on Popcorn Hour 100 series</title>
		<link>http://bloggingabout.com/xbmc-popcorn-hour-100-series.html</link>
		<comments>http://bloggingabout.com/xbmc-popcorn-hour-100-series.html#comments</comments>
		<pubDate>Thu, 13 May 2010 12:38:36 +0000</pubDate>
		<dc:creator>Glitch</dc:creator>
				<category><![CDATA[Hardware]]></category>
		<category><![CDATA[XBMC]]></category>

		<guid isPermaLink="false">http://bloggingabout.com/?p=434</guid>
		<description><![CDATA[What seemed impossible has finally happened. XBMC has been ported to the Popcorn Hour 100 series. The port is currently in beta phase and is only available on invite but my guess is that it wont take long before the project matures and releases a public version. This is of course good news for those [...]]]></description>
			<content:encoded><![CDATA[<p>What seemed impossible has finally happened. XBMC has been ported to the Popcorn Hour 100 series. The port is currently in beta phase and is only available on invite but my guess is that it wont take long before the project matures and releases a public version. This is of course good news for those who have a Popcorn Hour from the 100 series and would like to spice the interface to something with more eye candy. Check out the video below.</p>
<p><object width="600" height="361"><param name="movie" value="http://www.youtube.com/v/ER5R871xHxg&#038;hl=nl_NL&#038;fs=1&#038;"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/ER5R871xHxg&#038;hl=nl_NL&#038;fs=1&#038;" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="600" height="361"></embed></object></p>
<p>More information can be found on the Networked Media Tank <a href="http://www.networkedmediatank.com/showthread.php?tid=40300&#038;page=1">forum</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://bloggingabout.com/xbmc-popcorn-hour-100-series.html/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>No sound on Denon AVR in combination with Humax</title>
		<link>http://bloggingabout.com/sound-hdmi-denon-avr-combination-humax.html</link>
		<comments>http://bloggingabout.com/sound-hdmi-denon-avr-combination-humax.html#comments</comments>
		<pubDate>Mon, 08 Mar 2010 18:47:56 +0000</pubDate>
		<dc:creator>Glitch</dc:creator>
				<category><![CDATA[Hardware]]></category>

		<guid isPermaLink="false">http://bloggingabout.com/?p=423</guid>
		<description><![CDATA[I recently bought a new audio-video receiver to add to my home-cinema setup. After some period of research I have chosen the Denon AVR-1910 to do the job. This AV-receiver is a mid-range receiver that fits all my needs and was also selected as home-cinema receiver of 2009 by whathifi.com. Although I&#8217;m very happy with [...]]]></description>
			<content:encoded><![CDATA[<p>I recently bought a new audio-video receiver to add to my home-cinema setup. After some period of research I have chosen the Denon AVR-1910 to do the job. This AV-receiver is a mid-range receiver that fits all my needs and was also selected as home-cinema receiver of 2009 by <a href="http://awards.whathifi.com/winners/home-cinema-amplifiers/2009">whathifi.com</a>. Although I&#8217;m very happy with this machine, it&#8217;s functionality and the sound quality I have encountered a bug/failure when the receiver is used in co-operation with a Humax digital TV tuner. This post explains the issue and it&#8217;s work-around for future reference to people who run into the same problem.</p>
<p><span id="more-423"></span></p>
<h2>The issue</h2>
<p>In case you own a Humax digital TV tuner with a HDMI output (like a Foxsat or a iHDR-5050c) it would be a logical decision to hook this TV tuner to your Denon AV-Receiver with a single HDMI cable. One of the advantages of HDMI is that it incorporates HD video, HD audio and control signals in one cable. So this is also what I did myself. After some time fiddeling with the input assign settings (Denon manuals are terrible, try this <a href="http://batpigworld.com/setup.html">website</a>) I assigned my Humax TV tuner to one of the HDMI input channels on the AV-Receiver, switched everything on and voila, all seemed fine. But this moment of joy did not last long, after changing channels between SD channels on my Humax TV tuner I noticed that the sound was lost. The only way to get the sound back is to reselect the AVR input channel or change the AVR audio settings or switch to a HD channel which forces a different surround sound settings. Although this makes the sound come back it&#8217;s not a workable situation to do after every time you change the channel.</p>
<p>Initially I thought I had done something wrong during the setup but after some time Googling I read about more Humax / Denon users that had similar problems and that Denon has actually recognized this bug. They are working on a solution together with Humax which will probably become available as a firmware update. Unfortunately for me and other AVR-1910 owners this type does not have a firmware update option (unlike the 2310 and higher). So unless Humax comes up with an update to fix this problem we are stuck with this bug. Fortunately there is a workaround.</p>
<h2>The workaround</h2>
<p>Of course this workaround is not too pretty but for me it&#8217;s workable. </p>
<ol>
<li>Connect your Humax TV tuner with an additional optical lead.</li>
<li>Enter the Denon ssign input menu and associate the optical input with you Humax TV tuner</li>
<li>Enter the Denon input menu and change the setting from Auto to Digital</li>
</ol>
<p>You will now have continues audio while changing the channels on your Humax TV tuner. The sound quality is still digital and as far as I can tell the auto lipsync feature is still working as well. The only downside is the use of an extra cable and the use of a extra input socket. Hopefully for the AVR-2310 and higher users Denon will come up with a new firmware to fix the issue. The AVR-1910 users like myself will probably be stuck with the extra optical lead unfortunately.</p>
]]></content:encoded>
			<wfw:commentRss>http://bloggingabout.com/sound-hdmi-denon-avr-combination-humax.html/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>Manage WordPress comments with desktop application</title>
		<link>http://bloggingabout.com/manage-wordpress-comments-desktop-application.html</link>
		<comments>http://bloggingabout.com/manage-wordpress-comments-desktop-application.html#comments</comments>
		<pubDate>Mon, 08 Mar 2010 06:45:08 +0000</pubDate>
		<dc:creator>Glitch</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://bloggingabout.com/?p=416</guid>
		<description><![CDATA[If you own a successful WordPress blog you know that managing all the comments you receive every day can be quite some work. Today I read about a desktop application that can make your life easier. The application is called WP-Comment-Notifier. The application displays an icon in your system tray to let you know if [...]]]></description>
			<content:encoded><![CDATA[<p>If you own a successful WordPress blog you know that managing all the comments you receive every day can be quite some work. Today I read about a desktop application that can make your life easier. The application is called <a href="http://code.google.com/p/wp-comments-notifier/">WP-Comment-Notifier</a>. The application displays an icon in your system tray to let you know if you have new comments and allows you to manage/reply/edit your comments directly from your desktop.</p>
<p><span id="more-416"></span><br />
Below are a couple of screenshots.</p>
<p><img src="http://bloggingabout.com/files/2010/03/wp-comments-notifier.png" alt="WP-Comments-Notifier" title="WP-Comments-Notifier" width="549" height="488" class="alignnone size-full wp-image-417" /> </p>
]]></content:encoded>
			<wfw:commentRss>http://bloggingabout.com/manage-wordpress-comments-desktop-application.html/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>XBMC addons and PVR frontend are on it’s way</title>
		<link>http://bloggingabout.com/xbmc-addons-pvr-frontend.html</link>
		<comments>http://bloggingabout.com/xbmc-addons-pvr-frontend.html#comments</comments>
		<pubDate>Tue, 02 Mar 2010 21:23:11 +0000</pubDate>
		<dc:creator>Glitch</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[XBMC]]></category>

		<guid isPermaLink="false">http://bloggingabout.com/?p=409</guid>
		<description><![CDATA[About a month ago XBMC announced the new features for the next version of XBMC. These new features, although very useful and a step forward, might not mean that much for the average XBMC user that just want his home theater system to work. One of the features however will improve the user experience even [...]]]></description>
			<content:encoded><![CDATA[<p>About a month ago XBMC <a href="http://xbmc.org/theuni/2010/02/06/coming-soon/">announced</a> the new features for the next version of XBMC. These new features, although very useful and a step forward, might not mean that much for the average XBMC user that just want his home theater system to work. One of the features however will improve the user experience even for these average users. Yesterday the XBMC team announced that the new code for the addons manager and the basis for the PVR frontend will be added to the development branch of XBMC.</p>
<p><span id="more-409"></span></p>
<h2>Addons manager</h2>
<p>Even better than it sounds. Will allow an easy way to manage addons, including among other things, PVR backends. Once finished, though still a ways out, this will add the capability of extending XBMC from the couch. No need to ssh/ftp into your box to add skins, scrapers, plugins, PVR Backends, etc. You will be able to add addons from something like a apps-store. The code for this app-store will be opensource allowing everyone to use it&#8217;s capabilities.</p>
<h2>PVR frontend</h2>
<p>Probably the most requested feature for XBMC. This will provide a unified experience to your choice of PVR backends such as: VDR, MythTV, Tvheadend, and MediaPortal TVserver. Only the basis for this functionality is being added right now.</p>
<p>Because the new code is far from bugfree the XBMC team suggest that users and builders take a break until things have settled. For this reason, official nightly builds have been temporarily suspended.</p>
]]></content:encoded>
			<wfw:commentRss>http://bloggingabout.com/xbmc-addons-pvr-frontend.html/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>BluRay playback in XBMC now as plugin</title>
		<link>http://bloggingabout.com/bluray-playback-xbmc-plugin.html</link>
		<comments>http://bloggingabout.com/bluray-playback-xbmc-plugin.html#comments</comments>
		<pubDate>Fri, 19 Feb 2010 06:50:11 +0000</pubDate>
		<dc:creator>Glitch</dc:creator>
				<category><![CDATA[Hardware]]></category>
		<category><![CDATA[XBMC]]></category>

		<guid isPermaLink="false">http://bloggingabout.com/?p=404</guid>
		<description><![CDATA[A couple of weeks ago I wrote about how to get BluRay playback within XBMC. At that time development on this issue had just started but I already predicted that this would continue. Now the next step has been taken. The original author of the script has created a plugin which makes it easier to [...]]]></description>
			<content:encoded><![CDATA[<p>A couple of weeks ago I wrote about how to get BluRay playback within XBMC. At that time development on this issue had just started but I already predicted that this would continue. Now the next step has been taken. The original author of the script has created a plugin which makes it easier to manage your BluRay discs or ISO&#8217;s within XBMC.</p>
<p><span id="more-404"></span><br />
You can find the full information on the <a href="http://forum.xbmc.org/showthread.php?t=67420">XBMC forums</a>. All credits for this go to the user called magnetism. I&#8217;m only spreading the word here.</p>
<h2>Requirements</h2>
<ul>
<li>A working install of MakeMKV. If you&#8217;re installing under Linux, make sure you install both the source and the binary package, otherwise the commandline tool won&#8217;t be there. If you have not installed MakeMKV before then please follow these actions. This will install version 1.5.4. Use <a href="http://www.chiark.greenend.org.uk/~sgtatham/putty/download.html">PuTTY</a> or any other SSH client with commandline interface to execute the following commands (one per line).
<pre class="brush: plain;">
sudo apt-get update
sudo apt-get upgrade
sudo apt-get install build-essential libc6-dev libssl-dev libgl1-mesa-dev libqt4-dev
wget http://www.makemkv.com/download/makemkv_v1.5.4_beta_bin.tar.gz
wget http://www.makemkv.com/download/makemkv_v1.5.4_beta_oss.tar.gz
tar -xvf makemkv_v1.5.4_beta_bin.tar.gz
tar -xvf makemkv_v1.5.4_beta_oss.tar.gz
cd makemkv_v1.5.4_beta_oss
sudo make -f makefile.linux
sudo make -f makefile.linux install
cd ..
cd makemkv_v1.5.4_beta_bin
sudo make -f makefile.linux
sudo make -f makefile.linux install
</pre>
</li>
<li>A BluRay source, either a disc or iso&#8217;s or something.. (What&#8217;s the point otherwise&#8230;)</li>
</ul>
<h2>Install the plugin</h2>
<ul>
<li>Download the current version of the plugin <a href="http://www.bultsblog.com/BluRay-plugin-v01a.zip">here</a></li>
<li>Unzip/Install the plugin in your plugin/video path to make it act as a video plugin</li>
</ul>
<h2>Use the plugin</h2>
<p>Browse to your video plugins and if all went well with the installation a BluRay plugin should now be selectable. Enter it and play some BluRay&#8217;s.. Initially there are 3 sources options and a selection to go to the plugin settings. Source options are:</p>
<ul>
<li>Disc, play a disc insterted into your BluRay drive (can also be a DVD if you really want to..)</li>
<li>Filelocation, browse for a filelocation in your video sources and use it as a BluRay source. Selections can be either and ISO image or an index.bdmv file if the dir has been extracted. Note: Since the actual streaming of the image is delegated to the makemkvcon executable only files accessible at the filesystem level can be used. If you&#8217;ve used an XBMC selected samba source, iso files from this location won&#8217;t work.</li>
<li>Remote, you can let it connect to a remote machine with the stream setup already.</li>
</ul>
<p>All three source options have both a &#8216;play&#8217; and &#8216;browse&#8217; selection. If you choose &#8216;play&#8217; the plugin will automatically determine the longest running feature on the disc and start playback of that. Handy if the BluRay has only one main feature (ie movies). If you choose &#8216;browse&#8217; the plugin will display a selection of chapters on the disc and let&#8217;s you select the one you want to play. Handy if you&#8217;re looking at a series BluRay with multiple episode. Unfortunately there is not a lot of information available on the streams when selecting browse. This is because the MakeMKV streamer doesn&#8217;t supply any more info.</p>
<h2>Explanation of the settings</h2>
<p>Settings are divided into three sections:</p>
<ul>
<li><strong>General Settings</strong>
<ul>
<li>MakeMKV location. -&gt; Point to your makemkvcon executable. If it is on your path the default should be fine, otherwise just browse to the correct location and select it.</li>
<li>Seconds to wait for stream -&gt; Tell the script how long it should wait for makemkv to finish parsing the disc/iso before calling it quits and exiting. Default is 2 minutes.</li>
<li>Local portnumber -&gt; If running makemkvcon locally this is the portnumber that the script will listen to. Default should be fine</li>
</ul>
</li>
<li><strong>Browseable Options</strong>
<ul>
<li>Enable disc support -&gt; Turn on or off disc support</li>
<li>Enable File location support -&gt; Turn on or off support for browsing to ISOs and directory structures for playback</li>
<li>Enable Remote location support -&gt; Turn on or off support for streaming from a remote location</li>
</ul>
</li>
<li><strong>Remote Setup</strong><br />
This section will only show up if you&#8217;ve enabled remote location support. Enter the ip address and portnumber of the remote makemkv stream location.</li>
</ul>
<p>Once again, all credits go to magnetism, a user at the XBMC forums. If there is more news about this I&#8217;ll post it on my blog. Keep yourself updated by subscribing to <a href="http://feeds.feedburner.com/bloggingabout">my feed</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://bloggingabout.com/bluray-playback-xbmc-plugin.html/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>Battery notification on Windows 7</title>
		<link>http://bloggingabout.com/battery-notification-windows-7.html</link>
		<comments>http://bloggingabout.com/battery-notification-windows-7.html#comments</comments>
		<pubDate>Tue, 09 Feb 2010 06:58:06 +0000</pubDate>
		<dc:creator>Glitch</dc:creator>
				<category><![CDATA[Hardware]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://bloggingabout.com/?p=395</guid>
		<description><![CDATA[I&#8217;m a Windows 7 user because some of the programs I use on a daily basis arent available under Linux (if so I would have switched to Ubuntu or Linux Mint a long time ago). Shortly after upgrading from Vista to Windows 7 I noticed that the operating system reported that there was a problem [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m a Windows 7 user because some of the programs I use on a daily basis arent available under Linux (if so I would have switched to Ubuntu or Linux Mint a long time ago). Shortly after upgrading from Vista to Windows 7 I noticed that the operating system reported that there was a problem with my laptop battery and that I should replace it. I also noticed that my battery life was down to a mere one hour compared to the two and half hour of juice available under Vista. But I never gave much attention to it. Most batteries start to degrade after their first year and I certainly didnt link it to the upgrade to Windows 7. I thought my laptop battery was wearing out and since I&#8217;m mostly hooked up on the powernet I dont use it that much anyway. However only recently I read that a lot of Windows 7 users are experiencing the same issue and are complaining that their battery life is being killed by Windows 7. Microsoft has investigated this problem and has come with a statement.</p>
<p><span id="more-395"></span><br />
If you are experiencing the same issue you will have seen the following notification in the taskbar.<br />
<img src="http://bloggingabout.com/files/2010/02/battery.jpg" alt="Windows 7 battery notification" title="Windows 7 battery notification" width="310" height="373" class="alignnone size-full wp-image-396" /></p>
<p>On the <a href="http://blogs.msdn.com/e7/archive/2010/02/08/windows-7-battery-notification-messages.aspx">MSDN blog</a> Microsoft has posted a statement that Windows 7 is correctly reporting the battery status and people who see this notification should indeed replace their battery. Microsoft stated they have investigated the matter and that in all cases the replacement notification was correct. They also go into technical details how this new Windows 7 feature works but I cant help wondering considering my own experiences and the reports of other users that something is wrong. In a reaction to the MSDN posting a user called Dan Lee is saying that Windows is using the wrong parameters for calculating the battery status and it seems more users dont take the statement from Miscrosoft for granted. I&#8217;m sure we will be hearing more about this the next few weeks.</p>
<p>I found a great little tool to get more information about your laptop battery. You might wanna check it out as well, it&#8217;s completely free to use and it&#8217;s called <a href="http://batterycare.bkspot.com">Battery Care</a>.</p>
<p><img src="http://bloggingabout.com/files/2010/02/batterycare.png" alt="Battery Care" title="Battery Care" width="334" height="346" class="alignnone size-full wp-image-399" /></p>
<p>It would be great to hear if more people are experiencing this issue and what your findings are if you have investigated it yourself.</p>
]]></content:encoded>
			<wfw:commentRss>http://bloggingabout.com/battery-notification-windows-7.html/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ASRock ION-330HT boots itself</title>
		<link>http://bloggingabout.com/asrock-ion330ht-boots.html</link>
		<comments>http://bloggingabout.com/asrock-ion330ht-boots.html#comments</comments>
		<pubDate>Sat, 30 Jan 2010 09:49:32 +0000</pubDate>
		<dc:creator>Glitch</dc:creator>
				<category><![CDATA[Hardware]]></category>

		<guid isPermaLink="false">http://bloggingabout.com/?p=393</guid>
		<description><![CDATA[There is a pretty weird problem with the ASRock ION-330HT. The machine will boot itself from time to time. I did some research together with other ION-330HT owners and I&#8217;m pretty sure we narrowed down the problem. If you experience the same issue and really dont know what is going on be sure to read [...]]]></description>
			<content:encoded><![CDATA[<p>There is a pretty weird problem with the ASRock ION-330HT. The machine will boot itself from time to time. I did some research together with other ION-330HT owners and I&#8217;m pretty sure we narrowed down the problem. If you experience the same issue and really dont know what is going on be sure to read on.</p>
<p><span id="more-393"></span></p>
<h2>The problem</h2>
<p>I use the ASRock ION-330HT together with XBMC as home theater PC which is a great combination. When I first setup the machine the Linux drivers for the internal remote where not yet available so there was no way to control the machine except by using a mouse or keyboard connected to a USB port. But I started noticing the machine was powered on from time to time even though I was sure I had turned it off (with a complete power down). Since there where no Linux drivers available for the internal IR receiver it could not be some other remote that could cause this behaviour.</p>
<p>At first I thought it was perhaps related to XBMC and started a support topic on the forums. Turned out more people where experiencing this issue. After gathering the experiences in <a href="http://forum.xbmc.org/showthread.php?t=64219">that topic</a> I&#8217;m pretty sure we have found the source of this behaviour. It turns out plasma and LCD TV&#8217;s emit IR interference which can be picked up by the internal IR receiver of the ASRock ION-330HT. This IR interference will result in the maching booting by itself. This will even occur when there is no driver installed as this behaviour is completely OS independant.</p>
<h2>The possible solution</h2>
<p>If you experience this issue and would like to prevent it, here are your options.</p>
<ol>
<li><strong>Disable Onboard CIR Wake Up in the BIOS</strong><br />
By doing so your machine will never power on through the internal IR receiver. It&#8217;s a radical solution if you only power on your machine with the button. If you would like to use a remote to power on your box this is not the way.</li>
<li><strong>Try moving your ION-330HT away from your TV</strong><br />
As mentioned the most likely cause is the IR interference of your plasma or LCD TV. Moving your ION-330HT away from your TV could solve your issue. In my case I only had to move the system a couple of inches to almost completely resolve the issue.</li>
<li><strong>Shield the internal IR receiver</strong><br />
Shielding the internal IR receiver with something like a sheet of paper or some tape you could prevent the reception of the IR being emitted by your TV but still allow the signals from the remote to be received. The internal IR receiver can be found at the front left behind the holes</li>
</ol>
<p>It would like to hear from you if this solved your problem.</p>
]]></content:encoded>
			<wfw:commentRss>http://bloggingabout.com/asrock-ion330ht-boots.html/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Boxee adds paid content in near future</title>
		<link>http://bloggingabout.com/boxee-adds-paid-content-future.html</link>
		<comments>http://bloggingabout.com/boxee-adds-paid-content-future.html#comments</comments>
		<pubDate>Fri, 22 Jan 2010 12:00:29 +0000</pubDate>
		<dc:creator>Glitch</dc:creator>
				<category><![CDATA[Hardware]]></category>
		<category><![CDATA[XBMC]]></category>

		<guid isPermaLink="false">http://bloggingabout.com/?p=389</guid>
		<description><![CDATA[A couple of days ago Boxee has announced they will be bringing paid content to their media center software. For those of you who dont know Boxee: Boxee is a fork of the popular XBMC media center software and is capable of playing all sorts of media when installed on a computer or HTPC. Compared [...]]]></description>
			<content:encoded><![CDATA[<p>A couple of days ago Boxee has announced they will be bringing paid content to their media center software. For those of you who dont know <a href="http://www.boxee.tv">Boxee</a>: Boxee is a fork of the popular XBMC media center software and is capable of playing all sorts of media when installed on a computer or HTPC. Compared the XBMC Boxee features some custom and proprietary additions and is more focused on social and online media.</p>
<p>The idea is that Boxee users will have the ability to buy content like TV shows and movies with a click of the remote. Content owners will be able to package and price as they wish, including pay-per-view and subscription. This could be a great step forward towards paid content as a countermeasure for piracy. I would love to see this in XBMC as well although I doubt this is gonna happen.</p>
<p>Read more about these plans on the <a href="http://blog.boxee.tv/2010/01/20/coming-soon-boxee-payments/">Boxee Blog</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://bloggingabout.com/boxee-adds-paid-content-future.html/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Blu-ray playback in XBMC for Linux</title>
		<link>http://bloggingabout.com/bluray-playback-xbmc-linux.html</link>
		<comments>http://bloggingabout.com/bluray-playback-xbmc-linux.html#comments</comments>
		<pubDate>Thu, 21 Jan 2010 19:23:42 +0000</pubDate>
		<dc:creator>Glitch</dc:creator>
				<category><![CDATA[Hardware]]></category>
		<category><![CDATA[XBMC]]></category>

		<guid isPermaLink="false">http://bloggingabout.com/?p=381</guid>
		<description><![CDATA[There are many people out there that have a Home Theater PC with Blu-ray drive (like the ASRock ION-330HT-BD) running with the mediaportal software XBMC. By default XBMC does not support original Blu-ray playback but it seems progress is being made on this from the XBMC community. A user named magnetism wrote a post on [...]]]></description>
			<content:encoded><![CDATA[<p>There are many people out there that have a Home Theater PC with Blu-ray drive (like the ASRock ION-330HT-BD) running with the mediaportal software XBMC. By default XBMC does not support original Blu-ray playback but it seems progress is being made on this from the XBMC community. A user named magnetism wrote a post on the <a href="http://forum.xbmc.org/showthread.php?t=67420">forum</a> of xbmc.org explaining how he fixed this issue. Below is a short tutorial as seen on the dutch site <a href="http://www.xbmcfreak.nl/blu-ray-disk-in-xbmc/">XBMCFreak.nl</a>. Warning: from here on it is assumed you have basic knowledge of Linux and SSH.</p>
<p><span id="more-381"></span></p>
<h2>Install makemkv</h2>
<p>Use <a href="http://www.chiark.greenend.org.uk/~sgtatham/putty/download.html">PuTTY</a> or any other SSH client with commandline interface to execute the following commands (one per line).</p>
<pre class="brush: plain;">
sudo apt-get update
sudo apt-get upgrade
sudo apt-get install build-essential libc6-dev libssl-dev libgl1-mesa-dev libqt4-dev
wget http://www.makemkv.com/download/makemkv_v1.5.0_beta_bin.tar.gz
wget http://www.makemkv.com/download/makemkv_v1.5.0_beta_oss.tar.gz
tar -xvf makemkv_v1.5.0_beta_bin.tar.gz
tar -xvf makemkv_v1.5.0_beta_oss.tar.gz
cd makemkv_v1.5.0_beta_oss
sudo make -f makefile.linux
sudo make -f makefile.linux install
cd ..
cd makemkv_v1.5.0_beta_bin
sudo make -f makefile.linux
sudo make -f makefile.linux install
</pre>
<h2>Upload the custom Blu-ray script</h2>
<p>Next, download the custom Blu-ray script from magnetism here: <a href="http://www.bultsblog.com/BluRay-script.zip">http://www.bultsblog.com/BluRay-script.zip</a>. Extract the content and upload it to the scripts directory <em>./xbmc/scripts/</em> with a sFTP client.</p>
<h2>Playback</h2>
<p>If all is well you can now playback Blu-ray discs. You can do this by inserting the Blu-ray disc in the drive and then start the custom script from the scripts menu. Unfortunately I can&#8217;t test this myself since I don&#8217;t own any Blu-ray discs yet.</p>
<h2>Playing a Blu-ray ISO</h2>
<p>With this method it is also possible to playback Blu-ray ISO files. It is currently now build in the script but can be done manually. Read the full <a href="http://www.xbmc.org/forum/showthread.php?t=67420&#038;page=2">topic</a> on XBMC.org for this (especially page 2).</p>
<h2>Issues</h2>
<p>Some people have reported that audio is killed after executing the script. The video starts but audio is killed with an error &#8220;Failed to initialize audio device&#8221;. A reboot is required to get the audio back. But this seems an isolated issue so far.</p>
<h2>What&#8217;s next</h2>
<p>This script has just became public and is still experimental. I&#8217;m positive it the will be further developed until playback of Blu-ray discs and perhaps also ISO&#8217;s is well supported and easily managed. Just keep track on the XBMC.org forum or consider subscribing to my <a href="http://feeds.feedburner.com/bloggingabout">news feed</a>. I&#8217;ll be posting more about this in the future.</p>
]]></content:encoded>
			<wfw:commentRss>http://bloggingabout.com/bluray-playback-xbmc-linux.html/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
	</channel>
</rss>
