<?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>10ninox blog &#187; software</title>
	<atom:link href="http://blog.10ninox.com/category/software/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.10ninox.com</link>
	<description>where night is much more fun than a day</description>
	<lastBuildDate>Wed, 25 Jan 2012 21:20:15 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>afpd on Debian</title>
		<link>http://blog.10ninox.com/2012/01/afpd-on-debian/</link>
		<comments>http://blog.10ninox.com/2012/01/afpd-on-debian/#comments</comments>
		<pubDate>Wed, 25 Jan 2012 21:20:15 +0000</pubDate>
		<dc:creator>sipp11</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[osx]]></category>

		<guid isPermaLink="false">http://blog.10ninox.com/?p=967</guid>
		<description><![CDATA[When you are on #OSX regularly, CIFS/SMB is not that good option. What you would need to do so is installing afpd and bonjour. Obviously, they won&#8217;t name as they are in Apple product. Their package names are netatalk and avahi &#8230; <a href="http://blog.10ninox.com/2012/01/afpd-on-debian/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><img class="alignright size-full wp-image-968" title="afp share" src="http://blog.10ninox.com/wp-content/uploads/2012/01/Screen-Shot-2012-01-26-at-4.01.47-AM.png" alt="afp share" width="244" height="279" /></p>
<p>When you are on #OSX regularly, CIFS/SMB is not that good option. What you would need to do so is installing afpd and bonjour. Obviously, they won&#8217;t name as they are in Apple product. Their package names are <span style="color: #993300;"><em>netatalk</em></span> and <span style="color: #993300;"><em>avahi</em></span> consecutively. Installation is as easy as one regular apt-get.</p>
<p>Setting up both at the same time, then we would configure later.</p>
<p><code># apt-get install netatalk avahi-daemon libnss-mdns</code></p>
<p>After installation, we need to configure a bit for both service.</p>
<p><strong>afpd</strong> &#8212; what we are going to do now is to disable legacy Apple File protocol back in pre #OSX time which we don&#8217;t need.<br />
<span style="color: #ff99cc;"><code># vim /etc/default/netatalk</code></span></p>
<pre><code></code> <code><span style="color: #999999;"><em># enable new service</em></span></code>
<code>CNID_METAD_RUN=yes </code>
<code>AFPD_RUN=yes </code>
<code><span style="color: #999999;"><em># disable legacy service</em></span> </code>
<code>TIMELORD_RUN=no</code>
<code>A2BOOT_RUN=no</code>
<code>ATALKD_RUN=no</code>
<code>PAPD_RUN=no</code></pre>
<p>All you need to do is making sure if these values are assigned correctly. Next, we have to declare sharepoint. You can append to these new settings to the end of this file.<br />
<span style="color: #ff99cc;"><code># vim /etc/netatalk/AppleVolumes.default</code></span></p>
<pre><code>/your/path VolumeName allow:@groupname options:usedots,upriv</code></pre>
<p><span style="color: #00ccff;"><em>Example:</em></span><br />
You can do a share by username.</p>
<pre><code>~/ "$u" allow:myusername options:usedots,upriv</code></pre>
<p>For Time Machine, you can do this; it might be a good idea to limit volume size before Time Machine takes over the whole drive by using volsizelimit:100000 in MB; 100000 = 100GB</p>
<pre><code>/home/username/TimeMachine "TimeMachine" allow:myusername options:usedots volsizelimit:100000</code></pre>
<p>Restart netatalk to see the change<br />
<code># /etc/init.d/netatalk restart</code></p>
<p>For more info: <a href="http://linux.die.net/man/5/applevolumes.default" title="applevolumes.default(5) - Linux man page" target="_blank">http://linux.die.net/man/5/applevolumes.default</a></p>
<p><strong>Avahi (Bonjour)</strong><br />
Next, we need to do help setting up bonjour or avahi. A setting file is <span style="color: #ff99cc;"><code>/etc/nsswitch.conf</code></span> which is belong to mDNS (mDNS comes helping hostname resolution.) we need to enable mdns module by add &#8220;mdns&#8221; to hosts: line as following:</p>
<pre><code>hosts: files mdns4_minimal [NOTFOUND=return] dns mdns4 mdns</code></pre>
<p>Last but not least, we customize how any device see afpd. Create a new file named <span style="color: #ff99cc;"><code>/etc/avahi/services/afpd.service</code></span> and paste this in.</p>
<pre>&lt;?xml version="1.0" standalone='no'?&gt;&lt;!--*-nxml-*--&gt;
&lt;!DOCTYPE service-group SYSTEM "avahi-service.dtd"&gt;
&lt;service-group&gt;
 &lt;name replace-wildcards="yes"&gt;%h&lt;/name&gt;
 &lt;service&gt;
 &lt;type&gt;_afpovertcp._tcp&lt;/type&gt;
 &lt;port&gt;548&lt;/port&gt;
 &lt;/service&gt;
 &lt;service&gt;
 &lt;type&gt;_device-info._tcp&lt;/type&gt;
 &lt;port&gt;0&lt;/port&gt;
 &lt;txt-record&gt;model=MacPro&lt;/txt-record&gt;
 &lt;/service&gt;
&lt;/service-group&gt;</pre>
<p>You can change model to something else which change icon you will see on #OSX client side. <code>AppleTV, iMac, MacPro, Xserve, MacBook, MacBookPro, MacBookAir, Macmini</code>, etc.</p>
<p>Restart avahi-daemon to see the change</p>
<p><code># /etc/init.d/avahi-daemon restart</code></p>
<img src="http://blog.10ninox.com/?ak_action=api_record_view&id=967&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://blog.10ninox.com/2012/01/afpd-on-debian/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MacJournal to Evernote</title>
		<link>http://blog.10ninox.com/2012/01/macjournal-to-evernote/</link>
		<comments>http://blog.10ninox.com/2012/01/macjournal-to-evernote/#comments</comments>
		<pubDate>Mon, 09 Jan 2012 16:05:57 +0000</pubDate>
		<dc:creator>sipp11</dc:creator>
				<category><![CDATA[software]]></category>
		<category><![CDATA[evernote]]></category>
		<category><![CDATA[note]]></category>

		<guid isPermaLink="false">http://blog.10ninox.com/?p=959</guid>
		<description><![CDATA[I was a short-period Evernote user after OneNote took over by all features and everything many years ago. However, once I moved to Mac OSX, I had yet to find a right tool as OneNote alternative. Although VMWare Fusion 4 &#8230; <a href="http://blog.10ninox.com/2012/01/macjournal-to-evernote/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I was a short-period Evernote user after OneNote took over by all features and everything many years ago. However, once I moved to Mac OSX, I had yet to find a right tool as OneNote alternative. Although VMWare Fusion 4 has been improved over the years, why on Earth I have to keep Windows running wasting my memory at all time.</p>
<p>I tried a lot of alternatives: <em>OneNote on VMWare Fusion</em> &#8212; Unity view of course, <em>MarsEdit</em>, <em>Omnifocus</em>, <em>Circusponies Notebook</em>, <em>Journler</em>, <em>MacJournal, Springpad (webapp), Catch (webapp</em>.) As a result, MacJournal it was by its simplicity for months. However, lacking of synchronization sucked big time, esp. with all mobile devices. Then there was an underdog option showing up again. <span style="color: #3366ff;"><em>Evernote</em></span>. At least this piece of software was built with cloudsync in mind.</p>
<p>Well, this time, after couple years w/o using EverNote, I could say that it&#8217;s been vastly improved. It&#8217;s still far from OneNote counterpart, but this is all you can get on OSX. The question left is how to move all data in MacJournal to Evernote?</p>
<p>Like everybody else. I googled for a solution; I found <a href="http://veritrope.com/tech/macjournal-to-evernote-batch-export-applescript/" target="_blank">a script</a> which gave me an error, at least for me. Suddenly I thought of why we have to complicate life this much. So I decided to select all my journal entry, drag them all and drop into Evernote!</p>
<p><span style="color: #ff9900;">Boom!</span> it works! way too easy, right? it works beautifully also. Evernote will show up tons of windows when it completely grabs each journal, but you can always wait a bit and close them all at once with <strong>cmd+q</strong>. After reopening Evernote, you would more than happy.</p>
<p><strong>note</strong>: downside &#8212; tag doesn&#8217;t come along, but there is always a search, right?</p>
<img src="http://blog.10ninox.com/?ak_action=api_record_view&id=959&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://blog.10ninox.com/2012/01/macjournal-to-evernote/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>FreeNAS 8 &#8211; cave man can do it</title>
		<link>http://blog.10ninox.com/2011/11/freenas-8-cave-man-can-do-it/</link>
		<comments>http://blog.10ninox.com/2011/11/freenas-8-cave-man-can-do-it/#comments</comments>
		<pubDate>Fri, 11 Nov 2011 11:29:45 +0000</pubDate>
		<dc:creator>sipp11</dc:creator>
				<category><![CDATA[server]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[NAS]]></category>
		<category><![CDATA[SS4200]]></category>

		<guid isPermaLink="false">http://blog.10ninox.com/?p=949</guid>
		<description><![CDATA[It&#8217;s FreeNAS. It&#8217;s easy. Set it and forget it with full fledge NAS you can&#8217;t find anywhere else. Well, it might not have DRBD, but for home/personal or even small business should be able to cope with rsync easily. At least, this &#8230; <a href="http://blog.10ninox.com/2011/11/freenas-8-cave-man-can-do-it/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s FreeNAS. It&#8217;s easy. Set it and forget it with full fledge NAS you can&#8217;t find anywhere else. Well, it might not have DRBD, but for home/personal or even small business should be able to cope with rsync easily.</p>
<p>At least, this version makes me happy. My SS4200 comes alive w/ port multiplier; it just lives up to its potential.</p>
<p>Kernel log speaks louder than anything.<br />
<code><br />
+pmp0 at siisch1 bus 0 scbus1 target 15 lun 0<br />
+pmp0: &lt; Port Multiplier 0325197b 000e &gt; ATA-0 device<br />
+pmp0: 300.000MB/s transfers (SATA 2.x, NONE, PIO 8192bytes)<br />
+pmp0: 300.000MB/s transfers (SATA 2.x, NONE, PIO 8192bytes)<br />
+pmp0: 15 fan-out ports<br />
+ada1 at siisch1 bus 0 scbus1 target 1 lun 0<br />
+ada1:  ATA-8 SATA 2.x device<br />
+ada1: 300.000MB/s transfers (SATA 2.x, UDMA5, PIO 8192bytes)<br />
+ada1: Command Queueing enabled<br />
+ada1: 1907729MB (3907029168 512 byte sectors: 16H 63S/T 16383C)<br />
+ada2 at siisch1 bus 0 scbus1 target 0 lun 0<br />
+ada2:  ATA-8 SATA 2.x device<br />
+ada2: 300.000MB/s transfers (SATA 2.x, UDMA6, PIO 8192bytes)<br />
+ada2: Command Queueing enabled<br />
+ada2: 1907729MB (3907029168 512 byte sectors: 16H 63S/T 16383C)<br />
+ada3 at siisch1 bus 0 scbus1 target 3 lun 0<br />
+ada3:  ATA-8 SATA 2.x device<br />
+ada3: 300.000MB/s transfers (SATA 2.x, UDMA6, PIO 8192bytes)<br />
+ada3: Command Queueing enabled<br />
+ada3: 1907729MB (3907029168 512 byte sectors: 16H 63S/T 16383C)<br />
+ada4 at siisch1 bus 0 scbus1 target 2 lun 0<br />
+ada4:  ATA-8 SATA 2.x device<br />
+ada4: 300.000MB/s transfers (SATA 2.x, UDMA5, PIO 8192bytes)<br />
+ada4: Command Queueing enabled<br />
+ada4: 1907729MB (3907029168 512 byte sectors: 16H 63S/T 16383C)</code></p>
<p>Thanks, FreeBSD guys enabling this feature. Thanks, FreeNAS folks developing nice-and-easy NAS.</p>
<img src="http://blog.10ninox.com/?ak_action=api_record_view&id=949&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://blog.10ninox.com/2011/11/freenas-8-cave-man-can-do-it/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Thai font for webOS</title>
		<link>http://blog.10ninox.com/2011/09/thai-font-for-webos/</link>
		<comments>http://blog.10ninox.com/2011/09/thai-font-for-webos/#comments</comments>
		<pubDate>Mon, 12 Sep 2011 13:45:11 +0000</pubDate>
		<dc:creator>sipp11</dc:creator>
				<category><![CDATA[software]]></category>
		<category><![CDATA[tweak]]></category>
		<category><![CDATA[webOS]]></category>

		<guid isPermaLink="false">http://blog.10ninox.com/?p=920</guid>
		<description><![CDATA[Well, after HP dumped #webOS device w/o caring how many languages those devices can read. We, as a user, are supposed to be on our own then. Here is fonts you need to replace, Arial &#38; Prelude families. These are &#8230; <a href="http://blog.10ninox.com/2011/09/thai-font-for-webos/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Well, after HP dumped #webOS device w/o caring how many languages those devices can read. We, as a user, are supposed to be on our own then.</p>
<p>Here is fonts you need to replace,<a href=" http://dl.dropbox.com/u/102630/webos-thai-fonts.zip"> Arial &amp; Prelude families</a>. These are sorta main fonts in webOS. Actually you can replace only Prelude for webOS 2.x or older, but likely you need both for webOS 3.</p>
<p><strong><span style="color: #008080;">What I have done?</span></strong> You definitely can copy any font w/ Thai character and rename to Prelude for all webOS 2.x or below. restart Luna once. It will work. However, I just like to have Prelude as it was. I only add Thai characters to that font. So as in this Arial.</p>
<p><strong><span style="color: #ff6600;">How can you replace these fonts?</span></strong> there are many possible ways to do so, but I guess you have to have some sort of shell, XTerm preferably, and surely you probably need to have Preware first. Then you should be able to simply copy this font over the original one.</p>
<p><code>root@Touchpad: /var/home/root# cp /media/internal/newfont/* /usr/share/fonts/</code></p>
<p>Once you copy these over, restart Luna once. All set =) If you need anything else, just give me a shout in comment =)</p>
<p>ps. well, FYI, I did put Thai character of TH SarabunNew into webOS&#8217;s Arial and Thonburi&#8217;s into Prelude.</p>
<p><strong>note</strong>: due to excessive spamming, I couldn&#8217;t approve real people comments in time. I have to delete spams in database instead. If you guys which have a problem are still around, let me know again. Sorry for inconvenience. I think I&#8217;ll move to #Disqus avoiding this issue as soon as possible.</p>
<img src="http://blog.10ninox.com/?ak_action=api_record_view&id=920&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://blog.10ninox.com/2011/09/thai-font-for-webos/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Multiple Profiles &#8212; A hero after Google Apps has transitioned</title>
		<link>http://blog.10ninox.com/2011/08/multiple-profiles-a-hero-after-google-apps-has-transitioned/</link>
		<comments>http://blog.10ninox.com/2011/08/multiple-profiles-a-hero-after-google-apps-has-transitioned/#comments</comments>
		<pubDate>Mon, 08 Aug 2011 17:59:50 +0000</pubDate>
		<dc:creator>sipp11</dc:creator>
				<category><![CDATA[Google]]></category>
		<category><![CDATA[gmail]]></category>
		<category><![CDATA[Google Apps]]></category>

		<guid isPermaLink="false">http://blog.10ninox.com/2011/08/multiple-profiles-a-hero-after-google-apps-has-transitioned/</guid>
		<description><![CDATA[I don’t know if anyone is in on the same boat as me. Back then, I was on both Google Apps mail and Gmail at the same time. However, once Google decided to change Google Apps account to be more &#8230; <a href="http://blog.10ninox.com/2011/08/multiple-profiles-a-hero-after-google-apps-has-transitioned/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><img class="alignright" title="Google Chrome Avatars" src="http://f.cl.ly/items/1v2c3A2P3L1D2W2h1C0R/Screen%20shot%202011-08-09%20at%201.27.20%20AM.png" alt="" width="88" height="76" />I don’t know if anyone is in on the same boat as me. Back then, I was on both Google Apps mail and Gmail at the same time. However, once Google decided to change Google Apps account to be more like normal Google account. Things get rough; I have to use Firefox for one account and Chrome for the other. Yeah, it’s a pain in the butt. However, I just discovered that Chrome has such a nice feature called “Multiple Profiles.” Basically, it lets you have different sets of session and else on different windows and of course they provide a nice touch identifying each profile by avatar on top-right of each window.</p>
<p>First, you have to enable “multiple profiles” flag by go to <a href="about:flags">about:flags</a>, find Multiple Profiles and enable it. Then you have to restart your Chrome once. There you go!<br />
<img class="alignnone" title="Multiple Profiles -- Google Chrome" src="http://f.cl.ly/items/2X0I2q2f082b1N0F162I/Screen%20shot%202011-08-09%20at%2012.54.15%20AM.png" alt="Multiple Profiles -- Google Chrome" width="569" height="465" /></p>
<img src="http://blog.10ninox.com/?ak_action=api_record_view&id=813&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://blog.10ninox.com/2011/08/multiple-profiles-a-hero-after-google-apps-has-transitioned/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Colorizing VIM</title>
		<link>http://blog.10ninox.com/2011/03/colorizing-vim/</link>
		<comments>http://blog.10ninox.com/2011/03/colorizing-vim/#comments</comments>
		<pubDate>Wed, 30 Mar 2011 08:09:39 +0000</pubDate>
		<dc:creator>sipp11</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[tweak]]></category>
		<category><![CDATA[vim]]></category>

		<guid isPermaLink="false">http://blog.10ninox.com/?p=805</guid>
		<description><![CDATA[The more you use vim, the further you are from all other text editors. However, when you get your new box ready, vim is likely not to enable syntax color by default. You can choose to do that individually or &#8230; <a href="http://blog.10ninox.com/2011/03/colorizing-vim/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>The more you use vim, the further you are from all other text editors. However, when you get your new box ready, vim is likely not to enable syntax color by default. You can choose to do that individually or for everyone. If you decide to let other manage this on their own, you can just create <code>~/.vimrc</code> or you can opt for system wide setting in <code>/etc/vim/vimrc</code>.</p>
<p>in <code>/etc/vim/vimrc</code>, you will find:-</p>
<p><code>" syntax</code></p>
<p>on which mean it&#8217;s commented out. What you have to do is uncomment it, save, and try. For <code>~/.vimrc</code>, you can just touch that file and type <code>syntax on</code> or you can just do:</p>
<p><code>$ echo 'syntax on' &gt; ~/.vimrc</code></p>
<p>That should do it.</p>
<img src="http://blog.10ninox.com/?ak_action=api_record_view&id=805&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://blog.10ninox.com/2011/03/colorizing-vim/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mac OSX and CIFS/SMB relationship</title>
		<link>http://blog.10ninox.com/2011/03/mac-osx-and-cifssmb-relationship/</link>
		<comments>http://blog.10ninox.com/2011/03/mac-osx-and-cifssmb-relationship/#comments</comments>
		<pubDate>Tue, 15 Mar 2011 17:03:37 +0000</pubDate>
		<dc:creator>sipp11</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[osx]]></category>
		<category><![CDATA[samba]]></category>

		<guid isPermaLink="false">http://blog.10ninox.com/?p=794</guid>
		<description><![CDATA[After I had a problem transferring file over CIFS with my Macbook Pro, there are a lot of issues: stopping copying, missing files in a destination although successful operation. That was frustrated and surely I can&#8217;t give up on Samba &#8230; <a href="http://blog.10ninox.com/2011/03/mac-osx-and-cifssmb-relationship/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>After I had a problem transferring file over CIFS with my Macbook Pro, there are a lot of issues: stopping copying, missing files in a destination although successful operation. That was frustrated and surely I can&#8217;t give up on Samba just yet. I even have to do rsync or cp to get expectable outcome from such a simple task. By the way, after stumble across threads, KBs, I found the solution that make me happy for couple weeks so far.</p>
<p>Here is what I was looking for <a href="http://support.apple.com/kb/HT4017" target="_blank">Mac OSX 10.5, 10.6: About named streams on SMB-mounted NAS</a></p>
<p>What you have to do is pretty simple, enabling named streams on Mac OS X client&#8211;yeah my machine! By opening up Terminal and type as following:-</p>
<pre><tt>echo "[default]" &gt;&gt;  ~/Library/Preferences/nsmb.conf</tt>
<tt>echo "streams=yes" &gt;&gt; ~/Library/Preferences/nsmb.conf</tt></pre>
<p>That is enabling named streams as a default for all smb connection. This makes my day indeed &#8212; not worrying if copying works as it should or not.</p>
<img src="http://blog.10ninox.com/?ak_action=api_record_view&id=794&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://blog.10ninox.com/2011/03/mac-osx-and-cifssmb-relationship/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>me &amp; Snow Leopard after first 2 weeks</title>
		<link>http://blog.10ninox.com/2010/12/me-snow-leopard-after-first-2-weeks/</link>
		<comments>http://blog.10ninox.com/2010/12/me-snow-leopard-after-first-2-weeks/#comments</comments>
		<pubDate>Wed, 15 Dec 2010 19:38:59 +0000</pubDate>
		<dc:creator>sipp11</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[opinion]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[osx]]></category>

		<guid isPermaLink="false">http://blog.10ninox.com/2010/12/15/me-snow-leopard-after-first-2-weeks/</guid>
		<description><![CDATA[For the record, I had been using Mac OSX way way back to iBook G3; as I remember, it&#8217;s Tiger back then. I didn&#8217;t have much love for Mac OSX. That&#8217;s why I turned to Vista (believe it or not, &#8230; <a href="http://blog.10ninox.com/2010/12/me-snow-leopard-after-first-2-weeks/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>For the record, I had been using Mac OSX way way back to iBook G3; as I remember, it&#8217;s Tiger back then. I didn&#8217;t have much love for Mac OSX. That&#8217;s why I turned to Vista (believe it or not, I think it&#8217;s better than Tiger in many ways), and Windows 7. Nonetheless, destiny always plays us. I have to get a new machine after 3-year+ with X61 Tablet. X200 Tablet is my next target, but in Thailand, unfortunately, there is none available in brick and mortar store. It&#8217;s required a special order which takes like a month or so with *extra special price <img src='http://blog.10ninox.com/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> * to get which is much more expensive than Macbook Pro. Thus, I decided to get Macbook Pro with matte screen &amp; i7. My decision of purchasing Macbook Pro is about hardware alone since I didn&#8217;t think of software as a barrier.</p>
<p>I won&#8217;t go through all detail right away since I still need more time to adjust my routine to suit Mac OSX to get a fair comparison. In short, pros and cons I have found are below.</p>
<p><strong><span style="color: #339966;">Pros:</span></strong></p>
<ul>
<li>[software] Apple makes me believe that their trackpad is good; after I have so much love for Thinkpad trackpoint.</li>
<li>[software] OSX handle multiple monitors well (just 2 monitors so far) [Linux is way way behind Mac OSX/Windows]</li>
<li>[software] Never in love with multiple workspaces, but Spaces does the job very very well.</li>
<li>[software] OSX handle most of Google thingys well: iCal, Address Book rocks w/Google account.</li>
<li>[software] Mail app is way better than Live Mail in Windows.</li>
<li>[software] Spotlight is as good as Windows Search.</li>
<li>[software] VMWare Fusion is pretty damn good with a unity feature; it makes you believe that Windows app is native Mac app.</li>
<li>[software] Gotta love having bash shell as default. To me, it&#8217;s better than DOS.</li>
<li>[hardware] Macbook Pro looks very very nice.</li>
<li>[hardware] MagSafe should be on every laptops!</li>
</ul>
<p><strong><span style="color: #ff6600;">Cons:</span></strong></p>
<ul>
<li><span style="text-decoration: line-through;">[software] OSX just can&#8217;t handle copying files [from cifs to another cifs, multiple copy &amp; paste, multiple times of drag &amp; drop, copying files within many many level of folders] It doesn&#8217;t matter if it&#8217;s Windows&#8217; thing. If OSX</span> su<span style="text-decoration: line-through;">pports it, MAKE IT fully compatible. </span>&gt;&gt; <a href="http://blog.10ninox.com/2011/03/15/mac-osx-and-cifssmb-relationship/">here is a fix.</a></li>
<li><span style="text-decoration: line-through;">[software] </span><span style="text-decoration: line-through;">Emptying trash is a pain in the ass; I don&#8217;t know what they do, how secure they are doing, but there is no choice for unsecured and fast one. That&#8217;s bad enough. </span>shift+option+cmd+del is good enough to empty everything although it might take few hours.</li>
<li>[software] iWork is useless to me&#8211;I can&#8217;t even open MS Word file.</li>
<li>[software] Microsoft Office for Mac is below par when it comes to compatibility with Windows version&#8211;It&#8217;s not OS fault, but most people around me use Windows, that makes this a con. I expect much better app-and-OS-independent here.</li>
<li><span style="text-decoration: line-through;">[software] </span><span style="text-decoration: line-through;">Missing OneNote! there is none as good also.</span> VMWare Fusion comes being a hero here.</li>
<li>[software] no Windows Live Photo replacement&#8211;I hate iPhoto which can do only in its own library. Adobe Bridge comes close but it&#8217;s not built for viewing tons of photo in many folders at once. Picasa has its own way of keeping all info. I don&#8217;t like that. (I stick with spacebar to preview for now.)</li>
<li><del datetime="2011-03-26T16:53:12+00:00">[software] a change of not showing SMB/CIFS mount on desktop in Snow Leopard is very very awkward. In Tiger, if you mount CIFS path, you will get a link on desktop. This can be achieved with ln -s, but why make this more complicated than it used to be?</del> my bad that I couldn&#8217;t find this: firing up Sidebar Preference | General Tab | you will see connected servers show on desktop option! checked!</li>
<li>[hardware] 2 USB for top-of-the-line machine?</li>
<li>[hardware] Screen isn&#8217;t IPS-comparable; this is less than I expected. At least Thinkpad X200 Tablet will come with a better panel.</li>
<li>[hardware] no PgUp/PgDw and many buttons on Mac keyboard, but I do love having CMD as an extra.</li>
</ul>
<p>I know that many are applications&#8217; cons, but if I only include what OS can do, not considering 3rd party app too, it would be non real-world experience. Is there anyone still uses computer w/o any 3rd party software nowadays? I&#8217;m sure I will have a lot more to add here; wait and see.</p>
<p> </p>
<img src="http://blog.10ninox.com/?ak_action=api_record_view&id=782&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://blog.10ninox.com/2010/12/me-snow-leopard-after-first-2-weeks/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Better Firefox toolbar in Linux</title>
		<link>http://blog.10ninox.com/2010/10/better-firefox-toolbar-in-linux/</link>
		<comments>http://blog.10ninox.com/2010/10/better-firefox-toolbar-in-linux/#comments</comments>
		<pubDate>Sat, 30 Oct 2010 09:24:09 +0000</pubDate>
		<dc:creator>sipp11</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[tweak]]></category>
		<category><![CDATA[Firefox]]></category>

		<guid isPermaLink="false">http://blog.10ninox.com/?p=763</guid>
		<description><![CDATA[While it looks just right in Windows, default toolbar in Linux just looks way too bulky: gap &#38; padding for buttons are just too big. However, none can&#8217;t be customized. Here is what I configure mine. For Firefox, it will &#8230; <a href="http://blog.10ninox.com/2010/10/better-firefox-toolbar-in-linux/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>While it looks just right in Windows, default toolbar in Linux just looks way too bulky: gap &amp; padding for buttons are just too big. However, none can&#8217;t be customized. Here is what I configure mine.</p>
<p>For Firefox, it will read <code>userChrome.css</code> for custom UI. It&#8217;s located in <code>/home/&lt;user-name&gt;/.mozilla/firefox/&lt;random&gt;.default/chrome/</code> You can just create one.</p>
<pre>/* Menu Bar - Shrink and Fade Text */
#navigator-toolbox .menubar-text {
	font-size: 70% !important;
	color: #999 !important;
	}

/* URL Bar and Search Bar - Shrink and Fade Text*/
#urlbar, #searchbar{
	font-size: 85% !important;
	color: #333 !important;
	}

/* Tabs - Shrink Font and Height*/
.tabbrowser-tabs {
	font-size: 80% !important;
	height: 20px !important;
	}
.tabbrowser-strip {
	height: 22px !important;
	}

/* Bookmarks Toolbar - Shrink Font and Size*/
#PersonalToolbar {
	font-size: 90% !important;
	padding: 0px !important;
	margin: 0px !important;
	max-height: 20px !important;
	}
	/* Seperators - Remove */
	#PersonalToolbar toolbarseparator {
		display: none !important;
		}
	/* Toolbar Buttons - Reduce Margins */
	#PersonalToolbar toolbarbutton {
		margin: 0 -5px 0 -1px !important;
		}
	/* Toolbar Icons - Shrink and Reduce Margins */
	#PersonalToolbar .toolbarbutton-icon {
		max-width: 12px !important;
		max-height: 12px !important;
		margin: 0px 2px 0px 0px !important;
		}
</pre>
<p><img border="0" title="Default UI's Linux Firefox" src="http://blog.10ninox.com/wp-content/uploads/2010/10/Screenshot.png" alt="" width="278" height="33" /><br />
<br /><img border="0" title="Custom UI in Linux Firefox" src="http://blog.10ninox.com/wp-content/uploads/2010/10/custom.png" alt="" width="295" height="25" /><br />
This will reduce button size into what it should be. Surely you can adjust suiting your preference easily with a bit knowledge of CSS.</p>
<img src="http://blog.10ninox.com/?ak_action=api_record_view&id=763&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://blog.10ninox.com/2010/10/better-firefox-toolbar-in-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>force to use Google.com, not any local search</title>
		<link>http://blog.10ninox.com/2010/08/force-to-use-google-com-not-any-local-search/</link>
		<comments>http://blog.10ninox.com/2010/08/force-to-use-google-com-not-any-local-search/#comments</comments>
		<pubDate>Mon, 16 Aug 2010 14:58:22 +0000</pubDate>
		<dc:creator>sipp11</dc:creator>
				<category><![CDATA[Google]]></category>
		<category><![CDATA[local search]]></category>
		<category><![CDATA[search engine]]></category>

		<guid isPermaLink="false">http://blog.10ninox.com/2010/08/16/force-to-use-google-com-not-any-local-search/</guid>
		<description><![CDATA[Google is a smart ass when it comes to serve what people want. However, most of the time you find yourself aboard, they just assume you are one of local folks. That’s painful when you are searching something. You are &#8230; <a href="http://blog.10ninox.com/2010/08/force-to-use-google-com-not-any-local-search/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Google is a smart ass when it comes to serve what people want. However, most of the time you find yourself aboard, they just assume you are one of local folks. That’s painful when you are searching something. You are likely to get most of local search results than what you are familiar with. So? what can we do with it? It’s varied by how you do things.</p>
<p>1. If you used to open browser, type “google.com” then find things from there. You will have to type a bit more than usual. Try “google.com/ncr” This time you will see same old buddy you saw/expected.</p>
<p>NCR – is likely to be an abbreviation of <strong>N</strong>o <strong>C</strong>ountry <strong>R</strong>edirection.</p>
<p>2. If you are using Firefox, you will have to find new search engine. Lucky us, <a href="https://addons.mozilla.org/en-US/firefox/user/5029313/" target="_blank">portugesemike</a> did <a href="https://addons.mozilla.org/en-US/firefox/addon/51000" target="_blank">this</a> for us all. You can just use this instead of regular Google one.</p>
<p>3. If you are using Chrome, you have to go through setting a bit as following.</p>
<blockquote><p><em>UPDATE 2011/08/10</em>:<br />
Preference &#8211;&gt; Manage Search Engines</p>
<p>Add new search engine by using<br />
<strong>Search Engine</strong>: Google.com<br />
<strong>keyword</strong>: google.com/<br />
<strong>URL</strong>: http://www.google.com/search?q=%s</p></blockquote>
<blockquote><p><span style="text-decoration: line-through;">Customize and Control &gt;&gt; Options &gt;&gt; Basic tab &gt;&gt; click at manage in default search section</span></p>
<p><span style="text-decoration: line-through;"><img class="wlDisabledImage" style="display: inline; border-width: 0px;" title="Chrome search setting NO country redirection" src="http://blog.10ninox.com/wp-content/uploads/2010/08/image.png" border="0" alt="Chrome search setting NO country redirection" width="444" height="333" /></span></p>
<p><span style="text-decoration: line-through;">You have to add *ncr* to keyword, then magic will happen.</span></p></blockquote>
<p>Have fun with real Google.com search!</p>
<img src="http://blog.10ninox.com/?ak_action=api_record_view&id=751&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://blog.10ninox.com/2010/08/force-to-use-google-com-not-any-local-search/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

