<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>My Thoughts and other Meaningless Nonsense.</title>
	<atom:link href="http://daniel1992.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://daniel1992.wordpress.com</link>
	<description>Did you not understand the title? Anyway this blog focuses on myself, computers, and free software, especially Linux.</description>
	<lastBuildDate>Tue, 28 Dec 2010 14:42:21 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='daniel1992.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>My Thoughts and other Meaningless Nonsense.</title>
		<link>http://daniel1992.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://daniel1992.wordpress.com/osd.xml" title="My Thoughts and other Meaningless Nonsense." />
	<atom:link rel='hub' href='http://daniel1992.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Print to a non-supported printer from Linux</title>
		<link>http://daniel1992.wordpress.com/2009/10/25/print-to-a-non-supported-printer-from-linux/</link>
		<comments>http://daniel1992.wordpress.com/2009/10/25/print-to-a-non-supported-printer-from-linux/#comments</comments>
		<pubDate>Sun, 25 Oct 2009 22:46:57 +0000</pubDate>
		<dc:creator>daniel1992</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://daniel1992.wordpress.com/?p=206</guid>
		<description><![CDATA[My mother bought a Kodak ESP 7 multifunction printer a few months ago. Since then, she has started using a netbook with Ubuntu Netbook Remix on it full-time. For a while now I have been intending to find a way to print to it from the netbook. Unfortunately, Kodak decided to be one of the [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=daniel1992.wordpress.com&amp;blog=1848863&amp;post=206&amp;subd=daniel1992&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>My mother bought a Kodak ESP 7 multifunction printer a few months ago. Since then, she has started using a netbook with Ubuntu Netbook Remix on it full-time. For a while now I have been intending to find a way to print to it from the netbook.</p>
<p>Unfortunately, Kodak decided to be one of the few printer manufacturers providing no linux support whatsoever. Attempts to make a driver have failed repeatedly.</p>
<p>I came up with a way to print to this machine without ever actually finding a working driver. I use a connected windows machine (our family computer) and Dropbox.</p>
<p>Here are the steps to set this up:</p>
<ol>
<li>Install <a href="https://www.getdropbox.com/">Dropbox</a> on the Linux and Windows computers. Make an account, and link them both. Now, you will have a Dropbox folder on each. I&#8217;m assuming that they are in the default places &#8211; change the paths if you put them elsewhere.</li>
<li>Make a folder named print in the Dropbox.</li>
<li>Now, install <a href="http://www.autohotkey.com/download/">autohotkey</a> on the Windows computer.</li>
<li>Make a new autohotkey script in the Dropbox print folder. I named it printer.ahk, but it doesn&#8217;t matter.</li>
</ol>
<p>Inside the file put these lines, modifying if needed:</p>
<p><code><br />
;<br />
; AutoHotkey Version: 1.x<br />
; Language:       English<br />
; Platform:       Win9x/NT<br />
; Author:         A.N.Other<br />
;<br />
; Script Function:<br />
;	Template script (you can customize this template by editing "ShellNew\Template.ahk" in your Windows folder)<br />
;<br />
#NoTrayIcon<br />
#NoEnv  ; Recommended for performance and compatibility with future AutoHotkey releases.<br />
SendMode Input  ; Recommended for new scripts due to its superior speed and reliability.<br />
SetWorkingDir %A_ScriptDir%  ; Ensures a consistent starting directory.<br />
Loop {<br />
Loop, %A_ScriptDir%\*.pdf, , 1<br />
{<br />
Run, print %A_LoopFileFullPath%<br />
Sleep, 30000<br />
FileDelete %A_LoopFileFullPath%<br />
}<br />
Sleep, 10000<br />
}<br />
</code></p>
<p>Now, run the script by double-clicking on it. I recommend that you place it in the startup folder as well so that it comes on always.</p>
<p>If you want, this is all you have to do. You can use print to file in Ubuntu to print to a pdf in the print directory. After a few seconds it will begin to print on the Windows machine&#8217;s default printer. However, I changed a few things to make printing even easier.</p>
<p>These are the steps:</p>
<ol>
<li>Install cups-pdf with synaptic or sudo apt-get install cups-pdf in terminal.</li>
<li>In a terminal, run the following: &#8216;sudo chmod +s /usr/lib/cups/backend/cups-pdf&#8217;</li>
<li>Run &#8216;mkdir ~/PDF&#8217; in a terminal.</li>
<li>Now, &#8216;ln -s ~/PDF ~/Dropbox/print&#8217;</li>
<li>Open Printing (System &gt; Administration &gt; Printing), and set the printer called PDF to default.</li>
</ol>
<p>After doing that, you should be able to open any app, go to print, and just hit print. after 10-15 seconds adobe reader will open up on the windows computer and print the document.</p>
<p>It takes a bit to set up, but is worth it. As a nice side-effect, it turns any printer into a network printer from Linux.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/daniel1992.wordpress.com/206/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/daniel1992.wordpress.com/206/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/daniel1992.wordpress.com/206/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/daniel1992.wordpress.com/206/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/daniel1992.wordpress.com/206/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/daniel1992.wordpress.com/206/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/daniel1992.wordpress.com/206/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/daniel1992.wordpress.com/206/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/daniel1992.wordpress.com/206/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/daniel1992.wordpress.com/206/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/daniel1992.wordpress.com/206/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/daniel1992.wordpress.com/206/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/daniel1992.wordpress.com/206/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/daniel1992.wordpress.com/206/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=daniel1992.wordpress.com&amp;blog=1848863&amp;post=206&amp;subd=daniel1992&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://daniel1992.wordpress.com/2009/10/25/print-to-a-non-supported-printer-from-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b8d751e644324dbe665e6cc4375ab1ff?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">daniel1992</media:title>
		</media:content>
	</item>
		<item>
		<title>Fix volume control in mpd on Ubuntu Jaunty 9.04</title>
		<link>http://daniel1992.wordpress.com/2009/10/24/fix-volume-control-in-mpd-on-ubuntu-jaunty-9-04/</link>
		<comments>http://daniel1992.wordpress.com/2009/10/24/fix-volume-control-in-mpd-on-ubuntu-jaunty-9-04/#comments</comments>
		<pubDate>Sat, 24 Oct 2009 20:50:01 +0000</pubDate>
		<dc:creator>daniel1992</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://daniel1992.wordpress.com/2009/10/24/fix-volume-control-in-mpd-on-ubuntu-jaunty-9-04/</guid>
		<description><![CDATA[I have mpd installed on my jaunty server. It works well, except that I found the volume control in my clients never worked. Reading around, I found a slightly cryptically mentioned solution. In your /etc/mpd.conf, uncomment the line that says mixer=software, then restart mpd (sudo /etc/init.d/mpd restart). All should be well!<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=daniel1992.wordpress.com&amp;blog=1848863&amp;post=205&amp;subd=daniel1992&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I have mpd installed on my jaunty server. It works well, except that I found the volume control in my clients never worked. </p>
<p>Reading around, I found a slightly cryptically mentioned solution. In your /etc/mpd.conf, uncomment the line that says mixer=software, then restart mpd (sudo /etc/init.d/mpd restart). All should be well!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/daniel1992.wordpress.com/205/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/daniel1992.wordpress.com/205/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/daniel1992.wordpress.com/205/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/daniel1992.wordpress.com/205/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/daniel1992.wordpress.com/205/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/daniel1992.wordpress.com/205/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/daniel1992.wordpress.com/205/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/daniel1992.wordpress.com/205/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/daniel1992.wordpress.com/205/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/daniel1992.wordpress.com/205/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/daniel1992.wordpress.com/205/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/daniel1992.wordpress.com/205/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/daniel1992.wordpress.com/205/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/daniel1992.wordpress.com/205/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=daniel1992.wordpress.com&amp;blog=1848863&amp;post=205&amp;subd=daniel1992&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://daniel1992.wordpress.com/2009/10/24/fix-volume-control-in-mpd-on-ubuntu-jaunty-9-04/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b8d751e644324dbe665e6cc4375ab1ff?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">daniel1992</media:title>
		</media:content>
	</item>
		<item>
		<title>Mobile development.</title>
		<link>http://daniel1992.wordpress.com/2009/08/16/mobile-development/</link>
		<comments>http://daniel1992.wordpress.com/2009/08/16/mobile-development/#comments</comments>
		<pubDate>Sun, 16 Aug 2009 06:30:11 +0000</pubDate>
		<dc:creator>daniel1992</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://daniel1992.wordpress.com/?p=201</guid>
		<description><![CDATA[I saw earlier on Smashing a list of things required to make and sell an iphone application. Here it is: Below is a list of items you’ll need (*starred items are required, the rest are nice-to-have’s): join the Apple iPhone Developer Program ($99) * get iPhone or iPod Touch * get an Intel-based Mac computer [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=daniel1992.wordpress.com&amp;blog=1848863&amp;post=201&amp;subd=daniel1992&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I saw earlier on  <a href="http://www.smashingmagazine.com/2009/08/11/how-to-create-your-first-iphone-application/">Smashing</a> a list of things required to make and sell an iphone application. Here it is:<br />
Below is a list of items you’ll need (*starred items are required, the rest are nice-to-have’s):</p>
<ul>
<li>join the Apple iPhone Developer Program ($99) *</li>
<li>get iPhone or iPod Touch *</li>
<li>get an Intel-based Mac computer with Mac OS X 10.5.5,</li>
<li>prepare a Non-Disclosure Agreement (here’s a sample) *</li>
<li>download and install the latest version of the iPhone SDK if you don’t already have it.</li>
<li>a spiral bound notebook*</li>
</ul>
<p>You then develop in their IDE and distribute it with their app store.<br />
I have correspondingly made my android app checklist:</p>
<ul>
<li> A computer. Win, Mac, or Linux.</li>
<li>The SDK (free).</li>
</ul>
<p>You then develop with any IDE, right down to nano if you want, and can distribute as easily as putting the file anywhere on the internet.</p>
<p>Hmm&#8230;</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/daniel1992.wordpress.com/201/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/daniel1992.wordpress.com/201/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/daniel1992.wordpress.com/201/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/daniel1992.wordpress.com/201/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/daniel1992.wordpress.com/201/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/daniel1992.wordpress.com/201/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/daniel1992.wordpress.com/201/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/daniel1992.wordpress.com/201/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/daniel1992.wordpress.com/201/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/daniel1992.wordpress.com/201/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/daniel1992.wordpress.com/201/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/daniel1992.wordpress.com/201/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/daniel1992.wordpress.com/201/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/daniel1992.wordpress.com/201/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=daniel1992.wordpress.com&amp;blog=1848863&amp;post=201&amp;subd=daniel1992&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://daniel1992.wordpress.com/2009/08/16/mobile-development/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b8d751e644324dbe665e6cc4375ab1ff?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">daniel1992</media:title>
		</media:content>
	</item>
		<item>
		<title>How to change desktops with a shell command or script?</title>
		<link>http://daniel1992.wordpress.com/2009/07/19/how-to-change-desktops-with-a-shell-command-or-script/</link>
		<comments>http://daniel1992.wordpress.com/2009/07/19/how-to-change-desktops-with-a-shell-command-or-script/#comments</comments>
		<pubDate>Mon, 20 Jul 2009 03:30:41 +0000</pubDate>
		<dc:creator>daniel1992</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://daniel1992.wordpress.com/2009/07/19/how-to-change-desktops-with-a-shell-command-or-script/</guid>
		<description><![CDATA[Does anyone know how to change desktops (in Compiz) with a shell command or script? I have been wanting this for a while, and would be cool to integrate with my new MX Revolution.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=daniel1992.wordpress.com&amp;blog=1848863&amp;post=200&amp;subd=daniel1992&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Does anyone know how to change desktops (in Compiz) with a shell command or script? I have been wanting this for a while, and would be cool to integrate with my new MX Revolution.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/daniel1992.wordpress.com/200/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/daniel1992.wordpress.com/200/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/daniel1992.wordpress.com/200/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/daniel1992.wordpress.com/200/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/daniel1992.wordpress.com/200/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/daniel1992.wordpress.com/200/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/daniel1992.wordpress.com/200/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/daniel1992.wordpress.com/200/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/daniel1992.wordpress.com/200/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/daniel1992.wordpress.com/200/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/daniel1992.wordpress.com/200/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/daniel1992.wordpress.com/200/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/daniel1992.wordpress.com/200/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/daniel1992.wordpress.com/200/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=daniel1992.wordpress.com&amp;blog=1848863&amp;post=200&amp;subd=daniel1992&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://daniel1992.wordpress.com/2009/07/19/how-to-change-desktops-with-a-shell-command-or-script/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b8d751e644324dbe665e6cc4375ab1ff?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">daniel1992</media:title>
		</media:content>
	</item>
		<item>
		<title>Resuming Posting</title>
		<link>http://daniel1992.wordpress.com/2009/06/27/resuming-posting/</link>
		<comments>http://daniel1992.wordpress.com/2009/06/27/resuming-posting/#comments</comments>
		<pubDate>Sat, 27 Jun 2009 19:38:45 +0000</pubDate>
		<dc:creator>daniel1992</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://daniel1992.wordpress.com/?p=192</guid>
		<description><![CDATA[I am bored, so I have decided to resume posting to my blog. It&#8217;s been a while. Now that I have my aforementioned Android phone, I can post from there as well. I will try. It may end up being all rants and such, but, hey, why not. I might as well.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=daniel1992.wordpress.com&amp;blog=1848863&amp;post=192&amp;subd=daniel1992&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I am bored, so I have decided to resume posting to my blog. It&#8217;s been a while. Now that I have my aforementioned Android phone, I can post from there as well. I will try.</p>
<p>It may end up being all rants and such, but, hey, why not. I might as well.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/daniel1992.wordpress.com/192/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/daniel1992.wordpress.com/192/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/daniel1992.wordpress.com/192/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/daniel1992.wordpress.com/192/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/daniel1992.wordpress.com/192/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/daniel1992.wordpress.com/192/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/daniel1992.wordpress.com/192/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/daniel1992.wordpress.com/192/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/daniel1992.wordpress.com/192/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/daniel1992.wordpress.com/192/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/daniel1992.wordpress.com/192/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/daniel1992.wordpress.com/192/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/daniel1992.wordpress.com/192/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/daniel1992.wordpress.com/192/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=daniel1992.wordpress.com&amp;blog=1848863&amp;post=192&amp;subd=daniel1992&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://daniel1992.wordpress.com/2009/06/27/resuming-posting/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b8d751e644324dbe665e6cc4375ab1ff?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">daniel1992</media:title>
		</media:content>
	</item>
		<item>
		<title>I have an android phone</title>
		<link>http://daniel1992.wordpress.com/2008/12/21/i-have-an-android-phone/</link>
		<comments>http://daniel1992.wordpress.com/2008/12/21/i-have-an-android-phone/#comments</comments>
		<pubDate>Mon, 22 Dec 2008 04:02:48 +0000</pubDate>
		<dc:creator>daniel1992</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://daniel1992.wordpress.com/2008/12/21/i-have-an-android-phone/</guid>
		<description><![CDATA[I just got an android phone, and it is awesome. About a million times more open than iphone plus background apps = perfect. Qwerty keyboard is nice too. Posted this to see how it works for blogging. I may start posting more often if I can do it from my cellphone&#8230;<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=daniel1992.wordpress.com&amp;blog=1848863&amp;post=190&amp;subd=daniel1992&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I just got an android phone, and it is awesome. About a million times more open than iphone plus background apps = perfect.</p>
<p>Qwerty keyboard is nice too.</p>
<p>Posted this to see how it works for blogging. I may start posting more often if I can do it from my cellphone&#8230;</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/daniel1992.wordpress.com/190/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/daniel1992.wordpress.com/190/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/daniel1992.wordpress.com/190/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/daniel1992.wordpress.com/190/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/daniel1992.wordpress.com/190/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/daniel1992.wordpress.com/190/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/daniel1992.wordpress.com/190/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/daniel1992.wordpress.com/190/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/daniel1992.wordpress.com/190/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/daniel1992.wordpress.com/190/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/daniel1992.wordpress.com/190/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/daniel1992.wordpress.com/190/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/daniel1992.wordpress.com/190/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/daniel1992.wordpress.com/190/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=daniel1992.wordpress.com&amp;blog=1848863&amp;post=190&amp;subd=daniel1992&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://daniel1992.wordpress.com/2008/12/21/i-have-an-android-phone/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b8d751e644324dbe665e6cc4375ab1ff?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">daniel1992</media:title>
		</media:content>
	</item>
		<item>
		<title>Why does the YouTube video player suck?</title>
		<link>http://daniel1992.wordpress.com/2008/10/08/why-does-the-youtube-video-player-suck/</link>
		<comments>http://daniel1992.wordpress.com/2008/10/08/why-does-the-youtube-video-player-suck/#comments</comments>
		<pubDate>Thu, 09 Oct 2008 04:36:31 +0000</pubDate>
		<dc:creator>daniel1992</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://daniel1992.wordpress.com/?p=186</guid>
		<description><![CDATA[These days, flash players can do amazing things. Look at Hulu, Veoh, and 5min&#8216;s incredible players. However, Youtube has used the same, basic, crappy flash player that they have for years. It&#8217;s big, ugly, and doesn&#8217;t even work well. It has A/V sync issues, can&#8217;t handle going to fullscreen and back, no transparency, all of [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=daniel1992.wordpress.com&amp;blog=1848863&amp;post=186&amp;subd=daniel1992&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>These days, flash players can do amazing things. Look at <a href="http://hulu.com">Hulu</a>, <a href="http://www.veoh.com/">Veoh</a>, and <a href="http://www.5min.com/">5min</a>&#8216;s incredible players. However, Youtube has used the same, basic, crappy flash player that they have for years. It&#8217;s big, ugly, and doesn&#8217;t even work well. It has A/V sync issues, can&#8217;t handle going to fullscreen and back, no transparency, all of the UI is visible all of the time.</p>
<p>Considering that the player is easily the most important part of the flash player experience, they really need to make a new player.</p>
<p>Not to mention the horrible video quality. Veoh and Hulu in hi-res is actually watchable full-screen, but youtube is horrible.</p>
<p>Gnome users, watch in Movie player! See <a href="http://lifehacker.com/376381/watch-youtube-clips-inside-gnomes-built+in-movie-player">lifehacker</a>. Don&#8217;t forget the Hi-def plugin. much more palatable, and faster as well. another plus is lack of idiotic comments.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/daniel1992.wordpress.com/186/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/daniel1992.wordpress.com/186/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/daniel1992.wordpress.com/186/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/daniel1992.wordpress.com/186/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/daniel1992.wordpress.com/186/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/daniel1992.wordpress.com/186/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/daniel1992.wordpress.com/186/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/daniel1992.wordpress.com/186/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/daniel1992.wordpress.com/186/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/daniel1992.wordpress.com/186/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/daniel1992.wordpress.com/186/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/daniel1992.wordpress.com/186/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/daniel1992.wordpress.com/186/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/daniel1992.wordpress.com/186/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=daniel1992.wordpress.com&amp;blog=1848863&amp;post=186&amp;subd=daniel1992&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://daniel1992.wordpress.com/2008/10/08/why-does-the-youtube-video-player-suck/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b8d751e644324dbe665e6cc4375ab1ff?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">daniel1992</media:title>
		</media:content>
	</item>
		<item>
		<title>Fix for can&#8217;t start graphical apps as admin.</title>
		<link>http://daniel1992.wordpress.com/2008/09/29/fix-for-cant-start-graphical-apps-as-admin/</link>
		<comments>http://daniel1992.wordpress.com/2008/09/29/fix-for-cant-start-graphical-apps-as-admin/#comments</comments>
		<pubDate>Tue, 30 Sep 2008 04:13:56 +0000</pubDate>
		<dc:creator>daniel1992</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://daniel1992.wordpress.com/?p=183</guid>
		<description><![CDATA[Earlier today I would get an error about not being able to read the users Xsession file or something when I tried to start any Administrator program from the menu. sudo worked fine, but gksudo (the graphical password entry thing) didn&#8217;t. Solution: full root partition. Tips to free up space: Restart. This clears /tmp sudo [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=daniel1992.wordpress.com&amp;blog=1848863&amp;post=183&amp;subd=daniel1992&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Earlier today I would get an error about not being able to read the users Xsession file or something when I tried to start any Administrator program from the menu. sudo worked fine, but gksudo (the graphical password entry thing) didn&#8217;t.</p>
<p><strong>Solution: full root partition.</strong></p>
<p>Tips to free up space:</p>
<ol>
<li>Restart. This clears /tmp</li>
<li>sudo apt-get autoremove &amp;&amp; sudo apt-get clean (remove cached and unnecessary packages)</li>
<li>check /var/tmp</li>
<li>Maybe uninstall a hefty program or two. Games take up a *lot* of space.</li>
<li>Don&#8217;t be like me and make a 10gb / partition on a terabyte hard drive [facehand].</li>
</ol>
<p>Simple!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/daniel1992.wordpress.com/183/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/daniel1992.wordpress.com/183/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/daniel1992.wordpress.com/183/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/daniel1992.wordpress.com/183/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/daniel1992.wordpress.com/183/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/daniel1992.wordpress.com/183/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/daniel1992.wordpress.com/183/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/daniel1992.wordpress.com/183/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/daniel1992.wordpress.com/183/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/daniel1992.wordpress.com/183/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/daniel1992.wordpress.com/183/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/daniel1992.wordpress.com/183/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/daniel1992.wordpress.com/183/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/daniel1992.wordpress.com/183/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=daniel1992.wordpress.com&amp;blog=1848863&amp;post=183&amp;subd=daniel1992&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://daniel1992.wordpress.com/2008/09/29/fix-for-cant-start-graphical-apps-as-admin/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b8d751e644324dbe665e6cc4375ab1ff?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">daniel1992</media:title>
		</media:content>
	</item>
		<item>
		<title>Easy Auto-Update Sunlight Wallpaper</title>
		<link>http://daniel1992.wordpress.com/2008/08/21/easy-auto-update-sunlight-wallpaper/</link>
		<comments>http://daniel1992.wordpress.com/2008/08/21/easy-auto-update-sunlight-wallpaper/#comments</comments>
		<pubDate>Fri, 22 Aug 2008 02:45:37 +0000</pubDate>
		<dc:creator>daniel1992</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://daniel1992.wordpress.com/?p=172</guid>
		<description><![CDATA[I used a post at Lifehacker to create my own, auto-updating, sunlight tracking wallpaper. It is quite easy. It assumes that your Pictures directory is located at ~/Pictures. Change it in the script if yours is different. Just put it anywhere and execute it. If it doesn&#8217;t execute, just chmod +x changer. Here is the [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=daniel1992.wordpress.com&amp;blog=1848863&amp;post=172&amp;subd=daniel1992&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I used a post at Lifehacker to create my own, auto-updating, sunlight tracking wallpaper.</p>
<p>It is quite easy. It assumes that your Pictures directory is located at ~/Pictures. Change it in the script if yours is different. Just put it anywhere and execute it. If it doesn&#8217;t execute, just chmod +x changer.</p>
<p>Here is the script:</p>
<p><code>#!/bin/bash<br />
cd ~/Data/Pictures/Wallpapers/<br />
if [ !-e  world_sunlight_map_rectangular.jpg ]; then<br />
wget http://www.opentopia.com/images/cams/world_sunlight_map_rectangular.jpg<br />
fi<br />
wget http://www.opentopia.com/images/cams/world_sunlight_map_rectangular.jpg &amp;&amp; rm world_sunlight_map_rectangular.jpg &amp;&amp; mv world_sunlight_map_rectangular.jpg.1 world_sunlight_map_rectangular.jpg &amp;&amp; echo "Finished."<br />
</code></p>
<p>Save it in your home directory.</p>
<p>Use the normal wallpaper selector to set ~/Pictures/world_sunlight_map_rectangular.jpg to your wallpaper. It&#8217;s a pretty big image, so most screens will look fine with it. If you want to do anything else to it, I suggest you look into imagemagick or phatch. Note you will need to put the image manipulation in the script so it is run on the image every time you download it.</p>
<p>Then, install gnome-schedule from the repositories. It will add System &gt; Preferences &gt; Scheduled Tasks, where you need to add a new, recurrent task that runs changer every hour. After that, it should auto-update itself with no help from you.</p>
<p>It really is a nice effect. Since Gnome-Schedule uses cron, the linux job scheduler, doing this will add no background processes to your computer, or even slow it down in any way.</p>
<p>Most systems can get some sort of program that does this. Now we have one, and all it needs is one file!</p>
<p>I intend to create a script that does the installation at some point in time. I might even package it in a .deb!</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/daniel1992.wordpress.com/172/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/daniel1992.wordpress.com/172/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/daniel1992.wordpress.com/172/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/daniel1992.wordpress.com/172/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/daniel1992.wordpress.com/172/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/daniel1992.wordpress.com/172/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/daniel1992.wordpress.com/172/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/daniel1992.wordpress.com/172/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/daniel1992.wordpress.com/172/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/daniel1992.wordpress.com/172/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/daniel1992.wordpress.com/172/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/daniel1992.wordpress.com/172/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/daniel1992.wordpress.com/172/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/daniel1992.wordpress.com/172/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/daniel1992.wordpress.com/172/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/daniel1992.wordpress.com/172/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=daniel1992.wordpress.com&amp;blog=1848863&amp;post=172&amp;subd=daniel1992&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://daniel1992.wordpress.com/2008/08/21/easy-auto-update-sunlight-wallpaper/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b8d751e644324dbe665e6cc4375ab1ff?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">daniel1992</media:title>
		</media:content>
	</item>
		<item>
		<title>The easiest way to rip DVDs ever.</title>
		<link>http://daniel1992.wordpress.com/2008/07/22/the-easiest-way-to-rip-dvds-ever/</link>
		<comments>http://daniel1992.wordpress.com/2008/07/22/the-easiest-way-to-rip-dvds-ever/#comments</comments>
		<pubDate>Tue, 22 Jul 2008 17:04:02 +0000</pubDate>
		<dc:creator>daniel1992</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://daniel1992.wordpress.com/?p=168</guid>
		<description><![CDATA[I like to back up my DVDs for ease of watching on my computer. This was hindered when I switched to Linux, as I had no idea how to do it on Linux. Now, after a while, I have come up with the exact perfect way to rip DVDs. This guide assumes you have done [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=daniel1992.wordpress.com&amp;blog=1848863&amp;post=168&amp;subd=daniel1992&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I like to back up my DVDs for ease of watching on my computer. This was hindered when I switched to Linux, as I had no idea how to do it on Linux. Now, after a while, I have come up with the exact perfect way to rip DVDs.</p>
<p>This guide assumes you have done nothing to begin. (I think! I&#8217;ve done a lot to my computer, so no guarantees!)</p>
<p><strong>Step 1: Enable DVD Playback</strong></p>
<ul>
<li>Add the Medibuntu repository to get libdvdcss2. [<a href="https://help.ubuntu.com/community/Medibuntu">link</a>]</li>
<li>now, install libdvdcss2 from medibuntu and libdvdread3.</li>
<li>now, open a terminal and run &#8216;sudo /usr/share/doc/libdvdread3/install-css.sh&#8217; That enables the DVD playback.</li>
<li>Download the Handbrake CLI from [<a href="http://handbrake.fr/?article=download">here</a>]. Make sure to get the Linux one. Extract it to some folder. Your home directory will work just fine.</li>
<li>Now you should be ready.</li>
</ul>
<p><strong>Step 2: Ripping. </strong>(this is the one you do every time you want to rip a DVD)</p>
<ul>
<li>Insert the DVD. If a movie player comes up, close it.</li>
<li>Go to a terminal. Run &#8216;./HandBrakeCLI -i /media/cdrom0/ -o DesiredFileName.mp4&#8242;. This assumes that Handbrake is extracted to your home directory and you are in your home directory. Also it assumes your DVD drive is on /media/cdrom0/. I t may be cdrom, or something else. I only tested it by myself. Put your desired filename (plus .mp4 at the end), as the final argument.</li>
</ul>
<p>This uses the Default Handbrake preset. It&#8217;s pretty quick, comes out to 700mb-1.3gb, with excellent quality. It should autocrop as well. For other presets and advanced options, see the <a href="http://trac.handbrake.fr/wiki/CLIGuide">documentation</a>. I personally like the default. If you have an ipod, there are presets for that as well so it will play better and at a smaller size on it.</p>
<p>Each rip takes a while, depending on your processor. My Intel Core2 Duo 2.0gHz laptop can rip a movie in about half an hour. YMMV.</p>
<p>This happens to take around half the time of doing this the easiest way I found on Windows.</p>
<p>Daniel</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/daniel1992.wordpress.com/168/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/daniel1992.wordpress.com/168/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/daniel1992.wordpress.com/168/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/daniel1992.wordpress.com/168/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/daniel1992.wordpress.com/168/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/daniel1992.wordpress.com/168/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/daniel1992.wordpress.com/168/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/daniel1992.wordpress.com/168/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/daniel1992.wordpress.com/168/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/daniel1992.wordpress.com/168/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/daniel1992.wordpress.com/168/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/daniel1992.wordpress.com/168/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/daniel1992.wordpress.com/168/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/daniel1992.wordpress.com/168/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/daniel1992.wordpress.com/168/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/daniel1992.wordpress.com/168/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=daniel1992.wordpress.com&amp;blog=1848863&amp;post=168&amp;subd=daniel1992&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://daniel1992.wordpress.com/2008/07/22/the-easiest-way-to-rip-dvds-ever/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b8d751e644324dbe665e6cc4375ab1ff?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">daniel1992</media:title>
		</media:content>
	</item>
	</channel>
</rss>
