<?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>The One with the Thoughts of Frans &#187; Sites</title>
	<atom:link href="http://fransdejonge.com/category/internet/sites/feed/" rel="self" type="application/rss+xml" />
	<link>http://fransdejonge.com</link>
	<description>Just a personal blog, sharing some thoughts and findings.</description>
	<lastBuildDate>Mon, 06 Feb 2012 19:37:43 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Dealing With cPanel: Setting Up a 301 Redirect to Your Main Domain And Preventing .htaccess Hell</title>
		<link>http://fransdejonge.com/2010/07/dealing-with-cpanel-setting-up-a-301-redirect-to-your-main-domain-and-preventing-htaccess-hell/</link>
		<comments>http://fransdejonge.com/2010/07/dealing-with-cpanel-setting-up-a-301-redirect-to-your-main-domain-and-preventing-htaccess-hell/#comments</comments>
		<pubDate>Wed, 28 Jul 2010 12:32:35 +0000</pubDate>
		<dc:creator>Frans</dc:creator>
				<category><![CDATA[Sites]]></category>

		<guid isPermaLink="false">http://fransdejonge.com/?p=1718</guid>
		<description><![CDATA[cPanel is surprisingly ill-suited for managing domains. In this post I discuss two methods I use to prevent some issues that arise from this problem.]]></description>
			<content:encoded><![CDATA[<p>cPanel is surprisingly ill-suited for managing domains. Rather than treating each domain as a separate entity, you get one main domain and various so-called add-on domains. The most annoying aspect of this is that it always creates a subdomain when you add a new add-on domain. There should be no such thing as an add-on domain, just a bunch of domains. cPanel has some features that help you work around these defects, but I wasn&#8217;t too thrilled with those. It now seems to automatically redirect the www-subdomain to your no-www domain and you can easily set up subdomains to redirect through the interface, but it doesn&#8217;t satisfy me.</p>
<h3>Setting Up a 301 Redirect</h3>
<p>Instead of having to bother with a plethora of settings in cPanel itself, I came up with the following to stick at the top of .htaccess. A quick look around on the Internet brought up <a href="http://www.fayazmiraz.com/remove-subdomain-access-from-addon-domain/">Fayaz Miraz&#8217;s blog</a>, but while the solution suggestion was close, it misses one crucial aspect: it only redirects from the main page as far as I can tell. This is fixed easily by the addition of $1 (i.e. everything that was added after the main page).</p>
<pre><code>&lt;IfModule mod_rewrite.c&gt;
RewriteEngine On

RewriteCond %{HTTP_HOST} !^fransdejonge\.com$
RewriteRule ^(.*)$ http://fransdejonge.com/$1 [R=301,L]

&lt;/IfModule&gt;</code></pre>
<p>Simply put, it matches all possible routes of approach (whether through www or through a subdomain of another domain) and if it&#8217;s not fransdejonge.com, it will 301 redirect to fransdejonge.com. The L means no further rewriting will occur after that rule. Mostly because it would just be inefficient, and partially because something else further down the line might mess things up.</p>
<h3>Preventing .htaccess Hell</h3>
<p>Another problem is that cPanel automatically creates a <code>/public_html/addondomain</code> directory. This is bad, because <code>/public_html</code> already contains a .htaccess file for the main domain. When accessing <code>/public_html/addondomain</code>, it would first parse the .htaccess file in <code>/public_html</code> before moving on and overriding it in <code>/public_html/addondomain</code>, and that&#8217;s assuming none of the rules in <code>/public_html</code> make anything go awry!</p>
<p>To prevent this kind of nightmare from occurring I took the simple precaution of creating a new directory <code>/domains</code>. This domain is contained in <code>/domains/fransdejonge.com</code>, for instance, and any other add-on or subdomains can reside in their own <code>/domains/domain.com</code> directory to prevent any added load from needlessly parsing .htaccess files.</p>
]]></content:encoded>
			<wfw:commentRss>http://fransdejonge.com/2010/07/dealing-with-cpanel-setting-up-a-301-redirect-to-your-main-domain-and-preventing-htaccess-hell/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Fun With Yahoo Pipes and Podcasts</title>
		<link>http://fransdejonge.com/2009/12/fun-with-yahoo-pipes-and-podcasts/</link>
		<comments>http://fransdejonge.com/2009/12/fun-with-yahoo-pipes-and-podcasts/#comments</comments>
		<pubDate>Thu, 03 Dec 2009 23:15:27 +0000</pubDate>
		<dc:creator>Frans</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Media]]></category>
		<category><![CDATA[Music]]></category>
		<category><![CDATA[Sites]]></category>
		<category><![CDATA[Thoughts]]></category>

		<guid isPermaLink="false">http://frans.lowter.us/?p=409</guid>
		<description><![CDATA[Some thoughts on podcasts and how to make aggregated news podcasts more usable.]]></description>
			<content:encoded><![CDATA[<p>I never really got into the whole podcast fad years ago. The available aggregators annoyed me, the available podcasts seemed generally uninteresting, and I didn&#8217;t have an MP3 player. Things change: I&#8217;ve had an MP3 player for a couple of years now. However, I only reevaluated my dislike for podcasts quite recently, when I discovered Wil Wheaton&#8217;s <a href="http://memoriesofthefuturecast.com/">Memories of the Futurecast</a>. I wanted a way to automate the process of getting it onto my MP3 player, and I found it: gPodder seems to do everything I want without getting in my way. Now I can do a quick sync with my MP3 player in the morning and I&#8217;ll have stuff to listen to while, among other things, going to and from the university.</p>
<p>All of that was about a month ago. I&#8217;ve only got a small selection of feeds in there so far, but since I&#8217;m still catching up on literally months of old material, that&#8217;s not an issue as of now. Aside from Wil Wheaton&#8217;s, my favorite podcast right now is <a href="http://electronics.howstuffworks.com/stuff-you-should-know-podcast.htm">Stuff You Should Know</a>. But enough about that.</p>
<p>When I was younger, I usually listened to the radio news at 7 or 8 AM while eating breakfast. I have long since switched to doing some quick reading of my e-mails and feeds, but that&#8217;s not the ideal way to get a quick update on what&#8217;s currently going on. The radio news does a better job of that, but it just feels too much like a waste of time. Cue the podcast. I&#8217;ve known that Dutch public radio has had its broadcasts available as podcasts since 2005 or so. Selecting the podcast most relevant to me was easy: <a href="http://www.rnw.nl/nl/nederlands/radioprogramme/streams-podcasts">Radio Netherlands Worldwide</a>, specifically the <i lang="nl">Nieuwslijn</i> (news line) program. Of course there are competitors, such as BBC&#8217;s <a href="http://www.bbc.co.uk/podcasts/series/globalnews">Global News</a> and the German ARD <a href="http://www.tagesschau.de/infoservices/podcast/index.html">Tagesschau</a>, and I may have missed some other potentially interesting sources—which would presumably mostly mean American or Flemish—, but for now I&#8217;m sticking with this. Alas, there&#8217;s one small problem: there&#8217;s a news broadcast just about each two hours. This makes the new episodes available dialog look rather cluttered. I only want to listen to the news once a day.</p>
<div id="attachment_413" class="wp-caption alignnone" style="width: 410px"><a href="http://frans.lowter.us/wp-content/uploads/2009/12/Screenshot-New-episodes-available.png"><img src="http://frans.lowter.us/wp-content/uploads/2009/12/Screenshot-New-episodes-available-400x271.png" alt="New episodes available in gPodder" title="Screenshot-New episodes available" width="400" height="271" class="size-medium wp-image-413" /></a><p class="wp-caption-text">New episodes available in gPodder</p></div>
<p>That&#8217;s where <a href="http://pipes.yahoo.com/pipes/">Yahoo Pipes</a> comes in. When I start it, it complains about Opera, but I haven&#8217;t been able to discern any difference in functionality between Opera and Firefox on the site. In only a couple of minutes, I have something that only gives me the 8 o&#8217;clock news.</p>
<p><a href="http://frans.lowter.us/wp-content/uploads/2009/12/Screenshot-Yahoo-Pipes.png"><img src="http://frans.lowter.us/wp-content/uploads/2009/12/Screenshot-Yahoo-Pipes-400x357.png" alt="Screenshot-Yahoo-Pipes" title="Screenshot-Yahoo-Pipes" width="400" height="357" class="alignnone size-medium wp-image-416" /></a></p>
<p>If I wanted, I could easily add the BBC and ARD feeds and also strip them to just one item a day. What I can&#8217;t do, however, is output the de facto standard <code>&lt;itunes:image href="http://some-picture" /&gt;</code> with the feed. Nevertheless, I can manually link up a picture in gPodder so it doesn&#8217;t look strange in the feed display list.</p>
<p>For things more complicated than such simplistic mash-ups, Yahoo Pipe&#8217;s graphical programming interface quickly becomes lacking, which is strange considering that it seems to aspire to be more than just a simple mash-up tool. Nevertheless, it certainly makes life a little easier.</p>
]]></content:encoded>
			<wfw:commentRss>http://fransdejonge.com/2009/12/fun-with-yahoo-pipes-and-podcasts/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Extend Opera</title>
		<link>http://fransdejonge.com/2009/11/extend-opera/</link>
		<comments>http://fransdejonge.com/2009/11/extend-opera/#comments</comments>
		<pubDate>Mon, 23 Nov 2009 17:38:58 +0000</pubDate>
		<dc:creator>Frans</dc:creator>
				<category><![CDATA[Browsers]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Opera]]></category>
		<category><![CDATA[Scripting]]></category>
		<category><![CDATA[Sites]]></category>

		<guid isPermaLink="false">http://frans.lowter.us/?p=320</guid>
		<description><![CDATA[ExtendOpera.org was launched a few days ago. It&#8217;s a user initiative, aimed at bringing those aspects of Opera customization that Opera software has somewhat abandoned together.]]></description>
			<content:encoded><![CDATA[<p><a href="http://extendopera.org">ExtendOpera.org</a> was launched a few days ago. It&#8217;s a user initiative, aimed at bringing those aspects of Opera customization that Opera software has somewhat abandoned together.</p>
]]></content:encoded>
			<wfw:commentRss>http://fransdejonge.com/2009/11/extend-opera/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google in English</title>
		<link>http://fransdejonge.com/2009/10/google-in-english/</link>
		<comments>http://fransdejonge.com/2009/10/google-in-english/#comments</comments>
		<pubDate>Sun, 18 Oct 2009 13:38:20 +0000</pubDate>
		<dc:creator>Frans</dc:creator>
				<category><![CDATA[Scripting]]></category>
		<category><![CDATA[Sites]]></category>

		<guid isPermaLink="false">http://frans.lowter.us/?p=277</guid>
		<description><![CDATA[Google apparently thinks that it knows what I want better than I do. I have clearly specified &#8220;en-US&#8221; as my preferred language, &#8220;en&#8221; if that&#8217;s not available, and &#8220;nl&#8221; if that&#8217;s not available. I tried removing the &#8220;nl&#8221; in an attempt to get Google to speak English to me, but it won&#8217;t comply. I finally [...]]]></description>
			<content:encoded><![CDATA[<p>Google apparently thinks that it knows what I want better than I do. I have clearly specified &#8220;en-US&#8221; as my preferred language, &#8220;en&#8221; if that&#8217;s not available, and &#8220;nl&#8221; if that&#8217;s not available. I tried removing the &#8220;nl&#8221; in an attempt to get Google to speak English to me, but it won&#8217;t comply. I finally got annoyed enough to write this little script to fix it. It would be easy to adjust for other preferred languages.</p>
<p><a href='http://frans.lowter.us/wp-content/uploads/2009/10/google-in-english.user.js'>Install Google in English user script</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://fransdejonge.com/2009/10/google-in-english/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SVG Favicons Are Not Supported Yet</title>
		<link>http://fransdejonge.com/2008/10/svg-favicons-are-not-supported-yet/</link>
		<comments>http://fransdejonge.com/2008/10/svg-favicons-are-not-supported-yet/#comments</comments>
		<pubDate>Sat, 04 Oct 2008 20:20:13 +0000</pubDate>
		<dc:creator>Frans</dc:creator>
				<category><![CDATA[Browsers]]></category>
		<category><![CDATA[Sites]]></category>

		<guid isPermaLink="false">http://frans.lowter.us/?p=169</guid>
		<description><![CDATA[I really want to do the following, but I&#8217;m still stuck with Microsoft&#8217;s icon format and PNG. &#60;link rel="shortcut icon" href="some-vector-image.svg" type="type="image/svg+xml"&#62; I&#8217;m especially surprised that Google Chrome doesn&#8217;t support this. They do the whole web application thing; which utilizes the favicons of sites as application icons. SVG would be perfect to also offer a [...]]]></description>
			<content:encoded><![CDATA[<p>I really want to do the following, but I&#8217;m still stuck with Microsoft&#8217;s icon format and PNG.</p>
<pre><code>&lt;link rel="shortcut icon" href="some-vector-image.svg" type="type="image/svg+xml"&gt;</code></pre>
<p>I&#8217;m especially surprised that Google Chrome doesn&#8217;t support this. They do the whole web application thing; which utilizes the favicons of sites as application icons. SVG would be perfect to also offer a nice larger size icon. Another thing I didn&#8217;t know is that IE7 still doesn&#8217;t support PNGs as favicons.</p>
<p>Last, but not least, here is the favicon I created in the end: <a href="http://frans.lowter.us/wp-content/uploads/2008/10/face-monkey.png"><img src="http://frans.lowter.us/wp-content/uploads/2008/10/face-monkey.png" alt="A favicon that depicts the face of a monkey." title="A favicon that depicts the face of a monkey." width="16" height="16"></a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://fransdejonge.com/2008/10/svg-favicons-are-not-supported-yet/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Scrolling on Google Maps</title>
		<link>http://fransdejonge.com/2007/04/scrolling-on-google-maps/</link>
		<comments>http://fransdejonge.com/2007/04/scrolling-on-google-maps/#comments</comments>
		<pubDate>Wed, 11 Apr 2007 07:37:23 +0000</pubDate>
		<dc:creator>Frans</dc:creator>
				<category><![CDATA[Sites]]></category>

		<guid isPermaLink="false">http://frans.lowter.us/archives/2007/04/11/scrolling-on-google-maps/</guid>
		<description><![CDATA[I don&#8217;t know when they added it, but it&#8217;s brilliant. Just scroll to zoom in and out.]]></description>
			<content:encoded><![CDATA[<p>I don&#8217;t know when they added it, but it&#8217;s brilliant. Just scroll to zoom in and out.</p>
]]></content:encoded>
			<wfw:commentRss>http://fransdejonge.com/2007/04/scrolling-on-google-maps/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Microsoft and bug reports</title>
		<link>http://fransdejonge.com/2006/03/microsoft-and-bug-reports/</link>
		<comments>http://fransdejonge.com/2006/03/microsoft-and-bug-reports/#comments</comments>
		<pubDate>Wed, 22 Mar 2006 19:07:58 +0000</pubDate>
		<dc:creator>Frans</dc:creator>
				<category><![CDATA[Sites]]></category>

		<guid isPermaLink="false">http://frans.lowter.us/archives/2006/03/22/microsoft-and-bug-reports/</guid>
		<description><![CDATA[I&#8217;ve dealt with reporting bugs to Opera and WordPress. Also to some PHP projects and other things where I usually know the developers personally, or have nice chat/mail conversation with them (further unrelated to the bug as they all happened to use trac). Apperently submitting a bug report to Microsoft is a whole lot harder.]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve dealt with reporting bugs to Opera and WordPress. Also to some PHP projects and other things where I usually know the developers personally, or have nice chat/mail conversation with them (further unrelated to the bug as they all happened to use trac).</p>
<p>Apperently <a href="http://weblog.timaltman.com/node/834">submitting a bug report to Microsoft</a> is a whole lot harder.</p>
]]></content:encoded>
			<wfw:commentRss>http://fransdejonge.com/2006/03/microsoft-and-bug-reports/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>You&#039;re going to like this&#8230;</title>
		<link>http://fransdejonge.com/2006/03/youre-going-to-like-this/</link>
		<comments>http://fransdejonge.com/2006/03/youre-going-to-like-this/#comments</comments>
		<pubDate>Sun, 05 Mar 2006 12:01:34 +0000</pubDate>
		<dc:creator>Frans</dc:creator>
				<category><![CDATA[Sites]]></category>

		<guid isPermaLink="false">http://frans.lowter.us/archives/2006/03/05/youre-going-to-like-this/</guid>
		<description><![CDATA[&#8230;unless you don&#8217;t like the Simpsons. Now in real life. Via Sushubh.]]></description>
			<content:encoded><![CDATA[<p>&#8230;unless you don&#8217;t like the Simpsons. Now in <a href="http://youtube.com/watch?v=49IDp76kjPw">real life</a>.</p>
<p>Via <a href="http://sushubh.net/archives/2006/03/05/you-would-love-this/">Sushubh</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://fransdejonge.com/2006/03/youre-going-to-like-this/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Internet Explorer mockery</title>
		<link>http://fransdejonge.com/2006/02/internet-explorer-mockery/</link>
		<comments>http://fransdejonge.com/2006/02/internet-explorer-mockery/#comments</comments>
		<pubDate>Thu, 16 Feb 2006 15:13:09 +0000</pubDate>
		<dc:creator>Frans</dc:creator>
				<category><![CDATA[Sites]]></category>
		<category><![CDATA[Thoughts]]></category>

		<guid isPermaLink="false">http://frans.lowter.us/archives/2006/02/16/internet-explorer-mockery/</guid>
		<description><![CDATA[There are a few sort of old sites I wanted to tell you about anyway. SpreadIE.com is the logical answer to spreadFirefox.com. Firefox helps communist nations, switch back to IE! The content on the site is too obviously fake to be funny though. Then there&#8217;s IE7.com. I consider it quite a brilliant action by whoever [...]]]></description>
			<content:encoded><![CDATA[<p>There are a few sort of old sites I wanted to tell you about anyway.</p>
<p>SpreadIE.com is the logical answer to spreadFirefox.com. Firefox <a href="http://www.spreadinternetexplorer.com/node/368">helps communist nations</a>, switch back to IE! The content on the site is too obviously fake to be funny though.</p>
<p>Then there&#8217;s <a href="http://www.ie7.com">IE7.com</a>. I consider it quite a brilliant action by whoever bought the domain.</p>
<p>Meanwhile, Opera Mini is the only Opera related thing I&#8217;ve been spreading lately. Everybody in my circle of friends already switched to Firefox or Opera, so there seems little left to be done.</p>
]]></content:encoded>
			<wfw:commentRss>http://fransdejonge.com/2006/02/internet-explorer-mockery/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Torrentspy.com user stylesheet</title>
		<link>http://fransdejonge.com/2006/01/torrentspycom-user-stylesheet/</link>
		<comments>http://fransdejonge.com/2006/01/torrentspycom-user-stylesheet/#comments</comments>
		<pubDate>Sun, 15 Jan 2006 12:27:44 +0000</pubDate>
		<dc:creator>Frans</dc:creator>
				<category><![CDATA[Sites]]></category>

		<guid isPermaLink="false">http://frans.lowter.us/archives/2006/01/15/torrentspycom-user-stylesheet/</guid>
		<description><![CDATA[Torrentspy.com is a reasonably good site for checking out torrents, but I thought the layout was sort of annoying. It features all kinds of informative texts which are neither informative to n00bs nor to more experienced people. Basically I stripped everything except torrent related features, without really caring for the layout. If you care for [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.torrentspy.com/">Torrentspy.com</a> is a reasonably good site for checking out torrents, but I thought the layout was sort of annoying. It features all kinds of informative texts which are neither informative to n00bs nor to more experienced people. Basically I stripped everything except torrent related features, without really caring for the layout. If you care for the layout then consider this a good starting point. I&#8217;d be interested to see your results if you decided to do that. <img src='http://fransdejonge.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>For this stylesheet to work you need <a href="http://userjs.org/scripts/general/enhancements/root-site-signature">the root signature UserJS</a>, which has been rendered <a href="http://my.opera.com/community/forums/topic.dml?id=109574">obsolete</a> with Opera 9. I still used this method however because I already have it working, there is no nice UI for it yet and I was too lazy to alter all of my user stylesheets. Just consider this a pro if you&#8217;re using Firefox, because right now it&#8217;s still quite compatible&#8230;</p>
<p>On another note, I still have to add something to my stylesheet to style stuff like this.</p>
<pre><code>/* torrentspy stylesheet */
/* hide everything from "informing text" to ads which isn't required for looking for torrents */
html.moose.ts .adspace-top, html.moose.torrentspy .adspace-top,
html.moose.ts .adspace-middle, html.moose.torrentspy .adspace-middle,
html.moose.ts .adspace-side, html.moose.torrentspy .adspace-side,
html.moose.ts #fiSearchForm, html.moose.torrentspy #fiSearchFor,
html.moose.ts #header, html.moose.torrentspy #header,
html.moose.ts #footer, html.moose.torrentspy #footer,
html.moose.ts #stats, html.moose.torrentspy #stats,
html.moose.ts .content h2:first-child, html.moose.torrentspy .content h2:first-child,
html.moose.ts .content h2+p, html.moose.torrentspy .content h2+p,
html.moose.ts #search img[alt="Search"], html.moose.torrentspy #search  img[alt="Search"],
html.moose.ts #search-nav .help, html.moose.torrentspy #search-nav .help,
html.moose.ts #search-nav img[alt="Get Firefox Plugin"], html.moose.torrentspy #search-nav  img[alt="Get Firefox Plugin"],
html.moose.ts img[width="700"], html.moose.torrentspy  img[width="700"],
/* www.torrentspy.com unique, hide the stupid shout stuff */
html.moose.torrentspy .ShoutFrameBody, html.moose.torrentspy .sub-cols {display:none}
/* put the search in the right position */
html.moose.ts #search, html.moose.torrentspy #search {padding:1em}
	html.moose.ts #search .f_field, html.moose.torrentspy #search .f_field {border:1px solid #000}
/* alter the submit buttons to something (a little) better */
html.moose.ts #search .f_button, html.moose.torrentspy #search .f_button,
html.moose.ts #image1, html.moose.torrentspy #image1
{content:"Go";padding:2px;border:1px solid #000}
/* replace ugly images with text */
html.moose.ts #search-nav img[alt="Latest Torrents"], html.moose.torrentspy #search-nav  img[alt="Latest Torrents"]
{content:"Latest Torrents"}
html.moose.ts #search-nav img[alt="RSS Feed"], html.moose.torrentspy #search-nav img[alt="RSS Feed"]
{content:"RSS Feed"}
/* position in a better place */
html.moose.ts #search-nav, html.moose.torrentspy #search-nav
{position:absolute;top:0;left:500px;border:1px solid #000;border-width:0 1px 1px}
/* some general styles */
html.moose.ts, html.moose.torrentspy,
html.moose.ts body, html.moose.torrentspy body,
html.moose.ts #page, html.moose.torrentspy #page
{background:#d4e1f0;color:#000;font:1em/1.2 "Trebuchet MS", serif, georgia;text-align:left;line-height:1.5em;height:100%;margin:0;padding:0}
/* position user stuff in a better place */
html.moose.ts #col-right, html.moose.torrentspy #col-right
{position:absolute;top:0;right:0}
/* remove stupid background and such */
html.moose.ts #login-nav, html.moose.torrentspy #login-nav,
html.moose.ts #login-nav ul, html.moose.torrentspy #login-nav ul,
html.moose.ts #login-nav ul li, html.moose.torrentspy #login-nav ul li
{margin:0;padding:0 1em 0;background:#fff;border:0;display:inline}
/* make page smaller */
html.moose.ts #container, html.moose.torrentspy #container,
html.moose.ts #page, html.moose.torrentspy #page
{width:750px;}
/* put a border around it for clarity */
html.moose.ts #cols, html.moose.torrentspy #cols
{background:#fff;margin-bottom:10px;display:block;height:100%;border:1px solid black;border-width:0 1px 1px}</code></pre>
]]></content:encoded>
			<wfw:commentRss>http://fransdejonge.com/2006/01/torrentspycom-user-stylesheet/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>An update on a green design</title>
		<link>http://fransdejonge.com/2006/01/an-update-on-a-green-design/</link>
		<comments>http://fransdejonge.com/2006/01/an-update-on-a-green-design/#comments</comments>
		<pubDate>Tue, 03 Jan 2006 23:02:30 +0000</pubDate>
		<dc:creator>Frans</dc:creator>
				<category><![CDATA[Site]]></category>
		<category><![CDATA[Sites]]></category>

		<guid isPermaLink="false">http://frans.lowter.us/archives/2006/01/04/what-is-geek-philosopher-and-an-update-on-the-design/</guid>
		<description><![CDATA[Geek Philosopher is a resource for royalty-free imagery. As you can see I brought a bit of life into the header by cutting pieces an image from the Outdoor Photos and Backgrounds category. Grass by Sidewalk is the full image for those interested. I took a look around the various categories and most of them [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.geekphilosopher.com">Geek Philosopher</a> is a resource for royalty-free imagery. As you can see I brought a bit of life into the header by cutting pieces an image from the <a href="http://www.geekphilosopher.com/MainPage/bkgLandscape.htm">Outdoor Photos and Backgrounds</a> category. <a href="http://www.geekphilosopher.com/bkg/lsGrassBySidewalk.htm">Grass by Sidewalk</a> is the full image for those interested.</p>
<p>I took a look around the various categories and most of them are pretty good pictures. I am not sure about the exact copyrights on any of them, as I couldn&#8217;t find any pictures labeled with any of the descriptions which are on the <a href="http://www.geekphilosopher.com/MainPage/bkgAbout.htm">about page</a> of the site. I suppose I&#8217;ll take a new fresh look tomorrow at that aspect of the site tomorrow after a good night&#8217;s sleep.</p>
<p>Luckily as far as the design is concerned I haven&#8217;t yet managed to break anything in IE (although the gravatars are a pixel off). I might go with alpha-transparant PNG&#8217;s though for some of the transparancy effects, as that would certainly make a much smaller image load and it would make things look somewhat less prettier in IE. After all, I do want people to switch to Firefox, Opera, Safari or whatever else isn&#8217;t so annoying to anyone who wants to do a little bit more with CSS.</p>
<p>If you take a look around in my CSS file you&#8217;ll notice that I&#8217;m trying something new. Over the past half year I switched from full CSS to very compact CSS, but that&#8217;s not really a difference. The thing I&#8217;m experimenting with here is to indent those properties which are basically a sort of subproperties of a certain thing to increase readability. I must say it&#8217;s already working out quite well.</p>
<p>So drop your suggestions now, as this is the layout I plan to extend on in the close future.</p>
]]></content:encoded>
			<wfw:commentRss>http://fransdejonge.com/2006/01/an-update-on-a-green-design/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
	</channel>
</rss>

