<?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>Tamás Gál&#039;s Blog</title>
	<atom:link href="http://tamasgal.com/wordpress/feed/" rel="self" type="application/rss+xml" />
	<link>http://tamasgal.com/wordpress</link>
	<description>Everyone&#039;s pink on the inside!</description>
	<lastBuildDate>Thu, 10 May 2012 06:22:41 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>Diploma exams done…</title>
		<link>http://tamasgal.com/wordpress/2012/05/diploma-exams-done/</link>
		<comments>http://tamasgal.com/wordpress/2012/05/diploma-exams-done/#comments</comments>
		<pubDate>Thu, 10 May 2012 06:22:41 +0000</pubDate>
		<dc:creator>Tom</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Physics]]></category>

		<guid isPermaLink="false">http://tamasgal.com/wordpress/?p=146</guid>
		<description><![CDATA[Haha]]></description>
			<content:encoded><![CDATA[<p>Haha <img src='http://tamasgal.com/wordpress/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://tamasgal.com/wordpress/2012/05/diploma-exams-done/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>./desc &#8211; quickly describe your files</title>
		<link>http://tamasgal.com/wordpress/2012/03/desc-quickly-describe-your-files/</link>
		<comments>http://tamasgal.com/wordpress/2012/03/desc-quickly-describe-your-files/#comments</comments>
		<pubDate>Sat, 03 Mar 2012 09:54:10 +0000</pubDate>
		<dc:creator>Tom</dc:creator>
				<category><![CDATA[YASDUT]]></category>
		<category><![CDATA[bash]]></category>
		<category><![CDATA[file-management]]></category>
		<category><![CDATA[unix]]></category>

		<guid isPermaLink="false">http://tamasgal.com/wordpress/?p=137</guid>
		<description><![CDATA[Everytime I work on scientific projects, I deal with a massive amount of measurement data, lists and fragments of them etc. The problem is, that after several days or weeks, my &#8220;descriptive&#8221; filenames aren&#8217;t that descriptive anymore and I simply don&#8217;t have a clue what I did and what&#8217;s in the file. I thought it &#8230; <a href="http://tamasgal.com/wordpress/2012/03/desc-quickly-describe-your-files/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Everytime I work on scientific projects, I deal with a massive amount of measurement data, lists and fragments of them etc. The problem is, that after several days or weeks, my &#8220;descriptive&#8221; filenames aren&#8217;t that descriptive anymore and I simply don&#8217;t have a clue what I did and what&#8217;s in the file. I thought it would be nice, if there was a database which holds files descriptions.</p>
<p>I came up with a tiny script which I placed in ~/bin (part of my $PATH) and called it &#8220;desc&#8221;. If you run it when you&#8217;re in a specific directory where you want to store description data for some files, simple type:</p>
<p>desc yourFileToDescribe</p>
<p>…and you will be promted to enter a description. The description is then stored in ./.DESCRIPTION.db and can be accessed via the &#8220;desc&#8221;-script anytime you&#8217;re in the working directory.</p>
<p>Here is the script, just try it out:</p>
<p><code>#!/bin/bash<br />
# Tamas Gal - http://tamasgal.com<br />
# desc v0.1<br />
# this script creates a file-description-entry in ./.DESCRIPTION.db </p>
<p>FILE_TO_DESCRIBE=$1<br />
FILE_DESCRIPTION=<br />
DESCRIPTION_FILE="`pwd`/.DESCRIPTION.db"</p>
<p>if (( ${#FILE_TO_DESCRIBE} == "0"  )) ; then<br />
  if [ -e $DESCRIPTION_FILE ] ; then<br />
    cat $DESCRIPTION_FILE<br />
    exit<br />
  fi<br />
  echo "No description(s) available."<br />
  exit<br />
fi </p>
<p>if [ -e $DESCRIPTION_FILE ] ; then<br />
  if (( `grep "$FILE_TO_DESCRIBE: " $DESCRIPTION_FILE | wc -l` > "0" )) ; then<br />
    echo "`grep "$FILE_TO_DESCRIBE: " $DESCRIPTION_FILE`"<br />
    read -p "Edit (y/n)? "<br />
    [ "$REPLY" == "y" ] || exit<br />
  fi<br />
fi</p>
<p>echo "Enter description for '$FILE_TO_DESCRIBE':"<br />
read FILE_DESCRIPTION</p>
<p>if (( ${#FILE_DESCRIPTION} != "0" )) ; then<br />
  grep -v "$FILE_TO_DESCRIBE: " $DESCRIPTION_FILE > "$DESCRIPTION_FILE.tmp"<br />
  mv "$DESCRIPTION_FILE.tmp" $DESCRIPTION_FILE<br />
  echo "$FILE_TO_DESCRIBE: $FILE_DESCRIPTION" >> $DESCRIPTION_FILE<br />
  echo "done"<br />
fi<br />
</code></p>
]]></content:encoded>
			<wfw:commentRss>http://tamasgal.com/wordpress/2012/03/desc-quickly-describe-your-files/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>GCC in Mac OS X 10.8 Mountain Lion – Xcode 4.3 / Xcode 4.4</title>
		<link>http://tamasgal.com/wordpress/2012/02/gcc-in-mac-os-x-10-8-mountain-lion-xcode-4-3-xcode-4-4/</link>
		<comments>http://tamasgal.com/wordpress/2012/02/gcc-in-mac-os-x-10-8-mountain-lion-xcode-4-3-xcode-4-4/#comments</comments>
		<pubDate>Wed, 22 Feb 2012 19:40:26 +0000</pubDate>
		<dc:creator>Tom</dc:creator>
				<category><![CDATA[Mac]]></category>
		<category><![CDATA[mountain lion]]></category>
		<category><![CDATA[xcode]]></category>

		<guid isPermaLink="false">http://tamasgal.com/wordpress/?p=132</guid>
		<description><![CDATA[Hah! So since I’m a registered developer, I installed the preview version of Mac OS X 10.8 Mountain Lion and of course Xcode 4.4 developer preview. The operating system is stable as hell Lion, although Safari doesn’t like to parse RSS feeds Today I wanted to compile the latest yarick release to do some simulations in quantum physics and &#8230; <a href="http://tamasgal.com/wordpress/2012/02/gcc-in-mac-os-x-10-8-mountain-lion-xcode-4-3-xcode-4-4/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Hah! So since I’m a registered developer, I installed the preview version of Mac OS X 10.8 Mountain Lion and of course Xcode 4.4 developer preview.</p>
<p>The operating system is stable as <span style="text-decoration: line-through;">hell</span> Lion, although Safari doesn’t like to parse RSS feeds <img src='http://tamasgal.com/wordpress/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
<p>Today I wanted to compile the latest <a title="yorick" href="http://sourceforge.net/projects/yorick/files/">yarick</a> release to do some simulations in quantum physics and discovered that neither cc nor gcc are located in “/usr/bin”. Instead they’re now inside the Xcode.app folder (which is normally located in “/Applications”).</p>
<p>Well, you can set the $PATH variable of your BASH/CSH-enviroment with (for bash):<br />
<code>export PATH=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:$PATH</code><br />
Just put that line into your .profile or .bash_profile and you’re fine.</p>
<p>Unfortunately you’re not fine at all, if you need the “non-llvm”-version of gcc. This has disappeared in Mountain Lion. Hah! Get MacPorts and install the gnu-gcc if you need it <img src='http://tamasgal.com/wordpress/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://tamasgal.com/wordpress/2012/02/gcc-in-mac-os-x-10-8-mountain-lion-xcode-4-3-xcode-4-4/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Preparing for the next exam in theoretical physics</title>
		<link>http://tamasgal.com/wordpress/2012/01/preparing-for-the-next-exam-in-theoretical-physics/</link>
		<comments>http://tamasgal.com/wordpress/2012/01/preparing-for-the-next-exam-in-theoretical-physics/#comments</comments>
		<pubDate>Tue, 24 Jan 2012 00:46:51 +0000</pubDate>
		<dc:creator>Tom</dc:creator>
				<category><![CDATA[Physics]]></category>
		<category><![CDATA[exam]]></category>
		<category><![CDATA[learning]]></category>

		<guid isPermaLink="false">http://tamasgal.com/wordpress/?p=121</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p><a href="http://tamasgal.com/wordpress/wp-content/uploads/20120124-014434.jpg"><img src="http://tamasgal.com/wordpress/wp-content/uploads/20120124-014434.jpg" alt="20120124-014434.jpg" class="alignnone size-full" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://tamasgal.com/wordpress/2012/01/preparing-for-the-next-exam-in-theoretical-physics/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Funny Dubstep Videos</title>
		<link>http://tamasgal.com/wordpress/2012/01/funny-dubstep-videos/</link>
		<comments>http://tamasgal.com/wordpress/2012/01/funny-dubstep-videos/#comments</comments>
		<pubDate>Tue, 24 Jan 2012 00:41:24 +0000</pubDate>
		<dc:creator>Tom</dc:creator>
				<category><![CDATA[Fun]]></category>
		<category><![CDATA[beatbox]]></category>
		<category><![CDATA[dubstep]]></category>
		<category><![CDATA[fun]]></category>
		<category><![CDATA[music]]></category>

		<guid isPermaLink="false">http://tamasgal.com/wordpress/?p=115</guid>
		<description><![CDATA[On the one hand, I still didn&#8217;t figure out whether I like or hate dub step, on the other hand, I&#8217;m complete sure that I love funny videos which are related to dub step Here are some funny or remarkable dub step videos… Awesome Dubstep Commercial Harry Potter Pole Dance]]></description>
			<content:encoded><![CDATA[<p>On the one hand, I still didn&#8217;t figure out whether I like or hate dub step, on the other hand, I&#8217;m complete sure that I love funny videos which are related to dub step <img src='http://tamasgal.com/wordpress/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' />  Here are some funny or remarkable dub step videos…</p>
<p><iframe src="http://www.youtube.com/embed/JEcj2xi9Ctc" frameborder="0" width="420" height="315"></iframe></p>
<p><iframe width="420" height="315" src="http://www.youtube.com/embed/puZJA2qKBsw" frameborder="0" allowfullscreen></iframe></p>
<p><iframe width="420" height="315" src="http://www.youtube.com/embed/ER__nvaz9xM" frameborder="0" allowfullscreen></iframe></p>
<p>Awesome Dubstep Commercial</p>
<p><iframe width="420" height="315" src="http://www.youtube.com/embed/-2fqGqpzHt8" frameborder="0" allowfullscreen></iframe></p>
<p>Harry Potter Pole Dance</p>
<p><iframe width="420" height="315" src="http://www.youtube.com/embed/bbB2hiqn3sA" frameborder="0" allowfullscreen></iframe></p>
]]></content:encoded>
			<wfw:commentRss>http://tamasgal.com/wordpress/2012/01/funny-dubstep-videos/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Finally: ChronoSlider 2.0 released ;-)</title>
		<link>http://tamasgal.com/wordpress/2012/01/finally-chronoslider-2-0-released/</link>
		<comments>http://tamasgal.com/wordpress/2012/01/finally-chronoslider-2-0-released/#comments</comments>
		<pubDate>Fri, 20 Jan 2012 09:24:33 +0000</pubDate>
		<dc:creator>Tom</dc:creator>
				<category><![CDATA[ChronoSlider]]></category>
		<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://tamasgal.com/wordpress/?p=111</guid>
		<description><![CDATA[OK guys, it took nearly forever, but I finally managed to put it out. I hope you like it and waiting for you feedback! Of course, the update is free for everyone who already have purchased ChronoSlider before More infos: ChronoSlider &#160; &#160; &#160; &#160;]]></description>
			<content:encoded><![CDATA[<p>OK guys, it took nearly forever, but I finally managed to put it out. I hope you like it and waiting for you feedback! <img src='http://tamasgal.com/wordpress/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>Of course, the update is free for everyone who already have purchased ChronoSlider before <img src='http://tamasgal.com/wordpress/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
<p>More infos: <a title="ChronoSlider" href="http://tamasgal.com/mac/chronoslider">ChronoSlider</a></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://tamasgal.com/wordpress/2012/01/finally-chronoslider-2-0-released/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>ChronoSlider 2.0 is on the way!</title>
		<link>http://tamasgal.com/wordpress/2012/01/chronoslider-2-0-is-on-the-way/</link>
		<comments>http://tamasgal.com/wordpress/2012/01/chronoslider-2-0-is-on-the-way/#comments</comments>
		<pubDate>Wed, 18 Jan 2012 00:56:03 +0000</pubDate>
		<dc:creator>Tom</dc:creator>
				<category><![CDATA[ChronoSlider]]></category>
		<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://tamasgal.com/wordpress/?p=105</guid>
		<description><![CDATA[The closed beta is closed (haha), app is submitted and now waiting for review… And here is a sneak peek I hope you&#8217;ll like it!]]></description>
			<content:encoded><![CDATA[<p>The closed beta is closed (haha), app is submitted and now waiting for review…</p>
<p>And here is a sneak peek <img src='http://tamasgal.com/wordpress/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' />  I hope you&#8217;ll like it!</p>
<div id="attachment_106" class="wp-caption alignnone" style="width: 610px"><a href="http://tamasgal.com/wordpress/wp-content/uploads/ChronoSlider.2.0.png"><img class="size-full wp-image-106" title="ChronoSlider 2.0" src="http://tamasgal.com/wordpress/wp-content/uploads/ChronoSlider.2.0.png" alt="ChronoSlider 2.0 coming soon!" width="600" height="474" /></a><p class="wp-caption-text">ChronoSlider 2.0 coming soon!</p></div>
]]></content:encoded>
			<wfw:commentRss>http://tamasgal.com/wordpress/2012/01/chronoslider-2-0-is-on-the-way/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ChronoSlider 2.0 closed beta started!</title>
		<link>http://tamasgal.com/wordpress/2012/01/chronoslider-2-0-closed-beta-started/</link>
		<comments>http://tamasgal.com/wordpress/2012/01/chronoslider-2-0-closed-beta-started/#comments</comments>
		<pubDate>Mon, 16 Jan 2012 10:24:00 +0000</pubDate>
		<dc:creator>Tom</dc:creator>
				<category><![CDATA[ChronoSlider]]></category>

		<guid isPermaLink="false">http://tamasgal.com/wordpress/?p=101</guid>
		<description><![CDATA[Only a few days and ChronoSlider 2.0 will be available on the Mac App Store. The closed beta has started! Unfortunately it will be Lion only but since it is distributed over the Mac App Store, I hope that most of you have already upgraded! So see ya! (got to learn theoretical physics )]]></description>
			<content:encoded><![CDATA[<p>Only a few days and ChronoSlider 2.0 will be available on the Mac App Store. The closed beta has started!</p>
<p>Unfortunately it will be Lion only but since it is distributed over the Mac App Store, I hope that most of you have already upgraded!</p>
<p>So see ya! (got to learn theoretical physics <img src='http://tamasgal.com/wordpress/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' />  )</p>
]]></content:encoded>
			<wfw:commentRss>http://tamasgal.com/wordpress/2012/01/chronoslider-2-0-closed-beta-started/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ChronoSlider 1.1.2 is waiting for review!</title>
		<link>http://tamasgal.com/wordpress/2011/12/chronoslider-1-1-2-is-waiting-for-review/</link>
		<comments>http://tamasgal.com/wordpress/2011/12/chronoslider-1-1-2-is-waiting-for-review/#comments</comments>
		<pubDate>Thu, 01 Dec 2011 15:58:00 +0000</pubDate>
		<dc:creator>Tom</dc:creator>
				<category><![CDATA[ChronoSlider]]></category>
		<category><![CDATA[AppStore]]></category>
		<category><![CDATA[chronoslider]]></category>

		<guid isPermaLink="false">http://tamasgal.com/wordpress/?p=92</guid>
		<description><![CDATA[The next big update of ChronoSlider will only support Mac OS X 10.7 (Lion), since I&#8217;m working on iCloud support and using some awesome new features of the new operating system. That&#8217;s why I decided to put up a quick minor update before releasing the new major version, since there were some annoying memory leaks &#8230; <a href="http://tamasgal.com/wordpress/2011/12/chronoslider-1-1-2-is-waiting-for-review/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>The next big update of ChronoSlider will only support Mac OS X 10.7 (Lion), since I&#8217;m working on iCloud support and using some awesome new features of the new operating system.</p>
<p>That&#8217;s why I decided to put up a quick minor update before releasing the new major version, since there were some annoying memory leaks and some highly requested features which I really want to have in the Snow Leopard version, for those who won&#8217;t update to Lion.</p>
<p>Besides a huge code optimization, the main new features are setting a quick alarm without an alarm text (using right click when choosing the time) and repeating alarm sounds.</p>
<p>I hope you&#8217;ll like it!</p>
]]></content:encoded>
			<wfw:commentRss>http://tamasgal.com/wordpress/2011/12/chronoslider-1-1-2-is-waiting-for-review/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>YASDUT #4 (Line Numbering)</title>
		<link>http://tamasgal.com/wordpress/2011/11/yasdut-4-line-numbering/</link>
		<comments>http://tamasgal.com/wordpress/2011/11/yasdut-4-line-numbering/#comments</comments>
		<pubDate>Sun, 13 Nov 2011 18:18:39 +0000</pubDate>
		<dc:creator>Tom</dc:creator>
				<category><![CDATA[YASDUT]]></category>

		<guid isPermaLink="false">http://tamasgal.com/wordpress/?p=87</guid>
		<description><![CDATA[YASDUT #4 Line Numbering To add line numbering to an existing file, you can simply use &#8216;nl&#8217; which adds line number to a given input text and redirect the output to a new file: nl foo.bar > foo.bar.num Read the man pages for more options!]]></description>
			<content:encoded><![CDATA[<p>YASDUT #4</p>
<p><strong>Line Numbering</strong></p>
<p><em>To add line numbering to an existing file, you can simply use &#8216;nl&#8217; which adds line number to a given input text and redirect the output to a new file:</em></p>
<p><code>nl foo.bar > foo.bar.num</code></p>
<p>Read the man pages for more options!</p>
]]></content:encoded>
			<wfw:commentRss>http://tamasgal.com/wordpress/2011/11/yasdut-4-line-numbering/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

