<?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>Use Tables! &#187; ChatZilla</title>
	<atom:link href="http://www.gijsk.com/blog/category/mozilla/chatzilla/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.gijsk.com/blog</link>
	<description>Except not really.</description>
	<lastBuildDate>Tue, 04 Aug 2009 10:04:00 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Moving from CVS to Mercurial</title>
		<link>http://www.gijsk.com/blog/2009/03/moving-from-cvs-to-mercurial/</link>
		<comments>http://www.gijsk.com/blog/2009/03/moving-from-cvs-to-mercurial/#comments</comments>
		<pubDate>Thu, 12 Mar 2009 11:46:40 +0000</pubDate>
		<dc:creator>Gijs</dc:creator>
				<category><![CDATA[ChatZilla]]></category>
		<category><![CDATA[Mozilla]]></category>
		<category><![CDATA[Venkman]]></category>

		<guid isPermaLink="false">http://www.gijsk.com/blog/?p=98</guid>
		<description><![CDATA[Yesterday, Venkman moved from CVS to Hg. For the benefit of others who may want to move other extensions, here is a rough attempt to outline the steps I took.
First, some notes of caution:

HG uses a character encoding specific to your machine. For my mac, that turned out to be mac-roman. You usually don&#8217;t want [...]]]></description>
			<content:encoded><![CDATA[<p>Yesterday, Venkman <a href="https://bugzilla.mozilla.org/show_bug.cgi?id=475012">moved</a> from <a href="http://mxr.mozilla.org/seamonkey/source/extensions/venkman/">CVS</a> to <a href="http://hg.mozilla.org/venkman/">Hg</a>. For the benefit of others who may want to move other extensions, here is a rough attempt to outline the steps I took.</p>
<p>First, some notes of caution:</p>
<ul>
<li>HG uses a character encoding specific to your machine. For my mac, that turned out to be mac-roman. You usually don&#8217;t want that, and need to tell it you want it to use utf8 instead. I could actually not convince it to do this for the author map &#8211; it stored the authors in mac-roman anyway. Check your imports carefully.</li>
<li>HG&#8217;s default <a href="http://www.selenic.com/mercurial/wiki/index.cgi/ConvertExtension">ConvertExtension</a> is your friend, as long as you tell it what to do the right way.</li>
<li>You probably want to create a test repo (I ended up using several, in trial and error!) at hg.mozilla.org/users. Instructions for doing that may be found <a href="https://developer.mozilla.org/en/Publishing_Mercurial_Clones">here</a>. Keep in mind that once you stick something in a Mercurial repo, <strong>it will be there forever</strong>. This means anyone pulling from your repo will have to keep downloading all those files. Be careful about what you push to the repo, because once you&#8217;ve pushed something there&#8217;s no going back (short of asking IT to delete the repo and trying again).</li>
</ul>
<p>Alright. Down to the actual import. Here is the actual steps I ended up following. When I say &#8220;ended up&#8221; I mean &#8220;after trying N different things which didn&#8217;t work&#8221;, where N was large enough to keep me busy for a fair number of hours.</p>
<ol>
<li>Check out the relevant code from CVS. In my case, this meant:
<pre>cvs -d :pserver:anonymous@cvs-mirror.mozilla.org:/cvsroot co mozilla/extensions/venkman</pre>
</li>
<li>Enable the convert and mq extensions. Edit your ~/.hgrc file and include:
<pre>[extensions]
hgext.convert=
mq =</pre>
</li>
<li>Decide whether you want all the branches in CVS. If, like me, you&#8217;re importing an extension, you probably don&#8217;t care about the Firefox/Mozilla release branches. You just want trunk history. In order to do this, we ask the convert extension to split up branches. Edit your <code>~/.hgrc</code> file and include:
<pre>[convert]
hg.usebranchnames=0
hg.clonebranches=1</pre>
</li>
<li>Now you can run convert, more or less like this:
<pre>hg --encoding utf8 convert vnkCVS/mozilla/extensions/venkman venkman-initial</pre>
</li>
<li>Inspect your handiwork: you will now end up with several directories, one for each branch. You presumably want &#8220;default&#8221;, which should correspond to trunk. We will convert from hg to hg in a bit, to obtain just that.  Go back to your <code>~/.hgrc</code> file and remove the <code>[convert]</code> section you added in step 3. This way, the new repo we&#8217;ll convert to won&#8217;t still have the &#8220;default&#8221; directory.</li>
<li>Additionally, we still need to map authors. CVS used something like: &#8220;foo%somecompany.com&#8221;, and in Mercurial, we expect something of the form &#8220;John Doe &lt;johndoe@mozilla.com&gt;&#8221;. So we need to define an author map file, in which each line simply maps one set of authors to the next. For example:<br />
<code>johndoe%mozilla.com = John Doe &lt;johndoe@mozilla.com&gt;</code> . I uploaded the <a href="http://www.gijsk.com/blog/wp-content/uploads/2009/03/fullmap.txt">Author map for Venkman CVS to hg import</a> that I used. It probably does not cover everyone who committed to your repo. If there are aliases that you&#8217;re not familiar with (Mozilla CVS is pretty old!) then Google and asking on IRC are easy ways of figuring out who&#8217;s who. To create a complete author map, I used some ad-hoc sed magic on:
<pre>
hg log | grep "user:" &gt; foo.txt
</pre>
</li>
<li>You may want to unify the entries of committers who have committed using different committer IDs. <a href="http://www.ohloh.net/">Ohloh</a> can help there.</li>
<li>Run hg convert again:
<pre>hg --encoding utf8 convert --authors myAuthorMap.txt venkman-initial/default/ venkman-final/</pre>
</li>
<li>Check <code>hg log</code>. If there are loads of tags in which you&#8217;re not interested, you can use the <code>hg strip</code> command to strip the last hg revision, which added all the tags.</li>
<li>Verify everything worked. Then add the correct &#8220;default-push&#8221; line to the <code>.hg/hgrc</code> file for the new repo you created, and push to your user repo. Check that everything is correct by reviewing the hgweb overview of things. If so, change the default-push line to point to the &#8220;real&#8221; repo, and push all the changesets there. You&#8217;re done!</li>
</ol>
<p>This may not be the easiest or best way to do things, but that&#8217;s the way I managed &#8211; suggestions/improvements appreciated!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.gijsk.com/blog/2009/03/moving-from-cvs-to-mercurial/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Back in a land with internet</title>
		<link>http://www.gijsk.com/blog/2008/09/back-in-a-land-with-internet/</link>
		<comments>http://www.gijsk.com/blog/2008/09/back-in-a-land-with-internet/#comments</comments>
		<pubDate>Sat, 06 Sep 2008 09:41:01 +0000</pubDate>
		<dc:creator>Gijs</dc:creator>
				<category><![CDATA[ChatZilla]]></category>
		<category><![CDATA[Chrome List]]></category>
		<category><![CDATA[Mozilla]]></category>
		<category><![CDATA[University]]></category>
		<category><![CDATA[Venkman]]></category>

		<guid isPermaLink="false">http://www.gijsk.com/blog/?p=81</guid>
		<description><![CDATA[In relation to the previous post, I am now back &#8211; sort of. Wednesday 10 until Thursday 18 I will be in Sweden for another small holiday, and the 26th I move to London to start studying for my Master&#8217;s degree. I should be settled in there somewhere after the first week of courses (think [...]]]></description>
			<content:encoded><![CDATA[<p>In relation to the <a href="http://www.gijsk.com/blog/2008/06/absence-citation-needed/">previous post</a>, I am now back &#8211; sort of. Wednesday 10 until Thursday 18 I will be in Sweden for another small holiday, and the 26th I move to London to start studying for my Master&#8217;s degree. I should be settled in there somewhere after the first week of courses (think October 10th).</p>
<p>If there is something you need me to take care of urgently, please let me know. Right now my priorities are with moving out of the Netherlands for a year and possibly more (which is not trivial). In some spare time I try to work on <a href="http://chatzilla.hacksrus.com/">ChatZilla</a> accessibility (specifically, my long overdue halfway report) and some of the <a href="http://code.google.com/p/chromelist/issues">bug reports about Chrome List</a> that I&#8217;ve been getting. There is also Venkman demanding some attention. If anyone would like to help out with that, please have a look at the <a href="http://wiki.mozilla.org/Venkman">wiki page</a> that Alex et al. created. You can usually find either of us on IRC if you&#8217;re interested in helping out. It&#8217;s really quite necessary because in its current state it is not doing that well (several basic features are broken with Firefox 3(.0.1) and on trunk).</p>
]]></content:encoded>
			<wfw:commentRss>http://www.gijsk.com/blog/2008/09/back-in-a-land-with-internet/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SightCity Frankfurt, ChatZilla release, Privacy, Venkman issues, misc.</title>
		<link>http://www.gijsk.com/blog/2008/05/sightcity-frankfurt-chatzilla-release-privacy-venkman-issues-misc/</link>
		<comments>http://www.gijsk.com/blog/2008/05/sightcity-frankfurt-chatzilla-release-privacy-venkman-issues-misc/#comments</comments>
		<pubDate>Wed, 14 May 2008 22:19:20 +0000</pubDate>
		<dc:creator>Gijs</dc:creator>
				<category><![CDATA[AI]]></category>
		<category><![CDATA[ChatZilla]]></category>
		<category><![CDATA[Mozilla]]></category>
		<category><![CDATA[University]]></category>
		<category><![CDATA[Venkman]]></category>

		<guid isPermaLink="false">http://www.gijsk.com/blog/?p=79</guid>
		<description><![CDATA[It&#8217;s been way too long since I posted anything here, for which I apologize. There are a couple of things that deserve mention here at the present time.
SightCity
I recently got back from visiting SightCity in Frankfurt am Main, Germany. The conference experience was excellent, and I had a great time with Steve, Ben and Marco, [...]]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s been way too long since I posted anything here, for which I apologize. There are a couple of things that deserve mention here at the present time.</p>
<h3>SightCity</h3>
<p>I recently got back from visiting <a title="SightCity conference website" href="http://www.sightcity.net/">SightCity</a> in Frankfurt am Main, Germany. The conference experience was excellent, and I had a great time with <a title="Steve's blog entry about the conference" href="http://eduspaces.net/stevelee/weblog/347641.html">Steve</a>, <a title="Ben's blog item, which is not complete yet" href="http://projectcerbera.com/blog/2008/05#day10">Ben</a> and <a href="http://www.marcozehe.de/2008/05/12/impressions-from-sightcity-2008-in-frankfurt-germany/">Marco</a>, all of whom have written more pleasantly and/or extravagantly about our experiences there than I ever could. So this is all you&#8217;re getting from me, here. <img src='http://www.gijsk.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<h3>ChatZilla Releases</h3>
<p>ChatZilla 0.9.82 was released, quickly followed by <a href="https://addons.mozilla.org/addon/16">ChatZilla 0.9.82.1</a> after a couple of nasty regressions. Almost all of the releases&#8217; features and fixes fall squarely into the &#8220;polish&#8221; bin (eg. dragging tabs for channels named only &#8220;#&#8221; now works, and doubleclicking a user in the userlist opens a query tab, some minor accessibility and localizability fixes, etc.), except for one: CEIP, short for Customer Experience Improvement Program. Customer not being very apt, I suppose, but it&#8217;s a standard name for what is essentially a data collecting tool.</p>
<p>Data collecting?! Yes, data collecting. I wrote a <a href="https://addons.mozilla.org/en-US/firefox/addons/policy/0/16">Privacy Policy</a> about what we do. Please read it first, before flaming me/us. Really, read it &#8211; it&#8217;s quite short! As you will have read by now, I hope, we ask first if it would be OK to collect anonymous statistics. Without consent, ChatZilla doesn&#8217;t save anything you do, nor (consequently) does anything get sent. We never collect anything personal, and both in the policy and in the UI, which is accessible from the Help menu in ChatZilla, we indicate a bunch of things we specifically won&#8217;t collect. So what can we collect, then, and how is it useful? Well, examples include the length of sessions (do people run ChatZilla for days at a time without interruption, or only five minutes?) and how tabs are handled. We can already, after just a few days, <a href="http://twpol.dyndns.org/temp/cz_ceip/report.html#views_for_command__delete_view_">see</a> that many people seem to be closing lots of network tabs, which may lead us to prioritize <a name="b249188" href="https://bugzilla.mozilla.org/show_bug.cgi?id=249188">bug 249188</a>, for instance.</p>
<p>So I hope that this post helps clarify that we&#8217;re not turning evil. If you disagree, and had already turned it on, you&#8217;re free to turn it off again, at your leasure. Do let us know what you think we&#8217;re doing wrong, though.</p>
<h3>Venkman trunk issue</h3>
<p>If you&#8217;re using Venkman with a Gecko trunk product (eg. Firefox 3 RC1, <span style="text-decoration: line-through;">Thunderbird</span> Shredder 3.0a1, &#8230;) you may have found that viewing source code stopped working a while ago. This happened because of a change in the way unprivileged content, like the source view itself (which is plain old HTML) is allowed to access chrome content (like the stylesheet for the source view, unfortunately). Fixing it properly is not trivial. Right now, I have suggested a more or less <a href="https://bugzilla.mozilla.org/attachment.cgi?id=319775">wallpaper fix</a>, because I am too busy to do something nicer, and it doesn&#8217;t seem like anyone else is willing to go and fix it instead. This basically allows unprivileged content to access the chrome content again. A better solution would be to channel the stylesheet through the jsd protocol. If anyone wants to step up to the plate and fix that, that&#8217;d be awesome. In the meantime, the wallpaper patch is waiting for review. If you&#8217;re in need of a working Venkman, I uploaded an <a href="https://bugzilla.mozilla.org/attachment.cgi?id=320603">XPI</a> to <a href="https://bugzilla.mozilla.org/show_bug.cgi?id=428848">bug 428848</a>.</p>
<h3>Misc</h3>
<p>I&#8217;m nearing the end of my BSc degree. I&#8217;m working on my thesis at the moment, and finishing off the two courses that remain. Perhaps I&#8217;ll write more about the thesis once I have something I can demo or screenshot in-action. For now, I&#8217;d just like to happily announce that I was conditionally accepted into the 1 year MSc Advanced Computing course at <a href="http://www.imperial.ac.uk/">Imperial College</a>, London. So, if you know of a good place for a grad student to live in central London (South Kensington), let me know!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.gijsk.com/blog/2008/05/sightcity-frankfurt-chatzilla-release-privacy-venkman-issues-misc/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>ChatZilla 0.9.80 released</title>
		<link>http://www.gijsk.com/blog/2008/01/chatzilla-0980-released/</link>
		<comments>http://www.gijsk.com/blog/2008/01/chatzilla-0980-released/#comments</comments>
		<pubDate>Sun, 13 Jan 2008 21:45:15 +0000</pubDate>
		<dc:creator>Gijs</dc:creator>
				<category><![CDATA[ChatZilla]]></category>
		<category><![CDATA[Mozilla]]></category>

		<guid isPermaLink="false">http://www.gijsk.com/blog/2008/01/chatzilla-0980-released/</guid>
		<description><![CDATA[ChatZilla 0.9.80 is now available from addons.mozilla.org and the homepage.
Notable new features include:

Draggable chat tabs.
Automatically going /away when your OS indicates you&#8217;ve been idle. (the timeout for this is configurable, but unfortunately this feature is only available on newer Gecko 1.9 builds, so newer XULRunners or Firefox 3 alpha, beta, or nightly builds)
Proper handling of [...]]]></description>
			<content:encoded><![CDATA[<p>ChatZilla 0.9.80 is now available from <a href="https://addons.mozilla.org/addon/16">addons.mozilla.org</a> and the <a href="http://chatzilla.hacksrus.com/">homepage</a>.</p>
<p>Notable new features include:</p>
<ul>
<li><a href="https://bugzilla.mozilla.org/show_bug.cgi?id=194913">Draggable chat tabs</a>.</li>
<li><a href="https://bugzilla.mozilla.org/show_bug.cgi?id=382085">Automatically going /away</a> when your OS indicates you&#8217;ve been idle. (the timeout for this is configurable, but unfortunately this feature is only available on newer Gecko 1.9 builds, so newer XULRunners or Firefox 3 alpha, beta, or nightly builds)</li>
<li>Proper handling of <a href="https://bugzilla.mozilla.org/show_bug.cgi?id=379087">WALLOPS</a> and <a href="https://bugzilla.mozilla.org/show_bug.cgi?id=347456">mode prefixed</a> (such as op-only) messages.</li>
<li><a href="https://bugzilla.mozilla.org/show_bug.cgi?id=315913">Better userlist implementation</a> (which will no longer lose as much state when you switch tabs back and forth).</li>
<li><a href="https://bugzilla.mozilla.org/show_bug.cgi?id=406786">Bugzilla comment linking</a> (in addition to bug linking which we already did).</li>
<li><a href="https://bugzilla.mozilla.org/show_bug.cgi?id=396156">Warn</a> before doing a /list.</li>
</ul>
<p>Notable fixed bugs include:</p>
<ul>
<li><a href="https://bugzilla.mozilla.org/show_bug.cgi?id=409535">Some</a> <a href="https://bugzilla.mozilla.org/show_bug.cgi?id=410107">style</a> parsing bugs.</li>
<li>A <a href="https://bugzilla.mozilla.org/show_bug.cgi?id=408596">major accessibility issue</a> in the Options/Preferences window.</li>
<li><a href="https://bugzilla.mozilla.org/show_bug.cgi?id=388155">Various</a> <a href="https://bugzilla.mozilla.org/show_bug.cgi?id=408527">small</a> <a href="https://bugzilla.mozilla.org/show_bug.cgi?id=408357">polish</a> <a href="https://bugzilla.mozilla.org/show_bug.cgi?id=403690">fixes</a> which were really annoying people.</li>
</ul>
<p>There is a <a href="https://bugzilla.mozilla.org/buglist.cgi?bug_id=194913%2C271989%2C315913%2C343865%2C347456%2C350996%2C379087%2C382085%2C386222%2C388155%2C393367%2C396156%2C402533%2C403690%2C406786%2C406944%2C407490%2C407529%2C408357%2C408527%2C408596%2C409535%2C410107%2C410974%2C411013%2C411016&amp;field-1-0-0=bug_id&amp;query_format=advanced&amp;remaction=&amp;type-1-0-0=anyexact&amp;value-1-0-0=194913%2C271989%2C315913%2C343865%2C347456%2C350996%2C379087%2C382085%2C386222%2C388155%2C393367%2C396156%2C402533%2C403690%2C406786%2C406944%2C407490%2C407529%2C408357%2C408527%2C408596%2C409535%2C410107%2C410974%2C411013%2C411016&amp;order=map_assigned_to.login_name%2Cbugs.bug_id">full list</a> for the curious among you.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.gijsk.com/blog/2008/01/chatzilla-0980-released/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>ChatZilla, now with extra cool</title>
		<link>http://www.gijsk.com/blog/2007/12/chatzilla-now-with-extra-cool/</link>
		<comments>http://www.gijsk.com/blog/2007/12/chatzilla-now-with-extra-cool/#comments</comments>
		<pubDate>Sat, 22 Dec 2007 00:41:30 +0000</pubDate>
		<dc:creator>Gijs</dc:creator>
				<category><![CDATA[ChatZilla]]></category>
		<category><![CDATA[Mozilla]]></category>
		<category><![CDATA[Personal]]></category>

		<guid isPermaLink="false">http://www.gijsk.com/blog/2007/12/chatzilla-now-with-extra-cool/</guid>
		<description><![CDATA[Thanks to Silver&#8217;s hard work, current ChatZilla trunk now features draggable tabs! Due to a slightly older patch the userlist is now much faster, and there&#8217;s some other API backend work going on to make things (even) more stable, fast and usable. Don&#8217;t hesitate to grab a nightly build and try things out!  As always, [...]]]></description>
			<content:encoded><![CDATA[<p>Thanks to <a href="http://twpol.dyndns.org/weblog">Silver</a>&#8217;s hard work, current <a href="http://mxr.mozilla.org/source/seamonkey/extensions/irc">ChatZilla trunk</a> now features <a href="https://bugzilla.mozilla.org/show_bug.cgi?id=194913">draggable tabs</a>! Due to a slightly older patch the <a href="https://bugzilla.mozilla.org/show_bug.cgi?id=315913">userlist is now much faster</a>, and there&#8217;s some other API backend work going on to make things (even) more stable, fast and usable. Don&#8217;t hesitate to grab a <a href="http://twpol.dyndns.org/mozilla/chatzilla/nightly/">nightly build</a> and try things out!  As always, <a href="https://bugzilla.mozilla.org/">bugzilla</a> is there for your bugfiling needs.</p>
<p>In other news, I will be away until January 2nd, I&#8217;m off to <a href="http://www.taize.fr/en_rubrique45.html">Taizé&#8217;s European Meeting in Geneva</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.gijsk.com/blog/2007/12/chatzilla-now-with-extra-cool/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Junk</title>
		<link>http://www.gijsk.com/blog/2007/04/junk/</link>
		<comments>http://www.gijsk.com/blog/2007/04/junk/#comments</comments>
		<pubDate>Sun, 29 Apr 2007 18:56:37 +0000</pubDate>
		<dc:creator>Gijs</dc:creator>
				<category><![CDATA[AI]]></category>
		<category><![CDATA[ChatZilla]]></category>
		<category><![CDATA[Mozilla]]></category>
		<category><![CDATA[Personal]]></category>
		<category><![CDATA[University]]></category>

		<guid isPermaLink="false">http://www.gijsk.com/blog/2007/04/junk/</guid>
		<description><![CDATA[List of things on my mind, because I can&#8217;t be bothered (and don&#8217;t think you guys can) with separate posts for each of them.

Trying to find time to co-write a paper and to get it accepted for a student conference on AI in Utrecht.
Trying to find time to modify a paper on Ethics (specifically, Moral [...]]]></description>
			<content:encoded><![CDATA[<p>List of things on my mind, because I can&#8217;t be bothered (and don&#8217;t think you guys can) with separate posts for each of them.</p>
<ul>
<li>Trying to find time to co-write a paper and to get it accepted for a <a href="http://www.ai.rug.nl/~nsvki/sc/">student conference on AI in Utrecht</a>.</li>
<li>Trying to find time to modify a paper on Ethics (specifically, <a href="http://en.wikipedia.org/wiki/Moral_Relativism">Moral Relativism</a>) that I wrote some time ago and submit that to &#8217;something&#8217; Dutch / UvA.</li>
<li>Doing regular coursework, which involves
<ul>
<li>reading about 200-300 pages every week</li>
<li>writing summaries and questions for speakers on the subjects for all of them</li>
<li>working on a project with students from <a href="http://www.stanford.edu/">Stanford University</a> and a Fortune 500 company in the tech industry. Can&#8217;t say much more than that, though for once it doesn&#8217;t involve engineering.</li>
<li>writing language processing tools in <a href="http://www.python.org">Python</a>.</li>
<li>trying to catch up with lost classes from last <em>block</em> about Statistics and Stochastics.</li>
<li>writing knowledge processing tools and representations using <a href="http://www.swi-prolog.org">Prolog</a> and <a href="http://en.wikipedia.org/wiki/Web_Ontology_Language">OWL</a>.</li>
</ul>
</li>
<li>Working on my Mozilla project. I meant to write about this earlier, but the <a href="http://www.mozilla.org/foundation/">Mozilla Foundation</a> has sponsored me to work on making the <a href="http://chatzilla.hacksrus.com/">ChatZilla IRC client</a> <a href="http://en.wikipedia.org/wiki/Accessibility">accessible</a> (as is clear from that link, it also needs a better website, we&#8217;re working on that on the sidelines). In fact, I have a conference call concerning that starting in 10 minutes, so I&#8217;d better finish this up.</li>
<li>Working on <a href="https://bugzilla.mozilla.org/show_bug.cgi?id=346849">other</a> <a href="https://bugzilla.mozilla.org/show_bug.cgi?id=298705">Mozilla-related</a> <a href="https://bugzilla.mozilla.org/show_bug.cgi?id=372453">issues</a></li>
<li>Trying to get some work done on some other Firefox extensions of mine.</li>
<li>Figuring out what university I&#8217;d like to attend for my MSc.</li>
<li>Visiting <strike>junks</strike> drug and alcohol addicts. We need to stop calling people garbage &#8211; things are garbage (see also the post title) but people never should be. Also, Amsterdam is strange in the sense that I just went to a church service done by the Drug section of the pastoral care (not sure if that&#8217;s the right way of putting it in English) and atop of us (ie, in the room above us) some snobby people were having champagne, for the opening of some exhibition or whatever. Stark contrast&#8230;</li>
</ul>
<p>That will do for now. Off to that conference call!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.gijsk.com/blog/2007/04/junk/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Status Update: Mozilla</title>
		<link>http://www.gijsk.com/blog/2007/02/status-update-mozilla/</link>
		<comments>http://www.gijsk.com/blog/2007/02/status-update-mozilla/#comments</comments>
		<pubDate>Tue, 13 Feb 2007 16:32:17 +0000</pubDate>
		<dc:creator>Gijs</dc:creator>
				<category><![CDATA[ChatZilla]]></category>
		<category><![CDATA[Chrome List]]></category>
		<category><![CDATA[Mozilla]]></category>
		<category><![CDATA[Show Menubar]]></category>

		<guid isPermaLink="false">http://www.gijsk.com/blog/2007/02/status-update-mozilla/</guid>
		<description><![CDATA[I haven&#8217;t really written anything of late, so let&#8217;s fix that. Bullet points in topic-centered posts. Here we go:

I will be attending FOSDEM, in Brussels, Belgium, arriving friday (february 23rd), leaving sunday (25th). I will be staying at the NH Stephanie.
Thanks the Mozilla Foundation&#8217;s sponsoring, I will also be attending the CSUN Conference, in Los [...]]]></description>
			<content:encoded><![CDATA[<p>I haven&#8217;t really written anything of late, so let&#8217;s fix that. Bullet points in topic-centered posts. Here we go:</p>
<ul>
<li>I will be attending <a href="http://www.fosdem.org/2007/" title="FOSDEM Website">FOSDEM</a>, in Brussels, Belgium, arriving friday (february 23rd), leaving sunday (25th). I will be staying at the <a href="http://www.nh-hotels.com/nh/nl/hotels/belgie/brussel/nh-stephanie.html">NH Stephanie</a>.</li>
<li>Thanks the <a href="http://www.mozilla.org/">Mozilla Foundation</a>&#8217;s sponsoring, I will also be attending the <a href="http://www.csun.edu/cod/conf/" title="CSUN Conference Website">CSUN Conference</a>, in Los Angeles, CA. I will be staying at one of the conference hotels (room&#8217;s booked) from Saturday (march 17th) to Saturday (24th). If you&#8217;re in the area and want me to say hi, send mail. (I&#8217;ll be arriving late and I&#8217;ll probably knackered from flying for 17 hours or so, so don&#8217;t count on me being approachable before sunday/monday at least)</li>
<li>I have finally released some of my extension stuff which in some cases I&#8217;ve been sitting on for something like a year now. I thought I&#8217;d better start putting some of it online <a href="http://quotes.burntelectrons.org/1753" title="Mozilla IRC Quote DB">lest I become another Hurd</a>. For now, these are:
<ul>
<li><a href="http://www.gijsk.com/mozilla/chromelist/">Chrome List</a>, which allows you to browse chrome:// urls as if they were a normal file tree. This is also up on the <a href="https://addons.mozilla.org/firefox/4453/">Mozilla Addons</a> site.</li>
<li><a href="http://www.gijsk.com/mozilla/showmenubar/">Show Menubar</a>, which adds a contextmenu item for windows without a menubar to show the menubar anyway. This is handy-dandy if you need to change character sets, print, or if it&#8217;s the only Firefox window you still have open. I haven&#8217;t submitted this one to the Mozilla Addons site yet because I only wrote it the day before yesterday and <a href="https://addons.mozilla.org" title="Addons [dot] Mozilla [dot] Org">AMO</a> (as it&#8217;s known to the insiders) <a href="http://blog.mozilla.com/webdev/2007/02/12/amo-v3-remora-launch-delayed-24-hours/">will be updated soon</a>.</li>
</ul>
</li>
<li>I should probably put my Graphing Calculator extension online as well, but I think there are alternatives for that by now, and it might not be worth putting there anyway (it can also be slow, and I&#8217;ve always been too lazy to create a preference panel for anything I write, meaning it lacks GUI for some of its options).</li>
<li>I <a href="https://bugzilla.mozilla.org/show_bug.cgi?id=343416" title="Bug 343416 - Implement nsIIdleService, service to get the amount of time a user has been idle">wrote</a> my first <a href="http://developer.mozilla.org/en/docs/XPCOM">XPCOM</a> <a href="http://lxr.mozilla.org/seamonkey/source/widget/public/nsIIdleService.idl" title="nsIIdleService Interface Definition">interface</a>, and wrote <a href="http://lxr.mozilla.org/seamonkey/source/widget/src/windows/nsIdleServiceWin.cpp" title="Windows Implementation">Windows</a> and <a href="http://lxr.mozilla.org/seamonkey/source/widget/src/gtk2/nsIdleServiceGTK.cpp" title="GTK Implementation">GTK2</a> implementations for it.</li>
<li>I wrote a small <a href="http://www.gijsk.com/mozilla/chatzilla/tutorials/tunneling.php">ChatZilla tutorial on SSH Tunneling</a>. This is the first tutorial I&#8217;ve written, and it still needs pretty screenshots. Other than that I&#8217;m happy about it.</li>
<li>There&#8217;s some ChatZilla things I desperately need to finish, but have been too busy/lazy to. I will try to get to them this week (but I&#8217;m not telling you what I mean by &#8216;them&#8217;, so don&#8217;t get too hopeful just yet). There&#8217;s also, hopefully, another announcement in that respect due &#8217;soon&#8217;, but I&#8217;m going to keep my mouth shut on that for now.</li>
</ul>
<p>I think that&#8217;s about it. If anyone/anything feels left out, poke me. I won&#8217;t bite.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.gijsk.com/blog/2007/02/status-update-mozilla/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>For the new visitors (and the existing ones, should they care)</title>
		<link>http://www.gijsk.com/blog/2006/05/for-the-new-visitors-and-the-existing-ones-should-they-care/</link>
		<comments>http://www.gijsk.com/blog/2006/05/for-the-new-visitors-and-the-existing-ones-should-they-care/#comments</comments>
		<pubDate>Mon, 01 May 2006 18:03:48 +0000</pubDate>
		<dc:creator>Gijs</dc:creator>
				<category><![CDATA[ChatZilla]]></category>
		<category><![CDATA[Fluff]]></category>
		<category><![CDATA[Mozilla]]></category>

		<guid isPermaLink="false">http://gijs.codingo.org/blog/2006/05/for-the-new-visitors-and-the-existing-ones-should-they-care/</guid>
		<description><![CDATA[Apologies for the lack of any real substance. It&#8217;ll hopefully get better soon. Or something  .
Meanwhile, I just noticed I missed the deadline I&#8217;d set myself, since we&#8217;re stuck at 119 bugs filed for ChatZilla, and I still haven&#8217;t finished the damn message filter thing. Well, at least I have a usable build with [...]]]></description>
			<content:encoded><![CDATA[<p>Apologies for the lack of any real substance. It&#8217;ll hopefully get better soon. Or something <img src='http://www.gijsk.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> .</p>
<p>Meanwhile, I just noticed I missed the deadline I&#8217;d set myself, since we&#8217;re stuck at 119 bugs filed for ChatZilla, and I still haven&#8217;t finished the damn message filter thing. Well, at least I have a usable build with the filter squirmed into __display, so I guess we&#8217;re going places. Hopefully.</p>
<p>Ah, also&#8230; if you check out my location, and use the Sattelite view, you&#8217;ll notice there&#8217;s blank land there. That&#8217;s because my home has only been there since July last year (though construction was underway before that, obviously) and the sattelite photos aren&#8217;t all that recent, apparently. If you scroll down a tiny bit though, you can spot a Russian sub in the harbour. No idea what it&#8217;s doing there, it&#8217;s been there since I first came here, and it doesn&#8217;t look like it&#8217;s going anywhere soon.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.gijsk.com/blog/2006/05/for-the-new-visitors-and-the-existing-ones-should-they-care/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Good new year&#8217;s resolutions</title>
		<link>http://www.gijsk.com/blog/2006/01/good-new-years-resolutions/</link>
		<comments>http://www.gijsk.com/blog/2006/01/good-new-years-resolutions/#comments</comments>
		<pubDate>Mon, 23 Jan 2006 21:56:19 +0000</pubDate>
		<dc:creator>Gijs</dc:creator>
				<category><![CDATA[ChatZilla]]></category>
		<category><![CDATA[Mozilla]]></category>

		<guid isPermaLink="false">http://gijs.codingo.org/blog/2006/01/good-new-years-resolutions/</guid>
		<description><![CDATA[[29-12-2005 23:12]  &#60;Hannibal&#62; before may 1st, land 0.9.68.x stuff so we finally lose the code split, have &#60; 100 bugs and fix the display filter bug.
[29-12-2005 23:12] *Hannibal thinks that should be quite enough to be going on with  

 Bug 299458 is now fixed. That leaves the &#60; 100 bugs one and [...]]]></description>
			<content:encoded><![CDATA[<p>[29-12-2005 23:12]  &lt;Hannibal&gt; before may 1st, land 0.9.68.x stuff so we finally lose the code split, have &lt; 100 bugs and fix the display filter bug.<br />
[29-12-2005 23:12] *Hannibal thinks that should be quite enough to be going on with<span class="chatzilla-emote-txt"> <img src='http://www.gijsk.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </span></p>
<p><a target="_blank" title="Land 0.9.69 changes on trunk"><br />
</a> <a href="https://bugzilla.mozilla.org/show_bug.cgi?id=299458">Bug 299458</a> is now fixed. That leaves the &lt; 100 bugs one and the filter bug.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.gijsk.com/blog/2006/01/good-new-years-resolutions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The happiest I&#8217;ve ever been when looking at a</title>
		<link>http://www.gijsk.com/blog/2005/12/the-happiest-ive-ever-been-when-looking-at-a-buglist/</link>
		<comments>http://www.gijsk.com/blog/2005/12/the-happiest-ive-ever-been-when-looking-at-a-buglist/#comments</comments>
		<pubDate>Wed, 28 Dec 2005 21:56:21 +0000</pubDate>
		<dc:creator>Gijs</dc:creator>
				<category><![CDATA[ChatZilla]]></category>
		<category><![CDATA[Mozilla]]></category>

		<guid isPermaLink="false">http://gijs.codingo.org/blog/2005/12/the-happiest-ive-ever-been-when-looking-at-a-buglist/</guid>
		<description><![CDATA[119 Open Bugs
Done!
]]></description>
			<content:encoded><![CDATA[<p><a href="https://bugzilla.mozilla.org/buglist.cgi?query_format=advanced&#038;component=ChatZilla&#038;bug_status=UNCONFIRMED&#038;bug_status=NEW&#038;bug_status=ASSIGNED&#038;bug_status=REOPENED">119 Open Bugs</a></p>
<p>Done!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.gijsk.com/blog/2005/12/the-happiest-ive-ever-been-when-looking-at-a-buglist/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
