<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="wordpress/2.0.3" -->
<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/"
	>

<channel>
	<title>brianhoppe.com</title>
	<link>http://www.brianhoppe.com</link>
	<description>Thoughts on the internet, life, and faith</description>
	<pubDate>Thu, 26 Jun 2008 18:26:18 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.0.3</generator>
	<language>en</language>
			<item>
		<title>Read Your RSS Feeds In Gmail</title>
		<link>http://www.brianhoppe.com/2006/read-your-rss-feeds-in-gmail/</link>
		<comments>http://www.brianhoppe.com/2006/read-your-rss-feeds-in-gmail/#comments</comments>
		<pubDate>Tue, 17 Oct 2006 03:26:21 +0000</pubDate>
		<dc:creator>bhoppe</dc:creator>
		
	<dc:subject>Internet</dc:subject>
	<dc:subject>Gmail</dc:subject>
		<guid isPermaLink="false">http://www.brianhoppe.com/2006/read-your-rss-feeds-in-gmail/</guid>
		<description><![CDATA[I love Gmail plugins!  In addition to GTDGmail, I am now using this handy little Greasemonkey Script. It uses Google Reader and integrates it with your Gmail.  Don&#8217;t use Google Reader?  Neither did I.  I was using Sage, and was able to export all of my feeds via OPML and import into Google reader.  It&#8217;s [...]]]></description>
			<content:encoded><![CDATA[<p>I love Gmail plugins!  In addition to <a title="GTDGmail" href="http://www.brianhoppe.com/2006/getting-things-done/">GTDGmail</a>, I am now using <a title="Google Reader Greasemonkey Link" href="http://persistent.info/archives/2006/10/13/google-reader-redux">this handy little Greasemonkey Script</a>. It uses Google Reader and integrates it with your Gmail.  Don&#8217;t use Google Reader?  Neither did I.  I was using Sage, and was able to export all of my feeds via OPML and import into Google reader.  It&#8217;s now seamless.  I love Gmail and Firefox!
</p>
]]></content:encoded>
			<wfw:commentRSS>http://www.brianhoppe.com/2006/read-your-rss-feeds-in-gmail/feed/</wfw:commentRSS>
		</item>
		<item>
		<title>Logging in to two gmail accounts at once</title>
		<link>http://www.brianhoppe.com/2006/logging-in-to-two-gmail-accounts-at-once/</link>
		<comments>http://www.brianhoppe.com/2006/logging-in-to-two-gmail-accounts-at-once/#comments</comments>
		<pubDate>Sat, 07 Oct 2006 11:57:59 +0000</pubDate>
		<dc:creator>bhoppe</dc:creator>
		
	<dc:subject>Internet</dc:subject>
	<dc:subject>Gmail</dc:subject><dc:subject>gmail</dc:subject>
		<guid isPermaLink="false">http://www.brianhoppe.com/2006/logging-in-to-two-gmail-accounts-at-once/</guid>
		<description><![CDATA[This is actually pretty easy to do with firefox.  Thanks to the guys over at lifehacker  for pointing this out!
All you have to do is install the IE Tab extension for Firefox. Open up one account in a firefox tab, and the other in an IE tab.  That&#8217;s it!  I have also found this can [...]]]></description>
			<content:encoded><![CDATA[<p>This is actually pretty easy to do with firefox.  Thanks to the guys over at <a title="lifehacker" href="http://www.lifehacker.com/software/firefox/firefox-tip-log-into-two-gmail-accounts-at-the-same-time-205930.php">lifehacker</a>  for pointing this out!</p>
<p>All you have to do is install the <a title="IE Tab Extension" href="https://addons.mozilla.org/extensions/moreinfo.php?application=firefox&#038;id=1419">IE Tab</a> extension for Firefox. Open up one account in a firefox tab, and the other in an IE tab.  That&#8217;s it!  I have also found this can be helpful if, for instance, you have multiple adwords or adsense accounts.  Enjoy!</p>
<p>In addition, there is an actual plugin that is designed to do this.  I haven&#8217;t tried it yet, but you can find the information at <a title="gmail.pro" href="http://gmail.pro/2006/10/06/multiple-account-gmail-manager-firefox-extension/">gmail.pro</a>. Try it out and let me know what you think!
</p>
]]></content:encoded>
			<wfw:commentRSS>http://www.brianhoppe.com/2006/logging-in-to-two-gmail-accounts-at-once/feed/</wfw:commentRSS>
		</item>
		<item>
		<title>td Border In IE</title>
		<link>http://www.brianhoppe.com/2006/td-border-in-ie/</link>
		<comments>http://www.brianhoppe.com/2006/td-border-in-ie/#comments</comments>
		<pubDate>Fri, 06 Oct 2006 22:02:05 +0000</pubDate>
		<dc:creator>bhoppe</dc:creator>
		
	<dc:subject>Internet</dc:subject>
		<guid isPermaLink="false">http://www.brianhoppe.com/2006/td-border-in-ie/</guid>
		<description><![CDATA[I was having a problem today in IE.  I wanted to have a single table cell with a border, but no other cells with a border.  You would think it would be easy by applying the following style to the cell:
border: 1px solid black;
You would be wrong.  For some unknown-IE-buggy reason it [...]]]></description>
			<content:encoded><![CDATA[<p>I was having a problem today in IE.  I wanted to have a single table cell with a border, but no other cells with a border.  You would think it would be easy by applying the following style to the cell:</p>
<p>border: 1px solid black;</p>
<p>You would be wrong.  For some unknown-IE-buggy reason it doesn&#8217;t work.  Here is what does work: Apply the following style to the table:</p>
<p>border-collapse: collapse;</p>
<p>You can do this either by placing</p>
<p>style=&#8221;border-collapse: collapse;&#8221;</p>
<p>in your table tag, or by placing that code in the table section of your style sheet. Or, by placing it in style tags in the document for that matter.  But you get the picture.</p>
<p>So, if you apply that style to your table, the previously mentioned style for your table cell will work.  Do you want to know why? Well, so do I.  I have no idea why that works, but it works.  And that&#8217;s good enough for me!</p>
<p>Credit for this goes to <a title="border trick" target="_blank" href="http://www.csarven.ca/tr-border-trick-for-ie">this guy</a>.
</p>
]]></content:encoded>
			<wfw:commentRSS>http://www.brianhoppe.com/2006/td-border-in-ie/feed/</wfw:commentRSS>
		</item>
	</channel>
</rss>
