<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Digitivity &#187; Google</title>
	<atom:link href="http://digitivity.org/tag/google/feed" rel="self" type="application/rss+xml" />
	<link>http://digitivity.org</link>
	<description>The Digital Productivity Blog</description>
	<lastBuildDate>Mon, 24 May 2010 17:50:53 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>How to Install Google Skipfish on Ubuntu Linux</title>
		<link>http://digitivity.org/943/how-to-install-google-skipfish-on-ubuntu-linux</link>
		<comments>http://digitivity.org/943/how-to-install-google-skipfish-on-ubuntu-linux#comments</comments>
		<pubDate>Wed, 31 Mar 2010 19:55:19 +0000</pubDate>
		<dc:creator>Digitivity</dc:creator>
				<category><![CDATA[Linux/Unix]]></category>
		<category><![CDATA[compile]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[security scanner]]></category>
		<category><![CDATA[Skipfish]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://digitivity.org/?p=943</guid>
		<description><![CDATA[<a href="http://digitivity.org/939/google-releases-skipfish-automatic-website-blog-security-scanning-tool">Skipfish</a> is a new security scanning tool from Google that tries to find vulnerabilities in your webserver.

It can be installed either locally or on your webserver.

The easiest place to install Skipfish is on Linux, so I'll go over installing it on Ubuntu.


Related posts:<ol><li><a href='http://digitivity.org/939/google-releases-skipfish-automatic-website-blog-security-scanning-tool' rel='bookmark' title='Permanent Link: Google Releases Skipfish Automatic Website Security Scanning Tool'>Google Releases Skipfish Automatic Website Security Scanning Tool</a></li>
<li><a href='http://digitivity.org/884/how-to-install-google-chromium-on-ubuntu' rel='bookmark' title='Permanent Link: How to Install Google Chromium on Ubuntu'>How to Install Google Chromium on Ubuntu</a></li>
<li><a href='http://digitivity.org/420/how-to-rename-files-as-lowercase-in-ubuntu-linux-recursively' rel='bookmark' title='Permanent Link: How to Rename Files as Lowercase in Ubuntu Linux Recursively'>How to Rename Files as Lowercase in Ubuntu Linux Recursively</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><strong><a href="http://digitivity.org/939/google-releases-skipfish-automatic-website-blog-security-scanning-tool">Skipfish</a></strong> is a new security scanning tool from <strong>Google</strong> that tries to find vulnerabilities in your webserver.</p>
<p>It can be installed either locally or on your webserver.</p>
<p>The easiest place to install Skipfish is on Linux, so I&#8217;ll go over installing it on <strong>Ubuntu</strong>.</p>
<h2>Requirements for Skipfish</h2>
<p>You need the following software installed in order to install Skipfish:</p>
<ul>
<li>GNU C Compiler</li>
<li>GNU Make</li>
<li>GNU C Library (including development headers)</li>
<li>zlib (including development headers)</li>
<li>OpenSSL (including development headers)</li>
<li>libidn (including development headers)</li>
</ul>
<p>The first three are installed by default on Ubuntu. In case they&#8217;re not install them with this command in a terminal:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">apt-get</span> <span style="color: #c20cb9; font-weight: bold;">install</span> <span style="color: #c20cb9; font-weight: bold;">gcc</span> <span style="color: #c20cb9; font-weight: bold;">make</span> libc6 libc6-dev</pre></div></div>

<p>To install the last three requirements, enter this command:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">apt-get</span> <span style="color: #c20cb9; font-weight: bold;">install</span> libssl-dev zlib1g-dev libidn11</pre></div></div>

<h2>Building Skipfish</h2>
<h3>Download Skipfish</h3>
<p>Download the latest version of Skipfish from here:<br />
<a href="http://code.google.com/p/skipfish/downloads/list">http://code.google.com/p/skipfish/downloads/list</a></p>
<p>The current version (as of this writing) was 1.27b [<a href="http://skipfish.googlecode.com/files/skipfish-1.27b.tgz">LINK</a>].</p>
<p>Save the file someplace, and then either right-click on it in the file manager and choose &#8220;<strong>Extract here</strong>&#8220;.</p>
<p>Or go to the directory where you saved it and enter this:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">tar</span> xzf skipfish-1.27b.tgz</pre></div></div>

<h3>Setting Paths</h3>
<p>You may or may not need this step, but this will set the paths for <strong>header</strong> files and <strong>library files</strong>:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #7a0874; font-weight: bold;">export</span> <span style="color: #007800;">CFLAGS</span>=<span style="color: #ff0000;">&quot;-I/usr/include/&quot;</span>
<span style="color: #7a0874; font-weight: bold;">export</span> <span style="color: #007800;">LDFLAGS</span>=<span style="color: #ff0000;">&quot;-L/usr/lib/ssl/engines -L/usr/lib/ -L/usr/lib/ssl/&quot;</span></pre></div></div>

<h3>Compiling Skipfish</h3>
<p>Next, compile Skipfish. Enter the directory that was extracted earlier, and use &#8220;make&#8221; to start the <strong>build process</strong>:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #7a0874; font-weight: bold;">cd</span> skipfish
<span style="color: #c20cb9; font-weight: bold;">nice</span> <span style="color: #c20cb9; font-weight: bold;">make</span></pre></div></div>

<p>Note: <strong>nice</strong> prevents make from monopolizing your system&#8217;s CPU.</p>
<p>Here&#8217;s the result:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">cc</span> -L<span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>lib<span style="color: #000000; font-weight: bold;">/</span>ssl<span style="color: #000000; font-weight: bold;">/</span>engines -L<span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>lib<span style="color: #000000; font-weight: bold;">/</span> -L<span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>lib<span style="color: #000000; font-weight: bold;">/</span>ssl<span style="color: #000000; font-weight: bold;">/</span> -L<span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>local<span style="color: #000000; font-weight: bold;">/</span>lib<span style="color: #000000; font-weight: bold;">/</span> -L<span style="color: #000000; font-weight: bold;">/</span>opt<span style="color: #000000; font-weight: bold;">/</span>local<span style="color: #000000; font-weight: bold;">/</span>lib skipfish.c <span style="color: #660033;">-o</span> skipfish <span style="color: #660033;">-O3</span> <span style="color: #660033;">-Wno-format</span> <span style="color: #660033;">-Wall</span> <span style="color: #660033;">-funsigned-char</span> <span style="color: #660033;">-g</span> <span style="color: #660033;">-ggdb</span> -I<span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>local<span style="color: #000000; font-weight: bold;">/</span>include<span style="color: #000000; font-weight: bold;">/</span> -I<span style="color: #000000; font-weight: bold;">/</span>opt<span style="color: #000000; font-weight: bold;">/</span>local<span style="color: #000000; font-weight: bold;">/</span>include<span style="color: #000000; font-weight: bold;">/</span> -I<span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>include<span style="color: #000000; font-weight: bold;">/</span> -D_FORTIFY_SOURCE=<span style="color: #000000;">0</span> \
	      http_client.c database.c crawler.c analysis.c report.c <span style="color: #660033;">-lcrypto</span> <span style="color: #660033;">-lssl</span> <span style="color: #660033;">-lidn</span> <span style="color: #660033;">-lz</span>
&nbsp;
See dictionaries<span style="color: #000000; font-weight: bold;">/</span>README-FIRST to pick a dictionary <span style="color: #000000; font-weight: bold;">for</span> the tool.
&nbsp;
Having problems with your scans? Be sure to visit:
http:<span style="color: #000000; font-weight: bold;">//</span>code.google.com<span style="color: #000000; font-weight: bold;">/</span>p<span style="color: #000000; font-weight: bold;">/</span>skipfish<span style="color: #000000; font-weight: bold;">/</span>wiki<span style="color: #000000; font-weight: bold;">/</span>KnownIssues</pre></div></div>

<p>After you do this, there should be an <strong>executable file</strong> named &#8220;skipfish&#8221; in the current directory. If not, or if there was an error, you probably are missing a requirement or a path is incorrectly specified.</p>
<h2>Using Skipfish</h2>
<p>This is just a basic introduction.</p>
<p>In the &#8220;skipfish&#8221; directory, enter these commands:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">touch</span> dictionaries<span style="color: #000000; font-weight: bold;">/</span>empty.wl
<span style="color: #c20cb9; font-weight: bold;">ln</span> <span style="color: #660033;">-s</span> dictionaries<span style="color: #000000; font-weight: bold;">/</span>empty.wl skipfish.wl
<span style="color: #c20cb9; font-weight: bold;">mkdir</span> ..<span style="color: #000000; font-weight: bold;">/</span>out
.<span style="color: #000000; font-weight: bold;">/</span>skipfish <span style="color: #660033;">-o</span> ..<span style="color: #000000; font-weight: bold;">/</span>out<span style="color: #000000; font-weight: bold;">/</span> http:<span style="color: #000000; font-weight: bold;">//</span>example.com</pre></div></div>

<p>This creates a blank <strong>wordlist file</strong>, and an <strong>output directory</strong>, and then launches Skipfish to scan the specified webserver. (Replace <strong>example.com</strong> with your webserver address. Make sure you have permission to scan that address.)</p>
<p>Hit Ctrl+c to stop the scan.</p>
<p>Then view the <strong>result</strong> with <strong>Firefox</strong> (not Safari or Chrome):</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">firefox ..<span style="color: #000000; font-weight: bold;">/</span>out<span style="color: #000000; font-weight: bold;">/</span>index.html</pre></div></div>

<p>I&#8217;ll have a separate post on using Skipfish, along with screenshots.</p>
<h2>Resources</h2>
<p><a href="http://code.google.com/p/skipfish/">Google Skipfish</a><br />
<a href="http://code.google.com/p/skipfish/wiki/KnownIssues">Skipfish FAQ</a></p>
<h2>Top Incoming Search Terms</h2><span class="search-terms-term">build skipfish</span> <span class="search-terms-term">building skipfish</span> <span class="search-terms-term">cache:0jf5kwtwalcj:www.redspin.com/blog/2010/03/19/installing-google-skipfish-on-ubuntudebian/ skipfish dependencies</span> <span class="search-terms-term">cache:lrtavxsu7_kj:digitivity.org/939/google-releases-skipfish-automatic-website-blog-security-scanning-tool run skipfish windows</span> <span class="search-terms-term">cara menginstall skipfish scanner</span> <span class="search-terms-term">compilar skipfish</span> <span class="search-terms-term">compile skipfish</span> <span class="search-terms-term">compile skipfish  in ubuntu</span> <span class="search-terms-term">compile skipfish ubuntu</span> <span class="search-terms-term">google skipfish download</span> <span class="search-terms-term">how to compile skipfish</span> <span class="search-terms-term">how to compile ubuntu example -kernel</span> <span class="search-terms-term">how to install skipfish</span> <span class="search-terms-term">how to install skipfish + linux</span> <span class="search-terms-term">how to install skipfish on ubuntu</span> <span class="search-terms-term">how to skipfish</span> <span class="search-terms-term">how to use skipfish</span> <span class="search-terms-term">how to use skipfish linux</span> <span class="search-terms-term">howto skipfish</span> <span class="search-terms-term">http://digitivity.org/943/how-to-install-google-skipfish-on-ubuntu-linux</span> <span class="search-terms-term">install skipfish  ubntu</span> <span class="search-terms-term">install skipfish ubuntu</span> <span class="search-terms-term">installation skipfish ubuntu</span> <span class="search-terms-term">installing skipfish</span> <span class="search-terms-term">installing skipfish in unix</span> <span class="search-terms-term">installing skipfish on ubunut</span> <span class="search-terms-term">make skipfish ubuntu</span> <span class="search-terms-term">make: *** [skipfish]</span> <span class="search-terms-term">problem compiling skipfish</span> <span class="search-terms-term">problem installing skipfish</span> <span class="search-terms-term">problems building skipfish</span> <span class="search-terms-term">scan with skipfish</span> <span class="search-terms-term">setup skipfish</span> <span class="search-terms-term">skipfish</span> <span class="search-terms-term">skipfish +  touch</span> <span class="search-terms-term">skipfish + linux</span> <span class="search-terms-term">skipfish -x example</span> <span class="search-terms-term">skipfish 1.27 installeren</span> <span class="search-terms-term">skipfish command</span> <span class="search-terms-term">skipfish compilar windows</span> <span class="search-terms-term">skipfish compile</span> <span class="search-terms-term">skipfish compile http_client</span> <span class="search-terms-term">skipfish compile on ubuntu</span> <span class="search-terms-term">skipfish compile ubuntu</span> <span class="search-terms-term">skipfish empty report</span> <span class="search-terms-term">skipfish error</span> <span class="search-terms-term">skipfish example</span> <span class="search-terms-term">skipfish example.com</span> <span class="search-terms-term">skipfish executable</span> <span class="search-terms-term">skipfish faq</span> <span class="search-terms-term">skipfish how to</span> <span class="search-terms-term">skipfish how to install in windows</span> <span class="search-terms-term">skipfish how to set dictionary</span> <span class="search-terms-term">skipfish howto</span> <span class="search-terms-term">skipfish in firefox</span> <span class="search-terms-term">skipfish install</span> <span class="search-terms-term">skipfish installation</span> <span class="search-terms-term">skipfish linux help</span> <span class="search-terms-term">skipfish on ubuntu</span> <span class="search-terms-term">skipfish openssl make</span> <span class="search-terms-term">skipfish ssl</span> <span class="search-terms-term">skipfish terminal install</span> <span class="search-terms-term">skipfish ubuntu</span> <span class="search-terms-term">skipfish ubuntu 9</span> <span class="search-terms-term">skipfish windows library</span> <span class="search-terms-term">skipfish windows linux</span> <span class="search-terms-term">skipfish.wl example</span> <span class="search-terms-term">skipfish@example.com</span> <span class="search-terms-term">stop skipfish scan</span> <span class="search-terms-term">ubuntu libidn skipfish</span> <span class="search-terms-term">ubuntu make skipfish</span> <span class="search-terms-term">ubuntu skipfish</span> <span class="search-terms-term">using skipfish</span> 

<p>Related posts:<ol><li><a href='http://digitivity.org/939/google-releases-skipfish-automatic-website-blog-security-scanning-tool' rel='bookmark' title='Permanent Link: Google Releases Skipfish Automatic Website Security Scanning Tool'>Google Releases Skipfish Automatic Website Security Scanning Tool</a></li>
<li><a href='http://digitivity.org/884/how-to-install-google-chromium-on-ubuntu' rel='bookmark' title='Permanent Link: How to Install Google Chromium on Ubuntu'>How to Install Google Chromium on Ubuntu</a></li>
<li><a href='http://digitivity.org/420/how-to-rename-files-as-lowercase-in-ubuntu-linux-recursively' rel='bookmark' title='Permanent Link: How to Rename Files as Lowercase in Ubuntu Linux Recursively'>How to Rename Files as Lowercase in Ubuntu Linux Recursively</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://digitivity.org/943/how-to-install-google-skipfish-on-ubuntu-linux/feed</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Google Releases Skipfish Automatic Website Security Scanning Tool</title>
		<link>http://digitivity.org/939/google-releases-skipfish-automatic-website-blog-security-scanning-tool</link>
		<comments>http://digitivity.org/939/google-releases-skipfish-automatic-website-blog-security-scanning-tool#comments</comments>
		<pubDate>Mon, 22 Mar 2010 18:55:29 +0000</pubDate>
		<dc:creator>Digitivity</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Digital Security]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[security scanner]]></category>
		<category><![CDATA[Skipfish]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[website]]></category>
		<category><![CDATA[website security]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://digitivity.org/?p=939</guid>
		<description><![CDATA[Google released a free website scanning tool called Skipfish. Skipfish accesses your entire website's URLs and tries to find problems from a huge list of tens of different security problems.

Click through for more.


Related posts:<ol><li><a href='http://digitivity.org/943/how-to-install-google-skipfish-on-ubuntu-linux' rel='bookmark' title='Permanent Link: How to Install Google Skipfish on Ubuntu Linux'>How to Install Google Skipfish on Ubuntu Linux</a></li>
<li><a href='http://digitivity.org/882/google-buys-picnik-a-free-online-photo-editing-website-application' rel='bookmark' title='Permanent Link: Google Buys Picnik, a Free Online Photo Editing Website'>Google Buys Picnik, a Free Online Photo Editing Website</a></li>
<li><a href='http://digitivity.org/487/google-releases-its-android-nexus-one-phone-but-its-not-an-apple-iphone-killer' rel='bookmark' title='Permanent Link: Google Releases Its Nexus One Phone, But It&#8217;s Not an iPhone Killer'>Google Releases Its Nexus One Phone, But It&#8217;s Not an iPhone Killer</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><strong>Google</strong> released a free <strong>website scanning tool</strong> called <strong>Skipfish</strong>. Skipfish accesses your entire website&#8217;s URLs and tries to find problems from a huge list of tens of different <strong>security problems</strong>.</p>
<h2>About Skipfish</h2>
<p>Skipfish is implemented as a program that you run locally (from your personal computer) or on the same server as a website or WordPress or other blog.  It saves output in a directory you specify in <strong>HTML format</strong> (sample below).<br />
<a href="http://digitivity.org/blog/wp-content/uploads/2010/03/skipfish-screen.png"><img class="alignnone size-medium wp-image-940" title="skipfish-screen" src="http://digitivity.org/blog/wp-content/uploads/2010/03/skipfish-screen-512x325.png" alt="skipfish-screen" width="512" height="325" /></a></p>
<p>If you&#8217;re wondering why Google would release a security scanner for free, Google has in interest in a secure and <strong>non-exploited Internet</strong>. If, every time you go online, your computer is hacked, you&#8217;re less likely to go online. The less you go online, the less Google searches you do, the less ads you click on, and the <strong>less money</strong> Google gets.</p>
<p>Skipfish is similar to other security scanning programs like <strong>Nikto</strong> and <strong>Nessus</strong>. But it also has some advantages such as:</p>
<ul>
<li><strong>High Performance</strong>. You can run 500+ requests per second over the Internet, 2000+ requests over a LAN, and 7000+ requests on the same server as a website.</li>
<li><strong>Ease of Use</strong>. Skipfish is flexible and it handles weird URL schemes and even comes up with automatically generated password guesses based on site content.</li>
<li><strong>Fine security checks</strong>. Skipfish detects subtle problems like cross-site scripting, but it also identifies and avoids false positives.</li>
</ul>
<p>Major <strong>security holes</strong> that Skipfish finds include</p>
<ul>
<li><strong>Server-side SQL injection</strong> (including blind vectors, numerical parameters).</li>
<li>Explicit SQL-like syntax in GET or POST parameters.</li>
<li>Server-side shell command injection (including blind vectors).</li>
<li>Server-side XML / XPath injection (including blind vectors).</li>
<li>Format string vulnerabilities.</li>
<li>Integer overflow vulnerabilities.</li>
</ul>
<p>And there are other <a href="http://code.google.com/p/skipfish/wiki/SkipfishDoc">minor problems</a> that it finds as well.</p>
<h2>Running Skipfish</h2>
<p><strong>Skipfish</strong> is written in <a href="http://en.wikipedia.org/wiki/C_(programming_language)"><strong>C</strong></a>, and you probably need to compile it before you run it. I&#8217;ll have another blog post later on preparing and <strong>running Skipfish</strong>.</p>
<p>Skipfish is hosted at <strong>Google Code</strong> here: <a href="http://code.google.com/p/skipfish/">http://code.google.com/p/skipfish/</a></p>
<h2>Top Incoming Search Terms</h2><span class="search-terms-term">build skipfish</span> <span class="search-terms-term">building skipfish</span> <span class="search-terms-term">cache:0jf5kwtwalcj:www.redspin.com/blog/2010/03/19/installing-google-skipfish-on-ubuntudebian/ skipfish dependencies</span> <span class="search-terms-term">cache:lrtavxsu7_kj:digitivity.org/939/google-releases-skipfish-automatic-website-blog-security-scanning-tool run skipfish windows</span> <span class="search-terms-term">cara menginstall skipfish scanner</span> <span class="search-terms-term">compilar skipfish</span> <span class="search-terms-term">compile skipfish</span> <span class="search-terms-term">compile skipfish  in ubuntu</span> <span class="search-terms-term">compile skipfish ubuntu</span> <span class="search-terms-term">google skipfish download</span> <span class="search-terms-term">how to compile skipfish</span> <span class="search-terms-term">how to compile ubuntu example -kernel</span> <span class="search-terms-term">how to install skipfish</span> <span class="search-terms-term">how to install skipfish + linux</span> <span class="search-terms-term">how to install skipfish on ubuntu</span> <span class="search-terms-term">how to skipfish</span> <span class="search-terms-term">how to use skipfish</span> <span class="search-terms-term">how to use skipfish linux</span> <span class="search-terms-term">howto skipfish</span> <span class="search-terms-term">http://digitivity.org/943/how-to-install-google-skipfish-on-ubuntu-linux</span> <span class="search-terms-term">install skipfish  ubntu</span> <span class="search-terms-term">install skipfish ubuntu</span> <span class="search-terms-term">installation skipfish ubuntu</span> <span class="search-terms-term">installing skipfish</span> <span class="search-terms-term">installing skipfish in unix</span> <span class="search-terms-term">installing skipfish on ubunut</span> <span class="search-terms-term">make skipfish ubuntu</span> <span class="search-terms-term">make: *** [skipfish]</span> <span class="search-terms-term">problem compiling skipfish</span> <span class="search-terms-term">problem installing skipfish</span> <span class="search-terms-term">problems building skipfish</span> <span class="search-terms-term">scan with skipfish</span> <span class="search-terms-term">setup skipfish</span> <span class="search-terms-term">skipfish</span> <span class="search-terms-term">skipfish +  touch</span> <span class="search-terms-term">skipfish + linux</span> <span class="search-terms-term">skipfish -x example</span> <span class="search-terms-term">skipfish 1.27 installeren</span> <span class="search-terms-term">skipfish command</span> <span class="search-terms-term">skipfish compilar windows</span> <span class="search-terms-term">skipfish compile</span> <span class="search-terms-term">skipfish compile http_client</span> <span class="search-terms-term">skipfish compile on ubuntu</span> <span class="search-terms-term">skipfish compile ubuntu</span> <span class="search-terms-term">skipfish empty report</span> <span class="search-terms-term">skipfish error</span> <span class="search-terms-term">skipfish example</span> <span class="search-terms-term">skipfish example.com</span> <span class="search-terms-term">skipfish executable</span> <span class="search-terms-term">skipfish faq</span> <span class="search-terms-term">skipfish how to</span> <span class="search-terms-term">skipfish how to install in windows</span> <span class="search-terms-term">skipfish how to set dictionary</span> <span class="search-terms-term">skipfish howto</span> <span class="search-terms-term">skipfish in firefox</span> <span class="search-terms-term">skipfish install</span> <span class="search-terms-term">skipfish installation</span> <span class="search-terms-term">skipfish linux help</span> <span class="search-terms-term">skipfish on ubuntu</span> <span class="search-terms-term">skipfish openssl make</span> <span class="search-terms-term">skipfish ssl</span> <span class="search-terms-term">skipfish terminal install</span> <span class="search-terms-term">skipfish ubuntu</span> <span class="search-terms-term">skipfish ubuntu 9</span> <span class="search-terms-term">skipfish windows library</span> <span class="search-terms-term">skipfish windows linux</span> <span class="search-terms-term">skipfish.wl example</span> <span class="search-terms-term">skipfish@example.com</span> <span class="search-terms-term">stop skipfish scan</span> <span class="search-terms-term">ubuntu libidn skipfish</span> <span class="search-terms-term">ubuntu make skipfish</span> <span class="search-terms-term">ubuntu skipfish</span> <span class="search-terms-term">using skipfish</span> 

<p>Related posts:<ol><li><a href='http://digitivity.org/943/how-to-install-google-skipfish-on-ubuntu-linux' rel='bookmark' title='Permanent Link: How to Install Google Skipfish on Ubuntu Linux'>How to Install Google Skipfish on Ubuntu Linux</a></li>
<li><a href='http://digitivity.org/882/google-buys-picnik-a-free-online-photo-editing-website-application' rel='bookmark' title='Permanent Link: Google Buys Picnik, a Free Online Photo Editing Website'>Google Buys Picnik, a Free Online Photo Editing Website</a></li>
<li><a href='http://digitivity.org/487/google-releases-its-android-nexus-one-phone-but-its-not-an-apple-iphone-killer' rel='bookmark' title='Permanent Link: Google Releases Its Nexus One Phone, But It&#8217;s Not an iPhone Killer'>Google Releases Its Nexus One Phone, But It&#8217;s Not an iPhone Killer</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://digitivity.org/939/google-releases-skipfish-automatic-website-blog-security-scanning-tool/feed</wfw:commentRss>
		<slash:comments>15</slash:comments>
		</item>
		<item>
		<title>Facebook Surpasses Google: What Does It Mean?</title>
		<link>http://digitivity.org/944/facebook-surpasses-google-as-number-one-site-on-internet-what-does-it-mean</link>
		<comments>http://digitivity.org/944/facebook-surpasses-google-as-number-one-site-on-internet-what-does-it-mean#comments</comments>
		<pubDate>Sun, 14 Mar 2010 15:36:06 +0000</pubDate>
		<dc:creator>Digitivity</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Facebook]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[hits]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[WWW]]></category>

		<guid isPermaLink="false">http://digitivity.org/?p=944</guid>
		<description><![CDATA[A number of sources are reporting Facebook has surpassed Google as the most visited site in the US.

Read on to find out why I think this is a loss for the open Internet.


Related posts:<ol><li><a href='http://digitivity.org/905/the-origins-of-facebook-hacked-e-mails-and-privacy' rel='bookmark' title='Permanent Link: The Origins of Facebook, Hacked E-mails, and Privacy'>The Origins of Facebook, Hacked E-mails, and Privacy</a></li>
<li><a href='http://digitivity.org/943/how-to-install-google-skipfish-on-ubuntu-linux' rel='bookmark' title='Permanent Link: How to Install Google Skipfish on Ubuntu Linux'>How to Install Google Skipfish on Ubuntu Linux</a></li>
<li><a href='http://digitivity.org/939/google-releases-skipfish-automatic-website-blog-security-scanning-tool' rel='bookmark' title='Permanent Link: Google Releases Skipfish Automatic Website Security Scanning Tool'>Google Releases Skipfish Automatic Website Security Scanning Tool</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>A number of sources are <a href="http://www.businessweek.com/news/2010-03-17/facebook-surpasses-google-in-weekly-u-s-hits-for-first-time.html">reporting</a> Facebook has surpassed Google as the most visited site in the US.</p>
<p>Hitwise <a href="http://weblogs.hitwise.com/heather-dougherty/2010/03/facebook_reaches_top_ranking_i.html">blogged</a> that the weekly market share of visits was 7.07% for Facebook and 7.03% for Google in the week ending March 13.</p>
<p><a href="http://digitivity.org/blog/wp-content/uploads/2010/04/hitwise-facebook-google-3-13-10.png"><img class="alignnone size-full wp-image-945" title="hitwise-facebook-google-3-13-10" src="http://digitivity.org/blog/wp-content/uploads/2010/04/hitwise-facebook-google-3-13-10.png" alt="hitwise-facebook-google-3-13-10" width="499" height="420" /></a></p>
<h2>A loss for the open Internet</h2>
<p>My opinion is that this represents a loss for the open Internet.</p>
<p>Although there are legitimate concerns about data privacy and some other concerns in regards to Google, in comparison to Facebook, Google looks like an angel.</p>
<h3>Origins</h3>
<p>Origins are important because the founders set the tone for the entire rest of the company as they hire people and pass on a corporate culture.</p>
<p>Compare the origin stories for the two Web giants: <a href="http://en.wikipedia.org/wiki/History_of_Google#Early_history">Google was born</a> as a kind of cool and nerdy experiment. Larry Page and Sergey Brin started Google as part of a Ph.D. research project. For the longest time, there were no ads at all on Google.</p>
<p>Facebook, on the other hand, was conceived in sin. I blogged before on <a href="http://digitivity.org/905/the-origins-of-facebook-hacked-e-mails-and-privacy">Facebook&#8217;s dubious origins</a>. It&#8217;s alleged that Mark Zuckerberg stole the idea for Facebook while he was contracted by another group of Harvard students to create a Facebook-like site, all the while stringing the other group along making them believe progress was being made on their site. Money was foremost on Zuckerberg&#8217;s mind while he allegedly went to the extent of hacking competitors&#8217; site to enhance his own.</p>
<h3>The World Wide Web</h3>
<p>Google is all about the <a href="http://en.wikipedia.org/wiki/History_of_the_World_Wide_Web#1980.E2.80.931991:_Development_of_the_World_Wide_Web">World Wide Web</a>, created in the early 1990s by Tim Berners-Lee as a connected group of hyperlinked pages and sites. The main focus of Google has always been to give you a search result for a web page and send you on your way to exploring the Web, hopping from one link to another.</p>
<p>Facebook, though, is a <a href="http://en.wikipedia.org/wiki/Walled_garden_(technology)">walled garden</a>. Once you get on the site, you&#8217;re supposed stay on it. Even to get in, you need a login. Every page you view, every action you take is logged by the same, single site, instead of multiple sites across the Web.</p>
<h3>JavaScript and cookies</h3>
<p>You can use much of Google without logging in, including the main focus (searching). You can&#8217;t do the first thing on Facebook without logging in. Same for JavaScript, cookies, and so on.</p>
<h3>Ads</h3>
<p>Google&#8217;s the progenitor of nice, reasonable text-mode ads. Although Google has some other kinds of ads as well now, Facebook ads are the definition of obnoxious, and possibly <a href="http://www.google.com/search?q=facebook+ad+scam">scammy</a>.</p>
<p>What do you think?</p>
<h2>Top Incoming Search Terms</h2><span class="search-terms-term">build skipfish</span> <span class="search-terms-term">building skipfish</span> <span class="search-terms-term">cache:0jf5kwtwalcj:www.redspin.com/blog/2010/03/19/installing-google-skipfish-on-ubuntudebian/ skipfish dependencies</span> <span class="search-terms-term">cache:lrtavxsu7_kj:digitivity.org/939/google-releases-skipfish-automatic-website-blog-security-scanning-tool run skipfish windows</span> <span class="search-terms-term">cara menginstall skipfish scanner</span> <span class="search-terms-term">compilar skipfish</span> <span class="search-terms-term">compile skipfish</span> <span class="search-terms-term">compile skipfish  in ubuntu</span> <span class="search-terms-term">compile skipfish ubuntu</span> <span class="search-terms-term">google skipfish download</span> <span class="search-terms-term">how to compile skipfish</span> <span class="search-terms-term">how to compile ubuntu example -kernel</span> <span class="search-terms-term">how to install skipfish</span> <span class="search-terms-term">how to install skipfish + linux</span> <span class="search-terms-term">how to install skipfish on ubuntu</span> <span class="search-terms-term">how to skipfish</span> <span class="search-terms-term">how to use skipfish</span> <span class="search-terms-term">how to use skipfish linux</span> <span class="search-terms-term">howto skipfish</span> <span class="search-terms-term">http://digitivity.org/943/how-to-install-google-skipfish-on-ubuntu-linux</span> <span class="search-terms-term">install skipfish  ubntu</span> <span class="search-terms-term">install skipfish ubuntu</span> <span class="search-terms-term">installation skipfish ubuntu</span> <span class="search-terms-term">installing skipfish</span> <span class="search-terms-term">installing skipfish in unix</span> <span class="search-terms-term">installing skipfish on ubunut</span> <span class="search-terms-term">make skipfish ubuntu</span> <span class="search-terms-term">make: *** [skipfish]</span> <span class="search-terms-term">problem compiling skipfish</span> <span class="search-terms-term">problem installing skipfish</span> <span class="search-terms-term">problems building skipfish</span> <span class="search-terms-term">scan with skipfish</span> <span class="search-terms-term">setup skipfish</span> <span class="search-terms-term">skipfish</span> <span class="search-terms-term">skipfish +  touch</span> <span class="search-terms-term">skipfish + linux</span> <span class="search-terms-term">skipfish -x example</span> <span class="search-terms-term">skipfish 1.27 installeren</span> <span class="search-terms-term">skipfish command</span> <span class="search-terms-term">skipfish compilar windows</span> <span class="search-terms-term">skipfish compile</span> <span class="search-terms-term">skipfish compile http_client</span> <span class="search-terms-term">skipfish compile on ubuntu</span> <span class="search-terms-term">skipfish compile ubuntu</span> <span class="search-terms-term">skipfish empty report</span> <span class="search-terms-term">skipfish error</span> <span class="search-terms-term">skipfish example</span> <span class="search-terms-term">skipfish example.com</span> <span class="search-terms-term">skipfish executable</span> <span class="search-terms-term">skipfish faq</span> <span class="search-terms-term">skipfish how to</span> <span class="search-terms-term">skipfish how to install in windows</span> <span class="search-terms-term">skipfish how to set dictionary</span> <span class="search-terms-term">skipfish howto</span> <span class="search-terms-term">skipfish in firefox</span> <span class="search-terms-term">skipfish install</span> <span class="search-terms-term">skipfish installation</span> <span class="search-terms-term">skipfish linux help</span> <span class="search-terms-term">skipfish on ubuntu</span> <span class="search-terms-term">skipfish openssl make</span> <span class="search-terms-term">skipfish ssl</span> <span class="search-terms-term">skipfish terminal install</span> <span class="search-terms-term">skipfish ubuntu</span> <span class="search-terms-term">skipfish ubuntu 9</span> <span class="search-terms-term">skipfish windows library</span> <span class="search-terms-term">skipfish windows linux</span> <span class="search-terms-term">skipfish.wl example</span> <span class="search-terms-term">skipfish@example.com</span> <span class="search-terms-term">stop skipfish scan</span> <span class="search-terms-term">ubuntu libidn skipfish</span> <span class="search-terms-term">ubuntu make skipfish</span> <span class="search-terms-term">ubuntu skipfish</span> <span class="search-terms-term">using skipfish</span> 

<p>Related posts:<ol><li><a href='http://digitivity.org/905/the-origins-of-facebook-hacked-e-mails-and-privacy' rel='bookmark' title='Permanent Link: The Origins of Facebook, Hacked E-mails, and Privacy'>The Origins of Facebook, Hacked E-mails, and Privacy</a></li>
<li><a href='http://digitivity.org/943/how-to-install-google-skipfish-on-ubuntu-linux' rel='bookmark' title='Permanent Link: How to Install Google Skipfish on Ubuntu Linux'>How to Install Google Skipfish on Ubuntu Linux</a></li>
<li><a href='http://digitivity.org/939/google-releases-skipfish-automatic-website-blog-security-scanning-tool' rel='bookmark' title='Permanent Link: Google Releases Skipfish Automatic Website Security Scanning Tool'>Google Releases Skipfish Automatic Website Security Scanning Tool</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://digitivity.org/944/facebook-surpasses-google-as-number-one-site-on-internet-what-does-it-mean/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>How to Install Google Chromium on Ubuntu</title>
		<link>http://digitivity.org/884/how-to-install-google-chromium-on-ubuntu</link>
		<comments>http://digitivity.org/884/how-to-install-google-chromium-on-ubuntu#comments</comments>
		<pubDate>Wed, 03 Mar 2010 17:59:11 +0000</pubDate>
		<dc:creator>Digitivity</dc:creator>
				<category><![CDATA[Linux/Unix]]></category>
		<category><![CDATA[Chromium]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[install]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://digitivity.org/?p=884</guid>
		<description><![CDATA[Chromium is the open-source version of the Google Chrome web browser. It excludes some of the URL-tracking stuff in Chrome.

Here's how to install it on Ubuntu.


Related posts:<ol><li><a href='http://digitivity.org/943/how-to-install-google-skipfish-on-ubuntu-linux' rel='bookmark' title='Permanent Link: How to Install Google Skipfish on Ubuntu Linux'>How to Install Google Skipfish on Ubuntu Linux</a></li>
<li><a href='http://digitivity.org/953/creating-a-database-in-mysql-with-mysql-query-browser-on-ubuntu-linux' rel='bookmark' title='Permanent Link: Creating a Database in MySQL with MySQL Query Browser on Ubuntu Linux'>Creating a Database in MySQL with MySQL Query Browser on Ubuntu Linux</a></li>
<li><a href='http://digitivity.org/939/google-releases-skipfish-automatic-website-blog-security-scanning-tool' rel='bookmark' title='Permanent Link: Google Releases Skipfish Automatic Website Security Scanning Tool'>Google Releases Skipfish Automatic Website Security Scanning Tool</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Chromium is the open-source version of the Google Chrome web browser. It excludes some of the URL-tracking stuff in Chrome.</p>
<p>Here&#8217;s how to install it on Ubuntu. This works for Karmic Koala 9.10.</p>
<h2>The short way with the command line</h2>
<p>In the file <tt>/etc/apt/sources.list</tt> add the following line:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">deb http:<span style="color: #000000; font-weight: bold;">//</span>ppa.launchpad.net<span style="color: #000000; font-weight: bold;">/</span>chromium-daily<span style="color: #000000; font-weight: bold;">/</span>ppa<span style="color: #000000; font-weight: bold;">/</span>ubuntu karmic main</pre></div></div>

<p>In a terminal, get a key and refresh the repository index:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">apt-key</span> adv <span style="color: #660033;">--recv-keys</span> <span style="color: #660033;">--keyserver</span> keyserver.ubuntu.com 4E5E17B5
<span style="color: #c20cb9; font-weight: bold;">apt-get</span> update</pre></div></div>

<p>And install Chromium:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">apt-get</span> <span style="color: #c20cb9; font-weight: bold;">install</span> chromium-browser</pre></div></div>

<h2>Installing Chromium: a walkthrough</h2>
<p>Here&#8217;s the long version.</p>
<p>Normally, packages in Ubuntu are installed from the main Ubuntu repositories. But there&#8217;s also the concept of &#8220;Personal Package Archives&#8221; for experimental software. To use these, you have to specify PPA information to Ubuntu.</p>
<p>In a terminal, add the keys for the Chromium PPA:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">apt-key</span> adv <span style="color: #660033;">--recv-keys</span> <span style="color: #660033;">--keyserver</span> keyserver.ubuntu.com 4E5E17B5</pre></div></div>

<p>Here&#8217;s the output:<br />
<a href="http://digitivity.org/blog/wp-content/uploads/2010/03/chromium-install-ubuntu-01-add-key.png"><img src="http://digitivity.org/blog/wp-content/uploads/2010/03/chromium-install-ubuntu-01-add-key-512x175.png" alt="chromium-install-ubuntu-01-add-key" title="chromium-install-ubuntu-01-add-key" width="512" height="175" class="alignnone size-medium wp-image-885" /></a></p>
<p>Open up System > Administration > Synaptic Package Manager. Then, in Synaptic, choose Settings > Repositories.<br />
<a href="http://digitivity.org/blog/wp-content/uploads/2010/03/chromium-install-ubuntu-02-software-sources.png"><img src="http://digitivity.org/blog/wp-content/uploads/2010/03/chromium-install-ubuntu-02-software-sources-512x475.png" alt="chromium-install-ubuntu-02-software-sources" title="chromium-install-ubuntu-02-software-sources" width="512" height="475" class="alignnone size-medium wp-image-886" /></a></p>
<p>Click on the &#8220;Other Software&#8221; tab and then click &#8220;Add&#8221;:<br />
<a href="http://digitivity.org/blog/wp-content/uploads/2010/03/chromium-install-ubuntu-03-software-sources.png"><img src="http://digitivity.org/blog/wp-content/uploads/2010/03/chromium-install-ubuntu-03-software-sources-512x475.png" alt="chromium-install-ubuntu-03-software-sources" title="chromium-install-ubuntu-03-software-sources" width="512" height="475" class="alignnone size-medium wp-image-887" /></a></p>
<p>Enter the following into the dialog:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">deb http:<span style="color: #000000; font-weight: bold;">//</span>ppa.launchpad.net<span style="color: #000000; font-weight: bold;">/</span>chromium-daily<span style="color: #000000; font-weight: bold;">/</span>ppa<span style="color: #000000; font-weight: bold;">/</span>ubuntu karmic main</pre></div></div>

<p><a href="http://digitivity.org/blog/wp-content/uploads/2010/03/chromium-install-ubuntu-04-add-repository.png"><img src="http://digitivity.org/blog/wp-content/uploads/2010/03/chromium-install-ubuntu-04-add-repository.png" alt="chromium-install-ubuntu-04-add-repository" title="chromium-install-ubuntu-04-add-repository" width="477" height="245" class="alignnone size-full wp-image-888" /></a></p>
<p>When you click on &#8220;Add Source&#8221;, a new repository is added which will pull in Chromium updates:<br />
<a href="http://digitivity.org/blog/wp-content/uploads/2010/03/chromium-install-ubuntu-05-chromium-repository-added.png"><img src="http://digitivity.org/blog/wp-content/uploads/2010/03/chromium-install-ubuntu-05-chromium-repository-added.png" alt="chromium-install-ubuntu-05-chromium-repository-added" title="chromium-install-ubuntu-05-chromium-repository-added" width="496" height="48" class="alignnone size-full wp-image-889" /></a></p>
<p>Synaptic will tell you you need to reload package information:<br />
<a href="http://digitivity.org/blog/wp-content/uploads/2010/03/chromium-install-ubuntu-06-repositories-changed.png"><img src="http://digitivity.org/blog/wp-content/uploads/2010/03/chromium-install-ubuntu-06-repositories-changed.png" alt="chromium-install-ubuntu-06-repositories-changed" title="chromium-install-ubuntu-06-repositories-changed" width="434" height="221" class="alignnone size-full wp-image-890" /></a></p>
<p>Click on the Reload button in the upper left-hand corner of Synaptic. Synaptic will reload package information:<br />
<a href="http://digitivity.org/blog/wp-content/uploads/2010/03/chromium-install-ubuntu-07-updating-repositories-downloading-package-information.png"><img src="http://digitivity.org/blog/wp-content/uploads/2010/03/chromium-install-ubuntu-07-updating-repositories-downloading-package-information.png" alt="chromium-install-ubuntu-07-updating-repositories-downloading-package-information" title="chromium-install-ubuntu-07-updating-repositories-downloading-package-information" width="456" height="251" class="alignnone size-full wp-image-891" /></a></p>
<p>After that&#8217;s done, enter &#8220;chromium&#8221; in the Quick Search box, right-click on Chromium Browser, and and select &#8220;Mark for Installation&#8221;:<br />
<a href="http://digitivity.org/blog/wp-content/uploads/2010/03/chromium-install-ubuntu-08-select-chromium-browser.png"><img src="http://digitivity.org/blog/wp-content/uploads/2010/03/chromium-install-ubuntu-08-select-chromium-browser.png" alt="chromium-install-ubuntu-08-select-chromium-browser" title="chromium-install-ubuntu-08-select-chromium-browser" width="509" height="136" class="alignnone size-full wp-image-892" /></a></p>
<p>Synaptic prompts you to mark additional required packages for installation. Choose Apply:<br />
<a href="http://digitivity.org/blog/wp-content/uploads/2010/03/chromium-install-ubuntu-09-chromium-required-packages.png"><img src="http://digitivity.org/blog/wp-content/uploads/2010/03/chromium-install-ubuntu-09-chromium-required-packages.png" alt="chromium-install-ubuntu-09-chromium-required-packages" title="chromium-install-ubuntu-09-chromium-required-packages" width="456" height="376" class="alignnone size-full wp-image-893" /></a></p>
<p>Note: don&#8217;t choose the &#8220;chromium&#8221; package. That&#8217;s actually an old Linux-based game:<br />
<a href="http://digitivity.org/blog/wp-content/uploads/2010/03/chromium-install-ubuntu-10-chromium-game.png"><img src="http://digitivity.org/blog/wp-content/uploads/2010/03/chromium-install-ubuntu-10-chromium-game.png" alt="chromium-install-ubuntu-10-chromium-game" title="chromium-install-ubuntu-10-chromium-game" width="476" height="113" class="alignnone size-full wp-image-894" /></a></p>
<p>Click on Apply in the toolbar in Synaptic. Verify your choice in the Summary dialog:<br />
<a href="http://digitivity.org/blog/wp-content/uploads/2010/03/chromium-install-ubuntu-11-synaptic-summary.png"><img src="http://digitivity.org/blog/wp-content/uploads/2010/03/chromium-install-ubuntu-11-synaptic-summary-512x415.png" alt="chromium-install-ubuntu-11-synaptic-summary" title="chromium-install-ubuntu-11-synaptic-summary" width="512" height="415" class="alignnone size-medium wp-image-895" /></a></p>
<p>Synaptic downloads the package files:<br />
<a href="http://digitivity.org/blog/wp-content/uploads/2010/03/chromium-install-ubuntu-12-downloading-package-files.png"><img src="http://digitivity.org/blog/wp-content/uploads/2010/03/chromium-install-ubuntu-12-downloading-package-files.png" alt="chromium-install-ubuntu-12-downloading-package-files" title="chromium-install-ubuntu-12-downloading-package-files" width="456" height="200" class="alignnone size-full wp-image-896" /></a></p>
<p>And installs them:<br />
<a href="http://digitivity.org/blog/wp-content/uploads/2010/03/chromium-install-ubuntu-13-applying-changes.png"><img src="http://digitivity.org/blog/wp-content/uploads/2010/03/chromium-install-ubuntu-13-applying-changes.png" alt="chromium-install-ubuntu-13-applying-changes" title="chromium-install-ubuntu-13-applying-changes" width="509" height="283" class="alignnone size-full wp-image-897" /></a></p>
<p>The changes are applied:<br />
<a href="http://digitivity.org/blog/wp-content/uploads/2010/03/chromium-install-ubuntu-14-changes-applied.png"><img src="http://digitivity.org/blog/wp-content/uploads/2010/03/chromium-install-ubuntu-14-changes-applied.png" alt="chromium-install-ubuntu-14-changes-applied" title="chromium-install-ubuntu-14-changes-applied" width="509" height="223" class="alignnone size-full wp-image-898" /></a></p>
<p>To run Chromium, choose &#8220;Chromium Web Browser&#8221; from the Internet menu in Applications:<br />
<a href="http://digitivity.org/blog/wp-content/uploads/2010/03/chromium-install-ubuntu-15-application-menu.png"><img src="http://digitivity.org/blog/wp-content/uploads/2010/03/chromium-install-ubuntu-15-application-menu-512x299.png" alt="chromium-install-ubuntu-15-application-menu" title="chromium-install-ubuntu-15-application-menu" width="512" height="299" class="alignnone size-medium wp-image-899" /></a></p>
<p>These instructions are for adding the daily builds PPA for Chromium, meaning that you&#8217;ll get updates for it every day if you want. For me, the version I&#8217;m running is fine, so I don&#8217;t click on the Update button when Update Manager shows up.<br />
<a href="http://digitivity.org/blog/wp-content/uploads/2010/03/chromium-install-ubuntu-about-chromium.png"><img src="http://digitivity.org/blog/wp-content/uploads/2010/03/chromium-install-ubuntu-about-chromium-512x326.png" alt="chromium-install-ubuntu-about-chromium" title="chromium-install-ubuntu-about-chromium" width="512" height="326" class="alignnone size-medium wp-image-900" /></a></p>
<h2>Top Incoming Search Terms</h2><span class="search-terms-term">build skipfish</span> <span class="search-terms-term">building skipfish</span> <span class="search-terms-term">cache:0jf5kwtwalcj:www.redspin.com/blog/2010/03/19/installing-google-skipfish-on-ubuntudebian/ skipfish dependencies</span> <span class="search-terms-term">cache:lrtavxsu7_kj:digitivity.org/939/google-releases-skipfish-automatic-website-blog-security-scanning-tool run skipfish windows</span> <span class="search-terms-term">cara menginstall skipfish scanner</span> <span class="search-terms-term">compilar skipfish</span> <span class="search-terms-term">compile skipfish</span> <span class="search-terms-term">compile skipfish  in ubuntu</span> <span class="search-terms-term">compile skipfish ubuntu</span> <span class="search-terms-term">google skipfish download</span> <span class="search-terms-term">how to compile skipfish</span> <span class="search-terms-term">how to compile ubuntu example -kernel</span> <span class="search-terms-term">how to install skipfish</span> <span class="search-terms-term">how to install skipfish + linux</span> <span class="search-terms-term">how to install skipfish on ubuntu</span> <span class="search-terms-term">how to skipfish</span> <span class="search-terms-term">how to use skipfish</span> <span class="search-terms-term">how to use skipfish linux</span> <span class="search-terms-term">howto skipfish</span> <span class="search-terms-term">http://digitivity.org/943/how-to-install-google-skipfish-on-ubuntu-linux</span> <span class="search-terms-term">install skipfish  ubntu</span> <span class="search-terms-term">install skipfish ubuntu</span> <span class="search-terms-term">installation skipfish ubuntu</span> <span class="search-terms-term">installing skipfish</span> <span class="search-terms-term">installing skipfish in unix</span> <span class="search-terms-term">installing skipfish on ubunut</span> <span class="search-terms-term">make skipfish ubuntu</span> <span class="search-terms-term">make: *** [skipfish]</span> <span class="search-terms-term">problem compiling skipfish</span> <span class="search-terms-term">problem installing skipfish</span> <span class="search-terms-term">problems building skipfish</span> <span class="search-terms-term">scan with skipfish</span> <span class="search-terms-term">setup skipfish</span> <span class="search-terms-term">skipfish</span> <span class="search-terms-term">skipfish +  touch</span> <span class="search-terms-term">skipfish + linux</span> <span class="search-terms-term">skipfish -x example</span> <span class="search-terms-term">skipfish 1.27 installeren</span> <span class="search-terms-term">skipfish command</span> <span class="search-terms-term">skipfish compilar windows</span> <span class="search-terms-term">skipfish compile</span> <span class="search-terms-term">skipfish compile http_client</span> <span class="search-terms-term">skipfish compile on ubuntu</span> <span class="search-terms-term">skipfish compile ubuntu</span> <span class="search-terms-term">skipfish empty report</span> <span class="search-terms-term">skipfish error</span> <span class="search-terms-term">skipfish example</span> <span class="search-terms-term">skipfish example.com</span> <span class="search-terms-term">skipfish executable</span> <span class="search-terms-term">skipfish faq</span> <span class="search-terms-term">skipfish how to</span> <span class="search-terms-term">skipfish how to install in windows</span> <span class="search-terms-term">skipfish how to set dictionary</span> <span class="search-terms-term">skipfish howto</span> <span class="search-terms-term">skipfish in firefox</span> <span class="search-terms-term">skipfish install</span> <span class="search-terms-term">skipfish installation</span> <span class="search-terms-term">skipfish linux help</span> <span class="search-terms-term">skipfish on ubuntu</span> <span class="search-terms-term">skipfish openssl make</span> <span class="search-terms-term">skipfish ssl</span> <span class="search-terms-term">skipfish terminal install</span> <span class="search-terms-term">skipfish ubuntu</span> <span class="search-terms-term">skipfish ubuntu 9</span> <span class="search-terms-term">skipfish windows library</span> <span class="search-terms-term">skipfish windows linux</span> <span class="search-terms-term">skipfish.wl example</span> <span class="search-terms-term">skipfish@example.com</span> <span class="search-terms-term">stop skipfish scan</span> <span class="search-terms-term">ubuntu libidn skipfish</span> <span class="search-terms-term">ubuntu make skipfish</span> <span class="search-terms-term">ubuntu skipfish</span> <span class="search-terms-term">using skipfish</span> 

<p>Related posts:<ol><li><a href='http://digitivity.org/943/how-to-install-google-skipfish-on-ubuntu-linux' rel='bookmark' title='Permanent Link: How to Install Google Skipfish on Ubuntu Linux'>How to Install Google Skipfish on Ubuntu Linux</a></li>
<li><a href='http://digitivity.org/953/creating-a-database-in-mysql-with-mysql-query-browser-on-ubuntu-linux' rel='bookmark' title='Permanent Link: Creating a Database in MySQL with MySQL Query Browser on Ubuntu Linux'>Creating a Database in MySQL with MySQL Query Browser on Ubuntu Linux</a></li>
<li><a href='http://digitivity.org/939/google-releases-skipfish-automatic-website-blog-security-scanning-tool' rel='bookmark' title='Permanent Link: Google Releases Skipfish Automatic Website Security Scanning Tool'>Google Releases Skipfish Automatic Website Security Scanning Tool</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://digitivity.org/884/how-to-install-google-chromium-on-ubuntu/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Google Buys Picnik, a Free Online Photo Editing Website</title>
		<link>http://digitivity.org/882/google-buys-picnik-a-free-online-photo-editing-website-application</link>
		<comments>http://digitivity.org/882/google-buys-picnik-a-free-online-photo-editing-website-application#comments</comments>
		<pubDate>Tue, 02 Mar 2010 17:22:26 +0000</pubDate>
		<dc:creator>Digitivity</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[image editor]]></category>
		<category><![CDATA[online app]]></category>
		<category><![CDATA[online image editor]]></category>
		<category><![CDATA[photo editor]]></category>
		<category><![CDATA[Picnik]]></category>

		<guid isPermaLink="false">http://digitivity.org/?p=882</guid>
		<description><![CDATA[Google has bought Picnik, a free online image editing website.

Picnik has grown to become one of the most popular web-based photo editing sites.


Related posts:<ol><li><a href='http://digitivity.org/939/google-releases-skipfish-automatic-website-blog-security-scanning-tool' rel='bookmark' title='Permanent Link: Google Releases Skipfish Automatic Website Security Scanning Tool'>Google Releases Skipfish Automatic Website Security Scanning Tool</a></li>
<li><a href='http://digitivity.org/943/how-to-install-google-skipfish-on-ubuntu-linux' rel='bookmark' title='Permanent Link: How to Install Google Skipfish on Ubuntu Linux'>How to Install Google Skipfish on Ubuntu Linux</a></li>
<li><a href='http://digitivity.org/9/openoffice-extension-offers-pdf-editing' rel='bookmark' title='Permanent Link: OpenOffice extension offers PDF editing'>OpenOffice extension offers PDF editing</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Google has <a href="http://techcrunch.com/2010/03/01/google-buys-up-online-photo-editing-site-picnik/">bought</a> Picnik, a free online image editing website.</p>
<p>Picnik has grown to become one of the most popular web-based photo editing sites.</p>
<p>It had a few hundred thousand visitors in January of 2007, and it <a href="http://techcrunch.com/2009/02/23/picnik-is-emerging-as-one-of-the-fastest-growing-photo-sites-on-the-web/">grew to six million</a> in January 2009. </p>
<p><a href="http://googleblog.blogspot.com/2010/03/google-welcomes-picnik.html ">Google announced</a> that no changes will be made to <a href="http://blog.picnik.com/2010/03/google-acquires-picnik">Picnik</a> for the time being, but the Picnik blog announced that they look forward to the next stage of enhancements to the service. Interestingly, Piknik is the default tool used for editing photos to be uploaded to Flickr (owned by Yahoo). Google says Yahoo (and other sites) can continue to <a href="http://techcrunch.com/2010/03/01/google-flickr-yahoo-picnik/">integrate with Picknic</a>.<br />
<a href="http://digitivity.org/blog/wp-content/uploads/2010/03/picnik-blog-image-small.jpg"><img src="http://digitivity.org/blog/wp-content/uploads/2010/03/picnik-blog-image-small.jpg" alt="picnik-blog-image-small" title="picnik-blog-image-small" width="400" height="328" class="alignnone size-full wp-image-883" /></a></p>
<h2>My Comments</h2>
<p>Google has taken some acquisitions (like Writely) and incorporated them into Google Docs. Others like Jaiku have festered. Only time will tell if Google is going to let Picnik wither or if it&#8217;ll be merged with Picassa.</p>
<h2>Top Incoming Search Terms</h2><span class="search-terms-term">build skipfish</span> <span class="search-terms-term">building skipfish</span> <span class="search-terms-term">cache:0jf5kwtwalcj:www.redspin.com/blog/2010/03/19/installing-google-skipfish-on-ubuntudebian/ skipfish dependencies</span> <span class="search-terms-term">cache:lrtavxsu7_kj:digitivity.org/939/google-releases-skipfish-automatic-website-blog-security-scanning-tool run skipfish windows</span> <span class="search-terms-term">cara menginstall skipfish scanner</span> <span class="search-terms-term">compilar skipfish</span> <span class="search-terms-term">compile skipfish</span> <span class="search-terms-term">compile skipfish  in ubuntu</span> <span class="search-terms-term">compile skipfish ubuntu</span> <span class="search-terms-term">google skipfish download</span> <span class="search-terms-term">how to compile skipfish</span> <span class="search-terms-term">how to compile ubuntu example -kernel</span> <span class="search-terms-term">how to install skipfish</span> <span class="search-terms-term">how to install skipfish + linux</span> <span class="search-terms-term">how to install skipfish on ubuntu</span> <span class="search-terms-term">how to skipfish</span> <span class="search-terms-term">how to use skipfish</span> <span class="search-terms-term">how to use skipfish linux</span> <span class="search-terms-term">howto skipfish</span> <span class="search-terms-term">http://digitivity.org/943/how-to-install-google-skipfish-on-ubuntu-linux</span> <span class="search-terms-term">install skipfish  ubntu</span> <span class="search-terms-term">install skipfish ubuntu</span> <span class="search-terms-term">installation skipfish ubuntu</span> <span class="search-terms-term">installing skipfish</span> <span class="search-terms-term">installing skipfish in unix</span> <span class="search-terms-term">installing skipfish on ubunut</span> <span class="search-terms-term">make skipfish ubuntu</span> <span class="search-terms-term">make: *** [skipfish]</span> <span class="search-terms-term">problem compiling skipfish</span> <span class="search-terms-term">problem installing skipfish</span> <span class="search-terms-term">problems building skipfish</span> <span class="search-terms-term">scan with skipfish</span> <span class="search-terms-term">setup skipfish</span> <span class="search-terms-term">skipfish</span> <span class="search-terms-term">skipfish +  touch</span> <span class="search-terms-term">skipfish + linux</span> <span class="search-terms-term">skipfish -x example</span> <span class="search-terms-term">skipfish 1.27 installeren</span> <span class="search-terms-term">skipfish command</span> <span class="search-terms-term">skipfish compilar windows</span> <span class="search-terms-term">skipfish compile</span> <span class="search-terms-term">skipfish compile http_client</span> <span class="search-terms-term">skipfish compile on ubuntu</span> <span class="search-terms-term">skipfish compile ubuntu</span> <span class="search-terms-term">skipfish empty report</span> <span class="search-terms-term">skipfish error</span> <span class="search-terms-term">skipfish example</span> <span class="search-terms-term">skipfish example.com</span> <span class="search-terms-term">skipfish executable</span> <span class="search-terms-term">skipfish faq</span> <span class="search-terms-term">skipfish how to</span> <span class="search-terms-term">skipfish how to install in windows</span> <span class="search-terms-term">skipfish how to set dictionary</span> <span class="search-terms-term">skipfish howto</span> <span class="search-terms-term">skipfish in firefox</span> <span class="search-terms-term">skipfish install</span> <span class="search-terms-term">skipfish installation</span> <span class="search-terms-term">skipfish linux help</span> <span class="search-terms-term">skipfish on ubuntu</span> <span class="search-terms-term">skipfish openssl make</span> <span class="search-terms-term">skipfish ssl</span> <span class="search-terms-term">skipfish terminal install</span> <span class="search-terms-term">skipfish ubuntu</span> <span class="search-terms-term">skipfish ubuntu 9</span> <span class="search-terms-term">skipfish windows library</span> <span class="search-terms-term">skipfish windows linux</span> <span class="search-terms-term">skipfish.wl example</span> <span class="search-terms-term">skipfish@example.com</span> <span class="search-terms-term">stop skipfish scan</span> <span class="search-terms-term">ubuntu libidn skipfish</span> <span class="search-terms-term">ubuntu make skipfish</span> <span class="search-terms-term">ubuntu skipfish</span> <span class="search-terms-term">using skipfish</span> 

<p>Related posts:<ol><li><a href='http://digitivity.org/939/google-releases-skipfish-automatic-website-blog-security-scanning-tool' rel='bookmark' title='Permanent Link: Google Releases Skipfish Automatic Website Security Scanning Tool'>Google Releases Skipfish Automatic Website Security Scanning Tool</a></li>
<li><a href='http://digitivity.org/943/how-to-install-google-skipfish-on-ubuntu-linux' rel='bookmark' title='Permanent Link: How to Install Google Skipfish on Ubuntu Linux'>How to Install Google Skipfish on Ubuntu Linux</a></li>
<li><a href='http://digitivity.org/9/openoffice-extension-offers-pdf-editing' rel='bookmark' title='Permanent Link: OpenOffice extension offers PDF editing'>OpenOffice extension offers PDF editing</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://digitivity.org/882/google-buys-picnik-a-free-online-photo-editing-website-application/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Google Chrome for Mac: Now with Extensions</title>
		<link>http://digitivity.org/815/google-chrome-for-mac-now-with-extensions</link>
		<comments>http://digitivity.org/815/google-chrome-for-mac-now-with-extensions#comments</comments>
		<pubDate>Tue, 16 Feb 2010 16:22:44 +0000</pubDate>
		<dc:creator>Digitivity</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[beta]]></category>
		<category><![CDATA[browser sync]]></category>
		<category><![CDATA[extensions]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Google Chrome]]></category>
		<category><![CDATA[releases]]></category>

		<guid isPermaLink="false">http://digitivity.org/?p=815</guid>
		<description><![CDATA[Google Chrome's been out for Mac since December, but now they've released a new beta version with extensions and other features.

Click through to see a video of the new features.



Related posts:<ol><li><a href='http://digitivity.org/943/how-to-install-google-skipfish-on-ubuntu-linux' rel='bookmark' title='Permanent Link: How to Install Google Skipfish on Ubuntu Linux'>How to Install Google Skipfish on Ubuntu Linux</a></li>
<li><a href='http://digitivity.org/441/google-chrome-browser-third-place-behind-internet-explorer-and-firefox' rel='bookmark' title='Permanent Link: Google Chrome Browser Third Place Behind Internet Explorer and Firefox'>Google Chrome Browser Third Place Behind Internet Explorer and Firefox</a></li>
<li><a href='http://digitivity.org/70/firefox-and-chrome-complicate-mozilla-and-google-ties' rel='bookmark' title='Permanent Link: Firefox and Chrome Complicate Mozilla and Google Ties'>Firefox and Chrome Complicate Mozilla and Google Ties</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><strong>Google Chrome</strong>&#8217;s been out for <strong>Mac</strong> since December, but now they&#8217;ve <a href="http://googleblog.blogspot.com/2010/02/bringing-extensions-to-google-chrome.html">released</a> a <a href="http://chrome.blogspot.com/2010/02/new-beta-of-google-chrome-for-mac-with.html">new beta</a> version with <strong>extensions</strong> and other features.</p>
<h3>Extensions</h3>
<p>You can now install any of the Google Chrome <a href="http://chrome.google.com/extensions/">extensions</a>.  One that I find handy is <a href="https://chrome.google.com/extensions/detail/gofhjkjmkpinhpoiabjplobcaignabnl">FlashBlock</a>.</p>
<h3>Bookmark sync</h3>
<p>You can <strong>synchronize</strong> your browser <strong>bookmarks</strong> among the different computers you use. This works with Google Chrome for <strong>Mac</strong>, <strong>Linux</strong>, and <strong>Windows</strong>.</p>
<h3>Task Manager</h3>
<p>Sometimes certain web pages make your browser <strong>hang</strong>. In Google Chrome, that only affects a single tab. You can use the Task Manager to <strong>kill</strong> specific tabs that are hanging.</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="512" height="311" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/FNAg1v3Hwpg&amp;hl=en_US&amp;fs=1&amp;" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="512" height="311" src="http://www.youtube.com/v/FNAg1v3Hwpg&amp;hl=en_US&amp;fs=1&amp;" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<h3>Download Google Chrome</h3>
<p><strong>Download</strong> Chrome for the Mac <a href="http://www.google.com/chrome?platform=mac">here</a>.</p>
<h2>Top Incoming Search Terms</h2><span class="search-terms-term">build skipfish</span> <span class="search-terms-term">building skipfish</span> <span class="search-terms-term">cache:0jf5kwtwalcj:www.redspin.com/blog/2010/03/19/installing-google-skipfish-on-ubuntudebian/ skipfish dependencies</span> <span class="search-terms-term">cache:lrtavxsu7_kj:digitivity.org/939/google-releases-skipfish-automatic-website-blog-security-scanning-tool run skipfish windows</span> <span class="search-terms-term">cara menginstall skipfish scanner</span> <span class="search-terms-term">compilar skipfish</span> <span class="search-terms-term">compile skipfish</span> <span class="search-terms-term">compile skipfish  in ubuntu</span> <span class="search-terms-term">compile skipfish ubuntu</span> <span class="search-terms-term">google skipfish download</span> <span class="search-terms-term">how to compile skipfish</span> <span class="search-terms-term">how to compile ubuntu example -kernel</span> <span class="search-terms-term">how to install skipfish</span> <span class="search-terms-term">how to install skipfish + linux</span> <span class="search-terms-term">how to install skipfish on ubuntu</span> <span class="search-terms-term">how to skipfish</span> <span class="search-terms-term">how to use skipfish</span> <span class="search-terms-term">how to use skipfish linux</span> <span class="search-terms-term">howto skipfish</span> <span class="search-terms-term">http://digitivity.org/943/how-to-install-google-skipfish-on-ubuntu-linux</span> <span class="search-terms-term">install skipfish  ubntu</span> <span class="search-terms-term">install skipfish ubuntu</span> <span class="search-terms-term">installation skipfish ubuntu</span> <span class="search-terms-term">installing skipfish</span> <span class="search-terms-term">installing skipfish in unix</span> <span class="search-terms-term">installing skipfish on ubunut</span> <span class="search-terms-term">make skipfish ubuntu</span> <span class="search-terms-term">make: *** [skipfish]</span> <span class="search-terms-term">problem compiling skipfish</span> <span class="search-terms-term">problem installing skipfish</span> <span class="search-terms-term">problems building skipfish</span> <span class="search-terms-term">scan with skipfish</span> <span class="search-terms-term">setup skipfish</span> <span class="search-terms-term">skipfish</span> <span class="search-terms-term">skipfish +  touch</span> <span class="search-terms-term">skipfish + linux</span> <span class="search-terms-term">skipfish -x example</span> <span class="search-terms-term">skipfish 1.27 installeren</span> <span class="search-terms-term">skipfish command</span> <span class="search-terms-term">skipfish compilar windows</span> <span class="search-terms-term">skipfish compile</span> <span class="search-terms-term">skipfish compile http_client</span> <span class="search-terms-term">skipfish compile on ubuntu</span> <span class="search-terms-term">skipfish compile ubuntu</span> <span class="search-terms-term">skipfish empty report</span> <span class="search-terms-term">skipfish error</span> <span class="search-terms-term">skipfish example</span> <span class="search-terms-term">skipfish example.com</span> <span class="search-terms-term">skipfish executable</span> <span class="search-terms-term">skipfish faq</span> <span class="search-terms-term">skipfish how to</span> <span class="search-terms-term">skipfish how to install in windows</span> <span class="search-terms-term">skipfish how to set dictionary</span> <span class="search-terms-term">skipfish howto</span> <span class="search-terms-term">skipfish in firefox</span> <span class="search-terms-term">skipfish install</span> <span class="search-terms-term">skipfish installation</span> <span class="search-terms-term">skipfish linux help</span> <span class="search-terms-term">skipfish on ubuntu</span> <span class="search-terms-term">skipfish openssl make</span> <span class="search-terms-term">skipfish ssl</span> <span class="search-terms-term">skipfish terminal install</span> <span class="search-terms-term">skipfish ubuntu</span> <span class="search-terms-term">skipfish ubuntu 9</span> <span class="search-terms-term">skipfish windows library</span> <span class="search-terms-term">skipfish windows linux</span> <span class="search-terms-term">skipfish.wl example</span> <span class="search-terms-term">skipfish@example.com</span> <span class="search-terms-term">stop skipfish scan</span> <span class="search-terms-term">ubuntu libidn skipfish</span> <span class="search-terms-term">ubuntu make skipfish</span> <span class="search-terms-term">ubuntu skipfish</span> <span class="search-terms-term">using skipfish</span> 

<p>Related posts:<ol><li><a href='http://digitivity.org/943/how-to-install-google-skipfish-on-ubuntu-linux' rel='bookmark' title='Permanent Link: How to Install Google Skipfish on Ubuntu Linux'>How to Install Google Skipfish on Ubuntu Linux</a></li>
<li><a href='http://digitivity.org/441/google-chrome-browser-third-place-behind-internet-explorer-and-firefox' rel='bookmark' title='Permanent Link: Google Chrome Browser Third Place Behind Internet Explorer and Firefox'>Google Chrome Browser Third Place Behind Internet Explorer and Firefox</a></li>
<li><a href='http://digitivity.org/70/firefox-and-chrome-complicate-mozilla-and-google-ties' rel='bookmark' title='Permanent Link: Firefox and Chrome Complicate Mozilla and Google Ties'>Firefox and Chrome Complicate Mozilla and Google Ties</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://digitivity.org/815/google-chrome-for-mac-now-with-extensions/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Google Fiber for Communities: 1Gbps Broadband Internet Service Coming</title>
		<link>http://digitivity.org/804/google-fiber-for-communities-1gbps-broadband-internet-service-coming</link>
		<comments>http://digitivity.org/804/google-fiber-for-communities-1gbps-broadband-internet-service-coming#comments</comments>
		<pubDate>Thu, 11 Feb 2010 16:43:57 +0000</pubDate>
		<dc:creator>Digitivity</dc:creator>
				<category><![CDATA[Digital Life]]></category>
		<category><![CDATA[broadband]]></category>
		<category><![CDATA[fiber]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Google Fiber for Communities]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Internet service]]></category>
		<category><![CDATA[ISP]]></category>

		<guid isPermaLink="false">http://digitivity.org/?p=804</guid>
		<description><![CDATA[Google announced that they are going to be building high-speed networks 100x faster what most people have today.

They're going to price their broadband service competitively to what other companies are charging.

I say it's about time.


Related posts:<ol><li><a href='http://digitivity.org/943/how-to-install-google-skipfish-on-ubuntu-linux' rel='bookmark' title='Permanent Link: How to Install Google Skipfish on Ubuntu Linux'>How to Install Google Skipfish on Ubuntu Linux</a></li>
<li><a href='http://digitivity.org/939/google-releases-skipfish-automatic-website-blog-security-scanning-tool' rel='bookmark' title='Permanent Link: Google Releases Skipfish Automatic Website Security Scanning Tool'>Google Releases Skipfish Automatic Website Security Scanning Tool</a></li>
<li><a href='http://digitivity.org/72/obama-proposes-44-billion-universal-broadband-plan' rel='bookmark' title='Permanent Link: Obama Proposes $44 Billion Universal Broadband Plan'>Obama Proposes $44 Billion Universal Broadband Plan</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><strong>Google</strong> announced that they are going to be building <strong>high-speed</strong> networks <strong>100x</strong> <strong>faster</strong> what most people have today.</p>
<p>They&#8217;re going to price their <strong>broadband service</strong> competitively to what other companies are charging.</p>
<p>I say it&#8217;s about time.</p>
<p>Google is launching the service to <strong>jumpstart</strong> new, high-speed Internet technologies. They&#8217;ll share what they learn in these trials with other companies to help increase Internet speeds generally.</p>
<p>It hasn&#8217;t decided where the service will be launched.</p>
<ul>
<li>The networks will be <strong>open access</strong>, meaning the network infrastructure will be shared with other access providers.</li>
<li>They&#8217;ll provide service to anywhere from <strong>50,000</strong> to a <strong>half-million</strong> subscribers.</li>
<li>The trials will occur in one or more <strong>US municipalities</strong> which Google determines would be a good fit.</li>
</ul>
<p><object width="512" height="311"><param name="movie" value="http://www.youtube.com/v/wusklcNKDZc&#038;hl=en_US&#038;fs=1&#038;"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/wusklcNKDZc&#038;hl=en_US&#038;fs=1&#038;" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="512" height="311"></embed></object></p>
<h3>How fast is 1Gbps?</h3>
<p><strong>1 Gigabyte per second</strong> is:</p>
<ul>
<li>134,217,728 bytes per second</li>
<li>131,072 MB per second</li>
<li><strong>7.86 GB per minute</strong></li>
</ul>
<p>Obviously, this is fast enough to download a <strong>high-definition movie in minutes</strong>, or a standard-definition movie in seconds. There are a lot of videoconferencing, medical, gaming, educational, and other <strong>applications</strong> you could imagine being made possible with this speed.</p>
<h2>Request for information</h2>
<p>Google has a <a href="http://www.google.com/appserve/fiberrfi/public/overview">web page</a> that describes what they are doing.</p>
<p>It&#8217;s <strong>requesting information</strong> from <strong>cities</strong>, counties, military bases, etc., which would be interested in participating in the program.</p>
<p>Even if your city doesn&#8217;t send an application in, you can <strong>nominate</strong> your locality as an <strong>individual</strong>.</p>
<h2>My comments</h2>
<p>Although it&#8217;s hard to believe that a <strong>corporation</strong> would be doing something like this out of the goodness of their own hearts, Google actually has an <strong>interest</strong> in high-speed Internet:</p>
<ul>
<li>The <strong>faster</strong> the Internet experience is, the more <strong>compelling</strong> it is.</li>
<li>The more compelling the Internet is, the more <strong>time</strong> people spend online.</li>
<li>The more time people spend <strong>online</strong>, the more time they are likely to be on Google, or on a site that has <strong>Google ads</strong>.</li>
<li>Hence, the <strong>more money</strong> Google makes.</li>
</ul>
<h3>Textual vs. audiovisual Internet</h3>
<p>A lower speed Internet lends itself to a <strong>textual</strong> world-wide web. When speeds increased, the use of <strong>images</strong> on the web increased. When we moved to DSL and broadband, in came <strong>videos</strong>. Even higher speeds (1 gigabit per second) would mean the possibility of an even more multimedia-based Internet.</p>
<p>But how can this be good for Google, which has traditionally leveraged its parsing of web page text in order to be able to serve <strong>ads</strong>?</p>
<p>I think the answer is in some key <strong>audio-to-text</strong> technologies which Google has recently rolled out:</p>
<ul>
<li><a href="http://news.bbc.co.uk/2/hi/technology/8369941.stm">Automatic subtitles for YouTube</a></li>
<li>
<a href="http://www.google.com/support/android/bin/static.py?page=guide.cs&amp;guide=27201&amp;topic=27220&amp;answer=168515">Textual</a> <a href="http://www.geek.com/articles/mobile/nexus-one-tour-google-voice-the-superphones-killer-app-2010017/">voicemail</a> for Google Nexus and Android cell phones</li>
</ul>
<p>Since Google now has the ability to <strong>parse</strong> spoken <strong>words</strong>, it&#8217;s not afraid of audiovisual elements in the web for serving <strong>relevant advertisements</strong>. In fact a really <strong>cool</strong> thing that they could do is show different ads as a speaker changes subjects.</p>
<h3>Network neutrality</h3>
<p>There&#8217;s also the factor that Google&#8217;s been fighting <strong>ISPs</strong> who are content producers (Time/AOL) or are otherwise jerks (<strong>AT&amp;T</strong>) which are limiting the already <strong>pathetic speeds</strong> that they deign to give to American Internet consumers. AT&amp;T&#8217;s head actually said he&#8217;d like Google to pay for the access that he gives Google to consumers.</p>
<p>This represents a sort of end-run around those ISPs. Google will make its <strong>own Internet</strong>.</p>
<p>Here&#8217;s a case where Google&#8217;s interests align with common man&#8217;s. Hooray for Google in this instance.</p>
<h2>Resources</h2>
<p><a href="http://www.google.com/appserve/fiberrfi/">Google Fiber for Communities</a></p>
<p><a href="http://arstechnica.com/tech-policy/news/2010/02/your-new-isp-google-launches-1gbps-fiber-to-the-home-trial.ars">Ars Technica article</a></p>
<p><a href="http://tech.slashdot.org/story/10/02/10/1712200/Googles-Experimental-Fiber-Network">Slashdot discussion</a></p>
<h2>Top Incoming Search Terms</h2><span class="search-terms-term">build skipfish</span> <span class="search-terms-term">building skipfish</span> <span class="search-terms-term">cache:0jf5kwtwalcj:www.redspin.com/blog/2010/03/19/installing-google-skipfish-on-ubuntudebian/ skipfish dependencies</span> <span class="search-terms-term">cache:lrtavxsu7_kj:digitivity.org/939/google-releases-skipfish-automatic-website-blog-security-scanning-tool run skipfish windows</span> <span class="search-terms-term">cara menginstall skipfish scanner</span> <span class="search-terms-term">compilar skipfish</span> <span class="search-terms-term">compile skipfish</span> <span class="search-terms-term">compile skipfish  in ubuntu</span> <span class="search-terms-term">compile skipfish ubuntu</span> <span class="search-terms-term">google skipfish download</span> <span class="search-terms-term">how to compile skipfish</span> <span class="search-terms-term">how to compile ubuntu example -kernel</span> <span class="search-terms-term">how to install skipfish</span> <span class="search-terms-term">how to install skipfish + linux</span> <span class="search-terms-term">how to install skipfish on ubuntu</span> <span class="search-terms-term">how to skipfish</span> <span class="search-terms-term">how to use skipfish</span> <span class="search-terms-term">how to use skipfish linux</span> <span class="search-terms-term">howto skipfish</span> <span class="search-terms-term">http://digitivity.org/943/how-to-install-google-skipfish-on-ubuntu-linux</span> <span class="search-terms-term">install skipfish  ubntu</span> <span class="search-terms-term">install skipfish ubuntu</span> <span class="search-terms-term">installation skipfish ubuntu</span> <span class="search-terms-term">installing skipfish</span> <span class="search-terms-term">installing skipfish in unix</span> <span class="search-terms-term">installing skipfish on ubunut</span> <span class="search-terms-term">make skipfish ubuntu</span> <span class="search-terms-term">make: *** [skipfish]</span> <span class="search-terms-term">problem compiling skipfish</span> <span class="search-terms-term">problem installing skipfish</span> <span class="search-terms-term">problems building skipfish</span> <span class="search-terms-term">scan with skipfish</span> <span class="search-terms-term">setup skipfish</span> <span class="search-terms-term">skipfish</span> <span class="search-terms-term">skipfish +  touch</span> <span class="search-terms-term">skipfish + linux</span> <span class="search-terms-term">skipfish -x example</span> <span class="search-terms-term">skipfish 1.27 installeren</span> <span class="search-terms-term">skipfish command</span> <span class="search-terms-term">skipfish compilar windows</span> <span class="search-terms-term">skipfish compile</span> <span class="search-terms-term">skipfish compile http_client</span> <span class="search-terms-term">skipfish compile on ubuntu</span> <span class="search-terms-term">skipfish compile ubuntu</span> <span class="search-terms-term">skipfish empty report</span> <span class="search-terms-term">skipfish error</span> <span class="search-terms-term">skipfish example</span> <span class="search-terms-term">skipfish example.com</span> <span class="search-terms-term">skipfish executable</span> <span class="search-terms-term">skipfish faq</span> <span class="search-terms-term">skipfish how to</span> <span class="search-terms-term">skipfish how to install in windows</span> <span class="search-terms-term">skipfish how to set dictionary</span> <span class="search-terms-term">skipfish howto</span> <span class="search-terms-term">skipfish in firefox</span> <span class="search-terms-term">skipfish install</span> <span class="search-terms-term">skipfish installation</span> <span class="search-terms-term">skipfish linux help</span> <span class="search-terms-term">skipfish on ubuntu</span> <span class="search-terms-term">skipfish openssl make</span> <span class="search-terms-term">skipfish ssl</span> <span class="search-terms-term">skipfish terminal install</span> <span class="search-terms-term">skipfish ubuntu</span> <span class="search-terms-term">skipfish ubuntu 9</span> <span class="search-terms-term">skipfish windows library</span> <span class="search-terms-term">skipfish windows linux</span> <span class="search-terms-term">skipfish.wl example</span> <span class="search-terms-term">skipfish@example.com</span> <span class="search-terms-term">stop skipfish scan</span> <span class="search-terms-term">ubuntu libidn skipfish</span> <span class="search-terms-term">ubuntu make skipfish</span> <span class="search-terms-term">ubuntu skipfish</span> <span class="search-terms-term">using skipfish</span> 

<p>Related posts:<ol><li><a href='http://digitivity.org/943/how-to-install-google-skipfish-on-ubuntu-linux' rel='bookmark' title='Permanent Link: How to Install Google Skipfish on Ubuntu Linux'>How to Install Google Skipfish on Ubuntu Linux</a></li>
<li><a href='http://digitivity.org/939/google-releases-skipfish-automatic-website-blog-security-scanning-tool' rel='bookmark' title='Permanent Link: Google Releases Skipfish Automatic Website Security Scanning Tool'>Google Releases Skipfish Automatic Website Security Scanning Tool</a></li>
<li><a href='http://digitivity.org/72/obama-proposes-44-billion-universal-broadband-plan' rel='bookmark' title='Permanent Link: Obama Proposes $44 Billion Universal Broadband Plan'>Obama Proposes $44 Billion Universal Broadband Plan</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://digitivity.org/804/google-fiber-for-communities-1gbps-broadband-internet-service-coming/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Google Adds Sex Free Safety Mode for YouTube</title>
		<link>http://digitivity.org/802/google-youtube-safety-mode-sex-violence-free-safe-for-work</link>
		<comments>http://digitivity.org/802/google-youtube-safety-mode-sex-violence-free-safe-for-work#comments</comments>
		<pubDate>Wed, 10 Feb 2010 17:22:55 +0000</pubDate>
		<dc:creator>Digitivity</dc:creator>
				<category><![CDATA[Digital Life]]></category>
		<category><![CDATA[content restriction]]></category>
		<category><![CDATA[filter]]></category>
		<category><![CDATA[filtering]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[safe mode]]></category>
		<category><![CDATA[sex]]></category>
		<category><![CDATA[violence]]></category>
		<category><![CDATA[YouTube]]></category>
		<category><![CDATA[YouTube safety mode]]></category>

		<guid isPermaLink="false">http://digitivity.org/?p=802</guid>
		<description><![CDATA[Google introduced what they're calling Safety Mode for YouTube. YouTube's community guidelines are already pretty strict, but Safety Mode takes it a step further.



Related posts:<ol><li><a href='http://digitivity.org/943/how-to-install-google-skipfish-on-ubuntu-linux' rel='bookmark' title='Permanent Link: How to Install Google Skipfish on Ubuntu Linux'>How to Install Google Skipfish on Ubuntu Linux</a></li>
<li><a href='http://digitivity.org/939/google-releases-skipfish-automatic-website-blog-security-scanning-tool' rel='bookmark' title='Permanent Link: Google Releases Skipfish Automatic Website Security Scanning Tool'>Google Releases Skipfish Automatic Website Security Scanning Tool</a></li>
<li><a href='http://digitivity.org/552/google-adds-favicons-to-google-webmaster-tools' rel='bookmark' title='Permanent Link: Google Adds Favicons to Google Webmaster Tools'>Google Adds Favicons to Google Webmaster Tools</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><strong>Google</strong> introduced what they&#8217;re calling <strong><a href="http://googleblog.blogspot.com/2010/02/safety-mode-giving-you-more-control-on.html">Safety Mode</a></strong> for <strong>YouTube</strong>. YouTube&#8217;s <a href="http://www.youtube.com/t/community_guidelines">community guidelines</a> are already pretty strict, but Safety Mode takes it a step further.</p>
<p>Videos that will be <strong>filtered</strong> in the new Safety Mode include:</p>
<ul>
<li>Videos with a <strong>sexual</strong> theme meant for mature viewers</li>
<li>News videos featuring <strong>violence</strong></li>
</ul>
<p><object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/gkI3e0P3S5E&#038;color1=0xb1b1b1&#038;color2=0xcfcfcf&#038;hl=en_US&#038;feature=player_embedded&#038;fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowScriptAccess" value="always"></param><embed src="http://www.youtube.com/v/gkI3e0P3S5E&#038;color1=0xb1b1b1&#038;color2=0xcfcfcf&#038;hl=en_US&#038;feature=player_embedded&#038;fs=1" type="application/x-shockwave-flash" allowfullscreen="true" allowScriptAccess="always" width="425" height="344"></embed></object></p>
<h2>Turning on Safety Mode</h2>
<p>There&#8217;s a link to <strong>turn on Safety Mode</strong> at the <strong>bottom</strong> of every <strong>YouTube page</strong>.</p>
<p>You can <strong>lock</strong> Safety Mode on by <strong>logging in</strong>, and then turning Safety Mode on (which, again, is at the bottom of every page).</p>
<p>The setting is <strong>browser-specific</strong>, and also <strong>profile-specific</strong>. So if you (or other users) use multiple browsers, you have to set Safety Mode to &#8220;on&#8221; in every browser. It doesn&#8217;t matter if the person using the browser is logged in or not; Safety Mode will stay on until you log in with your password and turn it off.</p>
<h2>Using Safety Mode</h2>
<p>If you have Safety Mode on,</p>
<ul>
<li><strong>Search results</strong> won&#8217;t feature objectionable content, though the fact that results were filtered will be noted.</li>
<li><strong>Comments</strong> aren&#8217;t shown by default.</li>
<li>If you show comments, <strong>objectionable words</strong> are replaced with <strong>asterisks</strong>.</li>
<li>You won&#8217;t be able to see filtered videos a friend sends you until Safety Mode is turned off.</li>
</ul>
<h2>My comments</h2>
<p>Google&#8217;s recently been increasing the amount of <strong>advertising</strong> on YouTube. It looks like Google is creating a <strong>safe for work</strong> atmosphere which is also a <strong>safe for advertising</strong> environment.</p>
<h2>Resources</h2>
<p><a href="http://googleblog.blogspot.com/2010/02/safety-mode-giving-you-more-control-on.html">Google announcement of Safety Mode</a><br />
<a href="http://www.google.com/support/youtube/bin/answer.py?&#038;answer=174084">Google Help on YouTube Safety Mode</a><br />
<a href="http://digital.venturebeat.com/2010/02/10/youtube-safety-mode-objectionable-video/">http://digital.venturebeat.com/</a><br />
<a href="http://financegeek.com/google-creates-sex-free-advertiser-friendly-version-of-youtube/">http://financegeek.com/</a><br />
<a href="http://techcrunch.com/2010/02/10/youtube-introduces-safety-mode-for-that-grey-area-content/">http://techcrunch.com/</a><br />
<a href="http://googland.blogspot.com/2010/02/g-safety-mode-giving-you-more-control_10.html">http://googland.blogspot.com/</a></p>
<h2>Top Incoming Search Terms</h2><span class="search-terms-term">build skipfish</span> <span class="search-terms-term">building skipfish</span> <span class="search-terms-term">cache:0jf5kwtwalcj:www.redspin.com/blog/2010/03/19/installing-google-skipfish-on-ubuntudebian/ skipfish dependencies</span> <span class="search-terms-term">cache:lrtavxsu7_kj:digitivity.org/939/google-releases-skipfish-automatic-website-blog-security-scanning-tool run skipfish windows</span> <span class="search-terms-term">cara menginstall skipfish scanner</span> <span class="search-terms-term">compilar skipfish</span> <span class="search-terms-term">compile skipfish</span> <span class="search-terms-term">compile skipfish  in ubuntu</span> <span class="search-terms-term">compile skipfish ubuntu</span> <span class="search-terms-term">google skipfish download</span> <span class="search-terms-term">how to compile skipfish</span> <span class="search-terms-term">how to compile ubuntu example -kernel</span> <span class="search-terms-term">how to install skipfish</span> <span class="search-terms-term">how to install skipfish + linux</span> <span class="search-terms-term">how to install skipfish on ubuntu</span> <span class="search-terms-term">how to skipfish</span> <span class="search-terms-term">how to use skipfish</span> <span class="search-terms-term">how to use skipfish linux</span> <span class="search-terms-term">howto skipfish</span> <span class="search-terms-term">http://digitivity.org/943/how-to-install-google-skipfish-on-ubuntu-linux</span> <span class="search-terms-term">install skipfish  ubntu</span> <span class="search-terms-term">install skipfish ubuntu</span> <span class="search-terms-term">installation skipfish ubuntu</span> <span class="search-terms-term">installing skipfish</span> <span class="search-terms-term">installing skipfish in unix</span> <span class="search-terms-term">installing skipfish on ubunut</span> <span class="search-terms-term">make skipfish ubuntu</span> <span class="search-terms-term">make: *** [skipfish]</span> <span class="search-terms-term">problem compiling skipfish</span> <span class="search-terms-term">problem installing skipfish</span> <span class="search-terms-term">problems building skipfish</span> <span class="search-terms-term">scan with skipfish</span> <span class="search-terms-term">setup skipfish</span> <span class="search-terms-term">skipfish</span> <span class="search-terms-term">skipfish +  touch</span> <span class="search-terms-term">skipfish + linux</span> <span class="search-terms-term">skipfish -x example</span> <span class="search-terms-term">skipfish 1.27 installeren</span> <span class="search-terms-term">skipfish command</span> <span class="search-terms-term">skipfish compilar windows</span> <span class="search-terms-term">skipfish compile</span> <span class="search-terms-term">skipfish compile http_client</span> <span class="search-terms-term">skipfish compile on ubuntu</span> <span class="search-terms-term">skipfish compile ubuntu</span> <span class="search-terms-term">skipfish empty report</span> <span class="search-terms-term">skipfish error</span> <span class="search-terms-term">skipfish example</span> <span class="search-terms-term">skipfish example.com</span> <span class="search-terms-term">skipfish executable</span> <span class="search-terms-term">skipfish faq</span> <span class="search-terms-term">skipfish how to</span> <span class="search-terms-term">skipfish how to install in windows</span> <span class="search-terms-term">skipfish how to set dictionary</span> <span class="search-terms-term">skipfish howto</span> <span class="search-terms-term">skipfish in firefox</span> <span class="search-terms-term">skipfish install</span> <span class="search-terms-term">skipfish installation</span> <span class="search-terms-term">skipfish linux help</span> <span class="search-terms-term">skipfish on ubuntu</span> <span class="search-terms-term">skipfish openssl make</span> <span class="search-terms-term">skipfish ssl</span> <span class="search-terms-term">skipfish terminal install</span> <span class="search-terms-term">skipfish ubuntu</span> <span class="search-terms-term">skipfish ubuntu 9</span> <span class="search-terms-term">skipfish windows library</span> <span class="search-terms-term">skipfish windows linux</span> <span class="search-terms-term">skipfish.wl example</span> <span class="search-terms-term">skipfish@example.com</span> <span class="search-terms-term">stop skipfish scan</span> <span class="search-terms-term">ubuntu libidn skipfish</span> <span class="search-terms-term">ubuntu make skipfish</span> <span class="search-terms-term">ubuntu skipfish</span> <span class="search-terms-term">using skipfish</span> 

<p>Related posts:<ol><li><a href='http://digitivity.org/943/how-to-install-google-skipfish-on-ubuntu-linux' rel='bookmark' title='Permanent Link: How to Install Google Skipfish on Ubuntu Linux'>How to Install Google Skipfish on Ubuntu Linux</a></li>
<li><a href='http://digitivity.org/939/google-releases-skipfish-automatic-website-blog-security-scanning-tool' rel='bookmark' title='Permanent Link: Google Releases Skipfish Automatic Website Security Scanning Tool'>Google Releases Skipfish Automatic Website Security Scanning Tool</a></li>
<li><a href='http://digitivity.org/552/google-adds-favicons-to-google-webmaster-tools' rel='bookmark' title='Permanent Link: Google Adds Favicons to Google Webmaster Tools'>Google Adds Favicons to Google Webmaster Tools</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://digitivity.org/802/google-youtube-safety-mode-sex-violence-free-safe-for-work/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Google Nexus One and Android Get Multi-Touch</title>
		<link>http://digitivity.org/778/google-nexus-one-and-android-get-multi-touch-apple</link>
		<comments>http://digitivity.org/778/google-nexus-one-and-android-get-multi-touch-apple#comments</comments>
		<pubDate>Thu, 04 Feb 2010 15:27:59 +0000</pubDate>
		<dc:creator>Digitivity</dc:creator>
				<category><![CDATA[Digital Devices]]></category>
		<category><![CDATA[Android]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[cell phone]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[mobile phone]]></category>
		<category><![CDATA[multi-touch]]></category>
		<category><![CDATA[Nexus One]]></category>

		<guid isPermaLink="false">http://digitivity.org/?p=778</guid>
		<description><![CDATA[The one big complaint against Google's Nexus One cell phone was that it didn't have multi-touch like Apple's iPhone did.

Not anymore.


Related posts:<ol><li><a href='http://digitivity.org/487/google-releases-its-android-nexus-one-phone-but-its-not-an-apple-iphone-killer' rel='bookmark' title='Permanent Link: Google Releases Its Nexus One Phone, But It&#8217;s Not an iPhone Killer'>Google Releases Its Nexus One Phone, But It&#8217;s Not an iPhone Killer</a></li>
<li><a href='http://digitivity.org/943/how-to-install-google-skipfish-on-ubuntu-linux' rel='bookmark' title='Permanent Link: How to Install Google Skipfish on Ubuntu Linux'>How to Install Google Skipfish on Ubuntu Linux</a></li>
<li><a href='http://digitivity.org/939/google-releases-skipfish-automatic-website-blog-security-scanning-tool' rel='bookmark' title='Permanent Link: Google Releases Skipfish Automatic Website Security Scanning Tool'>Google Releases Skipfish Automatic Website Security Scanning Tool</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>The one big complaint against <strong>Google&#8217;s Nexus One</strong> cell phone was that it didn&#8217;t have multi-touch like Apple&#8217;s <strong>iPhone</strong> did.</p>
<p>Not anymore.</p>
<p><strong>Google</strong> announced in a <a href="http://googlenexusoneboard.blogspot.com/2010/02/new-software-update-for-nexus-one.html">blog post</a> that new software <strong>update</strong> for the <strong>Nexus One</strong> will include <strong>multi-touch</strong>.</p>
<h2>What Is Multi-Touch?</h2>
<p>Just a short reminder for people who don&#8217;t have iPhones or other devices with <strong>multi-touch</strong>: A touchscreen is a screen you touch to operate it. Multi-touch extends the concept by operating in a different manner if you touch the screen again when you already have your finger down in another part of the screen. For example, to <strong>zoom in</strong> on an <strong>iPhone</strong>, you use a <strong>pinching movement</strong> with your finger and thumb, bringing them closer together.</p>
<p>Without multi-touch, Nexus One users would <strong>double-tap</strong> to <strong>zoom</strong> in. Double-tap is fine, but it doesn&#8217;t give you control over the <strong>amount of zoom</strong>, like a mouse scroll wheel would.</p>
<h2>Multi-touch on Android</h2>
<p>Google says multi-touch is part of <strong>Android 2.0</strong>, and it&#8217;s up to carriers or manufacturers to <strong>update</strong> their users&#8217; phones.</p>
<p>Nexus One users will receive an automatic <strong>over-the-air</strong> (OTA) <strong>update</strong> which will give them multi-touch as well as the following other features:</p>
<p><strong>Google Goggles</strong>: Search for stuff close to where you are by sending Google a picture of your whereabouts.<br />
<strong> Google Maps</strong>: Night mode for easier viewing, among other changes.<br />
<strong> 3G</strong>: Fixes 3G connectivity problems.</p>
<h2>Google, Apple, and multi-touch</h2>
<p>Multi-touch has been touted as one of the hallmark features of the iPhone.</p>
<p>Now that <strong>Google NexusOne</strong> and <strong>Android</strong> have it as well, is there anything the <strong>iPhone</strong> has that Android doesn&#8217;t?</p>
<p>And what will Apple do about it?</p>
<p><img src="http://digitivity.org/blog/wp-content/uploads/2010/02/269986_kick-fighting.jpg" alt="Kick Fighting" title="Kick Fighting" width="100" height="66" class="alignleft size-full wp-image-779" /><br />
It&#8217;s rumoured that, up until now, <strong>Google</strong> hadn&#8217;t implemented multi-touch simply because it had a <strong>cordial relationship</strong> with <strong>Apple</strong>. But with the two companies coming to <strong>virtual blows</strong> over their <a href="http://www.wired.com/epicenter/2010/01/googles-dont-be-evil-mantra-is-bullshit-adobe-is-lazy-apples-steve-jobs/">business ventures</a>,  it seems Google doesn&#8217;t really have any reason to stay on Apple&#8217;s good side.</p>
<p>Also, the <strong>Palm Pre</strong> and Microsoft&#8217;s new <strong>Zune</strong> are using multi-touch so either we&#8217;re going to see the end of Apple&#8217;s multi-touch exclusivity or a lot of lawsuits.</p>
<p>So, is multitouch on Android enough to tip the balance against the iPhone for your next phone purchase?</p>
<h2>Resources</h2>
<p><a href="http://googlenexusoneboard.blogspot.com/2010/02/new-software-update-for-nexus-one.html">Google blog post on multi-touch</a><br />
<a href="http://www.techcrunch.com/2010/02/02/nexus-one-multi-touch">http://www.techcrunch.com/2010/02/02/nexus-one-multi-touch</a><br />
<a href="http://www.techcrunch.com/2010/02/02/apple-google-multi-touch-android">http://www.techcrunch.com/2010/02/02/apple-google-multi-touch-android</a></p>
<h2>Top Incoming Search Terms</h2><span class="search-terms-term">build skipfish</span> <span class="search-terms-term">building skipfish</span> <span class="search-terms-term">cache:0jf5kwtwalcj:www.redspin.com/blog/2010/03/19/installing-google-skipfish-on-ubuntudebian/ skipfish dependencies</span> <span class="search-terms-term">cache:lrtavxsu7_kj:digitivity.org/939/google-releases-skipfish-automatic-website-blog-security-scanning-tool run skipfish windows</span> <span class="search-terms-term">cara menginstall skipfish scanner</span> <span class="search-terms-term">compilar skipfish</span> <span class="search-terms-term">compile skipfish</span> <span class="search-terms-term">compile skipfish  in ubuntu</span> <span class="search-terms-term">compile skipfish ubuntu</span> <span class="search-terms-term">google skipfish download</span> <span class="search-terms-term">how to compile skipfish</span> <span class="search-terms-term">how to compile ubuntu example -kernel</span> <span class="search-terms-term">how to install skipfish</span> <span class="search-terms-term">how to install skipfish + linux</span> <span class="search-terms-term">how to install skipfish on ubuntu</span> <span class="search-terms-term">how to skipfish</span> <span class="search-terms-term">how to use skipfish</span> <span class="search-terms-term">how to use skipfish linux</span> <span class="search-terms-term">howto skipfish</span> <span class="search-terms-term">http://digitivity.org/943/how-to-install-google-skipfish-on-ubuntu-linux</span> <span class="search-terms-term">install skipfish  ubntu</span> <span class="search-terms-term">install skipfish ubuntu</span> <span class="search-terms-term">installation skipfish ubuntu</span> <span class="search-terms-term">installing skipfish</span> <span class="search-terms-term">installing skipfish in unix</span> <span class="search-terms-term">installing skipfish on ubunut</span> <span class="search-terms-term">make skipfish ubuntu</span> <span class="search-terms-term">make: *** [skipfish]</span> <span class="search-terms-term">problem compiling skipfish</span> <span class="search-terms-term">problem installing skipfish</span> <span class="search-terms-term">problems building skipfish</span> <span class="search-terms-term">scan with skipfish</span> <span class="search-terms-term">setup skipfish</span> <span class="search-terms-term">skipfish</span> <span class="search-terms-term">skipfish +  touch</span> <span class="search-terms-term">skipfish + linux</span> <span class="search-terms-term">skipfish -x example</span> <span class="search-terms-term">skipfish 1.27 installeren</span> <span class="search-terms-term">skipfish command</span> <span class="search-terms-term">skipfish compilar windows</span> <span class="search-terms-term">skipfish compile</span> <span class="search-terms-term">skipfish compile http_client</span> <span class="search-terms-term">skipfish compile on ubuntu</span> <span class="search-terms-term">skipfish compile ubuntu</span> <span class="search-terms-term">skipfish empty report</span> <span class="search-terms-term">skipfish error</span> <span class="search-terms-term">skipfish example</span> <span class="search-terms-term">skipfish example.com</span> <span class="search-terms-term">skipfish executable</span> <span class="search-terms-term">skipfish faq</span> <span class="search-terms-term">skipfish how to</span> <span class="search-terms-term">skipfish how to install in windows</span> <span class="search-terms-term">skipfish how to set dictionary</span> <span class="search-terms-term">skipfish howto</span> <span class="search-terms-term">skipfish in firefox</span> <span class="search-terms-term">skipfish install</span> <span class="search-terms-term">skipfish installation</span> <span class="search-terms-term">skipfish linux help</span> <span class="search-terms-term">skipfish on ubuntu</span> <span class="search-terms-term">skipfish openssl make</span> <span class="search-terms-term">skipfish ssl</span> <span class="search-terms-term">skipfish terminal install</span> <span class="search-terms-term">skipfish ubuntu</span> <span class="search-terms-term">skipfish ubuntu 9</span> <span class="search-terms-term">skipfish windows library</span> <span class="search-terms-term">skipfish windows linux</span> <span class="search-terms-term">skipfish.wl example</span> <span class="search-terms-term">skipfish@example.com</span> <span class="search-terms-term">stop skipfish scan</span> <span class="search-terms-term">ubuntu libidn skipfish</span> <span class="search-terms-term">ubuntu make skipfish</span> <span class="search-terms-term">ubuntu skipfish</span> <span class="search-terms-term">using skipfish</span> 

<p>Related posts:<ol><li><a href='http://digitivity.org/487/google-releases-its-android-nexus-one-phone-but-its-not-an-apple-iphone-killer' rel='bookmark' title='Permanent Link: Google Releases Its Nexus One Phone, But It&#8217;s Not an iPhone Killer'>Google Releases Its Nexus One Phone, But It&#8217;s Not an iPhone Killer</a></li>
<li><a href='http://digitivity.org/943/how-to-install-google-skipfish-on-ubuntu-linux' rel='bookmark' title='Permanent Link: How to Install Google Skipfish on Ubuntu Linux'>How to Install Google Skipfish on Ubuntu Linux</a></li>
<li><a href='http://digitivity.org/939/google-releases-skipfish-automatic-website-blog-security-scanning-tool' rel='bookmark' title='Permanent Link: Google Releases Skipfish Automatic Website Security Scanning Tool'>Google Releases Skipfish Automatic Website Security Scanning Tool</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://digitivity.org/778/google-nexus-one-and-android-get-multi-touch-apple/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>After the iPad: the Google Tablet?</title>
		<link>http://digitivity.org/761/after-the-apple-ipad-the-google-tablet-rumor-pictures</link>
		<comments>http://digitivity.org/761/after-the-apple-ipad-the-google-tablet-rumor-pictures#comments</comments>
		<pubDate>Tue, 02 Feb 2010 17:24:42 +0000</pubDate>
		<dc:creator>Digitivity</dc:creator>
				<category><![CDATA[Digital Devices]]></category>
		<category><![CDATA[Chrome]]></category>
		<category><![CDATA[Chromium]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Google Tablet]]></category>
		<category><![CDATA[iPad]]></category>
		<category><![CDATA[tablet]]></category>

		<guid isPermaLink="false">http://digitivity.org/?p=761</guid>
		<description><![CDATA[Google took many years to come out with a phone after Apple's iPhone, but it looks like they'll only take a few months to put out their tablet after the unveiling of the Apple iPad.

Now we have some pictures to preview the planned tablet's UI.


Related posts:<ol><li><a href='http://digitivity.org/755/apple-reveals-the-ipad-tablet-a-coverage-roundup' rel='bookmark' title='Permanent Link: Apple Reveals the iPad Tablet: A Coverage Roundup'>Apple Reveals the iPad Tablet: A Coverage Roundup</a></li>
<li><a href='http://digitivity.org/943/how-to-install-google-skipfish-on-ubuntu-linux' rel='bookmark' title='Permanent Link: How to Install Google Skipfish on Ubuntu Linux'>How to Install Google Skipfish on Ubuntu Linux</a></li>
<li><a href='http://digitivity.org/939/google-releases-skipfish-automatic-website-blog-security-scanning-tool' rel='bookmark' title='Permanent Link: Google Releases Skipfish Automatic Website Security Scanning Tool'>Google Releases Skipfish Automatic Website Security Scanning Tool</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Google took many years to come out with a phone after Apple&#8217;s iPhone, but it looks like they&#8217;ll only take a few months to put out their tablet after the unveiling of the Apple iPad.</p>
<p>A number of blogs are reporting on pictures of Google&#8217;s tablet (still under development) posted at the <a href="http://dev.chromium.org/chromium-os/user-experience/form-factors/tablet">Chromium dev site</a>.</p>
<p>One big difference between the Apple iPad (and iPhone) and Google&#8217;s Android and Tablet is that with Google, you can run multiple programs at once. So you need a UI to switch programs, and Google came up with dragging windows:</p>
<p><object width="560" height="340"><param name="movie" value="http://www.youtube.com/v/0sz8hWvP5Sc&#038;hl=en_US&#038;fs=1&#038;"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/0sz8hWvP5Sc&#038;hl=en_US&#038;fs=1&#038;" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="560" height="340"></embed></object></p>
<p>Google is said to be working with HTC, who made Google&#8217;s Nexus One cell phone, to create the Google Tablet.</p>
<div id="attachment_766" class="wp-caption alignnone" style="width: 522px"><a href="http://digitivity.org/blog/wp-content/uploads/2010/02/google-tablet-full-keyboard.png"><img src="http://digitivity.org/blog/wp-content/uploads/2010/02/google-tablet-full-keyboard-512x384.png" alt="Google Tablet: Full Keyboard" title="Google Tablet: Full Keyboard" width="512" height="384" class="size-medium wp-image-766" /></a><p class="wp-caption-text">Google Tablet: Full Keyboard</p></div>
<p>&nbsp;</p>
<div id="attachment_765" class="wp-caption alignnone" style="width: 522px"><a href="http://digitivity.org/blog/wp-content/uploads/2010/02/google-tablet-split-keyboard.png"><img src="http://digitivity.org/blog/wp-content/uploads/2010/02/google-tablet-split-keyboard-512x383.png" alt="Google Tablet: Split Keyboard" title="Google Tablet: Split Keyboard" width="512" height="383" class="size-medium wp-image-765" /></a><p class="wp-caption-text">Google Tablet: Split Keyboard</p></div>
<p>&nbsp;</p>
<div id="attachment_763" class="wp-caption alignnone" style="width: 522px"><a href="http://digitivity.org/blog/wp-content/uploads/2010/02/google-tablet-anchored-keyboard.png"><img src="http://digitivity.org/blog/wp-content/uploads/2010/02/google-tablet-anchored-keyboard-512x383.png" alt="Google Tablet: Keyboard Anchored to Side" title="Google Tablet: Keyboard Anchored to Side" width="512" height="383" class="size-medium wp-image-763" /></a><p class="wp-caption-text">Google Tablet: Keyboard Anchored to Side</p></div>
<p>&nbsp;</p>
<div id="attachment_767" class="wp-caption alignnone" style="width: 522px"><a href="http://digitivity.org/blog/wp-content/uploads/2010/02/google-tablet-context-menu.png"><img src="http://digitivity.org/blog/wp-content/uploads/2010/02/google-tablet-context-menu-512x383.png" alt="Google Tablet: Context Menu" title="Google Tablet: Context Menu" width="512" height="383" class="size-medium wp-image-767" /></a><p class="wp-caption-text">Google Tablet: Context Menu</p></div>
<p>&nbsp;</p>
<div id="attachment_764" class="wp-caption alignnone" style="width: 522px"><a href="http://digitivity.org/blog/wp-content/uploads/2010/02/google-tablet-switching-programs.png"><img src="http://digitivity.org/blog/wp-content/uploads/2010/02/google-tablet-switching-programs-512x383.png" alt="Google Tablet: Switching Programs" title="Google Tablet: Switching Programs" width="512" height="383" class="size-medium wp-image-764" /></a><p class="wp-caption-text">Google Tablet: Switching Programs</p></div>
<p>&nbsp;</p>
<div id="attachment_762" class="wp-caption alignnone" style="width: 491px"><a href="http://digitivity.org/blog/wp-content/uploads/2010/02/google-tablet-drag-windows.png"><img src="http://digitivity.org/blog/wp-content/uploads/2010/02/google-tablet-drag-windows.png" alt="Google Tablet: Dragging WIndows" title="Google Tablet: Dragging WIndows" width="481" height="269" class="size-full wp-image-762" /></a><p class="wp-caption-text">Google Tablet: Dragging WIndows</p></div>
<p>&nbsp;</p>
<h2>Resources</h2>
<p><a href="http://mashable.com/2010/01/02/google-tablet/">Google Tablet: Google and HTC To Launch Apple iSlate Rival [RUMOR]</a><br />
<a href="http://www.techcrunch.com/2010/02/01/google-tablet-photos/">A First Taste Of What The Google Tablet’s Interface Will Look Like</a><br />
<a href="http://www.thechromesource.com/google-shows-off-its-tablet-concept/">Google Shows Off its Tablet Concept</a><br />
<a href="http://dev.chromium.org/chromium-os/user-experience/form-factors/tablet">Chromium tablet concepts</a><br />
<a href="http://www.youtube.com/watch?v=0sz8hWvP5Sc">Google Tablet YouTube</a><br />
<a href="http://www.neowin.net/news/google039s-tablet-ui-concept-pictures">NeoWin: Google&#8217;s tablet UI concept pictures</a><br />
<a href="http://www.smarthouse.com.au/Home_Office/Notebooks_And_Tablets/C5J4K9R8">Smarthouse: HTC To Launch Apple iSlate Competitor</a><br />
<a href="http://www.theregister.co.uk/2010/01/04/google_tablet_rumor/">Register: Google chisels Chrome OS tablet, rumors say</a><br />
<a href="http://www.washingtonpost.com/wp-dyn/content/article/2010/02/01/AR2010020104017.html">Washington post article</a></p>
<h2>Top Incoming Search Terms</h2><span class="search-terms-term">build skipfish</span> <span class="search-terms-term">building skipfish</span> <span class="search-terms-term">cache:0jf5kwtwalcj:www.redspin.com/blog/2010/03/19/installing-google-skipfish-on-ubuntudebian/ skipfish dependencies</span> <span class="search-terms-term">cache:lrtavxsu7_kj:digitivity.org/939/google-releases-skipfish-automatic-website-blog-security-scanning-tool run skipfish windows</span> <span class="search-terms-term">cara menginstall skipfish scanner</span> <span class="search-terms-term">compilar skipfish</span> <span class="search-terms-term">compile skipfish</span> <span class="search-terms-term">compile skipfish  in ubuntu</span> <span class="search-terms-term">compile skipfish ubuntu</span> <span class="search-terms-term">google skipfish download</span> <span class="search-terms-term">how to compile skipfish</span> <span class="search-terms-term">how to compile ubuntu example -kernel</span> <span class="search-terms-term">how to install skipfish</span> <span class="search-terms-term">how to install skipfish + linux</span> <span class="search-terms-term">how to install skipfish on ubuntu</span> <span class="search-terms-term">how to skipfish</span> <span class="search-terms-term">how to use skipfish</span> <span class="search-terms-term">how to use skipfish linux</span> <span class="search-terms-term">howto skipfish</span> <span class="search-terms-term">http://digitivity.org/943/how-to-install-google-skipfish-on-ubuntu-linux</span> <span class="search-terms-term">install skipfish  ubntu</span> <span class="search-terms-term">install skipfish ubuntu</span> <span class="search-terms-term">installation skipfish ubuntu</span> <span class="search-terms-term">installing skipfish</span> <span class="search-terms-term">installing skipfish in unix</span> <span class="search-terms-term">installing skipfish on ubunut</span> <span class="search-terms-term">make skipfish ubuntu</span> <span class="search-terms-term">make: *** [skipfish]</span> <span class="search-terms-term">problem compiling skipfish</span> <span class="search-terms-term">problem installing skipfish</span> <span class="search-terms-term">problems building skipfish</span> <span class="search-terms-term">scan with skipfish</span> <span class="search-terms-term">setup skipfish</span> <span class="search-terms-term">skipfish</span> <span class="search-terms-term">skipfish +  touch</span> <span class="search-terms-term">skipfish + linux</span> <span class="search-terms-term">skipfish -x example</span> <span class="search-terms-term">skipfish 1.27 installeren</span> <span class="search-terms-term">skipfish command</span> <span class="search-terms-term">skipfish compilar windows</span> <span class="search-terms-term">skipfish compile</span> <span class="search-terms-term">skipfish compile http_client</span> <span class="search-terms-term">skipfish compile on ubuntu</span> <span class="search-terms-term">skipfish compile ubuntu</span> <span class="search-terms-term">skipfish empty report</span> <span class="search-terms-term">skipfish error</span> <span class="search-terms-term">skipfish example</span> <span class="search-terms-term">skipfish example.com</span> <span class="search-terms-term">skipfish executable</span> <span class="search-terms-term">skipfish faq</span> <span class="search-terms-term">skipfish how to</span> <span class="search-terms-term">skipfish how to install in windows</span> <span class="search-terms-term">skipfish how to set dictionary</span> <span class="search-terms-term">skipfish howto</span> <span class="search-terms-term">skipfish in firefox</span> <span class="search-terms-term">skipfish install</span> <span class="search-terms-term">skipfish installation</span> <span class="search-terms-term">skipfish linux help</span> <span class="search-terms-term">skipfish on ubuntu</span> <span class="search-terms-term">skipfish openssl make</span> <span class="search-terms-term">skipfish ssl</span> <span class="search-terms-term">skipfish terminal install</span> <span class="search-terms-term">skipfish ubuntu</span> <span class="search-terms-term">skipfish ubuntu 9</span> <span class="search-terms-term">skipfish windows library</span> <span class="search-terms-term">skipfish windows linux</span> <span class="search-terms-term">skipfish.wl example</span> <span class="search-terms-term">skipfish@example.com</span> <span class="search-terms-term">stop skipfish scan</span> <span class="search-terms-term">ubuntu libidn skipfish</span> <span class="search-terms-term">ubuntu make skipfish</span> <span class="search-terms-term">ubuntu skipfish</span> <span class="search-terms-term">using skipfish</span> 

<p>Related posts:<ol><li><a href='http://digitivity.org/755/apple-reveals-the-ipad-tablet-a-coverage-roundup' rel='bookmark' title='Permanent Link: Apple Reveals the iPad Tablet: A Coverage Roundup'>Apple Reveals the iPad Tablet: A Coverage Roundup</a></li>
<li><a href='http://digitivity.org/943/how-to-install-google-skipfish-on-ubuntu-linux' rel='bookmark' title='Permanent Link: How to Install Google Skipfish on Ubuntu Linux'>How to Install Google Skipfish on Ubuntu Linux</a></li>
<li><a href='http://digitivity.org/939/google-releases-skipfish-automatic-website-blog-security-scanning-tool' rel='bookmark' title='Permanent Link: Google Releases Skipfish Automatic Website Security Scanning Tool'>Google Releases Skipfish Automatic Website Security Scanning Tool</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://digitivity.org/761/after-the-apple-ipad-the-google-tablet-rumor-pictures/feed</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
	</channel>
</rss>
