<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Jaroslav&#039;s Weblog</title>
	<atom:link href="https://jarik.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>https://jarik.wordpress.com</link>
	<description>IT, PHP, JavaScript, Linux, HTML , CSS</description>
	<lastBuildDate>Wed, 24 Nov 2021 19:45:04 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='jarik.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>https://s0.wp.com/i/buttonw-com.png</url>
		<title>Jaroslav&#039;s Weblog</title>
		<link>https://jarik.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="https://jarik.wordpress.com/osd.xml" title="Jaroslav&#039;s Weblog" />
	<atom:link rel='hub' href='https://jarik.wordpress.com/?pushpress=hub'/>
	<item>
		<title>How to list all MySQL tables with theirs sizes</title>
		<link>https://jarik.wordpress.com/2021/11/24/how-to-list-all-mysql-tables-with-theirs-sizes/</link>
					<comments>https://jarik.wordpress.com/2021/11/24/how-to-list-all-mysql-tables-with-theirs-sizes/#respond</comments>
		
		<dc:creator><![CDATA[jarik]]></dc:creator>
		<pubDate>Wed, 24 Nov 2021 19:45:04 +0000</pubDate>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[sql]]></category>
		<guid isPermaLink="false">http://jarik.wordpress.com/?p=202</guid>

					<description><![CDATA[List all tables with sizes in megabytes:]]></description>
										<content:encoded><![CDATA[
<p>List all tables with sizes in megabytes:</p>



<pre class="wp-block-code"><code>SELECT 
    table_name AS `Table`, 
    round(((data_length + index_length) / 1024 / 1024), 2) `Size in MB` 
FROM information_schema.TABLES 
WHERE table_schema = "DATABASE_NAME"
ORDER BY `Size in MB` DESC</code></pre>



<p></p>
]]></content:encoded>
					
					<wfw:commentRss>https://jarik.wordpress.com/2021/11/24/how-to-list-all-mysql-tables-with-theirs-sizes/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		
		<media:content url="https://2.gravatar.com/avatar/2b47ca4c6857e55d610770d39cf4deec48164ccdb1efb3615efeba47683bd56c?s=96&#38;d=monsterid&#38;r=X" medium="image">
			<media:title type="html">jarik</media:title>
		</media:content>
	</item>
		<item>
		<title>How to change MAC address in Debian 6.0 Linux</title>
		<link>https://jarik.wordpress.com/2013/11/01/how-to-change-mac-address-in-debian-6-0-linux-2/</link>
					<comments>https://jarik.wordpress.com/2013/11/01/how-to-change-mac-address-in-debian-6-0-linux-2/#respond</comments>
		
		<dc:creator><![CDATA[jarik]]></dc:creator>
		<pubDate>Fri, 01 Nov 2013 08:54:20 +0000</pubDate>
				<category><![CDATA[Linux]]></category>
		<guid isPermaLink="false">http://jarik.wordpress.com/?p=75</guid>

					<description><![CDATA[First of all we have to stop networking. /etc/network/interfaces file and under eth0 (or other network interface) add following line: hwaddress ether your_new_mac_address After that you can start networking again. Example: sudo /etc/init.d/networking stop   sudo vi /etc/network/interfaces #now add:  hwaddress ether 01:02:03:04:05:06  sudo /etc/init.d/networking start]]></description>
										<content:encoded><![CDATA[<p>First of all we have to stop networking. /etc/network/interfaces file and under eth0 (or other network interface) add following line:</p>
<p>hwaddress ether your_new_mac_address</p>
<p>After that you can start networking again.</p>
<p>Example:</p>
<p><em>sudo /etc/init.d/networking stop  </em></p>
<p><em>sudo vi /etc/network/interfaces</em></p>
<p><em>#now add:  hwaddress ether 01:02:03:04:05:06 </em></p>
<p><em>sudo /etc/init.d/networking start</em></p>
]]></content:encoded>
					
					<wfw:commentRss>https://jarik.wordpress.com/2013/11/01/how-to-change-mac-address-in-debian-6-0-linux-2/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		
		<media:content url="https://2.gravatar.com/avatar/2b47ca4c6857e55d610770d39cf4deec48164ccdb1efb3615efeba47683bd56c?s=96&#38;d=monsterid&#38;r=X" medium="image">
			<media:title type="html">jarik</media:title>
		</media:content>
	</item>
		<item>
		<title>How to delete all .svn folders/files from a project</title>
		<link>https://jarik.wordpress.com/2013/10/24/how-to-delete-all-svn-foldersfiles-from-a-project/</link>
					<comments>https://jarik.wordpress.com/2013/10/24/how-to-delete-all-svn-foldersfiles-from-a-project/#respond</comments>
		
		<dc:creator><![CDATA[jarik]]></dc:creator>
		<pubDate>Thu, 24 Oct 2013 07:07:42 +0000</pubDate>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[MacOS]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<guid isPermaLink="false">http://jarik.wordpress.com/?p=189</guid>

					<description><![CDATA[Just cd to a folder in Terminal and: find ./ -name &#8220;.svn&#8221; &#124; xargs rm -Rf]]></description>
										<content:encoded><![CDATA[<p>Just cd to a folder in Terminal and:</p>
<blockquote><p>find ./ -name &#8220;.svn&#8221; | xargs rm -Rf</p></blockquote>
]]></content:encoded>
					
					<wfw:commentRss>https://jarik.wordpress.com/2013/10/24/how-to-delete-all-svn-foldersfiles-from-a-project/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		
		<media:content url="https://2.gravatar.com/avatar/2b47ca4c6857e55d610770d39cf4deec48164ccdb1efb3615efeba47683bd56c?s=96&#38;d=monsterid&#38;r=X" medium="image">
			<media:title type="html">jarik</media:title>
		</media:content>
	</item>
		<item>
		<title>How to use multiple owncloud accounts on one computer (on Mac OS X)</title>
		<link>https://jarik.wordpress.com/2013/04/16/how-to-use-multiple-owncloud-accounts-on-one-computer-on-mac-os-x/</link>
					<comments>https://jarik.wordpress.com/2013/04/16/how-to-use-multiple-owncloud-accounts-on-one-computer-on-mac-os-x/#comments</comments>
		
		<dc:creator><![CDATA[jarik]]></dc:creator>
		<pubDate>Tue, 16 Apr 2013 10:16:24 +0000</pubDate>
				<category><![CDATA[MacOS]]></category>
		<category><![CDATA[OwnCloud]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[mac os x]]></category>
		<category><![CDATA[owncloud]]></category>
		<guid isPermaLink="false">http://jarik.wordpress.com/?p=167</guid>

					<description><![CDATA[ Using owncloud to store your files in a cloud where you control your data and not some greedy company is becoming more and more popular. Its very convenient and I made two servers one for my job and one my personal, on my personal server. Everything would be OK if not one major drawback of &#8230; <a href="https://jarik.wordpress.com/2013/04/16/how-to-use-multiple-owncloud-accounts-on-one-computer-on-mac-os-x/" class="more-link">Continue reading <span class="screen-reader-text">How to use multiple owncloud accounts on one computer (on Mac OS&#160;X)</span> <span class="meta-nav">&#8594;</span></a>]]></description>
										<content:encoded><![CDATA[<p><a href="https://jarik.wordpress.com/wp-content/uploads/2013/04/owncloud-1.jpg"><img data-attachment-id="170" data-permalink="https://jarik.wordpress.com/2013/04/16/how-to-use-multiple-owncloud-accounts-on-one-computer-on-mac-os-x/owncloud-1/" data-orig-file="https://jarik.wordpress.com/wp-content/uploads/2013/04/owncloud-1.jpg" data-orig-size="59,22" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="Two ownlcoud clients on one computer" data-image-description="" data-image-caption="" data-medium-file="https://jarik.wordpress.com/wp-content/uploads/2013/04/owncloud-1.jpg?w=59" data-large-file="https://jarik.wordpress.com/wp-content/uploads/2013/04/owncloud-1.jpg?w=59" class="size-full wp-image-170 alignleft" alt="Two ownlcoud clients on one computer" src="https://jarik.wordpress.com/wp-content/uploads/2013/04/owncloud-1.jpg" width="59" height="22" /> </a>Using owncloud to store your files in a cloud where you control your data and not some greedy company is becoming more and more popular. Its very convenient and I made two servers one for my job and one my personal, on my personal server. Everything would be OK if not one major drawback of owncloud client application: it doesn&#8217;t support more than one servers/accounts. Developers <a href="https://github.com/owncloud/mirall/issues/43">know about it</a>, but don&#8217;t plan to change this in the nearest future.</p>
<p>But if you know how to use your Mac and have some unix experience, you can make it work as you want it to! Shortly this method creates another user account on Max OS X and starts the second owncloud client as that user. So here are some steps for a workaround:</p>
<p>1. Create another account in Sysytem Preferences -&gt; Users &amp; Groups. For this tutorial we will call it &#8220;owncloudpersonal&#8221;.</p>
<p><a href="https://jarik.wordpress.com/wp-content/uploads/2013/04/system-preferences.jpg"><img data-attachment-id="171" data-permalink="https://jarik.wordpress.com/2013/04/16/how-to-use-multiple-owncloud-accounts-on-one-computer-on-mac-os-x/system-preferences/" data-orig-file="https://jarik.wordpress.com/wp-content/uploads/2013/04/system-preferences.jpg" data-orig-size="467,378" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="System Preferences" data-image-description="" data-image-caption="" data-medium-file="https://jarik.wordpress.com/wp-content/uploads/2013/04/system-preferences.jpg?w=300" data-large-file="https://jarik.wordpress.com/wp-content/uploads/2013/04/system-preferences.jpg?w=467" class="aligncenter size-medium wp-image-171" alt="System Preferences" src="https://jarik.wordpress.com/wp-content/uploads/2013/04/system-preferences.jpg?w=300" width="300" height="242" srcset="https://jarik.wordpress.com/wp-content/uploads/2013/04/system-preferences.jpg?w=300 300w, https://jarik.wordpress.com/wp-content/uploads/2013/04/system-preferences.jpg?w=150 150w, https://jarik.wordpress.com/wp-content/uploads/2013/04/system-preferences.jpg 467w" sizes="(max-width: 300px) 100vw, 300px" /></a></p>
<p><a href="https://jarik.wordpress.com/wp-content/uploads/2013/04/users-groups.jpg"><img data-attachment-id="172" data-permalink="https://jarik.wordpress.com/2013/04/16/how-to-use-multiple-owncloud-accounts-on-one-computer-on-mac-os-x/users-groups/" data-orig-file="https://jarik.wordpress.com/wp-content/uploads/2013/04/users-groups.jpg" data-orig-size="696,534" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="Users &amp;amp; Groups" data-image-description="" data-image-caption="" data-medium-file="https://jarik.wordpress.com/wp-content/uploads/2013/04/users-groups.jpg?w=300" data-large-file="https://jarik.wordpress.com/wp-content/uploads/2013/04/users-groups.jpg?w=696" class="aligncenter size-medium wp-image-172" alt="Users &amp; Groups" src="https://jarik.wordpress.com/wp-content/uploads/2013/04/users-groups.jpg?w=300" width="300" height="230" srcset="https://jarik.wordpress.com/wp-content/uploads/2013/04/users-groups.jpg?w=300 300w, https://jarik.wordpress.com/wp-content/uploads/2013/04/users-groups.jpg?w=600 600w, https://jarik.wordpress.com/wp-content/uploads/2013/04/users-groups.jpg?w=150 150w" sizes="(max-width: 300px) 100vw, 300px" /></a></p>
<p>2. Create a folder where you want your file to be stored and give &#8220;owncloudpersonal&#8221; user permission to read and write this folder: right click on a newly created folder -&gt; Get Info -&gt; Sharing &amp; permissions -&gt; plus sign.</p>
<p><a href="https://jarik.wordpress.com/wp-content/uploads/2013/04/finder-11.jpg"><img loading="lazy" data-attachment-id="181" data-permalink="https://jarik.wordpress.com/2013/04/16/how-to-use-multiple-owncloud-accounts-on-one-computer-on-mac-os-x/finder-1-2/" data-orig-file="https://jarik.wordpress.com/wp-content/uploads/2013/04/finder-11.jpg" data-orig-size="371,262" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="Finder-1" data-image-description="" data-image-caption="" data-medium-file="https://jarik.wordpress.com/wp-content/uploads/2013/04/finder-11.jpg?w=300" data-large-file="https://jarik.wordpress.com/wp-content/uploads/2013/04/finder-11.jpg?w=371" class="aligncenter size-medium wp-image-181" alt="Finder-1" src="https://jarik.wordpress.com/wp-content/uploads/2013/04/finder-11.jpg?w=300" width="300" height="211" srcset="https://jarik.wordpress.com/wp-content/uploads/2013/04/finder-11.jpg?w=300 300w, https://jarik.wordpress.com/wp-content/uploads/2013/04/finder-11.jpg?w=150 150w, https://jarik.wordpress.com/wp-content/uploads/2013/04/finder-11.jpg 371w" sizes="(max-width: 300px) 100vw, 300px" /></a></p>
<p>Select &#8220;owncloudpersonal&#8221; user and press Select. Now change its privilege to Read &amp; write.</p>
<p><a href="https://jarik.wordpress.com/wp-content/uploads/2013/04/owncloudpersonal-info-2.jpg"><img loading="lazy" data-attachment-id="182" data-permalink="https://jarik.wordpress.com/2013/04/16/how-to-use-multiple-owncloud-accounts-on-one-computer-on-mac-os-x/owncloudpersonal-info-2/" data-orig-file="https://jarik.wordpress.com/wp-content/uploads/2013/04/owncloudpersonal-info-2.jpg" data-orig-size="293,734" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="ownCloudPersonal Info-2" data-image-description="" data-image-caption="" data-medium-file="https://jarik.wordpress.com/wp-content/uploads/2013/04/owncloudpersonal-info-2.jpg?w=120" data-large-file="https://jarik.wordpress.com/wp-content/uploads/2013/04/owncloudpersonal-info-2.jpg?w=293" class="aligncenter size-medium wp-image-182" alt="ownCloudPersonal Info-2" src="https://jarik.wordpress.com/wp-content/uploads/2013/04/owncloudpersonal-info-2.jpg?w=119" width="119" height="300" /></a></p>
<p>3. Now you have to run another owncloud instance as newly created user. At the moment I&#8217;m doing it through Terminal with this command:</p>
<p>sudo -u owncloudpersonal /Applications/owncloud.app/Contents/MacOS/owncloud</p>
<p>You can close terminal app. Owncloud client will run fine without it.</p>
<p>I&#8217;m working on moving it to Automator, to not open Terminal app every time I want to start owncloud. I&#8217;ve tried this AppleScript but it doesn&#8217;t seem to work:</p>
<p>do shell script &#8220;sudo -u owncloudpersonal /Applications/owncloud.app/Contents/MacOS/owncloud&#8221; with administrator privileges</p>
<p>If you have some ideas, please write in comments.</p>
<p>At the moment it seems that saving password is not working, you have to enter it every time you start second owncloud instance. If you have a solution for this problem, feel free to write it in comments too!</p>
<p>PS. I think linux users can do something quite similar to solve this problem.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://jarik.wordpress.com/2013/04/16/how-to-use-multiple-owncloud-accounts-on-one-computer-on-mac-os-x/feed/</wfw:commentRss>
			<slash:comments>13</slash:comments>
		
		
		
		<media:content url="https://2.gravatar.com/avatar/2b47ca4c6857e55d610770d39cf4deec48164ccdb1efb3615efeba47683bd56c?s=96&#38;d=monsterid&#38;r=X" medium="image">
			<media:title type="html">jarik</media:title>
		</media:content>

		<media:content url="https://jarik.wordpress.com/wp-content/uploads/2013/04/owncloud-1.jpg" medium="image">
			<media:title type="html">Two ownlcoud clients on one computer</media:title>
		</media:content>

		<media:content url="https://jarik.wordpress.com/wp-content/uploads/2013/04/system-preferences.jpg?w=300" medium="image">
			<media:title type="html">System Preferences</media:title>
		</media:content>

		<media:content url="https://jarik.wordpress.com/wp-content/uploads/2013/04/users-groups.jpg?w=300" medium="image">
			<media:title type="html">Users &#038; Groups</media:title>
		</media:content>

		<media:content url="https://jarik.wordpress.com/wp-content/uploads/2013/04/finder-11.jpg?w=300" medium="image">
			<media:title type="html">Finder-1</media:title>
		</media:content>

		<media:content url="https://jarik.wordpress.com/wp-content/uploads/2013/04/owncloudpersonal-info-2.jpg?w=119" medium="image">
			<media:title type="html">ownCloudPersonal Info-2</media:title>
		</media:content>
	</item>
		<item>
		<title>Compress (zip) folder on Linux Debian</title>
		<link>https://jarik.wordpress.com/2013/04/05/compress-zip-folder-on-linux-debian/</link>
					<comments>https://jarik.wordpress.com/2013/04/05/compress-zip-folder-on-linux-debian/#respond</comments>
		
		<dc:creator><![CDATA[jarik]]></dc:creator>
		<pubDate>Fri, 05 Apr 2013 07:24:16 +0000</pubDate>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[MacOS]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<guid isPermaLink="false">http://jarik.wordpress.com/?p=164</guid>

					<description><![CDATA[I always forget this commands, so here it is: tar -czvf name.tar.gz folder/ Decompressing (unzipping) is here: gunzip name.tar.gz]]></description>
										<content:encoded><![CDATA[<p>I always forget this commands, so here it is:</p>
<p><code>tar -czvf name.tar.gz folder/</code></p>
<p>Decompressing (unzipping) is here:</p>
<p><code>gunzip name.tar.gz</code></p>
]]></content:encoded>
					
					<wfw:commentRss>https://jarik.wordpress.com/2013/04/05/compress-zip-folder-on-linux-debian/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		
		<media:content url="https://2.gravatar.com/avatar/2b47ca4c6857e55d610770d39cf4deec48164ccdb1efb3615efeba47683bd56c?s=96&#38;d=monsterid&#38;r=X" medium="image">
			<media:title type="html">jarik</media:title>
		</media:content>
	</item>
		<item>
		<title>How to add select in Excel (only allow to select value from predefined list)</title>
		<link>https://jarik.wordpress.com/2012/11/18/how-to-add-select-in-excel-only-allow-to-select-value-from-predefined-list/</link>
					<comments>https://jarik.wordpress.com/2012/11/18/how-to-add-select-in-excel-only-allow-to-select-value-from-predefined-list/#respond</comments>
		
		<dc:creator><![CDATA[jarik]]></dc:creator>
		<pubDate>Sun, 18 Nov 2012 16:15:59 +0000</pubDate>
				<category><![CDATA[MacOS]]></category>
		<category><![CDATA[MS Excel]]></category>
		<guid isPermaLink="false">http://jarik.wordpress.com/?p=127</guid>

					<description><![CDATA[To create a cell in Microsoft Excel in which you can only enter one of predefined values and/or insert there select element, which lets you select the value with a mouse (without typing in values with keyboard) follow these steps: 1. Crete a list of the values that should be in select. Tip: make additional &#8230; <a href="https://jarik.wordpress.com/2012/11/18/how-to-add-select-in-excel-only-allow-to-select-value-from-predefined-list/" class="more-link">Continue reading <span class="screen-reader-text">How to add select in Excel (only allow to select value from predefined&#160;list)</span> <span class="meta-nav">&#8594;</span></a>]]></description>
										<content:encoded><![CDATA[<p>To create a cell in Microsoft Excel in which you can only enter one of predefined values and/or insert there select element, which lets you select the value with a mouse (without typing in values with keyboard) follow these steps:</p>
<p>1. Crete a list of the values that should be in select. Tip: make additional sheet for these lists if you have more than one. It&#8217;s commonly called lookup tables.</p>
<p>2. Select a cell or cells range where you want to insert selects and select from Excel menu Data -&gt; Validation.</p>
<p>3. If newly opened window select Allow: List.</p>
<p>4. Press on Source and select a lookup table that you have created in step 1.</p>
<p>5. Check if In-cell dropdown is selected and press OK.</p>
<p>6. Enjoy :)</p>
<p>&nbsp;</p>
<p>Screenshots from MAC version, but on Windows its essentially the same:</p>
<p style="text-align:center;"><a href="https://jarik.wordpress.com/wp-content/uploads/2012/11/microsoft-excel-1.jpg"><img data-attachment-id="158" data-permalink="https://jarik.wordpress.com/2012/11/18/how-to-add-select-in-excel-only-allow-to-select-value-from-predefined-list/microsoft-excel-1/" data-orig-file="https://jarik.wordpress.com/wp-content/uploads/2012/11/microsoft-excel-1.jpg" data-orig-size="566,1807" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="Microsoft Excel-1" data-image-description="" data-image-caption="" data-medium-file="https://jarik.wordpress.com/wp-content/uploads/2012/11/microsoft-excel-1.jpg?w=94" data-large-file="https://jarik.wordpress.com/wp-content/uploads/2012/11/microsoft-excel-1.jpg?w=321" class="aligncenter  wp-image-158" title="Microsoft Excel-1" alt="" src="https://jarik.wordpress.com/wp-content/uploads/2012/11/microsoft-excel-1.jpg" /></a></p>
]]></content:encoded>
					
					<wfw:commentRss>https://jarik.wordpress.com/2012/11/18/how-to-add-select-in-excel-only-allow-to-select-value-from-predefined-list/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		
		<media:content url="https://2.gravatar.com/avatar/2b47ca4c6857e55d610770d39cf4deec48164ccdb1efb3615efeba47683bd56c?s=96&#38;d=monsterid&#38;r=X" medium="image">
			<media:title type="html">jarik</media:title>
		</media:content>

		<media:content url="https://jarik.wordpress.com/wp-content/uploads/2012/11/microsoft-excel-1.jpg" medium="image">
			<media:title type="html">Microsoft Excel-1</media:title>
		</media:content>
	</item>
		<item>
		<title>RGB color picker in XCode</title>
		<link>https://jarik.wordpress.com/2012/11/05/rgb-color-picker-in-xcode/</link>
					<comments>https://jarik.wordpress.com/2012/11/05/rgb-color-picker-in-xcode/#comments</comments>
		
		<dc:creator><![CDATA[jarik]]></dc:creator>
		<pubDate>Mon, 05 Nov 2012 16:23:40 +0000</pubDate>
				<category><![CDATA[MacOS]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<guid isPermaLink="false">http://jarik.wordpress.com/?p=123</guid>

					<description><![CDATA[Have you ever wondered why there is no RGB color selector in XCode? I don&#8217;t understand why Apple haven&#8217;t put it by default. But thanks to some guy named Wade Cosgrove there is a solution! All you have to do is: download you new color picker from here close XCode unzip the file copy DeveloperColorPicker.colorPicker fie &#8230; <a href="https://jarik.wordpress.com/2012/11/05/rgb-color-picker-in-xcode/" class="more-link">Continue reading <span class="screen-reader-text">RGB color picker in&#160;XCode</span> <span class="meta-nav">&#8594;</span></a>]]></description>
										<content:encoded><![CDATA[<p>Have you ever wondered why there is no RGB color selector in XCode? I don&#8217;t understand why Apple haven&#8217;t put it by default. But thanks to some guy named Wade Cosgrove there is a solution!</p>
<p>All you have to do is:</p>
<ul>
<li>download you new <a href="http://www.panic.com/~wade/picker/" target="_blank">color picker from here</a></li>
<li>close XCode</li>
<li>unzip the file</li>
<li>copy DeveloperColorPicker.colorPicker fie to ~/Library/ColorPickers/ folder. Open finder, from menu select Go -&gt; Go to folder and enter  ~/Library/ColorPickers/</li>
<li>launch XCode and enjoy</li>
</ul>
]]></content:encoded>
					
					<wfw:commentRss>https://jarik.wordpress.com/2012/11/05/rgb-color-picker-in-xcode/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
		
		<media:content url="https://2.gravatar.com/avatar/2b47ca4c6857e55d610770d39cf4deec48164ccdb1efb3615efeba47683bd56c?s=96&#38;d=monsterid&#38;r=X" medium="image">
			<media:title type="html">jarik</media:title>
		</media:content>
	</item>
		<item>
		<title>How to change MAC address in Debian 6.0 Linux</title>
		<link>https://jarik.wordpress.com/2012/01/11/how-to-change-mac-address-in-debian-6-0-linux/</link>
					<comments>https://jarik.wordpress.com/2012/01/11/how-to-change-mac-address-in-debian-6-0-linux/#comments</comments>
		
		<dc:creator><![CDATA[jarik]]></dc:creator>
		<pubDate>Wed, 11 Jan 2012 08:11:42 +0000</pubDate>
				<category><![CDATA[MacOS]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<guid isPermaLink="false">http://jarik.wordpress.com/2012/01/11/how-to-change-mac-address-in-debian-6-0-linux/</guid>

					<description><![CDATA[First of all we have to stop networking. /etc/network/interfaces file and under eth0 (or other network interface) add following line: hwaddress ether your_new_mac_address After that you can start networking again. Example: sudo /etc/init.d/networking stop   sudo vi /etc/network/interfaces #now add:  hwaddress ether 01:02:03:04:05:06  sudo /etc/init.d/networking start]]></description>
										<content:encoded><![CDATA[<p>First of all we have to stop networking. /etc/network/interfaces file and under eth0 (or other network interface) add following line:</p>
<p>hwaddress ether your_new_mac_address</p>
<p>After that you can start networking again.</p>
<p>Example:</p>
<p><em>sudo /etc/init.d/networking stop  </em></p>
<p><em>sudo vi /etc/network/interfaces</em></p>
<p><em>#now add:  hwaddress ether 01:02:03:04:05:06 </em></p>
<p><em>sudo /etc/init.d/networking start</em></p>
]]></content:encoded>
					
					<wfw:commentRss>https://jarik.wordpress.com/2012/01/11/how-to-change-mac-address-in-debian-6-0-linux/feed/</wfw:commentRss>
			<slash:comments>2</slash:comments>
		
		
		
		<media:content url="https://2.gravatar.com/avatar/2b47ca4c6857e55d610770d39cf4deec48164ccdb1efb3615efeba47683bd56c?s=96&#38;d=monsterid&#38;r=X" medium="image">
			<media:title type="html">jarik</media:title>
		</media:content>
	</item>
		<item>
		<title>How to use Blackberry App World in unsupported country</title>
		<link>https://jarik.wordpress.com/2011/05/22/how-to-use-blackberry-app-world-in-unsupported-country/</link>
					<comments>https://jarik.wordpress.com/2011/05/22/how-to-use-blackberry-app-world-in-unsupported-country/#comments</comments>
		
		<dc:creator><![CDATA[jarik]]></dc:creator>
		<pubDate>Sun, 22 May 2011 18:33:51 +0000</pubDate>
				<category><![CDATA[blackberry]]></category>
		<category><![CDATA[BlackBerry Playbook]]></category>
		<guid isPermaLink="false">http://jarik.wordpress.com/?p=67</guid>

					<description><![CDATA[If you have BlackBerry Playbook but are now in unsupported country, You can&#8217;t download or update any applications. Looks like 20th century, doesn&#8217;t it? But You know that we are in 21st century and RIM cannot do anything about it ;) Here I will describe a way to access AppWorld from unsupported country. The only &#8230; <a href="https://jarik.wordpress.com/2011/05/22/how-to-use-blackberry-app-world-in-unsupported-country/" class="more-link">Continue reading <span class="screen-reader-text">How to use Blackberry App World in unsupported&#160;country</span> <span class="meta-nav">&#8594;</span></a>]]></description>
										<content:encoded><![CDATA[<p>If you have BlackBerry Playbook but are now in unsupported country, You can&#8217;t download or update any applications. Looks like 20th century, doesn&#8217;t it? But You know that we are in 21st century and RIM cannot do anything about it ;)</p>
<p>Here I will describe a way to access AppWorld from unsupported country. The only thing you need is Mac with wifi, connected to the Internet using ethernet cable. If You have a PC with windows 7, you can follow <a href="http://getablogger.blogspot.com/2011/05/how-to-use-blackberry-appworld-in.html">this tutorial</a>.</p>
<p>Generally, AppWorld checks Your IP address is it from the country they allow. So basically, we need to change the IP address we are using to one from supported countries. For example from US. To this, we will use VPN.</p>
<p>Firstly, we have to find VPN server with IP from USA and connect our Mac to it. Secondly we have to share this connection through wifi.</p>
<p>How to connect your Mac to VPN you can <a href="http://www.publicvpn.com/support/MacOSX105.php">read here</a>.</p>
<p>How to share this connection <a href="http://macapper.com/2007/07/22/tutorial-turn-your-mac-into-an-airport-base-station/">read here</a>.</p>
<p>PS. If you don&#8217;t want to buy VPN account, try <a href="http://bestfreevpn.com/">this one for free</a>.</p>
<p>PPS. If you like this post, write it in comments ;)</p>
]]></content:encoded>
					
					<wfw:commentRss>https://jarik.wordpress.com/2011/05/22/how-to-use-blackberry-app-world-in-unsupported-country/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
		
		<media:content url="https://2.gravatar.com/avatar/2b47ca4c6857e55d610770d39cf4deec48164ccdb1efb3615efeba47683bd56c?s=96&#38;d=monsterid&#38;r=X" medium="image">
			<media:title type="html">jarik</media:title>
		</media:content>
	</item>
		<item>
		<title>How to compile and deploy BlackBerry PlayBook Tablet WebWorks program on MacOs (and maybe linux)</title>
		<link>https://jarik.wordpress.com/2011/03/08/how-to-compile-and-deploy-blackberry-playbook-tablet-webworks-program-on-macos-and-maybe-linux/</link>
					<comments>https://jarik.wordpress.com/2011/03/08/how-to-compile-and-deploy-blackberry-playbook-tablet-webworks-program-on-macos-and-maybe-linux/#comments</comments>
		
		<dc:creator><![CDATA[jarik]]></dc:creator>
		<pubDate>Mon, 07 Mar 2011 21:38:48 +0000</pubDate>
				<category><![CDATA[bash]]></category>
		<category><![CDATA[blackberry]]></category>
		<category><![CDATA[MacOS]]></category>
		<category><![CDATA[programming]]></category>
		<guid isPermaLink="false">http://jarik.wordpress.com/?p=62</guid>

					<description><![CDATA[If you want to make programs for BlackBerry PlayBook Tablet using html5 and javascript you have to download and install SDK. It&#8217;s quite simple and described in documentation quite well. But when you start compiling and deploying program to simulator things are getting quite complicated and very badly documented (at least at the time when this &#8230; <a href="https://jarik.wordpress.com/2011/03/08/how-to-compile-and-deploy-blackberry-playbook-tablet-webworks-program-on-macos-and-maybe-linux/" class="more-link">Continue reading <span class="screen-reader-text">How to compile and deploy BlackBerry PlayBook Tablet WebWorks program on MacOs (and maybe&#160;linux)</span> <span class="meta-nav">&#8594;</span></a>]]></description>
										<content:encoded><![CDATA[<p>If you want to make programs for BlackBerry PlayBook Tablet using html5 and javascript you have to download and install SDK. It&#8217;s quite simple and described in documentation quite well. But when you start compiling and deploying program to simulator things are getting quite complicated and very badly documented (at least at the time when this post is written). Even a program downloaded from Blackeberry tutorial doesn&#8217;t want to compile.</p>
<p>First of all, to compile a program, you have to compress all files of your project (usually those ate html, js, css files and images) into a single zip file. First mistake that you will make is adding whole folder to archive . This doesn&#8217;t work ;) You should archive only files. Secondly, there shouldn&#8217;t be any unnecessary files like eclipse&#8217;s .project or Mac-Os&#8217;s .DS-Store hidden files. If compiler will find some of them i zipped file &#8211; it will fail.</p>
<p>So here is a short tutorial how to get started developing for  BlackBerry PlayBook Tablet using WebWorks (and not Adobe AIR) on MacOs without any software for money.</p>
<ol>
<li>Create folder where your programs will be stored. For this tutorial let&#8217;s call it &#8220;progs&#8221;</li>
<li>Inside this folder you can create as many folders as you want. One folder per program. For example you can extract SketchBook example program that can be taken from BlackBerry tutorial page and rename that folder to &#8220;sb&#8221;. Just try using short folder names without spaces and any other unnecessary symbols, because compiler seems to not like such names.</li>
<li>
<pre>Inside folder "progs" create file named "compile_deploy" and fill it with:
#!/bin/bash
dir="sb" #directory name
path="/Users/Username/bbwp/" #path to SDK
password="pass" #password set on emulator
ip="172.16.220.135" #IP of emulator
#do not edit from this point
cd $dir
find . -name '*.DS_Store' -type f -delete
zip -r ../$dir.zip *
cd ..
"$path"bbwp $dir.zip
"$path"blackberry-tablet-sdk/bin/blackberry-deploy -installApp -password $password -device $ip -package bin/$dir.bar</pre>
<p>In the first part of file there are some variables that should be changed: directory in which is the program (&#8220;sb&#8221;), path to directory where SDK was installed, password set in emulator, IP address of emulator.</li>
<li>Start terminal. go to &#8220;progs&#8221; directory and run command:
<pre>chmod a+x compile_deploy</pre>
</li>
<li>Now if you run
<pre>./compile_deploy</pre>
<p>Script that we just created will remove all DS_STORE files, zip all files inside directory, compile progarm and deploy everything into emulator (which by the way should have been started before ;))</li>
<li>Test your program :)</li>
</ol>
<p>If you have any questions feel free to ask in comments.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://jarik.wordpress.com/2011/03/08/how-to-compile-and-deploy-blackberry-playbook-tablet-webworks-program-on-macos-and-maybe-linux/feed/</wfw:commentRss>
			<slash:comments>5</slash:comments>
		
		
		
		<media:content url="https://2.gravatar.com/avatar/2b47ca4c6857e55d610770d39cf4deec48164ccdb1efb3615efeba47683bd56c?s=96&#38;d=monsterid&#38;r=X" medium="image">
			<media:title type="html">jarik</media:title>
		</media:content>
	</item>
	</channel>
</rss>
