<?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>nicam.ch</title>
	<atom:link href="http://nicam.ch/feed/" rel="self" type="application/rss+xml" />
	<link>http://nicam.ch</link>
	<description>nicam&#039;s Blog</description>
	<lastBuildDate>Sun, 25 Sep 2011 12:52:34 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Time Machine with Netatalk on Lion</title>
		<link>http://nicam.ch/ubuntu/time-machine-with-netatalk-on-lion/</link>
		<comments>http://nicam.ch/ubuntu/time-machine-with-netatalk-on-lion/#comments</comments>
		<pubDate>Sun, 25 Sep 2011 12:42:48 +0000</pubDate>
		<dc:creator>nicam</dc:creator>
				<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://nicam.ch/?p=182</guid>
		<description><![CDATA[After the OS X Lion upgrade I couldn&#8217;t get my Time Machine to work with my Ubuntu based Nas. It turns out Apple bumped the required AFP commands to make it work with TimeMachine. You need AFP 2.2 under Ubuntu to make it work. As I was to lazy to compile it myself I found [...]]]></description>
			<content:encoded><![CDATA[<p>After the OS X Lion upgrade I couldn&#8217;t get my Time Machine to work with my Ubuntu based Nas. It turns out Apple bumped the required AFP commands to make it work with TimeMachine. You need AFP 2.2 under Ubuntu to make it work. As I was to lazy to compile it myself I found a easier solution.</p>
<pre>sudo add-apt-repository ppa:stefanor/ppa
sudo apt-get update
sudo apt-get install netatalk</pre>
<p>Afterwards your TimeMachine should work again.</p>
<p>If you can&#8217;t see your TimeMachine Share in the Disk Selection of TimeMachine make sure you executed the following command:</p>
<pre>defaults write com.apple.systempreferences TMShowUnsupportedNetworkVolumes 1</pre>
<pre>Bonus:</pre>
<p>If you want to limit the size Time Machine will use just append volsi<wbr>zelimit:500000 to your Time Machine share in /etc/netatalk/AppleVolumes.def<wbr>ault</wbr></wbr></p>
<p>500000 is 500 GB</p>
<p><strong>Example of my /etc/netatalk/AppleVolumes.def</strong><wbr><strong>ault:</strong></wbr></p>
<pre>/media/nas/TimeMachine/ TimeMachine options:tm,usedots,upriv,volsizelimit:500000</pre>
 <img src="http://nicam.ch/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=182" width="1" height="1" style="display: none;" />]]></content:encoded>
			<wfw:commentRss>http://nicam.ch/ubuntu/time-machine-with-netatalk-on-lion/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Offline storing dynamic content</title>
		<link>http://nicam.ch/js/offline-storing-dynamic-content/</link>
		<comments>http://nicam.ch/js/offline-storing-dynamic-content/#comments</comments>
		<pubDate>Mon, 05 Sep 2011 20:29:57 +0000</pubDate>
		<dc:creator>nicam</dc:creator>
				<category><![CDATA[JS]]></category>

		<guid isPermaLink="false">http://nicam.ch/?p=169</guid>
		<description><![CDATA[As you probably know we&#8217;re at liip are doing the HTML5 based Webapps. Now our customer wishes to have his iPhone / iPad HTML5 to be accessible offline. As I found this topic super interesting I started writing a proposal how in my opinion this goal could be achieved best. As our content is highly [...]]]></description>
			<content:encoded><![CDATA[<p>As you probably know we&#8217;re at liip are doing the HTML5 based Webapps. Now our customer wishes to have his iPhone / iPad HTML5 to be accessible offline.</p>
<p>As I found this topic super interesting I started writing a proposal how in my opinion this goal could be achieved best. As our content is highly dynamic (news articles) the normal html5 cache manifest just won&#8217;t cut it.</p>
<p>Off course we will store css, js and static images in the cache manifest. But from what I read it is just not the right place for highly dynamic content.</p>
<p>Now let&#8217;s cut to the cheese and come to my plan:</p>
<h2>Caching the Page</h2>
<p>Responses from the backend will be stored by their url in the local storage. Example:</p>
<pre>key =&gt; /2011/09/05/schweiz
value =&gt; &lt;html&gt;&lt;body&gt;foo bar page content&lt;/body&gt;&lt;/html&gt;</pre>
<p>We wrap the YUI IO Object and upon each request we check if the requested URL is not already stored in our local storage. If so we will call the callback function directly and feed it the response from the local storage. That way the user will have a super fast experience if the response is already in the cache.</p>
<h2>Caching the Images</h2>
<p>Caching the images is another problem as the browser gets their content on his own. They also get stored by their path in the local storage. Example:</p>
<pre>key =&gt; /image/large_cropped/article/2011/09/05/N_IVTZU/image/IWIGD-ein-davoser-als-ehrenbuerger-des-suedsudans</pre>
<p>The value in this case needs to be base64 encoded value of the binary stream. The backend image API will offer the option to request the image base64 encoded rather than just returning the normal image.</p>
<p>The pictures nodes that are not fed by the cache manifest won&#8217;t have a src tag anymore on the iPad / iPhone view. Their url is stored in some other attribute. In this example I&#8217;ll use base64Src=&#8221;" as the attribute. This will prevent the browser from loading the pictures whenever it&#8217;s actually online. That way we prevent the browser from fetching content we already have.</p>
<p>Once a request is loaded / delivered from the cache, we will loop through all the <img alt="" /> tags and populate the images. To do that we can simple read the base64Src attribute. If they&#8217;re not yet cached we will request them through XHR. Afterwards we can fill the images with a little javascript trick:</p>
<pre>document.getElementById("hero-graphic").src='data:image/jpeg;base64,' +
localStorage.getItem('/image/large_cropped/article/2011/09/05/N_IVTZU/image/IWIGD-ein-davoser-als-ehrenbuerger-des-suedsudans')</pre>
<h2>Prefetching</h2>
<p>All this fancy caching won&#8217;t give much benefit if we don&#8217;t build a prefetching mechanism. Once the page is fully loaded and in a somewhat &#8220;idle&#8221; state we will start prefetching content.</p>
<p>To know what should be prefetched, we will request a list from the backend which contains the urls of all pages that need to be prefetched as well as all the necessary images. Doing it like that gives a few very nice possibilities:</p>
<ul>
<li>The backend is in control which pages are stored localy, so it can easily change every day.</li>
<li>We fetch content sequentially, this means in case of interruption the user doesn&#8217;t lose all of his download, just the data from the currently active request.</li>
<li>As we already know how many articles and images we have to fetch we can calculate a quite accurate progress bar</li>
<li>We have the possibility to pause the downloads at any time. The user would only lose the current request.</li>
</ul>
<p>This whole approach would give us a solid prefetching without having to touch much of existing code. We can also implement nice UI features like the ability to see the download status as well as making it configurable how much content should be stored.</p>
<p>The only problem I see currently is that we don&#8217;t have a way to tell if the iPhone / iPad is online or offline. We could try to detect that based on the IP the request has in the backend or in the time it takes to prefetch the first article. Sadly there&#8217;s no isWifi boolean exposed to javascript as far as i know.</p>
<p>What do you think about it? Any comments, corrections or better approaches are appreciated.</p>
 <img src="http://nicam.ch/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=169" width="1" height="1" style="display: none;" />]]></content:encoded>
			<wfw:commentRss>http://nicam.ch/js/offline-storing-dynamic-content/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Enable JsLint in Sublime Text 2</title>
		<link>http://nicam.ch/osx/enable-jslint-in-sublime-text-2/</link>
		<comments>http://nicam.ch/osx/enable-jslint-in-sublime-text-2/#comments</comments>
		<pubDate>Wed, 20 Jul 2011 20:15:51 +0000</pubDate>
		<dc:creator>nicam</dc:creator>
				<category><![CDATA[OS X]]></category>

		<guid isPermaLink="false">http://nicam.ch/?p=157</guid>
		<description><![CDATA[I develop quite a lot javascript these days and a perfect tool to ensure code quality is JSLint. Back then I had it integrated into TextMate, the same can be done to Sublime Text 2 through it&#8217;s build Environments. I&#8217;m going to show you how to do it: 1. Create a new Build Environment in [...]]]></description>
			<content:encoded><![CDATA[<p>I develop quite a lot javascript these days and a perfect tool to ensure code quality is JSLint. Back then I had it integrated into TextMate, the same can be done to Sublime Text 2 through it&#8217;s build Environments.</p>
<p>I&#8217;m going to show you how to do it:</p>
<h2>1. Create a new Build Environment in Sublime Text:</h2>
<p><a href="http://nicam.ch/wp-content/uploads/2011/07/sublime.jpg" rel="lightbox[157]"><img class="aligncenter size-full wp-image-158" title="sublime" src="http://nicam.ch/wp-content/uploads/2011/07/sublime.jpg" alt="" width="449" height="360" /></a></p>
<p>Afterwards a file will open, paste the following text into it:</p>
<pre>{
"cmd": ["java", "org.mozilla.javascript.tools.shell.Main", "/Users/<strong>YOURUSERNAME</strong>/Library/JSLint/jslint.js", "$file"],
"selector": "*.js"
}</pre>
<p>Save the file at this Location:</p>
<pre>/Users/<strong>YOURUSERNAME</strong>/Library/Application Support/Sublime Text 2/Packages/User</pre>
<p>Replace <strong>YOURUSERNAME</strong> with your username e.g. nicam</p>
<h2>2. Install Rhino on your system</h2>
<pre><span style="font-family: Consolas, Monaco, 'Courier New', Courier, monospace; line-height: 18px; white-space: pre;">$ curl ftp://ftp.mozilla.org/pub/mozilla.org/js/rhino1_7R3.zip &gt; /tmp/rhino.zip</span></pre>
<pre>$ cd /tmp</pre>
<pre>$ unzip rhino.zip</pre>
<pre>$ mkdir ~/Library/Java</pre>
<pre>$ mkdir /home/nicam/Library/Java/Extensions</pre>
<pre>$ mv /tmp/<span>rhino1_7R3</span>/js.jar ~/Library/Java/Extensions/</pre>
<h2>3. Install JSLint</h2>
<pre>$ mkdir ~/Library/JSLint</pre>
<pre>$ curl http://dl.dropbox.com/u/419439/jslint.js &gt; ~/Library/JSLint/jslint.js</pre>
<h2>4. Enjoy</h2>
<p>In your SublimeText 2 just hit CMD+B to execute the build.</p>
<p><a href="http://nicam.ch/wp-content/uploads/2011/07/sublimeText2.jpg" rel="lightbox[157]"><img class="aligncenter size-medium wp-image-159" title="sublimeText2" src="http://nicam.ch/wp-content/uploads/2011/07/sublimeText2-300x211.jpg" alt="" width="300" height="211" /></a></p>
 <img src="http://nicam.ch/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=157" width="1" height="1" style="display: none;" />]]></content:encoded>
			<wfw:commentRss>http://nicam.ch/osx/enable-jslint-in-sublime-text-2/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Remote Control iTunes with Android</title>
		<link>http://nicam.ch/android/remote-control-itunes-with-android/</link>
		<comments>http://nicam.ch/android/remote-control-itunes-with-android/#comments</comments>
		<pubDate>Thu, 28 Apr 2011 11:13:31 +0000</pubDate>
		<dc:creator>nicam</dc:creator>
				<category><![CDATA[Android]]></category>

		<guid isPermaLink="false">http://nicam.ch/?p=143</guid>
		<description><![CDATA[I used to have an iPhone and what I really liked was the ability to control iTunes through the Apple Remote app. Now there&#8217;s an App for that on Android. It&#8217;s called TunesRemote+. The Process is the same as it was with the iPhone: 1. Install the App 2. Pair your device with your iTunes [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://nicam.ch/wp-content/uploads/2011/04/tunes-remote.png" rel="lightbox[143]"><img class="size-full wp-image-145 alignleft" style="margin-right: 20px;" title="tunes-remote" src="http://nicam.ch/wp-content/uploads/2011/04/tunes-remote.png" alt="" width="192" height="288" /></a></p>
<p>I used to have an iPhone and what I really liked was the ability to control iTunes through the Apple Remote app. Now there&#8217;s an App for that on Android. It&#8217;s called TunesRemote+. The Process is the same as it was with the iPhone:</p>
<p>1. Install the App<br />
2. Pair your device with your iTunes<br />
3. Enjoy!</p>
<p><strong>Grab it in the Android Market:</strong></p>
<p><img class="size-full wp-image-144 alignleft" title="TunesRemote+ in the Android Market" src="http://nicam.ch/wp-content/uploads/2011/04/qrcode.png" alt="" width="156" height="156" /></p>
 <img src="http://nicam.ch/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=143" width="1" height="1" style="display: none;" />]]></content:encoded>
			<wfw:commentRss>http://nicam.ch/android/remote-control-itunes-with-android/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Taking a break from Ubuntu</title>
		<link>http://nicam.ch/ubuntu/taking-a-break-from-ubuntu/</link>
		<comments>http://nicam.ch/ubuntu/taking-a-break-from-ubuntu/#comments</comments>
		<pubDate>Mon, 03 Jan 2011 19:22:41 +0000</pubDate>
		<dc:creator>nicam</dc:creator>
				<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://nicam.ch/?p=92</guid>
		<description><![CDATA[I tried Ubuntu 10.10 now for 14 days and I think I need a break and will return to Mac OS X. Trying to find out what I really want and really like. The main reason is that I currently have to learn so much new stuff in the office and are pretty busy with [...]]]></description>
			<content:encoded><![CDATA[<p>I tried Ubuntu 10.10 now for 14 days and I think I need a break and will return to Mac OS X. Trying to find out what I really want and really like. The main reason is that I currently have to learn so much new stuff in the office and are pretty busy with school so I dont have much spare time figuring stuff out. The Experiment so far was fun but still proves that it&#8217;s not quite ready yet. There are things that I liked but other things that I dont like so much.</p>
<h2>Good things:</h2>
<p><br/></p>
<ul>
<li>memory usage is lower</li>
<li>boot time is lower</li>
<li>ThinkPad specialties: trackPoint is awesome!, powered USB Port</li>
<li>Integrated WWAN</li>
<li>Android Teethering works out of the box and far more stable than in OS X</li>
<li>Workspaces, You only see the apps of the current workspaces when you do Alt+Tab</li>
<li>Aptitude and Ubuntu Software Center</li>
<li>Switching Tabs in Chrome using the scroll wheel</li>
</ul>
<p><br/></p>
<h2>Bad things</h2>
<p><br/><br />
<strong>The screens are not hotplugging</strong>, everytime I plug in the screen I have to press the &#8220;Beamer&#8221; Button a few times until I get what I want</p>
<p><strong>Network transfer speed is slow</strong>. I tried a lot of things and in the end I managed to get about 18 mb/s which is far lower than OS X with 45 mb/s. It might seem that I over react here but since I&#8217;m having all my data on my nas, Network speed is really important to me. Loosing more than half the speed is just inacceptable.</p>
<p><strong>Scrolling really sucks</strong>. It took me 6 hours to find a way to increase the scroll speed in chrome which in the end is just a hack. The hack itself is pretty buggy, imwheel dies a few times a day which is pretty annoying. It&#8217;s no fun do debug basic stuff like that, especialy since there are tickets asking for a scroll speed setting back from 2003.</p>
<p><strong>Panel items are moving when switching screens</strong>. I&#8217;m really starting to think that Ubuntu is not made for dual screens. I constantly have to rearrange the applets and icons in the top panel after I change from internal to external monitor on my notebook. This is annoying, I tried to &#8220;fix&#8221; them in position but that&#8217;s not helping either.</p>
<p><strong>Sleep is funky</strong>. Sleep works out of the box but it&#8217;s not as nice as in OS X, you&#8217;ll have to wait a while till it goes to sleep or wakes up. If you have an external monitor connected you always have to move the cursor a bit so X Server becomes active. Also if you send it into sleep while beeing plugged into the external screen and wake it after you removed the screen you&#8217;re unable to log in. It somehow shows the normal login box as If you just started the machine but doesn&#8217;t let you login, it just loops five times over the login procedure and sleep status text and then gives you a blackscreen. Also often stuff doesnt work anymore after sleep. In the beginning the trackpad scrolling stopped working after sleep, if you have a &#8220;.*&#8221; rule in imwheel it also stops working after sleep. Figuring stuff like that out takes a lot of time.</p>
<p><strong>GPU Acceleration for IntelHD isn&#8217;t ready yet</strong>. On nvidia GPU Accelerated Video works fairly well. On Intel HD it doesnt really work. The out of the box drivers encoding 1080p very sluggish with lots of artifacts. After spending hours installing bleeding edge drivers and compiling xbmc by hand I got it playing ok but still not really watchable.<br />
<br/></p>
<h2>Application Problems</h2>
<p><br/><br />
<strong>Workspace overlapping windows dont resize</strong>. If you increase a windows size, say using a big external monitor and then unplug it, the window doesn&#8217;t change it&#8217;s size to fit the internal screen. They overlap to another workspace. In OS X you can fix that by click on Window &gt; Zoom. I didn&#8217;t find anything like it in Ubuntu.</p>
<p><strong>No Photomanager Application that&#8217;s close to Apperture</strong>. I tried different photo applications but couldn&#8217;t find what I was looking for. Shotwell does A good job but is more like iPhoto. Nowhere close to Aperture.</p>
<p><strong>Skype version is super old</strong>. I really liked it when they changed the Skype layout a few weeks ago on OS X. Even harder is it to go back to an ancient version of Skype which is the only one available for Linux. It can&#8217;t disable notifications for certain chat&#8217;s which is extremly annoying because people are constantly changing they &#8220;Personal Messages&#8221;.</p>
<p><strong>Backup</strong> &#8211; I tried different Backup Tools in Ubuntu, they are ok but dont really work out of the box if you want to have a full copy of your disk like in Time Machine. I settled for &#8220;Back in Time&#8221;. When I told it to backup on / it started to backup all mounted network shares as well as devices which is messed up. Second try was to apply it only on the homefolder. Problem was that it started to backup certain hidden .files which contained mounted volumes which had a infinite recursion effect. Luckily I noticed before it was to late.</p>
<p><strong>JDownloader has graphical issues</strong>. Jdownloader sometimes has problems displaying captchas in the interface, this is really annoying as I use it a lot.<br/><br />
<br/></p>
<h2>Missing Applications</h2>
<p>Some application alternatives I chose weren&#8217;t as good as the ones I used before, which increased my desire to switch back, this was mostly caused by:</p>
<ul>
<li>Textmate</li>
<li>Aperture</li>
<li>Office 2011 for Mac</li>
<li>VMware Fusion</li>
</ul>
<p>Also I should mention that I really liked <strong>Gwibber</strong> as a Twitter application, I will miss you little friend <img src='http://nicam.ch/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> <br/><br />
<br/></p>
<h2>Final Conclusion</h2>
<p>As you see on my list it&#8217;s pretty obvious. The very few advantages just dont justify the disadvantages. So far I&#8217;m happy with Ubuntu as my Server and Media Center but I cant yet use it as my everyday system. I think the biggest problem right now for me is the multi monitor support. It works but is to flacky for me. If you&#8217;re just browsing the web and listen to some music Ubuntu is good for you but currently it doesn&#8217;t fit my needs. I really hope they&#8217;ll improve the multi monitor support and make it possible to adjust the scroll wheel speed. The hardware related issues will probably never be fully gone. If you think how less OEM support they get how much is working is really awesome, on the other hand it&#8217;s not enough for me. Why doesn&#8217;t ubuntu pair up with a hardware manufacturer like HP, Lenovo or Dell and create hardware that works perfectly on Ubuntu and will in the next few releases? Yes I&#8217;m aware that there&#8217;s Ubuntu ready and Ubuntu certified but that&#8217;s not hard- and software that were made for each other it&#8217;s just told to be working. IMHO this is what makes Apple&#8217;s notebooks so good at the moment.</p>
<p>That&#8217;s mostly all I have to say right now. I hope my experiment could help you to get a bit a better picture about Ubuntu&#8217;s current state. I&#8217;m not sure if I will try it again soon or just sell the notebook and stick with my mac. I&#8217;m backing up my current Ubuntu install as I write this so there&#8217;s always a way back.</p>
 <img src="http://nicam.ch/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=92" width="1" height="1" style="display: none;" />]]></content:encoded>
			<wfw:commentRss>http://nicam.ch/ubuntu/taking-a-break-from-ubuntu/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Mac OS X &#8211; Ubuntu switching Grid</title>
		<link>http://nicam.ch/ubuntu/mac-os-x-ubuntu-switching-grid/</link>
		<comments>http://nicam.ch/ubuntu/mac-os-x-ubuntu-switching-grid/#comments</comments>
		<pubDate>Thu, 30 Dec 2010 22:50:08 +0000</pubDate>
		<dc:creator>nicam</dc:creator>
				<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://nicam.ch/?p=80</guid>
		<description><![CDATA[Just a short list that Displays the Software alternatives I chose when I switched to Ubuntu from OS X Music: iTunes =&#62; Banshee Twitter: Tweetie =&#62; Gwibber IRC: Linkinus =&#62; XChat-GNOME Office: MS Office 2011 for Mac =&#62; Office 2007 (Wine) * Photo Library: Aperture =&#62; Shotwell Photo Manager Picture manipulation: Photoshop CS5 =&#62; Photoshop [...]]]></description>
			<content:encoded><![CDATA[<p>Just a short list that Displays the Software alternatives I chose when I switched to Ubuntu from OS X</p>
<ul>
<li><strong>Music</strong>: iTunes =&gt; Banshee</li>
<li><strong>Twitter</strong>: Tweetie =&gt; Gwibber</li>
<li><strong>IRC</strong>: Linkinus =&gt; XChat-GNOME</li>
<li><strong>Office</strong>: MS Office 2011 for Mac =&gt; Office 2007 (Wine) *</li>
<li><strong>Photo Library</strong>: Aperture =&gt; Shotwell Photo Manager</li>
<li><strong>Picture manipulation</strong>: Photoshop CS5 =&gt; Photoshop CS5 (Wine)</li>
<li><strong>Virtualisation</strong>: VMware Fusion =&gt; VirtualBox OSE</li>
<li><strong>Feed Reader</strong>: Gruml =&gt; Liferea Feed Reader</li>
<li><strong>Editor</strong>: TextMate =&gt; Sublime X (Alpha)</li>
</ul>
<p>* I went with Wine for Office because of School related Reasons. I need to make sure they look alright on the teachers machine &#8211; who uses Microsoft Office.<br />
<br/><br />
Also I should mention that a lot of my every day programms run native on Linux:</p>
<ul>
<li>Chrome</li>
<li>Firefox</li>
<li>VLC</li>
<li>Thunderbird</li>
<li>Skype</li>
<li>JDownloader</li>
<li>Dropbox</li>
<li>Mysql</li>
<li>PHP</li>
</ul>
 <img src="http://nicam.ch/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=80" width="1" height="1" style="display: none;" />]]></content:encoded>
			<wfw:commentRss>http://nicam.ch/ubuntu/mac-os-x-ubuntu-switching-grid/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to increase Scroll speed in Google Chrome / Chromium</title>
		<link>http://nicam.ch/ubuntu/how-to-increase-scroll-speed-in-google-chrome-chromium/</link>
		<comments>http://nicam.ch/ubuntu/how-to-increase-scroll-speed-in-google-chrome-chromium/#comments</comments>
		<pubDate>Thu, 30 Dec 2010 21:12:04 +0000</pubDate>
		<dc:creator>nicam</dc:creator>
				<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://nicam.ch/?p=76</guid>
		<description><![CDATA[I was searching like crazy to increase the scrollspeed in chrome because it only was 4 lines per scroll which caused my finger to hurt like hell. It&#8217;s not really a fix merly a workaround. Remember to put Imwheel into your autostart programms. $ sudo apt-get install imwheel place the following in ~/.imwheelrc &#8220;^google-chrome$&#8221; None, [...]]]></description>
			<content:encoded><![CDATA[<p>I was searching like crazy to increase the scrollspeed in chrome because it only was 4 lines per scroll which caused my finger to hurt like hell. It&#8217;s not really a fix merly a workaround. Remember to put Imwheel into your autostart programms.</p>
<p>$ sudo apt-get install imwheel</p>
<p>place the following in ~/.imwheelrc</p>
<p>&#8220;^google-chrome$&#8221;<br />
  None, Up, Button4, 2<br />
  None, Down, Button5, 2<br />
&#8220;.*&#8221;<br />
None,Thumb1,Alt_L|Left<br />
None,Thumb2,Alt_L|Right</p>
<p>The thumb stuff is because otherwise imwheel breaks your thumb buttons.<br />
Then run imwheel from the command line.<br />
$ imwheel</p>
<p>2 is the value in which will be used to multiply your scrollwheel speed</p>
 <img src="http://nicam.ch/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=76" width="1" height="1" style="display: none;" />]]></content:encoded>
			<wfw:commentRss>http://nicam.ch/ubuntu/how-to-increase-scroll-speed-in-google-chrome-chromium/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Improve your Gnome with nicer Icons</title>
		<link>http://nicam.ch/ubuntu/improve-your-gnome-with-nicer-icons/</link>
		<comments>http://nicam.ch/ubuntu/improve-your-gnome-with-nicer-icons/#comments</comments>
		<pubDate>Mon, 27 Dec 2010 00:03:25 +0000</pubDate>
		<dc:creator>nicam</dc:creator>
				<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://nicam.ch/?p=68</guid>
		<description><![CDATA[Just stumbeled over these Icons, they improve the overall feeling in Gnome a lot Check them out: http://gnome-look.org/content/show.php/Faenza?content=128143]]></description>
			<content:encoded><![CDATA[<p>Just stumbeled over these Icons, they improve the overall feeling in Gnome a lot</p>
<p style="text-align: center;"><a href="http://nicam.ch/wp-content/uploads/2010/12/128143-11.png" rel="lightbox[68]"><img class="aligncenter size-full wp-image-70" title="128143-1" src="http://nicam.ch/wp-content/uploads/2010/12/128143-11.png" alt="" width="384" height="288" /></a></p>
<p>Check them out:</p>
<p><a href="http://gnome-look.org/content/show.php/Faenza?content=128143">http://gnome-look.org/content/show.php/Faenza?content=128143</a></p>
 <img src="http://nicam.ch/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=68" width="1" height="1" style="display: none;" />]]></content:encoded>
			<wfw:commentRss>http://nicam.ch/ubuntu/improve-your-gnome-with-nicer-icons/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to get better Transfer speeds with Realtek r8168</title>
		<link>http://nicam.ch/ubuntu/how-to-get-better-transfer-speeds-with-realtek-r8168/</link>
		<comments>http://nicam.ch/ubuntu/how-to-get-better-transfer-speeds-with-realtek-r8168/#comments</comments>
		<pubDate>Sun, 26 Dec 2010 19:29:47 +0000</pubDate>
		<dc:creator>nicam</dc:creator>
				<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://nicam.ch/?p=65</guid>
		<description><![CDATA[The Realtek r8168 which is in the Lenovo Edge 13 is recognised as r8169 in Ubuntu 10.10 Maverik. I only got 15 mb/s Transfer, after following this Guide (1) I got between 15 and 20 mb/s. Not much but at least something (1) http://www.rvdavid.net/how-to-get-gigabit-speeds-from-rtl81118168b-pci-express-gigabit-ethernet-controller-on-ubuntu-linux/#comment-3054 Hope this helps someone]]></description>
			<content:encoded><![CDATA[<p>The Realtek r8168 which is in the Lenovo Edge 13 is recognised as r8169 in Ubuntu 10.10 Maverik. I only got 15 mb/s Transfer, after following this Guide (1) I got between 15 and 20 mb/s. Not much but at least something</p>
<p>(1) <a href="http://www.rvdavid.net/how-to-get-gigabit-speeds-from-rtl81118168b-pci-express-gigabit-ethernet-controller-on-ubuntu-linux/#comment-3054">http://www.rvdavid.net/how-to-get-gigabit-speeds-from-rtl81118168b-pci-express-gigabit-ethernet-controller-on-ubuntu-linux/#comment-3054</a></p>
<p>Hope this helps someone <img src='http://nicam.ch/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
 <img src="http://nicam.ch/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=65" width="1" height="1" style="display: none;" />]]></content:encoded>
			<wfw:commentRss>http://nicam.ch/ubuntu/how-to-get-better-transfer-speeds-with-realtek-r8168/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fixing fullscreen flash issues with Ubuntu 10.10 and Intel HD in Chrome</title>
		<link>http://nicam.ch/ubuntu/fixing-fullscreen-flash-issues-with-ubuntu-10-10-and-intel-hd-in-chrome/</link>
		<comments>http://nicam.ch/ubuntu/fixing-fullscreen-flash-issues-with-ubuntu-10-10-and-intel-hd-in-chrome/#comments</comments>
		<pubDate>Thu, 23 Dec 2010 19:07:23 +0000</pubDate>
		<dc:creator>nicam</dc:creator>
				<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://nicam.ch/?p=61</guid>
		<description><![CDATA[Ubuntu had a problem displaying the fullscreen view of youtube videos. Luckily it is fixed in the new Flash 10.2 beta which also takes a lot of load of the CPU and uses the GPU for video. Installing it was a bit tricky first. First you have to download libflashplayer.so from Adobe. Download it here [...]]]></description>
			<content:encoded><![CDATA[<p>Ubuntu had a problem displaying the fullscreen view of youtube videos. Luckily it is fixed in the new Flash 10.2 beta which also takes a lot of load of the CPU and uses the GPU for video. Installing it was a bit tricky first.</p>
<ol>
<li>First you have to download libflashplayer.so from Adobe. <a title="http://labs.adobe.com/downloads/flashplayer10.html" href="http://labs.adobe.com/downloads/flashplayer10.html">Download it here</a></li>
<li>Close your browsers.</li>
<li>Afterwards you&#8217;ll need to put it into /usr/lib/flashplugin-installer and overwrite the existing one.</li>
<li>Afterwards you open chrome again and go to: about:plugins, click on Details on the left Side.</li>
<li>Look for flash. You&#8217;ll see that you currently have 2 versions installed, disable &#8220;Shockwave Flash 10.1 r103&#8243;</li>
</ol>
<p>In the Flash section you should see Shockwave Flash 10.2 d151 now.</p>
<p>Have fun with full HD Video on Chrome.</p>
<p>This tutorial is based on: <a href="http://lifehacker.com/5705588/how-to-get-the-flash-102-beta-working-in-google-chrome">http://lifehacker.com/5705588/how-to-get-the-flash-102-beta-working-in-google-chrome</a></p>
 <img src="http://nicam.ch/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=61" width="1" height="1" style="display: none;" />]]></content:encoded>
			<wfw:commentRss>http://nicam.ch/ubuntu/fixing-fullscreen-flash-issues-with-ubuntu-10-10-and-intel-hd-in-chrome/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
<!-- This Quick Cache file was built for (  nicam.ch/feed/ ) in 1.04792 seconds, on Feb 23rd, 2012 at 4:25 am UTC. -->
<!-- This Quick Cache file will automatically expire ( and be re-built automatically ) on Feb 23rd, 2012 at 5:25 am UTC -->
<!-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ -->
<!-- Quick Cache Is Fully Functional :-) ... A Quick Cache file was just served for (  nicam.ch/feed/ ) in 0.00108 seconds, on Feb 23rd, 2012 at 4:46 am UTC. -->
