<?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>jensbits.com &#187; Internet</title>
	<atom:link href="http://www.jensbits.com/category/internet/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.jensbits.com</link>
	<description></description>
	<lastBuildDate>Wed, 21 Jul 2010 03:44:48 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Internet Explorer (IE) Not Submitting Form on Enter</title>
		<link>http://www.jensbits.com/2009/08/03/internet-explorer-ie-not-submitting-form-on-enter/</link>
		<comments>http://www.jensbits.com/2009/08/03/internet-explorer-ie-not-submitting-form-on-enter/#comments</comments>
		<pubDate>Mon, 03 Aug 2009 13:52:31 +0000</pubDate>
		<dc:creator>jen</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Web development]]></category>
		<category><![CDATA[browser]]></category>
		<category><![CDATA[forms]]></category>
		<category><![CDATA[IE]]></category>

		<guid isPermaLink="false">http://www.jensbits.com/?p=332</guid>
		<description><![CDATA[While working on a ColdFusion application, I noticed that the login form was not submitted when enter was pressed in Internet Explorer. Other browsers, Firefox and Chrome specifically, did not have this issue. There are many methods used to fix this error if you Google it, but I found that the simplest solutions are usually [...]


No related posts.]]></description>
			<content:encoded><![CDATA[<p>While working on a ColdFusion application, I noticed that the login form was not submitted when enter was pressed in Internet Explorer. Other browsers, Firefox and Chrome specifically, did not have this issue. There are many methods used to fix this error if you Google it, but I found that the simplest solutions are usually the best. No javascript, no funky CSS to hide fields, yada, yada, yada.</p>
<h3>The Situation</h3>
<p>This app had a form with a single text field and a submit button. The form submitted back to its own page were the logic executed if form.submit (the submit button itself) came back with the form variables collection.</p>
<p>When you pressed the enter button, IE did not send the input type=submit field back with the form vars and the form logic did not execute. The page appeared to refresh and you started over again.</p>
<h3>The Solution</h3>
<p>All that was necessary was to add a hidden input field that the form logic used instead.</p>
<pre class="brush: xml;">
&lt;input type=&quot;hidden&quot; name=&quot;login&quot; value=&quot;loginSubmit&quot; /&gt;
</pre>
<p>If form.login and form.login = &#8216;loginSubmit&#8217;, the form logic executes and the user is logged in.</p>
<p>So, from now on, I am not going to rely on the input submit button to check for form submission. Call me crazy, but I think IE has the right idea here; the input submit should not be part of the form variables collection.</p>
<p class="donate">If this post helped you out, please consider donating to help pay the hosting fees. 100% of the donations go to the web host.</p>

<!-- Begin PayPal Donations by http://wpstorm.net/ -->
<form action="https://www.paypal.com/cgi-bin/webscr" method="post"><div class="paypal-donations"><input type="hidden" name="cmd" value="_donations" /><input type="hidden" name="business" value="jen@jensbits.com" /><input type="hidden" name="return" value="http://www.jensbits.com/thank-you/" /><input type="hidden" name="item_name" value="Help pay hosting. All donations go to hosting fees for this site." /><input type="hidden" name="currency_code" value="USD" /><input type="image" src="https://www.paypal.com/en_US/i/btn/btn_donate_LG.gif" name="submit" alt="PayPal - The safer, easier way to pay online." /><img alt="" src="https://www.paypal.com/en_US/i/scr/pixel.gif" width="1" height="1" /></div></form>
<!-- End PayPal Donations -->



<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://www.jensbits.com/2009/08/03/internet-explorer-ie-not-submitting-form-on-enter/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Test Drivin&#8217; Safari 4</title>
		<link>http://www.jensbits.com/2009/06/14/test-drivin-safari-4/</link>
		<comments>http://www.jensbits.com/2009/06/14/test-drivin-safari-4/#comments</comments>
		<pubDate>Sun, 14 Jun 2009 14:04:02 +0000</pubDate>
		<dc:creator>jen</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Web development]]></category>
		<category><![CDATA[browser]]></category>
		<category><![CDATA[webdesign]]></category>

		<guid isPermaLink="false">http://www.jensbits.com/?p=225</guid>
		<description><![CDATA[I gave Safari 4 a whirl on both Mac and PC. I like it. It brings much of the cool stuff from iTunes into the browser. Cover flow is fun and fresh in a browser. The Top Sites with the page previews is an upscale rip off of Chrome and, really, it&#8217;s a good feature [...]


No related posts.]]></description>
			<content:encoded><![CDATA[<p>I gave Safari 4 a whirl on both Mac and PC. I like it. It brings much of the cool stuff from iTunes into the browser. Cover flow is fun and fresh in a browser. The Top Sites with the page previews is an upscale rip off of Chrome and, really, it&#8217;s a good feature for any browser.</p>
<div>
<div>
<strong>Cover Flow</strong><br />
<img src="http://jensbits.com/images/coverflow.jpg" alt="Safari Cover Flow" />
</div>
<div>
<strong>Top Sites</strong><br />
<img src="http://jensbits.com/images/topcontent.jpg" alt="Safari Top Sites" />
</div>
</div>
<p>Safari 4 is great for casual browsing and general perusing of the code but web development work stills needs the robustness of the Firefox plugins. Firefox is so ahead of the curve for web developers and I&#8217;m so used to it&#8217;s fantastic toolbars and debuggers that I don&#8217;t know if anyone will catch up. Granted the Safari 4 Web Inspector on the pre-packed Developer toolbar is nifty. Gotta love the &#8216;Resources&#8217; tab. Nice visual of the weight of each loaded item. The included scripts debugger is handy and  a much needed accessory in every browser.</p>
<p>Did I mention Safari 4 is fast? It is. That my biggest complaint with Firefox. It can be slow to render. Maybe that will improve with FF 3.5. Still, the trade off at this point is worth it. Bottom line is Safari 4 is great for browsing and the Web Inspector is a must &#8216;once over&#8217; tool for developers.</p>
<p>FYI, Lifehacker has a <a href="http://lifehacker.com/5286869/lifehacker-speed-tests-safari-4-chrome-2-and-more">great article on the latest browser speed tests</a>.</p>


<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://www.jensbits.com/2009/06/14/test-drivin-safari-4/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>3 Steps to Remove Pages and Cached Content from Google Search</title>
		<link>http://www.jensbits.com/2009/05/27/3-steps-to-remove-pages-and-cached-content-from-google-search/</link>
		<comments>http://www.jensbits.com/2009/05/27/3-steps-to-remove-pages-and-cached-content-from-google-search/#comments</comments>
		<pubDate>Wed, 27 May 2009 20:06:29 +0000</pubDate>
		<dc:creator>jen</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Google]]></category>

		<guid isPermaLink="false">http://www.jensbits.com/?p=192</guid>
		<description><![CDATA[Google&#8217;s indexing of websites for its search is quite good, quite fast, and quite thorough. There are times, however, that pages on a site should not be indexed. For example, admin sections or include files. Asking Google to remove content is easy and Google&#8217;s response is reasonably fast. If you don&#8217;t own the website that [...]


No related posts.]]></description>
			<content:encoded><![CDATA[<p>Google&#8217;s indexing of websites for its search is quite good, quite fast, and quite thorough. There are times, however, that pages on a site should not be indexed. For example, admin sections or include files. Asking Google to remove content is easy and Google&#8217;s response is reasonably fast. </p>
<p><strong>If you don&#8217;t own the website that has the material that needs to be removed, don&#8217;t bother reading any further. Contact the website responsible for posting it and ask them to remove it.</strong></p>
<p>Cached content is handled through Webmaster Tools. To remove cached content all the steps below are required.</p>
<p>It should be noted that you can could add a meta tag to pages that should not be indexed as such:</p>
<pre class="brush: xml;">&lt;meta name=&quot;robots&quot; content=&quot;noindex&quot;&gt;</pre>
<p>or for Google only</p>
<pre class="brush: xml;">&lt;meta name=&quot;googlebot&quot; content=&quot;noindex&quot;&gt;</pre>
<p>And for cached pages:</p>
<pre class="brush: xml;">&lt;meta name=&quot;robots&quot; content=&quot;noarchive&quot;&gt;</pre>
<p>or for Google only</p>
<pre class="brush: xml;">&lt;meta name=&quot;googlebot&quot; content=&quot;noarchive&quot;&gt;</pre>
<p>The meta tag method can be tedious for a large number of files and there is no direct feedback from Google on the removal. For expedited removal and assurance from Google that it has been removed from the search results, follow the steps below.</p>
<h3>Step 1: Webmaster Tools</h3>
<p>Sign up the site for <a href="http://www.google.com/webmasters/tools/">Webmaster Tools</a>. Webmaster Tools is easy to set up and provides valuable information on Google&#8217;s indexing of your site. There are also tools to help you create the robots.txt needed for step 2.</p>
<h3>Step 2: Robots.txt</h3>
<p>Create a robots.txt file and place it in the root of the website. There are two rules that should be applied in the robots.txt:</p>
<p><strong>User-agent</strong>: the robot the following rule applies to<br />
<strong>Disallow</strong>: the URL you want to block</p>
<h4>User-Agent</h4>
<p>User-agent allows for the specific selection of search engine robots.</p>
<p>For all search engine bots, the user-agent will be:<br />
<code>User-agent: *</code></p>
<p>For Google bots use:<br />
<code>User-Agent: Googlebot</code></p>
<p>All rules under the User-Agent apply to that User-Agent. You can specify rules for individual User-Agents and list them on the same robots.txt. </p>
<h4>Disallow</h4>
<p>Disallow blocks certain sites, directories, pages, images, or file types.</p>
<p>Block entire site:<br />
<code>Disallow: /</code></p>
<p>Block directory:<br />
<code>Disallow: /junk-directory/</code></p>
<p>Block page:<br />
<code>Disallow: /private_file.html</code></p>
<p>Block specific image from Google image search:<br />
<code>User-agent: Googlebot-Image<br />
Disallow: /images/dogs.jpg</code></p>
<p>Block all images on your site from Google image search:<br />
<code>User-agent: Googlebot-Image<br />
Disallow: /</code></p>
<p>Block files of a specific file type (for example, .gif):<br />
<code>User-agent: *<br />
Disallow: /*.gif$</code></p>
<p>A sample robots.txt to block all files in an include directory might look like this:<br />
<code>User-agent: *<br />
Disallow: /includes/</code></p>
<p>Rules on the robots.txt can be stacked and as specific as you want. For example, to exclude a directory and file from all search engine bots and images from Google:<br />
<code>User-agent: *<br />
Disallow: /includes/<br />
Disallow: /admin.html</code></p>
<p><code>User-agent: Googlebot-Image<br />
Disallow: / </code></p>
<p>All rules below a User-Agent declaration apply to the User-Agent specified only.</p>
<h3>Step 3: Remove URLs/Cached Pages</h3>
<p>In Webmaster Tools request the removal of URL from their index. On Webmaster Tools new interface Remove URLs is under Site Configuration, Crawler Access. For the old interface it&#8217;s under Tools, Remove URLs.</p>
<p>Select whether URLs, directories/subdirectories, entire site, or cached copies should be removed. Hit &#8220;Next&#8221; and put in the URL. If you are removing a cached copy and the page still exists, you will need to add a noarchive meta tag.</p>
<pre class="brush: xml;">&lt;meta name=&quot;robots&quot; content=&quot;noarchive&quot;&gt;</pre>
<p>If the page no longer exists, select &#8220;This page has been modified so that it no longer contains the information that is being cached.&#8221;</p>
<p>The removal will be listed as pending until Google successfully removes it. If for some reason it can&#8217;t remove the URLs, Google will list the error on this page. Google can remove the URLs in a matter of hours if done correctly. Keep in mind that Google&#8217;s documentation states that it can take 3-5 days.</p>
<p>Other search engines will respect the robots.txt but to varying levels. No two search engines are the same and neither is their handling of the robots.txt.</p>


<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://www.jensbits.com/2009/05/27/3-steps-to-remove-pages-and-cached-content-from-google-search/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Latest mag obsession &#8220;Practical Web Design&#8221; aka &#8220;.net&#8221;</title>
		<link>http://www.jensbits.com/2008/10/29/latest-mag-obsession-practical-web-design-aka-net/</link>
		<comments>http://www.jensbits.com/2008/10/29/latest-mag-obsession-practical-web-design-aka-net/#comments</comments>
		<pubDate>Wed, 29 Oct 2008 22:18:34 +0000</pubDate>
		<dc:creator>jen</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Web development]]></category>
		<category><![CDATA[Work]]></category>
		<category><![CDATA[webdesign]]></category>

		<guid isPermaLink="false">http://www.jensbits.com/2008/10/29/latest-mag-obsession-practical-web-design-aka-net/</guid>
		<description><![CDATA[I have to hand to the Brits; they are into web design and standardization like nobody&#8217;s business. Web design and development is a moving target. I have been to the expensive conferences and events. Loads of great and inspiring info. Problem is you need something that you can refer back to and use as a [...]


No related posts.]]></description>
			<content:encoded><![CDATA[<p>I have to hand to the Brits; they are into web design and standardization like nobody&#8217;s business. Web design and development is a moving target. I have been to the expensive conferences and events. Loads of great and inspiring info. Problem is you need something that you can refer back to and use as a resource. And, something that is here and now, tangible, tactile, and moving as fast as web evolution itself. I&#8217;m talking mags.<br />
<a href="http://www.netmag.co.uk/"><img class="photo-r" src="http://jensbits.com/images/netmag.gif" alt=".net mag" /></a><br />
I got my hands on a copy of the UK produced and published <a href="http://www.amazon.com/gp/product/B00007KZJ2?ie=UTF8&#038;tag=jensbits-20&#038;linkCode=as2&#038;camp=1789&#038;creative=9325&#038;creativeASIN=B00007KZJ2">&#8220;Practical Web Design&#8221; (known as &#8220;.net&#8221; in Great Britain)</a><img src="http://www.assoc-amazon.com/e/ir?t=jensbits-20&#038;l=as2&#038;o=1&#038;a=B00007KZJ2" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" /> magazine at Borders and have read every word twice. It&#8217;s like carrying around the enthusiasm and electricity of a conference in my pocket(book). This is what web designers need. A constant flow of practical and applicable information. It keeps you motivated and relevant. It doesn&#8217;t hurt that I have met many of the contributors and advisory panels members at the aforementioned conferences. They are picking the top and, IMHO, the most credible talent to fill the pages.</p>
<p>Now for the bad news. It&#8217;s expensive here in the US (over $130/yr) at the current exchange rate. I&#8217;ll keeping picking it up a copy at a time to spread out the pain, but I love it anyway.</p>


<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://www.jensbits.com/2008/10/29/latest-mag-obsession-practical-web-design-aka-net/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Getting Flocked: Web Mail Notifier</title>
		<link>http://www.jensbits.com/2008/04/14/getting-flocked-web-mail-notifier/</link>
		<comments>http://www.jensbits.com/2008/04/14/getting-flocked-web-mail-notifier/#comments</comments>
		<pubDate>Tue, 15 Apr 2008 02:06:10 +0000</pubDate>
		<dc:creator>jen</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[browser]]></category>
		<category><![CDATA[flock]]></category>

		<guid isPermaLink="false">http://www.jensbits.com/2008/04/14/getting-flocked-web-mail-notifier/</guid>
		<description><![CDATA[Still Flocking with this browser, I&#8217;ve had a chance now to get to know the web mail notifier feature. First off, I love the easy set up. As soon as you log into your web mail, Flock asks you if you would like to save the settings in the browser. A click or two later [...]


Related posts:<ol><li><a href='http://www.jensbits.com/2008/03/23/go-get-flocked/' rel='bookmark' title='Permanent Link: Go Get Flocked'>Go Get Flocked</a></li>
<li><a href='http://www.jensbits.com/2008/03/29/getting-flocked-the-web-clipboard/' rel='bookmark' title='Permanent Link: Getting Flocked: The Web Clipboard'>Getting Flocked: The Web Clipboard</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Still Flocking with this browser, I&#8217;ve had a chance now to get to know the web mail notifier feature. First off, I love the easy set up. As soon as you log into your web mail, Flock asks you if you would like to save the settings in the browser. A click or two later and you&#8217;re done. You can have multiple accounts loaded in, but only one default at a time. The absolute best feature is the ability to use your web mail straight away when you click on an e-mail link. Remember how you used to have all your web mail settings, POP and SMTP, all set up in a separate e-mail application then, when you clicked on an e-mail link, that app would then have to load on top of everything else. What a pain. No more. How sweet.</p>
<p>Now for the gripes&#8230;Flock doesn&#8217;t check the web mail for new messages when I load the browser. I&#8217;ve looked around at the settings, but I can&#8217;t get it to check the instant the browser loads unless I click on it to tell it to. I want less clicks, not more.</p>
<p>That being said, it still super convenient especially when you have several web mail accounts. I also like the one click to compose. That&#8217;s bitchin&#8217; nice.<br />
<img src="http://lh3.ggpht.com/jennifer9199/SAQOoeJxh8I/AAAAAAAAACU/vzdatUhfCfc/s400/FLOCKwebmail.jpg" /><br />
  <!-- technorati tags begin -->
<p style="font-size:10px;text-align:right;">Tags: <a href="http://technorati.com/tag/Internet" rel="tag">Internet</a>, <a href="http://technorati.com/tag/Flock" rel="tag">Flock</a>, <a href="http://technorati.com/tag/%20browsers" rel="tag"> browsers</a></p>
<p><!-- technorati tags end --></p>


<p>Related posts:<ol><li><a href='http://www.jensbits.com/2008/03/23/go-get-flocked/' rel='bookmark' title='Permanent Link: Go Get Flocked'>Go Get Flocked</a></li>
<li><a href='http://www.jensbits.com/2008/03/29/getting-flocked-the-web-clipboard/' rel='bookmark' title='Permanent Link: Getting Flocked: The Web Clipboard'>Getting Flocked: The Web Clipboard</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.jensbits.com/2008/04/14/getting-flocked-web-mail-notifier/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Getting Flocked: The Web Clipboard</title>
		<link>http://www.jensbits.com/2008/03/29/getting-flocked-the-web-clipboard/</link>
		<comments>http://www.jensbits.com/2008/03/29/getting-flocked-the-web-clipboard/#comments</comments>
		<pubDate>Sat, 29 Mar 2008 23:04:25 +0000</pubDate>
		<dc:creator>jen</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[browser]]></category>
		<category><![CDATA[flock]]></category>

		<guid isPermaLink="false">http://www.jensbits.com/2008/03/29/getting-flocked-the-web-clipboard/</guid>
		<description><![CDATA[OK, I&#8217;m liking this Flock browser and I have had a chance to use the web clipboard feature. I have to say it&#8217;s AWESOME! Finally something that makes my life easier. You just drag an image over the clipboard to pop it in there. Later, when you want to use it, you just double click [...]


Related posts:<ol><li><a href='http://www.jensbits.com/2008/03/23/go-get-flocked/' rel='bookmark' title='Permanent Link: Go Get Flocked'>Go Get Flocked</a></li>
<li><a href='http://www.jensbits.com/2008/04/14/getting-flocked-web-mail-notifier/' rel='bookmark' title='Permanent Link: Getting Flocked: Web Mail Notifier'>Getting Flocked: Web Mail Notifier</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><img style="margin: 0pt 0pt 10px 10px; float: right;" src="http://lh5.ggpht.com/jennifer9199/SJcauO65iiI/AAAAAAAAADQ/4W67qFs_qXI/s288/webclipboard.gif" /><br />
OK, I&#8217;m liking this <a href="http://www.flock.com/">Flock</a> browser and I have had a chance to use the web clipboard feature. I have to say it&#8217;s AWESOME! Finally something that makes my life easier. You just drag an image over the clipboard to pop it in there. Later, when you want to use it, you just double click it. </p>
<p>I have used it to save images from an image website for use in development. It&#8217;s cool for this because you can click directly on the image and it takes you to the website it came from. I can organize them in folders and, when to purchase, click on them to go directly to the image website. No more trying to remember how I found the image or creating custom searches on someone else&#8217;s website. It&#8217;s much faster to reference and retrieve images.</p>
<p>Next up is the built-in web mail notifier&#8230;</p>
<div class="flockcredit" style="text-align: right; color: #CCC; font-size: x-small;">Blogged with the <a href="http://www.flock.com/blogged-with-flock" style="color: #999; font-weight: bold;" target="_new" title="Flock Browser">Flock Browser</a></div>
<p><!-- technorati tags begin -->
<p style="font-size:10px;text-align:right;">Tags: <a href="http://technorati.com/tag/flock" rel="tag">flock</a>, <a href="http://technorati.com/tag/web%20clipboard" rel="tag">web clipboard</a>, <a href="http://technorati.com/tag/%20images" rel="tag"> images</a>, <a href="http://technorati.com/tag/%20browser" rel="tag"> browser</a></p>
<p><!-- technorati tags end --></p>


<p>Related posts:<ol><li><a href='http://www.jensbits.com/2008/03/23/go-get-flocked/' rel='bookmark' title='Permanent Link: Go Get Flocked'>Go Get Flocked</a></li>
<li><a href='http://www.jensbits.com/2008/04/14/getting-flocked-web-mail-notifier/' rel='bookmark' title='Permanent Link: Getting Flocked: Web Mail Notifier'>Getting Flocked: Web Mail Notifier</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.jensbits.com/2008/03/29/getting-flocked-the-web-clipboard/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Go Get Flocked</title>
		<link>http://www.jensbits.com/2008/03/23/go-get-flocked/</link>
		<comments>http://www.jensbits.com/2008/03/23/go-get-flocked/#comments</comments>
		<pubDate>Sun, 23 Mar 2008 14:59:59 +0000</pubDate>
		<dc:creator>jen</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[browser]]></category>
		<category><![CDATA[flock]]></category>

		<guid isPermaLink="false">http://www.jensbits.com/2008/03/23/go-get-flocked/</guid>
		<description><![CDATA[I&#8217;m mucking around with a new browser &#8211; Flock. It&#8217;s brings social networking up a notch, hooking into all the latest social sites, blog tools, and file sharing webs. And, it loads sites faster than FF (go figure). I particularly like the My World page. It opens in a separate tab and keeps all the [...]


Related posts:<ol><li><a href='http://www.jensbits.com/2008/03/29/getting-flocked-the-web-clipboard/' rel='bookmark' title='Permanent Link: Getting Flocked: The Web Clipboard'>Getting Flocked: The Web Clipboard</a></li>
<li><a href='http://www.jensbits.com/2008/04/14/getting-flocked-web-mail-notifier/' rel='bookmark' title='Permanent Link: Getting Flocked: Web Mail Notifier'>Getting Flocked: Web Mail Notifier</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m mucking around with a new browser &#8211; <a href="http://www.flock.com/">Flock</a>. It&#8217;s brings social networking up a notch, hooking into all the latest social sites, blog tools, and file sharing webs. And, it loads sites faster than FF (go figure).</p>
<p>I particularly like the My World page. It opens in a separate tab and keeps all the sites you hit the most right in front of you. It can be customized for your browsing habits and keeps track of all those annoying logins for webmail, blogs, and sharing sites. That&#8217;s its real appeal for me.</p>
<p>I love the ability to post to a blog right from one click on the browser tool bar (like I&#8217;m doing now).</p>
<p>Flock is open source, and future thinking. Read more about them on their <a href="http://www.flock.com/about">&#8220;About Us&#8221;</a> page.</p>
<p>There are many other way cool features to the browser that I will take a closer look at one by one. The web clipboard looks interesting &#8211; think I&#8217;ll start there&#8230;</p>
<p> <a href="http://spread.flock.com/buttons/?user=&amp;ref=Get-Flocked.png"><img style="border: medium none ;" src="http://spread.flock.com/buttons/Get-Flocked.png" alt="Get Flocked" title="Get Flocked" /></a>
<div class="flockcredit" style="text-align: right; color: #CCC; font-size: x-small;">Blogged with the <a href="http://www.flock.com/blogged-with-flock" style="color: #999; font-weight: bold;" target="_new" title="Flock Browser">Flock Browser</a></div>
<p><!-- technorati tags begin -->
<p style="font-size:10px;text-align:right;">Tags: <a href="http://technorati.com/tag/flock" rel="tag">flock</a>, <a href="http://technorati.com/tag/browser" rel="tag">browser</a>, <a href="http://technorati.com/tag/%20web%20browser" rel="tag"> web browser</a>, <a href="http://technorati.com/tag/%20social%20networking" rel="tag"> social networking</a>, <a href="http://technorati.com/tag/%20social%20web" rel="tag"> social web</a>, <a href="http://technorati.com/tag/%20social%20sites" rel="tag"> social sites</a></p>
<p><!-- technorati tags end --></p>


<p>Related posts:<ol><li><a href='http://www.jensbits.com/2008/03/29/getting-flocked-the-web-clipboard/' rel='bookmark' title='Permanent Link: Getting Flocked: The Web Clipboard'>Getting Flocked: The Web Clipboard</a></li>
<li><a href='http://www.jensbits.com/2008/04/14/getting-flocked-web-mail-notifier/' rel='bookmark' title='Permanent Link: Getting Flocked: Web Mail Notifier'>Getting Flocked: Web Mail Notifier</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.jensbits.com/2008/03/23/go-get-flocked/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Search: [Your Name Here]</title>
		<link>http://www.jensbits.com/2006/04/04/search-your-name-here/</link>
		<comments>http://www.jensbits.com/2006/04/04/search-your-name-here/#comments</comments>
		<pubDate>Tue, 04 Apr 2006 19:44:48 +0000</pubDate>
		<dc:creator>jen</dc:creator>
				<category><![CDATA[Humor]]></category>
		<category><![CDATA[Internet]]></category>

		<guid isPermaLink="false">http://jensbits.com/?p=16</guid>
		<description><![CDATA[Every once in a while I have to Google myself and find out what I have been up to. Here are my latest exploits: In our school there&#8217;s a [jen] she&#8217;s either 13 or 14. It&#8217;s great to be young again. [jen] &#8211; Filmography, Awards, Biography, Agent, Discussions, Photos, News Articles, Fan Sites. All business [...]


No related posts.]]></description>
			<content:encoded><![CDATA[<p>Every once in a while I have to Google myself and find out what I have been up to. Here are my latest exploits:</p>
<p>In our school there&#8217;s a [jen] she&#8217;s either 13 or 14.</p>
<blockquote><p>It&#8217;s great to be young again.</p></blockquote>
<p>[jen] &#8211; Filmography, Awards, Biography, Agent, Discussions, Photos, News Articles, Fan Sites.</p>
<blockquote><p>All business matters go through my agent.</p></blockquote>
<p>[jen] (President/. Presidente).</p>
<blockquote><p>That&#8217;s el Presidente to you.</p></blockquote>
<p>[jen]  Female model of the month . wanna shoot?</p>
<blockquote><p>Only if you&#8217;re firing blanks.</p></blockquote>
<p>[jen]. Vice President.</p>
<blockquote><p>What happened?</p></blockquote>
<p>Hilton&#8217;s new PR manager, [jen]</p>
<blockquote><p>They have no idea what they just got themselves into.</p></blockquote>
<p>The Conferencing Software allows you to interact with [jen] (after you enter your credit card info)</p>
<blockquote><p>US funds only, please.</p></blockquote>
<p>Comment by [jen]. Being a relative novice and mostly working by myself in a vacuum&#8230;</p>
<blockquote><p>Sounds like me, but it isn&#8217;t.</p></blockquote>
<p>[jen] and Professor HS Wilson are working together to research the perspectives of parish pastors working in multicultural communities.</p>
<blockquote><p>Definitely not me.</p></blockquote>
<p>Webmaster [jen], from the [my old job], suggested the idea of looking &#8220;under the hood&#8221; at some accessible websites.</p>
<blockquote><p>Uh oh, I CAN be found on the web.</p></blockquote>
<p>jennifer..?!?1?&#8230; [jen]&#8230; hMmMmm.. doesnt ring a bell?!?!?!</p>
<blockquote><p>Now that&#8217;s more like it.</p></blockquote>
<p>We departed Kuching by bus with our guides for the trip, Emong Tinsang and [jen].</p>
<blockquote><p>Next time you&#8217;re in Sarawak, Malaysia, look me up.</p></blockquote>
<p>Neurosurgery, [jen], MD.</p>
<blockquote><p>Medical school was so easy I don&#8217;t even remember it.</p></blockquote>


<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://www.jensbits.com/2006/04/04/search-your-name-here/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
