<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:blogger='http://schemas.google.com/blogger/2008' xmlns:georss='http://www.georss.org/georss' xmlns:gd="http://schemas.google.com/g/2005" xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-4109279768306248422</id><updated>2024-11-01T03:37:04.431-07:00</updated><category term="Tips"/><category term="Google"/><category term="Interesting"/><category term="Fun"/><category term="Other"/><category term="Gmail"/><category term="Open Source"/><category term="Docs"/><category term="Software"/><category term="Ubuntu"/><category term="Linux"/><category term="Mobile"/><category term="GMaps"/><category term="Git"/><category term="Picasa"/><category term="Testing"/><category term="Firefox"/><category term="GEarth"/><category term="Proxy"/><category term="eclipse"/><category term="egit"/><category term="Antivirus"/><category term="Browser"/><category term="Cloud"/><category term="Cygwin"/><category term="Development"/><category term="Economy"/><category term="Election"/><category term="Flu"/><category term="GCal"/><category term="Google Chrome"/><category term="Navigation"/><category term="NexusOne"/><category term="T-Mobile"/><category term="Tool"/><category term="Update"/><category term="Vi"/><category term="Video"/><category term="WOL"/><category term="WinXP"/><category term="Windows"/><category term="X/Server"/><category term="command line"/><category term="dstat"/><category term="system"/><title type='text'>sungaMagnus</title><subtitle type='html'>SungamMagnus&#39; Online Bookmark.</subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://sungamagnus.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4109279768306248422/posts/default?redirect=false'/><link rel='alternate' type='text/html' href='http://sungamagnus.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><link rel='next' type='application/atom+xml' href='http://www.blogger.com/feeds/4109279768306248422/posts/default?start-index=26&amp;max-results=25&amp;redirect=false'/><author><name>sungaMagnus</name><uri>http://www.blogger.com/profile/05085014344369229065</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>65</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-4109279768306248422.post-1234878873226183707</id><published>2017-03-09T16:05:00.000-08:00</published><updated>2017-03-09T16:05:33.499-08:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Cygwin"/><category scheme="http://www.blogger.com/atom/ns#" term="Interesting"/><category scheme="http://www.blogger.com/atom/ns#" term="Linux"/><category scheme="http://www.blogger.com/atom/ns#" term="X/Server"/><title type='text'>Connect to X11 Server Through ssh Using Cygwin/X on Windows</title><content type='html'>Assuming the server is setup correctly. Look at this &lt;a href=&quot;http://unix.stackexchange.com/questions/12755&quot; target=&quot;_blank&quot;&gt;question on StackExchange&lt;/a&gt; if you need help.&lt;br /&gt;
&lt;br /&gt;
On the client (Windows machine) side:&lt;br /&gt;
&lt;ol&gt;
&lt;li&gt;Install Cygwin[1] and Cygwin/X[2]&lt;/li&gt;
&lt;li&gt;Set $DISPLAY variable in your startup script (I put it in ~/.bashrc)&lt;br /&gt;&lt;!-- HTML generated using hilite.me --&gt;&lt;div style=&quot;background: #ffffff; border-width: 0.1em 0.1em 0.1em 0.8em; border: solid gray; overflow: auto; padding: 0.2em 0.6em; width: auto;&quot;&gt;
&lt;pre style=&quot;line-height: 125%; margin: 0;&quot;&gt;&lt;span style=&quot;color: #888888;&quot;&gt;# Add DISPLAY for X11 forwarding&lt;/span&gt;
&lt;span style=&quot;color: #007020;&quot;&gt;export &lt;/span&gt;&lt;span style=&quot;color: #996633;&quot;&gt;DISPLAY&lt;/span&gt;&lt;span style=&quot;color: #333333;&quot;&gt;=&lt;/span&gt;&lt;span style=&quot;background-color: #fff0f0;&quot;&gt;&quot;:0.0&quot;&lt;/span&gt;
&lt;/pre&gt;
&lt;/div&gt;
&lt;/li&gt;
&lt;li&gt;Start a Cygwin Terminal and&lt;/li&gt;
&lt;ol&gt;
&lt;li&gt;Start X Server &lt;div style=&quot;background: #ffffff; border-width: 0.1em 0.1em 0.1em 0.8em; border: solid gray; overflow: auto; padding: 0.2em 0.6em; width: auto;&quot;&gt;
&lt;pre style=&quot;line-height: 125%; margin: 0;&quot;&gt;startxwin &amp;amp;&lt;/pre&gt;
&lt;/div&gt;
&lt;/li&gt;
&lt;li&gt;Connect to your server
&lt;br /&gt;&lt;!-- HTML generated using hilite.me --&gt;&lt;div style=&quot;background: #ffffff; border-width: 0.1em 0.1em 0.1em 0.8em; border: solid gray; overflow: auto; padding: 0.2em 0.6em; width: auto;&quot;&gt;
&lt;pre style=&quot;line-height: 125%; margin: 0;&quot;&gt;&lt;span style=&quot;color: #888888;&quot;&gt;# -Y      Enables trusted X11 forwarding.&lt;/span&gt;
ssh -Y &lt;span style=&quot;color: #008800; font-weight: bold;&quot;&gt;${&lt;/span&gt;&lt;span style=&quot;color: #996633;&quot;&gt;server_to_connect&lt;/span&gt;&lt;span style=&quot;color: #008800; font-weight: bold;&quot;&gt;}&lt;/span&gt;&lt;/pre&gt;
&lt;/div&gt;
&lt;/li&gt;
&lt;li&gt;Now you can run the application on the server and the GUI will be shown in your Windows machine. You can test by xlog&lt;br /&gt;&lt;!-- HTML generated using hilite.me --&gt;&lt;div style=&quot;background: #ffffff; border-width: 0.1em 0.1em 0.1em 0.8em; border: solid gray; overflow: auto; padding: 0.2em 0.6em; width: auto;&quot;&gt;
&lt;pre style=&quot;line-height: 125%; margin: 0;&quot;&gt;xlogo
&lt;/pre&gt;
&lt;/div&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;/ol&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgj7_hHUfZyqsLe9X5fKxpPsV5Z4MQWb_qipwMUtzLGJJ2-osSvV4qUh-3cxNI66v0PaheK95M8bUWKWvGWCmkAMjg1jXlQCWA0YVyRq1RXua_O7dzHGpbFzhxDYV0AJqm0fj9IWWLoZ9Hp/s1600/2017.03.09_xlogo.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgj7_hHUfZyqsLe9X5fKxpPsV5Z4MQWb_qipwMUtzLGJJ2-osSvV4qUh-3cxNI66v0PaheK95M8bUWKWvGWCmkAMjg1jXlQCWA0YVyRq1RXua_O7dzHGpbFzhxDYV0AJqm0fj9IWWLoZ9Hp/s1600/2017.03.09_xlogo.png&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div&gt;
&lt;span style=&quot;font-family: monospace;&quot;&gt;&lt;span style=&quot;white-space: pre;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;
&lt;span style=&quot;font-family: monospace;&quot;&gt;&lt;span style=&quot;white-space: pre;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;
[1]:&amp;nbsp;&lt;a href=&quot;https://www.cygwin.com/&quot; target=&quot;_blank&quot;&gt;https://www.cygwin.com/&lt;/a&gt;&lt;/div&gt;
&lt;div&gt;
[2]:&amp;nbsp;&lt;a href=&quot;https://x.cygwin.com/&quot; target=&quot;_blank&quot;&gt;https://x.cygwin.com/&lt;/a&gt;&lt;/div&gt;
&lt;div&gt;
&lt;br /&gt;
Ref:&lt;br /&gt;
&lt;br /&gt;
&lt;ol&gt;
&lt;li&gt;&lt;a href=&quot;http://unix.stackexchange.com/questions/12755/how-to-forward-x-over-ssh-from-ubuntu-machine&quot; target=&quot;_blank&quot;&gt;http://unix.stackexchange.com/questions/12755/how-to-forward-x-over-ssh-from-ubuntu-machine&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://serverfault.com/questions/273847/what-does-warning-untrusted-x11-forwarding-setup-failed-xauth-key-data-not-ge&quot; target=&quot;_blank&quot;&gt;http://serverfault.com/questions/273847/what-does-warning-untrusted-x11-forwarding-setup-failed-xauth-key-data-not-ge&lt;/a&gt;&lt;/li&gt;
&lt;/ol&gt;
&lt;/div&gt;
&lt;div class=&quot;blogger-post-footer&quot;&gt;&lt;br /&gt;&lt;hr /&gt;&lt;hr /&gt;&lt;br /&gt;Visit my blog @ &lt;a href=&quot;http://sungamagnus.blogspot.com/&quot;&gt;http://sungamagnus.blogspot.com&lt;/a&gt;
or Subscribe to my blog @ &lt;a href=&quot;http://feeds.feedburner.com/sungaMagnus&quot;&gt;Subscribe&lt;/a&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://sungamagnus.blogspot.com/feeds/1234878873226183707/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/4109279768306248422/1234878873226183707' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4109279768306248422/posts/default/1234878873226183707'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4109279768306248422/posts/default/1234878873226183707'/><link rel='alternate' type='text/html' href='http://sungamagnus.blogspot.com/2017/03/connect-to-x11-server-through-ssh-using.html' title='Connect to X11 Server Through ssh Using Cygwin/X on Windows'/><author><name>sungaMagnus</name><uri>http://www.blogger.com/profile/05085014344369229065</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgj7_hHUfZyqsLe9X5fKxpPsV5Z4MQWb_qipwMUtzLGJJ2-osSvV4qUh-3cxNI66v0PaheK95M8bUWKWvGWCmkAMjg1jXlQCWA0YVyRq1RXua_O7dzHGpbFzhxDYV0AJqm0fj9IWWLoZ9Hp/s72-c/2017.03.09_xlogo.png" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4109279768306248422.post-3326785900841277048</id><published>2014-04-11T12:45:00.001-07:00</published><updated>2014-04-11T12:45:37.400-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="eclipse"/><category scheme="http://www.blogger.com/atom/ns#" term="egit"/><category scheme="http://www.blogger.com/atom/ns#" term="Git"/><title type='text'>Git Stash in Egit</title><content type='html'>Just found you can do &quot;git stash&quot; in Egit&lt;br /&gt;
&lt;br /&gt;
It&#39;s &#39;hidden in the &quot;Git Repository view&quot;: &#39;&lt;br /&gt;
&lt;br /&gt;
&lt;a href=&quot;http://stackoverflow.com/questions/17702974/unable-to-find-stash-apply-functionalitit-in-egit&quot;&gt;http://stackoverflow.com/questions/17702974/unable-to-find-stash-apply-functionalitit-in-egit&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
Image found from the above stackoverflow link.&lt;br /&gt;&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;http://i.stack.imgur.com/LIhun.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;http://i.stack.imgur.com/LIhun.png&quot; height=&quot;550&quot; width=&quot;640&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;&lt;div class=&quot;blogger-post-footer&quot;&gt;&lt;br /&gt;&lt;hr /&gt;&lt;hr /&gt;&lt;br /&gt;Visit my blog @ &lt;a href=&quot;http://sungamagnus.blogspot.com/&quot;&gt;http://sungamagnus.blogspot.com&lt;/a&gt;
or Subscribe to my blog @ &lt;a href=&quot;http://feeds.feedburner.com/sungaMagnus&quot;&gt;Subscribe&lt;/a&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://sungamagnus.blogspot.com/feeds/3326785900841277048/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/4109279768306248422/3326785900841277048' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4109279768306248422/posts/default/3326785900841277048'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4109279768306248422/posts/default/3326785900841277048'/><link rel='alternate' type='text/html' href='http://sungamagnus.blogspot.com/2014/04/git-stash-in-egit.html' title='Git Stash in Egit'/><author><name>sungaMagnus</name><uri>http://www.blogger.com/profile/05085014344369229065</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4109279768306248422.post-4018292425621887295</id><published>2014-04-11T12:38:00.003-07:00</published><updated>2014-04-11T12:38:38.185-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="eclipse"/><category scheme="http://www.blogger.com/atom/ns#" term="egit"/><category scheme="http://www.blogger.com/atom/ns#" term="Git"/><title type='text'>How to fetch all tags from Git Server using EGit?</title><content type='html'>You will need to follow the same procedure for all the project that you have.&lt;br /&gt;
&lt;ol&gt;
&lt;li&gt;Right-click on a project ⇒ Click on &quot;Team&quot; ⇒ Click on &quot;Fetch from Upstream&quot;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhdW_Ce7EAX7gE3CMwt8fLl3cJ9NQ6TbL5xfDB4JTJ6Ts54SxMv3LlUYZ0GKQDNjpesa90Hs6iPtjZdyppAPKcFClCfsU3IpZ7aVibMvBgXq293GFrdxxzDem4pH5I2IbalAgzwX70Eof-Y/s1600/01.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em; text-align: center;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhdW_Ce7EAX7gE3CMwt8fLl3cJ9NQ6TbL5xfDB4JTJ6Ts54SxMv3LlUYZ0GKQDNjpesa90Hs6iPtjZdyppAPKcFClCfsU3IpZ7aVibMvBgXq293GFrdxxzDem4pH5I2IbalAgzwX70Eof-Y/s1600/01.png&quot; height=&quot;256&quot; width=&quot;400&quot; /&gt;&lt;/a&gt;&lt;/li&gt;
&lt;br /&gt;
&lt;li&gt;Click on &quot;Configure&quot;&lt;br /&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgc-Xg7_7nKPwi0MxxKU_od5cCf1ymeYkYjWuBd2UFr65dJqqMs7n0MAmVq0YizPz3VF_323FfxSzFyZbbLoG6MW4hKl_a5DTLAgtUOX23-D2aSoNCloLqXTuqQEMxTyQNO4cGVoQnKHz0g/s1600/02.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgc-Xg7_7nKPwi0MxxKU_od5cCf1ymeYkYjWuBd2UFr65dJqqMs7n0MAmVq0YizPz3VF_323FfxSzFyZbbLoG6MW4hKl_a5DTLAgtUOX23-D2aSoNCloLqXTuqQEMxTyQNO4cGVoQnKHz0g/s1600/02.png&quot; height=&quot;293&quot; width=&quot;400&quot; /&gt;&lt;/a&gt;&lt;/li&gt;
&lt;br /&gt;
&lt;li&gt;&lt;span style=&quot;background-color: white; color: #222222; font-family: Arial, Helvetica, sans-serif; font-size: 12px; line-height: 18px;&quot;&gt;Click on &quot;Advanced&quot;&lt;/span&gt;&lt;br /&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgGbPTEW8T8wmNDjxx44l5eyr8EIspOOH31Bk4OuC3RigSw5TPGvRzJRT6lfXgt-twuZpZlBrMrF5mwyVqiK_VRiMMADncyS2e1hNESqsfNyYy4FZZB86XcEjxTUpE6mxQg4VRDBq-JOOJm/s1600/03.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgGbPTEW8T8wmNDjxx44l5eyr8EIspOOH31Bk4OuC3RigSw5TPGvRzJRT6lfXgt-twuZpZlBrMrF5mwyVqiK_VRiMMADncyS2e1hNESqsfNyYy4FZZB86XcEjxTUpE6mxQg4VRDBq-JOOJm/s1600/03.png&quot; height=&quot;325&quot; width=&quot;400&quot; /&gt;&lt;/a&gt;&lt;/li&gt;
&lt;br /&gt;
&lt;li&gt;&lt;span style=&quot;background-color: white; color: #222222; font-family: Arial, Helvetica, sans-serif; font-size: 12px; line-height: 18px;&quot;&gt;Click on &quot;Always fetch tags, even if we do not have the thing it points at&quot;&lt;/span&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgM1VAOEkMsaQw9VnljrlPkJJ4cEijfUNhZ3YQYQfO2BlfNr58cvA0cbg0JDqyoY9R4R_W8IgUjIziDvD2LFmv6CQPDGJQlRKX3IxEKr39fyHe97KHW-3-St6T6GfGY9CiEQD7VTxzFwoUD/s1600/04.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgM1VAOEkMsaQw9VnljrlPkJJ4cEijfUNhZ3YQYQfO2BlfNr58cvA0cbg0JDqyoY9R4R_W8IgUjIziDvD2LFmv6CQPDGJQlRKX3IxEKr39fyHe97KHW-3-St6T6GfGY9CiEQD7VTxzFwoUD/s1600/04.png&quot; height=&quot;400&quot; width=&quot;343&quot; /&gt;&lt;/a&gt;&lt;/li&gt;
&lt;/ol&gt;
&lt;div class=&quot;blogger-post-footer&quot;&gt;&lt;br /&gt;&lt;hr /&gt;&lt;hr /&gt;&lt;br /&gt;Visit my blog @ &lt;a href=&quot;http://sungamagnus.blogspot.com/&quot;&gt;http://sungamagnus.blogspot.com&lt;/a&gt;
or Subscribe to my blog @ &lt;a href=&quot;http://feeds.feedburner.com/sungaMagnus&quot;&gt;Subscribe&lt;/a&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://sungamagnus.blogspot.com/feeds/4018292425621887295/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/4109279768306248422/4018292425621887295' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4109279768306248422/posts/default/4018292425621887295'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4109279768306248422/posts/default/4018292425621887295'/><link rel='alternate' type='text/html' href='http://sungamagnus.blogspot.com/2014/04/how-to-fetch-all-tags-from-git-server.html' title='How to fetch all tags from Git Server using EGit?'/><author><name>sungaMagnus</name><uri>http://www.blogger.com/profile/05085014344369229065</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhdW_Ce7EAX7gE3CMwt8fLl3cJ9NQ6TbL5xfDB4JTJ6Ts54SxMv3LlUYZ0GKQDNjpesa90Hs6iPtjZdyppAPKcFClCfsU3IpZ7aVibMvBgXq293GFrdxxzDem4pH5I2IbalAgzwX70Eof-Y/s72-c/01.png" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4109279768306248422.post-6178768640232619465</id><published>2013-06-26T18:52:00.000-07:00</published><updated>2013-06-26T18:53:24.048-07:00</updated><title type='text'>Change The Location of PostgreSQL Database Store Its Table and Index</title><content type='html'>Find a way to split the postgres database into different partitions.&lt;br /&gt;
Two main use case [1]&lt;br /&gt;
&lt;ol&gt;
&lt;li&gt;First, if the partition or volume on which the cluster was initialized runs out of space and cannot be extended, a tablespace can be created on a different partition and used until the system can be reconfigured.&lt;/li&gt;
&lt;li&gt;Second, tablespaces allow an administrator to use knowledge of the usage pattern of database objects to optimize performance. For example, an index which is very heavily used can be placed on a very fast, highly available disk, such as an expensive solid state device. At the same time a table storing archived data which is rarely used or not performance critical could be stored on a less expensive, slower disk system.&lt;/li&gt;
&lt;/ol&gt;
&lt;h3&gt;
To Create a Tablespace&lt;/h3&gt;
&lt;blockquote class=&quot;tr_bq&quot;&gt;
&lt;span style=&quot;font-family: Courier New, Courier, monospace;&quot;&gt;CREATE TABLESPACE fastspace LOCATION &#39;/mnt/sda1/postgresql/data&#39;;&lt;/span&gt;&lt;/blockquote&gt;
&lt;h3&gt;
To Change the Tablespace of an Existing Table and Index&lt;/h3&gt;
The following psql command will create a list of alternate table command to change the table&#39;s tablespace [2]&lt;br /&gt;
&lt;blockquote class=&quot;tr_bq&quot;&gt;
&lt;span style=&quot;font-family: Courier New, Courier, monospace;&quot;&gt;-- tabelspace is null - find table that doesn&#39;t have any tablespace set&lt;br /&gt;select &#39;alter table &#39;||schemaname||&#39;.&#39;||tablename||&#39; set tablespace&amp;nbsp;fastspace;&#39; from pg_tables where schemaname=&#39;myschema&#39; and tablespace is null;&lt;/span&gt;&amp;nbsp; &lt;br /&gt;
&lt;span style=&quot;font-family: Courier New, Courier, monospace;&quot;&gt;select &#39;alter index &#39;||schemaname||&#39;.&#39;||indexname||&#39; set tablespace&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;font-family: &#39;Courier New&#39;, Courier, monospace;&quot;&gt;fastspace;&lt;/span&gt;&lt;span style=&quot;font-family: Courier New, Courier, monospace;&quot;&gt;&#39; from pg_indexes where schemaname=&#39;&lt;/span&gt;&lt;span style=&quot;font-family: &#39;Courier New&#39;, Courier, monospace;&quot;&gt;myschema&lt;/span&gt;&lt;span style=&quot;font-family: Courier New, Courier, monospace;&quot;&gt;&#39; and tablespace is null;&lt;/span&gt;&lt;/blockquote&gt;
&lt;br /&gt;
&lt;br /&gt;
It will return something similar to this&lt;br /&gt;
&lt;blockquote class=&quot;tr_bq&quot;&gt;
&lt;span style=&quot;font-family: Courier New, Courier, monospace;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;?column?&lt;br /&gt;-----------------------------------------------------------------------&lt;br /&gt;&amp;nbsp;alter table&amp;nbsp;myschema.table1 set tablespace&amp;nbsp;fastspace;&lt;br /&gt;&amp;nbsp;alter table&amp;nbsp;myschema.table2 set tablespace&amp;nbsp;fastspace;&lt;br /&gt;&amp;nbsp;alter table&amp;nbsp;myschema.table3 set tablespace&amp;nbsp;fastspace;&lt;br /&gt;(3 rows)&lt;/span&gt;&lt;/blockquote&gt;
&lt;blockquote class=&quot;tr_bq&quot;&gt;
&lt;span style=&quot;font-family: Courier New, Courier, monospace;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;?column?&lt;br /&gt;-----------------------------------------------------------------------&lt;br /&gt;&amp;nbsp;alter index&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;font-family: &#39;Courier New&#39;, Courier, monospace;&quot;&gt;myschema&lt;/span&gt;&lt;span style=&quot;font-family: Courier New, Courier, monospace;&quot;&gt;.index1 set tablespace&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;font-family: &#39;Courier New&#39;, Courier, monospace;&quot;&gt;fastspace&lt;/span&gt;&lt;span style=&quot;font-family: Courier New, Courier, monospace;&quot;&gt;;&lt;br /&gt;&amp;nbsp;alter index&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;font-family: &#39;Courier New&#39;, Courier, monospace;&quot;&gt;myschema&lt;/span&gt;&lt;span style=&quot;font-family: Courier New, Courier, monospace;&quot;&gt;.&lt;/span&gt;&lt;span style=&quot;font-family: &#39;Courier New&#39;, Courier, monospace;&quot;&gt;index2&lt;/span&gt;&lt;span style=&quot;font-family: Courier New, Courier, monospace;&quot;&gt;&amp;nbsp;set tablespace&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;font-family: &#39;Courier New&#39;, Courier, monospace;&quot;&gt;fastspace&lt;/span&gt;&lt;span style=&quot;font-family: Courier New, Courier, monospace;&quot;&gt;;&lt;br /&gt;&amp;nbsp;alter index&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;font-family: &#39;Courier New&#39;, Courier, monospace;&quot;&gt;myschema&lt;/span&gt;&lt;span style=&quot;font-family: Courier New, Courier, monospace;&quot;&gt;.&lt;/span&gt;&lt;span style=&quot;font-family: &#39;Courier New&#39;, Courier, monospace;&quot;&gt;index2&lt;/span&gt;&lt;span style=&quot;font-family: Courier New, Courier, monospace;&quot;&gt;&amp;nbsp;set tablespace&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;font-family: &#39;Courier New&#39;, Courier, monospace;&quot;&gt;fastspace&lt;/span&gt;&lt;span style=&quot;font-family: Courier New, Courier, monospace;&quot;&gt;;&lt;br /&gt;(3 rows)&lt;/span&gt;&lt;/blockquote&gt;
&amp;nbsp;Then just run each generated command to change/set the tablespace.&lt;br /&gt;
&lt;br /&gt;
Reference:&lt;br /&gt;
1. &lt;a href=&quot;http://www.postgresql.org/docs/8.1/static/manage-ag-tablespaces.html&quot;&gt;http://www.postgresql.org/docs/8.1/static/manage-ag-tablespaces.html&lt;/a&gt;&lt;br /&gt;
2. &lt;a href=&quot;http://www.postgresql.org/message-id/01c001c9335f$06e991d0$274610ac@praveenkm&quot;&gt;http://www.postgresql.org/message-id/01c001c9335f$06e991d0$274610ac@praveenkm&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;&lt;div class=&quot;blogger-post-footer&quot;&gt;&lt;br /&gt;&lt;hr /&gt;&lt;hr /&gt;&lt;br /&gt;Visit my blog @ &lt;a href=&quot;http://sungamagnus.blogspot.com/&quot;&gt;http://sungamagnus.blogspot.com&lt;/a&gt;
or Subscribe to my blog @ &lt;a href=&quot;http://feeds.feedburner.com/sungaMagnus&quot;&gt;Subscribe&lt;/a&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://sungamagnus.blogspot.com/feeds/6178768640232619465/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/4109279768306248422/6178768640232619465' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4109279768306248422/posts/default/6178768640232619465'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4109279768306248422/posts/default/6178768640232619465'/><link rel='alternate' type='text/html' href='http://sungamagnus.blogspot.com/2013/06/change-location-of-postgresql-database.html' title='Change The Location of PostgreSQL Database Store Its Table and Index'/><author><name>sungaMagnus</name><uri>http://www.blogger.com/profile/05085014344369229065</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4109279768306248422.post-6677347384167707134</id><published>2012-06-13T17:46:00.000-07:00</published><updated>2015-03-27T11:50:03.197-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Development"/><category scheme="http://www.blogger.com/atom/ns#" term="Git"/><category scheme="http://www.blogger.com/atom/ns#" term="Open Source"/><category scheme="http://www.blogger.com/atom/ns#" term="Tool"/><title type='text'>Config Git Default Setting</title><content type='html'>Some Git configurations I need to set every time I re-install OS, cygwin or in a new system&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;&lt;u&gt;User Name&lt;/u&gt;&lt;/b&gt;&lt;br /&gt;
&lt;blockquote class=&quot;tr_bq&quot;&gt;
git config --global user.name &quot;Your Name&quot;&lt;/blockquote&gt;
&lt;u&gt;&lt;b&gt;User Email&lt;/b&gt;&lt;/u&gt;&lt;br /&gt;
&lt;blockquote class=&quot;tr_bq&quot;&gt;
git config --global user.email you@example.com&lt;/blockquote&gt;
&lt;b&gt;&lt;u&gt;Default Editor&lt;/u&gt;&lt;/b&gt; (I prefer vi)&lt;br /&gt;
&lt;blockquote class=&quot;tr_bq&quot;&gt;
git config --global core.editor vi&lt;/blockquote&gt;
&lt;b&gt;&lt;u&gt;Colorized Git Output&lt;/u&gt;&lt;/b&gt;&amp;nbsp;(when using a terminal)&lt;br /&gt;
&lt;blockquote class=&quot;tr_bq&quot;&gt;
git config --global color.ui auto&lt;/blockquote&gt;
&lt;b&gt;&lt;u&gt;Pager Indentation Width&lt;/u&gt;&lt;/b&gt;&amp;nbsp;(I like it to be 4 characters)&lt;br /&gt;
&lt;blockquote class=&quot;tr_bq&quot;&gt;
git config --global core.pager &#39;less -x4&#39;&lt;/blockquote&gt;
&lt;table cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; class=&quot;tr-caption-container&quot; style=&quot;float: left; margin-right: 1em; text-align: left;&quot;&gt;&lt;tbody&gt;
&lt;tr&gt;&lt;td style=&quot;text-align: center;&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEi30xKvbjo2_GPMDNvduydA9CLprxbf4b_Qh8zBr25ZqqasUqts22Oupaa2mseK0gO1sgOLj3WsECm-vV6_U6oN5_hSZoSfQJ2F3vGmhvvbvi5M2W1JegPGKXsYsn4w3m9lAbQJt99sW24g/s1600/git_diff_color.png&quot; imageanchor=&quot;1&quot; style=&quot;clear: left; margin-bottom: 1em; margin-left: auto; margin-right: auto;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEi30xKvbjo2_GPMDNvduydA9CLprxbf4b_Qh8zBr25ZqqasUqts22Oupaa2mseK0gO1sgOLj3WsECm-vV6_U6oN5_hSZoSfQJ2F3vGmhvvbvi5M2W1JegPGKXsYsn4w3m9lAbQJt99sW24g/s640/git_diff_color.png&quot; height=&quot;420&quot; width=&quot;640&quot; /&gt;&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;tr-caption&quot; style=&quot;text-align: center;&quot;&gt;Sample output of &#39;git diff HEAD~&#39; when color.ui is set to auto&lt;br /&gt;
HEAD is at&amp;nbsp;https://kernel.googlesource.com/pub/scm/git/git -&amp;nbsp;2ae48a9bb87193de9e9da10abd9e7286c0e4c43d&lt;br /&gt;
git running in cygwin on Win7&lt;/td&gt;&lt;/tr&gt;
&lt;/tbody&gt;&lt;/table&gt;
&lt;br /&gt;
Edited on 2015.03.27: Added &quot;Pager Indentation Width&quot;&lt;br /&gt;
&lt;br /&gt;&lt;div class=&quot;blogger-post-footer&quot;&gt;&lt;br /&gt;&lt;hr /&gt;&lt;hr /&gt;&lt;br /&gt;Visit my blog @ &lt;a href=&quot;http://sungamagnus.blogspot.com/&quot;&gt;http://sungamagnus.blogspot.com&lt;/a&gt;
or Subscribe to my blog @ &lt;a href=&quot;http://feeds.feedburner.com/sungaMagnus&quot;&gt;Subscribe&lt;/a&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://sungamagnus.blogspot.com/feeds/6677347384167707134/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/4109279768306248422/6677347384167707134' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4109279768306248422/posts/default/6677347384167707134'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4109279768306248422/posts/default/6677347384167707134'/><link rel='alternate' type='text/html' href='http://sungamagnus.blogspot.com/2012/06/config-git-default-setting.html' title='Config Git Default Setting'/><author><name>sungaMagnus</name><uri>http://www.blogger.com/profile/05085014344369229065</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEi30xKvbjo2_GPMDNvduydA9CLprxbf4b_Qh8zBr25ZqqasUqts22Oupaa2mseK0gO1sgOLj3WsECm-vV6_U6oN5_hSZoSfQJ2F3vGmhvvbvi5M2W1JegPGKXsYsn4w3m9lAbQJt99sW24g/s72-c/git_diff_color.png" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4109279768306248422.post-3863059133693882265</id><published>2011-08-31T15:13:00.000-07:00</published><updated>2011-08-31T17:05:35.859-07:00</updated><title type='text'>Set Up DD-WRT Router To Use Google DNS/OpenDNS</title><content type='html'>Google DNS teams up with OpenDNS and some &quot;Content Delivery Networks (CDNs) to attach location data to the DNS requests, so when you request a web page, it will go to a server near you&quot; &lt;a href=&quot;http://sungamagnus.blogspot.com/2011/08/set-up-dd-wrt-router-to-use-google.html#ref1&quot;&gt;[1]&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
Here&#39;s how I update the configuration of my &lt;a href=&quot;http://www.dd-wrt.com/wiki/index.php/WRT54G-TM&quot;&gt;DD-WRT&#39;ed&amp;nbsp;Linksys WRT54G-TM&lt;/a&gt; to use Google DNS.&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg84ND9YFn-0zCI4dag2MlXINoj8g9zIPBcxFguLSqe7kZC-OOeU6vXt1g1K6C8uy615PCDTK2q1Ak6sJwiCBYZFmeZu35MOCdLyIY2-l1qSa0ml7lpT_wUU9Hr3qjDTosmt7h0nvQIwzRv/s1600/1314835174726.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;113&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg84ND9YFn-0zCI4dag2MlXINoj8g9zIPBcxFguLSqe7kZC-OOeU6vXt1g1K6C8uy615PCDTK2q1Ak6sJwiCBYZFmeZu35MOCdLyIY2-l1qSa0ml7lpT_wUU9Hr3qjDTosmt7h0nvQIwzRv/s640/1314835174726.png&quot; width=&quot;640&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjlWj73xaE3ZO2rkSJm7g82g97FatLzkg_WyP3XPomZIz7AmCtXt1wGzPZjLvdJPnX_huFz4jN5TUfG7y2MjXO32wZiW2W6DeRN_n2I9Nz3kwWN59BEcNqctnwbUGhrbqT3ZMZU0ITYwbtJ/s1600/1314835246287.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;139&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjlWj73xaE3ZO2rkSJm7g82g97FatLzkg_WyP3XPomZIz7AmCtXt1wGzPZjLvdJPnX_huFz4jN5TUfG7y2MjXO32wZiW2W6DeRN_n2I9Nz3kwWN59BEcNqctnwbUGhrbqT3ZMZU0ITYwbtJ/s640/1314835246287.png&quot; width=&quot;640&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;ol&gt;
&lt;li&gt;Log into your router&#39;s dd-wrt web interface. &amp;nbsp;You can access it using &lt;a href=&quot;http://192.168.1.1/&quot;&gt;192.168.1.1&lt;/a&gt; in your browser.&lt;/li&gt;
&lt;li&gt;Go to&amp;nbsp;&lt;b&gt;Services&lt;/b&gt;&amp;nbsp;tab »&amp;nbsp;&lt;b&gt;Services&lt;/b&gt;&amp;nbsp;sub tab »&amp;nbsp;&lt;b&gt;Services Management&lt;/b&gt;&amp;nbsp;section »&amp;nbsp;&lt;b&gt;DNSMasq&lt;/b&gt;&amp;nbsp;sub section&lt;/li&gt;
&lt;li&gt;Enable both&amp;nbsp;&lt;b&gt;DNSMasq&lt;/b&gt;&amp;nbsp;and&amp;nbsp;&lt;b&gt;Local DNS&lt;/b&gt;&amp;nbsp;options&lt;/li&gt;
&lt;li&gt;In the&amp;nbsp;&lt;b&gt;Additional DNSMasq Options&lt;/b&gt;&amp;nbsp;text box, enter:&lt;/li&gt;
&lt;blockquote&gt;
no-resolv&lt;br /&gt;
strict-order&lt;br /&gt;
server=8.8.8.8&lt;br /&gt;
server=8.8.4.4&lt;/blockquote&gt;
&lt;li&gt;Click&amp;nbsp;&lt;b&gt;Apply Settings&lt;/b&gt;&lt;/li&gt;
&lt;/ol&gt;
&lt;br /&gt;
Reference:&lt;br /&gt;
&lt;span id=&quot;ref1&quot;&gt;[1]:&amp;nbsp;&lt;a href=&quot;http://lifehacker.com/5835775/google-dns-and-opendns-users-are-getting-a-web-speed-boost&quot;&gt;http://lifehacker.com/5835775/google-dns-and-opendns-users-are-getting-a-web-speed-boost&lt;/a&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span id=&quot;ref1&quot;&gt;[2]:&amp;nbsp;&lt;a href=&quot;http://www.dd-wrt.com/wiki/index.php/OpenDNS&quot;&gt;http://www.dd-wrt.com/wiki/index.php/OpenDNS&lt;/a&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span id=&quot;ref1&quot;&gt;[3]:&amp;nbsp;&lt;a href=&quot;http://code.google.com/speed/public-dns/docs/using.html&quot;&gt;http://code.google.com/speed/public-dns/docs/using.html&lt;/a&gt;&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;&lt;div class=&quot;blogger-post-footer&quot;&gt;&lt;br /&gt;&lt;hr /&gt;&lt;hr /&gt;&lt;br /&gt;Visit my blog @ &lt;a href=&quot;http://sungamagnus.blogspot.com/&quot;&gt;http://sungamagnus.blogspot.com&lt;/a&gt;
or Subscribe to my blog @ &lt;a href=&quot;http://feeds.feedburner.com/sungaMagnus&quot;&gt;Subscribe&lt;/a&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://sungamagnus.blogspot.com/feeds/3863059133693882265/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/4109279768306248422/3863059133693882265' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4109279768306248422/posts/default/3863059133693882265'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4109279768306248422/posts/default/3863059133693882265'/><link rel='alternate' type='text/html' href='http://sungamagnus.blogspot.com/2011/08/set-up-dd-wrt-router-to-use-google.html' title='Set Up DD-WRT Router To Use Google DNS/OpenDNS'/><author><name>sungaMagnus</name><uri>http://www.blogger.com/profile/05085014344369229065</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg84ND9YFn-0zCI4dag2MlXINoj8g9zIPBcxFguLSqe7kZC-OOeU6vXt1g1K6C8uy615PCDTK2q1Ak6sJwiCBYZFmeZu35MOCdLyIY2-l1qSa0ml7lpT_wUU9Hr3qjDTosmt7h0nvQIwzRv/s72-c/1314835174726.png" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4109279768306248422.post-7133531525816600133</id><published>2011-03-02T12:39:00.000-08:00</published><updated>2011-03-02T12:39:09.916-08:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="command line"/><category scheme="http://www.blogger.com/atom/ns#" term="dstat"/><category scheme="http://www.blogger.com/atom/ns#" term="Interesting"/><category scheme="http://www.blogger.com/atom/ns#" term="Linux"/><category scheme="http://www.blogger.com/atom/ns#" term="Open Source"/><category scheme="http://www.blogger.com/atom/ns#" term="system"/><category scheme="http://www.blogger.com/atom/ns#" term="Tips"/><category scheme="http://www.blogger.com/atom/ns#" term="Ubuntu"/><title type='text'>Useful System Statistics Linux/Ubuntu Command Line Program - Dstat</title><content type='html'>&lt;table align=&quot;center&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; class=&quot;tr-caption-container&quot; style=&quot;margin-left: auto; margin-right: auto; text-align: center;&quot;&gt;&lt;tbody&gt;
&lt;tr&gt;&lt;td style=&quot;text-align: center;&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh1XONaiVhlXlhNTtWU4gPFJUA7EwKUt_NGPckYfMLPJFYXQCVUCH22BJPANiNY3ANJFgK4pEfXA71kmqXgFDy2we5-6oWl_7LgTqX1bYIKQwerrtdJOZWiL5g_OVXX0bWIKGdFS-3Yc3UD/s1600/2011.03.02_Dstat.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: auto; margin-right: auto;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh1XONaiVhlXlhNTtWU4gPFJUA7EwKUt_NGPckYfMLPJFYXQCVUCH22BJPANiNY3ANJFgK4pEfXA71kmqXgFDy2we5-6oWl_7LgTqX1bYIKQwerrtdJOZWiL5g_OVXX0bWIKGdFS-3Yc3UD/s1600/2011.03.02_Dstat.png&quot; /&gt;&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;tr-caption&quot; style=&quot;text-align: center;&quot;&gt;Sample dstat output from my Ubuntu desktop&lt;/td&gt;&lt;/tr&gt;
&lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;
I was looking for for a Ubuntu command line program to monitor my desktop&#39;s network speed. &amp;nbsp;I found this &lt;a href=&quot;http://ubuntuforums.org/showthread.php?t=214042&quot;&gt;ubuntuforums.org&lt;/a&gt;&amp;nbsp;page that mention dstat. &amp;nbsp;It&#39;s easy to install&lt;br /&gt;
&lt;blockquote&gt;sudo apt-get install dstat&lt;/blockquote&gt;It not only monitor your network card speed, but also monitor cpu, disk i/o and many more. &amp;nbsp;See the &lt;a href=&quot;http://dag.wieers.com/home-made/dstat/&quot;&gt;dstat official page&lt;/a&gt; for more information.&lt;br /&gt;
&lt;br /&gt;
Btw, here&#39;s the &lt;a href=&quot;http://dag.wieers.com/home-made/dstat/dstat.1.html&quot;&gt;dstat man page&lt;/a&gt; (manual page)&lt;div class=&quot;blogger-post-footer&quot;&gt;&lt;br /&gt;&lt;hr /&gt;&lt;hr /&gt;&lt;br /&gt;Visit my blog @ &lt;a href=&quot;http://sungamagnus.blogspot.com/&quot;&gt;http://sungamagnus.blogspot.com&lt;/a&gt;
or Subscribe to my blog @ &lt;a href=&quot;http://feeds.feedburner.com/sungaMagnus&quot;&gt;Subscribe&lt;/a&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://sungamagnus.blogspot.com/feeds/7133531525816600133/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/4109279768306248422/7133531525816600133' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4109279768306248422/posts/default/7133531525816600133'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4109279768306248422/posts/default/7133531525816600133'/><link rel='alternate' type='text/html' href='http://sungamagnus.blogspot.com/2011/03/useful-system-statistics-linuxubuntu.html' title='Useful System Statistics Linux/Ubuntu Command Line Program - Dstat'/><author><name>sungaMagnus</name><uri>http://www.blogger.com/profile/05085014344369229065</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh1XONaiVhlXlhNTtWU4gPFJUA7EwKUt_NGPckYfMLPJFYXQCVUCH22BJPANiNY3ANJFgK4pEfXA71kmqXgFDy2we5-6oWl_7LgTqX1bYIKQwerrtdJOZWiL5g_OVXX0bWIKGdFS-3Yc3UD/s72-c/2011.03.02_Dstat.png" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4109279768306248422.post-5075834379565634210</id><published>2011-01-12T22:25:00.000-08:00</published><updated>2011-01-12T22:25:42.436-08:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Fun"/><category scheme="http://www.blogger.com/atom/ns#" term="Linux"/><category scheme="http://www.blogger.com/atom/ns#" term="Open Source"/><category scheme="http://www.blogger.com/atom/ns#" term="Proxy"/><category scheme="http://www.blogger.com/atom/ns#" term="Tips"/><title type='text'>I Can&#39;t Turn On my NSLU2</title><content type='html'>Today, I couldn&#39;t connect to my &lt;a href=&quot;http://en.wikipedia.org/wiki/NSLU2&quot;&gt;NSLU2&lt;/a&gt; at home. &amp;nbsp;After I came back home and found that my device was off and couldn&#39;t turn it back on. &amp;nbsp;When I click on power button, the power button blinked once. &amp;nbsp;Oh no, did my NSLU2 hardware fail?????&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;a href=&quot;http://upload.wikimedia.org/wikipedia/commons/4/46/NSLU2_Front_resized.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;320&quot; src=&quot;http://upload.wikimedia.org/wikipedia/commons/4/46/NSLU2_Front_resized.jpg&quot; width=&quot;114&quot; /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-size: x-small;&quot;&gt;[Source:&amp;nbsp;&lt;a href=&quot;http://commons.wikimedia.org/wiki/File:NSLU2_Front_resized.jpg&quot;&gt;http://commons.wikimedia.org/wiki/File:NSLU2_Front_resized.jpg&lt;/a&gt;]&lt;/span&gt;&lt;/div&gt;&lt;br /&gt;
What would I do? &amp;nbsp;Of course, I will &lt;a href=&quot;http://www.google.com/search?q=can&#39;t+turn+on+my+nslu2&quot;&gt;Google&lt;/a&gt; it and the &lt;a href=&quot;http://old.nabble.com/NSLU2-won&#39;t-power-on-(power-light-flashes)-td13476313.html&quot;&gt;9th result&lt;/a&gt; solves my problem. &lt;br /&gt;
&lt;br /&gt;
It turns out the power&amp;nbsp;adapter (DC Output: 5.0VDC 2.0A) is faulty. &amp;nbsp;And lucky I could find a (5V 2.4A) adapter to replace it. &amp;nbsp;(I&#39;m not good at electricity stuff. &amp;nbsp;Hope the extra 0.4A wouldn&#39;t do any thing bad to my NSLU2).&lt;br /&gt;
&lt;br /&gt;
Good that I only spend 2 hours to make it works again since it&#39;s my little home server.&lt;div class=&quot;blogger-post-footer&quot;&gt;&lt;br /&gt;&lt;hr /&gt;&lt;hr /&gt;&lt;br /&gt;Visit my blog @ &lt;a href=&quot;http://sungamagnus.blogspot.com/&quot;&gt;http://sungamagnus.blogspot.com&lt;/a&gt;
or Subscribe to my blog @ &lt;a href=&quot;http://feeds.feedburner.com/sungaMagnus&quot;&gt;Subscribe&lt;/a&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://sungamagnus.blogspot.com/feeds/5075834379565634210/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/4109279768306248422/5075834379565634210' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4109279768306248422/posts/default/5075834379565634210'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4109279768306248422/posts/default/5075834379565634210'/><link rel='alternate' type='text/html' href='http://sungamagnus.blogspot.com/2011/01/i-cant-turn-on-my-nslu2.html' title='I Can&#39;t Turn On my NSLU2'/><author><name>sungaMagnus</name><uri>http://www.blogger.com/profile/05085014344369229065</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4109279768306248422.post-1708514207262119791</id><published>2010-09-16T12:26:00.000-07:00</published><updated>2010-09-16T15:38:39.013-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Tips"/><category scheme="http://www.blogger.com/atom/ns#" term="Ubuntu"/><category scheme="http://www.blogger.com/atom/ns#" term="Vi"/><title type='text'>Arrow Key In Vi Showing A B C D</title><content type='html'>[Update: After some discussion with my friends. &amp;nbsp;The following only true for Ubuntu Desktop version. &amp;nbsp;By default, Ubuntu Server version installs full version of &quot;vi&quot;. 2010.09.16 1538]&lt;br /&gt;
&lt;br /&gt;
If you are using Vi text editor in Ubuntu&amp;nbsp;and found that entering arrow key (up, down, left and right) resulting the letter A, B, C and D. &amp;nbsp; That&#39;s because by default, Ubuntu install &quot;vim.tiny&quot; instead of the full version &quot;vim&quot;.&lt;br /&gt;
&lt;br /&gt;
To solve it, it&#39;s easy, just install the full version &quot;vim&quot;&lt;br /&gt;
&lt;blockquote&gt;sudo apt-get install vim&lt;/blockquote&gt;[via:&amp;nbsp;&lt;a href=&quot;http://ubuntuforums.org/archive/index.php/t-291853.html&quot;&gt;http://ubuntuforums.org/archive/index.php/t-291853.html&lt;/a&gt;]&lt;div class=&quot;blogger-post-footer&quot;&gt;&lt;br /&gt;&lt;hr /&gt;&lt;hr /&gt;&lt;br /&gt;Visit my blog @ &lt;a href=&quot;http://sungamagnus.blogspot.com/&quot;&gt;http://sungamagnus.blogspot.com&lt;/a&gt;
or Subscribe to my blog @ &lt;a href=&quot;http://feeds.feedburner.com/sungaMagnus&quot;&gt;Subscribe&lt;/a&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://sungamagnus.blogspot.com/feeds/1708514207262119791/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/4109279768306248422/1708514207262119791' title='4 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4109279768306248422/posts/default/1708514207262119791'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4109279768306248422/posts/default/1708514207262119791'/><link rel='alternate' type='text/html' href='http://sungamagnus.blogspot.com/2010/09/arrow-key-in-vi-showing-b-c-d.html' title='Arrow Key In Vi Showing A B C D'/><author><name>sungaMagnus</name><uri>http://www.blogger.com/profile/05085014344369229065</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>4</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4109279768306248422.post-1600246972255157093</id><published>2010-08-18T18:51:00.000-07:00</published><updated>2010-08-18T18:59:32.014-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Fun"/><category scheme="http://www.blogger.com/atom/ns#" term="Google"/><category scheme="http://www.blogger.com/atom/ns#" term="Interesting"/><category scheme="http://www.blogger.com/atom/ns#" term="Picasa"/><category scheme="http://www.blogger.com/atom/ns#" term="Tips"/><category scheme="http://www.blogger.com/atom/ns#" term="Video"/><title type='text'>Picasa New Feature - Face Movies</title><content type='html'>&lt;div style=&quot;text-align: center;&quot;&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;a href=&quot;http://picasa.google.com/&quot;&gt;Google Picasa&lt;/a&gt; releases a &lt;a href=&quot;http://googlephotos.blogspot.com/2010/08/picasa-38-face-movies-picnik.html&quot;&gt;new version - 3.8&lt;/a&gt;&amp;nbsp;yesterday. &amp;nbsp;New features include:&lt;/div&gt;&lt;/div&gt;&lt;ol&gt;&lt;li&gt;Picnik integration&lt;/li&gt;
&lt;li&gt;Batch upload from Picasa to Picasa Web Albums&lt;/li&gt;
&lt;li&gt;Metadata updates&lt;/li&gt;
&lt;li&gt;Face Movie&lt;/li&gt;
&lt;/ol&gt;&lt;div&gt;The most interesting feature is &quot;Face Movie.&quot; &amp;nbsp;Quote from their &lt;a href=&quot;http://googlephotos.blogspot.com/2010/08/picasa-38-face-movies-picnik.html&quot;&gt;blog&lt;/a&gt;.&lt;/div&gt;&lt;blockquote&gt;Face movies create a movie based around one person both figuratively and literally. Instead of the usual transition from one photo to the next, the images align themselves to the face in the photo. This creates an extremely smooth viewing experience which allows the person in the photos to remain the focus rather than the transition effects themselves.&amp;nbsp;&lt;/blockquote&gt;&lt;div&gt;&lt;div style=&quot;text-align: left;&quot;&gt;Here is a video I made up in 5 min. (&lt;a href=&quot;http://youtu.be/UxW6MaXoBfk&quot;&gt;http://youtu.be/UxW6MaXoBfk&lt;/a&gt;)&lt;/div&gt;&lt;/div&gt;&lt;div&gt;&lt;div style=&quot;text-align: center;&quot;&gt;&lt;object height=&quot;385&quot; width=&quot;480&quot;&gt;&lt;param name=&quot;movie&quot; value=&quot;http://www.youtube.com/v/UxW6MaXoBfk?fs=1&amp;amp;hl=en_US&amp;amp;rel=0&quot;&gt;&lt;/param&gt;&lt;param name=&quot;allowFullScreen&quot; value=&quot;true&quot;&gt;&lt;/param&gt;&lt;param name=&quot;allowscriptaccess&quot; value=&quot;always&quot;&gt;&lt;/param&gt;&lt;embed src=&quot;http://www.youtube.com/v/UxW6MaXoBfk?fs=1&amp;amp;hl=en_US&amp;amp;rel=0&quot; type=&quot;application/x-shockwave-flash&quot; allowscriptaccess=&quot;always&quot; allowfullscreen=&quot;true&quot; width=&quot;480&quot; height=&quot;385&quot;&gt;&lt;/embed&gt;&lt;/object&gt;&lt;/div&gt;&lt;/div&gt;&lt;br /&gt;
This feature will be good for telling someone&#39;s life for a baby or in a wedding.&lt;br /&gt;
&lt;br /&gt;
Here is the video created by Google to introduce this feature. &amp;nbsp;(&lt;a href=&quot;http://youtu.be/fLQtssJDMMc&quot;&gt;http://youtu.be/fLQtssJDMMc&lt;/a&gt;)&lt;br /&gt;
&lt;div style=&quot;text-align: center;&quot;&gt;&lt;object height=&quot;385&quot; width=&quot;640&quot;&gt;&lt;param name=&quot;movie&quot; value=&quot;http://www.youtube.com/v/fLQtssJDMMc?fs=1&amp;amp;hl=en_US&amp;amp;rel=0&quot;&gt;&lt;/param&gt;&lt;param name=&quot;allowFullScreen&quot; value=&quot;true&quot;&gt;&lt;/param&gt;&lt;param name=&quot;allowscriptaccess&quot; value=&quot;always&quot;&gt;&lt;/param&gt;&lt;embed src=&quot;http://www.youtube.com/v/fLQtssJDMMc?fs=1&amp;amp;hl=en_US&amp;amp;rel=0&quot; type=&quot;application/x-shockwave-flash&quot; allowscriptaccess=&quot;always&quot; allowfullscreen=&quot;true&quot; width=&quot;640&quot; height=&quot;385&quot;&gt;&lt;/embed&gt;&lt;/object&gt;&lt;/div&gt;&lt;div class=&quot;blogger-post-footer&quot;&gt;&lt;br /&gt;&lt;hr /&gt;&lt;hr /&gt;&lt;br /&gt;Visit my blog @ &lt;a href=&quot;http://sungamagnus.blogspot.com/&quot;&gt;http://sungamagnus.blogspot.com&lt;/a&gt;
or Subscribe to my blog @ &lt;a href=&quot;http://feeds.feedburner.com/sungaMagnus&quot;&gt;Subscribe&lt;/a&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://sungamagnus.blogspot.com/feeds/1600246972255157093/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/4109279768306248422/1600246972255157093' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4109279768306248422/posts/default/1600246972255157093'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4109279768306248422/posts/default/1600246972255157093'/><link rel='alternate' type='text/html' href='http://sungamagnus.blogspot.com/2010/08/picasa-new-feature-face-movies.html' title='Picasa New Feature - Face Movies'/><author><name>sungaMagnus</name><uri>http://www.blogger.com/profile/05085014344369229065</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4109279768306248422.post-5223744564334843822</id><published>2010-08-07T16:59:00.000-07:00</published><updated>2010-08-07T16:59:07.096-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Tips"/><category scheme="http://www.blogger.com/atom/ns#" term="Ubuntu"/><category scheme="http://www.blogger.com/atom/ns#" term="Windows"/><category scheme="http://www.blogger.com/atom/ns#" term="WOL"/><title type='text'>Turn On Home Ubuntu Computer When You are Not Home On Demand</title><content type='html'>You can turn on any computer remotely using Wake-on-LAN (or WOL). It&#39;s really handy if you need to grab a file from your home computer but you don&#39;t want to turn on that computer 24/7 just for one file.&lt;br /&gt;
&lt;br /&gt;
Requirement:&lt;br /&gt;
&lt;ol&gt;&lt;li&gt;You need to know something about computer/Bios/LAN/Router as I can&#39;t explain everything here.&lt;/li&gt;
&lt;li&gt;You need to somehow able to be in your home LAN. &amp;nbsp;Possible methods:&lt;/li&gt;

&lt;ol&gt;&lt;li&gt;You can VPN back to your home network.&lt;/li&gt;
&lt;li&gt;You can ssh back to your home server (This is what I do)&lt;/li&gt;
&lt;li&gt;You forward port 0,7 or 9 on your home router to your computer. (highly NOT recommended since everyone will be possible to turn on your computer)&lt;/li&gt;
&lt;/ol&gt;&lt;/ol&gt;Steps:&lt;br /&gt;
Let&#39;s call your home computer &quot;Computer A&quot; and your other computer &quot;Computer B&quot;&lt;br /&gt;
&lt;br /&gt;
In &quot;Computer A&quot;&lt;br /&gt;
&lt;ol&gt;&lt;li&gt;Go to your BIOS, and turn on WakeOnLAN. I might be called something else. Look for something like &quot;Wake On Lan,&quot; &quot;Remote Wake Up&quot; or etc.&lt;/li&gt;
&lt;li&gt;Turn on WOL&lt;/li&gt;

&lt;ol&gt;&lt;li&gt;Find out your network interface name by &quot;ifconfig&quot;. Normally it&#39;s similar to &quot;eth0.&quot;&lt;/li&gt;
&lt;li&gt;Turn on WOL&lt;br /&gt;
&lt;br /&gt;
&lt;blockquote&gt;ethtool -s eth0 wol g&lt;/blockquote&gt;Since the effect of this command only last till next restart, you will need to set up a script to turn it on every time you start your &quot;Computer A&quot; - See Reference 1 - &lt;a href=&quot;http://ubuntuforums.org/showthread.php?t=234588&quot;&gt;http://ubuntuforums.org/showthread.php?t=234588&lt;/a&gt; for detail&lt;/li&gt;
&lt;li&gt;Find out your network interface&#39;s MAC address&lt;br /&gt;
&lt;br /&gt;
&lt;blockquote&gt;ifconfig | grep HW | cut -d&#39; &#39; -f11-&lt;/blockquote&gt;it&#39;s something like &quot;12:34:56:78:9a:bc&quot;. Copy it down and turn off your computer.&lt;/li&gt;
&lt;li&gt;(Optional) If your &quot;Computer B&quot; is a Windows machine, you will also need to find out Computer A&#39;s ip address.&lt;br /&gt;
&lt;br /&gt;
&lt;blockquote&gt;ifconfig | grep &quot;inet addr&quot; | cut -d&#39; &#39; -f12-12| tr -d &#39;adr:&#39;&lt;/blockquote&gt;It will look like &#39;192.168.1.127&#39;&lt;/li&gt;
&lt;/ol&gt;&lt;/ol&gt;&lt;div&gt;In &quot;Computer B&quot;&lt;/div&gt;&lt;div&gt;&lt;ol&gt;&lt;li&gt;If it is a Ubuntu or any other Linux distro.&lt;br /&gt;
&lt;br /&gt;
&lt;blockquote&gt;wakeonlan&amp;nbsp;12:34:56:78:9a:bc&lt;/blockquote&gt;the above command should be sufficient. &amp;nbsp;If it doesn&#39;t work, try the command again with port 7.&lt;br /&gt;
&lt;br /&gt;
&lt;blockquote&gt;wakeonlan -p 7&amp;nbsp;12:34:56:78:9a:bc&lt;/blockquote&gt;&lt;/li&gt;
&lt;li&gt;If it is a Windows machine, try the following.&lt;br /&gt;
&lt;br /&gt;
&lt;blockquote&gt;wolcmd 123456789abc&amp;nbsp;192.168.1.127&amp;nbsp;255.255.255.255 7&lt;/blockquote&gt;&lt;/li&gt;
&lt;/ol&gt;&lt;/div&gt;Hope it helps someone.&lt;br /&gt;
&lt;br /&gt;
Reference:&lt;br /&gt;
&lt;a href=&quot;http://ubuntuforums.org/showthread.php?t=234588&quot;&gt;http://ubuntuforums.org/showthread.php?t=234588&lt;/a&gt;&lt;br /&gt;
&lt;a href=&quot;http://en.wikipedia.org/wiki/Wake-on-LAN&quot;&gt;http://en.wikipedia.org/wiki/Wake-on-LAN&lt;/a&gt;&lt;br /&gt;
&lt;a href=&quot;http://en.wikipedia.org/wiki/Wake-on-LAN#Sending_the_magic_packet&quot;&gt;http://en.wikipedia.org/wiki/Wake-on-LAN#Sending_the_magic_packet&lt;/a&gt;&lt;div class=&quot;blogger-post-footer&quot;&gt;&lt;br /&gt;&lt;hr /&gt;&lt;hr /&gt;&lt;br /&gt;Visit my blog @ &lt;a href=&quot;http://sungamagnus.blogspot.com/&quot;&gt;http://sungamagnus.blogspot.com&lt;/a&gt;
or Subscribe to my blog @ &lt;a href=&quot;http://feeds.feedburner.com/sungaMagnus&quot;&gt;Subscribe&lt;/a&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://sungamagnus.blogspot.com/feeds/5223744564334843822/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/4109279768306248422/5223744564334843822' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4109279768306248422/posts/default/5223744564334843822'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4109279768306248422/posts/default/5223744564334843822'/><link rel='alternate' type='text/html' href='http://sungamagnus.blogspot.com/2010/08/turn-on-home-ubuntu-computer-when-you.html' title='Turn On Home Ubuntu Computer When You are Not Home On Demand'/><author><name>sungaMagnus</name><uri>http://www.blogger.com/profile/05085014344369229065</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4109279768306248422.post-2064448854242527006</id><published>2010-07-28T21:57:00.000-07:00</published><updated>2010-07-28T21:57:11.108-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Proxy"/><category scheme="http://www.blogger.com/atom/ns#" term="Tips"/><category scheme="http://www.blogger.com/atom/ns#" term="Ubuntu"/><category scheme="http://www.blogger.com/atom/ns#" term="Update"/><title type='text'>Cache Ubuntu Update to Speed Up Update and Save Bandwidth</title><content type='html'>If you have several Ubuntu machines at home, every time there is a new package, you will need to download the same package several times. &lt;br /&gt;
Just found out a package called&amp;nbsp;squid-deb-proxy. &amp;nbsp;You will need to have a server and install&lt;br /&gt;
&lt;blockquote&gt;sudo apt-get install squid-deb-proxy avahi-utils&lt;/blockquote&gt;and in other machines install:&lt;br /&gt;
&lt;blockquote&gt;sudo apt-get install squid-deb-proxy-client&lt;/blockquote&gt;From now on,&amp;nbsp;&quot;avahi&quot; on the server will advertise the proxy server in your network.&lt;br /&gt;
And when you download any package from any of your local machines, it will see the proxy server and download the package through the server. &lt;br /&gt;
&lt;br /&gt;
[via:&amp;nbsp;&lt;a href=&quot;http://castrojo.wordpress.com/2010/02/28/zeroconfing-squid-deb-proxy/&quot;&gt;http://castrojo.wordpress.com/2010/02/28/zeroconfing-squid-deb-proxy/&lt;/a&gt;]&lt;div class=&quot;blogger-post-footer&quot;&gt;&lt;br /&gt;&lt;hr /&gt;&lt;hr /&gt;&lt;br /&gt;Visit my blog @ &lt;a href=&quot;http://sungamagnus.blogspot.com/&quot;&gt;http://sungamagnus.blogspot.com&lt;/a&gt;
or Subscribe to my blog @ &lt;a href=&quot;http://feeds.feedburner.com/sungaMagnus&quot;&gt;Subscribe&lt;/a&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://sungamagnus.blogspot.com/feeds/2064448854242527006/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/4109279768306248422/2064448854242527006' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4109279768306248422/posts/default/2064448854242527006'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4109279768306248422/posts/default/2064448854242527006'/><link rel='alternate' type='text/html' href='http://sungamagnus.blogspot.com/2010/07/cache-ubuntu-update-to-speed-up-update.html' title='Cache Ubuntu Update to Speed Up Update and Save Bandwidth'/><author><name>sungaMagnus</name><uri>http://www.blogger.com/profile/05085014344369229065</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4109279768306248422.post-7700295895512688791</id><published>2010-03-11T11:23:00.000-08:00</published><updated>2012-10-11T14:45:35.475-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="GMaps"/><category scheme="http://www.blogger.com/atom/ns#" term="Google"/><category scheme="http://www.blogger.com/atom/ns#" term="Tips"/><title type='text'>Google Street View Arrived @ Hong Kong and Macau</title><content type='html'>&lt;div style=&quot;text-align: left;&quot;&gt;
[Update: Google blogs about &lt;a href=&quot;http://google-latlong.blogspot.com/2010/03/street-view-of-old-and-new.html&quot;&gt;Street View in Hong Kong&lt;/a&gt;]&lt;br /&gt;
[Via&amp;nbsp;&lt;a href=&quot;http://blogoscoped.com/archive/2010-03-11-n19.html&quot;&gt;blogoscoped.com&lt;/a&gt;&amp;nbsp;and&amp;nbsp;&lt;a href=&quot;http://gspy.blogspot.com/2010/03/google-maps-street-view-in-hong-kong.html&quot;&gt;gspy.blogspot.com&lt;/a&gt;]&lt;/div&gt;
Finally, Google Street View arrived at Hong Kong and Macau (only the southern half). &amp;nbsp; It will be very handy next time I go to Hong Kong and Macau.&lt;br /&gt;
Here are some places I visited last time I went back to Hong Kong and Macau.&lt;br /&gt;
If you can&#39;t see the embedded Google Map below, click &lt;a href=&quot;http://sungamagnus.blogspot.com/2010/03/google-street-view-arrived-hong-kong.html&quot;&gt;here&lt;/a&gt;.&lt;br /&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial, sans-serif; font-size: 19px; line-height: 25px;&quot;&gt;如果你無法看到下面嵌入的谷歌地圖，請點擊&lt;a href=&quot;http://sungamagnus.blogspot.com/2010/03/google-street-view-arrived-hong-kong.html&quot;&gt;這裡&lt;/a&gt;.&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
Stanley, Hong Kong | 香港, 赤柱&lt;br /&gt;
&lt;iframe frameborder=&quot;0&quot; height=&quot;350&quot; marginheight=&quot;0&quot; marginwidth=&quot;0&quot; scrolling=&quot;no&quot; src=&quot;http://maps.google.com/maps?f=q&amp;amp;source=embed&amp;amp;hl=en&amp;amp;geocode=&amp;amp;sll=22.298547,114.177046&amp;amp;sspn=0.045583,0.109863&amp;amp;ie=UTF8&amp;amp;hq=hotel+panorama,&amp;amp;hnear=New+Territories,+Hong+Kong&amp;amp;layer=c&amp;amp;cbll=22.218716,114.210193&amp;amp;panoid=OclZ85KNWD-M04IEtG1W6Q&amp;amp;cbp=13,89.05,,0,-9&amp;amp;ll=22.21873,114.209023&amp;amp;spn=0,359.995585&amp;amp;t=h&amp;amp;z=18&amp;amp;output=svembed&quot; width=&quot;425&quot;&gt;&lt;/iframe&gt;&lt;br /&gt;
&lt;small&gt;&lt;a href=&quot;http://maps.google.com/maps?f=q&amp;amp;source=embed&amp;amp;hl=en&amp;amp;geocode=&amp;amp;sll=22.298547,114.177046&amp;amp;sspn=0.045583,0.109863&amp;amp;ie=UTF8&amp;amp;hq=hotel+panorama,&amp;amp;hnear=New+Territories,+Hong+Kong&amp;amp;layer=c&amp;amp;cbll=22.218716,114.210193&amp;amp;panoid=OclZ85KNWD-M04IEtG1W6Q&amp;amp;cbp=13,89.05,,0,-9&amp;amp;ll=22.21873,114.209023&amp;amp;spn=0,359.995585&amp;amp;t=h&amp;amp;z=18&quot; style=&quot;color: blue; text-align: left;&quot;&gt;View Larger Map&lt;/a&gt;&lt;/small&gt;&lt;br /&gt;
&lt;br /&gt;
Hong Kong International Airport | 香港國際機場&lt;br /&gt;
&lt;iframe frameborder=&quot;0&quot; height=&quot;350&quot; marginheight=&quot;0&quot; marginwidth=&quot;0&quot; scrolling=&quot;no&quot; src=&quot;http://maps.google.com/maps?f=q&amp;amp;source=embed&amp;amp;hl=en&amp;amp;geocode=&amp;amp;sll=22.298547,114.177046&amp;amp;sspn=0.045583,0.109863&amp;amp;ie=UTF8&amp;amp;hq=hotel+panorama,&amp;amp;hnear=New+Territories,+Hong+Kong&amp;amp;layer=c&amp;amp;cbll=22.314301,113.936782&amp;amp;panoid=wYjp54u2sbofb6Ure6Y8nA&amp;amp;cbp=13,296.42,,0,-5.96&amp;amp;ll=22.314468,113.936677&amp;amp;spn=0,359.982405&amp;amp;t=h&amp;amp;z=16&amp;amp;output=svembed&quot; width=&quot;425&quot;&gt;&lt;/iframe&gt;&lt;br /&gt;
&lt;small&gt;&lt;a href=&quot;http://maps.google.com/maps?f=q&amp;amp;source=embed&amp;amp;hl=en&amp;amp;geocode=&amp;amp;sll=22.298547,114.177046&amp;amp;sspn=0.045583,0.109863&amp;amp;ie=UTF8&amp;amp;hq=hotel+panorama,&amp;amp;hnear=New+Territories,+Hong+Kong&amp;amp;layer=c&amp;amp;cbll=22.314301,113.936782&amp;amp;panoid=wYjp54u2sbofb6Ure6Y8nA&amp;amp;cbp=13,296.42,,0,-5.96&amp;amp;ll=22.314468,113.936677&amp;amp;spn=0,359.982405&amp;amp;t=h&amp;amp;z=16&quot; style=&quot;color: blue; text-align: left;&quot;&gt;View Larger Map&lt;/a&gt;&lt;/small&gt;&lt;br /&gt;
&lt;br /&gt;
Hong Kong Coliseum | 香港體育館&lt;br /&gt;
&lt;iframe frameborder=&quot;0&quot; height=&quot;350&quot; marginheight=&quot;0&quot; marginwidth=&quot;0&quot; scrolling=&quot;no&quot; src=&quot;http://maps.google.com/maps?f=q&amp;amp;source=embed&amp;amp;hl=en&amp;amp;geocode=&amp;amp;sll=22.298547,114.177046&amp;amp;sspn=0.045583,0.109863&amp;amp;ie=UTF8&amp;amp;hq=hotel+panorama,&amp;amp;hnear=New+Territories,+Hong+Kong&amp;amp;layer=c&amp;amp;cbll=22.301999,114.181191&amp;amp;panoid=wBH_F2R-6iTaAdT49qUfgQ&amp;amp;cbp=13,129.89,,0,-16.66&amp;amp;ll=22.301991,114.181305&amp;amp;spn=0,359.995585&amp;amp;t=h&amp;amp;z=18&amp;amp;output=svembed&quot; width=&quot;425&quot;&gt;&lt;/iframe&gt;&lt;br /&gt;
&lt;small&gt;&lt;a href=&quot;http://maps.google.com/maps?f=q&amp;amp;source=embed&amp;amp;hl=en&amp;amp;geocode=&amp;amp;sll=22.298547,114.177046&amp;amp;sspn=0.045583,0.109863&amp;amp;ie=UTF8&amp;amp;hq=hotel+panorama,&amp;amp;hnear=New+Territories,+Hong+Kong&amp;amp;layer=c&amp;amp;cbll=22.301999,114.181191&amp;amp;panoid=wBH_F2R-6iTaAdT49qUfgQ&amp;amp;cbp=13,129.89,,0,-16.66&amp;amp;ll=22.301991,114.181305&amp;amp;spn=0,359.995585&amp;amp;t=h&amp;amp;z=18&quot; style=&quot;color: blue; text-align: left;&quot;&gt;View Larger Map&lt;/a&gt;&lt;/small&gt;&lt;br /&gt;
&lt;br /&gt;
The Ruins of St. Paul&#39;s, Macau | Ruinas de Sao Paulo, Macau | 澳門, 大三巴牌坊&lt;br /&gt;
&lt;strike&gt;Note: They don&#39;t have&amp;nbsp;it yet. (Will add the Street View if Google updates it)&lt;/strike&gt;&lt;br /&gt;
Update: 10/11/2012 - Google Street View updated&lt;br /&gt;
&lt;iframe frameborder=&quot;0&quot; height=&quot;350&quot; marginheight=&quot;0&quot; marginwidth=&quot;0&quot; scrolling=&quot;no&quot; src=&quot;https://maps.google.com/maps?q=Ruins+of+Saint+Paul&#39;s+Cathedral&amp;amp;hl=en&amp;amp;cid=15890214141929449585&amp;amp;gl=US&amp;amp;t=h&amp;amp;layer=c&amp;amp;cbll=22.197248,113.541026&amp;amp;panoid=Yv7uiYB3HfY65wOXA9XiJw&amp;amp;cbp=12,331.05,,0,-4.83&amp;amp;ie=UTF8&amp;amp;ll=22.197461,113.540297&amp;amp;spn=0.001639,0.002025&amp;amp;source=embed&amp;amp;output=svembed&quot; width=&quot;425&quot;&gt;&lt;/iframe&gt;&lt;br /&gt;
&lt;small&gt;&lt;a href=&quot;https://maps.google.com/maps?q=Ruins+of+Saint+Paul&#39;s+Cathedral&amp;amp;hl=en&amp;amp;cid=15890214141929449585&amp;amp;gl=US&amp;amp;t=h&amp;amp;layer=c&amp;amp;cbll=22.197248,113.541026&amp;amp;panoid=Yv7uiYB3HfY65wOXA9XiJw&amp;amp;cbp=12,331.05,,0,-4.83&amp;amp;ie=UTF8&amp;amp;ll=22.197461,113.540297&amp;amp;spn=0.001639,0.002025&amp;amp;source=embed&quot; style=&quot;color: blue; text-align: left;&quot;&gt;View Larger Map&lt;/a&gt;&lt;/small&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Restaurante Tenis Civil (Leon), Macau | 澳門, 利安餐廳&lt;br /&gt;
&lt;iframe frameborder=&quot;0&quot; height=&quot;350&quot; marginheight=&quot;0&quot; marginwidth=&quot;0&quot; scrolling=&quot;no&quot; src=&quot;http://maps.google.com/maps?ie=UTF8&amp;amp;hq=&amp;amp;hnear=Monterey+Park,+Los+Angeles,+California+91755&amp;amp;ll=22.184047,113.534131&amp;amp;spn=0,359.982276&amp;amp;z=16&amp;amp;layer=c&amp;amp;cbll=22.184003,113.534011&amp;amp;panoid=S1DWW7ORr-QR8At-9DcCuQ&amp;amp;cbp=13,304.03,,0,-1.45&amp;amp;source=embed&amp;amp;output=svembed&quot; width=&quot;425&quot;&gt;&lt;/iframe&gt;&lt;br /&gt;
&lt;small&gt;&lt;a href=&quot;http://maps.google.com/maps?ie=UTF8&amp;amp;hq=&amp;amp;hnear=Monterey+Park,+Los+Angeles,+California+91755&amp;amp;ll=22.184047,113.534131&amp;amp;spn=0,359.982276&amp;amp;z=16&amp;amp;layer=c&amp;amp;cbll=22.184003,113.534011&amp;amp;panoid=S1DWW7ORr-QR8At-9DcCuQ&amp;amp;cbp=13,304.03,,0,-1.45&amp;amp;source=embed&quot; style=&quot;color: blue; text-align: left;&quot;&gt;View Larger Map&lt;/a&gt;&lt;/small&gt;&lt;br /&gt;
&lt;br /&gt;
Central, Hong Kong | 香港, 中環&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiRkupz2syoUlWRJ9QUyRvpNyV537thiLdMNJrn-u9Eb55dw7uIrPOGZvPoAOytNWyYueE0V-rlxxQbKeXolLqvLLC76JHHY0HfGzZwCubSwDXZWrdok9ltaQJtiQSwoc7LCKUpCds9Qbsh/s1600-h/Central_Street_View.jpg&quot; imageanchor=&quot;1&quot; style=&quot;clear: left; float: left; margin-bottom: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;350&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiRkupz2syoUlWRJ9QUyRvpNyV537thiLdMNJrn-u9Eb55dw7uIrPOGZvPoAOytNWyYueE0V-rlxxQbKeXolLqvLLC76JHHY0HfGzZwCubSwDXZWrdok9ltaQJtiQSwoc7LCKUpCds9Qbsh/s400/Central_Street_View.jpg&quot; width=&quot;400&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div class=&quot;blogger-post-footer&quot;&gt;&lt;br /&gt;&lt;hr /&gt;&lt;hr /&gt;&lt;br /&gt;Visit my blog @ &lt;a href=&quot;http://sungamagnus.blogspot.com/&quot;&gt;http://sungamagnus.blogspot.com&lt;/a&gt;
or Subscribe to my blog @ &lt;a href=&quot;http://feeds.feedburner.com/sungaMagnus&quot;&gt;Subscribe&lt;/a&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://sungamagnus.blogspot.com/feeds/7700295895512688791/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/4109279768306248422/7700295895512688791' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4109279768306248422/posts/default/7700295895512688791'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4109279768306248422/posts/default/7700295895512688791'/><link rel='alternate' type='text/html' href='http://sungamagnus.blogspot.com/2010/03/google-street-view-arrived-hong-kong.html' title='Google Street View Arrived @ Hong Kong and Macau'/><author><name>sungaMagnus</name><uri>http://www.blogger.com/profile/05085014344369229065</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiRkupz2syoUlWRJ9QUyRvpNyV537thiLdMNJrn-u9Eb55dw7uIrPOGZvPoAOytNWyYueE0V-rlxxQbKeXolLqvLLC76JHHY0HfGzZwCubSwDXZWrdok9ltaQJtiQSwoc7LCKUpCds9Qbsh/s72-c/Central_Street_View.jpg" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4109279768306248422.post-4816340262400529733</id><published>2010-02-25T18:49:00.000-08:00</published><updated>2010-02-25T18:49:31.915-08:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Fun"/><category scheme="http://www.blogger.com/atom/ns#" term="Google"/><category scheme="http://www.blogger.com/atom/ns#" term="Mobile"/><category scheme="http://www.blogger.com/atom/ns#" term="NexusOne"/><title type='text'>New Toy - Nexus One</title><content type='html'>I got a new toy - &lt;a href=&quot;http://www.google.com/phone&quot;&gt;Nexus One&lt;/a&gt;. &amp;nbsp;(Any good app I should try?)&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEicak9EW4Obg16IKgTDAK5BdLUxdB3d2W9lzve8C6ALEYvWm59gqFqwPUPBICsgHJl-f4Ef3lp5XfIZvq56e62nfuPu7dhgwICRk6ToGfXngvukhuq82B9mxyXjLDqHUd-UJps6YGy2exm1/s1600-h/IMG_7523.JPG&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;240&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEicak9EW4Obg16IKgTDAK5BdLUxdB3d2W9lzve8C6ALEYvWm59gqFqwPUPBICsgHJl-f4Ef3lp5XfIZvq56e62nfuPu7dhgwICRk6ToGfXngvukhuq82B9mxyXjLDqHUd-UJps6YGy2exm1/s320/IMG_7523.JPG&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&amp;nbsp;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiH5SQTCy-cVGUYqguJuHJeFmpoOtxgiahhT-a0PgqAlBSd4kfKhvhd0gbrPpvJHhkgTEgsW46J_UVUEKh4gmOnhl2s5NrSNk_vjxDfZ1MSa8QNi-TSYWqnfLyOKISGH2z6tdPDZCb77qtM/s1600-h/IMG_7528.JPG&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;240&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiH5SQTCy-cVGUYqguJuHJeFmpoOtxgiahhT-a0PgqAlBSd4kfKhvhd0gbrPpvJHhkgTEgsW46J_UVUEKh4gmOnhl2s5NrSNk_vjxDfZ1MSa8QNi-TSYWqnfLyOKISGH2z6tdPDZCb77qtM/s320/IMG_7528.JPG&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;
After undated the Firmware to Android 2.1-update1, I got&amp;nbsp;&lt;a href=&quot;http://googlenexusoneboard.blogspot.com/2010/02/new-software-update-for-nexus-one.html&quot;&gt;Pinch-to-zoom,&amp;nbsp;Google Goggles and a updated&amp;nbsp;Google Maps&lt;/a&gt;. &amp;nbsp;Some cool videos about Nexus One below.&lt;br /&gt;
&lt;br /&gt;
&lt;object height=&quot;295&quot; width=&quot;480&quot;&gt;&lt;param name=&quot;movie&quot; value=&quot;http://www.youtube.com/v/R1sz5c-R9h0&amp;hl=en_US&amp;fs=1&amp;&quot;&gt;&lt;/param&gt;&lt;param name=&quot;allowFullScreen&quot; value=&quot;true&quot;&gt;&lt;/param&gt;&lt;param name=&quot;allowscriptaccess&quot; value=&quot;always&quot;&gt;&lt;/param&gt;&lt;embed src=&quot;http://www.youtube.com/v/R1sz5c-R9h0&amp;hl=en_US&amp;fs=1&amp;&quot; type=&quot;application/x-shockwave-flash&quot; allowscriptaccess=&quot;always&quot; allowfullscreen=&quot;true&quot; width=&quot;480&quot; height=&quot;295&quot;&gt;&lt;/embed&gt;&lt;/object&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;object height=&quot;295&quot; width=&quot;480&quot;&gt;&lt;param name=&quot;movie&quot; value=&quot;http://www.youtube.com/v/ArRc5EdyK90&amp;hl=en_US&amp;fs=1&amp;&quot;&gt;&lt;/param&gt;&lt;param name=&quot;allowFullScreen&quot; value=&quot;true&quot;&gt;&lt;/param&gt;&lt;param name=&quot;allowscriptaccess&quot; value=&quot;always&quot;&gt;&lt;/param&gt;&lt;embed src=&quot;http://www.youtube.com/v/ArRc5EdyK90&amp;hl=en_US&amp;fs=1&amp;&quot; type=&quot;application/x-shockwave-flash&quot; allowscriptaccess=&quot;always&quot; allowfullscreen=&quot;true&quot; width=&quot;480&quot; height=&quot;295&quot;&gt;&lt;/embed&gt;&lt;/object&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;object height=&quot;295&quot; width=&quot;480&quot;&gt;&lt;param name=&quot;movie&quot; value=&quot;http://www.youtube.com/v/i7-p15xbXB4&amp;hl=en_US&amp;fs=1&amp;&quot;&gt;&lt;/param&gt;&lt;param name=&quot;allowFullScreen&quot; value=&quot;true&quot;&gt;&lt;/param&gt;&lt;param name=&quot;allowscriptaccess&quot; value=&quot;always&quot;&gt;&lt;/param&gt;&lt;embed src=&quot;http://www.youtube.com/v/i7-p15xbXB4&amp;hl=en_US&amp;fs=1&amp;&quot; type=&quot;application/x-shockwave-flash&quot; allowscriptaccess=&quot;always&quot; allowfullscreen=&quot;true&quot; width=&quot;480&quot; height=&quot;295&quot;&gt;&lt;/embed&gt;&lt;/object&gt;&lt;div class=&quot;blogger-post-footer&quot;&gt;&lt;br /&gt;&lt;hr /&gt;&lt;hr /&gt;&lt;br /&gt;Visit my blog @ &lt;a href=&quot;http://sungamagnus.blogspot.com/&quot;&gt;http://sungamagnus.blogspot.com&lt;/a&gt;
or Subscribe to my blog @ &lt;a href=&quot;http://feeds.feedburner.com/sungaMagnus&quot;&gt;Subscribe&lt;/a&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://sungamagnus.blogspot.com/feeds/4816340262400529733/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/4109279768306248422/4816340262400529733' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4109279768306248422/posts/default/4816340262400529733'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4109279768306248422/posts/default/4816340262400529733'/><link rel='alternate' type='text/html' href='http://sungamagnus.blogspot.com/2010/02/new-toy-nexus-one.html' title='New Toy - Nexus One'/><author><name>sungaMagnus</name><uri>http://www.blogger.com/profile/05085014344369229065</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEicak9EW4Obg16IKgTDAK5BdLUxdB3d2W9lzve8C6ALEYvWm59gqFqwPUPBICsgHJl-f4Ef3lp5XfIZvq56e62nfuPu7dhgwICRk6ToGfXngvukhuq82B9mxyXjLDqHUd-UJps6YGy2exm1/s72-c/IMG_7523.JPG" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4109279768306248422.post-5096748105705944479</id><published>2010-02-17T12:50:00.000-08:00</published><updated>2010-02-17T12:54:07.117-08:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Cloud"/><category scheme="http://www.blogger.com/atom/ns#" term="Google"/><category scheme="http://www.blogger.com/atom/ns#" term="Interesting"/><category scheme="http://www.blogger.com/atom/ns#" term="Mobile"/><category scheme="http://www.blogger.com/atom/ns#" term="Tips"/><title type='text'>Google Goggles - Search With Pictures Instead Of Text</title><content type='html'>&lt;a href=&quot;http://www.google.com/mobile/goggles&quot;&gt;Google Goggles&lt;/a&gt;&amp;nbsp;is an application for Android phone that search the web with picture instead of using text. &amp;nbsp;Below are some examples from their site:&lt;br /&gt;
&lt;table align=&quot;center&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; class=&quot;tr-caption-container&quot; style=&quot;margin-left: auto; margin-right: auto; text-align: center;&quot;&gt;&lt;tbody&gt;
&lt;tr&gt;&lt;td style=&quot;text-align: center;&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjUy6yJMuaYf4yazuwEOn_wnGWGrvVcAOGxYP6Y2IYEyeK-sX0RBWH3Hm_naHP6M4RaEGsV3w6_AWpmidmP88ApVVeFiXCeSH5sCb_Re6NJXylrlnnqytqgtSGckkn5wB5XGwo0xfc8sTuB/s1600-h/GoogleGoggles3_Landmark.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: auto; margin-right: auto;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;160&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjUy6yJMuaYf4yazuwEOn_wnGWGrvVcAOGxYP6Y2IYEyeK-sX0RBWH3Hm_naHP6M4RaEGsV3w6_AWpmidmP88ApVVeFiXCeSH5sCb_Re6NJXylrlnnqytqgtSGckkn5wB5XGwo0xfc8sTuB/s400/GoogleGoggles3_Landmark.jpg&quot; width=&quot;400&quot; /&gt;&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;tr-caption&quot; style=&quot;text-align: center;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-size: small;&quot;&gt;Search Landmark - Golden Gate Gridge&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;/tbody&gt;&lt;/table&gt;&lt;table align=&quot;center&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; class=&quot;tr-caption-container&quot; style=&quot;margin-left: auto; margin-right: auto; text-align: center;&quot;&gt;&lt;tbody&gt;
&lt;tr&gt;&lt;td style=&quot;text-align: center;&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgUY7OEI30BYr5rh726graEd7_f73fjs4QqrDUV73kOBO0fH6siUXXOJgZMz5VjdqMj0d_6tDHRDW44jhN2CJtiGWHx3CJtrio7q4FyJn_ZBOEdYCDibnnMfbF1pZrcfPMoLPsFGVZcbuke/s1600-h/GoogleGoggles4_Contact.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: auto; margin-right: auto;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;160&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgUY7OEI30BYr5rh726graEd7_f73fjs4QqrDUV73kOBO0fH6siUXXOJgZMz5VjdqMj0d_6tDHRDW44jhN2CJtiGWHx3CJtrio7q4FyJn_ZBOEdYCDibnnMfbF1pZrcfPMoLPsFGVZcbuke/s400/GoogleGoggles4_Contact.jpg&quot; width=&quot;400&quot; /&gt;&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;tr-caption&quot; style=&quot;text-align: center;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-size: small;&quot;&gt;Enter Contact&amp;nbsp;&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;/tbody&gt;&lt;/table&gt;&lt;table align=&quot;center&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; class=&quot;tr-caption-container&quot; style=&quot;margin-left: auto; margin-right: auto; text-align: center;&quot;&gt;&lt;tbody&gt;
&lt;tr&gt;&lt;td style=&quot;text-align: center;&quot;&gt;&lt;object height=&quot;295&quot; width=&quot;480&quot;&gt;&lt;param name=&quot;movie&quot; value=&quot;http://www.youtube.com/v/hrE7yVJaA08&amp;hl=en_US&amp;fs=1&amp;&quot;&gt;&lt;/param&gt;&lt;param name=&quot;allowFullScreen&quot; value=&quot;true&quot;&gt;&lt;/param&gt;&lt;param name=&quot;allowscriptaccess&quot; value=&quot;always&quot;&gt;&lt;/param&gt;&lt;embed src=&quot;http://www.youtube.com/v/hrE7yVJaA08&amp;hl=en_US&amp;fs=1&amp;&quot; type=&quot;application/x-shockwave-flash&quot; allowscriptaccess=&quot;always&quot; allowfullscreen=&quot;true&quot; width=&quot;480&quot; height=&quot;295&quot;&gt;&lt;/embed&gt;&lt;/object&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;tr-caption&quot; style=&quot;text-align: center;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-size: small;&quot;&gt;Search for Places - &quot;The Diner&quot;, &quot;Scarpetta&quot; and &quot;Comix Comedy Club&quot;&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;
They just added a new feature: &lt;a href=&quot;http://googletranslate.blogspot.com/2010/02/integrating-translation-into-google.html&quot;&gt;Translate text in picture&lt;/a&gt;. &amp;nbsp;It&#39;s currently in beta testing for German-to-English translations only. &amp;nbsp;Check out the video in the blog:&amp;nbsp;&lt;a href=&quot;http://googletranslate.blogspot.com/2010/02/integrating-translation-into-google.html&quot;&gt;Integrating translation into Google Goggles&lt;/a&gt;.&lt;br /&gt;
&lt;br /&gt;
&lt;table align=&quot;center&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; class=&quot;tr-caption-container&quot; style=&quot;margin-left: auto; margin-right: auto; text-align: center;&quot;&gt;&lt;tbody&gt;
&lt;tr&gt;&lt;td style=&quot;text-align: center;&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjYKQ0O22ADTcaVq9LojdA6taMwfplqTji0-yEzrrl1eevzEjNtbZ_zAJ6JHNO2EN1r8PQjNB9LhZF4TC7fgCQVJMdjKevIfs6zqkgGi1gFK3LNLrEdVsLkH-5Me9wEtnjVitDwc-M4tKWr/s1600-h/GoogleGoggles1.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: auto; margin-right: auto;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;323&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjYKQ0O22ADTcaVq9LojdA6taMwfplqTji0-yEzrrl1eevzEjNtbZ_zAJ6JHNO2EN1r8PQjNB9LhZF4TC7fgCQVJMdjKevIfs6zqkgGi1gFK3LNLrEdVsLkH-5Me9wEtnjVitDwc-M4tKWr/s400/GoogleGoggles1.jpg&quot; width=&quot;400&quot; /&gt;&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;tr-caption&quot; style=&quot;text-align: center;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-size: small;&quot;&gt;1. Take a picture of the German menu&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;/tbody&gt;&lt;/table&gt;&lt;table align=&quot;center&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; class=&quot;tr-caption-container&quot; style=&quot;margin-left: auto; margin-right: auto; text-align: center;&quot;&gt;&lt;tbody&gt;
&lt;tr&gt;&lt;td style=&quot;text-align: center;&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiURH-FEV2qrKB4GIX08b-GegfIgVKXst7jDtepTOry0grxvks3V-2DW4gBV082sNB6Q9Azo4sy9maGHeu_a92Rl_VIo313ZSC_XGJxXPCgJxsSj4z1rAHlmN68hdKcyYivCLMUCcvc_EhJ/s1600-h/GoogleGoggles2.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: auto; margin-right: auto;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;323&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiURH-FEV2qrKB4GIX08b-GegfIgVKXst7jDtepTOry0grxvks3V-2DW4gBV082sNB6Q9Azo4sy9maGHeu_a92Rl_VIo313ZSC_XGJxXPCgJxsSj4z1rAHlmN68hdKcyYivCLMUCcvc_EhJ/s400/GoogleGoggles2.jpg&quot; width=&quot;400&quot; /&gt;&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;tr-caption&quot; style=&quot;text-align: center;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-size: small;&quot;&gt;2. Menu Translated&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;/tbody&gt;&lt;/table&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class=&quot;blogger-post-footer&quot;&gt;&lt;br /&gt;&lt;hr /&gt;&lt;hr /&gt;&lt;br /&gt;Visit my blog @ &lt;a href=&quot;http://sungamagnus.blogspot.com/&quot;&gt;http://sungamagnus.blogspot.com&lt;/a&gt;
or Subscribe to my blog @ &lt;a href=&quot;http://feeds.feedburner.com/sungaMagnus&quot;&gt;Subscribe&lt;/a&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://sungamagnus.blogspot.com/feeds/5096748105705944479/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/4109279768306248422/5096748105705944479' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4109279768306248422/posts/default/5096748105705944479'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4109279768306248422/posts/default/5096748105705944479'/><link rel='alternate' type='text/html' href='http://sungamagnus.blogspot.com/2010/02/google-goggles-search-with-pictures.html' title='Google Goggles - Search With Pictures Instead Of Text'/><author><name>sungaMagnus</name><uri>http://www.blogger.com/profile/05085014344369229065</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjUy6yJMuaYf4yazuwEOn_wnGWGrvVcAOGxYP6Y2IYEyeK-sX0RBWH3Hm_naHP6M4RaEGsV3w6_AWpmidmP88ApVVeFiXCeSH5sCb_Re6NJXylrlnnqytqgtSGckkn5wB5XGwo0xfc8sTuB/s72-c/GoogleGoggles3_Landmark.jpg" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4109279768306248422.post-8825310786362055070</id><published>2010-01-12T09:29:00.000-08:00</published><updated>2010-01-12T09:38:36.429-08:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Docs"/><category scheme="http://www.blogger.com/atom/ns#" term="Google"/><category scheme="http://www.blogger.com/atom/ns#" term="Tips"/><title type='text'>Google GDrive Is Coming (Sort of)</title><content type='html'>(Update 1/12 9:38am - Added Google official announcement blog post from &lt;a href=&quot;http://googleblog.blogspot.com/2010/01/upload-your-files-and-access-them.html&quot;&gt;Google Blog&lt;/a&gt;,&amp;nbsp;&lt;a href=&quot;http://googledocs.blogspot.com/2010/01/upload-and-store-your-files-in-cloud.html&quot;&gt;Google Docs Blog&lt;/a&gt;&amp;nbsp;and &lt;a href=&quot;http://googleenterprise.blogspot.com/2010/01/store-and-share-files-in-cloud-with.html&quot;&gt;Google Enterprise Blog&lt;/a&gt;. &amp;nbsp;One more detail: The 1 GB storage limit only count those files that can&#39;t be convert to Google Docs formats. &amp;nbsp;That means you can upload as many word documents, spreadsheets and presentations as you want as before.)&lt;br /&gt;
&lt;br /&gt;
According to &lt;a href=&quot;http://www.techcrunch.com/2010/01/12/google-gdrive-launches-just-dont-call-it-that/&quot;&gt;Michael Arrington from TechCrunch&lt;/a&gt;, Google will release GDrive (Google Drive) in the coming weeks. &amp;nbsp;However, it will not be called GDrive or Google Drive, instead, it will be integrated in Google Docs. &lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgcsBMd9hG1HOLzQpsCJ06r_nW7Ts0zxjxxLKrBFnte-EcqJ2PcW_OBJhJ4V_VumNsMNFH72qd5l8dt-u6CflGI4e3GF218CETWBo3yxjX9RPHc7WcSL51PaqcyfWo4dnBOnRCDXpzAczJa/s1600-h/GoogleDocsUploadFiles.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;285&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgcsBMd9hG1HOLzQpsCJ06r_nW7Ts0zxjxxLKrBFnte-EcqJ2PcW_OBJhJ4V_VumNsMNFH72qd5l8dt-u6CflGI4e3GF218CETWBo3yxjX9RPHc7WcSL51PaqcyfWo4dnBOnRCDXpzAczJa/s400/GoogleDocsUploadFiles.jpg&quot; width=&quot;400&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;/div&gt;Quotes from the blog post from &lt;a href=&quot;http://draft.blogger.com/&quot;&gt;&lt;span id=&quot;goog_1263316754211&quot;&gt;&lt;/span&gt;TechCrunch&lt;span id=&quot;goog_1263316754212&quot;&gt;&lt;/span&gt;&lt;/a&gt;:&lt;br /&gt;
&lt;blockquote&gt;... you can soon upload any file type at all to Google Docs, not just the dozen or so Office formats that the service allowed as of yesterday. Video files. Images. Audio Files. Even Zip files. As long as those files are 250 MB or smaller, you’re good.&lt;br /&gt;
&lt;/blockquote&gt;&lt;blockquote&gt;Regular users have 1 GB of free storage and can purchase more for $0.25/GB. Enterprise customer pay higher prices, starting at $17/year for 5 GB. There are no bandwidth charges.&lt;br /&gt;
&lt;/blockquote&gt;&lt;blockquote&gt;Three partners have been working with Google to build value add features on top of the new product. The most interesting, &lt;a href=&quot;http://memeoconnect.com/&quot;&gt;Memeo Connect&lt;/a&gt; (from &lt;a href=&quot;http://www.memeo.com/&quot;&gt;Memeo&lt;/a&gt;), lets users sync files between the desktop and Google Docs.&lt;br /&gt;
&lt;/blockquote&gt;&lt;div class=&quot;blogger-post-footer&quot;&gt;&lt;br /&gt;&lt;hr /&gt;&lt;hr /&gt;&lt;br /&gt;Visit my blog @ &lt;a href=&quot;http://sungamagnus.blogspot.com/&quot;&gt;http://sungamagnus.blogspot.com&lt;/a&gt;
or Subscribe to my blog @ &lt;a href=&quot;http://feeds.feedburner.com/sungaMagnus&quot;&gt;Subscribe&lt;/a&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://sungamagnus.blogspot.com/feeds/8825310786362055070/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/4109279768306248422/8825310786362055070' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4109279768306248422/posts/default/8825310786362055070'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4109279768306248422/posts/default/8825310786362055070'/><link rel='alternate' type='text/html' href='http://sungamagnus.blogspot.com/2010/01/google-gdrive-is-coming-sort-of.html' title='Google GDrive Is Coming (Sort of)'/><author><name>sungaMagnus</name><uri>http://www.blogger.com/profile/05085014344369229065</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgcsBMd9hG1HOLzQpsCJ06r_nW7Ts0zxjxxLKrBFnte-EcqJ2PcW_OBJhJ4V_VumNsMNFH72qd5l8dt-u6CflGI4e3GF218CETWBo3yxjX9RPHc7WcSL51PaqcyfWo4dnBOnRCDXpzAczJa/s72-c/GoogleDocsUploadFiles.jpg" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4109279768306248422.post-1213770398842315798</id><published>2009-11-10T12:57:00.000-08:00</published><updated>2009-11-10T12:57:24.146-08:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Flu"/><category scheme="http://www.blogger.com/atom/ns#" term="Google"/><category scheme="http://www.blogger.com/atom/ns#" term="Other"/><category scheme="http://www.blogger.com/atom/ns#" term="Tips"/><title type='text'>Flu Vaccine Locator (Both Seasonal and H1N1)</title><content type='html'>&lt;a href=&quot;http://www.google.com/&quot;&gt;Google&lt;/a&gt;&amp;nbsp;&lt;a href=&quot;http://googleblog.blogspot.com/2009/11/finding-flu-vaccine-information-in-one.html&quot;&gt;announced in its blog&lt;/a&gt; that collaborates with&amp;nbsp;&lt;a href=&quot;http://www.hhs.gov/&quot;&gt;U.S. Department for Health and Human Services&lt;/a&gt; (HHS) and&amp;nbsp;&lt;a href=&quot;http://www.lungusa.org/&quot;&gt;American Lung Association&lt;/a&gt;&amp;nbsp;to offer this flu shot finder for U.S. at&amp;nbsp;&lt;a href=&quot;http://www.google.com/flushot&quot;&gt;www.google.com/flushot&lt;/a&gt;. &amp;nbsp;Just go to the webpage and enter your city or zip code, it will show the locations that offer seasonal flu shot, H1N1 flu shot or both shots. &amp;nbsp;Here&#39;s the map around &lt;a href=&quot;http://en.wikipedia.org/wiki/Monterey_Park,_California&quot;&gt;Monterey Park, CA&lt;/a&gt; area.&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiGDEhRBwKLA9sGp7K7EqZ2bGMUwBKXcm_ujHz1g4wGfE_wJd17ZKVzHMSncQE0K7ej-99AAnudRkYk1qEg7-sPYqQ0eG9uiRK4vzLAQcdTgAPL3fMbrWpYzshbf6bwyD9Imxi5Zecyv829/s1600-h/FluShotLocator01.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiGDEhRBwKLA9sGp7K7EqZ2bGMUwBKXcm_ujHz1g4wGfE_wJd17ZKVzHMSncQE0K7ej-99AAnudRkYk1qEg7-sPYqQ0eG9uiRK4vzLAQcdTgAPL3fMbrWpYzshbf6bwyD9Imxi5Zecyv829/s400/FluShotLocator01.png&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;/div&gt;&lt;br /&gt;
The locator provides location, phone number, data, time, cost (some of them are free) and the availability of the vaccine. &amp;nbsp;The same flu shot locator will be available on HHS&#39;s&amp;nbsp;&lt;a href=&quot;http://www.flu.gov/&quot;&gt;www.flu.gov&lt;/a&gt;&amp;nbsp;and American Lung Association&#39;s&amp;nbsp;&lt;a href=&quot;http://www.flucliniclocator.org/&quot;&gt;http://www.flucliniclocator.org/&lt;/a&gt;.&lt;br /&gt;
&lt;br /&gt;
Please note that currently the locator only has data from 20 states, but they are adding information from chain pharmacies and other providers in all 50 states. Of course you should call the providers beforehand to find out about more details about the two vaccines.&lt;br /&gt;
&lt;br /&gt;
If you didn&#39;t know yet, Google also release flu trends information for 20 countries they gather through people&#39;s search term here:&amp;nbsp;&lt;a href=&quot;http://www.google.org/flutrends/&quot;&gt;http://www.google.org/flutrends/&lt;/a&gt;. &amp;nbsp;If you want to know more about how they gather the information, they explains it here:&amp;nbsp;&lt;a href=&quot;http://www.google.org/flutrends/about/how.html&quot;&gt;http://www.google.org/flutrends/about/how.html&lt;/a&gt;.&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhz7P-GZFV9Vnx3wFA5tdfv1FsGkP1cWNCE_y_ExiCbsl9QlY1Dm2PHMf4LltDeVrKhYlu53kZmC28LA97p7hyphenhyphenIjlU1v3ONRYXyO6EqSvuG3d3qt-FGFbj-1Nw3EN-9OZz51b-rn-W9UuXw/s1600-h/FluShotLocator02.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhz7P-GZFV9Vnx3wFA5tdfv1FsGkP1cWNCE_y_ExiCbsl9QlY1Dm2PHMf4LltDeVrKhYlu53kZmC28LA97p7hyphenhyphenIjlU1v3ONRYXyO6EqSvuG3d3qt-FGFbj-1Nw3EN-9OZz51b-rn-W9UuXw/s400/FluShotLocator02.png&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;/div&gt;&lt;br /&gt;
Take extra care.&lt;div class=&quot;blogger-post-footer&quot;&gt;&lt;br /&gt;&lt;hr /&gt;&lt;hr /&gt;&lt;br /&gt;Visit my blog @ &lt;a href=&quot;http://sungamagnus.blogspot.com/&quot;&gt;http://sungamagnus.blogspot.com&lt;/a&gt;
or Subscribe to my blog @ &lt;a href=&quot;http://feeds.feedburner.com/sungaMagnus&quot;&gt;Subscribe&lt;/a&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://sungamagnus.blogspot.com/feeds/1213770398842315798/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/4109279768306248422/1213770398842315798' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4109279768306248422/posts/default/1213770398842315798'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4109279768306248422/posts/default/1213770398842315798'/><link rel='alternate' type='text/html' href='http://sungamagnus.blogspot.com/2009/11/flu-vaccine-locator-both-seasonal-and.html' title='Flu Vaccine Locator (Both Seasonal and H1N1)'/><author><name>sungaMagnus</name><uri>http://www.blogger.com/profile/05085014344369229065</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiGDEhRBwKLA9sGp7K7EqZ2bGMUwBKXcm_ujHz1g4wGfE_wJd17ZKVzHMSncQE0K7ej-99AAnudRkYk1qEg7-sPYqQ0eG9uiRK4vzLAQcdTgAPL3fMbrWpYzshbf6bwyD9Imxi5Zecyv829/s72-c/FluShotLocator01.png" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4109279768306248422.post-3968278118177061956</id><published>2009-11-05T12:59:00.000-08:00</published><updated>2009-11-05T12:59:08.540-08:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Mobile"/><category scheme="http://www.blogger.com/atom/ns#" term="T-Mobile"/><title type='text'>T-Mobile Upgrades Its 3G Network to HSPA 7.2</title><content type='html'>T-Mobile 3G users will enjoy the fastest 3G network in US. &amp;nbsp; According to &lt;a href=&quot;http://androidandme.com/2009/11/carriers/t-mobile-news/has-the-t-mobile-hspa-7-2-rollout-begun-help-us-find-out/&quot;&gt;this post&lt;/a&gt; from &lt;a href=&quot;http://androidandme.com/&quot;&gt;AndroidandMe&lt;/a&gt;, T-Mobile users in New York, NY and Chicago, IL start to have the new speed of 3.8Mb/s and 5.4Mb/s, respectively. &amp;nbsp;If you don&#39;t know much about the speed(Mb/s), that&#39;s faster than the internet connection I got from &lt;a href=&quot;http://www.charter.com/Visitors/Products.aspx?MenuItem=20&quot;&gt;charter&lt;/a&gt;&amp;nbsp;cable internet(advertised speed 5Mb/s but I normally get around 3.2Mb/s), which cost $29.99 per month.&lt;br /&gt;
&lt;table&gt;&lt;tbody&gt;
&lt;tr&gt; &lt;td&gt;&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjw9yff0b52PxE0zGCdjnrFtCFVcRo3nHBnxtzieSSit6PzjDG5VOiTf3jYHNktl_WlX-BpeCNRTsCTwrbvP1tkVJwvdwPm0YbUCv4uqTsZZDFSVaVPXmyL70x0tcHswgGMfgv9NMhpIF3c/s1600-h/speedtestnet1.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjw9yff0b52PxE0zGCdjnrFtCFVcRo3nHBnxtzieSSit6PzjDG5VOiTf3jYHNktl_WlX-BpeCNRTsCTwrbvP1tkVJwvdwPm0YbUCv4uqTsZZDFSVaVPXmyL70x0tcHswgGMfgv9NMhpIF3c/s320/speedtestnet1.png&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;New York, NY&lt;br /&gt;
&lt;/div&gt;&lt;/td&gt;&lt;td&gt;&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEguVhaxvaRLmH0PDFnNPxlhEZ7ScSk8KYZH54-9OxD7SxJ6XiMHcBqNynNWfaxzyopXmME8yi0wBcgGMMEuwzIduDoM5CL-JK51LHrLIkvs8g4hFIho1O23kcja8G6y42kkUKuzNPAeNKlq/s1600-h/speedtestnet2.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEguVhaxvaRLmH0PDFnNPxlhEZ7ScSk8KYZH54-9OxD7SxJ6XiMHcBqNynNWfaxzyopXmME8yi0wBcgGMMEuwzIduDoM5CL-JK51LHrLIkvs8g4hFIho1O23kcja8G6y42kkUKuzNPAeNKlq/s320/speedtestnet2.png&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style=&quot;text-align: center;&quot;&gt;Chicago, IL&lt;br /&gt;
&lt;/div&gt;&lt;/td&gt; &lt;/tr&gt;
&lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;
For those T-Mobile users doesn&#39;t get this speed yet, your wait won&#39;t be long. &amp;nbsp;The other post from AndroidandMe reports T-Mobile is on track to finish the deployment of HSPA 7.2 in US by the end of 2009. &amp;nbsp;What&#39;s more? &amp;nbsp;They are going to deploy HSPA+ in 2010, which has a speed of 21Mb/s (more than 4 times what I get from home. sigh... )&lt;br /&gt;
&lt;br /&gt;
If T-Mobile&#39;s Android phone can upgrade to Android 2.0 OS (Should be able to next year 2010), this speed and the &lt;a href=&quot;http://sungamagnus.blogspot.com/2009/10/google-maps-navigation-for-android-20.html&quot;&gt;Google Maps Navigation&lt;/a&gt; will be a big plus for T-Mobile.&lt;div class=&quot;blogger-post-footer&quot;&gt;&lt;br /&gt;&lt;hr /&gt;&lt;hr /&gt;&lt;br /&gt;Visit my blog @ &lt;a href=&quot;http://sungamagnus.blogspot.com/&quot;&gt;http://sungamagnus.blogspot.com&lt;/a&gt;
or Subscribe to my blog @ &lt;a href=&quot;http://feeds.feedburner.com/sungaMagnus&quot;&gt;Subscribe&lt;/a&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://sungamagnus.blogspot.com/feeds/3968278118177061956/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/4109279768306248422/3968278118177061956' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4109279768306248422/posts/default/3968278118177061956'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4109279768306248422/posts/default/3968278118177061956'/><link rel='alternate' type='text/html' href='http://sungamagnus.blogspot.com/2009/11/t-mobile-upgrades-its-3g-network-to.html' title='T-Mobile Upgrades Its 3G Network to HSPA 7.2'/><author><name>sungaMagnus</name><uri>http://www.blogger.com/profile/05085014344369229065</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjw9yff0b52PxE0zGCdjnrFtCFVcRo3nHBnxtzieSSit6PzjDG5VOiTf3jYHNktl_WlX-BpeCNRTsCTwrbvP1tkVJwvdwPm0YbUCv4uqTsZZDFSVaVPXmyL70x0tcHswgGMfgv9NMhpIF3c/s72-c/speedtestnet1.png" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4109279768306248422.post-4080669390086172970</id><published>2009-10-28T12:31:00.000-07:00</published><updated>2009-10-29T12:57:48.141-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Google"/><category scheme="http://www.blogger.com/atom/ns#" term="Interesting"/><category scheme="http://www.blogger.com/atom/ns#" term="Mobile"/><category scheme="http://www.blogger.com/atom/ns#" term="Navigation"/><title type='text'>Google Maps Navigation for Android 2.0</title><content type='html'>(Updated 2009.10.28-12:53 PDT - Added video for each feature)&lt;br /&gt;
(Updated2 2009.10.29-12:47 PDT - Garmin and TomTom&#39;s stock drop 12.3% and &amp;nbsp;23.4%, respectively, yesterday.)&lt;br /&gt;
&lt;br /&gt;
Google releases &quot;&lt;a href=&quot;http://www.google.com/mobile/navigation/index.html&quot;&gt;Google Maps Navigation&lt;/a&gt;&quot; in &lt;a href=&quot;http://googlemobile.blogspot.com/2009/10/announcing-google-maps-navigation-for.html&quot;&gt;its blog&lt;/a&gt;. &amp;nbsp;Navigation is a free, internet conneted GPS system provided by Google.&amp;nbsp;It requires&lt;br /&gt;
&lt;div&gt;&lt;ol&gt;&lt;li&gt;Google&#39;s&amp;nbsp;newest Android 2.0 mobile operating system (Current only &lt;a href=&quot;http://www.droiddoes.com/&quot;&gt;Droid&lt;/a&gt; from Verizon uses it)&lt;/li&gt;
&lt;li&gt;mobile internet connection&lt;/li&gt;
&lt;/ol&gt;&lt;div&gt;The service currently only limited to United States. &amp;nbsp;And from the &lt;a href=&quot;http://googlemobile.blogspot.com/2009/10/announcing-google-maps-navigation-for.html&quot;&gt;blog post&lt;/a&gt;, it listed 7 features unique to Navigation:&lt;br /&gt;
&lt;/div&gt;&lt;div&gt;&lt;ol&gt;&lt;li&gt;&lt;i&gt;The most recent map and business data&lt;/i&gt;&lt;/li&gt;
&lt;li&gt;&lt;i&gt;Search in plain English (&lt;a href=&quot;http://www.youtube.com/watch?v=6DSQgDLe2Ic&quot;&gt;video&lt;/a&gt;)&lt;/i&gt;&lt;/li&gt;
&lt;li&gt;&lt;i&gt;Search by voice&lt;span style=&quot;font-style: normal;&quot;&gt;&lt;i&gt;&amp;nbsp;(&lt;a href=&quot;http://www.youtube.com/watch?v=jLXZ5BHeDFg&quot;&gt;vid&lt;span id=&quot;goog_1256759470447&quot;&gt;&lt;/span&gt;&lt;span id=&quot;goog_1256759470448&quot;&gt;&lt;/span&gt;eo&lt;/a&gt;)&lt;/i&gt;&lt;/span&gt;&lt;/i&gt;&lt;/li&gt;
&lt;li&gt;&lt;i&gt;Traffic view&lt;span style=&quot;font-style: normal;&quot;&gt;&lt;i&gt;&amp;nbsp;(&lt;a href=&quot;http://www.youtube.com/watch?v=SxB7bqkmXtI&quot;&gt;video&lt;/a&gt;)&lt;/i&gt;&lt;/span&gt;&lt;/i&gt;&lt;/li&gt;
&lt;li&gt;&lt;i&gt;Search along route&lt;span style=&quot;font-style: normal;&quot;&gt;&lt;i&gt;&amp;nbsp;(&lt;a href=&quot;http://www.youtube.com/watch?v=h86f1L8RT8c&quot;&gt;video&lt;/a&gt;)&lt;/i&gt;&lt;/span&gt;&lt;/i&gt;&lt;/li&gt;
&lt;li&gt;&lt;i&gt;Satellite view&lt;span style=&quot;font-style: normal;&quot;&gt;&lt;i&gt;&amp;nbsp;(&lt;a href=&quot;http://www.youtube.com/watch?v=zS1fj8Wyt6I&quot;&gt;video&lt;/a&gt;)&lt;/i&gt;&lt;/span&gt;&lt;/i&gt;&lt;/li&gt;
&lt;li&gt;&lt;i&gt;Street View&lt;span style=&quot;font-style: normal;&quot;&gt;&lt;i&gt;&amp;nbsp;(&lt;a href=&quot;http://www.youtube.com/watch?v=7SYoBHbt8NY&quot;&gt;video&lt;/a&gt;)&lt;/i&gt;&lt;/span&gt;&lt;/i&gt;&lt;/li&gt;
&lt;/ol&gt;&lt;div&gt;Also, they have a car dock mode(&lt;a href=&quot;http://www.youtube.com/watch?v=7SYoBHbt8NY&quot;&gt;video&lt;/a&gt;). &amp;nbsp;Below is a video and some screenshots about the service.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;Video:&lt;/b&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;center&gt;&lt;object height=&quot;344&quot; width=&quot;425&quot;&gt;&lt;param name=&quot;movie&quot; value=&quot;http://www.youtube.com/v/tGXK4jKN_jY&amp;color1=0xb1b1b1&amp;color2=0xcfcfcf&amp;hl=en&amp;feature=player_embedded&amp;fs=1&quot;&gt;&lt;/param&gt;&lt;param name=&quot;allowFullScreen&quot; value=&quot;true&quot;&gt;&lt;/param&gt;&lt;param name=&quot;allowScriptAccess&quot; value=&quot;always&quot;&gt;&lt;/param&gt;&lt;embed src=&quot;http://www.youtube.com/v/tGXK4jKN_jY&amp;color1=0xb1b1b1&amp;color2=0xcfcfcf&amp;hl=en&amp;feature=player_embedded&amp;fs=1&quot; type=&quot;application/x-shockwave-flash&quot; allowfullscreen=&quot;true&quot; allowScriptAccess=&quot;always&quot; width=&quot;425&quot; height=&quot;344&quot;&gt;&lt;/embed&gt;&lt;/object&gt;&lt;/center&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div&gt;&lt;br /&gt;
&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div&gt;If you don&#39;t see the vidoe above, use this&amp;nbsp;&lt;a href=&quot;http://www.youtube.com/watch?v=tGXK4jKN_jY&quot;&gt;link&lt;/a&gt;.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;Screenshots:&lt;/b&gt;&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgrhYIjAhuan6LIfVOy-EtltWjDioLd1cSKEd6stmsEaVFZX1sNNlZLvnGYFMQK2UDmkCC8TD7Wz65XSq_W5lTkaY-8bPlBZQKDOyCCQt54aTL0gid6EEZwwB7NyOf-vppCmiBbC_Gy7GR7/s1600-h/nav-overview-1.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgrhYIjAhuan6LIfVOy-EtltWjDioLd1cSKEd6stmsEaVFZX1sNNlZLvnGYFMQK2UDmkCC8TD7Wz65XSq_W5lTkaY-8bPlBZQKDOyCCQt54aTL0gid6EEZwwB7NyOf-vppCmiBbC_Gy7GR7/s320/nav-overview-1.jpg&quot; /&gt;&lt;/a&gt;&amp;nbsp;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjODuybMHODhkwQzSBMtrhtMSxYMPoG5n3YtCw1QA7COwbpdmqXP8mBaOi26RQxKRxUf6lQO8nCAaC-NXSFLnZ0hTvVfTRRzXI57aoF8SheQxFaRaAiHTG6zWtDX09Zbi_b8ll_xpsdtelv/s1600-h/nav-overview-4.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjODuybMHODhkwQzSBMtrhtMSxYMPoG5n3YtCw1QA7COwbpdmqXP8mBaOi26RQxKRxUf6lQO8nCAaC-NXSFLnZ0hTvVfTRRzXI57aoF8SheQxFaRaAiHTG6zWtDX09Zbi_b8ll_xpsdtelv/s320/nav-overview-4.jpg&quot; /&gt;&lt;/a&gt;&amp;nbsp;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgTw5yS48OkXXXen3D6FxelVhyphenhypheniXYVyZQy_rXtZ9tF87azLXQJj4pt4pa5LWk6K4i4D2xAfe2MRSc7FyXZxg3_fzyBo5tcXtkxFsDIz3MGQgkdGPJf-tFK1_7qT1Cl8ZtaeVRhuBqLWmEe1/s1600-h/nav-overview-5.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgTw5yS48OkXXXen3D6FxelVhyphenhypheniXYVyZQy_rXtZ9tF87azLXQJj4pt4pa5LWk6K4i4D2xAfe2MRSc7FyXZxg3_fzyBo5tcXtkxFsDIz3MGQgkdGPJf-tFK1_7qT1Cl8ZtaeVRhuBqLWmEe1/s320/nav-overview-5.jpg&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;br /&gt;
&lt;/div&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEis-RrqvKtyV0h_KFrpX6dsZWMTFVkesg0i97Fpi7D_3y2307ZsVFYfbbx4nz7Y3Uyhwhif1xEJQfBwy3e54G_6xBOW3B9Jz2MxBR8s9TvW9gveXYNYRfpaQpIWh1Kbcr4hFAqknYNmjBI2/s1600-h/nav-overview-6.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEis-RrqvKtyV0h_KFrpX6dsZWMTFVkesg0i97Fpi7D_3y2307ZsVFYfbbx4nz7Y3Uyhwhif1xEJQfBwy3e54G_6xBOW3B9Jz2MxBR8s9TvW9gveXYNYRfpaQpIWh1Kbcr4hFAqknYNmjBI2/s320/nav-overview-6.jpg&quot; /&gt;&lt;/a&gt;&amp;nbsp;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgqm622puHz-oByCSRKr5kuyYtaLzBtMAD_UXUdPEdLEDxrjkVBoBjnF1F_hac18OuFs-KqEV8dE7pDXosBuum8emT-ryiafZzUtW2WJMF5SYOGw7Uwl13EbMF2RSJZyZ5Jar2D5hfmazOI/s1600-h/nav-overview-7.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgqm622puHz-oByCSRKr5kuyYtaLzBtMAD_UXUdPEdLEDxrjkVBoBjnF1F_hac18OuFs-KqEV8dE7pDXosBuum8emT-ryiafZzUtW2WJMF5SYOGw7Uwl13EbMF2RSJZyZ5Jar2D5hfmazOI/s320/nav-overview-7.jpg&quot; /&gt;&lt;/a&gt;&amp;nbsp;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgtAMAhcs7yPLLJQRVPtwMz11l3_Q4pHl0Fq8uvEDVOmN1BhyPtkxzxsaMvvu60VqjOQBuBnDE0tKT9Frbl4iVOETPFCeBNfJD6llrRX2YPx0epLiPiK5osiwOSgU2_R-KK9w_r9j9qk3MK/s1600-h/nav-overview-8.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgtAMAhcs7yPLLJQRVPtwMz11l3_Q4pHl0Fq8uvEDVOmN1BhyPtkxzxsaMvvu60VqjOQBuBnDE0tKT9Frbl4iVOETPFCeBNfJD6llrRX2YPx0epLiPiK5osiwOSgU2_R-KK9w_r9j9qk3MK/s320/nav-overview-8.jpg&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;br /&gt;
&lt;/div&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEihVNy5xQ11RN5dMRIMXre8Y1GV9Wk2NlLdaaZStuSG-3FzcwoH8ER4twYV_itxLNpYR4_1INte_4cbnx1pCgJ652N-qIzbSsihxDdVbYnkh5gzDRlXhrGhkvDWn2SToPzKLn6vCagKyUQs/s1600-h/nav-overview-2.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEihVNy5xQ11RN5dMRIMXre8Y1GV9Wk2NlLdaaZStuSG-3FzcwoH8ER4twYV_itxLNpYR4_1INte_4cbnx1pCgJ652N-qIzbSsihxDdVbYnkh5gzDRlXhrGhkvDWn2SToPzKLn6vCagKyUQs/s320/nav-overview-2.jpg&quot; /&gt;&lt;/a&gt;&amp;nbsp;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh_ELV14xJU54uLBSDSiMK1D6Oxvs9tg-hCs-PWEw6WHAmTJaoVyfUhSTP2oGZg2mDLK165OscKNcryx9MBQ1mtI39J2ZTamGO4WZ0xYcTlcopvFuw9WMUkmHYflz_KfvvKPbD4AiNkKSUQ/s1600-h/nav-overview-3.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh_ELV14xJU54uLBSDSiMK1D6Oxvs9tg-hCs-PWEw6WHAmTJaoVyfUhSTP2oGZg2mDLK165OscKNcryx9MBQ1mtI39J2ZTamGO4WZ0xYcTlcopvFuw9WMUkmHYflz_KfvvKPbD4AiNkKSUQ/s320/nav-overview-3.jpg&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;br /&gt;
&lt;/div&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEidMJXqc-mHGxsEoyFNr7vM2CW76PoXE0yx5ijRZRmZKnPKeLrGqruZ7CZT5WLEUWbuMbewYeCb6Ef_XPkZwWoIQo-ycoEYUUnhB6tewkgen2HKG7MdotlsrwCfS2lGE7AB5l17gBxy6SQM/s1600-h/nav-overview-9.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEidMJXqc-mHGxsEoyFNr7vM2CW76PoXE0yx5ijRZRmZKnPKeLrGqruZ7CZT5WLEUWbuMbewYeCb6Ef_XPkZwWoIQo-ycoEYUUnhB6tewkgen2HKG7MdotlsrwCfS2lGE7AB5l17gBxy6SQM/s320/nav-overview-9.jpg&quot; /&gt;&lt;/a&gt;&amp;nbsp;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjTVshfKhWvelOukGHFT5vpgDKE9X32vohNMtVphDWnK-JiF3UEPQcsPS_g8Qd3Sp0FOmlIYxykbeTsj1lRR_MV4MN2eI9e6b81MWctjJnIuAeeaXnPgALjPMhjmWz89xsHb2G9T7HiP5ec/s1600-h/nav-overview-10.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjTVshfKhWvelOukGHFT5vpgDKE9X32vohNMtVphDWnK-JiF3UEPQcsPS_g8Qd3Sp0FOmlIYxykbeTsj1lRR_MV4MN2eI9e6b81MWctjJnIuAeeaXnPgALjPMhjmWz89xsHb2G9T7HiP5ec/s320/nav-overview-10.jpg&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class=&quot;blogger-post-footer&quot;&gt;&lt;br /&gt;&lt;hr /&gt;&lt;hr /&gt;&lt;br /&gt;Visit my blog @ &lt;a href=&quot;http://sungamagnus.blogspot.com/&quot;&gt;http://sungamagnus.blogspot.com&lt;/a&gt;
or Subscribe to my blog @ &lt;a href=&quot;http://feeds.feedburner.com/sungaMagnus&quot;&gt;Subscribe&lt;/a&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://sungamagnus.blogspot.com/feeds/4080669390086172970/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/4109279768306248422/4080669390086172970' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4109279768306248422/posts/default/4080669390086172970'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4109279768306248422/posts/default/4080669390086172970'/><link rel='alternate' type='text/html' href='http://sungamagnus.blogspot.com/2009/10/google-maps-navigation-for-android-20.html' title='Google Maps Navigation for Android 2.0'/><author><name>sungaMagnus</name><uri>http://www.blogger.com/profile/05085014344369229065</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgrhYIjAhuan6LIfVOy-EtltWjDioLd1cSKEd6stmsEaVFZX1sNNlZLvnGYFMQK2UDmkCC8TD7Wz65XSq_W5lTkaY-8bPlBZQKDOyCCQt54aTL0gid6EEZwwB7NyOf-vppCmiBbC_Gy7GR7/s72-c/nav-overview-1.jpg" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4109279768306248422.post-4873639684938564029</id><published>2009-10-07T07:28:00.000-07:00</published><updated>2009-10-07T07:28:00.330-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Google"/><category scheme="http://www.blogger.com/atom/ns#" term="Interesting"/><category scheme="http://www.blogger.com/atom/ns#" term="Other"/><category scheme="http://www.blogger.com/atom/ns#" term="Tips"/><title type='text'>How Should Google Use Its Money To Help The Most People</title><content type='html'>Last fall Google asked people to submit project ideas that could help as many people in the world as possible. &amp;nbsp;And they are&lt;br /&gt;
&lt;blockquote&gt;committing $10 million to implement these projects, and our goal is to help as many people as possible.&lt;br /&gt;
&lt;/blockquote&gt;Now Google has consolidated all the ideas into 16 &quot;big ideas.&quot; And you get to decide how Google use its money. &amp;nbsp; Go here&amp;nbsp;&lt;a href=&quot;http://www.project10tothe100.com/vote.html&quot;&gt;http://www.project10tothe100.com/vote.html&lt;/a&gt;&amp;nbsp;and cast your vote. &amp;nbsp;Act now, voting ends October 8, 2009 (tomorrow).&lt;br /&gt;
&lt;br /&gt;
Here&#39;s a list of topics you could vote for:&lt;br /&gt;
&lt;ol&gt;&lt;li&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-size: small;&quot;&gt;Work toward socially conscious tax policies&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-size: small;&quot;&gt;Build better banking tools for everyone&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-size: small;&quot;&gt;Collect and organize the world&#39;s urban data&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-size: small;&quot;&gt;Encourage positive media depictions of engineers and scientists&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-size: small;&quot;&gt;Help social entrepreneurs drive change&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-size: small;&quot;&gt;Make government more transparent&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-size: small;&quot;&gt;Provide quality education to African students&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-size: small;&quot;&gt;Create real-time natural crisis tracking system&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-size: small;&quot;&gt;Promote health monitoring and data analysis&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-size: small;&quot;&gt;Enhance science and engineering education&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-size: small;&quot;&gt;Create real-world issue reporting system&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-size: small;&quot;&gt;Create genocide monitoring and alert system&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-size: small;&quot;&gt;Build real-time, user-reported news service&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-size: small;&quot;&gt;Drive innovation in public transport&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-size: small;&quot;&gt;Make educational content available online for free&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-size: small;&quot;&gt;Create more efficient landmine removal programs&lt;/span&gt;&lt;/li&gt;
&lt;/ol&gt;Here&#39;s a video to introduce the Project 10 to the 100 (10&lt;sup&gt;100&lt;/sup&gt;)&lt;br /&gt;
&lt;object height=&quot;344&quot; width=&quot;425&quot;&gt;&lt;param name=&quot;movie&quot; value=&quot;http://www.youtube.com/v/JUf1zxjR_Qw&amp;hl=en&amp;fs=1&amp;&quot;&gt;&lt;/param&gt;&lt;param name=&quot;allowFullScreen&quot; value=&quot;true&quot;&gt;&lt;/param&gt;&lt;param name=&quot;allowscriptaccess&quot; value=&quot;always&quot;&gt;&lt;/param&gt;&lt;embed src=&quot;http://www.youtube.com/v/JUf1zxjR_Qw&amp;hl=en&amp;fs=1&amp;&quot; type=&quot;application/x-shockwave-flash&quot; allowscriptaccess=&quot;always&quot; allowfullscreen=&quot;true&quot; width=&quot;425&quot; height=&quot;344&quot;&gt;&lt;/embed&gt;&lt;/object&gt;&lt;div class=&quot;blogger-post-footer&quot;&gt;&lt;br /&gt;&lt;hr /&gt;&lt;hr /&gt;&lt;br /&gt;Visit my blog @ &lt;a href=&quot;http://sungamagnus.blogspot.com/&quot;&gt;http://sungamagnus.blogspot.com&lt;/a&gt;
or Subscribe to my blog @ &lt;a href=&quot;http://feeds.feedburner.com/sungaMagnus&quot;&gt;Subscribe&lt;/a&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://sungamagnus.blogspot.com/feeds/4873639684938564029/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/4109279768306248422/4873639684938564029' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4109279768306248422/posts/default/4873639684938564029'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4109279768306248422/posts/default/4873639684938564029'/><link rel='alternate' type='text/html' href='http://sungamagnus.blogspot.com/2009/10/how-should-google-use-its-money-to-help.html' title='How Should Google Use Its Money To Help The Most People'/><author><name>sungaMagnus</name><uri>http://www.blogger.com/profile/05085014344369229065</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4109279768306248422.post-9111124237797084521</id><published>2009-10-06T12:36:00.000-07:00</published><updated>2009-10-06T12:36:22.478-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Browser"/><category scheme="http://www.blogger.com/atom/ns#" term="Firefox"/><category scheme="http://www.blogger.com/atom/ns#" term="Google"/><category scheme="http://www.blogger.com/atom/ns#" term="Google Chrome"/><category scheme="http://www.blogger.com/atom/ns#" term="Interesting"/><category scheme="http://www.blogger.com/atom/ns#" term="Software"/><category scheme="http://www.blogger.com/atom/ns#" term="Tips"/><title type='text'>What Is A Browser? What Browser Are You Using?</title><content type='html'>Google asked the above question in&amp;nbsp;Times Square,&amp;nbsp;New York&amp;nbsp;and only less than 8% of the people know what a browser is.&lt;br /&gt;
&lt;br /&gt;
&lt;object height=&quot;340&quot; width=&quot;560&quot;&gt;&lt;param name=&quot;movie&quot; value=&quot;http://www.youtube.com/v/o4MwTvtyrUQ&amp;hl=en&amp;fs=1&amp;&quot;&gt;&lt;/param&gt;&lt;param name=&quot;allowFullScreen&quot; value=&quot;true&quot;&gt;&lt;/param&gt;&lt;param name=&quot;allowscriptaccess&quot; value=&quot;always&quot;&gt;&lt;/param&gt;&lt;embed src=&quot;http://www.youtube.com/v/o4MwTvtyrUQ&amp;hl=en&amp;fs=1&amp;&quot; type=&quot;application/x-shockwave-flash&quot; allowscriptaccess=&quot;always&quot; allowfullscreen=&quot;true&quot; width=&quot;560&quot; height=&quot;340&quot;&gt;&lt;/embed&gt;&lt;/object&gt;&lt;br /&gt;
&lt;br /&gt;
Now they want to tell you what a browser actually is by create this Youtube video and a website:&amp;nbsp;&lt;a href=&quot;http://www.whatbrowser.org/&quot;&gt;http://www.whatbrowser.org&lt;/a&gt;. &amp;nbsp;In that site, if you click on &quot;&lt;a href=&quot;http://www.whatbrowser.org/tips/&quot;&gt;A few useful tweaks&lt;/a&gt;&quot;, they will detect your current browser and tell you some useful tweaks about your browser. &amp;nbsp;Also, you will find you actually can use other browser on your computer by clicking on &quot;&lt;a href=&quot;http://www.whatbrowser.org/browser/&quot;&gt;Try a New Browser&lt;/a&gt;.&quot; &amp;nbsp;My&amp;nbsp;recommendation for browser in this order: &lt;a href=&quot;http://www.google.com/chrome/index.html&quot;&gt;Google Chrome&lt;/a&gt;, &lt;a href=&quot;http://www.getfirefox.com/&quot;&gt;Firefox&lt;/a&gt;, &lt;a href=&quot;http://www.opera.com/&quot;&gt;Opera&lt;/a&gt;, &lt;a href=&quot;http://www.apple.com/safari/&quot;&gt;Safari&lt;/a&gt;&amp;nbsp;and Internet Explorer.&lt;br /&gt;
&lt;br /&gt;
&lt;object height=&quot;340&quot; width=&quot;560&quot;&gt;&lt;param name=&quot;movie&quot; value=&quot;http://www.youtube.com/v/BrXPcaRlBqo&amp;hl=en&amp;fs=1&amp;&quot;&gt;&lt;/param&gt;&lt;param name=&quot;allowFullScreen&quot; value=&quot;true&quot;&gt;&lt;/param&gt;&lt;param name=&quot;allowscriptaccess&quot; value=&quot;always&quot;&gt;&lt;/param&gt;&lt;embed src=&quot;http://www.youtube.com/v/BrXPcaRlBqo&amp;hl=en&amp;fs=1&amp;&quot; type=&quot;application/x-shockwave-flash&quot; allowscriptaccess=&quot;always&quot; allowfullscreen=&quot;true&quot; width=&quot;560&quot; height=&quot;340&quot;&gt;&lt;/embed&gt;&lt;/object&gt;&lt;br /&gt;
&lt;br /&gt;
[via &lt;a href=&quot;http://googleblog.blogspot.com/&quot;&gt;Goolge Blog&lt;/a&gt;&amp;nbsp;-&amp;nbsp;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial; font-size: 13px; white-space: pre;&quot;&gt;&lt;a href=&quot;http://googleblog.blogspot.com/2009/10/what-is-browser.html&quot;&gt;http://googleblog.blogspot.com/2009/10/what-is-browser.html&lt;/a&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: &#39;Times New Roman&#39;; font-size: medium; white-space: normal;&quot;&gt;]&lt;/span&gt;&lt;/span&gt;&lt;div class=&quot;blogger-post-footer&quot;&gt;&lt;br /&gt;&lt;hr /&gt;&lt;hr /&gt;&lt;br /&gt;Visit my blog @ &lt;a href=&quot;http://sungamagnus.blogspot.com/&quot;&gt;http://sungamagnus.blogspot.com&lt;/a&gt;
or Subscribe to my blog @ &lt;a href=&quot;http://feeds.feedburner.com/sungaMagnus&quot;&gt;Subscribe&lt;/a&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://sungamagnus.blogspot.com/feeds/9111124237797084521/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/4109279768306248422/9111124237797084521' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4109279768306248422/posts/default/9111124237797084521'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4109279768306248422/posts/default/9111124237797084521'/><link rel='alternate' type='text/html' href='http://sungamagnus.blogspot.com/2009/10/what-is-browser-what-browser-are-you.html' title='What Is A Browser? What Browser Are You Using?'/><author><name>sungaMagnus</name><uri>http://www.blogger.com/profile/05085014344369229065</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4109279768306248422.post-1654424743911557764</id><published>2009-09-01T14:24:00.000-07:00</published><updated>2009-09-22T00:13:46.320-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Fun"/><category scheme="http://www.blogger.com/atom/ns#" term="Interesting"/><category scheme="http://www.blogger.com/atom/ns#" term="Other"/><title type='text'>08/31/09 PHD comic: &#39;Peak Productivity&#39;</title><content type='html'>I used to have the same productivity graph.&lt;br /&gt;
&lt;a href=&quot;http://www.phdcomics.com/comics.php?f=1219&quot;&gt;&lt;/a&gt;&lt;br /&gt;
&lt;blockquote&gt;&lt;a href=&quot;http://www.phdcomics.com/comics.php?f=1219&quot;&gt;08/31/09 PHD comic: &#39;Peak Productivity&#39;&lt;/a&gt;: from &lt;a href=&quot;http://www.phdcomics.com/comics.php&quot;&gt;PHD Comic&lt;/a&gt;&quot;&lt;br /&gt;
&lt;br /&gt;
&lt;center&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;table bg=&quot;&quot; border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; style=&quot;color: black;&quot;&gt;&lt;tbody&gt;
&lt;tr&gt;      &lt;td&gt;&lt;b&gt;&lt;span style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;span style=&quot;color: black;&quot;&gt;Piled Higher&lt;br /&gt;
&amp;amp; Deeper&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;span style=&quot;color: black;&quot;&gt; &lt;/span&gt;&lt;i&gt;&lt;span style=&quot;color: black;&quot;&gt; by Jorge&lt;br /&gt;
Cham&lt;/span&gt;&lt;/i&gt;&lt;/span&gt;&lt;/b&gt;&lt;br /&gt;
&lt;/td&gt;      &lt;td&gt;&lt;/td&gt;      &lt;td&gt;&lt;span style=&quot;color: black;&quot;&gt;&lt;br /&gt;
&lt;/span&gt;&lt;br /&gt;
&lt;div align=&quot;right&quot;&gt;&lt;b&gt;&lt;span style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;span style=&quot;color: black;&quot;&gt;www.phdcomics.com&lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;br /&gt;
&lt;/div&gt;&lt;span style=&quot;color: black;&quot;&gt;&lt;br /&gt;
&lt;/span&gt;&lt;br /&gt;
&lt;/td&gt;    &lt;/tr&gt;
&lt;tr align=&quot;center&quot;&gt;      &lt;td colspan=&quot;3&quot;&gt;&lt;span style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;span style=&quot;color: black;&quot;&gt;&lt;img align=&quot;top&quot; border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiZPOJQ5Wq2U9aqVujd5z3SiBXXaRXuscHBEwh4iMzyAOroX9tIWENEKB8vWrZnaAQTGAX_CLVO-fwrNbkFpxtfQnownsAM0xra2av2o_RLEbgPeyj5CTsiz6X70AR7zOeebvCoZWdDSUvD/s800/phd083109s.gif&quot; /&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;/td&gt;    &lt;/tr&gt;
&lt;tr&gt;      &lt;td colspan=&quot;3&quot;&gt;&lt;div align=&quot;center&quot;&gt;&lt;span style=&quot;font-family: Arial, Helvetica, sans-serif;&quot;&gt;&lt;span style=&quot;color: black;&quot;&gt;title:&lt;br /&gt;
&quot;Peak Productivity&quot; - originally published&lt;br /&gt;
8/31/2009&lt;/span&gt; &lt;/span&gt;&lt;br /&gt;
&lt;/div&gt;&lt;/td&gt;    &lt;/tr&gt;
&lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;/center&gt;&quot;&lt;br /&gt;
&lt;/blockquote&gt;&lt;div class=&quot;blogger-post-footer&quot;&gt;&lt;br /&gt;&lt;hr /&gt;&lt;hr /&gt;&lt;br /&gt;Visit my blog @ &lt;a href=&quot;http://sungamagnus.blogspot.com/&quot;&gt;http://sungamagnus.blogspot.com&lt;/a&gt;
or Subscribe to my blog @ &lt;a href=&quot;http://feeds.feedburner.com/sungaMagnus&quot;&gt;Subscribe&lt;/a&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://sungamagnus.blogspot.com/feeds/1654424743911557764/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/4109279768306248422/1654424743911557764' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4109279768306248422/posts/default/1654424743911557764'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4109279768306248422/posts/default/1654424743911557764'/><link rel='alternate' type='text/html' href='http://sungamagnus.blogspot.com/2009/09/083109-phd-comic-peak-productivity.html' title='08/31/09 PHD comic: &#39;Peak Productivity&#39;'/><author><name>sungaMagnus</name><uri>http://www.blogger.com/profile/05085014344369229065</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiZPOJQ5Wq2U9aqVujd5z3SiBXXaRXuscHBEwh4iMzyAOroX9tIWENEKB8vWrZnaAQTGAX_CLVO-fwrNbkFpxtfQnownsAM0xra2av2o_RLEbgPeyj5CTsiz6X70AR7zOeebvCoZWdDSUvD/s72-c/phd083109s.gif" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4109279768306248422.post-6293974772941130274</id><published>2009-08-29T00:35:00.000-07:00</published><updated>2009-08-29T00:37:53.597-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Fun"/><category scheme="http://www.blogger.com/atom/ns#" term="Interesting"/><category scheme="http://www.blogger.com/atom/ns#" term="Other"/><title type='text'>Points Of View</title><content type='html'>Funny.  Hehe.&lt;div&gt;&lt;br /&gt;&lt;a href=&quot;http://www.geekherocomic.com/2009/07/31/points-of-view/&quot;&gt;&lt;/a&gt;&lt;blockquote&gt;&lt;a href=&quot;http://www.geekherocomic.com/2009/07/31/points-of-view/&quot;&gt;Points Of View&lt;/a&gt;: from &lt;a href=&quot;http://www.geekherocomic.com/&quot;&gt;Geek Hero Comic&lt;/a&gt; &quot;&lt;p&gt;&lt;a href=&quot;http://www.geekherocomic.com/2009/07/31/points-of-view/&quot;&gt;&lt;img src=&quot;http://www.geekherocomic.com/comics/2009-07-31-points-of-view.png&quot; border=&quot;0&quot; alt=&quot;Comic&quot; /&gt;&lt;/a&gt;&lt;/p&gt;© Salvatore Iovene for Geek Hero Comic - A webcomic for geeks, 2009.&quot;&lt;/blockquote&gt;&lt;/div&gt;&lt;div class=&quot;blogger-post-footer&quot;&gt;&lt;br /&gt;&lt;hr /&gt;&lt;hr /&gt;&lt;br /&gt;Visit my blog @ &lt;a href=&quot;http://sungamagnus.blogspot.com/&quot;&gt;http://sungamagnus.blogspot.com&lt;/a&gt;
or Subscribe to my blog @ &lt;a href=&quot;http://feeds.feedburner.com/sungaMagnus&quot;&gt;Subscribe&lt;/a&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://sungamagnus.blogspot.com/feeds/6293974772941130274/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/4109279768306248422/6293974772941130274' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4109279768306248422/posts/default/6293974772941130274'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4109279768306248422/posts/default/6293974772941130274'/><link rel='alternate' type='text/html' href='http://sungamagnus.blogspot.com/2009/08/points-of-view.html' title='Points Of View'/><author><name>sungaMagnus</name><uri>http://www.blogger.com/profile/05085014344369229065</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4109279768306248422.post-4812668436339634647</id><published>2009-08-24T12:13:00.000-07:00</published><updated>2009-08-24T12:19:03.723-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Fun"/><category scheme="http://www.blogger.com/atom/ns#" term="Interesting"/><category scheme="http://www.blogger.com/atom/ns#" term="Other"/><category scheme="http://www.blogger.com/atom/ns#" term="Tips"/><title type='text'>Tech Support Cheat Sheet</title><content type='html'>&lt;a href=&quot;http://xkcd.com/627/&quot;&gt;&lt;span class=&quot;Apple-style-span&quot;  style=&quot;font-size:medium;&quot;&gt;Tech Support Cheat Sheet&lt;/span&gt;&lt;/a&gt;&lt;span class=&quot;Apple-style-span&quot;  style=&quot;font-size:medium;&quot;&gt; from &lt;a href=&quot;http://xkcd.com/&quot;&gt;xkcd.com&lt;/a&gt;:&lt;/span&gt;&lt;div&gt;&lt;span class=&quot;Apple-style-span&quot;  style=&quot;font-size:medium;&quot;&gt;&lt;/span&gt;remember to read the &quot;alt&quot; text by hover over the image.&lt;br /&gt;&lt;img src=&quot;http://imgs.xkcd.com/comics/tech_support_cheat_sheet.png&quot; title=&quot;&#39;Hey Megan, it&#39;s your father. How do I print out a flowchart?&#39;&quot; alt=&quot;&#39;Hey Megan, it&#39;s your father. How do I print out a flowchart?&#39;&quot; /&gt;&lt;/div&gt;&lt;div class=&quot;blogger-post-footer&quot;&gt;&lt;br /&gt;&lt;hr /&gt;&lt;hr /&gt;&lt;br /&gt;Visit my blog @ &lt;a href=&quot;http://sungamagnus.blogspot.com/&quot;&gt;http://sungamagnus.blogspot.com&lt;/a&gt;
or Subscribe to my blog @ &lt;a href=&quot;http://feeds.feedburner.com/sungaMagnus&quot;&gt;Subscribe&lt;/a&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://sungamagnus.blogspot.com/feeds/4812668436339634647/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/4109279768306248422/4812668436339634647' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4109279768306248422/posts/default/4812668436339634647'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4109279768306248422/posts/default/4812668436339634647'/><link rel='alternate' type='text/html' href='http://sungamagnus.blogspot.com/2009/08/tech-support-cheat-sheet.html' title='Tech Support Cheat Sheet'/><author><name>sungaMagnus</name><uri>http://www.blogger.com/profile/05085014344369229065</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4109279768306248422.post-3996989987760173012</id><published>2009-08-04T19:59:00.000-07:00</published><updated>2009-08-04T19:59:00.683-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Fun"/><category scheme="http://www.blogger.com/atom/ns#" term="Interesting"/><category scheme="http://www.blogger.com/atom/ns#" term="Other"/><title type='text'>Bubbles Popping</title><content type='html'>Cool Photos.&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;a href=&quot;http://farm4.static.flickr.com/3646/3689745318_da70a7a709.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;354&quot; src=&quot;http://farm4.static.flickr.com/3646/3689745318_da70a7a709.jpg&quot; width=&quot;420&quot; /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;a href=&quot;http://farm4.static.flickr.com/3037/3674813550_2c4da7eecc.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;281&quot; src=&quot;http://farm4.static.flickr.com/3037/3674813550_2c4da7eecc.jpg&quot; width=&quot;420&quot; /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;a href=&quot;http://farm3.static.flickr.com/2494/3673992165_27a8eb7197.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;312&quot; src=&quot;http://farm3.static.flickr.com/2494/3673992165_27a8eb7197.jpg&quot; width=&quot;420&quot; /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;a href=&quot;http://farm3.static.flickr.com/2215/3664070683_aca7249dd5.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;344&quot; src=&quot;http://farm3.static.flickr.com/2215/3664070683_aca7249dd5.jpg&quot; width=&quot;420&quot; /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;a href=&quot;http://farm4.static.flickr.com/3321/3623641943_8b21efbf8a.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;403&quot; src=&quot;http://farm4.static.flickr.com/3321/3623641943_8b21efbf8a.jpg&quot; width=&quot;420&quot; /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;
His Photos was even on News paper.&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;a href=&quot;http://farm3.static.flickr.com/2458/3725695907_656c537bcd.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;312&quot; src=&quot;http://farm3.static.flickr.com/2458/3725695907_656c537bcd.jpg&quot; width=&quot;420&quot; /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;
See more pictures in&amp;nbsp;&lt;a href=&quot;http://www.flickr.com/photos/11164709@N06/sets/72157607182199900/&quot;&gt;Richard Heeks&#39; Flickr account&lt;/a&gt;.&lt;br /&gt;
&lt;br /&gt;
(Via&amp;nbsp;&lt;a href=&quot;http://joannagoddard.blogspot.com/2009/07/popping-bubbles.html&quot;&gt;A CUP OF JO&lt;/a&gt;)&lt;div class=&quot;blogger-post-footer&quot;&gt;&lt;br /&gt;&lt;hr /&gt;&lt;hr /&gt;&lt;br /&gt;Visit my blog @ &lt;a href=&quot;http://sungamagnus.blogspot.com/&quot;&gt;http://sungamagnus.blogspot.com&lt;/a&gt;
or Subscribe to my blog @ &lt;a href=&quot;http://feeds.feedburner.com/sungaMagnus&quot;&gt;Subscribe&lt;/a&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://sungamagnus.blogspot.com/feeds/3996989987760173012/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/4109279768306248422/3996989987760173012' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4109279768306248422/posts/default/3996989987760173012'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4109279768306248422/posts/default/3996989987760173012'/><link rel='alternate' type='text/html' href='http://sungamagnus.blogspot.com/2009/08/bubbles-popping.html' title='Bubbles Popping'/><author><name>sungaMagnus</name><uri>http://www.blogger.com/profile/05085014344369229065</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://farm4.static.flickr.com/3646/3689745318_da70a7a709_t.jpg" height="72" width="72"/><thr:total>0</thr:total></entry></feed>