<?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>crisi&#039;s blog</title>
	<atom:link href="http://www.crisi.ch/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.crisi.ch</link>
	<description>bass. dota. vball.</description>
	<lastBuildDate>Sun, 15 Apr 2012 04:56:17 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Useful IntelliJ IDEA Settings</title>
		<link>http://www.crisi.ch/useful-intellij-idea-settings/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=useful-intellij-idea-settings</link>
		<comments>http://www.crisi.ch/useful-intellij-idea-settings/#comments</comments>
		<pubDate>Sun, 15 Apr 2012 04:56:17 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[IntelliJ IDEA]]></category>

		<guid isPermaLink="false">http://www.crisi.ch/?p=96</guid>
		<description><![CDATA[I switched from Eclipse to IntelliJ IDEA a while ago because it kinda was way easier to get the programming environment at work up and running with IntelliJ. And because I use it at work and don&#8217;t want to do &#8230; <a href="http://www.crisi.ch/useful-intellij-idea-settings/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I switched from Eclipse to IntelliJ IDEA a while ago because it kinda was way easier to get the programming environment at work up and running with IntelliJ. And because I use it at work and don&#8217;t want to do the switch every time i start programming at home I decided to switch to IntelliJ here aswell.</p>
<p>Up until now I really got to like this fancy IDE from Jetbrains but there still were some annoyances I had to fix. The following section covers a few settings I&#8217;d like to mention because it makes my programming life a little easier <img src='http://www.crisi.ch/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
<p><strong>Allow placement of caret after end of line</strong></p>
<p>When I click on a line I usually expect the caret to jump right to the ending of the line. Not so in IntelliJ. The caret keeps blinking exactly there where you clicked so I always had to press [END] to quickly move to caret behind the last character of the line. If you feel like disabling this behaviour you can do it as follows:</p>
<ul>
<li>Go to &#8220;File &gt; Settings&#8221; or press &#8220;[Ctrl] + [Alt] + [S]&#8220;</li>
<li>In the search dialog at the top left type &#8220;caret&#8221;</li>
<li>Select the entry &#8220;Editor&#8221; (if not yet selected)</li>
<li><strong>Uncheck the setting &#8220;Allow placement of caret after end of line&#8221;</strong> and click OK</li>
</ul>
<p><strong>Highlight usages of element at caret</strong></p>
<p>Another really handy feature which I know from Eclipse and was missing is the highlighting of all the element usages of the element your currently pointing at with the caret. To enable this do the following:</p>
<ul>
<li>Go to &#8220;File &gt; Settings&#8221; or press &#8220;[Ctrl] + [Alt] + [S]&#8220;</li>
<li>In the search dialog at the top left type &#8220;caret&#8221;</li>
<li>Select the entry &#8220;Editor&#8221; (if not yet selected&#8221;)</li>
<li><strong>Check the setting &#8220;Highlight usages of element at caret&#8221; </strong>and click OK</li>
</ul>
<p>These 2 convenience settings just made your life so much easier <img src='http://www.crisi.ch/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>I take further setting recommendations in the comments <img src='http://www.crisi.ch/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' />  I&#8217;m thinking of adding some nice to know keyboard shortcuts to this article. I guess this article will be updated.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.crisi.ch/useful-intellij-idea-settings/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sharing LibGDX assets</title>
		<link>http://www.crisi.ch/sharing-libgdx-assets-folder-between-android-and-desktop-project-in-intellij-idea/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=sharing-libgdx-assets-folder-between-android-and-desktop-project-in-intellij-idea</link>
		<comments>http://www.crisi.ch/sharing-libgdx-assets-folder-between-android-and-desktop-project-in-intellij-idea/#comments</comments>
		<pubDate>Sun, 08 Apr 2012 16:55:06 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[Android]]></category>
		<category><![CDATA[Ant]]></category>
		<category><![CDATA[Eclipse]]></category>
		<category><![CDATA[IntelliJ IDEA]]></category>
		<category><![CDATA[LibGDX]]></category>

		<guid isPermaLink="false">http://www.crisi.ch/?p=72</guid>
		<description><![CDATA[I recently came across the problem of not being able to properly share the &#8220;data&#8221; folder of my Desktop and Android LibGDX project in IntelliJ IDEA. Now i found 3 solutions for this. Each one has it&#8217;s benefits. Solution 1 &#8230; <a href="http://www.crisi.ch/sharing-libgdx-assets-folder-between-android-and-desktop-project-in-intellij-idea/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I recently came across the problem of not being able to properly share the &#8220;data&#8221; folder of my Desktop and Android LibGDX project in IntelliJ IDEA. Now i found 3 solutions for this. Each one has it&#8217;s benefits.</p>
<p><strong>Solution 1 using only IntelliJ IDEA</strong></p>
<p>In this solution both projects use the &#8220;data&#8221; folder in your Desktop project:</p>
<ul>
<li>Right-click you Android project and select &#8220;Open Module Settings [F4]&#8220;</li>
<li>Under &#8220;Modules&#8221; select the Android Facet</li>
<li>In the tab &#8220;Structure&#8221; you can change the default Android assets directory</li>
<li>Browse to the folder containing the data folder of your Desktop project an click OK</li>
</ul>
<p><strong>Notice:</strong> You have to select the parent folder of the data folder in your Desktop project since the Android project will look for the data folder inside the defined assets folder.</p>
<p>The first solution didn&#8217;t work for me though, because I&#8217;m working on a project with a mate and he is using Eclipse with the default LibGDX project setup explained <a href="http://code.google.com/p/libgdx/wiki/ProjectSetup">here</a>.</p>
<p>Now, if you want to keep the two separate data folders but also keep their files automatically in sync, there&#8217;s an elegant way to do this using Ant.</p>
<p><strong>Solution 2 using Ant</strong></p>
<p>In this solution both projects keep their own &#8220;data&#8221; folder but their files are automatically synced right before the project is run with the help of a small <a href="http://ant.apache.org/">Ant</a> task.</p>
<ul>
<li>Right-click your Android project and select &#8220;New &gt; File&#8221;</li>
<li>Name it &#8220;build.xml&#8221;</li>
<li>Paste the following content into the newly created &#8220;build.xml&#8221;</li>
</ul>
<pre class="brush: xml; title: ; notranslate">
&lt;project name=&quot;Your Project Name here&quot; basedir=&quot;.&quot; default=&quot;refreshAssets&quot;&gt;
  &lt;property name=&quot;from.dir&quot;  value=&quot;../glowjump_java/data&quot;/&gt;
  &lt;property name=&quot;to.dir&quot;     value=&quot;./assets/data&quot;/&gt;

  &lt;target name=&quot;refreshAssets&quot;&gt;
    &lt;copy todir=&quot;${to.dir}&quot;&gt;
      &lt;fileset dir=&quot;${from.dir}&quot;/&gt;
    &lt;/copy&gt;
  &lt;/target&gt;
&lt;/project&gt;
</pre>
<ul>
<li>Now go to &#8220;Run &gt; Edit Configurations&#8230;&#8221;</li>
<li>Select your Android Run Configuration and check &#8220;Run Ant target&#8221; at the bottom</li>
<li>Click on &#8220;&#8230;&#8221; and select the newly created Ant task called &#8220;refreshAssets&#8221;</li>
</ul>
<p>This task is now executed every time you launch the Android application. Meaning that the files in the data folder are copied from the Desktop project to the Android project right before launch.</p>
<p>For more info about the copy command in Ant see <a href="http://ant.apache.org/manual/Tasks/copy.html">here</a>.</p>
<p><strong>Solution 3 using a symlink (Windows)</strong></p>
<p>The third and probably easiest solution is to create a Windows symlink called &#8220;data&#8221; inside the Android &#8220;assets&#8221; folder. This symlink will point to the &#8220;data&#8221; folder of your Desktop project.</p>
<ul>
<li>In your FileExplorer navigate inside your LibGDX Android project folder</li>
<li>Right-click the &#8220;assets&#8221; folder and select &#8220;Open command window here&#8221;</li>
<li>In the command prompt enter <code>mklink /D data "..\..\your_libgdx_desktop_project_folder_name\data</code></li>
<li>On success the following message should be displayed <code>symbolic link created for data &lt;&lt;===&gt;&gt; ..\..\your_libgdx_desktop_project_folder_name\data</code></li>
<li>Refresh the project view in IntelliJ IDEA</li>
<li>You should now see the data symlink as a normal folder containing the files of your desktop project</li>
</ul>
<p>Please feel free to ask questions in the comments!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.crisi.ch/sharing-libgdx-assets-folder-between-android-and-desktop-project-in-intellij-idea/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Android SDK Tools update fails</title>
		<link>http://www.crisi.ch/android-sdk-tools-update-fails/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=android-sdk-tools-update-fails</link>
		<comments>http://www.crisi.ch/android-sdk-tools-update-fails/#comments</comments>
		<pubDate>Sat, 07 Apr 2012 19:04:26 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[Android]]></category>

		<guid isPermaLink="false">http://www.crisi.ch/?p=70</guid>
		<description><![CDATA[If the update of your Android SDK Tools fails, because a folder could not be moved, try this solution: Create a copy of your &#8220;tools&#8221; folder under your &#8220;Android/android-sdk&#8221; folder Go into that copied folder and run the file &#8220;android.bat&#8221; &#8230; <a href="http://www.crisi.ch/android-sdk-tools-update-fails/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>If the update of your Android SDK Tools fails, because a folder could not be moved, try this solution:</p>
<ol>
<li>Create a copy of your &#8220;tools&#8221; folder under your &#8220;Android/android-sdk&#8221; folder</li>
<li>Go into that copied folder and run the file &#8220;android.bat&#8221;</li>
<li>The Android SDK Manager will start and allow you to update whatever you want to without errors</li>
<li>After the update you can close the SDK Manager and delete the copied &#8220;tools&#8221; folder</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://www.crisi.ch/android-sdk-tools-update-fails/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>DailyConnect</title>
		<link>http://www.crisi.ch/dailyconnect/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=dailyconnect</link>
		<comments>http://www.crisi.ch/dailyconnect/#comments</comments>
		<pubDate>Wed, 28 Mar 2012 20:18:15 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Portfolio]]></category>
		<category><![CDATA[2011]]></category>
		<category><![CDATA[Android]]></category>
		<category><![CDATA[Eclipse]]></category>
		<category><![CDATA[Illustrator]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[Photoshop]]></category>

		<guid isPermaLink="false">http://root.stylicious.ch/crisi_wp/?p=29</guid>
		<description><![CDATA[My bachelor thesis, DailyConnect, is a hitch a ride platform available for Android and iOS smart phones. We worked on the server, an Android and iOS client as a group of 6. 2 people for each task. My task was &#8230; <a href="http://www.crisi.ch/dailyconnect/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>My bachelor thesis, DailyConnect, is a hitch a ride platform available for Android and iOS smart phones.</p>
<p>We worked on the server, an Android and iOS client as a group of 6. 2 people for each task. My task was to create the Android client app with my work mate and all the graphics we needed for the Android and iOS app.</p>
<p><a href="http://www.crisi.ch/wp-content/uploads/2012/03/dailyconnect_user.png" rel="lightbox[29]" title="User"><img class="size-thumbnail wp-image-39 alignnone" title="User" src="http://www.crisi.ch/wp-content/uploads/2012/03/dailyconnect_user-150x150.png" alt="" width="150" height="150" /></a><a href="http://www.crisi.ch/wp-content/uploads/2012/03/dailyconnect_my_loading.png" rel="lightbox[29]" title="MyRoutes Loading"><img class="alignnone size-thumbnail wp-image-38" title="MyRoutes Loading" src="http://www.crisi.ch/wp-content/uploads/2012/03/dailyconnect_my_loading-150x150.png" alt="" width="150" height="150" /></a><a href="http://www.crisi.ch/wp-content/uploads/2012/03/dailyconnect_my.png" rel="lightbox[29]" title="MyRoutes"><img class="alignnone size-thumbnail wp-image-36" title="MyRoutes" src="http://www.crisi.ch/wp-content/uploads/2012/03/dailyconnect_my-150x150.png" alt="" width="150" height="150" /></a><a href="http://www.crisi.ch/wp-content/uploads/2012/03/dailyconnect_my_detail.png" rel="lightbox[29]" title="MyRoute Details"><img class="alignnone size-thumbnail wp-image-37" title="MyRoute Details" src="http://www.crisi.ch/wp-content/uploads/2012/03/dailyconnect_my_detail-150x150.png" alt="" width="150" height="150" /></a><a href="http://www.crisi.ch/wp-content/uploads/2012/03/dailyconnect_help.png" rel="lightbox[29]" title="Help"><img class="alignnone size-thumbnail wp-image-35" title="Help" src="http://www.crisi.ch/wp-content/uploads/2012/03/dailyconnect_help-150x150.png" alt="" width="150" height="150" /></a><a href="http://www.crisi.ch/wp-content/uploads/2012/03/dailyconnect_create.png" rel="lightbox[29]" title="Create Route"><img class="alignnone size-thumbnail wp-image-33" title="Create Route" src="http://www.crisi.ch/wp-content/uploads/2012/03/dailyconnect_create-150x150.png" alt="" width="150" height="150" /></a><a href="http://www.crisi.ch/wp-content/uploads/2012/03/dailyconnect_dash.png" rel="lightbox[29]" title="Dashboard"><img class="alignnone size-thumbnail wp-image-34" title="Dashboard" src="http://www.crisi.ch/wp-content/uploads/2012/03/dailyconnect_dash-150x150.png" alt="" width="150" height="150" /></a></p>
<ul>
<li><a href="http://www.myblueplanet.ch/community/index.php?page=projectdetails&amp;project=6&amp;view=article">DailyConnect wins climate protection award 2011</a></li>
<li><a href="https://tat.zhaw.ch/padaPub/Dispatcher.jsp?redir=op%3Ddoc%26id%3D11508&amp;lang=en">English abstract</a></li>
<li><a href="https://tat.zhaw.ch/padaPub/Dispatcher.jsp?redir=op%3Ddoc%26id%3D11508&amp;lang=de">German abstract</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.crisi.ch/dailyconnect/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>GlowJump</title>
		<link>http://www.crisi.ch/glowjump/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=glowjump</link>
		<comments>http://www.crisi.ch/glowjump/#comments</comments>
		<pubDate>Wed, 28 Mar 2012 18:09:34 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Portfolio]]></category>
		<category><![CDATA[2011]]></category>
		<category><![CDATA[Actionscript 3]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[Dreamweaver]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[FlashDevelop]]></category>
		<category><![CDATA[GlowJump]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[jQuery]]></category>

		<guid isPermaLink="false">http://root.stylicious.ch/crisi_wp/?p=26</guid>
		<description><![CDATA[GlowJump is a flash game I created for a school project. To the game]]></description>
			<content:encoded><![CDATA[<p>GlowJump is a flash game I created for a school project.</p>
<p><a href="http://glowjump.crisi.ch/">To the game</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.crisi.ch/glowjump/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>DLGPad</title>
		<link>http://www.crisi.ch/dlgpad/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=dlgpad</link>
		<comments>http://www.crisi.ch/dlgpad/#comments</comments>
		<pubDate>Wed, 28 Mar 2012 18:06:23 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Portfolio]]></category>
		<category><![CDATA[2011]]></category>
		<category><![CDATA[DotA]]></category>
		<category><![CDATA[Greasemonkey]]></category>
		<category><![CDATA[Javascript]]></category>

		<guid isPermaLink="false">http://root.stylicious.ch/crisi_wp/?p=21</guid>
		<description><![CDATA[Greasemonkey blacklist tool for the DotAlicious Gaming Community. Download the script]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.greasespot.net/">Greasemonkey </a>blacklist tool for the <a href="http://www.dotalicious-gaming.com/">DotAlicious Gaming Community</a>.</p>
<p><a href="http://userscripts.org/scripts/show/117723">Download the script</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.crisi.ch/dlgpad/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ZSG GeoTagging</title>
		<link>http://www.crisi.ch/zsg-geotagging/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=zsg-geotagging</link>
		<comments>http://www.crisi.ch/zsg-geotagging/#comments</comments>
		<pubDate>Wed, 28 Mar 2012 19:59:07 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Portfolio]]></category>
		<category><![CDATA[2010]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[Dreamweaver]]></category>
		<category><![CDATA[Google Web Toolkit]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[NetBeans]]></category>
		<category><![CDATA[Photoshop]]></category>

		<guid isPermaLink="false">http://root.stylicious.ch/crisi_wp/?p=14</guid>
		<description><![CDATA[A web interface for the geo tagged fleet of the Zürichsee Schifffahrtsgesellschaft. I did this project thesis at school at the end of the second year.]]></description>
			<content:encoded><![CDATA[<p>A web interface for the geo tagged fleet of the Zürichsee Schifffahrtsgesellschaft. I did this project thesis at school at the end of the second year.</p>
<p><a href="http://root.stylicious.ch/crisi_wp/wp-content/uploads/2012/03/geotagging.png" rel="lightbox[14]" title="ZSG GeoTagging"><img class="alignnone size-large wp-image-15" title="ZSG GeoTagging" src="http://root.stylicious.ch/crisi_wp/wp-content/uploads/2012/03/geotagging-391x1024.png" alt="" width="391" height="1024" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.crisi.ch/zsg-geotagging/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Launchy Skin</title>
		<link>http://www.crisi.ch/launchy-skin/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=launchy-skin</link>
		<comments>http://www.crisi.ch/launchy-skin/#comments</comments>
		<pubDate>Wed, 28 Mar 2012 19:50:25 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Portfolio]]></category>
		<category><![CDATA[2010]]></category>
		<category><![CDATA[Launchy]]></category>
		<category><![CDATA[Photoshop]]></category>

		<guid isPermaLink="false">http://root.stylicious.ch/crisi_wp/?p=4</guid>
		<description><![CDATA[A skin for the open source keystroke launcher Launchy. Download]]></description>
			<content:encoded><![CDATA[<p>A skin for the open source keystroke launcher <a href="http://www.launchy.net/">Launchy</a>.</p>
<p><a href="http://root.stylicious.ch/crisi_wp/wp-content/uploads/2012/03/launchyskin.png" rel="lightbox[4]" title="Launchy Skin"><img class="alignnone size-medium wp-image-6" title="Launchy Skin" src="http://root.stylicious.ch/crisi_wp/wp-content/uploads/2012/03/launchyskin-300x112.png" alt="" width="300" height="112" /></a></p>
<p><a href="http://root.stylicious.ch/crisi_wp/wp-content/uploads/2012/03/launchyskin.zip">Download</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.crisi.ch/launchy-skin/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

