<?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>TechNullogy &#187; Firefox</title>
	<atom:link href="http://www.technullogy.net/index.php/tag/firefox/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.technullogy.net</link>
	<description>Musings of a convert to nerdism</description>
	<lastBuildDate>Thu, 22 Jul 2010 19:43:27 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Internet Explorer limits CSS and Script Resources to 30</title>
		<link>http://www.technullogy.net/index.php/2010/03/05/internet-explorer-limits-css-and-script-resources-to-30/</link>
		<comments>http://www.technullogy.net/index.php/2010/03/05/internet-explorer-limits-css-and-script-resources-to-30/#comments</comments>
		<pubDate>Fri, 05 Mar 2010 21:02:16 +0000</pubDate>
		<dc:creator>MJ Hufford</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[Chrome]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[Internet Explorer]]></category>
		<category><![CDATA[Safari]]></category>

		<guid isPermaLink="false">http://www.technullogy.net/?p=136</guid>
		<description><![CDATA[I ran into a weird bug recently that I hope no one else ever experiences.  I use Telerik&#8217;s Rad Controls for ASP.NET AJAX because they&#8217;re powerful, pretty and developer friendly.  I recommend them to ALL .NET developers.  I had just put together a server control that used several of Telerik&#8217;s controls and my own Rounded [...]]]></description>
			<content:encoded><![CDATA[<p>I ran into a weird bug recently that I hope no one else ever experiences.  I use <a href="http://www.Telerik.com">Telerik&#8217;s Rad Controls for ASP.NET AJAX</a> because they&#8217;re powerful, pretty and developer friendly.  I recommend them to ALL .NET developers.  I had just put together a server control that used several of Telerik&#8217;s controls and my own <a href="http://www.technullogy.net/index.php/net-controls/">Rounded DIV Container control</a> as well.  It looked great in all browsers.  I was happy.   I added another Rounded DIV to the page.  When I refreshed the page, all of my styles were gone.  I know the CSS is good, because I was using the control elsewhere.  Was it possible I had an unclosed tag somewhere?  I tried the page in Firefox&#8230;perfect, then Safari&#8230;perfect, then Google Chrome&#8230;perfect.</p>
<blockquote><p>Scratching head&#8230;</p></blockquote>
<p>At this point, I know it&#8217;s a browser issue, but I&#8217;m still not sure what&#8217;s causing it.  After digging around and playing with the Internet Explorer Developer Toolbar, I noticed that the page seemed to lose it&#8217;s style whenever there were more than 30 registers resources on a page (i.e. CSS &amp; JavaScript file references).  I probably had too many CSS files as it was.  On top of that, I was dynamically referencing js files.  Telerik also register javascript and css files via the WebResource.axd (embedded .NET resources).</p>
<p>Here&#8217;s how you can check how many resources are registered for a given page:</p>
<ol>
<li>Check your markup
<ol>
<li>Look for all instances of registered resources (CSS, JS, etc)<br />
&lt;link id=&#8221;cssStyleSheet&#8221; rel=&#8221;stylesheet&#8221; type=&#8221;text/css&#8221;  runat=&#8221;server&#8221; /&gt; &#8212; each one of these counts as 1</li>
<li>If you&#8217;ve got a lot of these, consider consolidating into fewer resources</li>
</ol>
</li>
<li>Use the IE Developer Toolbar, <a href="http://getfirebug.com/">ChromeBug</a> (Google Chrome) or <a href="http://getfirebug.com/">FireBug</a> (the best) to check for registered resources in WebResource.axd
<ol>
<li>Firebug (ChromeBug is similar)
<ol>
<li>Once the page is loaded, highlight the CSS tab and click the resource drop down list just below it<br />
<a rel="attachment wp-att-262" href="http://www.technullogy.net/index.php/2010/03/05/internet-explorer-limits-css-and-script-resources-to-30/firebugcssresources/"><img class="aligncenter size-medium wp-image-262" title="FirebugCssResources" src="http://www.technullogy.net/wp-content/uploads/2010/03/FirebugCssResources-300x187.png" alt="" width="300" height="187" /></a></li>
<li>Do the same thing on the &#8220;Script&#8221; tab (ASP.NET is close to 30! Watch out! <img src='http://www.technullogy.net/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' />  )<br />
<a rel="attachment wp-att-263" href="http://www.technullogy.net/index.php/2010/03/05/internet-explorer-limits-css-and-script-resources-to-30/firebugjsresources/"><img class="aligncenter size-medium wp-image-263" title="FirebugJsResources" src="http://www.technullogy.net/wp-content/uploads/2010/03/FirebugJsResources-300x187.png" alt="" width="300" height="187" /></a></li>
</ol>
</li>
<li>IE Developer Toolbar
<ol>
<li>In IE, press F12 to bring up the Developer Tools</li>
<li>Click on CSS and count the items in the drop down list</li>
<li>Do the same for Script<br />
<a rel="attachment wp-att-264" href="http://www.technullogy.net/index.php/2010/03/05/internet-explorer-limits-css-and-script-resources-to-30/devtoolbarscriptresources/"><img class="aligncenter size-medium wp-image-264" title="DevToolbarScriptResources" src="http://www.technullogy.net/wp-content/uploads/2010/03/DevToolbarScriptResources-300x298.png" alt="" width="300" height="298" /></a></li>
</ol>
</li>
</ol>
</li>
</ol>
<p>I hope you don&#8217;t have this many registered resources. <img src='http://www.technullogy.net/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' />   But if you do, and things look weird in IE 7 and IE 8, now you know why.  Time to consolidate!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.technullogy.net/index.php/2010/03/05/internet-explorer-limits-css-and-script-resources-to-30/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Safe Internet Browsing: OpenDNS, AdBlock Plus, Profanity Filter for Greasemonkey addon and Firefox</title>
		<link>http://www.technullogy.net/index.php/2009/09/27/profanity-filter-for-greasemonkey-addon-in-firefox/</link>
		<comments>http://www.technullogy.net/index.php/2009/09/27/profanity-filter-for-greasemonkey-addon-in-firefox/#comments</comments>
		<pubDate>Sun, 27 Sep 2009 20:39:50 +0000</pubDate>
		<dc:creator>MJ Hufford</dc:creator>
				<category><![CDATA[General Musings]]></category>
		<category><![CDATA[Adblock Plus]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[Greasemonkey]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[OpenDNS]]></category>

		<guid isPermaLink="false">http://www.technullogy.net/?p=180</guid>
		<description><![CDATA[I logged onto Facebook this morning and one of my &#8220;friends&#8221; had posted a link to something he thought was funny.  It had profanity in the title.  I&#8217;m not a fan of profanity, but didn&#8217;t want to flat out block my friend, so I went in search of a profanity filter at UserScripts.org. To my [...]]]></description>
			<content:encoded><![CDATA[<p>I logged onto Facebook this morning and one of my &#8220;friends&#8221; had posted a link to something he thought was funny.  It had profanity in the title.  I&#8217;m not a fan of profanity, but didn&#8217;t want to flat out block my friend, so I went in search of a profanity filter at <a href="http://UserScripts.org">UserScripts.org.</a> To my delight, I found one and it works great!  For the script to work, you&#8217;ll need <a href="http://www.mozilla.com/en-US/firefox/personal.html">Firefox</a>, <a href="https://addons.mozilla.org/en-US/firefox/addon/748">Greasemonkey</a> and the <a href="https://addons.mozilla.org/en-US/firefox/addon/748">Profanity Filter</a> (install in that order).</p>
<p>I&#8217;ve been a devout Firefox convert for a couple years now.  While impressed with Chrome and Safari, I just can&#8217;t leave Firefox.  I&#8217;ll even concede that, &#8220;in my humble opinion&#8221;, IE 8 SEEMS FASTER THAN FIREFOX?!  GASP!!! Dare I say?  Nevertheless, the &#8220;Add On&#8221; features of Firefox will keep me a Firefox user unless the competition does something about it.  Here are my top 5 &#8220;Can&#8217;t Live Without&#8221; add-ons:</p>
<ol>
<li><a href="https://addons.mozilla.org/en-US/firefox/addon/1865">AdBlock Plus</a> &#8211; I haven&#8217;t seen an ad on a website in a couple years.  I bet I wouldn&#8217;t recognize half the sites I visit if this add-on was disabled!</li>
<li><a href="https://addons.mozilla.org/en-US/firefox/addon/1843">Firebug</a> &#8211; a web developer MUST have (features in Safari and IE are comparable, but not up to par)</li>
<li><a href="https://addons.mozilla.org/en-US/firefox/addon/748">GreaseMonkey</a> &#8211; Runner user scripts to make the net more enjoyable.  Here are a few of my favorite scripts:
<ol>
<li><a href="http://userscripts.org/scripts/show/8614">ExpertsExhangeFilter</a></li>
<li><a href="http://userscripts.org/scripts/show/16341">Google Account Multi-Logon</a></li>
<li><a href="http://userscripts.org/scripts/show/4175">PROFANITY FILTER</a> (keep reading)</li>
<li><a href="http://userscripts.org/scripts/show/44459">Facebook Purity</a>: For those annoying survey results on Facebook&#8230;blah!</li>
</ol>
</li>
<li><a href="https://addons.mozilla.org/en-US/firefox/addon/5579">CoolIris</a> &#8211; <a href="http://www.technullogy.net/index.php/2009/07/07/cooliris-the-coolest-way-to-search-craigslist/">The coolest way to search Craigslist!</a></li>
<li><a href="https://addons.mozilla.org/en-US/firefox/addon/5081">TwitterFox</a> (recently renamed to Echofon, horrible name!) / <a href="https://addons.mozilla.org/en-US/firefox/addon/10586">TinyURL Generator</a> &#8211; used in conjunction! <img src='http://www.technullogy.net/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </li>
</ol>
<p>While I&#8217;m on the &#8220;safe browsing&#8221; kick, please check out <a href="http://www.opendns.com/">OpenDNS.org</a>.  Thank you OpenDNS.org, Mozilla, Greasemonkey and the countless open source developers for helping me keep the garbage out of my house!  Surfing without OpenDNS, AdBlock plus and Profanity Filter is like driving without your seat belt fastened.</p>
<p>UPDATE:  <a href="http://userscripts.org/topics/11758">This Profanity Filter </a>script for Greasemonkey seems to work with far less latency than the aforementioned.  It also allows for customized replacement strings.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.technullogy.net/index.php/2009/09/27/profanity-filter-for-greasemonkey-addon-in-firefox/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cooliris:  The coolest way to search Craigslist</title>
		<link>http://www.technullogy.net/index.php/2009/07/07/cooliris-the-coolest-way-to-search-craigslist/</link>
		<comments>http://www.technullogy.net/index.php/2009/07/07/cooliris-the-coolest-way-to-search-craigslist/#comments</comments>
		<pubDate>Tue, 07 Jul 2009 14:33:43 +0000</pubDate>
		<dc:creator>MJ Hufford</dc:creator>
				<category><![CDATA[General Musings]]></category>
		<category><![CDATA[Cooliris]]></category>
		<category><![CDATA[Craigslist]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[Internet Explorer]]></category>
		<category><![CDATA[Safari]]></category>

		<guid isPermaLink="false">http://www.technullogy.net/?p=101</guid>
		<description><![CDATA[In their own words, Cooliris &#8220;&#8230;transforms your browser into a lightning fast cinematic way to enjoy photos and videos from the web or your desktop.&#8221; I&#8217;ve been using it as a Firefox plug-in for about a year; though it is available for Internet Explorer and Safari as well. Whether searching for new desktop wallpaper or [...]]]></description>
			<content:encoded><![CDATA[<p><img class="size-medium wp-image-102 alignright" title="Cooliris Screenshot" src="http://www.technullogy.net/wp-content/uploads/2009/07/CoolirisScreenshot-300x192.PNG" alt="CoolirisScreenshot" width="300" height="192" /> In their own words, <a href="http://www.cooliris.com/" target="_blank">Cooliris</a> &#8220;&#8230;transforms your browser into a lightning fast cinematic way to enjoy photos and videos from the web or your desktop.&#8221;  I&#8217;ve been using it as a Firefox plug-in for about a year; though it is available for Internet Explorer and Safari as well.  Whether searching for new desktop wallpaper or stock images for a website, I would use Cooliris to quickly browse thousands of photos with an Apple &#8220;CoverFlow&#8221; feel.</p>
<p>Recent Cooliris updates make for a GREAT way to search Craigslist.  Previous versions of Cooliris appeared to open as a full screen, modal pop-up which you could &#8220;escape&#8221; out of.  Their latest version actually opens a new browser tab; allowing you to bookmark your favorite image searches.  Combine this with Craigslist, and you&#8217;ve got a very efficient way to peruse the world&#8217;s largest yard-sale!</p>
<p>I&#8217;m a musician.  So, naturally, I browse <a href="http://www.craigslist.com">Craigslist.com</a> looking for instruments and miscellaneous recording gear at bargain basement prices.  I don&#8217;t waste time looking at ads that don&#8217;t have pictures.  This morning, I decided to search for musical instruments for sale in my area and noticed the Cooliris icon was illuminated. <img class="size-full wp-image-103 alignnone" title="Cooliris Icon" src="http://www.technullogy.net/wp-content/uploads/2009/07/CoolirisIlluminate.PNG" alt="Cooliris Icon" width="18" height="17" /> One click took me to a magical, Craigslist wonderland!  And better yet, when I clicked on the images to get a closer view, the item description was listed along with all other item photos.  Here&#8217;s how:</p>
<ol>
<li>Download and install <a href="http://www.cooliris.com" target="_blank">Cooliris</a></li>
<li>Browse to your local flavor or Craigslist.com</li>
<li>Drill-down to your category of choice</li>
<li>Search for listings that have images by checking the &#8220;has image&#8217; check box (leave the search text box empty)</li>
<li>Click search and then click the illuminated Cooliris icon <img title="Cooliris Icon" src="../wp-content/uploads/2009/07/CoolirisIlluminate.PNG" alt="Cooliris Icon" width="18" height="17" /></li>
<li>Bookmark the Cooliris page that opens, rinse and repeat</li>
</ol>
<p>Here are a couple screenshots I took:</p>
<div style="padding-bottom: 175px"><img class="size-medium wp-image-105 alignright" title="Craigslist Cooliris Screenshot 2" src="http://www.technullogy.net/wp-content/uploads/2009/07/CraigslistCooliris2-300x232.PNG" alt="Craigslist Cooliris Screenshot 2" width="210" height="162" /><img class="size-medium wp-image-106 alignleft" title="Craigslist Cooliris Screenshot 1" src="http://www.technullogy.net/wp-content/uploads/2009/07/CraigslistCooliris1-300x234.PNG" alt="Craigslist Cooliris Screenshot 1" width="210" height="164" /></div>
]]></content:encoded>
			<wfw:commentRss>http://www.technullogy.net/index.php/2009/07/07/cooliris-the-coolest-way-to-search-craigslist/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Stay Logged In to Multiple Gmail Accounts</title>
		<link>http://www.technullogy.net/index.php/2009/06/27/stay-logged-in-to-multiple-gmail-accounts/</link>
		<comments>http://www.technullogy.net/index.php/2009/06/27/stay-logged-in-to-multiple-gmail-accounts/#comments</comments>
		<pubDate>Sat, 27 Jun 2009 17:38:45 +0000</pubDate>
		<dc:creator>MJ Hufford</dc:creator>
				<category><![CDATA[Greasemonkey]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[Gmail]]></category>
		<category><![CDATA[UserScripts]]></category>

		<guid isPermaLink="false">http://www.technullogy.net/?p=77</guid>
		<description><![CDATA[My wife and I share the iMAC in the office. We both blog&#8230;she on Blogger and me on WordPress. We both check the finances with a single login. And we both check email on our respective Gmail accounts. The problem is that I have to log her out and log myself in whenever I sit [...]]]></description>
			<content:encoded><![CDATA[<p>My wife and I share the iMAC in the office.  We both blog&#8230;she on Blogger and me on WordPress.  We both check the finances with a single login.  And we both check email on our respective Gmail accounts.  The problem is that I have to log her out and log myself in whenever I sit down to use the computer&#8230;and vice versa.  There are dozens of solutions; none of which I liked for various reasons.  Here&#8217;s a few examples:</p>
<ol>
<li>Use different browsers
<ol>
<li>This allows each browser to have a cookie &#8211; one for my account in Safari and one for hers in Firefox</li>
<li>This is lame because we both love Firefox</li>
</ol>
</li>
<li>Use an email client app like Mail, Outlook, Thunerbird, etc
<ol>
<li>I really dig the Google interface&#8230;so does my wife</li>
</ol>
</li>
<li>Firefox Add-ons&#8230;DUH!
<ol>
<li><a title="Cool stuff" href="https://addons.mozilla.org/en-US/firefox/addon/1320">This one is really nice</a></li>
<li>However, I use Firefox&#8217;s Master Password, so this would require me to enter my Master Password each time I launch the browser</li>
</ol>
</li>
</ol>
<p>So that brings us to the solution of the day&#8230;drum roll please&#8230;.</p>
<p>I said&#8230;drum roll!</p>
<p><strong>Firefox GreaseMonkey Add-On with a script from UserScripts.org</strong></p>
<ol>
<li>Install the GreaseMonkey add-on <a title="Yeah baby!" href="https://addons.mozilla.org/en-US/firefox/addon/748" target="_blank">here.</a></li>
<li>Relaunch Firefox and look for the monkey face in the bottom, right hand corner of your browser:<br />
<img class="size-full wp-image-78" title="GreaseMonkeyEnabled" src="http://www.technullogy.net/wp-content/uploads/2009/06/GreaseMonkeyEnabled.png" alt="GreaseMonkeyEnabled" /></li>
<li>Now, browse <a title="Now we're talkin!" href="http://userscripts.org/scripts/show/16341" target="_blank">here</a> and click on the &#8220;Install&#8221; link.</li>
<li>Login to your Gmail account and notice the new drop down list in place of the &#8220;Sign Out&#8221; link:<br />
<img class="size-full wp-image-82" title="MultipleGmailLogin" src="http://www.technullogy.net/wp-content/uploads/2009/06/MultipleGmailLogin.jpg" alt="MultipleGmailLogin" /></li>
<li>Follow the instructions in the drop down list and you&#8217;re golden!</li>
</ol>
<p>Many thanks to Jarett for this great script.  Now I need one for Facebook!  Perhaps I&#8217;ll try my hand at my first Greasemonkey script and blog about the pain later.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.technullogy.net/index.php/2009/06/27/stay-logged-in-to-multiple-gmail-accounts/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
