<?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>Once a geek, forever a geek...</title>
	<atom:link href="http://www.mariusv.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.mariusv.com</link>
	<description></description>
	<lastBuildDate>Tue, 17 Jan 2012 11:10:51 +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>Difference between TCP and UDP</title>
		<link>http://www.mariusv.com/difference-between-tcp-and-udp/</link>
		<comments>http://www.mariusv.com/difference-between-tcp-and-udp/#comments</comments>
		<pubDate>Tue, 17 Jan 2012 11:10:51 +0000</pubDate>
		<dc:creator>Marius Voila</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[networking]]></category>
		<category><![CDATA[sysadmin]]></category>
		<category><![CDATA[tcp]]></category>
		<category><![CDATA[udp]]></category>

		<guid isPermaLink="false">http://www.mariusv.com/?p=1171</guid>
		<description><![CDATA[I wrote this article because I see a lot of sysadmins who don&#8217;t know there is a difference between TCP and UDP protocols. Ex: Transmission Control Protocol (TCP) and User Datagram Protocol (UDP)is a transportation protocol that is one of &#8230; <a href="http://www.mariusv.com/difference-between-tcp-and-udp/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I wrote this article because I see a lot of sysadmins who don&#8217;t know there is a difference between TCP and UDP protocols.</p>
<p>Ex: Transmission Control Protocol (TCP) and User Datagram Protocol (UDP)is a transportation protocol that is one of the core protocols of the Internet protocol suite. Both TCP and UDP work at transport layer TCP/IP model and both have very different usage.</p>
<p>    <strong><em>TCP(Transmission Control Protocol)</em></strong>. TCP is a connection-oriented protocol, a connection can be made from client to server, and from then on any data can be sent along that connection.<br />
        <strong>Reliable</strong> &#8211; when you send a message along a TCP socket, you know it will get there unless the connection fails completely. If it gets lost along the way, the server will re-request the lost part. This means complete integrity, things don&#8217;t get corrupted.<br />
        <strong>Ordered</strong> &#8211; if you send two messages along a connection, one after the other, you know the first message will get there first. You don&#8217;t have to worry about data arriving in the wrong order.<br />
        <strong>Heavyweight</strong> &#8211; when the low level parts of the TCP &#8220;stream&#8221; arrive in the wrong order, resend requests have to be sent, and all the out of sequence parts have to be put back together, so requires a bit of work to piece together.<br />
        <strong>Examples</strong> &#8211; World Wide Web (Apache/nginx TCP port 80), e-mail (SMTP TCP port 25 Postfix MTA), File Transfer Protocol (FTP port 21) and Secure Shell (OpenSSH port 22) etc.</p>
<p>    <strong><em>UDP(User Datagram Protocol)</em></strong>. A simpler message-based connectionless protocol. With UDP you send messages(packets) across the network in chunks.<br />
        <strong>Unreliable</strong> &#8211; When you send a message, you don&#8217;t know if it&#8217;ll get there, it could get lost on the way.<br />
        <strong>Not ordered</strong> &#8211; If you send two messages out, you don&#8217;t know what order they&#8217;ll arrive in.<br />
        <strong>Lightweight</strong> &#8211; No ordering of messages, no tracking connections, etc. It&#8217;s just fire and forget! This means it&#8217;s a lot quicker, and the network card / OS have to do very little work to translate the data back from the packets.<br />
       <strong>Examples</strong> &#8211; Domain Name System (DNS UDP port 53), streaming media applications such as IPTV or movies, Voice over IP (VoIP), Trivial File Transfer Protocol (TFTP) and online multiplayer games etc</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mariusv.com/difference-between-tcp-and-udp/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Recovering deleted files from the handlers</title>
		<link>http://www.mariusv.com/recovering-deleted-files-from-the-handlers/</link>
		<comments>http://www.mariusv.com/recovering-deleted-files-from-the-handlers/#comments</comments>
		<pubDate>Wed, 11 Jan 2012 13:29:05 +0000</pubDate>
		<dc:creator>Marius Voila</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[compromised servers]]></category>
		<category><![CDATA[logs]]></category>

		<guid isPermaLink="false">http://www.mariusv.com/?p=1162</guid>
		<description><![CDATA[On compromised servers it is very common for the exploit to delete its self/logs to hide its presence. Even though the executable may be removed from the filesystem as the process is forked from apache2 the parent process will still &#8230; <a href="http://www.mariusv.com/recovering-deleted-files-from-the-handlers/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>On compromised servers it is very common for the exploit to delete its self/logs to hide its presence.</p>
<p>Even though the executable may be removed from the filesystem as the process is forked from apache2 the parent process will still have file handlers open.</p>
<p>This will allow you to recover log files/executables as long as you do not kill the process.</p>
<p>To recover the files use the following steps:</p>
<ul>
<li>Find the PID of the process with the open file handlers (use lsof)</li>
<li><em>cd /proc/ /fd</em> where is what you found using lsof above</li>
<li><em>ls -lra</em> and you should see a load of broken symlinks (red)</li>
<li>Copy the file using <em>cp</em> into another directory</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.mariusv.com/recovering-deleted-files-from-the-handlers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Review of 2011</title>
		<link>http://www.mariusv.com/review-of-2011/</link>
		<comments>http://www.mariusv.com/review-of-2011/#comments</comments>
		<pubDate>Sat, 31 Dec 2011 17:59:37 +0000</pubDate>
		<dc:creator>Marius Voila</dc:creator>
				<category><![CDATA[Personal]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[2011]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[google zeitgeist]]></category>

		<guid isPermaLink="false">http://www.mariusv.com/?p=1154</guid>
		<description><![CDATA[As we celebrate the new year, watch and remember the biggest moments of 2011 by Google]]></description>
			<content:encoded><![CDATA[<p>As we celebrate the new year, watch and remember the biggest moments of 2011 by Google</p>
<p><iframe width="560" height="315" src="http://www.youtube.com/embed/SAIEamakLoY" frameborder="0" allowfullscreen></iframe></p>
]]></content:encoded>
			<wfw:commentRss>http://www.mariusv.com/review-of-2011/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Track your Gmail address and fight spam</title>
		<link>http://www.mariusv.com/track-your-gmail-address-and-fight-spam/</link>
		<comments>http://www.mariusv.com/track-your-gmail-address-and-fight-spam/#comments</comments>
		<pubDate>Fri, 30 Dec 2011 17:50:35 +0000</pubDate>
		<dc:creator>Marius Voila</dc:creator>
				<category><![CDATA[Personal]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[nordea]]></category>
		<category><![CDATA[spam]]></category>

		<guid isPermaLink="false">http://www.mariusv.com/?p=1149</guid>
		<description><![CDATA[One of the biggest e-irritants I have is that my email address gets &#8220;sold&#8221; to companies to spam me with promotions by businesses I use (and they deny it). This trick should help identify those buggers. The trick uses the &#8230; <a href="http://www.mariusv.com/track-your-gmail-address-and-fight-spam/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>One of the biggest e-irritants I have is that my email address gets &#8220;sold&#8221; to companies to spam me with promotions by businesses I use (and they deny it). This trick should help identify those buggers.</p>
<p>The trick uses the ability tack on an alias to your gmail address using the &#8216;+&#8217; character e.g my.username+alias@gmail.com (where &#8216;alias&#8217; that you&#8217;ll track).</p>
<p>So, for example, if you sign up for a service or are supplying an email an address a bank or insurance company, you can use their name e.g when you enter an email address for a bank like Nordea Denmark (is my bank and they are &#8220;selling&#8221; my email address to everybody so they can spam me too) you can supply the address &#8216;my.username+nordea@gmail.com&#8217;.</p>
<p>You&#8217;ll still receive mail from them in your &#8216;my.username@gmail.com&#8217; inbox. All you now need to do is create a filter and Label emails to &#8216;my.username+nordea@gmail.com&#8217;.</p>
<p>If you receive email or get companies that reference email to &#8216;my.username+nordea@gmail.com&#8217; you know who they got your email address from.</p>
<p>Fight the spam!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mariusv.com/track-your-gmail-address-and-fight-spam/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>To those who say Google+ is dead, dying or a failure</title>
		<link>http://www.mariusv.com/to-those-who-say-google-is-dead-dying-or-a-failure/</link>
		<comments>http://www.mariusv.com/to-those-who-say-google-is-dead-dying-or-a-failure/#comments</comments>
		<pubDate>Fri, 30 Dec 2011 01:07:43 +0000</pubDate>
		<dc:creator>Marius Voila</dc:creator>
				<category><![CDATA[Personal]]></category>
		<category><![CDATA[google plus]]></category>
		<category><![CDATA[idiots]]></category>
		<category><![CDATA[twitter]]></category>

		<guid isPermaLink="false">http://www.mariusv.com/?p=1145</guid>
		<description><![CDATA[Please try this: 1. Go to Twitter.com from a fresh browser, ie, not logged in. 2. Sign up for a new account, name it anything you like. 3. Without following anyone, sit and view your stream for a little while. &#8230; <a href="http://www.mariusv.com/to-those-who-say-google-is-dead-dying-or-a-failure/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Please try this:</p>
<p>1. Go to <a href="http://twitter.com" title="twitter" target="_blank">Twitter.com</a> from a fresh browser, ie, not logged in.</p>
<p>2. Sign up for a new account, name it anything you like.</p>
<p>3. Without following anyone, sit and view your stream for a little while. An hour or two should do.</p>
<p>4. Return in a month, view your stream. Does it still look like it did a month ago?</p>
<p>5. Write an article on how no one uses Twitter, it&#8217;s a ghost town and a complete failure.</p>
<p>Let me know how that works out for you.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mariusv.com/to-those-who-say-google-is-dead-dying-or-a-failure/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Deep Purple epic concert</title>
		<link>http://www.mariusv.com/deep-purple-epic-concert/</link>
		<comments>http://www.mariusv.com/deep-purple-epic-concert/#comments</comments>
		<pubDate>Thu, 15 Dec 2011 22:52:37 +0000</pubDate>
		<dc:creator>Marius Voila</dc:creator>
				<category><![CDATA[Personal]]></category>
		<category><![CDATA[chairs]]></category>
		<category><![CDATA[deep purple]]></category>
		<category><![CDATA[denmark]]></category>
		<category><![CDATA[rock]]></category>

		<guid isPermaLink="false">http://www.mariusv.com/?p=1119</guid>
		<description><![CDATA[I&#8217;m walking back to my place from the Deep Purple concert and I&#8217;m a bit disappointed because of the Ian Gillan&#8217;s voice, I mean I know he is old and all but what the heck when you see you can&#8217;t &#8230; <a href="http://www.mariusv.com/deep-purple-epic-concert/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m walking back to my place from the <a title="Deep Purple" href="http://www.deeppurple.com/" target="_blank">Deep Purple</a> concert and I&#8217;m a bit disappointed because of the <a title="Ian Gillian" href="http://en.wikipedia.org/wiki/Ian_Gillan" target="_blank">Ian Gillan&#8217;s</a> voice, I mean I know he is old and all but what the heck when you see you can&#8217;t keep up with your own band then quit. The biggest surprise for me was when I entered in the concert hall and I saw the hall full with chairs&#8230;I understand the fact that danish people are lazy but c&#8217;mon Deep Purple are known as the loudest band in the history and for god sake is a <a title="rock music" href="http://en.wikipedia.org/wiki/Rock_music" target="_blank">ROCK CONCERT</a> you don&#8217;t go to listen the band who practicaly invented modern hard rock music and show by sitting silently on the chairs like children&#8217;s in the school. Was a one and a half hour concert and in all this time I had to stay on my chair(that made me go crazy but when in Rome, do as the Romans do) at one point my butt felt asleep so I hope that this long walk will wake it up <img src='http://www.mariusv.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> )</p>
<p>But long story short the band was awesome and the guitar and drums solos was amazing&#8230;and the <a title="Neue Philharmonie Frankfurt" href="http://www.last.fm/music/Neue+Philharmonie+Frankfurt" target="_blank">Neue Philharmonie Frankfurt</a> was more then I expected. Overall the concert was EPIC even with those minor glitches and I have to say <a title="thanks a lot" href="http://translate.google.com/#da|en|takket%20v%C3%A6re%20en%20masse" target="_blank">takket være en masse</a> to Jeppe Vind from <a title="KulisseLageret" href="http://www.kulisselageret.dk/" target="_blank">KulisseLageret</a> for giving me tickets and for having the chance of listening Deep Purple Live for the first time in my life and I hope not the last time <img src='http://www.mariusv.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' />  .</p>
<p><a href="http://www.mariusv.com/wp-content/uploads/2011/12/IMAG0013.jpg"><img class="aligncenter size-medium wp-image-1124" title="IMAG0013" src="http://www.mariusv.com/wp-content/uploads/2011/12/IMAG0013-169x300.jpg" alt="" width="169" height="300" /></a>Click to see the chairs(sorry for the bad quality but is a HTC Sensation XS camera(witch is really shitty)) <img src='http://www.mariusv.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>After reading this article I hope no danish person will feel offended or something but you know is the truth..I mean for god sake again: is a <a title="rock music" href="http://en.wikipedia.org/wiki/Rock_music" target="_blank">ROCK CONCERT</a> not a opera concert&#8230;you do it wrong <img src='http://www.mariusv.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.mariusv.com/deep-purple-epic-concert/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>New life update</title>
		<link>http://www.mariusv.com/new-life-update/</link>
		<comments>http://www.mariusv.com/new-life-update/#comments</comments>
		<pubDate>Wed, 14 Dec 2011 02:49:50 +0000</pubDate>
		<dc:creator>Marius Voila</dc:creator>
				<category><![CDATA[Personal]]></category>
		<category><![CDATA[deep purple]]></category>
		<category><![CDATA[mud morganfield]]></category>
		<category><![CDATA[the goo men]]></category>
		<category><![CDATA[update]]></category>

		<guid isPermaLink="false">http://www.mariusv.com/?p=1098</guid>
		<description><![CDATA[I&#8217;m currently listening to all of my Deep Purple music right now (not just the Christmas stuff) while writing up the new website for some clients of mine and a API. I mentioned about Deep Purple because they are coming &#8230; <a href="http://www.mariusv.com/new-life-update/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m currently listening to all of my Deep Purple music right now (not just the Christmas stuff) while writing up the new website for some clients of mine and a API. I mentioned about Deep Purple because they are coming tomorrow at <a href="http://maps.google.com/maps?cid=12968903021654238929" title="Casa Aarena Horsens Denmark" target="_blank">Casa Arena in Horsens Denmark</a> and I&#8217;m GOING <img src='http://www.mariusv.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' />  . Yeah I enjoy the life in Horsens. I finally had the chance to meet <a href="http://www.mudmorganfieldsite.com/" title="Mud Morganfield" target="_blank">Mud Morganfield</a> and talk with him and I got a signed vinyl album of <a href="http://www.thegoomen.no/" title="The Goo Men" target="_blank">The Goo Men</a> and all of this was only possible because of the good friends from <a href="http://www.kulisselageret.dk/" target="_blank">KulisseLageret</a> so all I wanna say is a big THANK YOU guys.</p>
<p>And some pictures just to show off <img src='http://www.mariusv.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><center><strong>Me and Mud Morganfield</strong></center><br />
<a href="http://www.mariusv.com/wp-content/uploads/2011/12/me-and-mud.jpg"><img src="http://www.mariusv.com/wp-content/uploads/2011/12/me-and-mud-300x169.jpg" alt="" title="me and mud" width="300" height="169" class="aligncenter size-medium wp-image-1101" /></a></p>
<p><strong><center>The Goo Men signed album and Mud&#8217;s signature on a piece of paper</center></strong><br />
<a href="http://www.mariusv.com/wp-content/uploads/2011/12/IMAG0010.jpg"><img src="http://www.mariusv.com/wp-content/uploads/2011/12/IMAG0010-300x169.jpg" alt="The Goo Men signed album and Mud&#039;s signature on a piece of paper" title="IMAG0010" width="300" height="169" class="aligncenter size-medium wp-image-1107" /></a></p>
<p><center><strong>And the tickets for the Deep Purple concert</strong></center><br />
<a href="http://www.mariusv.com/wp-content/uploads/2011/12/IMAG0009.jpg"><img src="http://www.mariusv.com/wp-content/uploads/2011/12/IMAG0009-300x169.jpg" alt="" title="IMAG0009" width="300" height="169" class="aligncenter size-medium wp-image-1112" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.mariusv.com/new-life-update/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Zombie Code</title>
		<link>http://www.mariusv.com/zombie-code/</link>
		<comments>http://www.mariusv.com/zombie-code/#comments</comments>
		<pubDate>Sun, 04 Dec 2011 16:51:44 +0000</pubDate>
		<dc:creator>Marius Voila</dc:creator>
				<category><![CDATA[Personal]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[zombie]]></category>

		<guid isPermaLink="false">http://www.mariusv.com/?p=1087</guid>
		<description><![CDATA[If there&#8217;s anything I hate more than dead code, it&#8217;s zombie code. Dead code is code that&#8217;s remained in the system even though it&#8217;s no longer really used. It might be small, like unused imports, instance variables and methods. It &#8230; <a href="http://www.mariusv.com/zombie-code/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.mariusv.com/wp-content/uploads/2011/12/code.jpg"><img src="http://www.mariusv.com/wp-content/uploads/2011/12/code.jpg" alt="" title="code" width="300" height="300" class="aligncenter size-full wp-image-1088" /></a><br />
If there&#8217;s anything I hate more than dead code, it&#8217;s zombie code. Dead code is code that&#8217;s remained in the system even though it&#8217;s no longer really used.<br />
It might be small, like unused imports, instance variables and methods. It can be whole classes that make up entire features no longer used.<br />
The biggest PITA is when you&#8217;re not really aware of the fact the code&#8217;s dead and unused, sitting there and occupying precious bits, and stumble across it as part of a task, trying to understand how it influences what you want to do next.<br />
Whenever I recognized something that looks like dead code but I&#8217;m not entirely sure, I find it pretty easy to delete it quickly, once I take a look in the version control logs and see when it became no longer in use and why.<br />
Zombie code is code that was never alive, and so couldn&#8217;t really become dead. It&#8217;s the undead code – code that died right when it was committed. Code that never ran or never worked. The are two reasons I hate zombie code more than &#8220;plain&#8221; dead code.</p>
<p>The first reason is that it simply wastes more of my time. Looking back in version control won&#8217;t help me see the commit in which the code was &#8220;decommissioned&#8221;, it would just appear to always sit there. That means I have to take extra care to verify that it, in fact, never worked.<br />
The second reason is that it&#8217;s plainly someone saying he doesn&#8217;t give a damn. I mean, let’s put aside TDD. Heck, let&#8217;s put aside unit testing at all. It means the code never even ran the damn thing and saw in his own eyes it did what he claims it did.<br />
Be kind to your teammates. If you&#8217;re not a good enough coder to test it, at least see that it runs once in your own eyes.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mariusv.com/zombie-code/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Eclipse Meets Vim And Emacs</title>
		<link>http://www.mariusv.com/eclipse-meets-vim-and-emacs/</link>
		<comments>http://www.mariusv.com/eclipse-meets-vim-and-emacs/#comments</comments>
		<pubDate>Sun, 27 Nov 2011 18:53:15 +0000</pubDate>
		<dc:creator>Marius Voila</dc:creator>
				<category><![CDATA[Personal]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Eclim]]></category>
		<category><![CDATA[eclipse]]></category>
		<category><![CDATA[emacs]]></category>
		<category><![CDATA[java]]></category>
		<category><![CDATA[vim]]></category>

		<guid isPermaLink="false">http://www.mariusv.com/?p=1077</guid>
		<description><![CDATA[Here&#8217;s a great tool named Eclim which brings Eclipse to vim and there&#8217;s an emacs port as well. I&#8217;ve tested for both vim and emacs and I think vim version is better than the emacs version. Emacs version needs work. &#8230; <a href="http://www.mariusv.com/eclipse-meets-vim-and-emacs/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s a great tool named Eclim which brings Eclipse to vim and there&#8217;s an emacs port as well. I&#8217;ve tested for both vim and emacs and I think vim version is better than the emacs version. Emacs version needs work. I&#8217;m jealous.</p>
<p><strong>Emacs Setup:</strong></p>
<ul>
<li>Follow <a href="http://eclim.org/guides/install.html#guides-install">these instructions</a> to install eclim.</li>
<li>Download emacs plugin from <a href="https://github.com/senny/emacs-eclim">here</a>.</li>
<li>Move downloaded emacs plugin to your .emacs.d/</li>
<li>Write the following to your <em>.emacs</em>;

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #7a0874; font-weight: bold;">&#40;</span>add-to-list <span style="color: #ff0000;">'load-path (expand-file-name &quot;~/.emacs.d/eclim/vendor&quot;))
        (require '</span>eclim<span style="color: #7a0874; font-weight: bold;">&#41;</span>
&nbsp;
        <span style="color: #7a0874; font-weight: bold;">&#40;</span>setq eclim-auto-save t<span style="color: #7a0874; font-weight: bold;">&#41;</span>
        <span style="color: #7a0874; font-weight: bold;">&#40;</span>global-eclim-mode<span style="color: #7a0874; font-weight: bold;">&#41;</span></pre></div></div>

</ul>
<p>Whenever you need to do Java development, first open a console and run the eclimd and then open emacs.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mariusv.com/eclipse-meets-vim-and-emacs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>My one week without “Social Media”</title>
		<link>http://www.mariusv.com/my-one-week-without-%e2%80%9csocial-media%e2%80%9d/</link>
		<comments>http://www.mariusv.com/my-one-week-without-%e2%80%9csocial-media%e2%80%9d/#comments</comments>
		<pubDate>Mon, 31 Oct 2011 12:27:59 +0000</pubDate>
		<dc:creator>Marius Voila</dc:creator>
				<category><![CDATA[Personal]]></category>
		<category><![CDATA[facebook]]></category>
		<category><![CDATA[foursquare]]></category>
		<category><![CDATA[g+]]></category>
		<category><![CDATA[Horsens]]></category>
		<category><![CDATA[twitter]]></category>

		<guid isPermaLink="false">http://www.mariusv.com/?p=1063</guid>
		<description><![CDATA[It may be hard to imagine in today&#8217;s world, but there was once a time when computers didn&#8217;t exist, cell phones didn&#8217;t exist. If you go back far enough, there was even a time the written word didn&#8217;t exist. We &#8230; <a href="http://www.mariusv.com/my-one-week-without-%e2%80%9csocial-media%e2%80%9d/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>It may be hard to imagine in today&#8217;s world, but there was once a time when computers didn&#8217;t exist, cell phones didn&#8217;t exist. If you go back far enough, there was even a time the written word didn&#8217;t exist.</p>
<p>We should feel privileged to live in an era of such advancements. It&#8217;s easier than ever to stay connected with people and develop relationships all over the world.</p>
<p>But this era of <a href="https://facebook.com/marius.voila" title="Facebook" target="_blank">Facebook</a>, <a href="http://twitter.com/mariusvoila" title="twitter" target="_blank">Twitter</a>, <a href="https://plus.google.com/u/0/114522783618340495104" title="Google Plus" target="_blank">Google Plus</a> (each not even a decade old) can be dangerous too. Stepping back to a simpler world now and then can prove beneficial. It&#8217;s also extremely difficult.</p>
<p><strong>Breaking An Addiction</strong></p>
<p>Cell phones have been <a href="http://articles.moneycentral.msn.com/Investing/SuperModels/CellPhonesAreTheNewCigarettes.aspx" target="_blank">likened to cigarettes</a>, and <a href="http://www.cnn.com/2011/HEALTH/07/28/ep.smartphone.obsessed.cohen/index.html" target="_blank">one study</a> found that the average person checks their phone 34 times a day. Internet usage itself is increasingly <a href="http://techcrunch.com/2011/07/25/technology-is-the-new-smoking/" target="_blank">becoming an addiction</a>.</p>
<p>It&#8217;s especially tough to step away from all of these gadgets and opportunities for connectivity when you work in the online business like I do. Industries today have been transformed by 24/7 Twitter feeds, touched by the ubiquity of Facebook and impacted by new tools like Google+. If you don&#8217;t keep up, you&#8217;ll be left behind by the intense competition out there.</p>
<p>The addiction is very real for me. Many told me I could never do it. I decided to try this anyway: One week without posting anything on Facebook, Twitter or Google+.</p>
<p><strong>A Good Feeling</strong></p>
<p>Seven days after I began my challenge, I&#8217;m proud to say I succeeded: not a single update to Twitter, Facebook or Google+. Therefore, it is possible to step away, survive and even thrive. It&#8217;s not necessarily lazy either &#8212; it&#8217;s opening up your eyes to brand new experiences (reading, observing and immersing myself in the culture and history of <a href="http://en.wikipedia.org/wiki/Horsens" title="Horsens" target="_blank">Horsens</a>, the people around me and nature, I learned dozens of new things every day).</p>
<p>So, as painful as it was at first, it was refreshing, relaxing and I truly do feel recharged. The proof is there in my streams, and no one can take it away from me: nothing posted on my Twitter, Facebook and Google+ pages between Oct. 24 and Oct. 31(and I&#8217;m thinking to take even a longer &#8220;vacation&#8221; from Facebook).</p>
<p>Maybe that duration scares the daylights out of you, but I highly recommend you try this too. Even for just a weekend. You&#8217;ll thank me later. <a href="http://translate.google.ro/#da|en|Hej" title="Hi" target="_blank">Hej</a>! And <a href="http://translate.google.ro/#da|en|tak" title="Thank You" target="_blank">tak</a> for reading.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mariusv.com/my-one-week-without-%e2%80%9csocial-media%e2%80%9d/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

