<?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>Vasiljevski Nikola</title>
	<atom:link href="http://www.vasiljevski.com/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.vasiljevski.com/blog</link>
	<description>Art is never finished, only abandoned</description>
	<lastBuildDate>Thu, 19 Jan 2012 08:35:19 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>How to set the selected option of &lt;select&gt; tag from the PHP</title>
		<link>http://www.vasiljevski.com/blog/2012/01/17/how-to-set-the-selected-option-of-select-tag-from-the-php/</link>
		<comments>http://www.vasiljevski.com/blog/2012/01/17/how-to-set-the-selected-option-of-select-tag-from-the-php/#comments</comments>
		<pubDate>Mon, 16 Jan 2012 23:22:56 +0000</pubDate>
		<dc:creator>Nikola Vasiljevski</dc:creator>
				<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://www.vasiljevski.com/blog/?p=212</guid>
		<description><![CDATA[There is a few ways to do this. The easiest way to do this is in fact really simple, you just need to add a keyword &#8220;selected&#8221; to the option that you want selected. For example, if You have something like this: 1 2 3 4 5 &#60;select&#62; &#60;option value=&#34;1&#34;&#62;Apple&#60;/option&#62; &#60;option value=&#34;2&#34;&#62;Samsung&#60;/option&#62; &#60;option value=&#34;3&#34;&#62;HTC&#60;/option&#62; &#60;/select&#62; [...]]]></description>
			<content:encoded><![CDATA[<!-- Start Shareaholic LikeButtonSetTop Automatic --><div style="clear: both; min-height: 1px; height: 3px; width: 100%;"></div><div class='shareaholic-like-buttonset' style='float:none;height:30px;'><a class='shareaholic-fblike' data-shr_layout='button_count' data-shr_showfaces='false' data-shr_href='http%3A%2F%2Fwww.vasiljevski.com%2Fblog%2F2012%2F01%2F17%2Fhow-to-set-the-selected-option-of-select-tag-from-the-php%2F' data-shr_title='How+to+set+the+selected+option+of+%26lt%3Bselect%26gt%3B+tag+from+the+PHP'></a><a class='shareaholic-fbsend' data-shr_href='http%3A%2F%2Fwww.vasiljevski.com%2Fblog%2F2012%2F01%2F17%2Fhow-to-set-the-selected-option-of-select-tag-from-the-php%2F'></a><a class='shareaholic-googleplusone' data-shr_size='medium' data-shr_count='true' data-shr_href='http%3A%2F%2Fwww.vasiljevski.com%2Fblog%2F2012%2F01%2F17%2Fhow-to-set-the-selected-option-of-select-tag-from-the-php%2F' data-shr_title='How+to+set+the+selected+option+of+%26lt%3Bselect%26gt%3B+tag+from+the+PHP'></a><a class='shareaholic-tweetbutton' data-shr_count='none' data-shr_href='http%3A%2F%2Fwww.vasiljevski.com%2Fblog%2F2012%2F01%2F17%2Fhow-to-set-the-selected-option-of-select-tag-from-the-php%2F' data-shr_title='How+to+set+the+selected+option+of+%26lt%3Bselect%26gt%3B+tag+from+the+PHP'></a></div><div style="clear: both; min-height: 1px; height: 3px; width: 100%;"></div><!-- End Shareaholic LikeButtonSetTop Automatic --><p>There is a few ways to do this. The easiest way to do this is in fact really simple, you just need to add a keyword &#8220;selected&#8221; to the option that you want selected.<br />
For example, if You have something like this:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
</pre></td><td class="code"><pre class="html" style="font-family:monospace;">&lt;select&gt;
   &lt;option value=&quot;1&quot;&gt;Apple&lt;/option&gt;
   &lt;option value=&quot;2&quot;&gt;Samsung&lt;/option&gt;
   &lt;option value=&quot;3&quot;&gt;HTC&lt;/option&gt;
&lt;/select&gt;</pre></td></tr></table></div>

<p><span id="more-212"></span><br />
If we want to have &#8220;Samsung&#8221; selected:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
</pre></td><td class="code"><pre class="html" style="font-family:monospace;">&lt;select&gt;
   &lt;option value=&quot;1&quot;&gt;Apple&lt;/option&gt;
   &lt;option selected value=&quot;2&quot;&gt;Samsung&lt;/option&gt;
   &lt;option value=&quot;3&quot;&gt;HTC&lt;/option&gt;
&lt;/select&gt;</pre></td></tr></table></div>

<p>Pretty easy, don&#8217;t you thing so <img src='http://www.vasiljevski.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Now next thing that we need to do is to make our &lt;select&gt; submit so we could arrange the page accordingly.<br />
To do that, we need to put it inside a &lt;form&gt;, like this:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
</pre></td><td class="code"><pre class="html" style="font-family:monospace;">&lt;form&gt;
   &lt;select id=&quot;company&quot; name=&quot;company&quot;&gt; 
      &lt;option value=&quot;1&quot;&gt;Apple&lt;/option&gt; 
      &lt;option value=&quot;2&quot;&gt;Samsung&lt;/option&gt; 
      &lt;option value=&quot;3&quot;&gt;HTC&lt;/option&gt; 
   &lt;/select&gt; 
&lt;/form&gt;</pre></td></tr></table></div>

<p>Depending on your needs and requirements you may need some extra parameters set to the &lt;form&gt; tag, but for our example this is just fine<br />
You can notice I added &#8220;id&#8221; and a &#8220;name&#8221; to the &lt;select&gt; tag, we will you these names to access the value at the backend.</p>
<p>Now for the fun part, let&#8217;s add some basic PHP code and bring our example to life.</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
</pre></td><td class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?php</span>
&nbsp;
<span style="color: #009900;">&#40;</span><span style="color: #990000;">isset</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$_POST</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">&quot;company&quot;</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span> ? <span style="color: #000088;">$company</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$_POST</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">&quot;company&quot;</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">:</span> <span style="color: #000088;">$company</span><span style="color: #339933;">=</span><span style="color: #cc66cc;">1</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #000000; font-weight: bold;">?&gt;</span>
&nbsp;
&lt;form&gt;
&lt;select id=&quot;company&quot; name=&quot;company&quot;&gt;
&lt;option <span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #000088;">$company</span> <span style="color: #339933;">==</span> <span style="color: #cc66cc;">1</span> <span style="color: #009900;">&#41;</span> <span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">'selected'</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span> value=&quot;1&quot;&gt;Apple&lt;/option&gt;
&lt;option <span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #000088;">$company</span> <span style="color: #339933;">==</span> <span style="color: #cc66cc;">1</span> <span style="color: #009900;">&#41;</span> <span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">'selected'</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span> value=&quot;2&quot;&gt;Samsung&lt;/option&gt;
&lt;option <span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #000088;">$company</span> <span style="color: #339933;">==</span> <span style="color: #cc66cc;">1</span> <span style="color: #009900;">&#41;</span> <span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">'selected'</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span> value=&quot;3&quot;&gt;HTC&lt;/option&gt;
&lt;/select&gt;
&lt;/form&gt;</pre></td></tr></table></div>

<p>And that&#8217;s it. It has no real use, but it is good to get a grip of how the things work.</p>
<p>Hope someone finds this useful, and also that someone can contribute and make the examples better.</p>
<div class="shr-publisher-212"></div><!-- Start Shareaholic LikeButtonSetBottom Automatic --><!-- End Shareaholic LikeButtonSetBottom Automatic -->]]></content:encoded>
			<wfw:commentRss>http://www.vasiljevski.com/blog/2012/01/17/how-to-set-the-selected-option-of-select-tag-from-the-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google&#8217;s 13th birthday!</title>
		<link>http://www.vasiljevski.com/blog/2011/09/27/googles-13th-birthday/</link>
		<comments>http://www.vasiljevski.com/blog/2011/09/27/googles-13th-birthday/#comments</comments>
		<pubDate>Tue, 27 Sep 2011 10:17:47 +0000</pubDate>
		<dc:creator>Nikola Vasiljevski</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.vasiljevski.com/blog/?p=199</guid>
		<description><![CDATA[Search giant Googlehas entered teens today, the tech behemoth has turned 13. Officially a teenager, Google celebrates its birthday with a doodle that shows the five letters of the company logo wearing party hats placed around a cake with balloons and gifts around. A click on the doodle takes visitors to a search result page [...]]]></description>
			<content:encoded><![CDATA[<!-- Start Shareaholic LikeButtonSetTop Automatic --><div style="clear: both; min-height: 1px; height: 3px; width: 100%;"></div><div class='shareaholic-like-buttonset' style='float:none;height:30px;'><a class='shareaholic-fblike' data-shr_layout='button_count' data-shr_showfaces='false' data-shr_href='http%3A%2F%2Fwww.vasiljevski.com%2Fblog%2F2011%2F09%2F27%2Fgoogles-13th-birthday%2F' data-shr_title='Google%27s+13th+birthday%21'></a><a class='shareaholic-fbsend' data-shr_href='http%3A%2F%2Fwww.vasiljevski.com%2Fblog%2F2011%2F09%2F27%2Fgoogles-13th-birthday%2F'></a><a class='shareaholic-googleplusone' data-shr_size='medium' data-shr_count='true' data-shr_href='http%3A%2F%2Fwww.vasiljevski.com%2Fblog%2F2011%2F09%2F27%2Fgoogles-13th-birthday%2F' data-shr_title='Google%27s+13th+birthday%21'></a><a class='shareaholic-tweetbutton' data-shr_count='none' data-shr_href='http%3A%2F%2Fwww.vasiljevski.com%2Fblog%2F2011%2F09%2F27%2Fgoogles-13th-birthday%2F' data-shr_title='Google%27s+13th+birthday%21'></a></div><div style="clear: both; min-height: 1px; height: 3px; width: 100%;"></div><!-- End Shareaholic LikeButtonSetTop Automatic --><p><div id="attachment_200" class="wp-caption alignleft" style="width: 198px"><a href="http://www.vasiljevski.com/blog/wp-content/uploads/2011/09/Googles_13th_Birthday-2011-hp1.jpg"><img class="size-full wp-image-200   " title="Googles_13th_Birthday-2011-hp[1]" src="http://www.vasiljevski.com/blog/wp-content/uploads/2011/09/Googles_13th_Birthday-2011-hp1.jpg" alt="Googles_13th_Birthday-2011" width="188" height="107" /></a><p class="wp-caption-text">Googles 13th Birthday</p></div>Search giant <a href="http://www.vasiljevski.com/blog/search/Google">Google</a>has entered teens today, the tech behemoth has turned 13. Officially a teenager, Google celebrates its birthday with a doodle that shows the five letters of the company logo wearing party hats placed around a cake with balloons and gifts around.</p>
<p>A click on the doodle takes visitors to a search result page on Google. <a href="http://www.vasiljevski.com/blog/search/Larry-Page">Larry Page</a> and <a href="http://www.vasiljevski.com/blog/search/Sergey-Brin">Sergey Brin</a> started Google Inc in September 1998 with four computers and an investor&#8217;s $100,000 bet on their belief that an Internet search engine can change the world.<span id="more-199"></span></p>
<p>The company though filed for incorporation on September 4, 1998, and Google.com domain was registered on September 15, it officially celebrates its birthday on September 27.</p>
<p>As Google enters its 13th year, the company faces increasing legislative scrutiny and increasing competition from social networking giant <a href="http://www.vasiljevski.com/blog/search/Facebook">Facebook</a>. Google Inc has evolved to become a dominant and potentially anti-competitive force on the Internet, US senators remarked at a recent congressional hearing.</p>
<p>&#8220;Google is in a position to determine who will succeed and who will fail on the Internet,&#8221; said Republican Senator Mike Lee, a member of the Senate Judiciary Committee&#8217;s antitrust panel. &#8220;In the words of the head of the Goggle&#8217;s search ranking team, Google is the biggest kingmaker on Earth.&#8221;</p>
<p>Source: <a href="http://timesofindia.indiatimes.com/tech/news/internet/Happy-13th-Birthday-Google/articleshow/10137112.cms" target="_blank">http://timesofindia.indiatimes.com</a></p>
<div class="shr-publisher-199"></div><!-- Start Shareaholic LikeButtonSetBottom Automatic --><!-- End Shareaholic LikeButtonSetBottom Automatic -->]]></content:encoded>
			<wfw:commentRss>http://www.vasiljevski.com/blog/2011/09/27/googles-13th-birthday/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Android 3.2 is here!</title>
		<link>http://www.vasiljevski.com/blog/2011/09/26/android-3-2-is-here/</link>
		<comments>http://www.vasiljevski.com/blog/2011/09/26/android-3-2-is-here/#comments</comments>
		<pubDate>Mon, 26 Sep 2011 15:46:19 +0000</pubDate>
		<dc:creator>Nikola Vasiljevski</dc:creator>
				<category><![CDATA[Android]]></category>

		<guid isPermaLink="false">http://www.vasiljevski.com/blog/?p=184</guid>
		<description><![CDATA[The new Google Android 3.2 SDK also known as Android Honeycomb 3.2 is specially designed for tablets with a very good adjustment with the different size of screens. For developers, the Android 3.2 platform is available as a downloadable component for the Android SDK. The downloadable platform includes an Android library and system image, as [...]]]></description>
			<content:encoded><![CDATA[<!-- Start Shareaholic LikeButtonSetTop Automatic --><div style="clear: both; min-height: 1px; height: 3px; width: 100%;"></div><div class='shareaholic-like-buttonset' style='float:none;height:30px;'><a class='shareaholic-fblike' data-shr_layout='button_count' data-shr_showfaces='false' data-shr_href='http%3A%2F%2Fwww.vasiljevski.com%2Fblog%2F2011%2F09%2F26%2Fandroid-3-2-is-here%2F' data-shr_title='Android+3.2+is+here%21'></a><a class='shareaholic-fbsend' data-shr_href='http%3A%2F%2Fwww.vasiljevski.com%2Fblog%2F2011%2F09%2F26%2Fandroid-3-2-is-here%2F'></a><a class='shareaholic-googleplusone' data-shr_size='medium' data-shr_count='true' data-shr_href='http%3A%2F%2Fwww.vasiljevski.com%2Fblog%2F2011%2F09%2F26%2Fandroid-3-2-is-here%2F' data-shr_title='Android+3.2+is+here%21'></a><a class='shareaholic-tweetbutton' data-shr_count='none' data-shr_href='http%3A%2F%2Fwww.vasiljevski.com%2Fblog%2F2011%2F09%2F26%2Fandroid-3-2-is-here%2F' data-shr_title='Android+3.2+is+here%21'></a></div><div style="clear: both; min-height: 1px; height: 3px; width: 100%;"></div><!-- End Shareaholic LikeButtonSetTop Automatic --><p>The new Googl<a href="http://www.vasiljevski.com/blog/wp-content/uploads/2011/09/android-honeycomb-logo-t1.jpg"><img class="alignleft size-full wp-image-185" title="android-honeycomb-logo-t[1]" src="http://www.vasiljevski.com/blog/wp-content/uploads/2011/09/android-honeycomb-logo-t1.jpg" alt="android-honeycomb" width="240" height="180" /></a>e Android 3.2 SDK also known as Android Honeycomb 3.2 is specially designed for tablets with a very good adjustment with the different size of screens.</p>
<p>For developers, the Android 3.2 platform is available as a downloadable component for the Android SDK. <span id="more-184"></span>The downloadable platform includes an Android library and system image, as well as a set of emulator skins and more.</p>
<h3>New user features</h3>
<ul>
<li><strong>Optimizations for a wider range of tablets</strong>Android 3.2 includes a variety of optimizations across the system to ensure a great user experience on a wider range of tablet devices.</li>
<li><strong>Compatibility zoom for fixed-sized apps</strong>Android 3.2 introduces a new <em>compatibility zoom</em> mode that gives users a new way to view fixed-sized apps on larger devices. The new mode provides a pixel-scaled alternative to the standard UI stretching for apps that are not designed to run on larger screen sizes, such as on tablets. The new mode is accessible to users from a menu icon in the system bar, for apps that need compatibility support.</li>
<li><strong>Media sync from SD card</strong>On devices that support an SD card, users can now load media files directly from the SD card to apps that use them. A system facility makes the files accessible to apps from the system media store.</li>
</ul>
<h3>New developer features</h3>
<ul>
<li><strong>Extended API for managing screens support</strong>Android 3.2 introduces extensions to the platform&#8217;s screen support API to give developers additional ways to manage application UI across the range of Android-powered devices. The API includes new resource qualifiers and new manifest attributes that give you more precise control over how your apps are displayed on different sizes, rather than relying on generalized size categories.To ensure the best possible display for fixed-sized apps and apps with limited support for various screen sizes, the platform also provides a new zoom compatibility mode that renders the UI on a smaller screen area, then scales it up to fill the space available on the display. For more information about the screen support API and the controls it provides, see the sections below.</li>
</ul>
<p>Source: <a title="Android Developers" href="http://developer.android.com/sdk/android-3.2.html" target="_blank">Android Developers</a>, <a href="http://latesttechworld.com/2011/07/android-3-2-is-here/" target="_blank">latesttechworld.com</a></p>
<div class="shr-publisher-184"></div><!-- Start Shareaholic LikeButtonSetBottom Automatic --><!-- End Shareaholic LikeButtonSetBottom Automatic -->]]></content:encoded>
			<wfw:commentRss>http://www.vasiljevski.com/blog/2011/09/26/android-3-2-is-here/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Increase the Quick Launch bar icon size on Widnows XP</title>
		<link>http://www.vasiljevski.com/blog/2011/09/26/increase-the-quick-launch-bar-icon-size-on-widnows-xp/</link>
		<comments>http://www.vasiljevski.com/blog/2011/09/26/increase-the-quick-launch-bar-icon-size-on-widnows-xp/#comments</comments>
		<pubDate>Mon, 26 Sep 2011 12:21:10 +0000</pubDate>
		<dc:creator>Nikola Vasiljevski</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Tweak]]></category>
		<category><![CDATA[Windows tweak]]></category>
		<category><![CDATA[Windows XP]]></category>

		<guid isPermaLink="false">http://www.vasiljevski.com/blog/?p=164</guid>
		<description><![CDATA[This is a common problem for people with 1920&#215;1080 resolution monitors. Quick Launch icon are just too small. You can fix this by right click on an empty space in Taskbar and uncheck &#8220;Lock the Taskbar&#8221;. Note: If it is already unchecked skip this step Now go to the Quick Launch drag handle and right [...]]]></description>
			<content:encoded><![CDATA[<!-- Start Shareaholic LikeButtonSetTop Automatic --><div style="clear: both; min-height: 1px; height: 3px; width: 100%;"></div><div class='shareaholic-like-buttonset' style='float:none;height:30px;'><a class='shareaholic-fblike' data-shr_layout='button_count' data-shr_showfaces='false' data-shr_href='http%3A%2F%2Fwww.vasiljevski.com%2Fblog%2F2011%2F09%2F26%2Fincrease-the-quick-launch-bar-icon-size-on-widnows-xp%2F' data-shr_title='Increase+the+Quick+Launch+bar+icon+size+on+Widnows+XP'></a><a class='shareaholic-fbsend' data-shr_href='http%3A%2F%2Fwww.vasiljevski.com%2Fblog%2F2011%2F09%2F26%2Fincrease-the-quick-launch-bar-icon-size-on-widnows-xp%2F'></a><a class='shareaholic-googleplusone' data-shr_size='medium' data-shr_count='true' data-shr_href='http%3A%2F%2Fwww.vasiljevski.com%2Fblog%2F2011%2F09%2F26%2Fincrease-the-quick-launch-bar-icon-size-on-widnows-xp%2F' data-shr_title='Increase+the+Quick+Launch+bar+icon+size+on+Widnows+XP'></a><a class='shareaholic-tweetbutton' data-shr_count='none' data-shr_href='http%3A%2F%2Fwww.vasiljevski.com%2Fblog%2F2011%2F09%2F26%2Fincrease-the-quick-launch-bar-icon-size-on-widnows-xp%2F' data-shr_title='Increase+the+Quick+Launch+bar+icon+size+on+Widnows+XP'></a></div><div style="clear: both; min-height: 1px; height: 3px; width: 100%;"></div><!-- End Shareaholic LikeButtonSetTop Automatic --><p style="text-align: left;">This is a common problem for people with 1920&#215;1080 resolution monitors. Quick Launch icon are just too small. You can fix this by right click on an empty space in Taskbar and uncheck &#8220;Lock the Taskbar&#8221;.<span id="more-164"></span></p>
<p style="text-align: center;"><a href="http://www.vasiljevski.com/blog/wp-content/uploads/2011/06/lockAll.jpg"><img class="aligncenter" title="lockAll" src="http://www.vasiljevski.com/blog/wp-content/uploads/2011/06/lockAll.jpg" alt="How to increase the Quick Launch bar icon size step 1" width="207" height="225" /></a></p>
<address style="text-align: left;"><em>Note: If it is already unchecked skip this step <img src='http://www.vasiljevski.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </em></address>
<p>Now go to the Quick Launch drag handle and right click exactly on it.</p>
<p style="text-align: left;"><a href="http://www.vasiljevski.com/blog/wp-content/uploads/2011/06/selectOption.jpg"><img class="aligncenter" title="selectOption" src="http://www.vasiljevski.com/blog/wp-content/uploads/2011/06/selectOption.jpg" alt="How to increase the Quick Launch bar icon size step 2" width="288" height="310" /></a><br />
Just select &#8220;Large Icons&#8221; and icons in Quick Launch bar will be increased. After that you can check &#8220;Lock the Taskbar&#8221; option if it was checked prior.<br />
Easy, isn&#8217;t it <img src='http://www.vasiljevski.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  And it&#8217;s very helpfull to have large icons in Quick Launch bar.</p>
<div class="shr-publisher-164"></div><!-- Start Shareaholic LikeButtonSetBottom Automatic --><!-- End Shareaholic LikeButtonSetBottom Automatic -->]]></content:encoded>
			<wfw:commentRss>http://www.vasiljevski.com/blog/2011/09/26/increase-the-quick-launch-bar-icon-size-on-widnows-xp/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Android, OS of the future?</title>
		<link>http://www.vasiljevski.com/blog/2011/02/15/android-os-of-the-future/</link>
		<comments>http://www.vasiljevski.com/blog/2011/02/15/android-os-of-the-future/#comments</comments>
		<pubDate>Tue, 15 Feb 2011 18:14:23 +0000</pubDate>
		<dc:creator>Nikola Vasiljevski</dc:creator>
				<category><![CDATA[Android]]></category>

		<guid isPermaLink="false">http://www.vasiljevski.com/blog/?p=152</guid>
		<description><![CDATA[Google bought Android from Android Inc. in 2005, and that was the begging  of Android history. Today Android OS is the best-selling mobile platform, dethroning Nokia&#8217;s Symbina from top position. Major advantage of Android OS is the wide variety of apps  (applications) that extend the functionality of device running on Android OS. Latest version Android [...]]]></description>
			<content:encoded><![CDATA[<!-- Start Shareaholic LikeButtonSetTop Automatic --><div style="clear: both; min-height: 1px; height: 3px; width: 100%;"></div><div class='shareaholic-like-buttonset' style='float:none;height:30px;'><a class='shareaholic-fblike' data-shr_layout='button_count' data-shr_showfaces='false' data-shr_href='http%3A%2F%2Fwww.vasiljevski.com%2Fblog%2F2011%2F02%2F15%2Fandroid-os-of-the-future%2F' data-shr_title='Android%2C+OS+of+the+future%3F'></a><a class='shareaholic-fbsend' data-shr_href='http%3A%2F%2Fwww.vasiljevski.com%2Fblog%2F2011%2F02%2F15%2Fandroid-os-of-the-future%2F'></a><a class='shareaholic-googleplusone' data-shr_size='medium' data-shr_count='true' data-shr_href='http%3A%2F%2Fwww.vasiljevski.com%2Fblog%2F2011%2F02%2F15%2Fandroid-os-of-the-future%2F' data-shr_title='Android%2C+OS+of+the+future%3F'></a><a class='shareaholic-tweetbutton' data-shr_count='none' data-shr_href='http%3A%2F%2Fwww.vasiljevski.com%2Fblog%2F2011%2F02%2F15%2Fandroid-os-of-the-future%2F' data-shr_title='Android%2C+OS+of+the+future%3F'></a></div><div style="clear: both; min-height: 1px; height: 3px; width: 100%;"></div><!-- End Shareaholic LikeButtonSetTop Automatic --><p><a href="http://www.vasiljevski.com/blog/2011/02/15/android-os-of-the-future/"><img class="alignleft" title="Android" src="http://upload.wikimedia.org/wikipedia/commons/thumb/d/d7/Android_robot.svg/200px-Android_robot.svg.png" alt="Android-logo" width="67" height="80" /></a>Google bought Android from Android Inc. in 2005, and that was the begging  of Android history. Today Android OS is the best-selling mobile platform, dethroning Nokia&#8217;s Symbina from top position. <span id="more-152"></span>Major advantage of Android OS is the wide variety of apps  (applications) that extend the functionality of device running on Android OS. Latest version Android 2.3 (Gingerbread) bring the following improvements :</p>
<ul>
<li>
<h3>UI refinements for simplicity and speed</h3>
</li>
<li>
<h3>One-touch word selection and copy/paste</h3>
</li>
</ul>
<ul>
<li>
<h3>Faster, more intuitive text input</h3>
</li>
</ul>
<ul>
<li>
<h3>Improved power management</h3>
</li>
</ul>
<ul>
<li>
<h3>New ways of communicating, organizing</h3>
</li>
</ul>
<p>Also there are new features for developers, like enhances for gaming, new form of communications, and much more.</p>
<p>So the question remains, will Android remain only a mobile-based OS, we will just have to wait and see.</p>
<div class="shr-publisher-152"></div><!-- Start Shareaholic LikeButtonSetBottom Automatic --><!-- End Shareaholic LikeButtonSetBottom Automatic -->]]></content:encoded>
			<wfw:commentRss>http://www.vasiljevski.com/blog/2011/02/15/android-os-of-the-future/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Cool new video :)</title>
		<link>http://www.vasiljevski.com/blog/2011/02/15/cool-new-video/</link>
		<comments>http://www.vasiljevski.com/blog/2011/02/15/cool-new-video/#comments</comments>
		<pubDate>Tue, 15 Feb 2011 17:49:50 +0000</pubDate>
		<dc:creator>Nikola Vasiljevski</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.vasiljevski.com/blog/?p=150</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<!-- Start Shareaholic LikeButtonSetTop Automatic --><div style="clear: both; min-height: 1px; height: 3px; width: 100%;"></div><div class='shareaholic-like-buttonset' style='float:none;height:30px;'><a class='shareaholic-fblike' data-shr_layout='button_count' data-shr_showfaces='false' data-shr_href='http%3A%2F%2Fwww.vasiljevski.com%2Fblog%2F2011%2F02%2F15%2Fcool-new-video%2F' data-shr_title='Cool+new+video+%3A%29'></a><a class='shareaholic-fbsend' data-shr_href='http%3A%2F%2Fwww.vasiljevski.com%2Fblog%2F2011%2F02%2F15%2Fcool-new-video%2F'></a><a class='shareaholic-googleplusone' data-shr_size='medium' data-shr_count='true' data-shr_href='http%3A%2F%2Fwww.vasiljevski.com%2Fblog%2F2011%2F02%2F15%2Fcool-new-video%2F' data-shr_title='Cool+new+video+%3A%29'></a><a class='shareaholic-tweetbutton' data-shr_count='none' data-shr_href='http%3A%2F%2Fwww.vasiljevski.com%2Fblog%2F2011%2F02%2F15%2Fcool-new-video%2F' data-shr_title='Cool+new+video+%3A%29'></a></div><div style="clear: both; min-height: 1px; height: 3px; width: 100%;"></div><!-- End Shareaholic LikeButtonSetTop Automatic --><p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="350" 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/N-fviJnVslc" /><embed type="application/x-shockwave-flash" width="425" height="350" src="http://www.youtube.com/v/N-fviJnVslc"></embed></object></p>
<div class="shr-publisher-150"></div><!-- Start Shareaholic LikeButtonSetBottom Automatic --><!-- End Shareaholic LikeButtonSetBottom Automatic -->]]></content:encoded>
			<wfw:commentRss>http://www.vasiljevski.com/blog/2011/02/15/cool-new-video/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Remove file extension from filename in PHP</title>
		<link>http://www.vasiljevski.com/blog/2010/10/01/remove-file-extension-from-file-name-in-php/</link>
		<comments>http://www.vasiljevski.com/blog/2010/10/01/remove-file-extension-from-file-name-in-php/#comments</comments>
		<pubDate>Fri, 01 Oct 2010 13:10:08 +0000</pubDate>
		<dc:creator>Nikola Vasiljevski</dc:creator>
				<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://www.vasiljevski.com/blog/?p=135</guid>
		<description><![CDATA[I found great function to remove file extension from filename in PHP.  Anton Zamov created this function and I&#8217;m just reporting it to show my appreciation. Function: function RemoveExtension($strName) {    $ext = strrchr($strName, '.');    if($ext !== false) {       $strName = substr($strName, 0, -strlen($ext));    }    return $strName; } Usage: $filename = "myfile.jpeg"; echo RemoveExtension($filename); Output: myfile Short, easy and understandable. If someone [...]]]></description>
			<content:encoded><![CDATA[<!-- Start Shareaholic LikeButtonSetTop Automatic --><div style="clear: both; min-height: 1px; height: 3px; width: 100%;"></div><div class='shareaholic-like-buttonset' style='float:none;height:30px;'><a class='shareaholic-fblike' data-shr_layout='button_count' data-shr_showfaces='false' data-shr_href='http%3A%2F%2Fwww.vasiljevski.com%2Fblog%2F2010%2F10%2F01%2Fremove-file-extension-from-file-name-in-php%2F' data-shr_title='Remove+file+extension+from+filename+in+PHP'></a><a class='shareaholic-fbsend' data-shr_href='http%3A%2F%2Fwww.vasiljevski.com%2Fblog%2F2010%2F10%2F01%2Fremove-file-extension-from-file-name-in-php%2F'></a><a class='shareaholic-googleplusone' data-shr_size='medium' data-shr_count='true' data-shr_href='http%3A%2F%2Fwww.vasiljevski.com%2Fblog%2F2010%2F10%2F01%2Fremove-file-extension-from-file-name-in-php%2F' data-shr_title='Remove+file+extension+from+filename+in+PHP'></a><a class='shareaholic-tweetbutton' data-shr_count='none' data-shr_href='http%3A%2F%2Fwww.vasiljevski.com%2Fblog%2F2010%2F10%2F01%2Fremove-file-extension-from-file-name-in-php%2F' data-shr_title='Remove+file+extension+from+filename+in+PHP'></a></div><div style="clear: both; min-height: 1px; height: 3px; width: 100%;"></div><!-- End Shareaholic LikeButtonSetTop Automatic --><p>I found great function to remove file extension from filename in PHP.  <a href="http://zamov.online.fr/cv.html">Anton Zamov</a> created this function and I&#8217;m just reporting it to show my appreciation.</p>
<pre><em><em><span id="more-135"></span></em></em></pre>
<p><strong><span style="color: #0000ff;"><span style="color: #000000;">Function</span>:</span></strong></p>
<pre><em><span style="color: #0000ff;">function </span><span style="color: #000000;">RemoveExtension</span>($strName) {    $ext <span style="color: #0000ff;">= </span>strrchr($strName, '.');    <span style="color: #0000ff;">if</span>($ext <span style="color: #0000ff;">!== </span>false) {       $strName <span style="color: #0000ff;">= </span>substr($strName, 0, -strlen($ext));    }    <span style="color: #0000ff;">return </span>$strName; }</em></pre>
<p><strong><span style="color: #0000ff;"><span style="color: #000000;">Usage</span>:</span></strong></p>
<pre><em>$filename <span style="color: #0000ff;">= </span>"myfile.jpeg"; <span style="color: #0000ff;">echo </span>RemoveExtension($filename);</em></pre>
<p><strong><span style="color: #0000ff;"><span style="color: #000000;">Output</span>:</span></strong></p>
<pre>myfile</pre>
<p>Short, easy and understandable. If someone has a better solution let me know.</p>
<div class="shr-publisher-135"></div><!-- Start Shareaholic LikeButtonSetBottom Automatic --><!-- End Shareaholic LikeButtonSetBottom Automatic -->]]></content:encoded>
			<wfw:commentRss>http://www.vasiljevski.com/blog/2010/10/01/remove-file-extension-from-file-name-in-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google Translate new look</title>
		<link>http://www.vasiljevski.com/blog/2010/09/06/google-translate-new-look/</link>
		<comments>http://www.vasiljevski.com/blog/2010/09/06/google-translate-new-look/#comments</comments>
		<pubDate>Mon, 06 Sep 2010 20:48:18 +0000</pubDate>
		<dc:creator>Nikola Vasiljevski</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Web Tools]]></category>

		<guid isPermaLink="false">http://www.vasiljevski.com/blog/?p=133</guid>
		<description><![CDATA[Google Translate is a great online translation tool, that in time becomes better and better. Using Google Translate you can translate a text even if you don&#8217;t know in which language it is written. It automatically detects a language and translates it into selected language.Great new improvement to Google Translate is the way you can [...]]]></description>
			<content:encoded><![CDATA[<!-- Start Shareaholic LikeButtonSetTop Automatic --><div style="clear: both; min-height: 1px; height: 3px; width: 100%;"></div><div class='shareaholic-like-buttonset' style='float:none;height:30px;'><a class='shareaholic-fblike' data-shr_layout='button_count' data-shr_showfaces='false' data-shr_href='http%3A%2F%2Fwww.vasiljevski.com%2Fblog%2F2010%2F09%2F06%2Fgoogle-translate-new-look%2F' data-shr_title='Google+Translate+new+look'></a><a class='shareaholic-fbsend' data-shr_href='http%3A%2F%2Fwww.vasiljevski.com%2Fblog%2F2010%2F09%2F06%2Fgoogle-translate-new-look%2F'></a><a class='shareaholic-googleplusone' data-shr_size='medium' data-shr_count='true' data-shr_href='http%3A%2F%2Fwww.vasiljevski.com%2Fblog%2F2010%2F09%2F06%2Fgoogle-translate-new-look%2F' data-shr_title='Google+Translate+new+look'></a><a class='shareaholic-tweetbutton' data-shr_count='none' data-shr_href='http%3A%2F%2Fwww.vasiljevski.com%2Fblog%2F2010%2F09%2F06%2Fgoogle-translate-new-look%2F' data-shr_title='Google+Translate+new+look'></a></div><div style="clear: both; min-height: 1px; height: 3px; width: 100%;"></div><!-- End Shareaholic LikeButtonSetTop Automatic --><p><a href="http://translate.google.com/" target="_blank"><img class="alignleft" style="padding-top: 20px;" title="Google Translate" src="http://www.google.com/intl/en/images/logos/translate_logo.gif" alt="Google Translate" width="190" height="36" /></a>Google Translate is a great online translation tool, that in time becomes better and better. Using Google Translate you can translate a text even if you don&#8217;t know in which language it is written. It automatically detects a language and translates it into selected language.<span id="more-133"></span>Great new improvement to Google Translate is the way you can select the language. They removed usual and very inconvenient  combo-box, into a drop down menu from which you can see all the available languages and select the one you wish. Also in the top of the drop down menu you have a history of resent actions(translations) you performed.</p>
<p>We all know that 100% correct automatic translation is impossible, for now, but Google Translate, with each day, becomes closer to that goal.</p>
<p>Although Google Translate has all this great features, and can translate word, text and the whole websites, you should keep in mind that you can use it only as a helping tool when you translate something. It can give you an idea of what the sentence is about and help you translate it. I didn&#8217;t test all the languages, because I don&#8217;t know them all and I couldn&#8217;t give the real review. But for mu native language, Serbian, it does a pretty good job.</p>
<p>Google Translate team, good job and keep it up, this is the best online translation tool I have seen so far.</p>
<div class="shr-publisher-133"></div><!-- Start Shareaholic LikeButtonSetBottom Automatic --><!-- End Shareaholic LikeButtonSetBottom Automatic -->]]></content:encoded>
			<wfw:commentRss>http://www.vasiljevski.com/blog/2010/09/06/google-translate-new-look/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>How to remove #more tag in WordPress</title>
		<link>http://www.vasiljevski.com/blog/2010/05/18/how-to-remove-more-tag-in-wordpress/</link>
		<comments>http://www.vasiljevski.com/blog/2010/05/18/how-to-remove-more-tag-in-wordpress/#comments</comments>
		<pubDate>Tue, 18 May 2010 14:57:03 +0000</pubDate>
		<dc:creator>Nikola Vasiljevski</dc:creator>
				<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.vasiljevski.com/blog/?p=129</guid>
		<description><![CDATA[Here is a great article on how to remove #more tag in WordPress. How to remove #more tag in WordPress by  Techie Corner]]></description>
			<content:encoded><![CDATA[<!-- Start Shareaholic LikeButtonSetTop Automatic --><div style="clear: both; min-height: 1px; height: 3px; width: 100%;"></div><div class='shareaholic-like-buttonset' style='float:none;height:30px;'><a class='shareaholic-fblike' data-shr_layout='button_count' data-shr_showfaces='false' data-shr_href='http%3A%2F%2Fwww.vasiljevski.com%2Fblog%2F2010%2F05%2F18%2Fhow-to-remove-more-tag-in-wordpress%2F' data-shr_title='How+to+remove+%23more+tag+in+Wordpress'></a><a class='shareaholic-fbsend' data-shr_href='http%3A%2F%2Fwww.vasiljevski.com%2Fblog%2F2010%2F05%2F18%2Fhow-to-remove-more-tag-in-wordpress%2F'></a><a class='shareaholic-googleplusone' data-shr_size='medium' data-shr_count='true' data-shr_href='http%3A%2F%2Fwww.vasiljevski.com%2Fblog%2F2010%2F05%2F18%2Fhow-to-remove-more-tag-in-wordpress%2F' data-shr_title='How+to+remove+%23more+tag+in+Wordpress'></a><a class='shareaholic-tweetbutton' data-shr_count='none' data-shr_href='http%3A%2F%2Fwww.vasiljevski.com%2Fblog%2F2010%2F05%2F18%2Fhow-to-remove-more-tag-in-wordpress%2F' data-shr_title='How+to+remove+%23more+tag+in+Wordpress'></a></div><div style="clear: both; min-height: 1px; height: 3px; width: 100%;"></div><!-- End Shareaholic LikeButtonSetTop Automatic --><p>Here is a great article on how to remove #more tag in WordPress.</p>
<p><a title=" How to remove #more tag in WordPress By Techie Corner" href="http://www.techiecorner.com/1131/how-to-remove-more-tag-in-wordpress/">How to remove #more tag in WordPress</a> by  <a href="http://www.techiecorner.com/">Techie  Corner</a></p>
<div class="shr-publisher-129"></div><!-- Start Shareaholic LikeButtonSetBottom Automatic --><!-- End Shareaholic LikeButtonSetBottom Automatic -->]]></content:encoded>
			<wfw:commentRss>http://www.vasiljevski.com/blog/2010/05/18/how-to-remove-more-tag-in-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Change meta generator tag in Joomla 1.5</title>
		<link>http://www.vasiljevski.com/blog/2010/05/18/change-meta-generator-tag-in-joomla-1-5/</link>
		<comments>http://www.vasiljevski.com/blog/2010/05/18/change-meta-generator-tag-in-joomla-1-5/#comments</comments>
		<pubDate>Tue, 18 May 2010 14:35:33 +0000</pubDate>
		<dc:creator>Nikola Vasiljevski</dc:creator>
				<category><![CDATA[Joomla]]></category>
		<category><![CDATA[change]]></category>
		<category><![CDATA[joomla generator meta tag]]></category>
		<category><![CDATA[meta tag]]></category>
		<category><![CDATA[remove]]></category>

		<guid isPermaLink="false">http://www.vasiljevski.com/blog/?p=120</guid>
		<description><![CDATA[There are many solutions that involve  editing the Joomla Core files. This is bad idea, because you will have to do this every time you upgrade Joomla to a new version.  In general changing Joomla core files is not recommended, and you should avoid it as much as possible. Solution that I find to be [...]]]></description>
			<content:encoded><![CDATA[<!-- Start Shareaholic LikeButtonSetTop Automatic --><div style="clear: both; min-height: 1px; height: 3px; width: 100%;"></div><div class='shareaholic-like-buttonset' style='float:none;height:30px;'><a class='shareaholic-fblike' data-shr_layout='button_count' data-shr_showfaces='false' data-shr_href='http%3A%2F%2Fwww.vasiljevski.com%2Fblog%2F2010%2F05%2F18%2Fchange-meta-generator-tag-in-joomla-1-5%2F' data-shr_title='Change+meta+generator+tag+in+Joomla+1.5'></a><a class='shareaholic-fbsend' data-shr_href='http%3A%2F%2Fwww.vasiljevski.com%2Fblog%2F2010%2F05%2F18%2Fchange-meta-generator-tag-in-joomla-1-5%2F'></a><a class='shareaholic-googleplusone' data-shr_size='medium' data-shr_count='true' data-shr_href='http%3A%2F%2Fwww.vasiljevski.com%2Fblog%2F2010%2F05%2F18%2Fchange-meta-generator-tag-in-joomla-1-5%2F' data-shr_title='Change+meta+generator+tag+in+Joomla+1.5'></a><a class='shareaholic-tweetbutton' data-shr_count='none' data-shr_href='http%3A%2F%2Fwww.vasiljevski.com%2Fblog%2F2010%2F05%2F18%2Fchange-meta-generator-tag-in-joomla-1-5%2F' data-shr_title='Change+meta+generator+tag+in+Joomla+1.5'></a></div><div style="clear: both; min-height: 1px; height: 3px; width: 100%;"></div><!-- End Shareaholic LikeButtonSetTop Automatic --><p>There are many solutions that involve  editing the Joomla Core files. This is bad idea, because you will have to do this every time you upgrade Joomla to a new version.  In general changing Joomla core files is not recommended, and you should avoid it as much as possible.</p>
<p>Solution that I find to be much better and cleaner is just to add :<span id="more-120"></span></p>
<p><strong><em>&lt;?php<br />
$this-&gt;setGenerator(&#8216;Text you want to display in generator tag&#8217;);<br />
?&gt;</em></strong></p>
<p>before &lt;head&gt; tag in your template index.php file.</p>
<p>This way you can define your own generator, or you could leave the text empty.</p>
<p><em>Note: Don&#8217;t remove or edit this tag if you don&#8217;t have the strong reason to do so.  We should all support Joomla, that is the only way Joomla will keep being great CMS as it is now <img src='http://www.vasiljevski.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </em></p>
<div class="shr-publisher-120"></div><!-- Start Shareaholic LikeButtonSetBottom Automatic --><!-- End Shareaholic LikeButtonSetBottom Automatic -->]]></content:encoded>
			<wfw:commentRss>http://www.vasiljevski.com/blog/2010/05/18/change-meta-generator-tag-in-joomla-1-5/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

