<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>Jovica Ilic</title>
	
	<link>http://www.jovicailic.org</link>
	<description>linux | programming | startups | life</description>
	<lastBuildDate>Mon, 06 May 2013 14:54:00 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/JovicaIli" /><feedburner:info uri="jovicaili" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><feedburner:emailServiceId>JovicaIli</feedburner:emailServiceId><feedburner:feedburnerHostname>http://feedburner.google.com</feedburner:feedburnerHostname><item>
		<title>How to run scripts in Linux faster than Cron does</title>
		<link>http://feedproxy.google.com/~r/JovicaIli/~3/BEPX9f-ugx0/</link>
		<comments>http://www.jovicailic.org/2013/05/how-to-run-scripts-in-linux-faster-than-cron-does/#comments</comments>
		<pubDate>Mon, 06 May 2013 14:50:09 +0000</pubDate>
		<dc:creator>jole</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[cron]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[run script on 20 seconds]]></category>

		<guid isPermaLink="false">http://www.jovicailic.org/?p=483</guid>
		<description><![CDATA[Cron is an amazing job scheduler. But, when it comes to running your scripts in less than every minute, it can&#8217;t help. With Cron, you can run your scripts every minute, but not in shorter period of time. This problem can &#8230; <a href="http://www.jovicailic.org/2013/05/how-to-run-scripts-in-linux-faster-than-cron-does/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>Cron is an amazing job scheduler. But, when it comes to running your scripts in less than every minute, it can&#8217;t help.</p>
<p>With Cron, you can run your scripts every minute, but not in shorter period of time.</p>
<p>This problem can be solved with simple bash script. For example, if you need to run a PHP script on every 20 seconds, you can create a bash script like this:</p>
<pre>#!/bin/bash
#Name:myscript.sh
#Desc:Run script in every 20 seconds
while (sleep 20 &amp;&amp; php /path_to_your_script/your_script_name.php) &amp;
do
 wait $!
done</pre>
<p>Then, make script executable, and add it to the system startup. That&#8217;s all.</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<img src="http://feeds.feedburner.com/~r/JovicaIli/~4/BEPX9f-ugx0" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.jovicailic.org/2013/05/how-to-run-scripts-in-linux-faster-than-cron-does/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.jovicailic.org/2013/05/how-to-run-scripts-in-linux-faster-than-cron-does/</feedburner:origLink></item>
		<item>
		<title>Linux gets frozen, what do you do?</title>
		<link>http://feedproxy.google.com/~r/JovicaIli/~3/5Guhv7lEKQ4/</link>
		<comments>http://www.jovicailic.org/2013/05/linux-gets-frozen-what-do-you-do/#comments</comments>
		<pubDate>Thu, 02 May 2013 09:40:33 +0000</pubDate>
		<dc:creator>jole</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[reisub]]></category>
		<category><![CDATA[safe linux restart]]></category>

		<guid isPermaLink="false">http://www.jovicailic.org/?p=479</guid>
		<description><![CDATA[Somehow, you crashed your Linux. It&#8217;s completely frozen. You try pressing Ctrl + Alt + Backspace, but doesn&#8217;t help. What to do? Someone would press the power button and restart or shut down the system. You shouldn&#8217;t do this. This &#8230; <a href="http://www.jovicailic.org/2013/05/linux-gets-frozen-what-do-you-do/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>Somehow, you crashed your Linux. It&#8217;s completely frozen. You try pressing Ctrl + Alt + Backspace, but doesn&#8217;t help.</p>
<p>What to do? Someone would press the power button and restart or shut down the system. <strong>You shouldn&#8217;t do this. This can make you a lot of problems.</strong></p>
<p>&nbsp;</p>
<p>What you can do, is to perform a gentle Linux restart.  This is much safer way to restart your frozen Linux.  To do this, you need to press:</p>
<p style="text-align: center;"><strong>Ctrl + Alt + PrtSc (SysRq) + reisub</strong></p>
<p style="text-align: left;">Just to make it clear. You need to press and hold Ctrl, Alt and PrtSc(SysRq) buttons, and while holding them, you need to press r, e, i, s, u, b</p>
<p style="text-align: left;">This will restart your Linux safely.</p>
<p style="text-align: left;">It&#8217;s possible that you&#8217;ll have problem to reach all the buttons you need to press. I&#8217;ve seen people type reisub with their nose <img src='http://jovicailic.org/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p style="text-align: left;">So, here&#8217;s my suggestion: With your smallest finger on the left hand, press Ctrl. With your thumb on left hand, press Alt. With the smallest finger on your right hand press PrtSc(SysRq) button. This way, you&#8217;ll be able to access to reisub buttons with your other fingers.</p>
<p style="text-align: left;"><strong>Okay, but what this REISUB means? </strong></p>
<ul>
<li>R: Switch the keyboard from raw mode to XLATE mode</li>
<li>E: Send the SIGTERM signal to all processes except init</li>
<li>I: Send the SIGKILL signal to all processes except init</li>
<li>S: Sync all mounted filesystems</li>
<li>U: Remount all mounted filesystems in read-only mode</li>
<li>B: Immediately reboot the system, without unmounting partitions or syncing</li>
</ul>
<p>You can find the complete list <a title="Magic_SysRq_key" href="http://en.wikipedia.org/wiki/Magic_SysRq_key" target="_blank">here</a>. There you can see that <strong>o </strong>shuts down the system. So, if you want to turn off your PC when your Linux crash, you can use this combination:</p>
<p style="text-align: center;"><strong>Ctrl + Alt + PrtSc (SysRq) + reisuo</strong></p>
<img src="http://feeds.feedburner.com/~r/JovicaIli/~4/5Guhv7lEKQ4" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.jovicailic.org/2013/05/linux-gets-frozen-what-do-you-do/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		<feedburner:origLink>http://www.jovicailic.org/2013/05/linux-gets-frozen-what-do-you-do/</feedburner:origLink></item>
		<item>
		<title>You’re in the front of a Linux computer, you need a root access. What do you do?</title>
		<link>http://feedproxy.google.com/~r/JovicaIli/~3/UlEnUEg3xow/</link>
		<comments>http://www.jovicailic.org/2013/04/how-to-get-to-linux-root/#comments</comments>
		<pubDate>Mon, 15 Apr 2013 13:29:21 +0000</pubDate>
		<dc:creator>jole</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[grub]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[linux reset password]]></category>
		<category><![CDATA[root access]]></category>

		<guid isPermaLink="false">http://www.jovicailic.org/?p=466</guid>
		<description><![CDATA[So, imagine that you are in front of some Linux computer to which you don&#8217;t have any access. How do you get a root access? Restart the computer, in Grub menu choose (recovery mode) and on the next screen select &#8230; <a href="http://www.jovicailic.org/2013/04/how-to-get-to-linux-root/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>So, imagine that you are in front of some Linux computer to which you don&#8217;t have any access. How do you get a root access?</p>
<p>Restart the computer, in Grub menu choose <strong>(recovery mode)</strong> and on the next screen select <strong>Drop to root shell prompt</strong>. Simple as that.</p>
<p>&nbsp;</p>
<img src="http://feeds.feedburner.com/~r/JovicaIli/~4/UlEnUEg3xow" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.jovicailic.org/2013/04/how-to-get-to-linux-root/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		<feedburner:origLink>http://www.jovicailic.org/2013/04/how-to-get-to-linux-root/</feedburner:origLink></item>
		<item>
		<title>The Success of Introverts vs. Extroverts</title>
		<link>http://feedproxy.google.com/~r/JovicaIli/~3/JYthlKt7dw4/</link>
		<comments>http://www.jovicailic.org/2013/03/the-success-of-introverts-vs-extroverts/#comments</comments>
		<pubDate>Sun, 17 Mar 2013 17:22:13 +0000</pubDate>
		<dc:creator>jole</dc:creator>
				<category><![CDATA[Personal]]></category>
		<category><![CDATA[ambiverts]]></category>
		<category><![CDATA[introverts vs extrovers]]></category>
		<category><![CDATA[success]]></category>

		<guid isPermaLink="false">http://www.jovicailic.org/?p=445</guid>
		<description><![CDATA[New research from Adam Grant, the youngest tenured professor at the University of Pennsylvania’s Wharton School of Management, is really intriguing. In his study, Grant collected data from sales representatives at a software company. He began by giving reps an &#8230; <a href="http://www.jovicailic.org/2013/03/the-success-of-introverts-vs-extroverts/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p><a href="http://http://www.management.wharton.upenn.edu/grant/Publications.htm">N</a><a href="http://www.management.wharton.upenn.edu/grant/Publications.htm" target="_blank">ew research</a> from Adam Grant, the youngest tenured professor at the University of Pennsylvania’s Wharton School of Management, is really intriguing. In his study, Grant collected data from sales representatives at a software company. He began by giving reps an often-used personality assessment that measures introversion and extroversion on a 1-to-7 scale, with 1 being most introverted and 7 being most extroverted.</p>
<p>&nbsp;</p>
<p>Then he tracked their performance over the next three months.<br />
The introverts fared worst; they earned average revenue of $120 per hour.<br />
The extroverts performed slightly better, pulling in $125 per hour. <strong>But neither did nearly as well as a third group: the ambiverts.<br />
In Grant’s study, ambiverts earned average hourly revenues of $155, beating extroverts by a healthy 24 percent.<br />
</strong></p>
<p>Who are Ambiverts?</p>
<p>Ambiverts, a term coined by social scientists in the 1920s, are people who are neither extremely introverted nor extremely extroverted. Think back to that 1-to-7 scale that Grant used. Ambiverts aren’t 1s or 2s, but they’re not 6s or 7s either. They’re 3s, 4s and 5s. They’re not quiet, but they’re not loud. They know how to assert themselves, but they’re not pushy.</p>
<p>via <a href="http://www.washingtonpost.com/national/on-leadership/why-extroverts-fail-introverts-flounder-and-you-probably-succeed/2013/01/28/bc4949b0-695d-11e2-95b3-272d604a10a3_story.html?hpid=z2" target="_blank">washingtonpost.com</a></p>
<img src="http://feeds.feedburner.com/~r/JovicaIli/~4/JYthlKt7dw4" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.jovicailic.org/2013/03/the-success-of-introverts-vs-extroverts/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.jovicailic.org/2013/03/the-success-of-introverts-vs-extroverts/</feedburner:origLink></item>
		<item>
		<title>Grabbing HTTP headers with Python [ 7 lines of code ]</title>
		<link>http://feedproxy.google.com/~r/JovicaIli/~3/9OJ5yUGPO8A/</link>
		<comments>http://www.jovicailic.org/2013/03/grabbing-header-with-python/#comments</comments>
		<pubDate>Wed, 13 Mar 2013 14:07:08 +0000</pubDate>
		<dc:creator>jole</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[banner grabbing]]></category>
		<category><![CDATA[header grabbing]]></category>
		<category><![CDATA[python]]></category>

		<guid isPermaLink="false">http://www.jovicailic.org/?p=436</guid>
		<description><![CDATA[As I mentioned in one of my previous post, I started with learning Python. Here is one of the first scripts I wrote. It grabs the HTTP Response header. Great thing is that it&#8217;s possible to do this with only &#8230; <a href="http://www.jovicailic.org/2013/03/grabbing-header-with-python/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>As I mentioned in <a href="http://www.jovicailic.org/2013/03/lessons-learned-from-my-first-30-day-challenge/">one of my previous post</a>, I started with learning Python.</p>
<p>Here is one of the first scripts I wrote. It grabs the HTTP Response header. Great thing is that it&#8217;s possible to do this with only 7 lines of code.</p>
<p>Script code:</p>
<pre>#!/usr/bin/python
import urllib2
import sys
url = raw_input("Full url:")
url.rstrip()
header = urllib2.urlopen(url).info()
print(str(header))</pre>
<p>Example usage:</p>
<pre>$&gt;python headers.py</pre>
<pre>$&gt;Full url: http://www.jovicailic.org</pre>
<p></br><br />
As a result, you should get something like:<br />
</br></p>
<pre>Date: Wed, 13 Mar 2013 12:35:43 GMT
Server: Apache/2.2.21 (Unix) mod_ssl/2.2.21 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimi
ted/1.4
X-Powered-By: PHP/5.2.9
Vary: Accept-Encoding,Cookie
Cache-Control: max-age=3, must-revalidate
WP-Super-Cache: Served supercache file from PHP
Connection: close
Transfer-Encoding: chunked
Content-Type: text/html; charset=UTF-8</pre>
<img src="http://feeds.feedburner.com/~r/JovicaIli/~4/9OJ5yUGPO8A" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.jovicailic.org/2013/03/grabbing-header-with-python/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.jovicailic.org/2013/03/grabbing-header-with-python/</feedburner:origLink></item>
		<item>
		<title>The story you should always keep in mind</title>
		<link>http://feedproxy.google.com/~r/JovicaIli/~3/JSloRRYCJ2A/</link>
		<comments>http://www.jovicailic.org/2013/03/the-story-you-should-always-keep-in-mind/#comments</comments>
		<pubDate>Mon, 11 Mar 2013 11:03:23 +0000</pubDate>
		<dc:creator>jole</dc:creator>
				<category><![CDATA[Personal]]></category>
		<category><![CDATA[personal]]></category>

		<guid isPermaLink="false">http://www.jovicailic.org/?p=429</guid>
		<description><![CDATA[The story One farmer whose corn always received first prize at the local fair, used to share the best seed with all the villagers around. When asked why, he said: It&#8217;s just a matter of interest. Wind carries pollen from &#8230; <a href="http://www.jovicailic.org/2013/03/the-story-you-should-always-keep-in-mind/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<h3>The story</h3>
<p>One farmer whose corn always received first prize at the local fair, used to share the best seed with all the villagers around.<br />
When asked why, he said: It&#8217;s just a matter of interest. Wind carries pollen from one field to another. If my neighbors would grow low-quality corn, cross-pollination would reduce the quality of my corn. That&#8217;s why I always share with others the best seed I have.</p>
<h3>The conclusion</h3>
<p>Everything we give to others, we give to ourselves.<br />
It is impossible to help others, and not helping ourselves in the same time.<br />
It is also impossible to do harm to others while not doing harm to ourselves.</p>
<img src="http://feeds.feedburner.com/~r/JovicaIli/~4/JSloRRYCJ2A" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.jovicailic.org/2013/03/the-story-you-should-always-keep-in-mind/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.jovicailic.org/2013/03/the-story-you-should-always-keep-in-mind/</feedburner:origLink></item>
		<item>
		<title>How Business Works</title>
		<link>http://feedproxy.google.com/~r/JovicaIli/~3/RKA_0LvLKi0/</link>
		<comments>http://www.jovicailic.org/2013/03/how-business-works/#comments</comments>
		<pubDate>Tue, 05 Mar 2013 10:51:57 +0000</pubDate>
		<dc:creator>jole</dc:creator>
				<category><![CDATA[Personal]]></category>
		<category><![CDATA[business]]></category>
		<category><![CDATA[how business works]]></category>

		<guid isPermaLink="false">http://www.jovicailic.org/?p=422</guid>
		<description><![CDATA[How business works &#8211; 3 steps Step 1 Dad: I want you to marry a girl of my choice. Son: No! Dad: The girl is Bill Gates&#8217; daughter. Son: Then ok! Step 2 - Dad goes to Bill Gates Dad: I &#8230; <a href="http://www.jovicailic.org/2013/03/how-business-works/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<h2>How business works &#8211; 3 steps</h2>
<h3>Step 1</h3>
<p>Dad: I want you to marry a girl of my choice.<br />
Son: No!<br />
Dad: The girl is Bill Gates&#8217; daughter.<br />
Son: Then ok!</p>
<h3>Step 2 - Dad goes to Bill Gates</h3>
<p>Dad: I want your daughter to marry my son.<br />
Bill Gates: No!<br />
Dad: My son is the CEO of the World Bank.<br />
Bill Gates: Then ok!</p>
<h3>Step 3 &#8211; Dad goes to the President of the World Bank</h3>
<p>Dad: Appoint my son as the CEO of your bank.<br />
President: No!<br />
Dad: He is the son-in-law of Bill Gates.<br />
President: Then ok!</p>
<img src="http://feeds.feedburner.com/~r/JovicaIli/~4/RKA_0LvLKi0" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.jovicailic.org/2013/03/how-business-works/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.jovicailic.org/2013/03/how-business-works/</feedburner:origLink></item>
		<item>
		<title>Lessons learned from my first 30-day challenge</title>
		<link>http://feedproxy.google.com/~r/JovicaIli/~3/skOA_zYM5Vs/</link>
		<comments>http://www.jovicailic.org/2013/03/lessons-learned-from-my-first-30-day-challenge/#comments</comments>
		<pubDate>Mon, 04 Mar 2013 10:19:36 +0000</pubDate>
		<dc:creator>jole</dc:creator>
				<category><![CDATA[Personal]]></category>
		<category><![CDATA[30 day challenge]]></category>

		<guid isPermaLink="false">http://www.jovicailic.org/?p=413</guid>
		<description><![CDATA[Hello again! If you didn&#8217;t see my previous post, for the last 30 days I gave myself a challenge, that I will not go to Facebook, Twitter, and social media in general, that I will minimize mails activities and try &#8230; <a href="http://www.jovicailic.org/2013/03/lessons-learned-from-my-first-30-day-challenge/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>Hello again!</p>
<p>If you didn&#8217;t see my <a href="http://www.jovicailic.org/2013/02/30-day-challenge/" target="_blank">previous post</a>, for the last 30 days I gave myself a challenge, that I will not go to Facebook, Twitter, and social media in general, that I will minimize mails activities and try to do something more useful.</p>
<p>Well, my challenge was successful. Honestly, I expected it will be.</p>
<p>What can I say now, after this challenge:</p>
<ul>
<li>You will not miss anything really important if you&#8217;re not on Facebook or Twitter &#8211; important news were getting to me in other ways</li>
<li>You will feel better without so much not-necessary information</li>
<li>You will have more time for other activities</li>
<li>You can get Twitter followers without tweeting &#8211; for one month without Twitter, I got 19 followers.</li>
</ul>
<p>&nbsp;</p>
<p>I enjoyed time without Facebook/Twitter/Social Media, and in the moments I felt like opening Facebook or Twitter, I would take a book. I started with 100$ Startup. I have read it completely, I am not so satisfied with the book itself, but more about this in other post.</p>
<p>After this one, I started a new book &#8211; The Gambler from Fyodor Dostoyevsky. I read this book as well, it&#8217;s a great one.</p>
<p>&nbsp;</p>
<p>Parallel with this, I decided to take course on Python. I started with <a href="http://learnpythonthehardway.org/" target="_blank">Learn Python The Hard Way</a>, and until now, I passed more than half.<br />
Since I &#8220;speak&#8221; more than few programming languages, learning Python is not something  hard. It&#8217;s even pretty easy. So, after I finish the course I mentioned (btw, it&#8217;s free! ), I will start with reading a new book on learning Python.</p>
<p>I think that 30-day challenge is a great way to motivate yourself to do things you want to do, to try something you never tried before, etc.<br />
I will for sure give myself next 30-day challenge really soon.</p>
<p>[follow_me]</p>
<img src="http://feeds.feedburner.com/~r/JovicaIli/~4/skOA_zYM5Vs" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.jovicailic.org/2013/03/lessons-learned-from-my-first-30-day-challenge/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.jovicailic.org/2013/03/lessons-learned-from-my-first-30-day-challenge/</feedburner:origLink></item>
		<item>
		<title>30 Day challenge – Stay out of social media</title>
		<link>http://feedproxy.google.com/~r/JovicaIli/~3/guRF6epL5wI/</link>
		<comments>http://www.jovicailic.org/2013/02/30-day-challenge/#comments</comments>
		<pubDate>Sat, 02 Feb 2013 10:19:26 +0000</pubDate>
		<dc:creator>jole</dc:creator>
				<category><![CDATA[blog]]></category>
		<category><![CDATA[30 day challenge]]></category>

		<guid isPermaLink="false">http://www.jovicailic.org/?p=408</guid>
		<description><![CDATA[Yesterday I was reading post from Matt Cutts about his last 30 day challenge, so I decided to take one as well. For the next 30 days, I will not visit Facebook, Twitter and social media in general. Also, I &#8230; <a href="http://www.jovicailic.org/2013/02/30-day-challenge/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>Yesterday I was reading post from Matt Cutts about his last <a href="http://www.mattcutts.com/blog/what-i-learned-from-time-away-from-the-internet-and-email/" target="_blank">30 day challenge</a>, so I decided to take one as well.</p>
<p>For the next 30 days, I will not visit Facebook, Twitter and social media in general. Also, I will stop with reading online articles, and I&#8217;ll try to minimize my email activities. Instead, I will study and read more books.</p>
<p>Next blog post I will write in 30 days, and tell you about my results.</p>
<p>The challenge starts today at noon ( meaning, in about 40 minutes ).</p>
<img src="http://feeds.feedburner.com/~r/JovicaIli/~4/guRF6epL5wI" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.jovicailic.org/2013/02/30-day-challenge/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		<feedburner:origLink>http://www.jovicailic.org/2013/02/30-day-challenge/</feedburner:origLink></item>
		<item>
		<title>How to Find Awesome Domain Name for Your Startup</title>
		<link>http://feedproxy.google.com/~r/JovicaIli/~3/oaYRnmERuv8/</link>
		<comments>http://www.jovicailic.org/2013/01/how-to-find-awesome-domain-name-for-your-startup/#comments</comments>
		<pubDate>Thu, 31 Jan 2013 12:14:39 +0000</pubDate>
		<dc:creator>jole</dc:creator>
				<category><![CDATA[blog]]></category>
		<category><![CDATA[domain names for startup]]></category>
		<category><![CDATA[startup]]></category>

		<guid isPermaLink="false">http://www.jovicailic.org/?p=405</guid>
		<description><![CDATA[If you have already tried to find some domain name for your startup or website, you know that a lot of nice domain names are already registered. Two best websites to find free and awesome (or at least good looking) &#8230; <a href="http://www.jovicailic.org/2013/01/how-to-find-awesome-domain-name-for-your-startup/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>If you have already tried to find some domain name for your startup or website, you know that a lot of nice domain names are already registered.</p>
<p>Two best websites to find free and awesome (or at least good looking) domains are:</p>
<ul>
<li><a href="http://www.namemesh.com/" target="_blank">http://www.namemesh.com/</a></li>
<li><a href="http://domai.nr/" target="_blank">http://domai.nr/</a></li>
</ul>
<p>Check them out.</p>
<img src="http://feeds.feedburner.com/~r/JovicaIli/~4/oaYRnmERuv8" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.jovicailic.org/2013/01/how-to-find-awesome-domain-name-for-your-startup/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://www.jovicailic.org/2013/01/how-to-find-awesome-domain-name-for-your-startup/</feedburner:origLink></item>
	</channel>
</rss><!-- Dynamic page generated in 2.338 seconds. --><!-- Cached page generated by WP-Super-Cache on 2013-05-20 04:36:01 -->
