<?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>General news around the Internet</title>
	<atom:link href="http://news.answers.tw/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://news.answers.tw</link>
	<description>Just another WordPress weblog</description>
	<lastBuildDate>Tue, 22 Jun 2010 10:26:58 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Silverlight vs. Flash</title>
		<link>http://news.answers.tw/?p=459</link>
		<comments>http://news.answers.tw/?p=459#comments</comments>
		<pubDate>Tue, 22 Jun 2010 10:26:58 +0000</pubDate>
		<dc:creator>Tommy</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[.NET]]></category>
		<category><![CDATA[Adobe]]></category>
		<category><![CDATA[application]]></category>
		<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[facebook]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[rich]]></category>
		<category><![CDATA[SDK]]></category>
		<category><![CDATA[Silverlight]]></category>

		<guid isPermaLink="false">http://news.answers.tw/?p=459</guid>
		<description><![CDATA[A handy SDK for Facebook apps: www.microsoft.com/facebooksdk
In my Master&#8217;s thesis I used Adobe Flash (AS3) and creating games is quite easy in Flash. It&#8217;s an ECMA language as is Java, so it&#8217;s easy to work with. On the other hand the backend integration is quite tricky. Adobe Flash Media Server is not free, and the [...]]]></description>
			<content:encoded><![CDATA[<p>A handy SDK for Facebook apps: www.microsoft.com/facebooksdk</p>
<p>In my Master&#8217;s thesis I used Adobe Flash (AS3) and creating games is quite easy in Flash. It&#8217;s an ECMA language as is Java, so it&#8217;s easy to work with. On the other hand the backend integration is quite tricky. Adobe Flash Media Server is not free, and the universities don&#8217;t have licenses for it either. That caused me a lot of problems which were learning experiences for me, but figuring out which open source projects would work was not related to the learning goals I had been trying to achieve with my interactive educational platform. It would be much easier to use .NET development through the entire project than try to provide Bridges between different programming languages through socket programming.</p>
<p>Since there is already guides about ASP.NET development and Facebook, in my opinion it will be easiest to integrate Silverlight with that. Microsoft provides a number of free downloads and free licenses for university students including Visual Studio, Windows Server 2008 R2, SQL Server 2008, etc. through the official Microsoft student website www.dreamspark.com, so it&#8217;s easy for student projects to get access to their products. Also, the really interesting thing about using Silverlight for your Facebook project would be that it would also work with the new Windows Phone 7 platform that will be released later in 2010.</p>
]]></content:encoded>
			<wfw:commentRss>http://news.answers.tw/?feed=rss2&amp;p=459</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Compiling OpenCV 2.0 with Visual Studio 2010</title>
		<link>http://news.answers.tw/?p=457</link>
		<comments>http://news.answers.tw/?p=457#comments</comments>
		<pubDate>Sat, 19 Jun 2010 10:24:31 +0000</pubDate>
		<dc:creator>Tommy</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Research]]></category>
		<category><![CDATA[2010]]></category>
		<category><![CDATA[back_inserter]]></category>
		<category><![CDATA[OpenCV]]></category>
		<category><![CDATA[videoInput]]></category>
		<category><![CDATA[Visual Studio]]></category>

		<guid isPermaLink="false">http://news.answers.tw/?p=457</guid>
		<description><![CDATA[I had a couple of troubles setting up OpenCV 2.0 in Microsoft Visual Studio 2010. I simply updated the working build from VS 2008. It had been working fine. So the first thing I found out that there was an error with &#8220;std::back_inserter&#8221;. The problem is that it was part of the standard package, but now [...]]]></description>
			<content:encoded><![CDATA[<p>I had a couple of troubles setting up OpenCV 2.0 in Microsoft Visual Studio 2010. I simply updated the working build from VS 2008. It had been working fine. So the first thing I found out that there was an error with <span style="font-family: Consolas; font-size: x-small;">&#8220;std::back_inserter&#8221;</span>. The problem is that it was part of the standard package, but now it&#8217;s not. This trouble affects two files: &#8220;cvmodelest.ccp&#8221; and cvhog.cpp&#8221; so it&#8217;s easily cured by adding <span style="font-family: Consolas; color: #a31515; font-size: x-small;"><span style="font-family: Consolas; color: #a31515; font-size: x-small;"></span></span></p>
<blockquote><p>#include &lt;iterator&gt; </p></blockquote>
<p>to <span style="font-family: Consolas; color: #a31515; font-size: x-small;"><span style="font-family: Consolas; color: #a31515; font-size: x-small;"><span style="font-family: Consolas; color: #a31515; font-size: x-small;">cv.h</span></span></span>. somewhere around line 60.</p>
<p>Another problem I encountered was a crash with videoInput.lib. It seems that it&#8217;s been compiled with VS2005 and it&#8217;s source code is not included. So with a bit of research I found that it&#8217;s not exactly a necessary thing to include anyway, so I followed the instructions:</p>
<p><a href="http://www.opencv.org.cn/forum/viewtopic.php?f=1&amp;t=9199">http://www.opencv.org.cn/forum/viewtopic.php?f=1&amp;t=9199</a></p>
<blockquote>
<div>
<p># On Windows: enabling the VideoInput library:</p>
<p>The libvideoInput.a library file provided by Willow Garage was built with the old SJLJ exception handling method. Therefore, you cannot link against it using compilers that use the new DWARF-2 exception handling method like MinGW 4.4.x, unless you rebuild the libvideoInput.a file using MinGW. The best bet for compilers using DWARF-2 is not to use VideoInput at all. This can be done by taking the following step:</p>
<p>1. Comment the line containing &#8220;#define HAVE_VIDEOINPUT 1&#8243; (i.e. near line 101 or 105), in file src/highgui/_highgui.h.</p>
<p>In contrast, for old compilers using SJLJ like TDM, to have VideoInput included in OpenCV 2.0:</p>
<p>1. Edit file src/highgui/CMakeLists.txt<br />
2. At line 199, insert &#8221; ole32 oleaut32 uuid&#8221; at the end of the list of libraries to be linked against (i.e. after &#8220;videoInput strmiids&#8221;). The developers have forgotten to insert them.</p>
</div>
</blockquote>
]]></content:encoded>
			<wfw:commentRss>http://news.answers.tw/?feed=rss2&amp;p=457</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Create new Froyo Virtual Device for Nexus One</title>
		<link>http://news.answers.tw/?p=450</link>
		<comments>http://news.answers.tw/?p=450#comments</comments>
		<pubDate>Sat, 29 May 2010 14:07:05 +0000</pubDate>
		<dc:creator>Tommy</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[Phone]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[2.2]]></category>
		<category><![CDATA[Andoird]]></category>
		<category><![CDATA[AVD]]></category>
		<category><![CDATA[device]]></category>
		<category><![CDATA[Froyo]]></category>
		<category><![CDATA[virtual]]></category>

		<guid isPermaLink="false">http://news.answers.tw/?p=450</guid>
		<description><![CDATA[ 
So it&#8217;s time to start developing Android apps, but you have a Nexus One running Froyo 2.2. What are you supposed to do at the stage &#8220;Create new Android Virtual Device (AVD)&#8221;? That&#8217;s exactly the question I was tackling today. In fact it&#8217;s not too important, since you would be developing for all types of [...]]]></description>
			<content:encoded><![CDATA[<p> </p>
<p>So it&#8217;s time to start developing Android apps, but you have a Nexus One running Froyo 2.2. What are you supposed to do at the stage &#8220;Create new Android Virtual Device (AVD)&#8221;? That&#8217;s exactly the question I was tackling today. In fact it&#8217;s not too important, since you would be developing for all types of Android phones, not just Nexus One, but in principle it seems right to set up the emulator exactly for the Nexus One.</p>
<p>So the first thing to do when creating a new virtual device is to give it a name. I was thinking about calling mine &#8220;NexusOne&#8221; but then I thought I should add a little more detail. However, there is a restriction in the naming policy: you are only allowed to include letters and numbers, no spaces or decimal points (but yes to underscores). This means the logical name &#8220;Nexus One Froyo 2.2&#8243; is no good. Finally I settled on &#8220;Nexus_One_Froyo_2-2&#8243;. I selected Target: &#8220;Android 2.2 &#8211; API Level 8&#8243;. If you don&#8217;t have it as an option, you need to run the Android SDK updater.</p>
<p>Next select the size of the SD card. I put 2000 MiB.</p>
<p>And the skin of the Nexus One would correctly be WVGA800, which corresponds to 800 x 480 resolution. Technically it&#8217;s a slightly different since the particular screen used, but it&#8217;s effectively the WVGA800.</p>
<p>Next there&#8217;s a bunch of settings to add. I&#8217;ve seen some people suggest you need to add all the hardware components manually, but according to the following chart most of the stuff is there by default. (Chart is from <a href="http://www.51testing.com/?uid-49689-action-viewspace-itemid-212142">http://www.51testing.com/?uid-49689-action-viewspace-itemid-212142</a>)</p>
<table>
<tbody>
<tr>
<th>Characteristic</th>
<th>Description</th>
<th>Property</th>
</tr>
<tr>
<td>Device ram size</td>
<td>The amount of physical RAM on the device, in megabytes. Default value is &#8220;96&#8243;.</td>
<td>hw.ramSize</td>
</tr>
<tr>
<td>Touch-screen support</td>
<td>Whether there is a touch screen or not on the device. Default value is &#8220;yes&#8221;.</td>
<td>hw.touchScreen</td>
</tr>
<tr>
<td>Trackball support</td>
<td>Whether there is a trackball on the device. Default value is &#8220;yes&#8221;.</td>
<td>hw.trackBall</td>
</tr>
<tr>
<td>Keyboard support</td>
<td>Whether the device has a QWERTY keyboard. Default value is &#8220;yes&#8221;.</td>
<td>hw.keyboard</td>
</tr>
<tr>
<td>DPad support</td>
<td>Whether the device has DPad keys. Default value is &#8220;yes&#8221;.</td>
<td>hw.dPad</td>
</tr>
<tr>
<td>GSM modem support</td>
<td>Whether there is a GSM modem in the device. Default value is &#8220;yes&#8221;.</td>
<td>hw.gsmModem</td>
</tr>
<tr>
<td>Camera support</td>
<td>Whether the device has a camera. Default value is &#8220;no&#8221;.</td>
<td>hw.camera</td>
</tr>
<tr>
<td>Maximum horizontal camera pixels</td>
<td>Default value is &#8220;640&#8243;.</td>
<td>hw.camera.maxHorizontalPixels</td>
</tr>
<tr>
<td>Maximum vertical camera pixels</td>
<td>Default value is &#8220;480&#8243;.</td>
<td>hw.camera.maxVerticalPixels</td>
</tr>
<tr>
<td>GPS support</td>
<td>Whether there is a GPS in the device. Default value is &#8220;yes&#8221;.</td>
<td>hw.gps</td>
</tr>
<tr>
<td>Battery support</td>
<td>Whether the device can run on a battery. Default value is &#8220;yes&#8221;.</td>
<td>hw.battery</td>
</tr>
<tr>
<td>Accelerometer</td>
<td>Whether there is an accelerometer in the device. Default value is &#8220;yes&#8221;.</td>
<td>hw.accelerometer</td>
</tr>
<tr>
<td>Audio recording support</td>
<td>Whether the device can record audio. Default value is &#8220;yes&#8221;.</td>
<td>hw.audioInput</td>
</tr>
<tr>
<td>Audio playback support</td>
<td>Whether the device can play audio. Default value is &#8220;yes&#8221;.</td>
<td>hw.audioOutput</td>
</tr>
<tr>
<td>SD Card support</td>
<td>Whether the device supports insertion/removal of virtual SD Cards. Default value is &#8220;yes&#8221;.</td>
<td>hw.sdCard</td>
</tr>
<tr>
<td>Cache partition support</td>
<td>Whether we use a /cache partition on the device. Default value is &#8220;yes&#8221;.</td>
<td>disk.cachePartition</td>
</tr>
<tr>
<td>Cache partition size</td>
<td>Default value is &#8220;66MB&#8221;.</td>
<td>disk.cachePartition.size</td>
</tr>
</tbody>
</table>
<p>Thus according to the chart we should add &#8220;Camera&#8221; and the 5.0 megapixel camera on the Nexus One corresponds to 2592 Maximum Horizontal Camera Pixels and 1944 Maximum Vertical Camera Pixels (The exact number of pixels is a guess of mine based on the 5.0 Megapixels, but unless you&#8217;re doing some hardcore testing I think it will be fine). Set the Device RAM Size to 512 MB for the Nexus One.</p>
<p>Ok, that&#8217;s about it. Now click &#8220;Create AVD&#8221; and the program will appear to freeze for a while. Finally, the AVD will be created and Nexus_One_Froyo_2-2 is located in the .android\avd folder.</p>
]]></content:encoded>
			<wfw:commentRss>http://news.answers.tw/?feed=rss2&amp;p=450</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Andrew Parsons speaks on marketing to Uni Students</title>
		<link>http://news.answers.tw/?p=449</link>
		<comments>http://news.answers.tw/?p=449#comments</comments>
		<pubDate>Tue, 27 Apr 2010 10:59:34 +0000</pubDate>
		<dc:creator>Tommy</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[andrew]]></category>
		<category><![CDATA[marketing]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[parsons]]></category>

		<guid isPermaLink="false">http://news.answers.tw/?p=449</guid>
		<description><![CDATA[Andrew Parsons from Microsoft gives some pointers about how to make your on-campus marketing campaign successful. Maybe google or apple should watch this and learn!]]></description>
			<content:encoded><![CDATA[<p><object width="660" height="525"><param name="movie" value="http://www.youtube.com/v/hfqEwM3oUss&#038;hl=en_US&#038;fs=1&#038;color1=0xe1600f&#038;color2=0xfebd01&#038;border=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/hfqEwM3oUss&#038;hl=en_US&#038;fs=1&#038;color1=0xe1600f&#038;color2=0xfebd01&#038;border=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="600" height="485"></embed></object></p>
<p>Andrew Parsons from Microsoft gives some pointers about how to make your on-campus marketing campaign successful. Maybe google or apple should watch this and learn!</p>
]]></content:encoded>
			<wfw:commentRss>http://news.answers.tw/?feed=rss2&amp;p=449</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ebooks online</title>
		<link>http://news.answers.tw/?p=445</link>
		<comments>http://news.answers.tw/?p=445#comments</comments>
		<pubDate>Sun, 14 Mar 2010 05:03:27 +0000</pubDate>
		<dc:creator>Tommy</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[books]]></category>
		<category><![CDATA[ebooks]]></category>
		<category><![CDATA[epub]]></category>
		<category><![CDATA[library]]></category>
		<category><![CDATA[online]]></category>
		<category><![CDATA[read]]></category>
		<category><![CDATA[reading]]></category>

		<guid isPermaLink="false">http://news.answers.tw/?p=445</guid>
		<description><![CDATA[A collection of possibly useful links:
www.gutenberg.net &#8211; Free, in the public domain books. Lots of older books like the Wizard of Oz and some more modern books; it&#8217;s mostly only sci-fi publishers are releasing their books into the public domain. http://worldebooklibrary.net/ also distributes these (same) books in .pdf format, but gives you the chance to [...]]]></description>
			<content:encoded><![CDATA[<p>A collection of possibly useful links:</p>
<p>www.gutenberg.net &#8211; Free, in the public domain books. Lots of older books like the Wizard of Oz and some more modern books; it&#8217;s mostly only sci-fi publishers are releasing their books into the public domain. http://worldebooklibrary.net/ also distributes these (same) books in .pdf format, but gives you the chance to pay.</p>
<p>Maybe you could try negotiating with one of the services for libraries, such as: http://www.overdrive.com/ or http://www.exacteditions.com/. Basically, after the institution pays, these sites generally allow the members of the institution (numbering in the hundreds of thousands) to read books.</p>
<p>And also on the topic of libraries, you can try a public library. Taipei library has a few different types of ebook collections: http://www.tpml.edu.tw/TaipeiPublicLibrary/index.php?subsite=english&#038;page=english-eresource-index.php</p>
<p>I was also paying for questia.com but the selection is big but oriented towards nonfiction.</p>
<p>www.oreilly.com &#8211; It really depends on the type of books that you&#8217;re looking at. For computer/tech books, uses the epub format, which might not be so hard to use, since it&#8217;s basically just a kind of html with divisions for chapters, etc. Kate did Traditional Chinese translation for their epub reader, but for some reason they haven&#8217;t posted that version yet&#8230; </p>
<p>Mostly tech books: safaribooksonline.com<br />
For kids: http://www.benchmarkeducation.com/ebookroom</p>
<p>The trouble is you might have problems of scale. You can pay for 10 or 100 books, but if your experiment is on free-choice, that&#8217;s not much of a choice.  So that&#8217;s why I might suggest that you use something like wikipedia or a particular popular online e-magazine as the source. There&#8217;s so much to choose from and it&#8217;s free~</p>
]]></content:encoded>
			<wfw:commentRss>http://news.answers.tw/?feed=rss2&amp;p=445</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Unit tests in c++</title>
		<link>http://news.answers.tw/?p=444</link>
		<comments>http://news.answers.tw/?p=444#comments</comments>
		<pubDate>Sun, 21 Feb 2010 12:26:28 +0000</pubDate>
		<dc:creator>Tommy</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[C++]]></category>
		<category><![CDATA[coding]]></category>
		<category><![CDATA[unit tests]]></category>

		<guid isPermaLink="false">http://news.answers.tw/?p=444</guid>
		<description><![CDATA[Now that I&#8217;m using c++ again, I&#8217;m getting interested in unit tests, of course. But a little research showed me that there has been some reluctance to unity tests in the community, primarily due to the lack of reflection in unmanaged code.
Since unit testing is so awesome, it hasn&#8217;t been entirely overlooked, luckily. First I [...]]]></description>
			<content:encoded><![CDATA[<p>Now that I&#8217;m using c++ again, I&#8217;m getting interested in unit tests, of course. But a little research showed me that there has been some reluctance to unity tests in the community, primarily due to the lack of reflection in unmanaged code.</p>
<p>Since unit testing is so awesome, it hasn&#8217;t been entirely overlooked, luckily. First I found an interesting question on this at http://stackoverflow.com/questions/3159<br />
There&#8217;s a good overview of a bunch of different tools there.</p>
<p>I also read a good article by Michael Feather. http://objectmentor.com/resources/ articles/TheHumbleDialogBox.pdf<br />
He explains why we need to separate the smart objects so we can communicate with them. Cool!</p>
<p>I&#8217;m also downloading some unit test plugin for Visual Studio. I&#8217;ll let you know how that goes!</p>
]]></content:encoded>
			<wfw:commentRss>http://news.answers.tw/?feed=rss2&amp;p=444</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Unit tests in c++</title>
		<link>http://news.answers.tw/?p=443</link>
		<comments>http://news.answers.tw/?p=443#comments</comments>
		<pubDate>Sun, 21 Feb 2010 12:23:00 +0000</pubDate>
		<dc:creator>Tommy</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[C++]]></category>
		<category><![CDATA[coding]]></category>
		<category><![CDATA[unit tests]]></category>

		<guid isPermaLink="false">http://news.answers.tw/?p=443</guid>
		<description><![CDATA[Now that I&#8217;m using c++ again, I&#8217;m getting interested in unit tests, of course. But a little research showed me that there has been some reluctance to unity tests in the community, primarily due to the lack of reflection in unmanaged code.
Since unit testing is so awesome, it hasn&#8217;t been entirely overlooked, luckily. First I [...]]]></description>
			<content:encoded><![CDATA[<p>Now that I&#8217;m using c++ again, I&#8217;m getting interested in unit tests, of course. But a little research showed me that there has been some reluctance to unity tests in the community, primarily due to the lack of reflection in unmanaged code.</p>
<p>Since unit testing is so awesome, it hasn&#8217;t been entirely overlooked, luckily. First I found an interesting question on this at http://stackoverflow.com/questions/3159<br />
There&#8217;s a good overview of a bunch of different tools there.</p>
<p>I also read a good article by Michael Feather. http://objectmentor.com/resources/ articles/TheHumbleDialogBox.pdf<br />
He explains why we need to separate the smart objects so we can communicate with them. Cool!</p>
<p>I&#8217;m also downloading some unit test plugin for Visual Studio. I&#8217;ll let you know how that goes!</p>
]]></content:encoded>
			<wfw:commentRss>http://news.answers.tw/?feed=rss2&amp;p=443</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>My new android</title>
		<link>http://news.answers.tw/?p=442</link>
		<comments>http://news.answers.tw/?p=442#comments</comments>
		<pubDate>Sat, 30 Jan 2010 13:29:52 +0000</pubDate>
		<dc:creator>Tommy</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[test]]></category>

		<guid isPermaLink="false">http://news.answers.tw/?p=442</guid>
		<description><![CDATA[Just thought that I&#8217;d test the capabalities of this phone to post here.
]]></description>
			<content:encoded><![CDATA[<p>Just thought that I&#8217;d test the capabalities of this phone to post here.</p>
]]></content:encoded>
			<wfw:commentRss>http://news.answers.tw/?feed=rss2&amp;p=442</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>This Text Is Now Writing Your Mind</title>
		<link>http://news.answers.tw/?p=441</link>
		<comments>http://news.answers.tw/?p=441#comments</comments>
		<pubDate>Fri, 15 Jan 2010 09:22:05 +0000</pubDate>
		<dc:creator>Tommy</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[This Text Is Now Writing Your Mind]]></category>

		<guid isPermaLink="false">http://news.answers.tw/?p=441</guid>
		<description><![CDATA[This Text Is Now Writing Your Mind
]]></description>
			<content:encoded><![CDATA[<p>This Text Is Now Writing Your Mind</p>
]]></content:encoded>
			<wfw:commentRss>http://news.answers.tw/?feed=rss2&amp;p=441</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Send to:</title>
		<link>http://news.answers.tw/?p=430</link>
		<comments>http://news.answers.tw/?p=430#comments</comments>
		<pubDate>Sat, 09 Jan 2010 13:33:24 +0000</pubDate>
		<dc:creator>Tommy</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://news.answers.tw/?p=430</guid>
		<description><![CDATA[Using Send-to in Ubuntu is supposed to be a helpful thing. Although I prefer using the Terminal for copying files to new locations, let&#8217;s see how send to works:
First, we right click the file:

Then we see the Send To dialog box:

We select the &#8220;Removable Media&#8221;.

Select the disk we&#8217;d like to send it to:

We have the [...]]]></description>
			<content:encoded><![CDATA[<p>Using Send-to in Ubuntu is supposed to be a helpful thing. Although I prefer using the Terminal for copying files to new locations, let&#8217;s see how send to works:</p>
<p>First, we right click the file:<br />
<a href="http://news.answers.tw/wp-content/uploads/2010/01/sendTo1.PNG"><img src="http://news.answers.tw/wp-content/uploads/2010/01/sendTo1.PNG" alt="sendTo1" title="sendTo1" width="715" height="550" class="alignnone size-full wp-image-431" /></a></p>
<p>Then we see the Send To dialog box:<br />
<a href="http://news.answers.tw/wp-content/uploads/2010/01/sendTo2.PNG"><img src="http://news.answers.tw/wp-content/uploads/2010/01/sendTo2.PNG" alt="sendTo2" title="sendTo2" width="719" height="551" class="alignnone size-full wp-image-432" /></a></p>
<p>We select the &#8220;Removable Media&#8221;.<br />
<a href="http://news.answers.tw/wp-content/uploads/2010/01/sendTo3.PNG"><img src="http://news.answers.tw/wp-content/uploads/2010/01/sendTo3.PNG" alt="sendTo3" title="sendTo3" width="378" height="298" class="alignnone size-full wp-image-433" /></a></p>
<p>Select the disk we&#8217;d like to send it to:<br />
<a href="http://news.answers.tw/wp-content/uploads/2010/01/sendTo4.PNG"><img src="http://news.answers.tw/wp-content/uploads/2010/01/sendTo4.PNG" alt="sendTo4" title="sendTo4" width="378" height="297" class="alignnone size-full wp-image-434" /></a></p>
<p>We have the option to send it as a zipped file:<br />
<a href="http://news.answers.tw/wp-content/uploads/2010/01/sendTo5.PNG"><img src="http://news.answers.tw/wp-content/uploads/2010/01/sendTo5.PNG" alt="sendTo5" title="sendTo5" width="379" height="298" class="alignnone size-full wp-image-435" /></a></p>
<p>We go to the target location and see if the new file is there:<br />
<a href="http://news.answers.tw/wp-content/uploads/2010/01/sendTo6.PNG"><img src="http://news.answers.tw/wp-content/uploads/2010/01/sendTo6.PNG" alt="sendTo6" title="sendTo6" width="763" height="552" class="alignnone size-full wp-image-436" /></a></p>
<p>If it&#8217;s not, we can just consider what happens in the terminal if using the command &#8220;cp&#8221; which means to copy. First, I look to see what drives are available:<br />
<code>tommy@ubuntu:~$ ls /media<br />
cdrom   cdrom1                                floppy   U3 System<br />
cdrom0  f2fc5429-adbc-4957-b436-f990c1cba426  floppy0  Ubuntu 9.04<br />
</code></p>
<p>Check what&#8217;s on the drive:<br />
<code>tommy@ubuntu:~$ ls /media/f2fc5429-adbc-4957-b436-f990c1cba426/<br />
bin    dev   initrd.img  media     opt   sbin     sys  var<br />
boot   etc   lib         mnt       proc  selinux  tmp  vmlinuz<br />
cdrom  home  lost+found  root  srv      usr<br />
</code></p>
<p>I want to see my new file. It&#8217;s called &#8220;new file&#8221;.<br />
<code>tommy@ubuntu:~$ ls<br />
Desktop    Downloads         Music     new file~  Public     Videos<br />
Documents  examples.desktop  new file  Pictures   Templates<br />
</code></p>
<p>I copy the file into the USB drive, which has a really long name.<br />
<code>tommy@ubuntu:~$ cp new\ file /media/f2fc5429-adbc-4957-b436-f990c1cba426/<br />
cp: cannot create regular file `/media/f2fc5429-adbc-4957-b436-f990c1cba426/new file': Permission denied<br />
</code></p>
<p>I realize that the copy command cp doesn&#8217;t work outside the user directory. Therefore, use sudo with password.<br />
<code>tommy@ubuntu:~$ sudo cp new\ file /media/f2fc5429-adbc-4957-b436-f990c1cba426/<br />
[sudo] password for tommy:<br />
</code></p>
<p>Check that the file copied:<br />
<code>tommy@ubuntu:~$ ls /media/f2fc5429-adbc-4957-b436-f990c1cba426/<br />
bin    dev   initrd.img  media     opt   sbin     sys  var<br />
boot   etc   lib         mnt       proc  selinux  tmp  vmlinuz<br />
cdrom  home  lost+found  new file  root  srv      usr<br />
</code></p>
<p>yes, it did, because &#8220;new file&#8221; now exists on the drive. Wow, the terminal works but rightclick &#8220;Send to&#8221; doesn&#8217;t.</p>
]]></content:encoded>
			<wfw:commentRss>http://news.answers.tw/?feed=rss2&amp;p=430</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
