<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:dc="http://purl.org/dc/elements/1.1/" version="2.0"><channel><atom:link rel="hub" href="http://tumblr.superfeedr.com/" xmlns:atom="http://www.w3.org/2005/Atom"/><description>Zoltán Majoros, freelancer iOS developer living in Bonn, Germany.
Contact: info@arcanelab.com


var sc_project=3967356; 
var sc_invisible=1; 
var sc_security="74c63b44"; 
</description><title>[ arcanelab ]</title><generator>Tumblr (3.0; @arcanelab)</generator><link>http://www.arcanelab.com/</link><item><title>vi Tutorials</title><description>&lt;a href="http://www.devdaily.com/linux/vi-vim-editor-tutorials-collection"&gt;vi Tutorials&lt;/a&gt;: &lt;p&gt;+ Video lessons:&lt;/p&gt;
&lt;ul&gt;&lt;li&gt;&lt;a href="http://www.youtube.com/watch?v=SI8TeVMX8pk"&gt;lesson 1&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://www.youtube.com/watch?v=F3OO7ZIOaJE"&gt;lesson 2 - Navigation Commands&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://www.youtube.com/watch?v=ZYEccA_nMaI"&gt;lesson 3 - Inserting Text&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://www.youtube.com/watch?v=1lYD5gwgZIA"&gt;lesson 4 - Deleting Text&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;</description><link>http://www.arcanelab.com/post/23444575327</link><guid>http://www.arcanelab.com/post/23444575327</guid><pubDate>Mon, 21 May 2012 01:02:00 +0200</pubDate></item><item><title>The Unix/Linux Teleport Command</title><description>&lt;iframe width="400" height="225" src="http://www.youtube.com/embed/KupqGHhPc98?wmode=transparent&amp;autohide=1&amp;egm=0&amp;hd=1&amp;iv_load_policy=3&amp;modestbranding=1&amp;rel=0&amp;showinfo=0&amp;showsearch=0" frameborder="0" allowfullscreen&gt;&lt;/iframe&gt;&lt;br/&gt;&lt;br/&gt;&lt;p&gt;The Unix/Linux Teleport Command&lt;/p&gt;</description><link>http://www.arcanelab.com/post/23443480924</link><guid>http://www.arcanelab.com/post/23443480924</guid><pubDate>Mon, 21 May 2012 00:44:00 +0200</pubDate></item><item><title>vi(m) cheat sheet</title><description>&lt;a href="http://www.viemu.com/vi-vim-cheat-sheet.gif"&gt;vi(m) cheat sheet&lt;/a&gt;</description><link>http://www.arcanelab.com/post/23442641382</link><guid>http://www.arcanelab.com/post/23442641382</guid><pubDate>Mon, 21 May 2012 00:30:33 +0200</pubDate></item><item><title>6502 Test Programs</title><description>&lt;a href="http://code.google.com/p/hmc-6502/source/browse/#svn%2Ftrunk%2Femu%2Ftestvectors%2FTestAllInstructions"&gt;6502 Test Programs&lt;/a&gt;</description><link>http://www.arcanelab.com/post/23439045717</link><guid>http://www.arcanelab.com/post/23439045717</guid><pubDate>Sun, 20 May 2012 23:31:35 +0200</pubDate></item><item><title>Recursively unpack zip files in subdirectories</title><description>&lt;p&gt;Recursively unpack zip files in their respective directories:&lt;/p&gt;
&lt;pre&gt;find . -name "*.zip" | while read filename; do unzip -o -qq -d "`dirname "$filename"`" "$filename"; done;&lt;/pre&gt;
&lt;p&gt;Clean up the zip files:&lt;/p&gt;
&lt;pre&gt;find . -name "*.zip" | while read filename; do rm "$filename"; done;&lt;/pre&gt;
&lt;p&gt;I have downloaded the complete &lt;a href="http://ftp.scs-trc.net"&gt;ftp.scs-trc.net&lt;/a&gt; and c64.rulez.org archives and I wanted to copy the unpacked archives onto an SD card for my Chameleon 64. These commands helped me a great deal to unpack and remove all of the zip files.&lt;/p&gt;</description><link>http://www.arcanelab.com/post/22991145441</link><guid>http://www.arcanelab.com/post/22991145441</guid><pubDate>Sun, 13 May 2012 22:19:00 +0200</pubDate></item><item><title>Alternative Codebase64 css theme</title><description>&lt;p&gt;I don&amp;#8217;t know about you, but when reading &lt;a href="http://www.codebase64.org/"&gt;codebase64.org&lt;/a&gt;, the high-contrasted text makes my eyes hurt. So I created a very short CSS that overrides the original and makes it much easier to read the website without getting a headache.&lt;/p&gt;
&lt;p&gt;I&amp;#8217;m not into web-design at all, so sorry if you see something blatantly stupid here, but the following style sheet works all right with Firefox&amp;#8217;s &lt;a href="https://addons.mozilla.org/en-US/firefox/addon/stylish/"&gt;Stylish&lt;/a&gt; plugin for me:&lt;/p&gt;
&lt;pre&gt;@namespace url(&lt;a href="http://www.w3.org/1999/xhtml"&gt;http://www.w3.org/1999/xhtml&lt;/a&gt;);
@-moz-document domain("codebase64.org") {

div.dokuwiki h1 a, div.dokuwiki h2 a, div.dokuwiki h3 a, div.dokuwiki h4 a
{
    color:#090 !important;
}

body
{
    font-family:Verdana !important;
    background-color:#232 !important;
    color:#8a8 !important;
    font-size:100% !important;
    text-shadow: 1px 1px 1px #222;
}
&lt;br/&gt;.li {color:#ccc !important;}&lt;br/&gt;div.dokuwiki .li {color:#792 !important;}&lt;br/&gt;&lt;br/&gt;pre
{
    font-family:Monaco, Lucida Console !important;
    background-color:#111 !important;
    color:#0c0 !important;
    font-size:100% !important;
}}&lt;/pre&gt;
&lt;p&gt;Before:&lt;/p&gt;
&lt;p&gt;&lt;img height="364" src="http://i.imgur.com/tz5ZJ.png" width="565"/&gt;&lt;/p&gt;
&lt;p&gt;After:&lt;/p&gt;
&lt;p&gt;&lt;img height="364" src="http://i.imgur.com/LC6ja.png" width="565"/&gt;&lt;/p&gt;</description><link>http://www.arcanelab.com/post/22612184101</link><guid>http://www.arcanelab.com/post/22612184101</guid><pubDate>Tue, 08 May 2012 00:36:00 +0200</pubDate></item><item><title>How to add real time effects for system audio on Mac</title><description>&lt;p&gt;Sometimes you might want to put some effects onto the audio signal that comes out of your Mac. If you listen to music via iTunes, you can play around with the EQ settings, but that&amp;#8217;s not too much. What if you want some more sophisticated sound processing capabilities at your hands, or you want to put effects on the sound of other applications, like web browsers? We have tons of great (free) VST/AU plugins around, why not running our system sound through them? This short guide is trying to show you how to do that for free.&lt;/p&gt;
&lt;p&gt;So what kind of software do we need? First we need our VST/AU effects. You can either grab your favorite ones lying around, or you can use Apple&amp;#8217;s built-in Audio Units as well. To look for great effects, I can recommend to check out &lt;a href="http://www.kvraudio.com/?t%5B%5D=effects"&gt;kvraudio.com&lt;/a&gt;, they have a huge database of effects.&lt;/p&gt;
&lt;p&gt;Second, you need a &lt;a href="http://www.kvraudio.com/q.php?search=1&amp;amp;tg%5B%5D=32#results"&gt;host app&lt;/a&gt; for the VST/AU plugins. What I was looking for is a lightweight, free app that won&amp;#8217;t take up too much system resource. A full DAW would be overkill for our needs. Luckily, Apple has an answer for this problem, and even for free! With the (free) Xcode development environment comes a software called &lt;a href="http://www.kvraudio.com/product/aulab_by_apple"&gt;AU Lab&lt;/a&gt;, that does pretty much what we want: it acts as an Audio Unit host and processes real-time audio signals with them.&lt;/p&gt;
&lt;p&gt;But how do we root the system sound through it? For that we need &lt;a href="http://cycling74.com/products/soundflower/"&gt;Soundflower&lt;/a&gt;, which is also free software.&lt;/p&gt;
&lt;p&gt;Let&amp;#8217;s make all this work together! Install Soundflower, open Sound Preferences, go to the Output tab and select the 2-channel Soundflower entry. Now start AU Lab and create a new document, and select Soundflower as input source, and set the output to your preferred sound card output (eg.: Built-in output). When ready, you&amp;#8217;ll see two stripes, one for audio input and one for audio output. On the input side there will be a part call Effects. There you can stack up your effect plugins. Go, select an effect and edit its parameters. I usually put a slight reverb onto the audio signal to give some spacial feeling to the sound when using my headphones, but you can choose any other one for your own needs.&lt;/p&gt;
&lt;p&gt;Basically, that&amp;#8217;s all there is to it! You should hear the difference on any audio getting played back on your Mac. Good luck for the set-up, cheers!&lt;/p&gt;
&lt;p&gt;Note: &lt;a href="http://support.apple.com/kb/HT1295"&gt;Finding Audio Units plug-ins on your computer&lt;/a&gt;.&lt;/p&gt;</description><link>http://www.arcanelab.com/post/22610203187</link><guid>http://www.arcanelab.com/post/22610203187</guid><pubDate>Tue, 08 May 2012 00:08:00 +0200</pubDate><category>vst</category><category>audio rooting</category><category>mac os x</category></item><item><title>50 Unusually Awesome Icon Sets for Mac</title><description>&lt;a href="http://mac.appstorm.net/roundups/graphics-roundups/50-unusually-awesome-icon-sets-for-mac/"&gt;50 Unusually Awesome Icon Sets for Mac&lt;/a&gt;</description><link>http://www.arcanelab.com/post/21478365351</link><guid>http://www.arcanelab.com/post/21478365351</guid><pubDate>Sat, 21 Apr 2012 06:18:21 +0200</pubDate></item><item><title>Calibrating Displays in Boot Camp 3.0 on MacBook with external display</title><description>&lt;a href="http://superuser.com/questions/39731/calibrating-displays-in-boot-camp-3-0-on-macbook-with-external-display"&gt;Calibrating Displays in Boot Camp 3.0 on MacBook with external display&lt;/a&gt;: &lt;p&gt;A real lifesaver for Boot Camp users!&lt;/p&gt;</description><link>http://www.arcanelab.com/post/21422119745</link><guid>http://www.arcanelab.com/post/21422119745</guid><pubDate>Fri, 20 Apr 2012 06:18:49 +0200</pubDate></item><item><title>Unable to change "Open with..." file association</title><description>&lt;a href="http://superuser.com/questions/388002/how-to-choose-default-program-to-a-file-to-be-opened-with-same-exe-name"&gt;Unable to change "Open with..." file association&lt;/a&gt;: &lt;p&gt;One of the bugs I hate the most in Windows.&lt;/p&gt;</description><link>http://www.arcanelab.com/post/21414802556</link><guid>http://www.arcanelab.com/post/21414802556</guid><pubDate>Fri, 20 Apr 2012 04:02:55 +0200</pubDate></item><item><title>CSS Formatter and Optimiser</title><description>&lt;a href="http://www.cleancss.com/"&gt;CSS Formatter and Optimiser&lt;/a&gt;</description><link>http://www.arcanelab.com/post/21303355632</link><guid>http://www.arcanelab.com/post/21303355632</guid><pubDate>Wed, 18 Apr 2012 04:05:49 +0200</pubDate></item><item><title>Antialiasing</title><description>&lt;a href="http://puredata.hurleur.com/sujet-6147-antialiasing"&gt;Antialiasing&lt;/a&gt;</description><link>http://www.arcanelab.com/post/21174524488</link><guid>http://www.arcanelab.com/post/21174524488</guid><pubDate>Mon, 16 Apr 2012 00:30:49 +0200</pubDate></item><item><title>Ui Parade</title><description>&lt;a href="http://www.uiparade.com/"&gt;Ui Parade&lt;/a&gt;: &lt;p&gt;Ui Parade is all about showcasing user interface design that is crafted by some of the worlds most talented ui designers.&lt;/p&gt;</description><link>http://www.arcanelab.com/post/21100098674</link><guid>http://www.arcanelab.com/post/21100098674</guid><pubDate>Sat, 14 Apr 2012 21:53:35 +0200</pubDate></item><item><title>Change OS X font smoothing in one application</title><description>&lt;a href="http://codesnippets.joyent.com/posts/show/1191"&gt;Change OS X font smoothing in one application&lt;/a&gt;: &lt;p&gt;With the method described on the linked page, you can arbitrarily set the level of (or turn off) font smoothing in Mac OS X for almost any given application. Valid values are: 0-3. For the correct “DNS” sequence take a look into ~/Library/Preferences/.&lt;/p&gt;
&lt;p&gt;For example, let’s set the system-wide font smoothing value to 1 and turn off subpixel font smoothing for the Terminal app:&lt;/p&gt;
&lt;pre&gt;defaults -currentHost write -globalDomain AppleFontSmoothing -int 1&lt;br/&gt;defaults com.apple.Terminal AppleFontSmoothing -int 0&lt;/pre&gt;
&lt;p&gt;To check the current value, replace &lt;strong&gt;write&lt;/strong&gt; with &lt;strong&gt;read&lt;/strong&gt; and leave off the value at the end, for example:&lt;/p&gt;
&lt;pre&gt;defaults -currentHost read -globalDomain AppleFontSmoothing&lt;/pre&gt;
&lt;p&gt;Happy hacking!&lt;/p&gt;</description><link>http://www.arcanelab.com/post/19030888017</link><guid>http://www.arcanelab.com/post/19030888017</guid><pubDate>Sat, 10 Mar 2012 02:21:00 +0100</pubDate><category>mac os x</category><category>osx</category></item><item><title>I've just become a member of App Entwickler Verzeichnis!</title><description>&lt;p&gt;&lt;a href="http://www.app-entwickler-verzeichnis.de/" title="App Programmierung"&gt; &lt;img align="middle" alt="app-programmierung" height="146" src="http://www.app-entwickler-verzeichnis.de/images/newsletter/app-entwickler-stempel.png" width="150"/&gt;&lt;/a&gt;&lt;/p&gt;</description><link>http://www.arcanelab.com/post/18754319573</link><guid>http://www.arcanelab.com/post/18754319573</guid><pubDate>Sun, 04 Mar 2012 23:47:00 +0100</pubDate></item><item><title>Maximum (practical) Memory Use on iPod Touch 4G, iOS 5</title><description>&lt;a href="http://stackoverflow.com/questions/9467176/maximum-practical-memory-use-on-ipod-touch-4g-ios-5"&gt;Maximum (practical) Memory Use on iPod Touch 4G, iOS 5&lt;/a&gt;: &lt;p&gt;&lt;a href="http://en.wikipedia.org/wiki/Memory-mapped_file"&gt;Also&lt;/a&gt;&lt;/p&gt;</description><link>http://www.arcanelab.com/post/18696442183</link><guid>http://www.arcanelab.com/post/18696442183</guid><pubDate>Sun, 04 Mar 2012 02:13:11 +0100</pubDate></item><item><title>Flurry: Mobile Application Analytics</title><description>&lt;a href="http://www.flurry.com/"&gt;Flurry: Mobile Application Analytics&lt;/a&gt;</description><link>http://www.arcanelab.com/post/17727663062</link><guid>http://www.arcanelab.com/post/17727663062</guid><pubDate>Thu, 16 Feb 2012 22:46:26 +0100</pubDate></item><item><title>Open Cubic Player (OpenCP) on Mac OS X</title><description>&lt;a href="http://www.cubic.org/player/download.html"&gt;Open Cubic Player (OpenCP) on Mac OS X&lt;/a&gt;: &lt;p&gt;Wow, I just installed Open Cupic Player on my Mac! It’s nice to use this classic program on a new system after more than, what, maybe 10 years? Its module playback routine imho is one of the best ever written, I prefer it to the one in Milkytracker.&lt;/p&gt;
&lt;p&gt;Unfortunately it misses a bunch of features the original had (graphical screens etc), but the experience is still cool.&lt;/p&gt;
&lt;p&gt;It was ported to several systems from the original DOS platform, grab it for yours, too!&lt;/p&gt;</description><link>http://www.arcanelab.com/post/17611788223</link><guid>http://www.arcanelab.com/post/17611788223</guid><pubDate>Tue, 14 Feb 2012 18:16:00 +0100</pubDate></item><item><title>Pixel Perfection: Showcase of Inspired Pixel Art</title><description>&lt;a href="http://www.noupe.com/inspiration/pixel-perfection-showcase-of-inspired-pixel-art.html"&gt;Pixel Perfection: Showcase of Inspired Pixel Art&lt;/a&gt;</description><link>http://www.arcanelab.com/post/16118581734</link><guid>http://www.arcanelab.com/post/16118581734</guid><pubDate>Thu, 19 Jan 2012 17:19:26 +0100</pubDate></item><item><title>2D Drawing in OpenGL</title><description>&lt;a href="http://basic4gl.wikispaces.com/2D+Drawing+in+OpenGL"&gt;2D Drawing in OpenGL&lt;/a&gt;: &lt;p&gt;How to set up 2D projection in OpenGL.&lt;/p&gt;</description><link>http://www.arcanelab.com/post/15012501886</link><guid>http://www.arcanelab.com/post/15012501886</guid><pubDate>Fri, 30 Dec 2011 06:44:47 +0100</pubDate><category>opengl</category><category>2d</category><category>programming</category></item></channel></rss>

