<?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>Life is life &#187; thoughts</title>
	<atom:link href="http://salomie.ro/tudor/category/thoughts/feed/" rel="self" type="application/rss+xml" />
	<link>http://salomie.ro/tudor</link>
	<description>Tudor-Ioan Salomie</description>
	<lastBuildDate>Fri, 22 Jan 2010 09:00:23 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Preparing exams in latex</title>
		<link>http://salomie.ro/tudor/2010/01/21/preparing-exams-in-latex/</link>
		<comments>http://salomie.ro/tudor/2010/01/21/preparing-exams-in-latex/#comments</comments>
		<pubDate>Thu, 21 Jan 2010 15:20:20 +0000</pubDate>
		<dc:creator>salo</dc:creator>
				<category><![CDATA[thoughts]]></category>
<category></category><category></category><category></category><category></category><category></category><category></category><category></category>
		<guid isPermaLink="false">http://salomie.ro/tudor/?p=144</guid>
		<description><![CDATA[In the past days I was busy writing up an (actually typesetting) an exam for the course I was TA-ing during Autumn. Although not very time consuming, I realized that knowing a couple of tricks might make you a lot more productive! Here are some of the tricks that I found while writing the exam [...]]]></description>
			<content:encoded><![CDATA[<p>In the past days I was busy writing up an (actually typesetting) an exam for the course I was TA-ing during Autumn. Although not very time consuming, I realized that knowing a couple of tricks might make you a lot more productive! Here are some of the tricks that I found while writing the exam in latex.</p>
<p>Define a simple structure for each question that you put in there. You should have such a block for each question.</p>
<blockquote><p><strong><em>% &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</em><br />
\section*{Question 1 (5 points) }<br />
Here you can ask the weird question &#8230;<br />
<em>%Time: \textit{5 minutes}</em><br />
\newline \textcolor{blue}{Answer:<br />
This is the right answer to the weird question!}<br />
\vspace{40mm}</strong></p></blockquote>
<p>Use latex counters (really cool!) to generate the question number. This way you are sure to have all the questions numbered correctly even if you move them around or add/remove some.</p>
<blockquote><p><em>% &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;<br />
% Set-up question number auto-generation.<br />
% Just use \arabic{question} to insert the question number (auto-incremented value) and use \stepcounter{question} to go to next value.<br />
% Each time a question is commented out, the questions will be re-numbered correctly.</em><br />
<strong>\newcounter{question}<br />
\setcounter{question}{0}</strong></p>
<p><em>% &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;<br />
% The above question block becomes:<br />
% &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</em><br />
<strong>\stepcounter{question}</strong><br />
\section*{Question <strong>\arabic{question}</strong> (5 points) }<br />
Here you can ask the weird question &#8230;<br />
<em>%Time: \textit{5 minutes}</em><br />
\newline \textcolor{blue}{Answer:<br />
This is the right answer to the weird question!}<br />
\vspace{40mm}</p></blockquote>
<p>Use conditionals (if-then-else) to easily toggle on and off the generation of the answers in the final .pdf. When working on the exam questions it&#8217;s good to have the answers there so that you can calibrate the time required for each question, but you don&#8217;t want the answers there for the final print-outs! Also, having the answers in there can be quite helpful during grading.</p>
<blockquote><p><strong>\usepackage{ifthen}</strong></p>
<p><em><br />
%&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;<br />
% We can use the \answers command defined below to control if the answers to the questions are generated or not in the PDF<br />
% Should we include the answers in the PDF or not?<br />
% Setting the value to _false _ will not generate answers while setting it to _true_ will generate the answers</em><br />
<strong>\newcommand{\answers}[0]{false}</strong></p>
<p><em>% &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;<br />
% The above question block becomes:<br />
% &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</em><br />
\stepcounter{question}<br />
\section*{Question \arabic{question} (5 points) }<br />
Here you can ask the weird question &#8230;<br />
<em>%Time: \textit{5 minutes}</em><br />
<strong>\ifthenelse{\equal{\answers}{true}}{</strong>\newline \textcolor{blue}{Answer:<br />
This is the right answer to the weird question!}<strong>}{}</strong><br />
\vspace{40mm}</p></blockquote>
<p>Comment out questions that you don&#8217;t need rather then deleting them &#8211; who knows when you might need them! Also for commenting out questions use LaTeX block commenting rather than per-line comments!</p>
<blockquote><p><strong>\usepackage{verbatim}</strong><br />
<em><br />
% &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;<br />
% The above question block becomes:<br />
% &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</em><br />
<strong>\begin{comment}</strong><br />
<em>\stepcounter{question}<br />
\section*{Question \arabic{question} (5 points) }<br />
Here you can ask the weird question &#8230;<br />
</em> <em>%Time: \textit{5 minutes}<br />
\ifthenelse{\equal{\answers}{true}}{\newline \textcolor{blue}{Answer:<br />
This is the right answer to the weird question!}}{}<br />
\vspace{40mm}</em><br />
<strong>\end{comment}</strong></p></blockquote>
<p>Doing the total points from all the active question is also simple. We define two counters &#8211; one for the total points and one for the total number of questions, as well as the command &#8220;points&#8221; that sums up things in the two new counters.</p>
<blockquote><p><strong>\newcounter{totalpoints}<br />
\setcounter{totalpoints}{0}<br />
\newcounter{totalquestions}<br />
\setcounter{totalquestions}{0}<br />
\newcommand{\points}[1]{#1\addtocounter{totalpoints}{#1}\addtocounter{totalquestions}{1}}</strong></p>
<p><em>% &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;<br />
% The above question block becomes:<br />
% &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;<br />
</em>\stepcounter{question}<br />
\section*{Question \arabic{question} (<strong>\points{5}</strong> points) }<br />
Here you can ask the weird question &#8230;<br />
<em>%Time: \textit{5 minutes}</em><br />
\ifthenelse{\equal{\answers}{true}}{\newline \textcolor{blue}{Answer:<br />
This is the right answer to the weird question!}}{}<br />
\vspace{40mm}</p>
<p><em>% &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;<br />
% after all the other questions<br />
% &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</em></p>
<p>The exam has a total of <strong>\value{totalquestions</strong>} questions that are worth <strong>\value{totalpoints</strong>} points.</p></blockquote>
<p>[Photo credit: http://www.flickr.com/photos/osucommons/3946087716/, under no known copyright restrictions]</p>
]]></content:encoded>
			<wfw:commentRss>http://salomie.ro/tudor/2010/01/21/preparing-exams-in-latex/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Brushing up some C++</title>
		<link>http://salomie.ro/tudor/2010/01/18/brushing-up-some-c/</link>
		<comments>http://salomie.ro/tudor/2010/01/18/brushing-up-some-c/#comments</comments>
		<pubDate>Mon, 18 Jan 2010 16:17:46 +0000</pubDate>
		<dc:creator>salo</dc:creator>
				<category><![CDATA[it]]></category>
		<category><![CDATA[thoughts]]></category>
<category></category><category></category><category></category><category></category><category></category><category></category><category></category>
		<guid isPermaLink="false">http://salomie.ro/tudor/?p=139</guid>
		<description><![CDATA[It&#8217;s been a while since I didn&#8217;t write some C/C++ code, and as it turns out, I will be starting work on a C++ project.
So before going into the actual project, I took up some tasks:

Get some reading done on C++ to brush up things
Get the dev environment working

The two books that I started to [...]]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s been a while since I didn&#8217;t write some C/C++ code, and as it turns out, I will be starting work on a C++ project.</p>
<p>So before going into the actual project, I took up some tasks:</p>
<ul>
<li>Get some reading done on C++ to brush up things</li>
<li>Get the dev environment working</li>
</ul>
<p>The two books that I started to read are both by <a href="http://www.aristeia.com/" target="_blank" onclick="javascript:urchinTracker ('/outbound/article/www.aristeia.com');">Scott Meyers</a> &#8220;<a href="http://www.amazon.com/gp/product/0321334876?ie=UTF8&amp;tag=aristeia.com-20&amp;linkCode=as2&amp;camp=1789&amp;creative=9325&amp;creativeASIN=0321334876" target="_blank" onclick="javascript:urchinTracker ('/outbound/article/www.amazon.com');">Effective C++: 55 Specific Ways to Improve Your Programs and Designs</a>&#8221; and &#8220;<a href="http://www.amazon.com/gp/product/020163371X?ie=UTF8tag=aristeia.com-20linkCode=as2camp=1789creative=9325creativeASIN=020163371X" target="_blank" onclick="javascript:urchinTracker ('/outbound/article/www.amazon.com');">More Effective C++: 35 New Ways to Improve Your Programs and Designs</a>&#8220;. Also I took a C++ Primer on the desk &#8220;just in case&#8221;. Both of them are great lecture and go straight to the sweet-spot &#8211; no beating around the bush.</p>
<p>Next, I came the dev environment set-up, where I took the following decisions:</p>
<ul>
<li>Use Eclipse CDT</li>
<li>Use <a href="http://www.boost.org/"title="Boost Libraries"  target="_blank" onclick="javascript:urchinTracker ('/outbound/article/www.boost.org');">Boost (v 1.40)</a> libraries for extra stuff</li>
<li>Constantly build both <strong>x86</strong> and <strong>x86_64</strong> branches
<ul>
<li> Have cross compile on Ubuntu</li>
<li> Use gcc <strong>-m32</strong> or respectively <strong>-m64</strong> to compile</li>
<li> Get the Boost libraries (both shared objects <strong>.so</strong> and statically linkable ones <strong>.a</strong>) for both 32 and 64 bit set-up in <strong>/usr/lib</strong> and <strong>/usr/lib64</strong></li>
</ul>
</li>
<li>Go with statically linked libraries as much as possible (as it keeps the library mess at a lower overhead in a cluster set-up)</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://salomie.ro/tudor/2010/01/18/brushing-up-some-c/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>TEDx Bucharest</title>
		<link>http://salomie.ro/tudor/2009/11/27/tedx-bucharest/</link>
		<comments>http://salomie.ro/tudor/2009/11/27/tedx-bucharest/#comments</comments>
		<pubDate>Fri, 27 Nov 2009 12:58:18 +0000</pubDate>
		<dc:creator>salo</dc:creator>
				<category><![CDATA[thoughts]]></category>

		<guid isPermaLink="false">http://salomie.ro/tudor/?p=119</guid>
		<description><![CDATA[Taking the TED model but in an independent fashion (TEDx), we had this autumn a TEDx event in Bucharest.
I&#8217;m really sorry I could not attend, but luckily, the videos are now online at tedxbucharest.com.
Among the speakers: Bogdan Naumovici, Dumitru Popescu and Mircea Toma.
Enjoy TEDx and TED!
]]></description>
			<content:encoded><![CDATA[<p>Taking the <a href="http://www.ted.com" target="_blank" onclick="javascript:urchinTracker ('/outbound/article/www.ted.com');">TED</a> model but in an independent fashion (TEDx), we had this autumn a TEDx event in Bucharest.<br />
I&#8217;m really sorry I could not attend, but luckily, the videos are now online at <a href="http://www.tedxbucharest.com/" target="_blank" onclick="javascript:urchinTracker ('/outbound/article/www.tedxbucharest.com');">tedxbucharest.com</a>.</p>
<p>Among the speakers: Bogdan Naumovici, Dumitru Popescu and Mircea Toma.</p>
<p>Enjoy TEDx and TED!</p>
]]></content:encoded>
			<wfw:commentRss>http://salomie.ro/tudor/2009/11/27/tedx-bucharest/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Kremlin Board Game</title>
		<link>http://salomie.ro/tudor/2009/10/14/the-kremlin-board-game/</link>
		<comments>http://salomie.ro/tudor/2009/10/14/the-kremlin-board-game/#comments</comments>
		<pubDate>Wed, 14 Oct 2009 06:34:56 +0000</pubDate>
		<dc:creator>salo</dc:creator>
				<category><![CDATA[thoughts]]></category>

		<guid isPermaLink="false">http://salomie.ro/tudor/2009/10/14/the-kremlin-board-game/</guid>
		<description><![CDATA[In context cu ce s-a intamplat pe la noi in ultima vreme, recomand cu caldura un super joc (in sensul clasic &#8211; adica nu online, nu pe calculator &#8211; ci pe masa). Jocul se numeste Kremlin. Cititi regulile si aplicati in contextul politic de azi &#8230; de-am avea si noi o Siberie &#8230;
]]></description>
			<content:encoded><![CDATA[<p>In context cu ce s-a intamplat pe la noi in ultima vreme, recomand cu caldura un super joc (in sensul clasic &#8211; adica nu online, nu pe calculator &#8211; ci pe masa). Jocul se numeste Kremlin. Cititi regulile si aplicati in contextul politic de azi &#8230; de-am avea si noi o Siberie &#8230;</p>
<div id="attachment_106" class="wp-caption aligncenter" style="width: 85px"><a href="http://www.boardgamegeek.com/boardgame/196" onclick="javascript:urchinTracker ('/outbound/article/www.boardgamegeek.com');"><img class="size-full wp-image-106" title="KremlinBoardGame" src="http://salomie.ro/tudor/wp-content/uploads/2009/11/KremlinBoardGame.jpg" alt="Kremlin Board Game" width="75" height="100" /></a><p class="wp-caption-text">Kremlin Board Game</p></div>
]]></content:encoded>
			<wfw:commentRss>http://salomie.ro/tudor/2009/10/14/the-kremlin-board-game/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Unifying my communication</title>
		<link>http://salomie.ro/tudor/2009/10/04/unifying-my-communication/</link>
		<comments>http://salomie.ro/tudor/2009/10/04/unifying-my-communication/#comments</comments>
		<pubDate>Sun, 04 Oct 2009 19:40:51 +0000</pubDate>
		<dc:creator>salo</dc:creator>
				<category><![CDATA[it]]></category>
		<category><![CDATA[it-fun]]></category>
		<category><![CDATA[thoughts]]></category>

		<guid isPermaLink="false">http://salomie.ro/tudor/2009/10/04/unifying-my-communication/</guid>
		<description><![CDATA[I&#8217;ve been trying to get all my communications into one place for a long time now, and went out and hacked all that could be hacked to get this. So, I tried:

Talk only of GTalk &#8211; this way I was able to get all my conversations into the gmail inbox. Well, this normally does not [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been trying to get all my communications into one place for a long time now, and went out and hacked all that could be hacked to get this. So, I tried:</p>
<ul>
<li>Talk only of GTalk &#8211; this way I was able to get all my conversations into the gmail inbox. Well, this normally does not work out due to human inertia. Of the people I frequently talk to too few actually use GTalk&#8230;</li>
<li>Use multiple transports (jabber feature). Well theory is nice, but practice proves to be different. All the tutorials and free servers out there that you can register with in order to get yahoo or msn transports in GTalk &#8211; well they work for one week (all of them) &#8220;its by design&#8221; i guess</li>
<li>Use Pidgin all over the place &#8211; office desktop, home laptop, home desktop any other mobile gadget I have around. Uhmmm &#8211; it works, it logs everything in plain text, but then how do I synch this different places? Well, I use Dropbox. This works nice, it&#8217;s ok &#8211; I can even access them online, but they are not in the same place with the emails, and i can not search them online (locally grep does wonders).</li>
<li>Skype? well just forget getting the logs out of Skype in a human readable form and sync-ing these over multiple machines &#8211; I gave it up.</li>
<li>SMS &#8211; that&#8217;s too out there. Can&#8217;t even envision doing that today.</li>
</ul>
<p>Now I&#8217;m at a loss &#8211; I&#8217;ll stop IM-ing and just tell people to mail me. Or I can spend endless hours coding up my own hammer that will knock out every nail, or I can wait for <a href="http://wave.google.com"title="Google Wave"  target="_blank" onclick="javascript:urchinTracker ('/outbound/article/wave.google.com');">Google Wave</a> maybe? Looks like it&#8217;s the hammer I could use for all these nails!</p>
<div id="scid:5737277B-5D6D-4f48-ABFC-DD9C333F4C5D:f1b4d245-98b9-4b00-8c4a-bc0935ac99cb" class="wlWriterEditableSmartContent" style="padding-bottom: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; float: none; padding-top: 0px">
<div><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="355" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="src" value="http://www.youtube.com/v/v_UyVmITiYQ&amp;hl=en" /><embed type="application/x-shockwave-flash" width="425" height="355" src="http://www.youtube.com/v/v_UyVmITiYQ&amp;hl=en"></embed></object></div>
</div>
<p>or:</p>
<div id="scid:5737277B-5D6D-4f48-ABFC-DD9C333F4C5D:bb58033e-e3e5-4fb7-b378-ad07e680996d" class="wlWriterEditableSmartContent" style="padding-bottom: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; float: none; padding-top: 0px">
<div><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="355" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="src" value="http://www.youtube.com/v/rDu2A3WzQpo&amp;hl=en" /><embed type="application/x-shockwave-flash" width="425" height="355" src="http://www.youtube.com/v/rDu2A3WzQpo&amp;hl=en"></embed></object></div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://salomie.ro/tudor/2009/10/04/unifying-my-communication/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Vacanta, lucru, semestru nou si un paper</title>
		<link>http://salomie.ro/tudor/2009/10/04/vacanta-lucru-semestru-nou-si-un-paper/</link>
		<comments>http://salomie.ro/tudor/2009/10/04/vacanta-lucru-semestru-nou-si-un-paper/#comments</comments>
		<pubDate>Sun, 04 Oct 2009 19:21:51 +0000</pubDate>
		<dc:creator>salo</dc:creator>
				<category><![CDATA[thoughts]]></category>

		<guid isPermaLink="false">http://salomie.ro/tudor/2009/10/04/vacanta-lucru-semestru-nou-si-un-paper/</guid>
		<description><![CDATA[Well &#8211; in ultima vreme am accelerat putin ritmul, m-am mutat din caminul in care stateam intr-un apartament mic si placut, am fost in vacanta prin Bulgaria &#8211; Nessebar. Daca nu v-am zis deja &#8211; merita mers.  Neaparat.

E o insula micuta pe coasta Bulgariei in Marea Neagra (a mi se ierta reclama facuta turismului Bulgar, [...]]]></description>
			<content:encoded><![CDATA[<p>Well &#8211; in ultima vreme am accelerat putin ritmul, m-am mutat din caminul in care stateam intr-un apartament mic si placut, am fost in vacanta prin Bulgaria &#8211; <a href="http://en.wikipedia.org/wiki/Nessebar"title="Nessebar"  target="_blank" onclick="javascript:urchinTracker ('/outbound/article/en.wikipedia.org');">Nessebar</a>. Daca nu v-am zis deja &#8211; merita mers.  Neaparat.</p>
<div id="scid:84E294D0-71C9-4bd0-A0FE-95764E0368D9:a3731756-eb5b-4af2-ba82-5d8191b215a6" class="wlWriterEditableSmartContent" style="padding-bottom: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; float: none; padding-top: 0px"><a href="http://www.bing.com/maps/default.aspx?v=2&amp;cp=42.65844~27.73314&amp;lvl=15&amp;style=h&amp;sp=aN.42.65902_27.73902_Plaja%2520superba!_&amp;mkt=en-us&amp;FORM=LLWR"id="map-c0acc5ee-3b98-45d7-8d74-95575e5ad272" title="View map"  onclick="javascript:urchinTracker ('/outbound/article/www.bing.com');"><img src="http://salomie.ro/tudor/wp-content/uploads/images/VacantaLucruSemestrunousiunpaper_12BBE/map6dc6ca805a9c.jpg" alt="Map picture" width="320" height="240" /></a></div>
<p>E o insula micuta pe coasta Bulgariei in Marea Neagra (a mi se ierta reclama facuta turismului Bulgar, dar calitatea serviciilor e peste ce avem noi) &#8211; total atipica pentru coasta Bulgara. Nu e stil Mamaia &#8211; e vechi, cu bun gust, putin refurbrished dar in rest lasat in timpul lui! Mancare undeva intre bucataria bulgara si cea mediteraneana, oameni primitori &#8211; ce mai!, un mic paradis!</p>
<p>Bun, dupa ceva delectare in soare si mare si mancare, back to #zh, inceput de semestru, un curs nou &#8211; Advanced Systems Lab &#8211; System Performance Evaluation &#8211; e foarte misto, si imi place la nebunie sa ma implic!</p>
<p>Apoi mi-am reluat lumea in cap si m-am apucat sa scriu un paper despre baze de date, sisteme multicore, scalbilitate, replicare, distributie &#8211; the normal buzzwords care dau bine intr-un paper :) Sa vedem ce iese &#8230; fingers crossed.</p>
<p>[Image is taken from http://www.flickr.com/photos/nationalmaritimemuseum/2843691060/]</p>
]]></content:encoded>
			<wfw:commentRss>http://salomie.ro/tudor/2009/10/04/vacanta-lucru-semestru-nou-si-un-paper/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Muzica buna!</title>
		<link>http://salomie.ro/tudor/2009/10/04/muzica-buna/</link>
		<comments>http://salomie.ro/tudor/2009/10/04/muzica-buna/#comments</comments>
		<pubDate>Sun, 04 Oct 2009 18:54:50 +0000</pubDate>
		<dc:creator>salo</dc:creator>
				<category><![CDATA[thoughts]]></category>

		<guid isPermaLink="false">http://salomie.ro/tudor/2009/10/04/muzica-buna/</guid>
		<description><![CDATA[Mihai &#8220;Mishu&#8221; Calian m-a impresionat din nou cu o piesa de-a lui. Am de mult timp in playlist Scrum si imi place la nebunie &#8211; mai ales cand aud versiunea live :), am dat de noua lui piesa &#8211; Viteza Sangelui Meu.
Pentru cei nerabdatori, ascultati aici &#8211; gratie Trilulilu.



]]></description>
			<content:encoded><![CDATA[<p>Mihai &#8220;Mishu&#8221; Calian m-a impresionat din nou cu o piesa de-a lui. Am de mult timp in playlist Scrum si imi place la nebunie &#8211; mai ales cand aud versiunea live :), am dat de noua lui piesa &#8211; <a href="http://www.doingtheartwork.com/lansare-oficiala-viteza-sangelui-meu/"title="Viteza Sangelui Meu - Mihai Mishu Calian" rel="tag"  target="_blank" onclick="javascript:urchinTracker ('/outbound/article/www.doingtheartwork.com');">Viteza Sangelui Meu</a>.</p>
<p>Pentru cei nerabdatori, ascultati aici &#8211; gratie Trilulilu.</p>
<div id="scid:5737277B-5D6D-4f48-ABFC-DD9C333F4C5D:43a14257-2d8c-4986-a1c4-5fb9fde21380" class="wlWriterEditableSmartContent" style="padding-bottom: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; float: none; padding-top: 0px">
<div><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="448" height="46" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://embed.trilulilu.ro/audio/mishucluj/d71577541b201c.swf" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="448" height="46" src="http://embed.trilulilu.ro/audio/mishucluj/d71577541b201c.swf" allowscriptaccess="always" allowfullscreen="true"></embed></object></div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://salomie.ro/tudor/2009/10/04/muzica-buna/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Debate champs</title>
		<link>http://salomie.ro/tudor/2009/01/07/debate-champs/</link>
		<comments>http://salomie.ro/tudor/2009/01/07/debate-champs/#comments</comments>
		<pubDate>Wed, 07 Jan 2009 11:24:15 +0000</pubDate>
		<dc:creator>tudor</dc:creator>
				<category><![CDATA[promo]]></category>
		<category><![CDATA[thoughts]]></category>
<category>cluj</category><category>debate</category><category>dezbateri</category><category>els</category><category>world champions</category>
		<guid isPermaLink="false">http://salomie.ro/tudor/2009/01/07/debate-champs/</guid>
		<description><![CDATA[I would like to congratulate Nicoleta Lupea and Dan Cristea for their achievements this year! I am really glad to see that Nicoleta and Dan have achieved the triple performance this year in winning the European, World and Oxford championships in the ESL (English as a Second Language)  &#8220;league&#8221;.
More on this can be found [...]]]></description>
			<content:encoded><![CDATA[<p>I would like to congratulate Nicoleta Lupea and Dan Cristea for their achievements this year! I am really glad to see that Nicoleta and Dan have achieved the triple performance this year in winning the European, World and Oxford championships in the ESL (English as a Second Language)  &#8220;league&#8221;.</p>
<p>More on this can be found here:</p>
<p><a href="http://cotidianul.ro/doi_studenti_clujeni_campioni_mondiali_la_dezbateri-69208.html" onclick="javascript:urchinTracker ('/outbound/article/cotidianul.ro');">[Cotidianul] Doi studenti clujeni campioni mondiali la dezbateri</a></p>
]]></content:encoded>
			<wfw:commentRss>http://salomie.ro/tudor/2009/01/07/debate-champs/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Digilent Design Contest (for Hard and/or Soft skilled students)</title>
		<link>http://salomie.ro/tudor/2008/12/08/digilent-design-contest-for-hard-andor-soft-skilled-students/</link>
		<comments>http://salomie.ro/tudor/2008/12/08/digilent-design-contest-for-hard-andor-soft-skilled-students/#comments</comments>
		<pubDate>Mon, 08 Dec 2008 13:48:19 +0000</pubDate>
		<dc:creator>tudor</dc:creator>
				<category><![CDATA[it]]></category>
		<category><![CDATA[promo]]></category>
		<category><![CDATA[thoughts]]></category>
<category></category><category></category><category></category><category></category><category></category><category></category><category></category>
		<guid isPermaLink="false">http://salomie.ro/tudor/2008/12/08/digilent-design-contest-for-hard-andor-soft-skilled-students/</guid>
		<description><![CDATA[For those who are interested in both hardware and software, I would like to announce the Digilent Design Contest.
The contest is open to all university students and features in its 5th edition two tracks: the hardware design contest and the software design contest.
 Digilent Hardware 

 VHDL digital design based on Digilent FPGA boards
 Microcontroller [...]]]></description>
			<content:encoded><![CDATA[<p>For those who are interested in both hardware and software, I would like to announce the Digilent Design Contest.</p>
<p>The contest is open to all university students and features in its 5th edition two tracks: the hardware design contest and the software design contest.</p>
<p><strong> Digilent Hardware </strong></p>
<ul>
<li> VHDL digital design based on Digilent FPGA boards</li>
<li> Microcontroller projects that demonstrate Digilent&#8217;s embedded control boards</li>
</ul>
<p>A little more unclear in specifications, but allowing more creativity, the software track requests the use of free or university (Technical University of Cluj-Napoca) supported development tools and frameworks.</p>
<p><strong> Imprezzio Software </strong></p>
<ul>
<li> Software applications (I think this means desktop applications?)</li>
<li> Web applications</li>
</ul>
<p>If you are interested, keep in mind the following key dates:</p>
<ul>
<li> Contest start date: <strong>December 11th 2008, @16:00</strong>, on Baritiu 26, Cluj-Napoca</li>
<li> For the undecided, the last minute registration can be done on <strong>January 9th 2009</strong></li>
<li> An the for those who started a project, don&#8217;t forget that the final presentations are on <strong>May 9th 2009</strong></li>
</ul>
<p>In order to register (either as an individual or as a team of up to 2 members), use the following email addresses, for each of the two tracks: hardwarecontest [at] digilent [dot] ro and softwarecontest [at] imprezzio [dot] ro.</p>
<p>More on the event on the <a href="http://www.ael.utcluj.ro/events_RO.html" onclick="javascript:urchinTracker ('/outbound/article/www.ael.utcluj.ro');">news page</a> at the Technical University of Cluj-Napoca.</p>
<p>UPDATE: The contest poster:</p>
<p><img title="Digilent Contest 5th Edition Poster" src="http://salomie.ro/tudor/wp-content/uploads/images/DigilentContest.jpg" border="0" alt="Digilent Contest 5th Edition Poster" width="612" height="863" align="middle" /></p>
]]></content:encoded>
			<wfw:commentRss>http://salomie.ro/tudor/2008/12/08/digilent-design-contest-for-hard-andor-soft-skilled-students/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Setting up Sun JRE 6 and Ruby 1.8 onto a computer without root privileges</title>
		<link>http://salomie.ro/tudor/2008/11/17/setting-up-sun-jre-6-and-ruby-18-onto-a-computer-without-root-privileges/</link>
		<comments>http://salomie.ro/tudor/2008/11/17/setting-up-sun-jre-6-and-ruby-18-onto-a-computer-without-root-privileges/#comments</comments>
		<pubDate>Mon, 17 Nov 2008 13:26:19 +0000</pubDate>
		<dc:creator>tudor</dc:creator>
				<category><![CDATA[it]]></category>
		<category><![CDATA[java]]></category>
		<category><![CDATA[thoughts]]></category>
<category>cluster machine</category><category>java</category><category>jre</category><category>jvm</category><category>linux machine</category><category>root</category><category>root privileges</category><category>Ruby</category><category>ruby 1 8</category><category>su</category><category>sun</category><category>sun jre</category><category>symlink</category><category>Ubuntu</category>
		<guid isPermaLink="false">http://salomie.ro/tudor/2008/11/17/setting-up-sun-jre-6-and-ruby-18-onto-a-computer-without-root-privileges/</guid>
		<description><![CDATA[In the past weeks I have been working on a distributed database management system, and have run into the difficulties of running certain tools (such as JVM or Ruby) from within a cluster of computers, without having root/su on the cluster machines.
Installing JVM and Ruby on a linux machine on which you only have rights [...]]]></description>
			<content:encoded><![CDATA[<p>In the past weeks I have been working on a distributed database management system, and have run into the difficulties of running certain tools (such as JVM or Ruby) from within a cluster of computers, without having root/su on the cluster machines.</p>
<p>Installing JVM and Ruby on a linux machine on which you only have rights in your home folder may be tricky.</p>
<p>Below I post a few hints on how I managed to have Sun&#8217;s JRE and Ruby running.</p>
<p><strong>Sun&#8217;s JRE</strong></p>
<p>First I installed the JVM from Sun onto a machine on which I have root privileges (running Ubuntu). At this point, you should get a folder like <strong>/usr/lib/jvm/java-6-sun/jre/</strong> on your local machine which contains Sun&#8217;s latest JRE.</p>
<p>For deploying the JVM onto a cluster machine all you need to do is create a folder on the cluster machine in your home directory like <strong>~/tools/java/</strong> and copy the content of the local JRE installation (<strong>/usr/lib/jvm/java-6-sun/jre/</strong>) there.</p>
<p>Also, you need to create a folder like <strong>~/tools/java-conf/</strong> and copy there all the content of the <strong>/etc/java-6-sun/</strong> directory. This contains the JVM configuration, properties, management and security related settings.</p>
<p>Once this is done, you need to go through the copied JRE files and change the link files in order to point in the right direction &#8211; meaning to the configuration, properties, management and security files in <strong>~/tools/java-conf/</strong> on the cluster machine.</p>
<p>Almost done, all you need to do now is create a symlink (<strong>ln -s</strong>) to <strong>~/tools/java/bin/java</strong> in the <strong>~/bin/</strong> directory. Most probably this is in the <strong>PATH</strong> already.</p>
<p>Now you should be able to run <strong>$java MyClass</strong> on the cluster machine.</p>
<p><strong>Ruby</strong></p>
<p>As far as I have seen with Ruby, installing it is not as easy as with JRE. In my case I had to compile Ruby on the cluster machine and also change the location of the libraries so that they get placed in the user&#8217;s home folder.</p>
<p>I have followed the following steps in order to get a successful Ruby installation:</p>
<ol>
<li>Create the <strong>~/tools/ruby/</strong> and <strong>~/tools/ruby-code/</strong> folders on the cluster machine. <strong>~/tools/ruby/</strong> will contain the Ruby installation while <strong>~/tools/ruby-code/</strong> will contain the code from which we will build Ruby. Once you complete the following steps, the code folder <strong>~/tools/ruby-code/</strong> can be deleted.</li>
<li>Download the latest <a href="http://www.ruby-lang.org/en/downloads/" onclick="javascript:urchinTracker ('/outbound/article/www.ruby-lang.org');">Ruby</a> code from here. When I did this, the latest recommended Ruby version was <a href="ftp://ftp.ruby-lang.org/pub/ruby/1.8/ruby-1.8.7-p72.tar.gz" onclick="javascript:urchinTracker ('/outbound/article/ftp.ruby-lang.org');">1.8.7-p72</a>. After you downloaded it, extract the content of the .tar.gz into the <strong>~/tools/ruby-code/</strong> directory</li>
<li>While logged into the cluster machine, cd to <strong>~/tools/ruby-code/ruby-1.8.7-p72/</strong> (the last folder in the path might look different if you are setting up a newer/older version of Ruby) and run the .<strong>/configure</strong> binary. This should generate the <strong>config.h</strong> and <strong>Makefile</strong> files.</li>
<li>Edit <strong>config.h</strong> and look for the following 8 <em>#define </em>statement (they should be the last entries in the <strong>config.h</strong> file): <strong>RUBY_LIB</strong>, <strong>RUBY_SITE_LIB</strong>, <strong>RUBY_SITE_LIB2</strong>, <strong>RUBY_VENDOR_LIB</strong>, <strong>RUBY_VENDOR_LIB2</strong>, <strong>RUBY_ARCHLIB</strong>, <strong>RUBY_SITE_ARCHLIB</strong>, <strong>RUBY_VENDOR_ARCHLIB</strong>. The values you place in here should be absolute paths pointing towards sub-directories of the <strong>~/tools/ruby/</strong> directory on the cluster machine. As an example I have values something like:<br />
/home/tsalomie/tools/ruby/lib/ruby/1.8<br />
/home/tsalomie/tools/ruby/lib/ruby/site_ruby<br />
/home/tsalomie/tools/ruby/lib/site_ruby/1.8<br />
/home/tsalomie/tools/ruby/lib/ruby/vendor_ruby<br />
/home/tsalomie/tools/ruby/lib/vendor_ruby/1.8<br />
/home/tsalomie/tools/ruby/lib/ruby/1.8/x86_64-linux<br />
/home/tsalomie/tools/ruby/lib/ruby/site_ruby/1.8/x86_64-linux<br />
/home/tsalomie/tools/ruby/lib/ruby/vendor_ruby/1.8/x86_64-linux</li>
<li>Run <strong>make</strong> in <strong>~/tools/ruby-code/ruby-1.8.7-p72/</strong></li>
<li>Run <strong>make test</strong> to verify</li>
<li>Edit the <strong>rbconfig.rb</strong> file, such that <strong>TOPDIR = &#8216;/home/tsalomie/tools/ruby&#8217;</strong> and <strong>DESTDIR = &#8216;/home/tsalomie/tools/ruby&#8217; unless defined? DESTDIR</strong></li>
<li>Run <strong>make install</strong></li>
<li>Create symlinks to <strong>~/tools/ruby/bin/ruby</strong> and to <strong>~/tools/ruby/bin/irb</strong> in your <strong>~/bin</strong> directory</li>
<li>Enjoy Ruby!</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://salomie.ro/tudor/2008/11/17/setting-up-sun-jre-6-and-ruby-18-onto-a-computer-without-root-privileges/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Upgrading to OpenOffice 3.0 on a Ubuntu 8.10 AMD64</title>
		<link>http://salomie.ro/tudor/2008/11/17/upgrading-to-openoffice-30-on-a-ubuntu-810-amd64/</link>
		<comments>http://salomie.ro/tudor/2008/11/17/upgrading-to-openoffice-30-on-a-ubuntu-810-amd64/#comments</comments>
		<pubDate>Mon, 17 Nov 2008 09:53:34 +0000</pubDate>
		<dc:creator>tudor</dc:creator>
				<category><![CDATA[it]]></category>
		<category><![CDATA[thoughts]]></category>
<category>amd64</category><category>docx</category><category>i386</category><category>Linux</category><category>office 2007</category><category>Open Office</category><category>pptx</category><category>Ubuntu</category><category>x64</category><category>x86</category>
		<guid isPermaLink="false">http://salomie.ro/tudor/2008/11/17/upgrading-to-openoffice-30-on-a-ubuntu-810-amd64/</guid>
		<description><![CDATA[So &#8211; installing OOo 3.0 on an Ubuntu AMD64 may not be as trivial as it seems.
In order to get it running, I had to go through a &#8220;couple&#8221; of steps:

Remove the previous installation of OOo:
&#62; sudo apt-get remove open-office.org-core

Download OOo 3.0 from here and choose the Linux DEB version
 Open a terminal and cd [...]]]></description>
			<content:encoded><![CDATA[<p>So &#8211; installing OOo 3.0 on an Ubuntu AMD64 may not be as trivial as it seems.</p>
<p>In order to get it running, I had to go through a &#8220;couple&#8221; of steps:</p>
<ul>
<li>Remove the previous installation of OOo:
<pre>&gt; sudo apt-get remove open-office.org-core</pre>
</li>
<li>Download OOo 3.0 from <a href="http://download.openoffice.org/other.html#en-US" onclick="javascript:urchinTracker ('/outbound/article/download.openoffice.org');">here</a> and choose the Linux DEB version</li>
<li> Open a terminal and cd to the folder where you saved the downloaded .tar.gz file:  <strong>OOo_3.0.0_LinuxIntel_install_en-US_deb.tar.gz</strong></li>
<li> Extract the contents of the .tar.gz via:
<pre>&gt; tar xvzf OOo_3.0.0_LinuxIntel_install_en-US_deb.tar.gz</pre>
</li>
<li> Go to the DEBS foloder
<pre>&gt; cd OOO300_m9_native_packed-1_en-US.9358/DEBS/</pre>
</li>
<li>Â In order to install i386 on AMD6:
<pre>&gt; sudo dpkg -i --force-architecture *.deb</pre>
</li>
<li> Navigate to the desktop integration folder:
<pre>&gt; cd ./desktop-integration/</pre>
</li>
<li> Install desktop integration (ie. menu support)
<pre>&gt; sudo dpkg -i --force-architecture *.deb</pre>
</li>
<li> Done!</li>
</ul>
<p>Happy running OOo 3.0! (and you can kind of open Office 2007 file formats too &#8211; I haven&#8217;t seen yet a good pptx in OOo 3.0 &#8211; but who knows &#8211; maybe one day!)</p>
]]></content:encoded>
			<wfw:commentRss>http://salomie.ro/tudor/2008/11/17/upgrading-to-openoffice-30-on-a-ubuntu-810-amd64/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>IE8 can&#8217;t understand Chrome&#8217;s Romanian</title>
		<link>http://salomie.ro/tudor/2008/09/14/ie8-cant-understand-chromes-romanian/</link>
		<comments>http://salomie.ro/tudor/2008/09/14/ie8-cant-understand-chromes-romanian/#comments</comments>
		<pubDate>Sun, 14 Sep 2008 08:48:54 +0000</pubDate>
		<dc:creator>tudor</dc:creator>
				<category><![CDATA[thoughts]]></category>

		<guid isPermaLink="false">http://salomie.ro/tudor/2008/09/14/ie8-cant-understand-chromes-romanian/</guid>
		<description><![CDATA[A couple of days ago I started using Chrome on a more regular basis, moreover I went with its Romanian flavour &#8211; keeping the interface in Romanian as well as its default download folder location set to something like C:\Users\Tudor\Documents\DescÄƒrcÄƒri. You can notice the two &#34;Äƒ&#34; characters in the download folder name. Going on, today [...]]]></description>
			<content:encoded><![CDATA[<p>A couple of days ago I started using Chrome on a more regular basis, moreover I went with its Romanian flavour &#8211; keeping the interface in Romanian as well as its default download folder location set to something like C:\Users\Tudor\Documents\DescÄƒrcÄƒri. You can notice the two &quot;Äƒ&quot; characters in the download folder name. Going on, today I downloaded Internet Explorer 8 Beta 2 (from Chrome) and tried to install it. This failed, giving me an Extraction Failed exception stating: &quot;The system can not find the path specified&#8217;. Startled, I downloaded the installer again &#8211; same behavior.The when I moved the intsaller to the Desktop &#8211; ie: a path that doesn&#8217;t contain &quot;special&quot; characters things worked like a charm. </p>
<p>What I don&#8217;t get is: Windows Vista supports unicode for folder names, and so does the underlying API for accessing the file system. Then why does Internet Explorer 8 Beta 2 go around the API? This is the only explanation I can find for this missbehavior &#8211; it makes me feel like in the days when everyone avoided the whitespaces in the path &#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://salomie.ro/tudor/2008/09/14/ie8-cant-understand-chromes-romanian/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>More holiday time</title>
		<link>http://salomie.ro/tudor/2008/08/28/more-holiday-time/</link>
		<comments>http://salomie.ro/tudor/2008/08/28/more-holiday-time/#comments</comments>
		<pubDate>Thu, 28 Aug 2008 08:20:08 +0000</pubDate>
		<dc:creator>salo</dc:creator>
				<category><![CDATA[thoughts]]></category>
<category>algarve</category><category>analusia</category><category>budapest</category><category>festival</category><category>hungary</category><category>italy</category><category>lagos</category><category>lisbon</category><category>milano</category><category>photos</category><category>porto</category><category>porto wine</category><category>portugal</category><category>spain</category><category>sziget</category>
		<guid isPermaLink="false">http://salomie.ro/tudor/2008/08/28/more-holiday-time/</guid>
		<description><![CDATA[After more than a week since I got back in Cluj I&#8217;ve managed to upload some of the photos I&#8217;ve taken in Italy, Portugal, Spain and at the Sziget Festival. As before, the photos are up using Dropbox. You can see the galleries as follows:

Milano &#8211; 1 day, just visiting the city between two flights
Porto [...]]]></description>
			<content:encoded><![CDATA[<p>After more than a week since I got back in Cluj I&#8217;ve managed to upload some of the photos I&#8217;ve taken in Italy, Portugal, Spain and at the Sziget Festival. As before, the photos are up using Dropbox. You can see the galleries as follows:</p>
<ul>
<li><a href="http://www.getdropbox.com/gallery/72910/2/EuroTrip2008/Milano?h=81fecd" title="EuroTrip2008, Milano" target="_blank" onclick="javascript:urchinTracker ('/outbound/article/www.getdropbox.com');">Milano</a> &#8211; 1 day, just visiting the city between two flights</li>
<li><a href="http://www.getdropbox.com/gallery/72910/2/EuroTrip2008/Porto?h=18a004" title="EuroTrip 2008, Porto" target="_blank" onclick="javascript:urchinTracker ('/outbound/article/www.getdropbox.com');">Porto</a> &#8211; 2 days, top notch city, good Porto wine, nice people</li>
<li><a href="http://www.getdropbox.com/gallery/72910/2/EuroTrip2008/Lisabona?h=8ab758" title="EuroTrip 2008, Lisbon" target="_blank" onclick="javascript:urchinTracker ('/outbound/article/www.getdropbox.com');">Lisbon</a> &#8211; 3 days, could have been better &#8211; nothing to comment (except for poor public transportation) but I expected more je ne sais pas quoi</li>
<li><a href="http://www.getdropbox.com/gallery/72910/2/EuroTrip2008/AlgarveLagos?h=516aad" title="EuroTrip 2008, Lagos" target="_blank" onclick="javascript:urchinTracker ('/outbound/article/www.getdropbox.com');">Algarve region/Lagos</a> &#8211; 6 days, just r&#8217;n'r sun, hot, small golf-like beaches</li>
<li><a href="http://www.getdropbox.com/gallery/72910/2/EuroTrip2008/Sevilla?h=9aa831" title="EuroTrip 2008, Sevilla" target="_blank" onclick="javascript:urchinTracker ('/outbound/article/www.getdropbox.com');">Sevilla</a> &#8211; 2 days, impresive</li>
<li><a href="http://www.getdropbox.com/gallery/72910/2/EuroTrip2008/Sziget?h=7cee36" title="EuroTrip 2008, Sziget Festival" target="_blank" onclick="javascript:urchinTracker ('/outbound/article/www.getdropbox.com');">Sziget Festival</a> &#8211; 6 days, no comment</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://salomie.ro/tudor/2008/08/28/more-holiday-time/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Yahoo opens up</title>
		<link>http://salomie.ro/tudor/2008/07/25/yahoo-opens-up/</link>
		<comments>http://salomie.ro/tudor/2008/07/25/yahoo-opens-up/#comments</comments>
		<pubDate>Fri, 25 Jul 2008 14:09:05 +0000</pubDate>
		<dc:creator>salo</dc:creator>
				<category><![CDATA[it]]></category>
		<category><![CDATA[thoughts]]></category>

		<guid isPermaLink="false">http://salomie.ro/tudor/2008/07/25/yahoo-opens-up/</guid>
		<description><![CDATA[A long long time ago in an Internet far far away, Yahoo used to allow (for free) POP3 access to the emails in your account. In those days when GMail did not exists, it used to be one of the best choices out there. After that, a critical period came when I was at a [...]]]></description>
			<content:encoded><![CDATA[<p>A long long time ago in an Internet far far away, Yahoo used to allow (for free) POP3 access to the emails in your account. In those days when GMail did not exists, it used to be one of the best choices out there. After that, a critical period came when I was at a loss with the personal email choice. I was very keen on having local copies of the emails (storage was an issue). Years passed, improvised solutions such as YPops that would act as an email server (POP3 and SMTP) could be set up on the client machine that would parse the Yahoo Mail HTML site and would then present the emails via POP3 to any client seemed decent solutions. Still, this was not a straightforward solution &#8230;</p>
<p>When the GMail era started, I stopped using Yahoo Mail for good and switched to my Google account only. Today, a little bit late for my taste, I came across the free <a href="http://www.zimbra.com/products/desktop.html"title="Yahoo Zimbra Desktop"  target="_blank" onclick="javascript:urchinTracker ('/outbound/article/www.zimbra.com');">Zimbra Desktop</a> by Yahoo!. It is an email client for Yahoo mail accounts, GMail account as well as any other POP3/IMAP mail servers. Part of the larger Yahoo! Zimbra Collaboration Suite (a Exchange/Outlook wannabe).</p>
<p>I have tried it out &#8211; but it seems a little bit sluggish, although it also incorporates Calendar, Tasks, Contacts, etc. besides Mail. Tried it out of curiosity, but I think I&#8217;ll still stick to Outlook and GMail via the Web Interface (lately storage in the cloud with high availability is no longer an issue &#8230; so I don&#8217;t feel the need to have local copies of my email anymore).</p>
<p>Anyway &#8211; congrats Yahoo! for reopening (up to a point) your email for free.</p>
]]></content:encoded>
			<wfw:commentRss>http://salomie.ro/tudor/2008/07/25/yahoo-opens-up/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Holiday time</title>
		<link>http://salomie.ro/tudor/2008/07/24/holiday-time/</link>
		<comments>http://salomie.ro/tudor/2008/07/24/holiday-time/#comments</comments>
		<pubDate>Thu, 24 Jul 2008 12:03:11 +0000</pubDate>
		<dc:creator>salo</dc:creator>
				<category><![CDATA[it-fun]]></category>
		<category><![CDATA[thoughts]]></category>
<category>algarve</category><category>cadiz</category><category>fagaras mountains</category><category>international jazz festival</category><category>jazz music</category><category>object oriented databases</category><category>sulina</category><category>trei ape</category><category>vama veche</category><category>w bloggar</category>
		<guid isPermaLink="false">http://salomie.ro/tudor/2008/07/24/holiday-time/</guid>
		<description><![CDATA[So it&#8217;s been a while since I last put down anything in the blog &#8230;
In the past months I was kind of busy fiddling around with object oriented databases for my Diploma Project which finally concluded at the end of June 2008 (hence forth I am an &#8230; engineer &#8211; look here  at Dilbert [...]]]></description>
			<content:encoded><![CDATA[<p>So it&#8217;s been a while since I last put down anything in the blog &#8230;<br />
In the past months I was kind of busy fiddling around with object oriented databases for my Diploma Project which finally concluded at the end of June 2008 (hence forth I am an &#8230; engineer &#8211; look <a href="http://www.youtube.com/watch?v=qOtoujYOWw0" title="Dilbert Engineer" target="_blank" onclick="javascript:urchinTracker ('/outbound/article/www.youtube.com');">here </a> at Dilbert to see what I mean).</p>
<p>Having finished all my work load I started touring off the country on the soon to become traditional summer starting route: Sulina in the Danube Delta, Vama Veche as the last &#8220;sanctuary&#8221; on the Romanian Black See shore and the Fagaras Mountains as the highest spot in the country. All in all I spent around 2 weeks around the country, without any worries, under the perfect July weather. I collected some of the photos I took and placed them online:</p>
<ul>
<li><a href="http://www.getdropbox.com/gallery/72910/0/Sulina2008/?h=7a17ee" title="Sulina and the Danube Delta" target="_blank" onclick="javascript:urchinTracker ('/outbound/article/www.getdropbox.com');">Sulina and the Danube Delta</a></li>
<li><a href="http://www.getdropbox.com/gallery/72910/0/VamaVeche2008/?h=7a17ee" title="Vama Veche" target="_blank" onclick="javascript:urchinTracker ('/outbound/article/www.getdropbox.com');">Vama Veche</a></li>
<li><a href="http://www.getdropbox.com/gallery/72910/0/Fagaras2008/?h=7a17ee" title="The Fagaras Mountains" target="_blank" onclick="javascript:urchinTracker ('/outbound/article/www.getdropbox.com');">The Fagaras Mountains</a></li>
</ul>
<p>Unfortunately my holiday came to a rather short stop after 2 weeks as I had to return to Cluj for a couple of days in order to sort out some administrative problems regarding my future (more about that to come) and to download the photos I took so far :)<br />
After some days spent in my dear home town, we went to the <a href="http://www.garana-jazz.ro/" title="Garana Internationl Jazz Festival" target="_blank" onclick="javascript:urchinTracker ('/outbound/article/www.garana-jazz.ro');">Garana International Jazz Festival</a>. I had heard about this festival before, but it had never actually caught my attention as much before. This year, as a spur of the moment we just jumped into a red car and drove all the way to Garana (close to Resita in the Semenic Mountains) to enjoy one evening of incredible jazz music and atmosphere out of the three nights of the festival. Camping by a small river close the Trei-Ape, the whole experience was incredible! Starting with this year Garana is on my to-do list each year!</p>
<p>For the time, I am still in Cluj until next week when I will start a short journey around Portugal and Spain. If you&#8217;re around Porto, Lisbon, Algarve, Cadiz or Sevilla in the next weeks, drop a line!</p>
<p>Note:<br />
1. On the technical side of this blog entry I have ended up using <a href="http://wbloggar.com/" title="W.Bloggar" target="_blank" onclick="javascript:urchinTracker ('/outbound/article/wbloggar.com');">w.bloggar</a> as the favorite tool of trade. I set it up on my USB key (it&#8217;s portable, and fully feature packed) and managed to write the entire post before Windows Live Writer installed on my machine (my ex-favorite tool of trade). It was incredibly slow for no apparent reason.</p>
<p>2. Still on the technical side, I received a Beta invite from <a href="http://www.getdropbox.com/" title="DropBox Beta" target="_blank" onclick="javascript:urchinTracker ('/outbound/article/www.getdropbox.com');">DropBox </a>- a new online storage and sync service. For the time they offer 2GB free space during beta, sync-ing between any number of <strike>PCs</strike> computers (as Mac is also supported), automatic upload and sync between online computers, shareable documents, automatic photo gallery generation for photos, undo-deletes, file version history and a small nifty and smart client application. The only con I found so for is that the location of the root of the synced hierarchy can not (easily) be moved out of the My Documents. If you want to try DropBox I still have around 10 invites so just drop a line and I would be glad to send them out.</p>
<p>3. I&#8217;ve been tagged by <a href="http://marius.wirelessisfun.com/" title="Marius Perijoc" target="_blank" onclick="javascript:urchinTracker ('/outbound/article/marius.wirelessisfun.com');">.marius</a> in the <a href="http://marius.wirelessisfun.com/2008/the-winamp-tag-again/" title="Winamp tag or the leapsa game" target="_blank" onclick="javascript:urchinTracker ('/outbound/article/marius.wirelessisfun.com');">&#8220;Winamp leapsa&#8221;</a> &#8230; I will take up the challenge but after I clean up my playlist :)</p>
<p>Update: I have uploaded some poor quality photos from Garana <a href="http://www.getdropbox.com/gallery/72910/1/GaranaJazz2008?h=f83593" title="Garana Jazz Festival 2008" target="_blank" onclick="javascript:urchinTracker ('/outbound/article/www.getdropbox.com');">here</a> &#8211; still better than nothing!</p>
]]></content:encoded>
			<wfw:commentRss>http://salomie.ro/tudor/2008/07/24/holiday-time/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Gosh! &#8230; or should I say Goosh?</title>
		<link>http://salomie.ro/tudor/2008/06/03/gosh-or-should-i-say-goosh/</link>
		<comments>http://salomie.ro/tudor/2008/06/03/gosh-or-should-i-say-goosh/#comments</comments>
		<pubDate>Tue, 03 Jun 2008 14:17:39 +0000</pubDate>
		<dc:creator>salo</dc:creator>
				<category><![CDATA[it]]></category>
		<category><![CDATA[it-fun]]></category>
		<category><![CDATA[thoughts]]></category>
<category>command shell</category><category>google</category><category>google home page</category><category>google search</category><category>google web command shell</category><category>goosh</category>
		<guid isPermaLink="false">http://salomie.ro/tudor/2008/06/03/gosh-or-should-i-say-goosh/</guid>
		<description><![CDATA[While stumbling over the net today (bad day for writing anything in my diploma thesis) I cam across the coolest thing for the command shell freaks enthusiasts: a Google search web-based command shell &#8211; wisely named Goosh.
Playing with it is as simple as it gets &#8211; and it migh even reduce the complexity of the [...]]]></description>
			<content:encoded><![CDATA[<p>While stumbling over the net today (bad day for writing anything in my diploma thesis) I cam across the coolest thing for the command shell <strike>freaks</strike> enthusiasts: a Google search web-based command shell &#8211; wisely named <a href="http://goosh.org/" title="Goosh" target="_blank" onclick="javascript:urchinTracker ('/outbound/article/goosh.org');">Goosh</a>.</p>
<p>Playing with it is as simple as it gets &#8211; and it migh even reduce the complexity of the original Google home page! (at least for those that are more into keyboards that mice &#8230;)</p>
<p>Hope you&#8217;ll enjoy it and it will become your new browser home page &#8211; as it sure has for me!</p>
<p><em>Later Edit [5 minutes later TBH]</em>: I would really like to get a grip of what the following command does:</p>
<table class="help" border="0">
<tr>
<td>load</td>
<td>&nbsp;</td>
<td>&lt;extension_url&gt;</td>
<td>load an extension</td>
</tr>
</table>
<p>&#8230; and maybe even how to write those extensions :)</p>
]]></content:encoded>
			<wfw:commentRss>http://salomie.ro/tudor/2008/06/03/gosh-or-should-i-say-goosh/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Temporary location change</title>
		<link>http://salomie.ro/tudor/2008/02/20/temporary-location-change/</link>
		<comments>http://salomie.ro/tudor/2008/02/20/temporary-location-change/#comments</comments>
		<pubDate>Wed, 20 Feb 2008 08:56:11 +0000</pubDate>
		<dc:creator>salo</dc:creator>
				<category><![CDATA[it]]></category>
		<category><![CDATA[thoughts]]></category>
<category>avon</category><category>bachelor</category><category>diploma</category><category>ethz</category><category>globis</category><category>information system group</category><category>zÃ¼rich</category><category>zÃ¼rich switzerland</category>
		<guid isPermaLink="false">http://salomie.ro/tudor/2008/02/20/temporary-location-change/</guid>
		<description><![CDATA[It has been a busy period for me in the past weeks &#8211; I have had the last exam period within my 5 years as a student at UTCN, right after which I headed off towards ZÃ¼rich, Switzerland.  As with my usual luck I have had a couple of adventures on the road, but [...]]]></description>
			<content:encoded><![CDATA[<p>It has been a busy period for me in the past weeks &#8211; I have had the last exam period within my 5 years as a student at <a href="http://www.utcluj.ro/" title="Technical University of Cluj-Napoca" target="_blank" onclick="javascript:urchinTracker ('/outbound/article/www.utcluj.ro');">UTCN</a>, right after which I headed off towards ZÃ¼rich, Switzerland.  As with my usual luck I have had a couple of adventures on the road, but in the end everything turned out just fine.</p>
<p>I will be staying in ZÃ¼rich up to the middle of June, working on my Bachelor&#8217;s Diploma at <a href="http://www.ethz.ch" title="ETH Zurich" target="_blank" onclick="javascript:urchinTracker ('/outbound/article/www.ethz.ch');">ETHZ</a>, within the <a href="http://www.globis.ethz.ch/" title="Global Information System Group" target="_blank" onclick="javascript:urchinTracker ('/outbound/article/www.globis.ethz.ch');">Globis </a>Group (Global Information System Group) lead by <a href="http://www.globis.ethz.ch/people/norrie" title="Prof. Dr. Moira Norrie" target="_blank" onclick="javascript:urchinTracker ('/outbound/article/www.globis.ethz.ch');">Prof. Moira Norrie</a>, and under the supervision of <a href="http://www.globis.ethz.ch/people/michagro" title="Dr. Michael Grossniklaus" target="_blank" onclick="javascript:urchinTracker ('/outbound/article/www.globis.ethz.ch');">Michael Grossniklaus</a> and <a href="http://www.globis.ethz.ch/people/avancea" title="Andrei Vancea" target="_blank" onclick="javascript:urchinTracker ('/outbound/article/www.globis.ethz.ch');">Andrei Vancea</a>. My work will revolve around the <a href="http://maven.globis.ethz.ch/projects/avon/" title="The Avon Project" target="_blank" onclick="javascript:urchinTracker ('/outbound/article/maven.globis.ethz.ch');">Avon </a>project. I will return with more details as I will get a better grasp of them too :)</p>
]]></content:encoded>
			<wfw:commentRss>http://salomie.ro/tudor/2008/02/20/temporary-location-change/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>ADO.NET and an Anti-Pattern example</title>
		<link>http://salomie.ro/tudor/2007/10/20/adonet-and-an-anti-pattern-example/</link>
		<comments>http://salomie.ro/tudor/2007/10/20/adonet-and-an-anti-pattern-example/#comments</comments>
		<pubDate>Sat, 20 Oct 2007 09:54:40 +0000</pubDate>
		<dc:creator>salo</dc:creator>
				<category><![CDATA[.net]]></category>
		<category><![CDATA[it]]></category>
		<category><![CDATA[thoughts]]></category>

		<guid isPermaLink="false">http://salomie.ro/tudor/2007/10/20/adonet-and-an-anti-pattern-example/</guid>
		<description><![CDATA[I&#8217;ve been coding some ADO.NET examples in the past days and realized a thing which I can only call a *big* anti-pattern in the ADO.NET code. I&#8217;m really looking forward to seeing the .NET Framework code (when it becomes available). Hopefully I&#8217;ll find some justification in the code that can be considered as an excuse [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been coding some ADO.NET examples in the past days and realized a thing which I can only call a *big* anti-pattern in the ADO.NET code. I&#8217;m really looking forward to seeing the .NET Framework code (when it becomes available). Hopefully I&#8217;ll find some justification in the code that can be considered as an excuse for the presence of this anti-pattern!</p>
<p>Let&#8217;s take a short look at the following code:</p>
<p><span style="color: rgb(0,0,255)">private</span> <span style="color: rgb(43,145,175)">String</span> sqlConnectionString;   <br /><span style="color: rgb(0,0,255)">private</span> <span style="color: rgb(43,145,175)">SqlConnection</span> sqlConnection;   <br /><span style="color: rgb(0,0,255)">private</span> <span style="color: rgb(43,145,175)">SqlDataAdapter</span> sqlDataAdapter;   <br /><span style="color: rgb(0,0,255)">private</span> <span style="color: rgb(43,145,175)">String</span> sqlSelectCommandString;   <br /><span style="color: rgb(0,0,255)">private</span> <span style="color: rgb(43,145,175)">SqlCommand</span> sqlSelectCommand;   <br /><span style="color: rgb(0,0,255)">private</span> <span style="color: rgb(43,145,175)">SqlCommandBuilder</span> sqlCommandBuilder;
<p>Here we have setup the variables that we shall use: we see the SqlConnection, SqlDataAdapter, SqlCommand and SqlCommandBuilder objects. Further on, we use these as follows:</p>
<p>sqlConnection = <span style="color: rgb(0,0,255)">new</span> <span style="color: rgb(43,145,175)">SqlConnection</span>(sqlConnectionString);   <br />sqlSelectCommand = <span style="color: rgb(0,0,255)">new</span> <span style="color: rgb(43,145,175)">SqlCommand</span>(sqlSelectCommandString, sqlConnection);   <br />sqlDataAdapter = <span style="color: rgb(0,0,255)">new</span> <span style="color: rgb(43,145,175)">SqlDataAdapter</span>(sqlSelectCommand);   <br />sqlDataAdapter.MissingSchemaAction = <span style="color: rgb(43,145,175)">MissingSchemaAction</span>.AddWithKey;   <br />sqlCommandBuilder = <span style="color: rgb(0,0,255)">new</span> <span style="color: rgb(43,145,175)">SqlCommandBuilder</span>(sqlDataAdapter);
<p>&#xA0;</p>
<p>The big anti-pattern that I am talking about is the last line of code, on which we create the SqlCommandBuilder object. The constructor of the SqlCommandBuilder object takes an SqlDataAdapter object as parameter and modifies it (creates the appropriate CRUD logic)!</p>
<p>I do not think that it is correct to pass in a parameter to the constructor of an object and expect to get it modified! It is not explicit, and it has no explanation to what happens! Constructors should never modify the parameters they receive. They should only set up their &quot;this&quot; based on the parameters.</p>
<p>The SqlCommandBuilder object that we created is never used from that point onward in our code! We created an object only to inject functionality into the SqlDataAdapter! </p>
<p>I consider that the elegant solution would be to have a static method in the SqlCommandBuilder class that operates on the parameter SqlDataAdapter.</p>
<p>I still can not understand the reason or the justification for this constructor in the SqlCommandBuilder class. If any of you can give me a good reason for this, I would very much appreciate it.</p>
]]></content:encoded>
			<wfw:commentRss>http://salomie.ro/tudor/2007/10/20/adonet-and-an-anti-pattern-example/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Wishing I were a designer</title>
		<link>http://salomie.ro/tudor/2007/05/30/wishing-i-were-a-designer/</link>
		<comments>http://salomie.ro/tudor/2007/05/30/wishing-i-were-a-designer/#comments</comments>
		<pubDate>Wed, 30 May 2007 09:41:26 +0000</pubDate>
		<dc:creator>salo</dc:creator>
				<category><![CDATA[it]]></category>
		<category><![CDATA[it-fun]]></category>
		<category><![CDATA[thoughts]]></category>
<category>brain dump</category><category>design</category><category>ms table</category><category>wish list</category>
		<guid isPermaLink="false">http://salomie.ro/tudor/2007/05/30/wishing-i-were-a-designer/</guid>
		<description><![CDATA[You come to think from time to time that a designer&#8217;s life is a lot more pleasant than that of a developer&#8217;s &#8230; and from time to time you&#8217;re right :)
Just check out this way of work!

Well?
]]></description>
			<content:encoded><![CDATA[<p>You come to think from time to time that a designer&#8217;s life is a lot more pleasant than that of a developer&#8217;s &#8230; and from time to time you&#8217;re right :)</p>
<p>Just check out this way of work!<br />
<ibed wmode="transparent" height="345" width="400" pluginspage="http://www.macromedia.com/go/getflashplayer"><br />
Well?</ibed></p>
]]></content:encoded>
			<wfw:commentRss>http://salomie.ro/tudor/2007/05/30/wishing-i-were-a-designer/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>A couple of Windows Vista Tips and Tricks</title>
		<link>http://salomie.ro/tudor/2007/04/05/a-couple-of-windows-vista-tips-and-tricks/</link>
		<comments>http://salomie.ro/tudor/2007/04/05/a-couple-of-windows-vista-tips-and-tricks/#comments</comments>
		<pubDate>Thu, 05 Apr 2007 19:46:59 +0000</pubDate>
		<dc:creator>salo</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[it]]></category>
		<category><![CDATA[thoughts]]></category>
<category>quick launch toolbar</category><category>tips</category><category>tricks</category><category>vista</category><category>windows</category>
		<guid isPermaLink="false">http://salomie.ro/tudor/2007/04/05/a-couple-of-windows-vista-tips-and-tricks/</guid>
		<description><![CDATA[I have been using Windows Vista for some months now, and I am still getting to see new cool things that I like.
I won&#8217;t go into depth, but the latest and coolest two things that I found are:

Hold down SHIFT and then right click on a file in Windows Explorer &#8211; then you&#8217;ll see a [...]]]></description>
			<content:encoded><![CDATA[<p>I have been using Windows Vista for some months now, and I am still getting to see new cool things that I like.</p>
<p>I won&#8217;t go into depth, but the latest and coolest two things that I found are:</p>
<ol>
<li>Hold down SHIFT and then right click on a file in Windows Explorer &#8211; then you&#8217;ll see a new item on the contextual menu called: &#8220;Copy as Path&#8221; &#8211; yeah finally this is supported natively by the OS :D The print screens below show the contextual menu without/with holding down shift:Without shift held down:
<p><img src="http://salomie.ro/tudor/wp-content/uploads/2007/04/040507-1945-acoupleofwi11.png" /></p>
<p>With shift held down:</p>
<p><img src="http://salomie.ro/tudor/wp-content/uploads/2007/04/040507-1945-acoupleofwi21.png" /></p>
<p>You might also notice new items in the contextual menu such as &#8220;Pin to Start Menu&#8221; and &#8220;Add to Quick Launch&#8221; &#8211; which are also pretty cool, but I don&#8217;t tend to use them as often as the &#8220;Copy as Path&#8221; one <span style="font-family: Wingdings">:)</span></li>
<li>The second nice thing I found [and which tends to make the "My Favorites" keys on my MM-Keyboard obsolete] is the shortcut combination for the links in the Quick Launch Toolbar.For example if my Quick Launch Toolbar looks like this:<img src="http://salomie.ro/tudor/wp-content/uploads/2007/04/040507-1945-acoupleofwi31.png" />
<p>I can start the Microsoft Internet Explorer by just pressing the Windows Key + 3.</p>
<p>Generalizing an application from the Quick Launch Toolbar can be started by Windows Key + #, where # is its position number in the Quick Launch Toolbar.</li>
</ol>
<p>Although simple tricks, these tend to be a couple of the most useful ones I&#8217;ve stumbled upon while using Windows Vista.<br />
Hope they&#8217;ll help you as much as they are helping me now!</p>
]]></content:encoded>
			<wfw:commentRss>http://salomie.ro/tudor/2007/04/05/a-couple-of-windows-vista-tips-and-tricks/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
