<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet href="http://feeds.feedburner.com/~d/styles/rss2full.xsl" type="text/xsl" media="screen"?><?xml-stylesheet href="http://feeds.feedburner.com/~d/styles/itemcontent.css" type="text/css" media="screen"?><rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>10ninox's blog</title>
	
	<link>http://blog.10ninox.com</link>
	<description>where night is much more fun than a day</description>
	<pubDate>Mon, 24 Nov 2008 03:46:11 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7-beta3</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" href="http://feeds.feedburner.com/10ninox" type="application/rss+xml" /><item>
		<title>How to configure ftpd — proftpd</title>
		<link>http://feeds.feedburner.com/~r/10ninox/~3/463365621/</link>
		<comments>http://blog.10ninox.com/2008/11/23/how-to-configure-ftpd-proftpd/#comments</comments>
		<pubDate>Mon, 24 Nov 2008 01:37:03 +0000</pubDate>
		<dc:creator>sipp11</dc:creator>
		
		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://blog.10ninox.com/2008/11/23/how-to-configure-ftpd-proftpd/</guid>
		<description><![CDATA[I&#8217;m planing to write Unix 101 &#8212; beginner for beginner. Since I started getting into shell much more than GUI, I liked how simple Unix is. However, I&#8217;m no pro as Unix user; Thus, I probably have an idea what Unix 101 should be like much more than reading through Unix manual indeed.
By the way, [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m planing to write Unix 101 &#8212; beginner for beginner. Since I started getting into shell much more than GUI, I liked how simple Unix is. However, I&#8217;m no pro as Unix user; Thus, I probably have an idea what Unix 101 should be like much more than reading through Unix manual indeed.</p>
<p>By the way, after trying Windows Server 2008 standard for a month or so, I found that there were too many hassles involved. It was good to have GUI or wizard to walk through but sometimes it just gave us more confuse. Believe it or not, I can&#8217;t even get FTP server on IIS work properly <img src='http://blog.10ninox.com/wp-includes/images/smilies/icon_sad.gif' alt=':-(' class='wp-smiley' /> Although the alternative, like FileZilla server, works flawlessly, it&#8217;s just not right using 3rd party while using server edition and that&#8217;s already equipped with FTP server. It&#8217;s just like using Apache HTTPd on Windows server; why just use IIS or just change to Linux box for good =)</p>
<p>So I choose to have less complicated way&#8211;Ubuntu. Well, the reason why I choose Ubuntu is nothing but easiest. In Ubuntu server 8.10, there is no ftpd by default for whatever reason. So adding one of them is a must. Because There are many many choices, I don&#8217;t know what is good too. I just choose <em>proftpd</em> and I find that&#8217;s easy to configure. That&#8217;s simple.</p>
<p>Firstly, install it! &#8212; remember this is Ubuntu&#8211;it&#8217;s debian. Your distro might use something else, but that differs when installing only.</p>
<p class="codebox">$ sudo apt-get install proftpd</p>
<p>Done with ftpd installation. That&#8217;s easy, isn&#8217;t it? Then we have to do configuration, briefly we have to:-</p>
<ol>
<li>manage user</li>
<li>edit proftpd.conf</li>
<li>start/restart proftpd</li>
</ol>
<p>For managing user, you might use the same account in OS, so that you don&#8217;t have to do a thing in this step, but if you want to use isolated user for extra security (?!?), go for it.</p>
<p class="codebox">useradd [ -u uid ][ -g gid ][ -G gid [,gid,.. ]][ -d dir ][ -m ][ -s shell ][ -c comment ] loginname</p>
<p>You could just have only parameter you want, then the rest would be default value</p>
<p class="codebox">$ sudo useradd -d /home/ftp ftpuser</p>
<p>$ sudo passwd ftpuser //for creating password for ftpuser</p>
<p>For configuring our ftpd, here is  the most important part&#8211;editing /etc/proftpd/proftpd.conf. In my case, I have login thru ssh, so no GUI no gedit no mousepad, nano is my first choice of text-editor here. You guys might us different one as you like.</p>
<p class="codebox">$ sudo nano /etc/proftpd/proftpd.conf</p>
<p>what you need to configure basicly are the following:-</p>
<p class="codebox">
ServerName&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &quot;10nas&quot;<br />
  ServerType&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; standalone<br />
  # Set the user and group that the server normally runs at.<br />
  User&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; nobody<br />
  Group&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; nogroup<br />
  # Set default root as a NAS<br />
  DefaultRoot /mnt/nas<br />
  # This is for keeping FTP user inside DefaultRoot only!<br />
  DefaultRoot ~<br />
  # Valid Logins<br />
  &lt;Limit LOGIN&gt;<br />
  AllowUser x1<br />
  AllowUser x2<br />
  AllowUser x3<br />
 AllowUser x4<br />
  DenyALL<br />
  &lt;/Limit&gt;<br />
  MaxLoginAttempts 3<br />
  # well, &lt;Directory&gt; /mnt/nas&gt; looks weird, but it&#8217;s not a typo!<br />
  &lt;Directory&gt; /mnt/nas/&gt;<br />
  # This is basic security for setting initial permission for file &amp; directory<br />
  Umask 022 022<br />
  AllowOverwrite on<br />
  &#160;&#160;&#160; &lt;Limit ALL&gt;<br />
  &#160;&#160;&#160; Order Allow,Deny<br />
  &#160;&#160;&#160; AllowUser x1<br />
  &#160;&#160;&#160; AllowUser x2<br />
  &#160;&#160;&#160; AllowUser x3<br />
  &#160;&#160;&#160; AllowUser x4<br />
  &#160;&#160;&#160; Deny ALL<br />
  &#160;&#160;&#160; &lt;/Limit&gt;<br />
  &lt;/Directory&gt;
</p>
<p>Commands to start/stop/restart the service is similar to any service</p>
<p class="codebox">$ sudo /etc/init.d/proftpd start<br />
$ sudo /etc/init.d/proftpd stop<br />
$ sudo /etc/init.d/proftpd restart</p>
<p>Well, this should be enough for setting up basic FTP server securely. =)</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~f/10ninox?a=hcdEN"><img src="http://feeds.feedburner.com/~f/10ninox?i=hcdEN" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/10ninox?a=4IaYn"><img src="http://feeds.feedburner.com/~f/10ninox?i=4IaYn" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/10ninox?a=MqYeN"><img src="http://feeds.feedburner.com/~f/10ninox?i=MqYeN" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/10ninox?a=4B96n"><img src="http://feeds.feedburner.com/~f/10ninox?i=4B96n" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://blog.10ninox.com/2008/11/23/how-to-configure-ftpd-proftpd/feed/</wfw:commentRss>
		<feedburner:origLink>http://blog.10ninox.com/2008/11/23/how-to-configure-ftpd-proftpd/</feedburner:origLink></item>
		<item>
		<title>Major Rebate Processor Files for Bankruptcy</title>
		<link>http://feeds.feedburner.com/~r/10ninox/~3/455672594/</link>
		<comments>http://blog.10ninox.com/2008/11/17/major-rebate-processor-files-for-bankruptcy/#comments</comments>
		<pubDate>Mon, 17 Nov 2008 07:02:00 +0000</pubDate>
		<dc:creator>sipp11</dc:creator>
		
		<category><![CDATA[misc]]></category>

		<guid isPermaLink="false">http://blog.10ninox.com/2008/11/17/major-rebate-processor-files-for-bankruptcy/</guid>
		<description><![CDATA[Well, as you may know, in the US, there is a strange way to have such a cheap deal, MIR &#8212; Mail-In Rebate. Stores aren&#8217;t likely to give you an instant discount to make a real good deal, so mail-in rebate is for filling that missing link. Basicly, when you buy stuffs, you have to [...]]]></description>
			<content:encoded><![CDATA[<p>Well, as you may know, in the US, there is a strange way to have such a cheap deal, MIR &#8212; Mail-In Rebate. Stores aren&#8217;t likely to give you an instant discount to make a real good deal, so mail-in rebate is for filling that missing link. Basicly, when you buy stuffs, you have to cut off UPC, barcode on the box, to make sure that you cannot return, fill out the form, and mail all these to a company&#8211;rebate processor company. Then, wait. Some companies take only about a month, some companies take almost 4 months&#8211;believe me, that happened to me once. However, average wait time is about 2 months or so. It&#8217;s mostly just wait (and pain arguing about denial of rebate.)  Nowadays, you might have to be aware much more than that!!</p>
<p>With the period of US economy collapsing, many companies are gone. Customers spend less, things get more expensive. What the heck we can do about that? Nothing =) Just be alert for cheap deal, spend money as efficient as we can. Most of good deal online or in store come with rebate, it usually has only a question that how long we will get our money back. Nonetheless, now you might have to ask whether we will ever get our money back!! Surely, you are not likely to get rebate from store that use this rebate processor since it filed for bankruptcy!! The answer is uncertainty that you will get or not. If lucky, everything will work out well. If not, no one could help you either. Sue? yes, you can but for $40, $80, or $100? will you?</p>
<p>Anyway, in case you are in the US and you have tons of waiting MIR list. You may like to know this&#8211;the companies that use this rebate processor:-</p>
<p><em>ABBOTT LABORATORIES (FREESTYLE METERS)<br />
ACRONIS SOFTWARE (TRUE IMAGE)<br />
ACTIVISION<br />
AD-AWARE<br />
ADOBE<br />
ADVANCE AUTO PARTS (Parts America?)<br />
ANTEC - Called Antec and they are having problems. Said not to cash ! Antec CSR number 1-800-222-6832, Press 1<br />
ArchBrook Laguna (Magellan Refurbished Rebate from Pep Boys)<br />
ATDEC<br />
AVG<br />
BED BATH &amp; BEYOND<br />
BIC CORPORATION US - Shaver Division<br />
BFG Tech - Told me to Call Rebate Status. Will re-email on Monday<br />
BRIDGEVINE<br />
CANON says DO NOT CASH </em><a href="http://slickdeals.net/?sdtid=1015491&amp;u2=http://www.usa.canon.com/consumer/controller?act=StandardDisplayAct&amp;fcategoryid=2587&amp;keycode=important_rebate_info"><em>http://www.usa.canon.com/consumer/controller?act=StandardDisplayAct&amp;fcategoryid=2587&amp;keycode=important_rebate_info</em></a><em> edit atene<br />
CHECKER / SCHUCK&#8217;S / KRAGEN Auto Parts<br />
CITIBANK<br />
CORE<br />
COSTCO (COSTCO email says don&#8217;t cash at bank, take it to a COSTCO and they will CASH it. If you prefer to receive by mail call 1-866-355-3137)<br />
DELORME<br />
FUJITSU<br />
HOME DEPOT<br />
JOE&#8217;S SPORTS<br />
KENSINGTON<br />
LOGITECH (Called toll-free number Nov. 14, spoke with CSR. CSR said my check was good to cash. Not sure of others.)<br />
MOTOROLA (SURFBOARD MODEM)<br />
MURRAY&#8217;S DISCOUNT AUTO PARTS (oil)<br />
NATURE&#8217;S EARTH (cat litter)<br />
NERO<br />
NEWEGG (certain products have rebates from newegg directly e.g. TATUNG, ROSEWILL)<br />
PANDA DISTRIBUTION<br />
PANDIGITAL<br />
PC TOOLS &#8211;&gt; Phone: (866) 431-5087<br />
PRICEGRABBER - Don&#8217;t Cash Check (Even older ones you haven&#8217;t cashed in yet)! Will Send out New Rebate Check Directly<br />
ROSEWILL (NEWEGG)<br />
RUSTOLEUM - Menard&#8217;s July $4 Door Paint Rebate (Contact Rustoleum directly @ 1-800-323-3584)<br />
SAMSUNG<br />
SMITH MICRO SOFTWARE (ANONYMIZER)<br />
SPOT (Satellite beacon)<br />
TABLETOPS UNLIMITED<br />
TRENDNET - Don&#8217;t cash check; make a copy and mail the original check to </em>TRENDnet headquarters (can be found at trendnet.com along with a printout of email regarding this issue. ) New check will be issued.<br />
<em>WESTINGHOUSE<br />
XFX<br />
XM SATELLITE RADIO<br />
ZEROTHERM<br />
ZYXEL</em></p>
<p>Well, that&#8217;s a long list. Some companies are kind enough to take this responsibility, but some are just quiet about this. Who know the future? Just keep avoiding getting all rebate deals from the company listed above until things are clear.</p>
<p>This holiday season is just starting&#8230; be careful&#8230;..</p>
<p><span style="text-decoration: underline;">Note</span>: More information and progression at <a href="http://forums.slickdeals.net/showthread.php?sduid=383932&amp;t=1015491" target="_blank">SlickDeals.net forum</a></p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~f/10ninox?a=dYTgN"><img src="http://feeds.feedburner.com/~f/10ninox?i=dYTgN" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/10ninox?a=WP52n"><img src="http://feeds.feedburner.com/~f/10ninox?i=WP52n" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/10ninox?a=4YYHN"><img src="http://feeds.feedburner.com/~f/10ninox?i=4YYHN" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/10ninox?a=WIMin"><img src="http://feeds.feedburner.com/~f/10ninox?i=WIMin" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://blog.10ninox.com/2008/11/17/major-rebate-processor-files-for-bankruptcy/feed/</wfw:commentRss>
		<feedburner:origLink>http://blog.10ninox.com/2008/11/17/major-rebate-processor-files-for-bankruptcy/</feedburner:origLink></item>
		<item>
		<title>Voodoo Envy 133 Wallpaper</title>
		<link>http://feeds.feedburner.com/~r/10ninox/~3/439700307/</link>
		<comments>http://blog.10ninox.com/2008/11/02/voodoo-envy-133-wallpaper/#comments</comments>
		<pubDate>Sun, 02 Nov 2008 06:19:32 +0000</pubDate>
		<dc:creator>sipp11</dc:creator>
		
		<category><![CDATA[wallpaper]]></category>

		<guid isPermaLink="false">http://blog.10ninox.com/2008/11/02/voodoo-envy-133-wallpaper/</guid>
		<description><![CDATA[This might be one of dream machines of many people, but as it turned out, it might not be as cool as we were expected from the machine in that price range. Slow speed could be a compromise, but less than 3-hr battery life is just little short. Yes, although Envy 133 comes with cool [...]]]></description>
			<content:encoded><![CDATA[<p>This might be one of dream machines of many people, but as it turned out, it might not be as cool as we were expected from the machine in that price range. Slow speed could be a compromise, but less than 3-hr battery life is just little short. Yes, although Envy 133 comes with cool power adapter, that doesn&#8217;t justify that we should pack that up in the bag at all time, does it?</p>
<p>I never ever see that in person though and I don&#8217;t think I will ever see that too <img src='http://blog.10ninox.com/wp-includes/images/smilies/icon_razz.gif' alt=':-P' class='wp-smiley' /> However, that doesn&#8217;t mean that we couldn&#8217;t use Envy 133 wallpaper!</p>
<p><a href="http://blog.10ninox.com/wp-content/uploads/2008/11/voodoo-envy-133.jpg"><img style="border-right-width: 0px; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" src="http://blog.10ninox.com/wp-content/uploads/2008/11/voodoo-envy-133-thumb.jpg" border="0" alt="voodoo-envy-133-wallpaper" width="240" height="150" /></a></p>
<p>Here you go, at first I think this could be super cool wallpaper but when I got it, it&#8217;s kind of so-so, disappointed a bit, but someone might want to have it.</p>
<p>If you guys have this very good looking machine and have extra more wallpaper from it, please share I would love to see that.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~f/10ninox?a=A1vtN"><img src="http://feeds.feedburner.com/~f/10ninox?i=A1vtN" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/10ninox?a=0A4Mn"><img src="http://feeds.feedburner.com/~f/10ninox?i=0A4Mn" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/10ninox?a=bM4gN"><img src="http://feeds.feedburner.com/~f/10ninox?i=bM4gN" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/10ninox?a=waS8n"><img src="http://feeds.feedburner.com/~f/10ninox?i=waS8n" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://blog.10ninox.com/2008/11/02/voodoo-envy-133-wallpaper/feed/</wfw:commentRss>
		<feedburner:origLink>http://blog.10ninox.com/2008/11/02/voodoo-envy-133-wallpaper/</feedburner:origLink></item>
		<item>
		<title>Netbook &amp; Notebook gap getting darn too close with Dell Mini 12</title>
		<link>http://feeds.feedburner.com/~r/10ninox/~3/433707261/</link>
		<comments>http://blog.10ninox.com/2008/10/27/netbook-notebook-gap-getting-darn-too-close-with-dell-mini-12/#comments</comments>
		<pubDate>Mon, 27 Oct 2008 15:55:55 +0000</pubDate>
		<dc:creator>sipp11</dc:creator>
		
		<category><![CDATA[netbook]]></category>

		<guid isPermaLink="false">http://blog.10ninox.com/2008/10/27/netbook-notebook-gap-getting-darn-too-close-with-dell-mini-12/</guid>
		<description><![CDATA[The day netbook will merge with notebook is closer than you and I think&#8211;next month!? Since Dell will unleash Dell Inspiron Mini 12, the successor of Mini 9, with $600-$700 price tag depending on configuration. 6-cell battery one probably last 6-hour (let&#8217;s say 4-5 in practice) according to LaptopMag.com.     
Brief specification [...]]]></description>
			<content:encoded><![CDATA[<p>The day netbook will merge with notebook is closer than you and I think&#8211;next month!? Since Dell will unleash Dell Inspiron Mini 12, the successor of Mini 9, with $600-$700 price tag depending on configuration. 6-cell battery one probably last 6-hour (let&#8217;s say 4-5 in practice) according to LaptopMag.com.    <br /><a href="http://blog.10ninox.com/wp-content/uploads/2008/10/image4.png"></a><a href="http://blog.10ninox.com/wp-content/uploads/2008/10/image2.png"><img border="0" alt="Dell inspiron Mini 12" src="http://blog.10ninox.com/wp-content/uploads/2008/10/image-thumb.png" width="156" height="150" /></a><a href="http://blog.10ninox.com/wp-content/uploads/2008/10/image4.png"><img border="0" alt="Dell inspiron Mini 12" src="http://blog.10ninox.com/wp-content/uploads/2008/10/image-thumb1.png" width="135" height="150" /></a> </p>
<p>Brief specification of this mutant netbook:-    <br /><strong><em>CPU</em></strong>: Intel Atom     <br /><strong><em>RAM</em></strong>: 1GB of RAM     <br /><strong><em>Hard disk drive</em></strong>: 60/80GB     <br /><strong><em>OS</em></strong>: Windows Vista Home Basic     <br /><strong><em>Screen</em></strong>: 12.1&quot; Glossy WXGA (1280&#215;800)     <br /><strong><em>Connectivity</em></strong>: Bluetooth, WLAN 802.11b/g     <br /><strong><em>Ports</em></strong>: 3*USB, VGA, Card reader, Mic &amp; headphone jack.     <br /><strong><em>Extra</em></strong>: Webcam     <br /><strong><em>Thickness</em></strong>: 0.92&quot; - 1.09&quot;     <br /><strong><em>Weight</em></strong>: 2.72 lbs </p>
<p>I am amazed of what netbook is going to be&#8211;from 7&quot; Eee 70x to now in only less than a year!! No more portability in that sense. Not that I don&#8217;t like this, but this should mean things equipped Intel Atom shouldn&#8217;t belong to only netbook no more. Then it will make sense</p>
<p>IMO, eventually expensive ultra portable will fade away from the market. No matter how good they are, they are just like Vertu which offers none to other, but extraordinary price that no one considers buying one. Sad that some of them are such a great thing&#8211;Sony TZ. The question is whether we will see less and less innovation in that area too? probably so. :-/ [but we will see innovation in low-end side instead!! <img src='http://blog.10ninox.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':-D' class='wp-smiley' /> I don't know which is better honestly.]</p>
<p><a href="http://blog.10ninox.com/wp-content/uploads/2008/10/image5.png"><img border="0" alt="Dell Inspiron Mini 12 vs Macbook Air" src="http://blog.10ninox.com/wp-content/uploads/2008/10/image-thumb2.png" width="206" height="140" /></a> <a href="http://blog.10ninox.com/wp-content/uploads/2008/10/image6.png"><img border="0" alt="Dell Inspiron Mini 12 vs Macbook Air" src="http://blog.10ninox.com/wp-content/uploads/2008/10/image-thumb3.png" width="235" height="140" /></a> </p>
<p>check out more pics @ <a target="_blank" href="http://blog.laptopmag.com/dell-inspiron-mini-12-first-impressions-the-600-macbook-air">LaptopMag.com</a></p>
<p>[via <a target="_blank" href="http://www.notebookreview.com/default.asp?newsID=4665">Notebookreview.com</a> &amp; <a target="_blank" href="http://blog.laptopmag.com/dell-inspiron-mini-12-first-impressions-the-600-macbook-air">LaptopMag.com</a>]</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~f/10ninox?a=ue96M"><img src="http://feeds.feedburner.com/~f/10ninox?i=ue96M" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/10ninox?a=wYNDm"><img src="http://feeds.feedburner.com/~f/10ninox?i=wYNDm" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/10ninox?a=oZ9mM"><img src="http://feeds.feedburner.com/~f/10ninox?i=oZ9mM" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/10ninox?a=hR7Em"><img src="http://feeds.feedburner.com/~f/10ninox?i=hR7Em" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://blog.10ninox.com/2008/10/27/netbook-notebook-gap-getting-darn-too-close-with-dell-mini-12/feed/</wfw:commentRss>
		<feedburner:origLink>http://blog.10ninox.com/2008/10/27/netbook-notebook-gap-getting-darn-too-close-with-dell-mini-12/</feedburner:origLink></item>
		<item>
		<title>Sharing Printer from 64-bit box to 32-bit clients</title>
		<link>http://feeds.feedburner.com/~r/10ninox/~3/417913317/</link>
		<comments>http://blog.10ninox.com/2008/10/11/sharing-printer-from-64-bit-box-to-32-bit-clients-2/#comments</comments>
		<pubDate>Sat, 11 Oct 2008 17:35:48 +0000</pubDate>
		<dc:creator>sipp11</dc:creator>
		
		<category><![CDATA[network]]></category>

		<category><![CDATA[software]]></category>

		<guid isPermaLink="false">http://blog.10ninox.com/2008/10/11/sharing-printer-from-64-bit-box-to-32-bit-clients-2/</guid>
		<description><![CDATA[Well, I was starting to turn all my Windows boxes to 64-bit&#8211;all Linux ones are 64-bit already. I expected to see an improvement, but yet to see in practice. Along the way to transform to 64-bit, I had a problem about printer sharing. By the fact that I had network attached printer, you might wonder [...]]]></description>
			<content:encoded><![CDATA[<p>Well, I was starting to turn all my Windows boxes to 64-bit&#8211;all Linux ones are 64-bit already. I expected to see an improvement, but yet to see in practice. Along the way to transform to 64-bit, I had a problem about printer sharing. By the fact that I had network attached printer, you might wonder why I need to share it again. If I told you here that my printer was HP, most of you guys might get it why I prefer to do this way.</p>
<ol>
<li>HP drivers are crap.</li>
<li>It comes with a lot of bloatwares.</li>
<li>Too many running processes required.</li>
</ol>
<p>Windows also doesn&#8217;t have currently HP printer driver, so I couldn&#8217;t print that easily. The advantage of this method is you could just add a shared printer with minimum driver installed on your workstation. Please share if you have a better way to do so.</p>
<p><img src="http://blog.10ninox.com/wp-content/uploads/2008/10/image1.png" border="0" alt="additional drivers" width="378" height="156" /></p>
<p>By the way, Microsoft put some trick making this more difficult than it should be. The idea is when you install the driver on the 64-bit box then share. This is simple. However, this will allow only 64-bit machine to use this shared printer since there is no 32-bit driver or any particular driver for your machine architecture. Simple solution is adding another architecture driver to that. That was an unexpected problem started.</p>
<p><img src="http://blog.10ninox.com/wp-content/uploads/2008/10/image3.png" border="0" alt="Windows Media (x86 processor)" width="435" height="228" /></p>
<ol>
<li>Add drivers, then it will ask for driver for the architecture you choose&#8211;32-bit in this case.</li>
<li>Browse for the 32-bit drivers.</li>
<li>Then it will ask for Windows Media (x86 processor) [ntprint.inf file]</li>
<li>What the heck is that??
<ul>
<li>I put VIsta setup disc</li>
<li>download new drivers</li>
<li>find the file in %windir%</li>
</ul>
</li>
</ol>
<p>Those above don&#8217;t help. So, how do we know where and what that files are. I just found that it was located in your x86 machine.</p>
<blockquote><p>%windir%\winsxs\x86_ntprint.inf_******************</p></blockquote>
<p>That&#8217;s where you need to point to or you can just copy that folder out to 64-bit. That would be fine as well. After this, you&#8217;ve done. Sit back and relax. All your machine will be able to use the shared printer seamlessly.</p>
<p>Thanks to the development of network, so that we can live our lives much more comfortable <img src='http://blog.10ninox.com/wp-includes/images/smilies/icon_razz.gif' alt=':-P' class='wp-smiley' /> </p>
<p><strong><span style="text-decoration: underline;">Note:</span></strong> For sharing printer from 32-bit box to 64-bit one, you just have to get the **_ntprint** folder from 64-bit machine, then add driver as procedure above. You will be all set. =)</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~f/10ninox?a=RFGqM"><img src="http://feeds.feedburner.com/~f/10ninox?i=RFGqM" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/10ninox?a=bIvem"><img src="http://feeds.feedburner.com/~f/10ninox?i=bIvem" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/10ninox?a=xEKuM"><img src="http://feeds.feedburner.com/~f/10ninox?i=xEKuM" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/10ninox?a=sCYCm"><img src="http://feeds.feedburner.com/~f/10ninox?i=sCYCm" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://blog.10ninox.com/2008/10/11/sharing-printer-from-64-bit-box-to-32-bit-clients-2/feed/</wfw:commentRss>
		<feedburner:origLink>http://blog.10ninox.com/2008/10/11/sharing-printer-from-64-bit-box-to-32-bit-clients-2/</feedburner:origLink></item>
		<item>
		<title>Lenovo IdeaPad Wallpaper</title>
		<link>http://feeds.feedburner.com/~r/10ninox/~3/411651865/</link>
		<comments>http://blog.10ninox.com/2008/10/05/lenovo-ideapad-wallpaper/#comments</comments>
		<pubDate>Sun, 05 Oct 2008 05:14:48 +0000</pubDate>
		<dc:creator>sipp11</dc:creator>
		
		<category><![CDATA[wallpaper]]></category>

		<guid isPermaLink="false">http://blog.10ninox.com/2008/10/05/lenovo-ideapad-wallpaper/</guid>
		<description><![CDATA[Yes, I know I just posted Dell&#8217;s ones minutes ago. But I can resist sharing this as well. They are so cool and this is the one I&#8217;m using right now. Lenovo provide such a good one here on Ideapad U110&#8211;a lovely ultraportable notebook. What I&#8217;m pretty sure of is you guys all would love [...]]]></description>
			<content:encoded><![CDATA[<p>Yes, I know I just posted Dell&#8217;s ones minutes ago. But I can resist sharing this as well. They are so cool and this is the one I&#8217;m using right now. Lenovo provide such a good one here on Ideapad U110&#8211;a lovely ultraportable notebook. What I&#8217;m pretty sure of is you guys all would love this set.</p>
<p><a href="http://blog.10ninox.com/wp-content/uploads/2008/10/ideapad-7-1920x1200.jpg" target=" "> <img style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="75" alt="Lenovo_Spring_W" src="http://blog.10ninox.com/wp-content/uploads/2008/10/ideapad-7-1920x1200-thumb.jpg" width="120" border="0" /></a> <a href="http://blog.10ninox.com/wp-content/uploads/2008/10/ideapad-8-1920x1200.jpg" target=" "> <img style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="75" alt="lenovo_Summer_W" src="http://blog.10ninox.com/wp-content/uploads/2008/10/ideapad-8-1920x1200-thumb.jpg" width="120" border="0" /></a> <a href="http://blog.10ninox.com/wp-content/uploads/2008/10/ideapad-3-1920x1200.jpg" target=" "> <img height="75" alt="Lenovo_Autumn_W" src="http://blog.10ninox.com/wp-content/uploads/2008/10/ideapad-3-1920x1200-thumb.jpg" width="120" border="0" /></a> <a href="http://blog.10ninox.com/wp-content/uploads/2008/10/ideapad-9-1920x1200.jpg" target=" "> <img style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="75" alt="Lenovo_Winter_W" src="http://blog.10ninox.com/wp-content/uploads/2008/10/ideapad-9-1920x1200-thumb.jpg" width="120" border="0" /></a> <a href="http://blog.10ninox.com/wp-content/uploads/2008/10/ideapad-1-1920x1200.jpg" target=" "> <img style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="75" alt="Lenovo1_W" src="http://blog.10ninox.com/wp-content/uploads/2008/10/ideapad-1-1920x1200-thumb.jpg" width="120" border="0" /></a> <a href="http://blog.10ninox.com/wp-content/uploads/2008/10/ideapad-2-1920x1200.jpg" target=" "> <img style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="75" alt="Lenovo2_W" src="http://blog.10ninox.com/wp-content/uploads/2008/10/ideapad-2-1920x1200-thumb.jpg" width="120" border="0" /></a> <a href="http://blog.10ninox.com/wp-content/uploads/2008/10/ideapad-4-1920x1200.jpg" target=" "> <img style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="75" alt="lenovo_Chr1_W" src="http://blog.10ninox.com/wp-content/uploads/2008/10/ideapad-4-1920x1200-thumb.jpg" width="120" border="0" /></a> <a href="http://blog.10ninox.com/wp-content/uploads/2008/10/ideapad-5-1920x1200.jpg" target=" "> <img style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="75" alt="lenovo_Chr2_W" src="http://blog.10ninox.com/wp-content/uploads/2008/10/ideapad-5-1920x1200-thumb.jpg" width="120" border="0" /></a> <a href="http://blog.10ninox.com/wp-content/uploads/2008/10/ideapad-6-1920x1200.jpg" target=" "> <img style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="75" alt="Lenovo_SF_W" src="http://blog.10ninox.com/wp-content/uploads/2008/10/ideapad-6-1920x1200-thumb.jpg" width="120" border="0" /></a></p>
<p>Theme of this set is seasons; first 4 wallpapers are Spring, Summer, Autumn, and Winter. Very nice indeed. As usual, you may click on the thumbnail for original size (1920px*1200px.) These are all wide screen version. Believe it or not, Lenovo are so kind to give us full screen version also. If you guys like it, just let me know. I just think that most of you guys all have wide screen monitor, so these are all you need. Unlike me, with my 4:3 screen on the great X61T.</p>
<p>ps. Please don&#8217;t do direct link to these wallpapers, if you do and I find, I may have to deactivate the links. Just link to this post, thanks a lot =)</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~f/10ninox?a=1bASM"><img src="http://feeds.feedburner.com/~f/10ninox?i=1bASM" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/10ninox?a=vbbYm"><img src="http://feeds.feedburner.com/~f/10ninox?i=vbbYm" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/10ninox?a=uTdjM"><img src="http://feeds.feedburner.com/~f/10ninox?i=uTdjM" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/10ninox?a=ICmpm"><img src="http://feeds.feedburner.com/~f/10ninox?i=ICmpm" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://blog.10ninox.com/2008/10/05/lenovo-ideapad-wallpaper/feed/</wfw:commentRss>
		<feedburner:origLink>http://blog.10ninox.com/2008/10/05/lenovo-ideapad-wallpaper/</feedburner:origLink></item>
		<item>
		<title>Dell Studio Wallpaper</title>
		<link>http://feeds.feedburner.com/~r/10ninox/~3/411627553/</link>
		<comments>http://blog.10ninox.com/2008/10/04/dell-studio-wallpaper/#comments</comments>
		<pubDate>Sun, 05 Oct 2008 04:29:11 +0000</pubDate>
		<dc:creator>sipp11</dc:creator>
		
		<category><![CDATA[wallpaper]]></category>

		<guid isPermaLink="false">http://blog.10ninox.com/2008/10/04/dell-studio-wallpaper/</guid>
		<description><![CDATA[Another good wallpaper from Dell; since our lives need something new to keep us fresh. Well, this might be a chance to add new wallpapers in your collection. I grabbed these from Dell Studio 15&#8211;some are old, traditional Dell; 3 are new, and they all are here.
  
Click them to see the original size [...]]]></description>
			<content:encoded><![CDATA[<p>Another good wallpaper from Dell; since our lives need something new to keep us fresh. Well, this might be a chance to add new wallpapers in your collection. I grabbed these from Dell Studio 15&#8211;some are old, traditional Dell; 3 are new, and they all are here.</p>
<p><a href="http://blog.10ninox.com/wp-content/uploads/2008/10/Hearts_1920x1200.jpg"><img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" src="http://blog.10ninox.com/wp-content/uploads/2008/10/hearts-1920x1200-thumb.jpg" border="0" alt="Hearts_1920x1200" width="150" height="94" /> </a><a href="http://blog.10ninox.com/wp-content/uploads/2008/10/Seagull_1920x1200.jpg"><img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" src="http://blog.10ninox.com/wp-content/uploads/2008/10/seagull-1920x1200-thumb.jpg" border="0" alt="Seagull_1920x1200" width="150" height="94" /> </a><a href="http://blog.10ninox.com/wp-content/uploads/2008/10/Tranportation_1920x1200.jpg"><img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" src="http://blog.10ninox.com/wp-content/uploads/2008/10/tranportation-1920x1200-thumb.jpg" border="0" alt="Tranportation_1920x1200" width="150" height="94" /></a></p>
<p>Click them to see the original size (1920px*1200px) and one more things, please don&#8217;t link to the Wallpapers directly&#8211;just link to this post. I know you guys don&#8217;t want to kill my bandwidth like when I shared Dell PRODUCT (RED).</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~f/10ninox?a=zPBFM"><img src="http://feeds.feedburner.com/~f/10ninox?i=zPBFM" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/10ninox?a=uXbXm"><img src="http://feeds.feedburner.com/~f/10ninox?i=uXbXm" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/10ninox?a=Ou6wM"><img src="http://feeds.feedburner.com/~f/10ninox?i=Ou6wM" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/10ninox?a=Bqzgm"><img src="http://feeds.feedburner.com/~f/10ninox?i=Bqzgm" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://blog.10ninox.com/2008/10/04/dell-studio-wallpaper/feed/</wfw:commentRss>
		<feedburner:origLink>http://blog.10ninox.com/2008/10/04/dell-studio-wallpaper/</feedburner:origLink></item>
		<item>
		<title>Missing Fingerprint software on your HP laptop</title>
		<link>http://feeds.feedburner.com/~r/10ninox/~3/406081672/</link>
		<comments>http://blog.10ninox.com/2008/09/29/missing-fingerprint-software-on-your-hp-laptop/#comments</comments>
		<pubDate>Mon, 29 Sep 2008 08:48:35 +0000</pubDate>
		<dc:creator>sipp11</dc:creator>
		
		<category><![CDATA[notebook]]></category>

		<category><![CDATA[software]]></category>

		<guid isPermaLink="false">http://blog.10ninox.com/2008/09/29/missing-fingerprint-software-on-your-hp-laptop/</guid>
		<description><![CDATA[It&#8217;s a weird issue since wouldn&#8217;t provide their fingerprint software in recovery partition although your system has fingerprint reader. And HP website doesn&#8217;t good at providing information about it that much. It&#8217;s intuitive and easy to find drivers enough for Windows, so it won&#8217;t bother you about missing any. However, after I had tried several [...]]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s a weird issue since wouldn&#8217;t provide their fingerprint software in recovery partition although your system has fingerprint reader. And HP website doesn&#8217;t good at providing information about it that much. It&#8217;s intuitive and easy to find drivers enough for Windows, so it won&#8217;t bother you about missing any. However, after I had tried several times, all drivers and apps available in the product page are not enough to make the machine perform as good as HP factory image. Maybe I miss something? But that should mean HP give me less info too <img src='http://blog.10ninox.com/wp-includes/images/smilies/icon_razz.gif' alt=':-P' class='wp-smiley' /> If you have any recommend, please share. I have tx2500z.</p>
<p><img height="121" alt="Digital Persona Fingerprint Reader" src="http://blog.10ninox.com/wp-content/uploads/2008/09/image7.png" width="240" align="right" border="0" /> Well, anyway, if you are restore your OS back with HP recovery partition or disc, you will not have Fingerprint Software with you and the thing is there are 2 different softwares available from HP; first is Bioscrypt VeriSoft Access Manager and another one is Digital Persona. Frankly you can use both of them&#8211;but should be only 1 at a time, ok? I believe that the first one is originally for older system (2007 or before) and the latter one is for newer one. I do recommend the 2nd one, it&#8217;s really good one. You can even save password for your IM or any programs since its logo would float almost all the time when there is password field show up.</p>
<p>Here is the link for <a href="http://h10025.www1.hp.com/ewfrf/wc/genericSoftwareDownloadIndex?cc=us&amp;dlc=en&amp;lc=en&amp;softwareitem=ob-49006-1&amp;jumpid=reg_R1002_USEN">Bioscrypt VeriSoft Access Manager</a> and surely this is for <a href="ftp://ftp.hp.com/pub/softpaq/sp37501-38000/sp37618.exe">Digital Persona</a>.</p>
<p>Have fun swipe your finger!!</p>
<p><u>Note</u>: if you are not yet doing restoration/clean installation, don&#8217;t forget to archive C:\SWSetup. That&#8217;s all you need&#8211;everything, all drivers and apps that you have since the first you got your machine.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~f/10ninox?a=jZCTL"><img src="http://feeds.feedburner.com/~f/10ninox?i=jZCTL" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/10ninox?a=eZSvl"><img src="http://feeds.feedburner.com/~f/10ninox?i=eZSvl" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/10ninox?a=nGHLL"><img src="http://feeds.feedburner.com/~f/10ninox?i=nGHLL" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/10ninox?a=zDgIl"><img src="http://feeds.feedburner.com/~f/10ninox?i=zDgIl" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://blog.10ninox.com/2008/09/29/missing-fingerprint-software-on-your-hp-laptop/feed/</wfw:commentRss>
		<feedburner:origLink>http://blog.10ninox.com/2008/09/29/missing-fingerprint-software-on-your-hp-laptop/</feedburner:origLink></item>
		<item>
		<title>Bypass Windows Vista login screen</title>
		<link>http://feeds.feedburner.com/~r/10ninox/~3/394022243/</link>
		<comments>http://blog.10ninox.com/2008/09/16/bypass-windows-vista-login-screen/#comments</comments>
		<pubDate>Tue, 16 Sep 2008 08:56:08 +0000</pubDate>
		<dc:creator>sipp11</dc:creator>
		
		<category><![CDATA[Vista]]></category>

		<guid isPermaLink="false">http://blog.10ninox.com/2008/09/16/bypass-windows-vista-login-screen/</guid>
		<description><![CDATA[If you prefer the fast way (less secure), Vista does provide an easy GUI for configure this.
&#160;
Here is the what you have to call. I just wonder why they don&#8217;t provide this in normal User Account page. Then you just to select the account you want to access automatically, then uncheck this:-
&#160;
It will ask you [...]]]></description>
			<content:encoded><![CDATA[<p>If you prefer the fast way (less secure), Vista does provide an easy GUI for configure this.</p>
<p><img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="96" alt="Vista: control userpassword2" src="http://blog.10ninox.com/wp-content/uploads/2008/09/image5.png" width="265" border="0" />&#160;</p>
<p>Here is the what you have to call. I just wonder why they don&#8217;t provide this in normal User Account page. Then you just to select the account you want to access automatically, then uncheck this:-</p>
<p><img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="111" alt="User Accounts" src="http://blog.10ninox.com/wp-content/uploads/2008/09/image6.png" width="459" border="0" />&#160;</p>
<p>It will ask you a password of the selected account. Then next time, you restart the computer, you will never have to put a password anymore <img src='http://blog.10ninox.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':-D' class='wp-smiley' /> </p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~f/10ninox?a=oTVvL"><img src="http://feeds.feedburner.com/~f/10ninox?i=oTVvL" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/10ninox?a=LxpGl"><img src="http://feeds.feedburner.com/~f/10ninox?i=LxpGl" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/10ninox?a=UHVsL"><img src="http://feeds.feedburner.com/~f/10ninox?i=UHVsL" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/10ninox?a=5RrMl"><img src="http://feeds.feedburner.com/~f/10ninox?i=5RrMl" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://blog.10ninox.com/2008/09/16/bypass-windows-vista-login-screen/feed/</wfw:commentRss>
		<feedburner:origLink>http://blog.10ninox.com/2008/09/16/bypass-windows-vista-login-screen/</feedburner:origLink></item>
		<item>
		<title>Disable Adobe Updater</title>
		<link>http://feeds.feedburner.com/~r/10ninox/~3/394012648/</link>
		<comments>http://blog.10ninox.com/2008/09/16/disable-adobe-updater/#comments</comments>
		<pubDate>Tue, 16 Sep 2008 08:45:59 +0000</pubDate>
		<dc:creator>sipp11</dc:creator>
		
		<category><![CDATA[after-works]]></category>

		<category><![CDATA[software]]></category>

		<guid isPermaLink="false">http://blog.10ninox.com/2008/09/16/disable-adobe-updater/</guid>
		<description><![CDATA[ This was not my issue until today. I just got my hand on tx2500z and as usual HP provides us tons of good &#38; crap pieces of software. I decided to live with this configuration for a while and see how HP manages on its own image. So that I could review it as [...]]]></description>
			<content:encoded><![CDATA[<p><img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="48" alt="image" src="http://blog.10ninox.com/wp-content/uploads/2008/09/image3.png" width="241" align="right" border="0" /> This was not my issue until today. I just got my hand on tx2500z and as usual HP provides us tons of good &amp; crap pieces of software. I decided to live with this configuration for a while and see how HP manages on its own image. So that I could review it as it really is out-of-the-box. However, one annoying thing I found so far was Adobe Updater from Acrobat Reader was popping up to download newer version all the time. It was quite a big file, so I could cancel it before it finished. By the way, after restarting it was still showing again and again.</p>
<p>So I needed to fix this so badly. The problem was Adobe Updater didn&#8217;t have a shortcut available for easy access. You guys might find this after completing first update and be able to disable it. But if you are not that patient, so you have to get into</p>
<blockquote><p>C:\Program Files\Common Files\Adobe\Updater5</p>
</blockquote>
<p>You will see <strong>AdobeUpdater.exe </strong>file which oddly have no beautiful icon for even regular size. Seems like Adobe doesn&#8217;t like us to find this really. When you open this little app, you have to click &quot;<em><strong>Preference</strong></em>&quot; to customize its behavior.</p>
<p><img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="140" alt="disable adobe updater" src="http://blog.10ninox.com/wp-content/uploads/2008/09/image4.png" width="499" border="0" /> </p>
<p>Once you uncheck this, Adobe Updater will never bother you no more.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~f/10ninox?a=scatL"><img src="http://feeds.feedburner.com/~f/10ninox?i=scatL" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/10ninox?a=Q990l"><img src="http://feeds.feedburner.com/~f/10ninox?i=Q990l" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/10ninox?a=wtNVL"><img src="http://feeds.feedburner.com/~f/10ninox?i=wtNVL" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/10ninox?a=fpQjl"><img src="http://feeds.feedburner.com/~f/10ninox?i=fpQjl" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://blog.10ninox.com/2008/09/16/disable-adobe-updater/feed/</wfw:commentRss>
		<feedburner:origLink>http://blog.10ninox.com/2008/09/16/disable-adobe-updater/</feedburner:origLink></item>
		<item>
		<title>Dropbox - first take</title>
		<link>http://feeds.feedburner.com/~r/10ninox/~3/388042567/</link>
		<comments>http://blog.10ninox.com/2008/09/09/dropbox-first-take/#comments</comments>
		<pubDate>Tue, 09 Sep 2008 21:47:50 +0000</pubDate>
		<dc:creator>sipp11</dc:creator>
		
		<category><![CDATA[software]]></category>

		<guid isPermaLink="false">http://blog.10ninox.com/2008/09/09/dropbox-first-take/</guid>
		<description><![CDATA[If you guys are familiar with Live Mesh but no need of remote connection what soever, this might catch your attention. Dropbox is basically an online storage service&#8211;2GB for now&#8211;which has cross-platform client running natively on Windows, Mac, and surprisingly Linux also. 
After couple days of trying it, it just works. There is no fancy [...]]]></description>
			<content:encoded><![CDATA[<p>If you guys are familiar with Live Mesh but no need of remote connection what soever<img height="82" alt="dropbox" src="http://blog.10ninox.com/wp-content/uploads/2008/09/image2.png" width="270" align="left" border="0" />, this might catch your attention. <a href="http://www.getdropbox.com/" target="_blank">Dropbox</a> is basically an online storage service&#8211;2GB for now&#8211;which has cross-platform client running natively on Windows, Mac, and surprisingly Linux also. </p>
<p>After couple days of trying it, it just works. There is no fancy feature or customized location yet. But it gets job done with less memory than Mesh, of course. It works flawlessly so far on my several PC and Mac. Since it&#8217;s only BETA, you will be expected to test its flow, report and suggest to the developer. If you guys would like to try, I have 10 invites available. =)</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~f/10ninox?a=KBKGL"><img src="http://feeds.feedburner.com/~f/10ninox?i=KBKGL" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/10ninox?a=LN6el"><img src="http://feeds.feedburner.com/~f/10ninox?i=LN6el" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/10ninox?a=UfbqL"><img src="http://feeds.feedburner.com/~f/10ninox?i=UfbqL" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/10ninox?a=rSkHl"><img src="http://feeds.feedburner.com/~f/10ninox?i=rSkHl" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://blog.10ninox.com/2008/09/09/dropbox-first-take/feed/</wfw:commentRss>
		<feedburner:origLink>http://blog.10ninox.com/2008/09/09/dropbox-first-take/</feedburner:origLink></item>
		<item>
		<title>Google Chrome: completing the circle of Google’s world</title>
		<link>http://feeds.feedburner.com/~r/10ninox/~3/381735335/</link>
		<comments>http://blog.10ninox.com/2008/09/02/google-chrome-completing-the-circle-of-googles-world/#comments</comments>
		<pubDate>Tue, 02 Sep 2008 21:56:49 +0000</pubDate>
		<dc:creator>sipp11</dc:creator>
		
		<category><![CDATA[Google]]></category>

		<guid isPermaLink="false">http://blog.10ninox.com/2008/09/02/google-chrome-completing-the-circle-of-googles-world/</guid>
		<description><![CDATA[
This might be the day Google trying to complete their circle after playing around web applications from the beginning. 
Google Chrome is the browser based on AppleWebkit, the core that drives Safari nowadays. It sure is the proved solid browser.
 
Now it&#8217;s only on Windows OS. I could tell that it&#8217;s surprisingly fast, clean and [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://blog.10ninox.com/wp-content/uploads/2008/09/image.png"><img border="0" alt="image" align="right" src="http://blog.10ninox.com/wp-content/uploads/2008/09/image-thumb.png" width="240" height="78" /></a>
<p>This might be the day Google trying to complete their circle after playing around web applications from the beginning. </p>
<p>Google Chrome is the browser based on AppleWebkit, the core that drives Safari nowadays. It sure is the proved solid browser.</p>
<p><a href="http://blog.10ninox.com/wp-content/uploads/2008/09/image1.png"><img border="0" alt="Google Chrome" src="http://blog.10ninox.com/wp-content/uploads/2008/09/image-thumb1.png" width="460" height="182" /></a> </p>
<p>Now it&#8217;s only on Windows OS. I could tell that it&#8217;s surprisingly fast, clean and nice UI. It&#8217;s also imported all my bookmarks from Firefox without a hitch. I&#8217;m pretty sure of that Google will release this on every OSes soon.</p>
<p>Now Google already moves to build its own platform. It just surprises me that they haven&#8217;t chosen Gecko as their platform after released so many add-ons for it. Probably it is way too many to be able to support them all [and other's too].</p>
<p>However, the only thing that keeps me using Firefox, instead of ie8 and others, is its add-ons!! Will see how Google will react on that issue.</p>
<p><a target="_blank" href="http://www.google.com/chrome">Try here!</a></p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~f/10ninox?a=SFNxL"><img src="http://feeds.feedburner.com/~f/10ninox?i=SFNxL" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/10ninox?a=AQqGl"><img src="http://feeds.feedburner.com/~f/10ninox?i=AQqGl" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/10ninox?a=DnixL"><img src="http://feeds.feedburner.com/~f/10ninox?i=DnixL" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/10ninox?a=zsD9l"><img src="http://feeds.feedburner.com/~f/10ninox?i=zsD9l" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://blog.10ninox.com/2008/09/02/google-chrome-completing-the-circle-of-googles-world/feed/</wfw:commentRss>
		<feedburner:origLink>http://blog.10ninox.com/2008/09/02/google-chrome-completing-the-circle-of-googles-world/</feedburner:origLink></item>
		<item>
		<title>Dell Studio Hybrid got reviewed.</title>
		<link>http://feeds.feedburner.com/~r/10ninox/~3/380618880/</link>
		<comments>http://blog.10ninox.com/2008/09/01/dell-studio-hybrid-got-reviewed/#comments</comments>
		<pubDate>Mon, 01 Sep 2008 17:05:26 +0000</pubDate>
		<dc:creator>sipp11</dc:creator>
		
		<category><![CDATA[desktop]]></category>

		<guid isPermaLink="false">http://blog.10ninox.com/2008/09/01/dell-studio-hybrid-got-reviewed/</guid>
		<description><![CDATA[Desktopreview.com has reviewed Dell Studio Hybrid, the tiny desktop which built by notebook&#8217;s part as expected. With the spec:-
CPU: Pentium Dual-core up to Core 2 Duo
Memory: 1-4GB (SODIMM)
Hard drive: upto 320GB (in fact, you could grab 2.5&#8243; 500GB HDD putting yourself)
Optical drive: CD/DVD burner and Blu-ray as an optional
Wireless: 802.11n (optional with PCIe)
Ports: 5*USB, 1*HDMI, [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://blog.10ninox.com/wp-content/uploads/2008/09/image.jpg" border="0" alt="image" width="285" height="127" align="right" /><a href="http://www.desktopreview.com/" target="_blank">Desktopreview.com</a> has reviewed Dell Studio Hybrid, the tiny desktop which built by notebook&#8217;s part as expected. With the spec:-</p>
<p><strong>CPU</strong>: Pentium Dual-core up to Core 2 Duo<br />
<strong>Memory</strong>: 1-4GB (SODIMM)<br />
<strong>Hard drive</strong>: upto 320GB (in fact, you could grab 2.5&#8243; 500GB HDD putting yourself)<br />
<strong>Optical drive:</strong> CD/DVD burner and Blu-ray as an optional<br />
<strong>Wireless:</strong> 802.11n (optional with PCIe)<br />
<strong>Ports</strong>: 5*USB, 1*HDMI, 1*DVI, 1*Gigabit LAN, 1*IEEE1394 4pin [no VGA port, sorry =)]</p>
<p>Also, you can grab the extra colorful cover for just $17 each. This is starting at $499 [$399 usually if promotion is concerned] I think it&#8217;s pretty nice. With a notebook standard, this little box is also sucking the juice less than regular desktop. Moreover, all parts is easily accessible and upgradable.</p>
<p><a href="http://blog.10ninox.com/wp-content/uploads/2008/09/image1.jpg"><img style="border-bottom: 0px; border-left: 0px; border-top: 0px; border-right: 0px" src="http://blog.10ninox.com/wp-content/uploads/2008/09/image-thumb.jpg" border="0" alt="dell studio hybrid" width="240" height="238" /></a> <a href="http://blog.10ninox.com/wp-content/uploads/2008/09/image2.jpg"><img style="border-right-width: 0px; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" src="http://blog.10ninox.com/wp-content/uploads/2008/09/image-thumb1.jpg" border="0" alt="dell studio hybrid" width="240" height="150" /></a> </p>
<p>Check out more detail <a href="http://www.desktopreview.com/default.asp?newsID=453" target="_blank">@ desktopreview.com</a></p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~f/10ninox?a=E2siL"><img src="http://feeds.feedburner.com/~f/10ninox?i=E2siL" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/10ninox?a=R1gbl"><img src="http://feeds.feedburner.com/~f/10ninox?i=R1gbl" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/10ninox?a=E5YcL"><img src="http://feeds.feedburner.com/~f/10ninox?i=E5YcL" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/10ninox?a=s3x9l"><img src="http://feeds.feedburner.com/~f/10ninox?i=s3x9l" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://blog.10ninox.com/2008/09/01/dell-studio-hybrid-got-reviewed/feed/</wfw:commentRss>
		<feedburner:origLink>http://blog.10ninox.com/2008/09/01/dell-studio-hybrid-got-reviewed/</feedburner:origLink></item>
		<item>
		<title>Viliv S7 — set your eyes on it!</title>
		<link>http://feeds.feedburner.com/~r/10ninox/~3/371513739/</link>
		<comments>http://blog.10ninox.com/2008/08/21/viliv-s7-set-your-eyes-on-it/#comments</comments>
		<pubDate>Fri, 22 Aug 2008 03:33:36 +0000</pubDate>
		<dc:creator>sipp11</dc:creator>
		
		<category><![CDATA[tablet PC]]></category>

		<guid isPermaLink="false">http://blog.10ninox.com/2008/08/21/viliv-s7-set-your-eyes-on-it/</guid>
		<description><![CDATA[After Kohjinsha SC3 got my attention from its design, it failed me completely when coming to battery life&#8211;2 hours or so. Now Viliv, the company I also never heard of, come up with Viliv S7 claiming that it would suck less juice and be able to achieve 7-9 hours on single charge!
 
And more importantly [...]]]></description>
			<content:encoded><![CDATA[<p>After <a href="http://blog.10ninox.com/2008/07/17/omg-what-a-cute-little-tablet-pc-kohjinsha-sc3/">Kohjinsha SC3</a> got my attention from its design, it failed me completely when coming to battery life&#8211;2 hours or so. Now Viliv, the company I also never heard of, come up with Viliv S7 claiming that it would suck less juice and be able to achieve 7-9 hours on single charge!</p>
<p><img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="145" alt="Viliv S7" src="http://blog.10ninox.com/wp-content/uploads/2008/08/image3.png" width="400" border="0" /> </p>
<p>And<strong> more importantly</strong> its form factor won any of their class, IMHO.</p>
<p><img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="181" alt="Viliv S7" src="http://blog.10ninox.com/wp-content/uploads/2008/08/image4.png" width="240" border="0" /> <a href="http://blog.10ninox.com/wp-content/uploads/2008/08/image5.png"><img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="184" alt="Viliv S7" src="http://blog.10ninox.com/wp-content/uploads/2008/08/image-thumb1.png" width="244" border="0" /></a> </p>
<p>Whoa! What an impressive first look from <a href="http://www.umpcportal.com/2008/08/viliv-s7-atom-based-umpc/" target="_blank">UMPCportal.com</a>. It&#8217;s Atom-based device, 1GB RAM, 30/60 GB HDD, 7&quot; touch screen, 1024px * 600px, 830g (including battery) I couldn&#8217;t ask for more.</p>
<p>In fact, I don&#8217;t believe if this baby could really achieve 7-9 hours life. But by this approximation, I just wish it would get up to 5-hour-battery-life and that would be enough for my need indeed. If the price is right (less than a grand, please), I won&#8217;t hesitate to grab one.</p>
<p>Stay tuned! this will be out around the beginning of next year. I hope this company could make this dream come true.</p>
<p>Check out more <a href="http://www.umpcportal.com/gallery/v/VilivS7/" target="_blank">gallery</a> &amp; info at <a href="http://www.umpcportal.com" target="_blank">UMPCportal.com</a></p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~f/10ninox?a=jw87L"><img src="http://feeds.feedburner.com/~f/10ninox?i=jw87L" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/10ninox?a=k7zjl"><img src="http://feeds.feedburner.com/~f/10ninox?i=k7zjl" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/10ninox?a=S0SKL"><img src="http://feeds.feedburner.com/~f/10ninox?i=S0SKL" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/10ninox?a=cD6Ml"><img src="http://feeds.feedburner.com/~f/10ninox?i=cD6Ml" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://blog.10ninox.com/2008/08/21/viliv-s7-set-your-eyes-on-it/feed/</wfw:commentRss>
		<feedburner:origLink>http://blog.10ninox.com/2008/08/21/viliv-s7-set-your-eyes-on-it/</feedburner:origLink></item>
		<item>
		<title>Hurting developer’s heart? STUPID MOVE from P*lm</title>
		<link>http://feeds.feedburner.com/~r/10ninox/~3/368823700/</link>
		<comments>http://blog.10ninox.com/2008/08/19/hurting-developers-heart-stupid-move-from-plm/#comments</comments>
		<pubDate>Tue, 19 Aug 2008 07:52:35 +0000</pubDate>
		<dc:creator>sipp11</dc:creator>
		
		<category><![CDATA[Palm]]></category>

		<category><![CDATA[opinion]]></category>

		<guid isPermaLink="false">http://blog.10ninox.com/2008/08/19/hurting-developers-heart-stupid-move-from-plm/</guid>
		<description><![CDATA[
All P*lm developers should be aware, P*lm will follow you guys and ask you &#8220;politely and forcibly by the power of the law&#8221; to drop off &#8220;p&#8221; word you are using as your trademark or whatsoever.
This is what Dmitry, one of the most talented P*lm OS developers, had faced. As a result, he had to [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://plmpowerups.com" target="_blank"><img style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" src="http://blog.10ninox.com/wp-content/uploads/2008/08/image2.png" border="0" alt="image" width="400" height="78" /></a></p>
<p>All P*lm developers should be aware, P*lm will follow you guys and ask you &#8220;politely and forcibly by the power of the law&#8221; to drop off &#8220;p&#8221; word you are using as your trademark or whatsoever.</p>
<p>This is what Dmitry, one of the most talented P*lm OS developers, had faced. As a result, he had to move his web site from <a href="http://palmpowerups.com">http://palmpowerups.com</a> [06/07/2005] to <a href="http://PlmPowerups.com">http://PlmPowerups.com</a> to avoid such a confusion (perhaps because P*lm couldn&#8217;t do any better than him?) and change the SDHC driver to &#8220;PlmSDHC&#8221; since it has no relation or approval from P*lm [of course, since they DON'T EVEN CARE all predecessors' product]</p>
<p>here is the first post of palmpowerups.com:-</p>
<blockquote><p><strong>Palm Powerups opens</strong></p>
<p>Palm Powerups opens today. This website will offer to you the software needed to make your palm more powerful, usable, interesting, and exciting. The currently available products include UDMH, warpSpeed, skinUI, Picsel Accelerator, and SysNfo. Of course you can expect many more great programs from Palm Powerups in the future, and your ideas are always welcome in the forums</p>
<p>Posted by dmitrygr on Tuesday, June 07 @ 16:50:43 MST (15 reads)<br />
(<strong>Read More&#8230;</strong> | Score: 5)</p></blockquote>
<p>I haven&#8217;t seen anything telling he worked at P*lm, just one developer that wanted to make Palm device more powerful! [which is a good thing for them, right? I'm not so sure if P*lm thought the same way]</p>
<p>P*lmRevolt [1/4/2006] and P*lmInsiderPro [03/20/2006] also got a notice and changed the names to pRevolt and ZInsider respectively. I don&#8217;t know what P*lm think really since all these programs and names has been up *PUBLICLY* for many years ; why now?</p>
<blockquote><p>&#8220;The letters P-A-L-M reflect a prized brand with significant customer awareness and earned loyalty,&#8221; said Ed Colligan, palmOne president and chief executive officer. &#8220;Innovation, power, ease of use, and elegance all are attributes of the brand, and we intend to invest to turn what is a strong name today into a household word synonymous with leadership in mobile computing.&#8221;</p></blockquote>
<p>What they are proud of when <a href="http://www.palm.com/us/company/pr/2005/052405b.html" target="_blank">getting it back from palmsource</a> [$30M -- 3.5 years installments from 5/24/2005]  &#8212; I just realized they haven&#8217;t paid off it yet! [few more months left =)]</p>
<p>Just putting a note &#8221; *** is not affiliated with or endorsed by P*lm Inc in anyway&#8221; isn&#8217;t enough? They support you &amp; they do everything to help you get better product but you just want to destroy that, what a shame! although you have all right to do so. How come you haven&#8217;t chose more mature way, e.g. releasing policy will effect the software released after this day or something or mentioned this at the first place. Oops I just realize that they probably use Garnet for a long long time without releasing newer OS, so they have to think of such a dated software as well.</p>
<p>It&#8217;s just plain STUPID. I think the doom day is closer than you think.</p>
<p>Go back to work, P*LM.</p>
<p><strong>update [2 weeks later]</strong>: Palm seemed to react to this issue as they should do firstly which is letting PalmPowerups.com continues its name. However, all product names which has this-4-letter-word still need  to abandon their name. I think they ain&#8217;t busy working Nova enough.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~f/10ninox?a=iPiML"><img src="http://feeds.feedburner.com/~f/10ninox?i=iPiML" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/10ninox?a=ip1Ll"><img src="http://feeds.feedburner.com/~f/10ninox?i=ip1Ll" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/10ninox?a=G3OzL"><img src="http://feeds.feedburner.com/~f/10ninox?i=G3OzL" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/10ninox?a=O3Nzl"><img src="http://feeds.feedburner.com/~f/10ninox?i=O3Nzl" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://blog.10ninox.com/2008/08/19/hurting-developers-heart-stupid-move-from-plm/feed/</wfw:commentRss>
		<feedburner:origLink>http://blog.10ninox.com/2008/08/19/hurting-developers-heart-stupid-move-from-plm/</feedburner:origLink></item>
		<item>
		<title>Clip-and-Go Dock with Logitech V550</title>
		<link>http://feeds.feedburner.com/~r/10ninox/~3/368065837/</link>
		<comments>http://blog.10ninox.com/2008/08/13/clip-and-go-dock-with-logitech-v550/#comments</comments>
		<pubDate>Thu, 14 Aug 2008 03:53:21 +0000</pubDate>
		<dc:creator>sipp11</dc:creator>
		
		<category><![CDATA[gadgets]]></category>

		<guid isPermaLink="false">http://blog.10ninox.com/2008/08/13/clip-and-go-dock-with-logitech-v550/</guid>
		<description><![CDATA[
new ideas from Logitech still continues. Now it&#8217;s innovative feature called Clip-and-Go
“To meet the demands associated with increased mobility, the V550 mouse offers a complete set of features to make it easier to use a mouse with a notebook when moving from the kitchen to the living room or from one’s desk to a meeting. [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://blog.10ninox.com/wp-content/uploads/2008/08/logitec-nano-clip-and-go.jpg"><img style="margin: 0px" src="http://blog.10ninox.com/wp-content/uploads/2008/08/logitec-nano-clip-and-go-thumb.jpg" border="0" alt="logitec-nano-clip-and-go" width="300" height="218" /></a></p>
<p>new ideas from Logitech still continues. Now it&#8217;s innovative feature called Clip-and-Go</p>
<blockquote><p>“To meet the demands associated with increased mobility, the V550 mouse offers a complete set of features to make it easier to use a mouse with a notebook when moving from the kitchen to the living room or from one’s desk to a meeting. Now, you won’t have to choose between grabbing your mouse or a cup of coffee.”</p></blockquote>
<p>It&#8217;s real nice idea here. But wait! not only is this new feature, but shape &amp; hyper-fast scrolling are also coming to Vxxx series. In addition, the battery life is extended to 1 and a half year. With the MSRP @59.99. I hope Vx series will be updated to make a distinct pretty soon.</p>
<p>This will hit the store around late this month! Stay tuned!</p>
<p>[via <a href="http://www.engadget.com/2008/08/13/logitechs-v550-nano-clip-and-go-mouse-with-18-months-of-go/" target="_blank">Engadget</a>]</p>
<p><span style="color: #0000ff;"><em><strong>Added [8/17/2008</strong><strong>]: </strong></em></span>the way it hangs on the lid is here and there will be two colors available.</p>
<p><img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" src="http://blog.10ninox.com/wp-content/uploads/2008/08/image1.png" border="0" alt="Logitech V550 bottom" width="157" height="240" /> <a href="http://blog.10ninox.com/wp-content/uploads/2008/08/image.png"><img style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" src="http://blog.10ninox.com/wp-content/uploads/2008/08/image-thumb.png" border="0" alt="V550" width="350" height="195" /></a></p>
<p>And this model has been up on <a href="http://www.logitech.com/index.cfm/mice_pointers/mice/devices/4611&amp;cl=us,en" target="_blank">Logitech.com</a> already!</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~f/10ninox?a=FtPrL"><img src="http://feeds.feedburner.com/~f/10ninox?i=FtPrL" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/10ninox?a=g0Ojl"><img src="http://feeds.feedburner.com/~f/10ninox?i=g0Ojl" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/10ninox?a=v61aL"><img src="http://feeds.feedburner.com/~f/10ninox?i=v61aL" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/10ninox?a=8WNYl"><img src="http://feeds.feedburner.com/~f/10ninox?i=8WNYl" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://blog.10ninox.com/2008/08/13/clip-and-go-dock-with-logitech-v550/feed/</wfw:commentRss>
		<feedburner:origLink>http://blog.10ninox.com/2008/08/13/clip-and-go-dock-with-logitech-v550/</feedburner:origLink></item>
		<item>
		<title>Is Dell 90W adapter fragile?</title>
		<link>http://feeds.feedburner.com/~r/10ninox/~3/368065838/</link>
		<comments>http://blog.10ninox.com/2008/08/07/is-dell-90w-adapter-fragile/#comments</comments>
		<pubDate>Thu, 07 Aug 2008 10:15:07 +0000</pubDate>
		<dc:creator>sipp11</dc:creator>
		
		<category><![CDATA[notebook]]></category>

		<guid isPermaLink="false">http://blog.10ninox.com/2008/08/07/is-dell-90w-adapter-fragile/</guid>
		<description><![CDATA[ I don&#8217;t know whether or not this is widespread problem, but I could find people who face this situation easily with a single search. The same applies to one of my friends; she said that she has this problem with previous and the current machine. For the first machine, she just left behind. However, [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://blog.10ninox.com/wp-content/uploads/2008/08/dell-90w.png" target="_blank"><img src="http://blog.10ninox.com/wp-content/uploads/2008/08/dell-90w-thumb.png" border="0" alt="dell-90w-issue" width="300" height="111" align="right" /></a> I don&#8217;t know whether or not this is widespread problem, but I could find people who face this situation easily with a single search. The same applies to one of my friends; she said that she has this problem with previous and the current machine. For the first machine, she just left behind. However, she brought this to me this time.</p>
<p><img src="http://blog.10ninox.com/wp-content/uploads/2008/08/windowslivewriterisdell90wadapterfragile-143e1snv10422-1.jpg" border="0" alt="The Dell AC power adapter type cannot be determined" width="480" height="360" /></p>
<blockquote><p>The AC power adapter type cannot be determined. Your system will operate slower and battery will not charge.</p></blockquote>
<p>It&#8217;s what you see above; this machine was locked to run as slow as it could&#8211;always 800MHz instead of 1.73Ghz. Whether the adapter couldn&#8217;t provide enough juice or the DC jack on this board is malfunction was possible here. It was really hard to decide if you didn&#8217;t have a spare adapter to test. Therefore, it left me no choice but buying a new adapter to test. Luckily Dell adapter was cheap =) only $28+$9 shipping from portabledetails.com and it took 3 days to arrive.</p>
<p>After I got a replacement&#8211;new one has a ground line as a plus, Dell probably realized that laptop case was not the best place as a ground (electrical charge was noticeable on the chassis when I put the old adapter.)</p>
<p><a href="http://blog.10ninox.com/wp-content/uploads/2008/08/windowslivewriterisdell90wadapterfragile-143e1snv10433.jpg" target="_blank"><img style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" src="http://blog.10ninox.com/wp-content/uploads/2008/08/windowslivewriterisdell90wadapterfragile-143e1snv10433-thumb.jpg" border="0" alt="adapter 90W pa-10" width="150" height="112" /></a> <a href="http://blog.10ninox.com/wp-content/uploads/2008/08/windowslivewriterisdell90wadapterfragile-143e1snv10439.jpg" target="_blank"><img style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" src="http://blog.10ninox.com/wp-content/uploads/2008/08/windowslivewriterisdell90wadapterfragile-143e1snv10439-thumb.jpg" border="0" alt="adapter 90W pa-10" width="150" height="112" /></a> <a href="http://blog.10ninox.com/wp-content/uploads/2008/08/windowslivewriterisdell90wadapterfragile-143e1snv10444.jpg" target="_blank"><img style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" src="http://blog.10ninox.com/wp-content/uploads/2008/08/windowslivewriterisdell90wadapterfragile-143e1snv10444-thumb.jpg" border="0" alt="adapter 90W pa-10" width="150" height="112" /></a></p>
<p>Soon after I popped up new adapter, the Inspiron 9400 was coming alive again; battery was charging immediately and it sucks full 90W&#8211;Kill a Watt meter told me. It&#8217;s really surprise that this 17&#8243; laptop draws power even more than my desktop!</p>
<p>Briefly, this machine is only 1 and a half years old, and surely out of warranty. If you have this problem and it&#8217;s in warranty, Dell should not have any problem replacing the broken adapter for sure. In fact, this adapter basically should last longer than the laptop itself. I really have no clue how Dell took care of this design &amp; manufacturer at first place since I never heard this problem with another brand yet. Maybe that&#8217;s just me <img src='http://blog.10ninox.com/wp-includes/images/smilies/icon_razz.gif' alt=':-P' class='wp-smiley' /> </p>
<p><span style="text-decoration: underline;">Note</span>: 90W draw occurs only when you have almost empty battery and/or run this machine simultaneously. 40-60W is a regular power draw for normal condition.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~f/10ninox?a=xF7qL"><img src="http://feeds.feedburner.com/~f/10ninox?i=xF7qL" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/10ninox?a=wHo0l"><img src="http://feeds.feedburner.com/~f/10ninox?i=wHo0l" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/10ninox?a=bW5iL"><img src="http://feeds.feedburner.com/~f/10ninox?i=bW5iL" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/10ninox?a=xoeel"><img src="http://feeds.feedburner.com/~f/10ninox?i=xoeel" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://blog.10ninox.com/2008/08/07/is-dell-90w-adapter-fragile/feed/</wfw:commentRss>
		<feedburner:origLink>http://blog.10ninox.com/2008/08/07/is-dell-90w-adapter-fragile/</feedburner:origLink></item>
		<item>
		<title>Knol - Wikipedia killer?</title>
		<link>http://feeds.feedburner.com/~r/10ninox/~3/368065839/</link>
		<comments>http://blog.10ninox.com/2008/07/24/knol-wikipedia-killer/#comments</comments>
		<pubDate>Thu, 24 Jul 2008 07:34:09 +0000</pubDate>
		<dc:creator>sipp11</dc:creator>
		
		<category><![CDATA[misc]]></category>

		<guid isPermaLink="false">http://blog.10ninox.com/2008/07/24/knol-wikipedia-killer/</guid>
		<description><![CDATA[ This is another try from Google to control all over the Internet. Creating Knol&#8211;basically Wikipedia made by Google&#8211;which you could write anything you know as a knowledge base controlling &#38; filtering by others.
What really differ from Wikipedia is Google needs you to use your real name instead of &#34;anonymous&#34; you found in Wikipedia. In [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://knol.google.com" target="_blank"><img height="381" alt="Knol by Google" src="http://blog.10ninox.com/wp-content/uploads/2008/07/image21.png" width="400" align="left" border="0" /></a> This is another try from Google to control all over the Internet. Creating <a href="http://knol.google.com" target="_blank">Knol</a>&#8211;basically Wikipedia made by Google&#8211;which you could write anything you know as a knowledge base controlling &amp; filtering by others.</p>
<p>What really differ from Wikipedia is Google needs you to use your real name instead of &quot;anonymous&quot; you found in Wikipedia. In my point of view, it&#8217;s just better to put your real name in order to make you feel more responsible for what you write. However, I don&#8217;t know how Knol will go since it&#8217;s going to have a tough fight with a very large existed Wikipedia community. By the way, there will be only positive things come up after this fight&#8211;a lot more stuffs to make people more <em>knowledgeable</em>. Keep reading!</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~f/10ninox?a=VRIGL"><img src="http://feeds.feedburner.com/~f/10ninox?i=VRIGL" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/10ninox?a=3Ao6l"><img src="http://feeds.feedburner.com/~f/10ninox?i=3Ao6l" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/10ninox?a=GwtKL"><img src="http://feeds.feedburner.com/~f/10ninox?i=GwtKL" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/10ninox?a=CZebl"><img src="http://feeds.feedburner.com/~f/10ninox?i=CZebl" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://blog.10ninox.com/2008/07/24/knol-wikipedia-killer/feed/</wfw:commentRss>
		<feedburner:origLink>http://blog.10ninox.com/2008/07/24/knol-wikipedia-killer/</feedburner:origLink></item>
		<item>
		<title>OMG! What a cute little tablet PC–Kohjinsha SC3</title>
		<link>http://feeds.feedburner.com/~r/10ninox/~3/368065840/</link>
		<comments>http://blog.10ninox.com/2008/07/17/omg-what-a-cute-little-tablet-pc-kohjinsha-sc3/#comments</comments>
		<pubDate>Thu, 17 Jul 2008 09:28:22 +0000</pubDate>
		<dc:creator>sipp11</dc:creator>
		
		<category><![CDATA[tablet PC]]></category>

		<guid isPermaLink="false">http://blog.10ninox.com/2008/07/17/omg-what-a-cute-little-tablet-pc-kohjinsha-sc3/</guid>
		<description><![CDATA[
Well, I am not sure whether this should be UMPC or tablet PC. Actually, it should be something in between. However, pocketables.net got a review of this baby which you really have to check it out.
Brief spec:
CPU: Intel Atom Z520 Silverthorne 1.33GHz (single-core, hyper-threading)
Chipset: Intel SCH US15W (Poulsbo)
RAM: 2GB DDR2-533 (1GB standard, upgradeable)
OS: Windows Vista [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://blog.10ninox.com/wp-content/uploads/2008/07/image15.png"><img style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" src="http://blog.10ninox.com/wp-content/uploads/2008/07/image-thumb13.png" border="0" alt="image" width="240" height="192" align="right" /></a></p>
<p>Well, I am not sure whether this should be UMPC or tablet PC. Actually, it should be something in between. However, <a href="http://www.pocketables.net/2008/07/review-kohjinsh.html" target="_blank">pocketables.net</a> got <a href="http://www.pocketables.net/2008/07/review-kohjinsh.html" target="_blank">a review of this baby</a> which you really have to check it out.</p>
<p><span style="text-decoration: underline;"><em>Brief spec:</em></span></p>
<p><em>CPU</em>: Intel Atom Z520 Silverthorne 1.33GHz (single-core, hyper-threading)<br />
<em>Chipset</em>: Intel SCH US15W (Poulsbo)<br />
<em>RAM</em>: 2GB DDR2-533 (1GB standard, upgradeable)<br />
<em>OS</em>: Windows Vista Home Premium<br />
<em>Hard drive</em>: 60GB<br />
<em>Display</em>: 7” swivel touch-screen (1024 x 600)<br />
<em>Wireless</em>: 802.11b/g, [Bluetooth 2.0+EDR, GPS]*, 1seg tuner<br />
<em>Size</em>: 7.44&#8243; x 6.10&#8243; x 1.00&#8243;-1.30&#8243;<br />
<em>Weight</em>: 1.76 lbs.<br />
<em>Colors</em>: Black or white<br />
<em>Price</em>: around $1,000 [this is not Netbook indeed]<br />
*[optional]</p>
<p>It&#8217;s smaller than Eee PC, but much more interesting since its screen resolution is quite large and more importantly, it&#8217;s a swivel screen!! I do hope it will ink as good as Fujitsu P16xx or as same as Samsung Q1&#8211;that should be alright.</p>
<blockquote><p><strong>According to Jenn in the review&#8217;s comment</strong></p>
<p><strong>Inking </strong></p>
<p>Inking on the SC3 in portrait and landscape slate mode is actually pretty good. The display is a passive touchscreen, but it&#8217;s not overly sensitive. It responds to stylus taps and fingernails immediately but will only register fingertaps when done deliberately.</p>
<p>Handwriting recognition through the Tablet PC Input Panel is great. I&#8217;m not an inker, so writing on the screen feels unnatural to me. I know there isn&#8217;t exactly a &#8220;right&#8221; way to ink, but I&#8217;m pretty sure seasoned tablet folk would notice how awkward I am. Even so, the SC3 recognized every single word I wrote.</p>
<p>Writing directly on the entire screen through Windows Journal is not as great, but still quite good. The screen seems able to withstand light palm touches; vectoring is only an issue with heavy palms and when that sharpish bone right above the wrist taps it.</p>
<p>Posted by <a href="http://www.typepad.com/t/comments?__mode=red&amp;user_id=1084808&amp;id=122608666">Jenn</a> | 01:13 PM on <a href="http://www.pocketables.net/2008/07/review-kohjinsh.html#comment-122608666">Jul 16, 2008</a></p></blockquote>
<p><a href="http://blog.10ninox.com/wp-content/uploads/2008/07/image16.png"><img src="http://blog.10ninox.com/wp-content/uploads/2008/07/image-thumb14.png" border="0" alt="HTC shift vs Kohjinsha SC3" width="220" height="100" /></a> <a href="http://blog.10ninox.com/wp-content/uploads/2008/07/image17.png"><img src="http://blog.10ninox.com/wp-content/uploads/2008/07/image-thumb15.png" border="0" alt="Fujitsu U810 vs Kohjinsha SC3" width="205" height="100" /></a> <a href="http://blog.10ninox.com/wp-content/uploads/2008/07/image18.png"><img src="http://blog.10ninox.com/wp-content/uploads/2008/07/image-thumb16.png" border="0" alt="image" width="232" height="144" /></a> <a href="http://blog.10ninox.com/wp-content/uploads/2008/07/image19.png"><img src="http://blog.10ninox.com/wp-content/uploads/2008/07/image-thumb17.png" border="0" alt="image" width="205" height="144" /></a></p>
<p><a href="http://www.pocketables.net/2008/07/review-kohjinsh.html" target="_blank">Full review @ pocketables.net</a>!</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~f/10ninox?a=beKDL"><img src="http://feeds.feedburner.com/~f/10ninox?i=beKDL" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/10ninox?a=41pPl"><img src="http://feeds.feedburner.com/~f/10ninox?i=41pPl" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/10ninox?a=QUQoL"><img src="http://feeds.feedburner.com/~f/10ninox?i=QUQoL" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/10ninox?a=QIKLl"><img src="http://feeds.feedburner.com/~f/10ninox?i=QIKLl" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://blog.10ninox.com/2008/07/17/omg-what-a-cute-little-tablet-pc-kohjinsha-sc3/feed/</wfw:commentRss>
		<feedburner:origLink>http://blog.10ninox.com/2008/07/17/omg-what-a-cute-little-tablet-pc-kohjinsha-sc3/</feedburner:origLink></item>
		<item>
		<title>All new ThinkPad &amp; IdeaPad from Lenovo</title>
		<link>http://feeds.feedburner.com/~r/10ninox/~3/368065841/</link>
		<comments>http://blog.10ninox.com/2008/07/15/all-new-thinkpad-ideapad-from-lenovo/#comments</comments>
		<pubDate>Tue, 15 Jul 2008 05:56:17 +0000</pubDate>
		<dc:creator>sipp11</dc:creator>
		
		<category><![CDATA[ThinkPad]]></category>

		<category><![CDATA[notebook]]></category>

		<guid isPermaLink="false">http://blog.10ninox.com/2008/07/15/all-new-thinkpad-ideapad-from-lenovo/</guid>
		<description><![CDATA[Finally It&#8217;s the time for Thinkpad 6x series to go since it has been out for a few years now. Yes, the newcoming Thinkpad is still Thinkpad&#8211;you know that its design will rather be evolution than revolution and IdeaPad will still follow the same old design. What you are likely to get now is 
 [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://blog.10ninox.com/wp-content/uploads/2008/07/image6.png"><img height="140" alt="X200" src="http://blog.10ninox.com/wp-content/uploads/2008/07/image-thumb3.png" width="184" align="right" border="0" /></a>Finally It&#8217;s the time for Thinkpad 6x series to go since it has been out for a few years now. Yes, the newcoming Thinkpad is still Thinkpad&#8211;you know that its design will rather be evolution than revolution and IdeaPad will still follow the same old design. What you are likely to get now is </p>
<p> X200 will be the successor of X61 with 0.8&quot; think design likely to be the same footprint as X300 and more interestingly it will start at $1,199 with 11.6&quot; by 8.3&quot; by 0.73&quot;-0.8&quot; &amp; only 2.93 lbs. <em>I can&#8217;t wait to see X200 Tablet here.</em></p>
<p><a href="http://blog.10ninox.com/wp-content/uploads/2008/07/image7.png"><img height="129" alt="SL series" src="http://blog.10ninox.com/wp-content/uploads/2008/07/image-thumb4.png" width="500" border="0" /></a> </p>
<p>SL series will debut for small business section; from SL300 (13.3&quot;), SL400 (14&quot;), and SL500 (15&quot;); $699-$1199 price range; HDMI, Blu-ray, 3G, and WiMAX as optional. I guess this would be in the same market as Dell Vostro series.</p>
<p><a href="http://blog.10ninox.com/wp-content/uploads/2008/07/image8.png"><img height="108" alt="W500" src="http://blog.10ninox.com/wp-content/uploads/2008/07/image-thumb5.png" width="140" border="0" /></a> </p>
<p>W series is another new series here separating form T series with an ability to switch back and forth between ATi Mobility FireGL and integrated one.</p>
<p><a href="http://blog.10ninox.com/wp-content/uploads/2008/07/image9.png"><img height="120" alt="T400" src="http://blog.10ninox.com/wp-content/uploads/2008/07/image-thumb6.png" width="120" border="0" /></a> <a href="http://blog.10ninox.com/wp-content/uploads/2008/07/image10.png"><img height="120" alt="T500" src="http://blog.10ninox.com/wp-content/uploads/2008/07/image-thumb7.png" width="132" border="0" /></a> </p>
<p>T400 and T500 will replace T61, similarly to W series w/o switchable graphic card.</p>
<p><a href="http://blog.10ninox.com/wp-content/uploads/2008/07/image11.png"><img height="120" alt="R400" src="http://blog.10ninox.com/wp-content/uploads/2008/07/image-thumb8.png" width="120" border="0" /></a> <a href="http://blog.10ninox.com/wp-content/uploads/2008/07/image12.png"><img height="120" alt="R500" src="http://blog.10ninox.com/wp-content/uploads/2008/07/image-thumb9.png" width="140" border="0" /></a> </p>
<p>R400 &amp; R500 will be the budget series as same as R is.</p>
<p>For IdeaPad, there will be 4 new models as well. Quite a lot for Lenovo, huh?</p>
<p><a href="http://blog.10ninox.com/wp-content/uploads/2008/07/image13.png"><img height="120" alt="U330" src="http://blog.10ninox.com/wp-content/uploads/2008/07/image-thumb10.png" width="191" border="0" /></a>&#160; </p>
<p>U330 will be a bigger sibling of fabulous U110 with a little over 4 lbs and switchable graphic cards. Quite interesting really.</p>
<p><a href="http://blog.10ninox.com/wp-content/uploads/2008/07/image14.png"><img height="120" alt="Y430" src="http://blog.10ninox.com/wp-content/uploads/2008/07/image-thumb11.png" width="116" border="0" /><img height="120" alt="Y430" src="http://blog.10ninox.com/wp-content/uploads/2008/07/image-thumb12.png" width="189" border="0" /> </a></p>
<p>Y-series will unleash Y430, Y530 and Y730 as 14&quot;, 15&quot; and 17&quot; model respectively</p>
<p>They all are based on Intel Centrino 2 platform (aka. Montevina) which will utilize 1066 MT/s FSB and better RAM than DDR2-667 that we all have in Santa Rosa platform&#8211;that includes DDR2-800, DDR3-800, DDR3-1066, and DDR3-1333. It also will support DisplayPort&#8211;new digital display interface&#8211;along with full supplemental support of HDMI, DVI, and VGA standards and mini-PCIe adapter as well. For integrated graphic card, it will be X4500. We will see how this compete with AMD Puma platform. I bet Intel will win over everything but graphic card, which might be the most important factor. Stay tuned.</p>
<p>[via <a href="http://www.engadget.com/" target="_blank">Engadgat</a>, <a href="http://gizmodo.com" target="_blank">Gizmodo</a>, and <a href="http://news.yahoo.com/s/pcworld/20080715/tc_pcworld/148410" target="_blank">Yahoo! news</a>]</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~f/10ninox?a=bl2jL"><img src="http://feeds.feedburner.com/~f/10ninox?i=bl2jL" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/10ninox?a=upODl"><img src="http://feeds.feedburner.com/~f/10ninox?i=upODl" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/10ninox?a=1LWXL"><img src="http://feeds.feedburner.com/~f/10ninox?i=1LWXL" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/10ninox?a=5To4l"><img src="http://feeds.feedburner.com/~f/10ninox?i=5To4l" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://blog.10ninox.com/2008/07/15/all-new-thinkpad-ideapad-from-lenovo/feed/</wfw:commentRss>
		<feedburner:origLink>http://blog.10ninox.com/2008/07/15/all-new-thinkpad-ideapad-from-lenovo/</feedburner:origLink></item>
	</channel>
</rss>
