<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Jens Olsson</title>
	<atom:link href="http://jens.yelles.se/feed/" rel="self" type="application/rss+xml" />
	<link>http://jens.yelles.se</link>
	<description>My Underground Development</description>
	<lastBuildDate>Thu, 18 Mar 2010 20:18:15 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Strtoupper Å Ä Ö fix UTF-8</title>
		<link>http://jens.yelles.se/2010/03/18/strtoupper-a-a-o-fix-utf-8/</link>
		<comments>http://jens.yelles.se/2010/03/18/strtoupper-a-a-o-fix-utf-8/#comments</comments>
		<pubDate>Thu, 18 Mar 2010 20:18:15 +0000</pubDate>
		<dc:creator>Jens Olsson</dc:creator>
				<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[mb_stroupper]]></category>
		<category><![CDATA[strtoupper]]></category>
		<category><![CDATA[str_replace]]></category>
		<category><![CDATA[UTF-8]]></category>

		<guid isPermaLink="false">http://jens.yelles.se/?p=204</guid>
		<description><![CDATA[As you might know the Stroupper dont work with special chars like Å Ä Ö. Also its not working to do str_replace sice Å Ä Ö is not supported there. But there is a way to do this easy with mb_stroupper and use UTF-8, see my example:
$string = &#8220;åäö&#8221;;
$string=mb_strtoupper($string, &#8220;utf-8&#8243;);
echo $string;
Enjoy!
$string=mb_strtoupper($string, &#8220;utf-8&#8243;);
]]></description>
			<content:encoded><![CDATA[<p>As you might know the <strong>Stroupper </strong>dont work with special chars like <strong>Å Ä Ö</strong>. Also its not working to do <strong>str_replace</strong> sice Å Ä Ö is not supported there. But there is a way to do this easy with mb_stroupper and use UTF-8, see my example:</p>
<blockquote><p>$string = &#8220;åäö&#8221;;</p>
<p>$string=mb_strtoupper($string, &#8220;utf-8&#8243;);</p>
<p>echo $string;</p></blockquote>
<p>Enjoy!</p>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow: hidden;">$string=mb_strtoupper($string, &#8220;utf-8&#8243;);</div>
]]></content:encoded>
			<wfw:commentRss>http://jens.yelles.se/2010/03/18/strtoupper-a-a-o-fix-utf-8/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Backup and restore MySQL tables/database</title>
		<link>http://jens.yelles.se/2010/03/15/backup-and-restore-mysql-tablesdatabase/</link>
		<comments>http://jens.yelles.se/2010/03/15/backup-and-restore-mysql-tablesdatabase/#comments</comments>
		<pubDate>Mon, 15 Mar 2010 21:04:23 +0000</pubDate>
		<dc:creator>Jens Olsson</dc:creator>
				<category><![CDATA[HowTo]]></category>
		<category><![CDATA[Backup]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[Restore]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://jens.yelles.se/?p=201</guid>
		<description><![CDATA[If you have a lagre database that you will take backup on you might find it hard to do so with example phpmyadmin. MySQL made commando for this so you easy can do this in your terminal on both Windows and Linux. I will first go with Linux. OBS: The commando are the same for [...]]]></description>
			<content:encoded><![CDATA[<p>If you have a lagre database that you will take backup on you might find it hard to do so with example phpmyadmin. MySQL made commando for this so you easy can do this in your terminal on both Windows and Linux. I will first go with Linux. OBS: The commando are the same for both Linux and Windows.</p>
<p><strong>MySQLdump commando</strong></p>
<blockquote><p>mysqldump -u username -ppassword database_name table_name &gt; /your/way/to/sql/file/file_name.sql</p></blockquote>
<p><strong>SQL for restore table/database</strong></p>
<blockquote><p>mysql -u username -ppassword database_name &lt; /your/way/to/sql/file/file_name.sql</p></blockquote>
<p>If you want to backup full database just dont write the table name on first commando.</p>
<p>If you use Windows you have to go to you bin folder who is in your mysql folder. For example in EasyPHP the way is:</p>
<p>c:\program\easyphp-folder\mysql\bin</p>
<p>From there run the commando. Also if you did not understand, you first run the location in simple CMD and then run the commando.</p>
]]></content:encoded>
			<wfw:commentRss>http://jens.yelles.se/2010/03/15/backup-and-restore-mysql-tablesdatabase/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>FTP server Ubuntu with graphic</title>
		<link>http://jens.yelles.se/2010/01/02/ftp-server-ubuntu-with-graphic/</link>
		<comments>http://jens.yelles.se/2010/01/02/ftp-server-ubuntu-with-graphic/#comments</comments>
		<pubDate>Sat, 02 Jan 2010 18:15:19 +0000</pubDate>
		<dc:creator>Jens Olsson</dc:creator>
				<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[FTP]]></category>
		<category><![CDATA[gproftpd]]></category>
		<category><![CDATA[server]]></category>

		<guid isPermaLink="false">http://jens.yelles.se/?p=195</guid>
		<description><![CDATA[GproFTPD is a good graphic based FTP server for Ubuntu. For install simpley type:
sudo apt-get update
sudo apt-get install gproftpd.
After installation just start the program by: sudo gproftpd and setup your FTP server and users.

]]></description>
			<content:encoded><![CDATA[<p>GproFTPD is a good graphic based FTP server for Ubuntu. For install simpley type:</p>
<p>sudo apt-get update</p>
<p>sudo apt-get install gproftpd.</p>
<p>After installation just start the program by: sudo gproftpd and setup your FTP server and users.</p>
<p><a href="http://jens.yelles.se/wp-content/uploads/2010/01/Screenshot2.png"><img class="alignleft size-medium wp-image-196" title="Screenshot2" src="http://jens.yelles.se/wp-content/uploads/2010/01/Screenshot2-300x262.png" alt="Screenshot2" width="300" height="262" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://jens.yelles.se/2010/01/02/ftp-server-ubuntu-with-graphic/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Unexpected end of mysql &#8211; EasyPHP</title>
		<link>http://jens.yelles.se/2009/11/02/unexpected-end-of-mysql-easy-php/</link>
		<comments>http://jens.yelles.se/2009/11/02/unexpected-end-of-mysql-easy-php/#comments</comments>
		<pubDate>Mon, 02 Nov 2009 16:48:38 +0000</pubDate>
		<dc:creator>Jens Olsson</dc:creator>
				<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[EasyPHP]]></category>
		<category><![CDATA[MySQL]]></category>

		<guid isPermaLink="false">http://jens.yelles.se/?p=190</guid>
		<description><![CDATA[When I was running EasyPHP on my Vista machine I got error:
unexpected end of mysql
To solve this just quit easyPHP and then right click on easyphp.exe and run as administrator. Hope it helped. Dident find this trick on google so perhaps you did  
Good luck!
]]></description>
			<content:encoded><![CDATA[<p>When I was running EasyPHP on my Vista machine I got error:</p>
<blockquote><p>unexpected end of mysql</p></blockquote>
<p>To solve this just quit easyPHP and then right click on easyphp.exe and run as administrator. Hope it helped. Dident find this trick on google so perhaps you did <img src='http://jens.yelles.se/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>Good luck!</p>
]]></content:encoded>
			<wfw:commentRss>http://jens.yelles.se/2009/11/02/unexpected-end-of-mysql-easy-php/feed/</wfw:commentRss>
		<slash:comments>19</slash:comments>
		</item>
		<item>
		<title>Skype in your Nokia N97</title>
		<link>http://jens.yelles.se/2009/10/19/skype-in-your-nokia-n97/</link>
		<comments>http://jens.yelles.se/2009/10/19/skype-in-your-nokia-n97/#comments</comments>
		<pubDate>Mon, 19 Oct 2009 07:57:58 +0000</pubDate>
		<dc:creator>Jens Olsson</dc:creator>
				<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[N97]]></category>
		<category><![CDATA[Nokia]]></category>
		<category><![CDATA[Skype]]></category>

		<guid isPermaLink="false">http://jens.yelles.se/?p=188</guid>
		<description><![CDATA[Now I finally got my new Nokia N97 and I really like this &#8220;little&#8221; phone! But since I am as you already know a huge fan of Skype I just had to install it on my new phone. But skype have not yet created a offical version of Skype to Nokia N97 so I decide [...]]]></description>
			<content:encoded><![CDATA[<p>Now I finally got my new Nokia N97 and I really like this &#8220;little&#8221; phone! But since I am as you already know a huge fan of Skype I just had to install it on my new phone. But skype have not yet created a offical version of Skype to Nokia N97 so I decide to install a multi msg client and found out that Fring is the best working one! It support skype-out witch I really like. Also have some other nice furtures! Try it out if you are looking for Skype client for Nokia N97!</p>
]]></content:encoded>
			<wfw:commentRss>http://jens.yelles.se/2009/10/19/skype-in-your-nokia-n97/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Skype on Ubuntu, Linux</title>
		<link>http://jens.yelles.se/2009/10/01/skype-on-ubuntu-linux/</link>
		<comments>http://jens.yelles.se/2009/10/01/skype-on-ubuntu-linux/#comments</comments>
		<pubDate>Thu, 01 Oct 2009 22:13:03 +0000</pubDate>
		<dc:creator>Jens Olsson</dc:creator>
				<category><![CDATA[Reviews]]></category>
		<category><![CDATA[Skype]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://jens.yelles.se/?p=182</guid>
		<description><![CDATA[I just have to thanks skype that they made a version for Ubuntu. Its very importent to me since I am support on telephone by skype daily and need it to run, and ofcourse work&#8230; The sad thing about skype on Ubuntu is that it is not that developed as it is on Windows. Perhaps [...]]]></description>
			<content:encoded><![CDATA[<p>I just have to thanks skype that they made a version for Ubuntu. Its very importent to me since I am support on telephone by skype daily and need it to run, and ofcourse work&#8230; The sad thing about skype on Ubuntu is that it is not that developed as it is on Windows. Perhaps it makes seance but still, very frustrating. Some times when I get a call or even when I call people the program is getting some random error and the call just dismiss and you have to kill the process and start it again before it works witch can be little enjoying. The same problem also happens when you are writing with someone, so I would be very glad if they might fix this. Another problem is that is pretty difficult to use your USB-microphone on Skype since it do not catch new hardware. So atm I am using my pre installed microphone on my laptop witch is not good at all.</p>
<p>So, overall I am glad that is exist but still&#8230; please try to upgrade it very soon, I need it!</p>
<p>Looking for download link? Just go to www.skype.com</p>
]]></content:encoded>
			<wfw:commentRss>http://jens.yelles.se/2009/10/01/skype-on-ubuntu-linux/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Skype on Ipod touch</title>
		<link>http://jens.yelles.se/2009/09/08/skype-on-ipod-touch/</link>
		<comments>http://jens.yelles.se/2009/09/08/skype-on-ipod-touch/#comments</comments>
		<pubDate>Tue, 08 Sep 2009 14:44:38 +0000</pubDate>
		<dc:creator>Jens Olsson</dc:creator>
				<category><![CDATA[Blog News]]></category>
		<category><![CDATA[Ipod]]></category>
		<category><![CDATA[Skype]]></category>

		<guid isPermaLink="false">http://jens.yelles.se/?p=179</guid>
		<description><![CDATA[I have just discovered that you can use Skype to your Ipod touch, and ofcource you have to buy a microphone to it. But since I never tried it I am interested in what you, visitor, have for experience of this. Is there any microphone that you can recommend to me? Do it work with [...]]]></description>
			<content:encoded><![CDATA[<p>I have just discovered that you can use Skype to your Ipod touch, and ofcource you have to buy a microphone to it. But since I never tried it I am interested in what you, visitor, have for experience of this. Is there any microphone that you can recommend to me? Do it work with regular microphones <a href="http://jens.yelles.se/wp-content/uploads/2009/09/Skype-iPod-Touch.jpg"><img class="alignleft size-medium wp-image-180" title="Skype-iPod-Touch" src="http://jens.yelles.se/wp-content/uploads/2009/09/Skype-iPod-Touch-238x300.jpg" alt="Skype-iPod-Touch" width="238" height="300" /></a>or do I need to buy a specific one, for Ipod? Also, it works on every Ipod touch? I tried Skype without microphone and it worked excellent! Please give me your thoughts!</p>
]]></content:encoded>
			<wfw:commentRss>http://jens.yelles.se/2009/09/08/skype-on-ipod-touch/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Add printer in Ubuntu, Linux</title>
		<link>http://jens.yelles.se/2009/08/29/add-printer-in-ubuntu-linux/</link>
		<comments>http://jens.yelles.se/2009/08/29/add-printer-in-ubuntu-linux/#comments</comments>
		<pubDate>Sat, 29 Aug 2009 22:55:57 +0000</pubDate>
		<dc:creator>Jens Olsson</dc:creator>
				<category><![CDATA[Tips & Tricks]]></category>

		<guid isPermaLink="false">http://jens.yelles.se/?p=177</guid>
		<description><![CDATA[Little tips how to add network or regular printer to Ubuntu. Go to System&#62;Admin&#62;Printers.
Then New &#62; Printer. Here you choose if you have a network or regular (ex USB). If you have network just enter the IP address and then serch. After you have to select printer for install drivers. All mine networks printer have [...]]]></description>
			<content:encoded><![CDATA[<p>Little tips how to add network or regular printer to Ubuntu. Go to System&gt;Admin&gt;Printers.</p>
<p>Then New &gt; Printer. Here you choose if you have a network or regular (ex USB). If you have network just enter the IP address and then serch. After you have to select printer for install drivers. All mine networks printer have worked very good so far, only used HP but any way <img src='http://jens.yelles.se/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Then finish and print! Have fun.</p>
]]></content:encoded>
			<wfw:commentRss>http://jens.yelles.se/2009/08/29/add-printer-in-ubuntu-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Install font in Ubuntu, Linux</title>
		<link>http://jens.yelles.se/2009/08/17/install-font-in-ubuntu-linux/</link>
		<comments>http://jens.yelles.se/2009/08/17/install-font-in-ubuntu-linux/#comments</comments>
		<pubDate>Mon, 17 Aug 2009 11:26:44 +0000</pubDate>
		<dc:creator>Jens Olsson</dc:creator>
				<category><![CDATA[HowTo]]></category>
		<category><![CDATA[font]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://jens.yelles.se/?p=173</guid>
		<description><![CDATA[This is how i did when i needed to add some windows fonts under Ubuntu.
Go to your home folder, filesystem &#62; home &#62; yourusername.
Now show hidden files and folders by press: ctrl+h
Look for .fonts, if its not exist just make a new folder with name: .fonts
Just drag your ttf files into this folder. If you [...]]]></description>
			<content:encoded><![CDATA[<p>This is how i did when i needed to add some windows fonts under Ubuntu.</p>
<p>Go to your home folder, filesystem &gt; home &gt; yourusername.</p>
<p>Now show hidden files and folders by press: ctrl+h</p>
<p>Look for .fonts, if its not exist just make a new folder with name: .fonts</p>
<p>Just drag your ttf files into this folder. If you want to try just empty your font cash but i had to restart before it worked so I recommend you to do it aswell.</p>
<p>Hope it helped <img src='http://jens.yelles.se/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://jens.yelles.se/2009/08/17/install-font-in-ubuntu-linux/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>.local domain message Ubuntu, Linux</title>
		<link>http://jens.yelles.se/2009/08/02/local-domain-message-ubuntu-linux/</link>
		<comments>http://jens.yelles.se/2009/08/02/local-domain-message-ubuntu-linux/#comments</comments>
		<pubDate>Sun, 02 Aug 2009 15:19:15 +0000</pubDate>
		<dc:creator>Jens Olsson</dc:creator>
				<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://jens.yelles.se/?p=171</guid>
		<description><![CDATA[I was getting a message when i connected to my wireless network that said I hade .local domain thats not recommended. To get this dissapere I just wrote this two command into the terminal and rebooted. After that it worked fine:
sudo sed -i -e'/AVAHI_DAEMON_DETECT_LOCAL/s/1/0/' /etc/default/avahi-daemon
sudo service avahi-daemon start
Did see it on: http://ubuntu-se.org/phpBB3/viewtopic.php?f=17&#38;t=41977&#38;hilit=dom%C3%A4n#p340853
Thanks!
]]></description>
			<content:encoded><![CDATA[<p>I was getting a message when i connected to my wireless network that said I hade .local domain thats not recommended. To get this dissapere I just wrote this two command into the terminal and rebooted. After that it worked fine:</p>
<blockquote><p><code>sudo sed -i -e'/AVAHI_DAEMON_DETECT_LOCAL/s/1/0/' /etc/default/avahi-daemon<br />
sudo service avahi-daemon start</code></p></blockquote>
<p>Did see it on: http://ubuntu-se.org/phpBB3/viewtopic.php?f=17&amp;t=41977&amp;hilit=dom%C3%A4n#p340853</p>
<p>Thanks!</p>
]]></content:encoded>
			<wfw:commentRss>http://jens.yelles.se/2009/08/02/local-domain-message-ubuntu-linux/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
	</channel>
</rss>
