<?xml version="1.0" encoding="utf-8" ?><?xml-stylesheet type="text/css" href="https://www.earthli.com/resources/styles/rss.css" ?><rss version="2.0">
  <channel>
    <docs>http://www.rssboard.org/rss-specification</docs>
    <generator>earthli News 3.7</generator>
    <language>en-us</language>
    <ttl>720</ttl>
    <title><![CDATA[earthli.com &gt; earthli News 3.7]]></title>
    <link>https://www.earthli.com/news/</link>
    <pubDate>Sun, 19 Dec 2021 12:16:19 +0100</pubDate>
    <lastBuildDate>Sun, 19 Dec 2021 12:16:19 +0100</lastBuildDate>
    <image>
      <link>https://www.earthli.com/news/</link>
      <title><![CDATA[earthli.com &gt; earthli News 3.7]]></title>
      <url>https://www.earthli.com/news/icons/webcore_png/app/news_100px.png</url>
    </image>
    <description><![CDATA[New sections, new functionality, and other work are announced in this
forum. The posts are listed on the earthli.com home page.
]]></description>
    <copyright><![CDATA[Copyright (c) 1999-2026 earthli.com. All Rights Reserved.]]></copyright>
  <item>
    <guid>https://www.earthli.com/news/view_article.php?id=4384</guid>
    <title><![CDATA[earthli.com moves to HostFactory]]></title>
    <link>https://www.earthli.com/news/view_article.php?id=4384</link>
    <pubDate>Sun, 19 Dec 2021 12:16:19 +0100</pubDate>
    <description><![CDATA[Published by marco on 19. Dec 2021 12:16:19
------------------------------------------------------------------------

After 16 years hosted at "Encodo Systems" <https://encodo.com>, earthli has
moved from an Ubuntu VM to Web Hosting at "HostFactory"
<https://www.hostfactory.ch/>.

The move went very smoothly, although there are always a bunch of things to
remember, especially when you haven't changed servers for a long time -- and
especially when changing from a dedicated VM/server to shared web hosting.
Thankfully, web hosting is a great fit for earthli because a dedicated server is
quite expensive, starting at about CHF35.-/month. I took a look at cloud-based
solutions and they very quickly rose into the same ballpark.

[Features]

Hostfactory offers:

  * Apache/PHP (7.3/8.x)
  * Unlimited MySql/Maria databases (I only need two)
  * 50GB of storage space (does not include database or Git repository space)
  * Unlimited Git repositories
  * 20 domain accounts (I only need one)
  * Unlimited traffic
  * Integrated SSL (LetsEncrypt)
  * SSH access (so I'd have scp for upload/download and shell access for stuff
    like mysql or moving files)
  * Unlimited Emails (probably don't need this, as I'm running earhtli.com mail
    through "Protonmail" <https://protonmail.com>)
  * Backups
  * 30-day free testing (I'm all set up and haven't signed up yet...)
  * Excellent and very responsive support. I've gotten answers within minutes
    and even got an answer on a Sunday.

[Requirements]

What does earthli.com need?

  * PHP 7.2 or higher (that's the version I'd tested; I'm on 7.3 now, will
    probably migrate to 8.0 soon)
  * Modules:
    * EXIF
    * GD
    * Mysqli
    * Zip
    Git repos to store the earthli-webcore and earthli.com repos for easy
    deployment
  * MySQL databases (two of them)
  * At least 10GB of storage
  * .htaccess support (for securing folders)

[Anything missing?]

What has changed?

  * data.earthli.com [1] is no longer available. Use www.earthli.com/data
    instead
  * dev.earthli.com [2] is no longer available. Use www.earthli.com instead.

[Drawbacks?]

Are there any drawbacks to HostFactory? No, not really.

Getting used to a hosted environment was a good learning experience. I no longer
have full control of the server, but I also no longer have full responsibility
for setting everything up in a secure manner. PHP is set up to run more
efficiently, with caching, and with maximal security (using Fast-CGI now instead
of Apache modules). I have control over most PHP settings I need, but had to
contact support to have them set my include_path for me.

They do a great job of that, including a WAF (Web Application Firewall), which
has some pretty aggressive rules. For example, I tried to post an update to an
article that had the word "sexual" in it and was rejected. I contacted support
and was told about an IP-white-listing feature. After white-listing myself, it
worked immediately.

This is fine, but I worried about how well the solution scales. After a quick
discussion with support, it turns out that the (non-security-relevant) rules can
be individually tuned, should that be necessary. I don't think it's necessary
yet, but it's good to know that it's an option if IP-white-listing proves to be
insufficient for my needs.

So far, so good! 👍 

--------------------------------------------------------------------------------


[1] I could have added the sub-domain at HostFactory and added a Rewrite rule to
    redirect to the new location. I didn't do that because I'm not really
    interested in people continuing to use that sub-domain to access data.


[1] I'm no longer maintaining a separate "dev" instance online. I used to do
    this because it was one of the only ways to test that a newer version was
    actually working as expected on the same version as is running on the
    server. However, now that I'm using Docker for local development, I've got
    the same environment locally as on the server, so there are no surprises
    anymore. If there were to be a surprise, then I could easily roll back the
    change because I use Git for all deployment.

]]></description>
  </item>
  <item>
    <guid>https://www.earthli.com/news/view_article.php?id=4251</guid>
    <title><![CDATA[Earthli now uses the UTF8 encoding 🍾]]></title>
    <link>https://www.earthli.com/news/view_article.php?id=4251</link>
    <pubDate>Sun, 02 May 2021 22:52:20 +0200</pubDate>
    <description><![CDATA[Published by marco on 2. May 2021 22:52:20
------------------------------------------------------------------------

Earthli started out in 1997 on an Apache 1.2.x server running on a Windows
desktop in my office cubicle in New York. I set it up at the time with PHP 2.x
and MySQL 3.x.

[History]

The default encoding at the time was to use the latin1 character set, which
mapped to Windows-1252 and roughly corresponds to ANSI, which is somewhat
standardized, but is platform-dependent for some characters (hence the moniker).

Over the years, I migrated to PHP 3.x, then 4.x. The migration to 5.x was a lot
of work because they changed the entire reference/copy semantics. From there,
though the upgrade to 7.2.x was relatively easy. The jump to 8.x shouldn't pose
too many issues, either. [1] 

The move through MySql versions to the current 5.7.33 and Apache versions to the
current 2.4.29, all running on Ubuntu 18.04 was more or less without incident.

[Fixing the Encoding]

One last vestige of that original setup was the encoding. I'd opened an issue
called "Add support for UTF8 as the default encoding"
<https://www.earthli.com/projects/view_job.php?id=2084> almost 8 years ago, but
never found the time or inspiration to actually make the change.

I did end up making some workarounds for missing characters, but it was always
less work to just add another one. See the section on "proprietary markup"
below.

You have to be careful when changing encodings, making the sure that the tool
that makes the conversion is aware of both the source and target encodings. You
have to be dead-certain of the source encoding or the conversion will not
succeed. You'll end up with garbled characters.

The earthli database isn't large by any enterprise standards, but it does
contain almost 27k pictures and almost 4k articles [2], some of them quite long.
There is a lot of text, created with various browsers and tools over almost a
quarter of a century.

A search online for tips on converting to UTF-8 turned up a lot of useless
advice for older versions or based on an inadequate understanding of encodings
or the available tools.

Luckily, my database dump was already in UTF-8, but it contained SQL commands to
use the latin1 collation instead of utf8 or, to be more precise, utf8mb4 (which
is the version of UTF8 that supports 4-byte characters, e.g. 🧐). With utf8,
you can store anything you want in MySql other than emojis. It's unclear why
they have two formats, but MySql has always had its idiosyncrasies. [3]

[Converting "earthli's proprietary markup"
<https://www.earthli.com/news/text_formatting.php>]

The most fiddly bit I had to deal with was actually optional and involved
converting some of the ad-hoc character combinations that I'd added to my markup
language in order to use characters not supported in the latin1 encoding (e.g. I
would write Slavoj Žižek as "Slavoj Zizek). I used sed to replace these
character combinations. Obviously, no-one else uses these, but for the sake of
posterity -- and to serve as an example for other replacements -- here they are:


sed \
-e 's@(a_)@ā@g' \
-e 's@c@ç@g' \
-e 's@C@Ç@g' \
-e 's@(c-)@č@g' \
-e 's@(C-)@Č@g' \
-e 's@g@ğ@g' \
-e 's@i@ı@g' \
-e 's@I@İ@g' \
-e 's@(l-)@ł@g' \
-e 's@(L-)@Ł@g' \
-e 's@s@ş@g' \
-e 's@S@Ş@g' \
-e 's@(s-)@š@g' \
-e 's@(S-)@Š@g' \
-e 's@(u-)@ū@g' \
-e 's@z@ž@g' \
-e 's@Z@Ž@g' \
-e "s@(a\\\')@á@g" \
-e "s@(A\\\')@Á@g" \
-e "s@(C\\\')@Ć@g" \
-e "s@(n\\\')@ń@g" \
-e "s@(N\\\')@Ń@g" \
-e "s@(o\\\')@ő@g" \
-e "s@(O\\\')@Ő@g" \
earthli.sql > earthli_utf8.sql

I used @ as the separator character and had to escape the backslash twice (once
for sed and once for bash). Also, you have to use a different output file
because sed truncates the output before it does anything. If you use the same
file, then you just end up with an empty file. Neat.

It's not super-efficient, but it was done in a few seconds.

A bonus to doing these replacements for me is that a full-text search for
"Zizek" or "Žižek" now finds all articles where I mention the Slovenian
philosopher. That didn't work before because MySql was indexing "Zizek" instead.

[Working with the dump file]

If you need to open the dump file, be aware that the lines are very long. vim
does a good job of searching and editing and jumping to locations (e.g. +normal
15G25| jumps to line 15, column 25. nano can also find text ((-cmd) + W) pretty
well and quickly. Both edit the text without a problem, once you've found the
location you're interested in.

Desktop editors (e.g. Visual Studio Code or Sublime Text) and differs (e.g.
BeyondCompare) were mostly overwhelmed by both the file size and the line
lengths.

Luckily, I only ended up needing to make one edit to avoid an error creating an
index because the UTF-8 encoding considered "bugin" and "bügin" to be
equivalent.

[Commands]

I made most of the following changes from the command line, but made one change
using PHPMyAdmin.

Here's what I ended up doing:

<p>Dump the current database. MySQL dumps to UTF-8 by default and converts
   all text.


   mysqldump --user=earthli -p --add-drop-table earthli  > earthli.sql

   </p><p>Verify that the dump file is in UTF8 format. If it's not, then you can use
   iconv to change the encoding (example from "Wikipedia"
   <https://en.wikipedia.org/wiki/Iconv>):

iconv -f iso-8859-1 -t utf-8 <infile> -o <outfile>

   </p><p>Search/replace the character set for each table with the following
   command:


   sed -e 's@CHARSET=latin1@CHARSET=utf8mb4@g' earthli.sql > earthli_utf8.sql

   </p>
   1. Use PHPMyAdmin to change the default encoding for the database toutf8mb4 in the Operations pane for the database.Import the database.


   cat earthli_utf8.sql | mysql --user=earthli -p earthli

In PHP and the configuration, I made the following changes:

   1. Call mysqli_set_charset ($this->_connection, 'utf8mb4'); after opening the
      connection to the database
   2. Change the encoding in all generated pages by including the tag < meta
      charset="utf-8">
   3. Change the default charset in the Apache config files php_value
      default_charset UTF-8 (it's possible that this is already the default by
      now)

[Conclusion]

It took a bunch of research and preparation and nerves to dump, globally modify,
and re-import a database that contains the last quarter-century of my writing.
In the end, though, it wasn't even that much work and it went smoothly. As
always with encodings, it serves you well to understand exactly what you're
doing -- it often saves a lot of steps.

And, now, because I can: ✊🏼.

--------------------------------------------------------------------------------


[1] The zip functions will be removed in favor the object-based API.


[1] 2.6k of which are published ... I write a lot of drafts that I never end up
    publishing. Some of them are quite long, as well and serve as notes for
    myself.


[1] It's probably a legacy thing or a desire to provide an option that uses one
    less byte if you know you're not going to want emojis?

]]></description>
  </item>
  <item>
    <guid>https://www.earthli.com/news/view_article.php?id=3979</guid>
    <title><![CDATA[Earthli gets OpenGraph and Twitter metadata]]></title>
    <link>https://www.earthli.com/news/view_article.php?id=3979</link>
    <pubDate>Thu, 21 May 2020 23:11:35 +0200</pubDate>
    <description><![CDATA[Published by marco on 21. May 2020 23:11:35
Updated by marco on 22. May 2020 14:22:58
------------------------------------------------------------------------

Most tools that scrape web pages use the OpenGraph metadata embedded in web
pages. Some fall back to using the more general and older metadata tags, like
description or the <title> element, but this leads to a rather limited
embedding. Almost no-one extracts pictures from pages unless explicitly
requested to do so by metadata.

Until recently, earthli didn't include this metadata, leading to somewhat
substandard rendering of any links pasted to social media.

[Sample Metadata]

As an example, the article "NY Times Spelling Bee"
<https://www.earthli.com/news/view_article.php?id=3974> now includes the
following OpenGraph metadata:


<meta name="twitter:image" 
  content="https://.../forthwith.png" />
<meta property="og:url"
  content="https://...view_article.php?id=3974" />
<meta property="og:title" content="NY Times Spelling Bee" />
<meta property="og:type" content="website" />
<meta property="og:description" content="I recently 
wrote that Kath and I have a one-year streak going in the
NYT Crossword Puzzle. While that is still ongoing, 
we've also recently discovered a little gem 
called Spelling Bee. The concept is ..." />
<meta property="article:author" content="marco" />
<meta property="article:published_time"
  content="2020-05-16 20:39:52" />
<meta property="article:modified_time"
  content="2020-05-21 21:15:08" />
<meta property="og:image"
  content="https://.../forthwith.png" />
<meta property="og:image:width " content="2562" />
<meta property="og:image:height " content="1566" />

The same article also now has Twitter metadata:


<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:site" content="" />
<meta name="twitter:creator" content="@mvonballmo" />
<meta name="twitter:title" content="NY Times Spelling Bee" />
<meta name="twitter:description" content="I recently 
wrote that Kath and I have a one-year streak going in the
NYT Crossword Puzzle. While that is still ongoing,
we've also recently discovered a little gem
called Spelling Bee. The concept is ..." />

Twitter refuses to use any of the OpenGraph information, so you really need to
include both copies.

[Implementation]

Some of the properties aren't necessarily required, but it was easy enough to
generate them all from earthli's general facilities.

  * The "AUDITABLE"
    <https://www.earthli.com/software/webcore/docs/developer/webcore/obj/AUDITABLE.html>
    object provides the creator, creation date, and the last-modification date.
  * The "CONTENT_OBJECT"
    <https://www.earthli.com/software/webcore/docs/developer/webcore/obj/CONTENT_OBJECT.html>
    object provides the title and the description.
  * The "DRAFTABLE_ENTRY"
    <https://www.earthli.com/software/webcore/docs/developer/webcore/obj/DRAFTABLE_ENTRY.html>
    updates the creation date to the publication date for articles.
  * The "ATTACHMENT_HOST"
    <https://www.earthli.com/software/webcore/docs/developer/webcore/obj/ATTACHMENT_HOST.html>
    sets the image to the first attachment.
  * The "IMAGE_METRICS"
    <https://www.earthli.com/software/webcore/docs/developer/webcore/util/IMAGE_METRICS.html>
    provides size information for the default image
  * The "MUNGER_STRIPPER"
    <https://www.earthli.com/software/webcore/docs/developer/webcore/text/MUNGER_STRIPPER.html>
    extracts and formats text for the description so that it is legal HTML.
  * The "ALBUM"
    <https://www.earthli.com/software/webcore/docs/developer/albums/obj/ALBUM.html>
    sets the image to the main picture for the album, if available.
  * The "PICTURE"
    <https://www.earthli.com/software/webcore/docs/developer/albums/obj/PICTURE.html>
    sets the image to the picture's URL.

In addition, I added support for SOCIAL_PAGE_OPTIONS and introduced a method on
the data hierarchy called set_social_options(), which allows the data objects to
enrich the social options before they're formatted into the metadata area of the
page header. A page must enable the social options and explicitly request to
generate them, a feature I only enabled from the view_entry.php and
view_folder.php pages.

The results are shown below.

[Apple Messages]

Apple Messages uses the OpenGraph tags to make nicely formatted previews now.

[image][image][image]

[Facebook]

I haven't actually posted anything to Facebook, but was able to use the
Social-graph Testing tools to see how posts would look.

[image][image][image]

[Twitter]

I only tested articles with Twitter because I don't anticipate ever tweeting
photos or albums. The tweet is nicely formatted now, with or without an
attachment. Previously, Twitter displayed links to earthli as only a simple
title, with no description or image.

[image][image]

]]></description>
  </item>
  <item>
    <guid>https://www.earthli.com/news/view_article.php?id=3252</guid>
    <title><![CDATA[Earthli is now 100% responsive]]></title>
    <link>https://www.earthli.com/news/view_article.php?id=3252</link>
    <pubDate>Tue, 26 Apr 2016 23:19:21 +0200</pubDate>
    <description><![CDATA[Published by marco on 26. Apr 2016 23:19:21
Updated by marco on 27. Apr 2016 07:12:47
------------------------------------------------------------------------

Go ahead. Open earthli.com on a small-screen device. Get out your phone. I'll
wait.

Pretty cool, right?

I mean, it's not rocket science, but it involves no small amount of work to come
up with a design that works at both very wide and very narrow screens. Sure, I
could have used Bootstrap, but then "my site would look exactly like everyone
else's." <http://adventurega.me/bootstrap/> Also, earthli's stylesheets and
components are much simpler and easy to use than Bootstrap.

Not only that, but with the redesign and the continued focus on simplicity in
page design, semantic structure, etc., it turns out that earthli also does quite
well for accessibility.

[Home page]

The "home page" <https://www.earthli.com/> demonstrates the new responsive grids
and columns.

[image][image][image]

For this page, I've included samples taken from the Opera device emulator to
show that the responsiveness actually works for mobile devices now -- no more
scaling and zooming on your phone.

[image][image][image]

[News Index]

The "News home page" <https://www.earthli.com/news> demonstrates how I converted
the top-level navigation area to use responsive columns and how the articles are
now shown truncated to a limited length and in grids, instead of full-length and
in a single 900-pixel--wide column. At a standard resolution, the tile still
stretches across the whole page, but beyond that size, it switches to multiple
columns, to improve readability and use space more efficiently.

[image][image][image]

[Webcore Index]

The "WebCore index" <https://www.earthli.com/software/webcore> is a custom
section of earthli, with a column to each side, and a responsive grid in the
middle section. With just a handful of simple directives, the browser makes the
best use of the available space.

[image][image][image]

[Theme Settings]

The "theme settings page" <https://www.earthli.com/shared/settings.php> also
combines a lot of different elements: a responsive grid of content-sized tiles
for the theme thumbnails, a form with top-aligned labels and responsive width,
another form -- the test form below the fold, not shown in the screenshots --
which shows how the left-hand labels are moved to the top at smaller screen
widths.

This page also uses a smaller column on the left with a content area on the
right. These columns share the space in a given ratio at wider resolutions, but
are stacked at smaller screen widths.

[image][image][image][image]

[Read Article]

When you "read an article"
<https://www.earthli.com/news/view_article.php?id=3240>, it now makes much
better use of the space. In a standard size, the page looks about the same it
did without responsive design (where the page width was fixed at 900 pixels).
However, at smaller widths, the page collapses as expected.

The neat trick on this page is that at larger widths, the layout starts
splitting content into columns so that you never have to read really long lines.
The drawback to this approach is that, for longer articles, you have to manually
scroll back up to the top of the next column. However, I think that's more
acceptable than displaying text in 2000-pixel--wide paragraphs.

[image][image][image][image]

[Edit Article Form]

As mentioned above, the forms are also responsive: at smaller viewport widths,
the labels move from left-aligned to top-aligned automatically. Any form can now
be used on a small mobile device, limited only by the limitations of the device
rather than any forced layout in the form itself.

In this way, the form makes the best use of horizontal space, keeping the form
as vertically short as possible if there is screen space. If there is not, the
form uses more vertical space, but avoids horizontal scrolling. I think this is
a good trade-off.

Additionally, If you work on larger texts, there is a new full-screen editing
mode, that maximizes the preview area and editing areas to share the screen
equally.

[image][image][image]

[Albums Index]

And, finally, I've included a screenshot of the "Albums home page"
<https://www.earthli.com/albums>, to show off how it also makes maximal use of
the screen width, creating new columns as space allows rather than being
hard-coded to three columns, as it used to be.

[image]

[Conclusion]

I'm pretty happy to have gotten to this point with earthli, which turns ... 17
years old this year. Even after all that time, I've managed to keep it looking
relatively modern and based on modern technologies.

  * Everything is now HTTPS.
  * LESS-based single stylesheet with a consistent UX and VSG for the entire
    site
  * Simple, responsive design for all pages
  * Very good scores on mobile-friendliness from Google
  * Very good scores on accessibility from other sources

]]></description>
  </item>
  <item>
    <guid>https://www.earthli.com/news/view_article.php?id=3236</guid>
    <title><![CDATA[Earthli is now 100% HTTPS]]></title>
    <link>https://www.earthli.com/news/view_article.php?id=3236</link>
    <pubDate>Mon, 28 Mar 2016 17:13:08 +0200</pubDate>
    <description><![CDATA[Published by marco on 28. Mar 2016 17:13:08
------------------------------------------------------------------------

With the help of "Letsencrypt" <https://letsencrypt.org>, all of earthli.com is
now accessible only via HTTPS.

What does that mean?

  * For your day-to-day use of the site, nothing. Any data you send to or from
    earthli is now hidden from prying eyes.
  * All traffic is end-to-end encrypted between your browser and the earthli
    server. This includes your password, when you log in.
  * Although almost everything on earthli is still open to the public,
    encryption now truly protects areas that have restricted access.
  * It means your browser will show a little green or grey lock icon in the
    address bar next to the URL. [image]
  * If you click the lock, you can show the details for the certificate (shown
    below).

[image]

]]></description>
  </item>
  <item>
    <guid>https://www.earthli.com/news/view_article.php?id=3033</guid>
    <title><![CDATA[WebCore 3.5: new form styles]]></title>
    <link>https://www.earthli.com/news/view_article.php?id=3033</link>
    <pubDate>Fri, 12 Feb 2016 23:39:43 +0100</pubDate>
    <description><![CDATA[Published by marco on 12. Feb 2016 23:39:43
------------------------------------------------------------------------

"This is an old post that I never finished when I released "earthli WebCore 3.5"
<https://www.earthli.com/projects/view_release_change_log.php?id=88&show_description=0>
almost a year ago. The design analysis is still pretty relevant, as are the
conclusions about flexbox."

We released "version 3.4"
<https://www.earthli.com/projects/view_release_change_log.php?id=88&show_description=0>
of the "earthli WebCore" <https://www.earthli.com/projects/view_folder.php?id=6>
over a year ago, in June 2013. That release introduced a "new overall style"
<https://www.earthli.com/news/view_article.php?id=2843> that was both looked
more modern and also conformed to recent design/development standards. See that
article for more information about what would turn out to have been stage one of
two stages of a style update.

If you look at the "release notes for 3.5"
<https://www.earthli.com/projects/view_release_change_log.php?id=88&show_description=0>,
you'll note that almost all of the changes occurred in the rendering part of the
framework. In fairness, the issues don't even begin to cover it. What the
release actually contains is the following:

  * Removed all inline CSS styles from everywhere in the web site. Replaced
    everything with CSS classes, where needed.
  * Removed all explicit 100% widths from containers. CSS determines whether a
    container has its natural width or the default 100% width or another,
    smaller width
  * Grids, forms, calendars and column layouts no longer use tables for layout.
    The default CSS still uses table, table-row and table-cell display types but
    that is temporary. The only tables left are containers that really should be
    represented as tables.

The visual style is more consistent throughout, as you can see in the examples
below. Click the images to see specific notes.

[Home & Index Pages]

[image][image]The earthli home page and the product index pages have been
cleaned up, reduced and standardized. On these pages, icons have been reduced or
removed -- especially where they used to appear at the left, where they tended
to disturb the vertical text line. On the product index page, all toolbars were
combined into one single area.

[User Details]

[image][image]Pages common to all products have been spruced up. It's especially
noticeable on forms with a lot of controls. These are now very consistently
aligned where they'd fallen into disrepair before.

[Folder Permissions]

[image][image]Another common page is the permissions manager for folders. This
page doesn't look radically different at first, but if you compare the
screenshots more closely, you'll see a lot of improvements in consistency that
add up to a big improvement. The toolbar was consolidated and line-specific
commands were standardized.

[Calendar Chooser]

[image]And, finally, the old, old -- old --
calendar-chooser-in-a-separate-window has been replaced by an in-place calendar
control. It's not rocket science, but as a regular user of this control, I'm
glad to have gotten rid of the old, crufty version.

[Edit Article]

[image][image]I put the most customization into the relatively simple
article-editor, simply because I spend the majority of time there, editing blog
posts. The new version makes much better use of horizontal space -- without
using so much that line-length detracts from legibility. As with the other
forms, the edit-article form automatically picks up much better control and text
alignment.

[Inline Preview]

[image][image]The article editor also includes a side-by-side and non-refreshing
preview. Another Godsend for anyone who spends a lot of time editing longer
posts.

[Edit Job]

[image][image]In the earthli Projects, the job editor is one that shows a lot of
improvement after the upgrade. The design is much quieter, with less jagged
edges on the right to distract the eye. The code that builds this form is
essentially unchanged [1] -- the improvement came "for free" when I updated the
stylesheets.

[Edit Recipe]

[image]Even the relatively straightforward form in the recipe editor looks nicer
and automatically makes better use of horizontal space. There is no inline
preview yet, but the old server-round-trip preview is still serviceable for
these shorter texts.

[Edit Album]

[image]And, finally, the album editor shows how well the stylesheet maintains
both vertical and baseline alignment for many different types of controls.
Controls are aligned to an imaginary plumb line as are their labels (and
descriptions for radio buttons and checkboxes). In the case of text controls,
alignment to the text in the control was preferred to aligning to the border of
the control itself.

[Where to next?]

The next natural step is to use flexbox display in many other places, but
browsers are not quite ready for that yet. This is probably the last difficult
CSS rewrite that I will have to make, in which layout must still be made using
floating elements because too many browsers still have shaky flexbox support.

In two or three years, though, I'll be able to just switch out the display
styles and much more cleanly and easily define the form layout using flexbox
than the occasionally shaky and still unevenly support
margin/padding/float/relative-positioning solution that earthli currently uses.

--------------------------------------------------------------------------------


[1] I write "essentially" because I did make some code changes, but not to the
    structure. I changed code to remove inline and hard-coded styles so the form
    could "breathe" and assume the shape outlined by the stylesheet rather than
    forced in the code.

]]></description>
  </item>
  <item>
    <guid>https://www.earthli.com/news/view_article.php?id=1032</guid>
    <title><![CDATA[New Quake battles!]]></title>
    <link>https://www.earthli.com/news/view_article.php?id=1032</link>
    <pubDate>Sun, 05 Dec 2004 16:56:32 +0100</pubDate>
    <description><![CDATA[Published by marco on 5. Dec 2004 16:56:32
------------------------------------------------------------------------

I dug up some long-lost game logs from games nights here at Opus and generated
some stats for "Quake3"
<https://www.earthli.com/quake/pages/battles/q3a_opus/AEStats.html> and "Urban
Terror" <https://www.earthli.com/quake/pages/battles/ut_opus/AEStats.html>.
Unfortunately there are no dates in the logs, so there was no way to separate
individual evenings. Still, it shows just how pathetic dur is when there's
strategy involved (check out that UT rank!).

]]></description>
  </item>
  <item>
    <guid>https://www.earthli.com/news/view_article.php?id=1029</guid>
    <title><![CDATA[New earthli home page]]></title>
    <link>https://www.earthli.com/news/view_article.php?id=1029</link>
    <pubDate>Sun, 05 Dec 2004 13:16:30 +0100</pubDate>
    <description><![CDATA[Published by marco on 5. Dec 2004 13:16:30
Updated by marco on 5. Dec 2004 13:45:28
------------------------------------------------------------------------

The "earthli home page" <https://www.earthli.com/> has gotten a professional
makeover and should be more usable now. The poll has also finally been updated,
but it asks a rather obvious question.

]]></description>
  </item>
  <item>
    <guid>https://www.earthli.com/news/view_article.php?id=1021</guid>
    <title><![CDATA[earthli upgraded]]></title>
    <link>https://www.earthli.com/news/view_article.php?id=1021</link>
    <pubDate>Sun, 31 Oct 2004 23:50:18 +0100</pubDate>
    <description><![CDATA[Published by marco on 31. Oct 2004 23:50:18
------------------------------------------------------------------------

The entire web-site, though it may look exactly the same, is chugging along on a
new engine ("earthli WebCore 2.6" <https://www.earthli.com/software/webcore>).
It'll be in a beta stage for a bit, but most of the wrinkles should be smoothed
out soon enough.

There are more upgrades and changes planned for the near future  --  that will
change the look of the site a bit, but first, we've got to nail down the
foundation.

If you see any warnings or errors, please send them to me and I'll take care of
them right away.

Thanks,
Team earthli

]]></description>
  </item>
  <item>
    <guid>https://www.earthli.com/news/view_article.php?id=1006</guid>
    <title><![CDATA[Uploading pictures in earthli Albums]]></title>
    <link>https://www.earthli.com/news/view_article.php?id=1006</link>
    <pubDate>Sun, 12 Sep 2004 23:37:52 +0200</pubDate>
    <description><![CDATA[Published by marco on 12. Sep 2004 23:37:52
Updated by marco on 14. Nov 2004 17:28:46
------------------------------------------------------------------------

Here are a few tips for uploading pictures to the earthli server.

Now that everybody's got a great digital camera that takes super hi-res pictures
in super high quality, we've got pictures that are too big to display and take
too long to upload and download.

[The problem]

Your camera will typically take a picture at 1600 x 1200 with a JPEG compression
of 90-95% (if you've set high quality).

That results in pictures that are anywhere from 500KB to 700KB. My camera takes
them even bigger and stores pictures up to 900KB in size.

There's a few things wrong here:

   1. 1600 x 1200 is way too big to display on screen. Most of you have album
      options that constrain the picture size to 640 x 480 so it doesn't make
      huge scroll bars all over the place. If you click the picture, it shows in
      full size and then you've got massive scroll bars anyway.
   2. 500KB+ per picture is too big for my server. I don't have unlimited space
      and we should aim to keep pictures at a reasonable size (big enough for
      nice online quality, but no bigger).
   3. Huge pictures will just take longer to download and make your albums look
      slow ... all for quality that a web browser can't display anyway.

Now you ask...

[How can I fix this?]

When you upload, you should first work on the pictures a bit to get them into
postable format (i.e. doesn't take too much space and isn't ridiculously big).
That means you'll be making a second set of pictures from the raw JPGs you got
off of your camera.

First of all ... BACK UP YOUR PICTURES ... make sure you are working with a
separate batch so if you mess something up, you can always start over. I repeat,
BACK UP YOUR PICTURES, earthli Support will not be able to rescue lost pictures
:-D

Now, let's work on those pictures...

  * Install Irfanview
     1. Download Irfanview 3.80 or higher. It has a neat batch-processing
        feature.
     2. Once you've got Irfanview installed, open it up.
  * Start Batch processing mode
     1. Hit 'B' (File...Batch Conversion/Rename) to bring up the batch
        processing dialog (this lets you work on several pictures at once
        without opening/closing each one by hand)
  * Select your files
     1. On the top right, browse to where your pictures are
     2. Select the ones you want to convert and click 'Add' or just hit 'Add
        all'
     3. Now you should have a list of files on the left side
  * Select JPEG conversion options
     1. On the bottom right, you've got options to rename and/or convert your
        files. We want to convert files, so click "Batch conversion"
     2. Choose "JPG - JPEG Format" output format
     3. Click Options and select the 80% JPEG quality.
     4. I also highly recommend to "Save as progressive JPEG". That lets slower
        connections gradually fill in your picture and is very nice for browsing
        quickly through pictures.
     5. Also, make sure that "Keep original EXIF data" is checked. At some
        point, I'll enable the feature on the web site that automatically
        extracts the date from pictures when uploaded, so you don't have to fill
        in date and time anymore. That info is read from the EXIF data.
     6. Click OK to save the JPEG settings
  * Select sizing options
     1. Click the "Set advanced options" button
     2. Make sure all checkboxes are off to begin with (so you don't get any
        surprises)
     3. Click "Resize" to enable the second group of controls
     4. Click "Set new size" and select 1024 for both width and height. Don't
        worry, it's not going to stretch your pictures all out of whack (see
        next step). If you're using irfanview 3.90 or higher, you'll see
        slightly different options. Instead of "Set new size", choose "Set long
        side to" and enter 1024. Same results.
     5. Click "Preserve Aspect Ratio" so that the resizing effect keeps the same
        width/height ratio your picture started with and you get no stretching.
     6. These settings will give you pictures that are, at most, 1024 pictures
        in either dimension, regardless of whether you took it landscape or
        portrait.
     7. Click the "Use Resample function (better quality)" ... well, because it
        says better quality. Sounds good.
  * Choose folder and go!
     1. Now, you can choose an output directory on the middle right
     2. Click "Start" in the column of buttons on the upper left and it churns
        away, converting your pictures into exactly the right format, qualiy and
        size for posting to the web.

[Upload away]

If you use this system, you'll have well-behaved pictures that don't hog server
space, that have a good balance between download speed and picture quality and,
best of all, are nice and consistent between batches and albums.

If you've got any more questions, feel free to post them in the comments or
email me directly.

]]></description>
  </item>
  <item>
    <guid>https://www.earthli.com/news/view_article.php?id=933</guid>
    <title><![CDATA[earthli Software gets a facelift]]></title>
    <link>https://www.earthli.com/news/view_article.php?id=933</link>
    <pubDate>Thu, 15 Apr 2004 00:10:24 +0200</pubDate>
    <description><![CDATA[Published by marco on 15. Apr 2004 00:10:24
Updated by marco on 15. Apr 2004 00:11:02
------------------------------------------------------------------------

The "JavaScript Calendar" <https://www.earthli.com/software/js_calendar> page
looked too nice and was putting "earthli Software"
<https://www.earthli.com/software/> to shame. No longer! The summaries are small
"News" <https://www.earthli.com/news/> articles, which means that software is
now dynamic and searchable. There are only four entries so far, but more are
coming. So far, the "earthli Browser Detector"
<https://www.earthli.com/software/browser_detector/> has gotten an update. The
code will be updated with the next WebCore release, but the algorithm
description is much clearer now.

]]></description>
  </item>
  <item>
    <guid>https://www.earthli.com/news/view_article.php?id=860</guid>
    <title><![CDATA[earthli moves again]]></title>
    <link>https://www.earthli.com/news/view_article.php?id=860</link>
    <pubDate>Sat, 20 Sep 2003 16:56:36 +0200</pubDate>
    <description><![CDATA[Published by marco on 20. Sep 2003 16:56:36
Updated by marco on 15. Feb 2004 14:02:42
------------------------------------------------------------------------

earthli was down for a few hours recently because the server has moved to a new
home, a move of only a few km. earthli's generous hosting company, Opus AG has
moved into fresh new quarters, which means earthli shouldn't move again in the
near future. Current bandwidth is 1MB upload capacity.

]]></description>
  </item>
  <item>
    <guid>https://www.earthli.com/news/view_article.php?id=835</guid>
    <title><![CDATA[New logo and upgrade]]></title>
    <link>https://www.earthli.com/news/view_article.php?id=835</link>
    <pubDate>Mon, 18 Aug 2003 22:03:50 +0200</pubDate>
    <description><![CDATA[Published by marco on 18. Aug 2003 22:03:50
Updated by marco on 16. Mar 2008 11:04:55
------------------------------------------------------------------------

[Oz]Earthli, less than a year after it's last logo change, has once again
updated its logo. This one really feels like the one that will stick, as it's
unique and looks nice. It also lends itself much better to a smaller, more
recognizable page icon (if you're using a browser other than IE, you should see
the icon in your page tabs or bookmarks). It also doesn't remind people of IE
(like the last one, with the 'e' in it) and doesn't steal the look of Mac OS X
with the 'aqua' rendering. 

The logo is, of course, based on the illustrious "Oz"
<https://www.earthli.com/users/oz/>, depicting him sitting in his garden. I
think the new design lends itself much better to a T-shirt than the last, with
just Oz by himself adorning the pocket and perhaps the whole thing across the
back. It's just an idea for now, though...

In addition, earthli has been upgraded to the latest version of the earthli
WebCore, including software upgrades for Albums, News, Projects and Recipes. The
long-awaited subscription integration is almost complete and will be activated
as soon as the testing phase is complete. This latest upgrade involved a
significant database upgrade. Subsequent code releases should come more quickly
as the next few versions worth of features involve code-only changes.

Enjoy.

]]></description>
  </item>
  <item>
    <guid>https://www.earthli.com/news/view_article.php?id=826</guid>
    <title><![CDATA[New themes &amp; home page]]></title>
    <link>https://www.earthli.com/news/view_article.php?id=826</link>
    <pubDate>Sun, 15 Jun 2003 21:17:19 +0200</pubDate>
    <description><![CDATA[Published by marco on 15. Jun 2003 21:17:19
------------------------------------------------------------------------

Earthli has a new default style  --  based on OS X backgrounds and colors. Also,
for all you IE users stuck in the dark ages, there is now automatic support for
using GIFs instead of PNGs so you'll get to see all the icons correctly.

Earthli has been upgraded to the latest version of the WebCore. All applications
have been upgraded, but only "Projects" <https://www.earthli.com/projects>
really has new functionality. The entire site benefits from upgraded styles and
theme handling.


]]></description>
  </item>
  <item>
    <guid>https://www.earthli.com/news/view_article.php?id=795</guid>
    <title><![CDATA[earthli finally has the home it deserves!]]></title>
    <link>https://www.earthli.com/news/view_article.php?id=795</link>
    <pubDate>Wed, 19 Mar 2003 17:02:55 +0100</pubDate>
    <description><![CDATA[Published by marco on 19. Mar 2003 17:02:55
------------------------------------------------------------------------

earthli has been upgraded to a 2.4GHz IBM rack server with scads of memory.
Tests indicate that application pages (like those in Albums, News, Projects or
Recipes) are loading from 10-15 times faster than before. This is due in part to
the move to a faster server, but also because the server is now Debian Linux and
can use the APC PHP cache, which gives a 50-200% speed boost as well (again,
based on testing). Enjoy.

]]></description>
  </item>
  <item>
    <guid>https://www.earthli.com/news/view_article.php?id=787</guid>
    <title><![CDATA[earthli Browser Detector released!]]></title>
    <link>https://www.earthli.com/news/view_article.php?id=787</link>
    <pubDate>Sun, 23 Feb 2003 12:48:03 +0100</pubDate>
    <description><![CDATA[Published by marco on 23. Feb 2003 12:48:03
------------------------------------------------------------------------

The first small portion of the WebCore is documented and released as a taste of
what's to come in the full library. The browser detector can be used as-is and
implements an algorithm that is not at all PHP-specific (though the
implementation is in PHP). There is full developer and public documentation
included (also a taste of what the full WebCore documentation will look like).
Check out "earthli Software" <http://www.earthli.com/software/> for more
details.

]]></description>
  </item>
  <item>
    <guid>https://www.earthli.com/news/view_article.php?id=782</guid>
    <title><![CDATA[Klosters and Langfurren albums updated]]></title>
    <link>https://www.earthli.com/news/view_article.php?id=782</link>
    <pubDate>Wed, 19 Feb 2003 09:55:44 +0100</pubDate>
    <description><![CDATA[Published by marco on 19. Feb 2003 09:55:44
------------------------------------------------------------------------

Marco and Kathy have been busy and there are several new pictures in the
"Langfurren" <http://www.earthli.com/albums/view_folder.php?id=116> album
showing off their newly furnished apartment. There is also a new album showing
their first overnight ski-weekend in "Klosters, Switzerland"
<http://www.earthli.com/albums/view_folder.php?id=132>.

]]></description>
  </item>
  <item>
    <guid>https://www.earthli.com/news/view_article.php?id=745</guid>
    <title><![CDATA[Quake III Feats]]></title>
    <link>https://www.earthli.com/news/view_article.php?id=745</link>
    <pubDate>Mon, 09 Dec 2002 00:55:38 +0100</pubDate>
    <description><![CDATA[Published by oz on 9. Dec 2002 00:55:38
------------------------------------------------------------------------

dur has been playing around with "Quake" <http://www.earthli.com/quake/> again
recently and took a few "screenshots"
<http://www.earthli.com/quake/screenshots.php> (Quake III Arena Screenshots) of
his handiwork. It's just bot play, but it's on the Hardcore level and has some
neat stats.

]]></description>
  </item>
  <item>
    <guid>https://www.earthli.com/news/view_article.php?id=744</guid>
    <title><![CDATA[Oz's First Impressions]]></title>
    <link>https://www.earthli.com/news/view_article.php?id=744</link>
    <pubDate>Mon, 09 Dec 2002 00:52:43 +0100</pubDate>
    <description><![CDATA[Published by oz on 9. Dec 2002 00:52:43
------------------------------------------------------------------------

"Ozzie" <http://www.earthli.com/users/oz> has some new pictures up, documenting
his experiences so far in Switzerland. He's got a journal entry, "Kicked out of
the States (and poor)"
<http://www.earthli.com/albums/view_journal_entry.php?id=2840> and he's got some
pictures from 
"December 6th, 2002"
<http://www.earthli.com/albums/view_pictures.php?id=19&amp;calendar=1&amp;journal=&amp;first_day=2002-12-06%2000:00:00&amp;last_day=2002-12-06%2023:59:59>
(Sami Claus day) and some pictures from "December 1st, 2002"
<http://www.earthli.com/albums/view_pictures.php?id=19&amp;calendar=1&amp;journal=&amp;first_day=2002-12-01%2000:00:00&amp;last_day=2002-12-01%2023:59:59>
(one of the few sunny days in the last 8 weeks). Check 'em out to see how the
Oz-man's doing.

]]></description>
  </item>
  <item>
    <guid>https://www.earthli.com/news/view_article.php?id=728</guid>
    <title><![CDATA[earthli Moves to Switzerland]]></title>
    <link>https://www.earthli.com/news/view_article.php?id=728</link>
    <pubDate>Wed, 13 Nov 2002 21:24:02 +0100</pubDate>
    <description><![CDATA[Published by marco on 13. Nov 2002 21:24:02
Updated by marco on 16. Mar 2008 17:43:50
------------------------------------------------------------------------

[image]

If you're seeing this article, then you're browsing the Swiss version of
earthli.com. The site (along with it's proprietor) has moved to Switzerland. As
you can see, the logo has been updated to reflect this status :-). If you find
anything that is broken, be sure to let "me know" <mailto:marco@earthli.com>, as
it could be a configuration problem as a result of the move.

]]></description>
  </item>
  <item>
    <guid>https://www.earthli.com/news/view_article.php?id=724</guid>
    <title><![CDATA[New earthli logo]]></title>
    <link>https://www.earthli.com/news/view_article.php?id=724</link>
    <pubDate>Wed, 13 Nov 2002 21:22:58 +0100</pubDate>
    <description><![CDATA[Published by marco on 13. Nov 2002 21:22:58
Updated by marco on 11. Mar 2008 22:13:44
------------------------------------------------------------------------

[image]

After long months of focus-group testing and careful deliberation, earthli has a
new logo. This logo is only rendered in alpha-transparent PNG, so will look
extra bad on all Windows IE incarnations, but those are the breaks. It's worth
it just to have one logo for all themes now. The new logo also makes a nicer and
more distinct icon, as you can see in the icon to the left. With the decision to
leave all non-alpha-transparent-PNG rendering browsers behind, the logo can make
full use of the alpha-transparency to make a blue button that is translucent on
any background color and has a nice, subtle drop-shadow (inspired by the Aqua
interface I've been working with now for over 3 weeks).

See "browser support" <http://www.earthli.com/browser.php> for more information
on PNG images.

]]></description>
  </item>
  <item>
    <guid>https://www.earthli.com/news/view_article.php?id=678</guid>
    <title><![CDATA[Webcam is Back]]></title>
    <link>https://www.earthli.com/news/view_article.php?id=678</link>
    <pubDate>Sat, 28 Sep 2002 20:15:11 +0200</pubDate>
    <description><![CDATA[Published by marco on 28. Sep 2002 20:15:11
------------------------------------------------------------------------

For the dismantling of the apartment, prior to earthli's move to Switzerland,
the "Webcam" <http://www.earthli.com/webcam/> has been re-enabled. As usual,
service will be intermittent, but you should be able to see the living room
change...and maybe we'll move the camera as we move to different rooms.

]]></description>
  </item>
  <item>
    <guid>https://www.earthli.com/news/view_article.php?id=647</guid>
    <title><![CDATA[Last Day at Logicat]]></title>
    <link>https://www.earthli.com/news/view_article.php?id=647</link>
    <pubDate>Fri, 30 Aug 2002 12:09:31 +0200</pubDate>
    <description><![CDATA[Published by marco on 30. Aug 2002 12:09:31
------------------------------------------------------------------------

earthli.com will soon be leaving its home at Logicat, where it's been housed for
almost 3 years. I'm leaving Logicat and moving to Switzerland, so soon earthli
will be served from there (hosted at "Opus" <http://www.opus.ch/>, my new
employer). I've updated my "resume" <http://www.earthli.com/users/marco/cv/>
("PDF" <http://www.earthli.com/users/marco/cv/mvb_cv_2002_08_30.pdf>) with my
last work at Logicat.

]]></description>
  </item>
  <item>
    <guid>https://www.earthli.com/news/view_article.php?id=615</guid>
    <title><![CDATA[earthli is on WebCore 2.0]]></title>
    <link>https://www.earthli.com/news/view_article.php?id=615</link>
    <pubDate>Tue, 13 Aug 2002 16:59:06 +0200</pubDate>
    <description><![CDATA[Published by marco on 13. Aug 2002 16:59:06
------------------------------------------------------------------------

The "earthli WebCore" <http://www.earthli.com/projects/view_project.php?id=6> is
now at "version 2.0.0" <http://www.earthli.com/projects/view_revision.php?id=24>
and the entire web site has been converted to take advantage of it. The
functionality hasn't changed, but the site is much more flexible for future
projects. If you want to start working with the WebCore, there is some
"documentation" <http://www.earthli.com/software/webcore/docs/> available.

]]></description>
  </item>
  <item>
    <guid>https://www.earthli.com/news/view_article.php?id=599</guid>
    <title><![CDATA[Hochzeit Invitations Shipped!]]></title>
    <link>https://www.earthli.com/news/view_article.php?id=599</link>
    <pubDate>Thu, 01 Aug 2002 10:57:15 +0200</pubDate>
    <description><![CDATA[Published by marco on 1. Aug 2002 10:57:15
------------------------------------------------------------------------

The invitations to Marco and Kathy's wedding have been sent on schedule. The
"Hochzeit" <http://www.earthli.com/hochzeit/> site has been improved and a new
theme "Hochzeit" has been added (and selected as the default for that part of
the site).

]]></description>
  </item>
  <item>
    <guid>https://www.earthli.com/news/view_article.php?id=582</guid>
    <title><![CDATA[Bass Harbor album is ready]]></title>
    <link>https://www.earthli.com/news/view_article.php?id=582</link>
    <pubDate>Thu, 25 Jul 2002 23:29:07 +0200</pubDate>
    <description><![CDATA[Published by marco on 25. Jul 2002 23:29:07
------------------------------------------------------------------------

Check out the "Bass Harbor, Maine 2002"
<http://www.earthli.com/albums/view_folder.php?id=113> album. Gary hasn't
contributed his pictures yet, but I wanted get an album for a vacation finished
in less than a week from the end of the trip itself. I'm sure he'll have
pictures to contribute later, but these are my pictures (and journals) for now.
As always, there's a "calendar"
<http://www.earthli.com/albums/view_calendar.php?id=113> for easy browsing and a
"Print Preview"
<http://www.earthli.com/albums/print_album.php?id=113&object_type=journal> if
you just want to look at the whole album (just click the print button in the
bottom right on the screen that comes up).

]]></description>
  </item>
  <item>
    <guid>https://www.earthli.com/news/view_article.php?id=581</guid>
    <title><![CDATA[Wedding Site is ready]]></title>
    <link>https://www.earthli.com/news/view_article.php?id=581</link>
    <pubDate>Thu, 25 Jul 2002 23:19:06 +0200</pubDate>
    <description><![CDATA[Published by marco on 25. Jul 2002 23:19:06
------------------------------------------------------------------------

Kath and Marco's wedding will of course be enhanced by online functionality.
There's an online "guest list"
<http://www.earthli.com/hochzeit/index.php?page=guest_list>, with real-time
updates of registered guests (whether yea or nay). You can search that list, or
use the handy "search tool"
<http://www.earthli.com/hochzeit/index.php?page=rsvp> to find people and
R.S.V.P. yourself. The hand-crafted (digitally) "invitations"
<http://www.earthli.com/hochzeit/index.php?page=invitation> are also online for
you to look at.

]]></description>
  </item>
  <item>
    <guid>https://www.earthli.com/news/view_article.php?id=531</guid>
    <title><![CDATA[Switzerland 2002 album is online]]></title>
    <link>https://www.earthli.com/news/view_article.php?id=531</link>
    <pubDate>Sat, 29 Jun 2002 09:24:32 +0200</pubDate>
    <description><![CDATA[Published by marco on 29. Jun 2002 09:24:32
------------------------------------------------------------------------

There are 68 pictures and 15 journal entries detailing our "journey to
Switzerland" <http://www.earthli.com/albums/view_folder.php?id=108> almost a
month ago. If you just want a massive overview, then check out the new print
feature here ["print"
<http://www.earthli.com/albums/print_album.php?id=108&object_type=journal>]
(just click print at the bottom right, after selecting options).

]]></description>
  </item>
  <item>
    <guid>https://www.earthli.com/news/view_article.php?id=535</guid>
    <title><![CDATA[Southwest 2002 is finished]]></title>
    <link>https://www.earthli.com/news/view_article.php?id=535</link>
    <pubDate>Sat, 29 Jun 2002 09:22:28 +0200</pubDate>
    <description><![CDATA[Published by marco on 29. Jun 2002 09:22:28
------------------------------------------------------------------------

Weighing in at "16 journal entries"
<http://www.earthli.com/albums/view_folder.php?id=101&panel=journals> and "157
pictures" <http://www.earthli.com/albums/view_folder.php?id=101&panel=pictures>,
the "Southwest 2002" <http://www.earthli.com/albums/view_folder.php?id=101> is
finally finished. It includes over 70 pictures from Gary's collection as well.
The "Print Preview"
<http://www.earthli.com/albums/print_album.php?id=101&object_type=journal> alone
is over 40 pages and is the best way to check it out offline. However, I highly
recommend to browse through the "Calendar"
<http://www.earthli.com/albums/view_calendar.php?id=101> if you're looking for
something specific.

]]></description>
  </item>
  <item>
    <guid>https://www.earthli.com/news/view_article.php?id=530</guid>
    <title><![CDATA[Photo Albums are printable]]></title>
    <link>https://www.earthli.com/news/view_article.php?id=530</link>
    <pubDate>Mon, 24 Jun 2002 22:21:47 +0200</pubDate>
    <description><![CDATA[Published by marco on 24. Jun 2002 22:21:47
------------------------------------------------------------------------

A long-lost feature from version 1.x has finally been restored to the modern
photo albums. Printing is back and enhanced from the original version. Any
journal entry can be printed, either by itself or in a hand-selected group from
the explorer. Additionally, the entire album can be one-click printed from the
album's home page. Print options include all standard options plus the ability
to include thumbnails from that journal day.

]]></description>
  </item>
  <item>
    <guid>https://www.earthli.com/news/view_article.php?id=515</guid>
    <title><![CDATA[Fritz Photo Album Started]]></title>
    <link>https://www.earthli.com/news/view_article.php?id=515</link>
    <pubDate>Tue, 11 Jun 2002 12:27:13 +0200</pubDate>
    <description><![CDATA[Published by marco on 11. Jun 2002 12:27:13
------------------------------------------------------------------------

Kath and Marco's car, 'Fritz', now has his very own earthli Album, called
"Fritz" <http://www.earthli.com/albums/view_folder.php?id=109>, strangely
enough. So far, there are just basic outside pictures, but after a good washing
and cleaning, more interior pictures should be available.

]]></description>
  </item>
  <item>
    <guid>https://www.earthli.com/news/view_article.php?id=514</guid>
    <title><![CDATA[Southwest 2002 Journal Added]]></title>
    <link>https://www.earthli.com/news/view_article.php?id=514</link>
    <pubDate>Tue, 11 Jun 2002 12:24:56 +0200</pubDate>
    <description><![CDATA[Published by marco on 11. Jun 2002 12:24:56
------------------------------------------------------------------------

The " Southwest 2002 Journal"
<http://www.earthli.com/albums/view_folder.php?id=101&panel=journal> from the
Van Evera family trip to Arizona (and Las Vegas) is available, but hasn't been
proofread or edited yet (just entered by "mvonballmo"
<http://www.earthli.com/news/view_user.php?name=mvonballmo>).

]]></description>
  </item>
  <item>
    <guid>https://www.earthli.com/news/view_article.php?id=499</guid>
    <title><![CDATA[earthli Projects in early Alpha]]></title>
    <link>https://www.earthli.com/news/view_article.php?id=499</link>
    <pubDate>Wed, 05 Jun 2002 11:00:11 +0200</pubDate>
    <description><![CDATA[Published by marco on 5. Jun 2002 11:00:11
------------------------------------------------------------------------

earthli Projects is functional enough to move the site changelogs into the
automated format. The "Albums"
<http://www.earthli.com/projects/view_change_log.php?id=3>, "News"
<http://www.earthli.com/projects/view_change_log.php?id=4>, "Recipes"
<http://www.earthli.com/projects/view_change_log.php?id=5> and "Webcore"
<http://www.earthli.com/projects/view_change_log.php?id=6> logs have been
imported.

]]></description>
  </item>
  <item>
    <guid>https://www.earthli.com/news/view_article.php?id=497</guid>
    <title><![CDATA[Albums are Searchable]]></title>
    <link>https://www.earthli.com/news/view_article.php?id=497</link>
    <pubDate>Fri, 17 May 2002 11:55:55 +0200</pubDate>
    <description><![CDATA[Published by marco on 17. May 2002 11:55:55
------------------------------------------------------------------------

earthli Albums has been upgraded to the latest WebCore code and benefits from
fixes and improvements made to the code shared with Recipes and News. earthli
can now offer text-searching in the Albums; you can look for pictures or journal
entries, searching in the title or the description or both.

]]></description>
  </item>
  <item>
    <guid>https://www.earthli.com/news/view_article.php?id=469</guid>
    <title><![CDATA[Oz's Vacation]]></title>
    <link>https://www.earthli.com/news/view_article.php?id=469</link>
    <pubDate>Tue, 30 Apr 2002 11:36:16 +0200</pubDate>
    <description><![CDATA[Published by marco on 30. Apr 2002 11:36:16
------------------------------------------------------------------------

"Oz" <http://www.earthli.com/users/oz/> has just come back from a visit in
upstate New York with a new sitter, because his usual sitters were abandoning
him for a vacation with his parents. While there, his sitter kept a "journal"
<http://www.earthli.com/users/oz/nids_journal.php> and "took some pictures"
<http://www.earthli.com/albums/view_pictures.php?id=19&calendar=1&first_day=2002-04-16%2000:00:00&last_day=2002-04-16%2023:59:59>
There was also a photo shoot back in "March"
<http://www.earthli.com/albums/view_pictures.php?id=19&calendar=1&first_day=2002-03-14%2000:00:00&last_day=2002-03-14%2023:59:59>,
as well.

]]></description>
  </item>
  <item>
    <guid>https://www.earthli.com/news/view_article.php?id=453</guid>
    <title><![CDATA[Research Papers Released]]></title>
    <link>https://www.earthli.com/news/view_article.php?id=453</link>
    <pubDate>Wed, 03 Apr 2002 11:35:04 +0200</pubDate>
    <description><![CDATA[Published by marco on 3. Apr 2002 11:35:04
------------------------------------------------------------------------

Marco's "Papers, Notes, Research & Manuals"
<http://www.earthli.com/users/marco/docs/> are now available for browsing. All
existing documentation has been reformatted, cleaned up to valid HTML 4.01
Strict standards and collected under a shared style sheet (not earthli themes,
though). The listing has also been re-organized to provide a full chronological
listing and a project listing.

]]></description>
  </item>
  <item>
    <guid>https://www.earthli.com/news/view_article.php?id=253</guid>
    <title><![CDATA[Christmas is here]]></title>
    <link>https://www.earthli.com/news/view_article.php?id=253</link>
    <pubDate>Mon, 25 Mar 2002 15:27:42 +0100</pubDate>
    <description><![CDATA[Published by marco on 25. Mar 2002 15:27:42
------------------------------------------------------------------------

The earthli Christmas theme beta program is over and user complaints have been
addressed. The christmas theme is now the default for the holidays. For more
holiday-related stuff, check out "Oz" <http://www.earthli.com/users/oz>'s new
"pictures"
<http://www.earthli.com/albums/view_pictures.php?id=19&calendar=1&journal=&first_day=2001-12-16%2000:00:00&last_day=2001-12-16%2023:59:59>.

]]></description>
  </item>
  <item>
    <guid>https://www.earthli.com/news/view_article.php?id=396</guid>
    <title><![CDATA[New Theme Set - Colors]]></title>
    <link>https://www.earthli.com/news/view_article.php?id=396</link>
    <pubDate>Wed, 06 Mar 2002 23:38:03 +0100</pubDate>
    <description><![CDATA[Published by marco on 6. Mar 2002 23:38:03
------------------------------------------------------------------------

earthli's themes have been separated into sets and the theme selector has been
updated to make it easier to choose the best theme for you.

]]></description>
  </item>
  <item>
    <guid>https://www.earthli.com/news/view_article.php?id=394</guid>
    <title><![CDATA[Forums become earthli News]]></title>
    <link>https://www.earthli.com/news/view_article.php?id=394</link>
    <pubDate>Thu, 28 Feb 2002 16:59:36 +0100</pubDate>
    <description><![CDATA[Published by marco on 28. Feb 2002 16:59:36
------------------------------------------------------------------------

The "earthli Forums" <http://www.earthli.com/news> are officially closed. Their
content has been moved into "earthli News" <http://www.earthli.com/news>, which
is built with the same technology as the "Albums"
<http://www.earthli.com/albums> and the "Recipes" <http://www.earthli.com/news>,
yielding a single shared earthli user for all sites. There is also better
searching, print previews, a draft/published mode for contributors and a better
date-oriented layout for easier browsing.

]]></description>
  </item>
  <item>
    <guid>https://www.earthli.com/news/view_article.php?id=326</guid>
    <title><![CDATA[earthli Recipes opens!]]></title>
    <link>https://www.earthli.com/news/view_article.php?id=326</link>
    <pubDate>Wed, 23 Jan 2002 18:07:28 +0100</pubDate>
    <description><![CDATA[Published by marco on 23. Jan 2002 18:07:28
------------------------------------------------------------------------

A brand-new application has arrived for earthli.com. "earthli Recipes"
<http://www.earthli.com/recipes> lets users publish, print, sort and comment on
recipes.

]]></description>
  </item>
  <item>
    <guid>https://www.earthli.com/news/view_article.php?id=281</guid>
    <title><![CDATA[Archives Added to Oz's Autobiography]]></title>
    <link>https://www.earthli.com/news/view_article.php?id=281</link>
    <pubDate>Tue, 15 Jan 2002 16:02:58 +0100</pubDate>
    <description><![CDATA[Published by marco on 15. Jan 2002 16:02:58
------------------------------------------------------------------------

"Oz" <http://www.earthli.com/users/oz/> has added over 30 new (old) pictures to
his "Autobiography" <http://www.earthli.com/albums/view_album.php?id=19> album.
There are a lot of pictures from his early years.

]]></description>
  </item>
  <item>
    <guid>https://www.earthli.com/news/view_article.php?id=280</guid>
    <title><![CDATA[Switzerland 2001 Album Opens]]></title>
    <link>https://www.earthli.com/news/view_article.php?id=280</link>
    <pubDate>Tue, 15 Jan 2002 16:01:42 +0100</pubDate>
    <description><![CDATA[Published by marco on 15. Jan 2002 16:01:42
------------------------------------------------------------------------

There are over 130 new pictures in "Kath & Marco"
<http://www.earthli.com/albums/view_album.php?id=2>'s "Switzerland 2001"
<http://www.earthli.com/albums/view_album.php?id=28> album. There are albums for
"Pilatus" <http://www.earthli.com/albums/view_album.php?id=84>, "San Bernardino"
<http://www.earthli.com/albums/view_album.php?id=88>, Ermes' "Family Trip"
<http://www.earthli.com/albums/view_album.php?id=86>, "Werner & Ekhlas"
<http://www.earthli.com/albums/view_album.php?id=85>' House and the "1st of
August" <http://www.earthli.com/albums/view_album.php?id=87>.

]]></description>
  </item>
  <item>
    <guid>https://www.earthli.com/news/view_article.php?id=248</guid>
    <title><![CDATA[Forums are searchable]]></title>
    <link>https://www.earthli.com/news/view_article.php?id=248</link>
    <pubDate>Wed, 12 Dec 2001 12:19:44 +0100</pubDate>
    <description><![CDATA[Published by marco on 12. Dec 2001 12:19:44
------------------------------------------------------------------------

earthli "Forums" <https://www.earthli.com/forums> are now searchable. You can
search all forums or just within a particular forum. There's even fancy keyword
highlighting (which carries over to the post as well).

]]></description>
  </item>
  <item>
    <guid>https://www.earthli.com/news/view_article.php?id=233</guid>
    <title><![CDATA[Christmas comes early]]></title>
    <link>https://www.earthli.com/news/view_article.php?id=233</link>
    <pubDate>Thu, 06 Dec 2001 00:06:42 +0100</pubDate>
    <description><![CDATA[Published by marco on 6. Dec 2001 00:06:42
------------------------------------------------------------------------

The earthli Christmas theme has arrived. It's not as ostentatious (or musical)
as some have requested, but hopefully it's ready early enough for those who get
into the spirit early. It isn't the default yet (earthli does not get into the
spirit early), but you can choose it from the list.

]]></description>
  </item>
  <item>
    <guid>https://www.earthli.com/news/view_article.php?id=231</guid>
    <title><![CDATA[Theme Screenshots]]></title>
    <link>https://www.earthli.com/news/view_article.php?id=231</link>
    <pubDate>Tue, 04 Dec 2001 23:37:05 +0100</pubDate>
    <description><![CDATA[Published by marco on 4. Dec 2001 23:37:05
------------------------------------------------------------------------

earthli Themes now have their own screenshots, making it even easier to choose
how you want to browse the web...and, yes, a Christmas theme is coming.

]]></description>
  </item>
  <item>
    <guid>https://www.earthli.com/news/view_article.php?id=220</guid>
    <title><![CDATA[Photo Albums 2.1 re-opens]]></title>
    <link>https://www.earthli.com/news/view_article.php?id=220</link>
    <pubDate>Tue, 20 Nov 2001 11:53:49 +0100</pubDate>
    <description><![CDATA[Published by marco on 20. Nov 2001 11:53:49
------------------------------------------------------------------------

The "Photo Albums" <https://www.earthli.com/albums> have re-opened with many new
features, including nested albums, comments, enhanced security, an explorer, an
updated calendar and better navigation for browsing sets of pictures.

]]></description>
  </item>
  <item>
    <guid>https://www.earthli.com/news/view_article.php?id=210</guid>
    <title><![CDATA[dur's Quake site converted]]></title>
    <link>https://www.earthli.com/news/view_article.php?id=210</link>
    <pubDate>Tue, 20 Nov 2001 11:53:25 +0100</pubDate>
    <description><![CDATA[Published by marco on 20. Nov 2001 11:53:25
------------------------------------------------------------------------

Rewrote the "Quake" <https://www.earthli.com/quake/> site to use the earthli
settings. Much re-organization, but no new content. The original quake style
sheet is now available as an earthli color scheme - 'Quake'.

]]></description>
  </item>
  <item>
    <guid>https://www.earthli.com/news/view_article.php?id=217</guid>
    <title><![CDATA[Happy Thanksgiving]]></title>
    <link>https://www.earthli.com/news/view_article.php?id=217</link>
    <pubDate>Thu, 15 Nov 2001 16:59:06 +0100</pubDate>
    <description><![CDATA[Published by marco on 15. Nov 2001 16:59:06
------------------------------------------------------------------------

I've caved in to user demand (that's right, 1 user) and gone seasonal again.
Enjoy the Thanksgiving theme. (if you don't use [default] colors, then choose it
from the settings menus.)

]]></description>
  </item>
  <item>
    <guid>https://www.earthli.com/news/view_article.php?id=203</guid>
    <title><![CDATA[earthli Settings fixed (again)]]></title>
    <link>https://www.earthli.com/news/view_article.php?id=203</link>
    <pubDate>Fri, 02 Nov 2001 12:34:18 +0100</pubDate>
    <description><![CDATA[Published by marco on 2. Nov 2001 12:34:18
------------------------------------------------------------------------

[default] options added to earthli settings, which will use the default at all
times, and changes for holidays ;-). Also fixed some bugs in the cookie that
only Mozilla-based browsers detected.

]]></description>
  </item>
  <item>
    <guid>https://www.earthli.com/news/view_article.php?id=202</guid>
    <title><![CDATA[Jass Manual converted]]></title>
    <link>https://www.earthli.com/news/view_article.php?id=202</link>
    <pubDate>Wed, 31 Oct 2001 23:40:39 +0100</pubDate>
    <description><![CDATA[Published by marco on 31. Oct 2001 23:40:39
------------------------------------------------------------------------

The "Jass Manual" <https://www.earthli.com/jass/> has been converted to use the
new settings.

]]></description>
  </item>
  <item>
    <guid>https://www.earthli.com/news/view_article.php?id=195</guid>
    <title><![CDATA[Happy Halloween]]></title>
    <link>https://www.earthli.com/news/view_article.php?id=195</link>
    <pubDate>Sat, 27 Oct 2001 11:14:53 +0200</pubDate>
    <description><![CDATA[Published by marco on 27. Oct 2001 11:14:53
------------------------------------------------------------------------

earthli gets into the Halloween spirit with a new default theme (select
Halloween from the settings menus if you have set a different default theme).

]]></description>
  </item>
  <item>
    <guid>https://www.earthli.com/news/view_article.php?id=194</guid>
    <title><![CDATA[Photo Albums have a new home]]></title>
    <link>https://www.earthli.com/news/view_article.php?id=194</link>
    <pubDate>Sat, 27 Oct 2001 11:13:00 +0200</pubDate>
    <description><![CDATA[Published by marco on 27. Oct 2001 11:13:00
------------------------------------------------------------------------

The new "Photo Albums" <https://www.earthli.com/albums> are working and all
existing photos are browsable. Soon you'll be able to add pictures again.

]]></description>
  </item>
  <item>
    <guid>https://www.earthli.com/news/view_article.php?id=184</guid>
    <title><![CDATA[earthli Settings stored indefinitely]]></title>
    <link>https://www.earthli.com/news/view_article.php?id=184</link>
    <pubDate>Thu, 18 Oct 2001 13:43:56 +0200</pubDate>
    <description><![CDATA[Published by marco on 18. Oct 2001 13:43:56
------------------------------------------------------------------------

earthli Settings (color, font, size) are now stored indefinitely (fixed a bug
that stored them only for a day). So now when you make a change, it will stick.

]]></description>
  </item>
  <item>
    <guid>https://www.earthli.com/news/view_article.php?id=173</guid>
    <title><![CDATA[Cookie location changed]]></title>
    <link>https://www.earthli.com/news/view_article.php?id=173</link>
    <pubDate>Mon, 08 Oct 2001 18:40:57 +0200</pubDate>
    <description><![CDATA[Published by marco on 8. Oct 2001 18:40:57
Updated by marco on 16. Mar 2008 18:42:02
------------------------------------------------------------------------

The 'Settings' are stored elsewhere now. If you use Mozilla or Netscape 6.x, you
have to clear the old earthli cookie. Oh, and you can show replies in the
"forums" <https://www.earthli.com/news> pages now.

]]></description>
  </item>
  <item>
    <guid>https://www.earthli.com/news/view_article.php?id=168</guid>
    <title><![CDATA[Announcements automated]]></title>
    <link>https://www.earthli.com/news/view_article.php?id=168</link>
    <pubDate>Fri, 05 Oct 2001 12:39:23 +0200</pubDate>
    <description><![CDATA[Published by marco on 5. Oct 2001 12:39:23
Updated by marco on 16. Mar 2008 21:37:18
------------------------------------------------------------------------

earthli News recreated as the "Announcements forum"
<https://www.earthli.com/news>.

]]></description>
  </item>
  <item>
    <guid>https://www.earthli.com/news/view_article.php?id=132</guid>
    <title><![CDATA[Subscriptions for forums]]></title>
    <link>https://www.earthli.com/news/view_article.php?id=132</link>
    <pubDate>Thu, 04 Oct 2001 22:28:39 +0200</pubDate>
    <description><![CDATA[Published by marco on 4. Oct 2001 22:28:39
Updated by marco on 16. Mar 2008 18:47:02
------------------------------------------------------------------------

New subscription service available for "earthli Forums"
<https://www.earthli.com/news>. Get the latest posts emailed to you.

]]></description>
  </item>
  <item>
    <guid>https://www.earthli.com/news/view_article.php?id=167</guid>
    <title><![CDATA[First stable forum version]]></title>
    <link>https://www.earthli.com/news/view_article.php?id=167</link>
    <pubDate>Tue, 02 Oct 2001 10:55:33 +0200</pubDate>
    <description><![CDATA[Published by marco on 2. Oct 2001 10:55:33
------------------------------------------------------------------------

Initial "earthli forums" <https://www.earthli.com/forums/> overhaul is
completed. "New posts" <https://www.earthli.com/forums/view_forum.php?id=15>
piling up daily.

]]></description>
  </item>
  <item>
    <guid>https://www.earthli.com/news/view_article.php?id=166</guid>
    <title><![CDATA[New Oz pictures]]></title>
    <link>https://www.earthli.com/news/view_article.php?id=166</link>
    <pubDate>Sun, 30 Sep 2001 10:54:56 +0200</pubDate>
    <description><![CDATA[Published by marco on 30. Sep 2001 10:54:56
------------------------------------------------------------------------

2 new "Oz" <https://www.earthli.com/users/oz/> pictures.

]]></description>
  </item>
  <item>
    <guid>https://www.earthli.com/news/view_article.php?id=165</guid>
    <title><![CDATA[New Forums opened]]></title>
    <link>https://www.earthli.com/news/view_article.php?id=165</link>
    <pubDate>Sat, 29 Sep 2001 10:54:34 +0200</pubDate>
    <description><![CDATA[Published by marco on 29. Sep 2001 10:54:34
Updated by marco on 16. Mar 2008 16:43:07
------------------------------------------------------------------------

Work proceeds in the "forums" <https://www.earthli.com/news/>. Many new posts
added. Existing posts separated into "Current Events"
<https://www.earthli.com/news/view_folder.php?id=15>, "Humor"
<https://www.earthli.com/news/view_folder.php?id=14> and "Technology"
<https://www.earthli.com/news/view_folder.php?id=13>.

]]></description>
  </item>
  <item>
    <guid>https://www.earthli.com/news/view_article.php?id=164</guid>
    <title><![CDATA[Forums Updated (Again)]]></title>
    <link>https://www.earthli.com/news/view_article.php?id=164</link>
    <pubDate>Tue, 18 Sep 2001 10:54:05 +0200</pubDate>
    <description><![CDATA[Published by marco on 18. Sep 2001 10:54:05
Updated by marco on 16. Mar 2008 16:42:02
------------------------------------------------------------------------

"Earthli Forums" <https://www.earthli.com/news/> code updated. Users can now
"create accounts" <https://www.earthli.com/news/create_user.php>. More
"invective" <https://www.earthli.com/news/view_folder.php?id=12> than you can
handle.

]]></description>
  </item>
  <item>
    <guid>https://www.earthli.com/news/view_article.php?id=163</guid>
    <title><![CDATA[Tuesday's commute.]]></title>
    <link>https://www.earthli.com/news/view_article.php?id=163</link>
    <pubDate>Wed, 12 Sep 2001 10:53:34 +0200</pubDate>
    <description><![CDATA[Published by marco on 12. Sep 2001 10:53:34
Updated by marco on 16. Mar 2008 18:37:02
------------------------------------------------------------------------

Marco's "Tuesday commute"
<https://www.earthli.com/news/view_article.php?id=1755>.

]]></description>
  </item>
  <item>
    <guid>https://www.earthli.com/news/view_article.php?id=162</guid>
    <title><![CDATA[New page settings]]></title>
    <link>https://www.earthli.com/news/view_article.php?id=162</link>
    <pubDate>Fri, 07 Sep 2001 10:53:12 +0200</pubDate>
    <description><![CDATA[Published by marco on 7. Sep 2001 10:53:12
------------------------------------------------------------------------

Added customization options. Change color scheme, font and size and use it
throughout the site. (See Settings on the right.)

]]></description>
  </item>
  <item>
    <guid>https://www.earthli.com/news/view_article.php?id=161</guid>
    <title><![CDATA[Urban Terror battle]]></title>
    <link>https://www.earthli.com/news/view_article.php?id=161</link>
    <pubDate>Fri, 29 Jun 2001 10:52:51 +0200</pubDate>
    <description><![CDATA[Published by marco on 29. Jun 2001 10:52:51
Updated by marco on 16. Mar 2008 18:15:04
------------------------------------------------------------------------

New (old) quake battle." malloc and dur"
<https://www.earthli.com/quake/pages/battles/6_3_2001/AEStats.html> in Urban
Terror.

]]></description>
  </item>
  <item>
    <guid>https://www.earthli.com/news/view_article.php?id=160</guid>
    <title><![CDATA[Styles available on home page]]></title>
    <link>https://www.earthli.com/news/view_article.php?id=160</link>
    <pubDate>Mon, 18 Jun 2001 10:52:28 +0200</pubDate>
    <description><![CDATA[Published by marco on 18. Jun 2001 10:52:28
------------------------------------------------------------------------

Added a style-chooser on the home page. Check out which styles you like. More
coming soon...

]]></description>
  </item>
  <item>
    <guid>https://www.earthli.com/news/view_article.php?id=159</guid>
    <title><![CDATA[Added CH 97 Pictures]]></title>
    <link>https://www.earthli.com/news/view_article.php?id=159</link>
    <pubDate>Sat, 02 Jun 2001 10:52:03 +0200</pubDate>
    <description><![CDATA[Published by marco on 2. Jun 2001 10:52:03
Updated by marco on 10. Mar 2008 22:12:32
------------------------------------------------------------------------

Added 239 pictures to the "Switzerland 1997"
<http://earthli.com/albums/view_folder.php?id=12> album.

]]></description>
  </item>
  <item>
    <guid>https://www.earthli.com/news/view_article.php?id=158</guid>
    <title><![CDATA[New Quake Battle]]></title>
    <link>https://www.earthli.com/news/view_article.php?id=158</link>
    <pubDate>Thu, 24 May 2001 10:51:33 +0200</pubDate>
    <description><![CDATA[Published by marco on 24. May 2001 10:51:33
Updated by marco on 16. Mar 2008 16:39:59
------------------------------------------------------------------------

Added "AEStats" <http://www.aeons.de/AEstats/> to the Quake "battles"
<https://www.earthli.com/quake/battles.php> site. New battle: dur, joker,
kavorka, malloc.

]]></description>
  </item>
  <item>
    <guid>https://www.earthli.com/news/view_article.php?id=157</guid>
    <title><![CDATA[Polling system complete.]]></title>
    <link>https://www.earthli.com/news/view_article.php?id=157</link>
    <pubDate>Thu, 24 May 2001 10:51:08 +0200</pubDate>
    <description><![CDATA[Published by marco on 24. May 2001 10:51:08
------------------------------------------------------------------------

Finished the first version of the polling system.

]]></description>
  </item>
  <item>
    <guid>https://www.earthli.com/news/view_article.php?id=156</guid>
    <title><![CDATA[Polls available]]></title>
    <link>https://www.earthli.com/news/view_article.php?id=156</link>
    <pubDate>Wed, 16 May 2001 10:47:09 +0200</pubDate>
    <description><![CDATA[Published by marco on 16. May 2001 10:47:09
------------------------------------------------------------------------

Added the first earthli poll.

]]></description>
  </item>
  <item>
    <guid>https://www.earthli.com/news/view_article.php?id=155</guid>
    <title><![CDATA[Christmas 2000 Photo Album]]></title>
    <link>https://www.earthli.com/news/view_article.php?id=155</link>
    <pubDate>Mon, 14 May 2001 10:46:47 +0200</pubDate>
    <description><![CDATA[Published by marco on 14. May 2001 10:46:47
Updated by marco on 16. Mar 2008 18:35:18
------------------------------------------------------------------------

Added "Christmas 2000" <https://www.earthli.com/albums/view_folder.php?id=11>
pictures to the "photo album" <https://www.earthli.com/albums>.

]]></description>
  </item>
  <item>
    <guid>https://www.earthli.com/news/view_article.php?id=154</guid>
    <title><![CDATA[Grizz vs. dur]]></title>
    <link>https://www.earthli.com/news/view_article.php?id=154</link>
    <pubDate>Thu, 10 May 2001 10:46:10 +0200</pubDate>
    <description><![CDATA[Published by marco on 10. May 2001 10:46:10
Updated by marco on 16. Mar 2008 18:15:44
------------------------------------------------------------------------

"Grizz vs. dur"
<https://www.earthli.com/quake/pages/battles/5_10_2001/AEStats.html> quake
battle.

]]></description>
  </item>
  <item>
    <guid>https://www.earthli.com/news/view_article.php?id=153</guid>
    <title><![CDATA[Mark III Complete]]></title>
    <link>https://www.earthli.com/news/view_article.php?id=153</link>
    <pubDate>Wed, 09 May 2001 10:44:16 +0200</pubDate>
    <description><![CDATA[Published by marco on 9. May 2001 10:44:16
Updated by marco on 16. Mar 2008 16:38:05
------------------------------------------------------------------------

"Mark III" <https://www.earthli.com/systems/models/mark_III> ready for delivery.

]]></description>
  </item>
  <item>
    <guid>https://www.earthli.com/news/view_article.php?id=152</guid>
    <title><![CDATA[Mark II Delivered]]></title>
    <link>https://www.earthli.com/news/view_article.php?id=152</link>
    <pubDate>Tue, 08 May 2001 10:43:50 +0200</pubDate>
    <description><![CDATA[Published by marco on 8. May 2001 10:43:50
Updated by marco on 16. Mar 2008 16:37:34
------------------------------------------------------------------------

"earthli systems" <https://www.earthli.com/systems/> "Mark II"
<https://www.earthli.com/systems/models/mark_II> arrives.

]]></description>
  </item>
  <item>
    <guid>https://www.earthli.com/news/view_article.php?id=151</guid>
    <title><![CDATA[Quake Battle Added]]></title>
    <link>https://www.earthli.com/news/view_article.php?id=151</link>
    <pubDate>Thu, 03 May 2001 10:43:07 +0200</pubDate>
    <description><![CDATA[Published by marco on 3. May 2001 10:43:07
Updated by marco on 16. Mar 2008 18:14:22
------------------------------------------------------------------------

New Quake "battle"
<https://www.earthli.com/quake/pages/battles/5_3_2001/AEStats.html>

]]></description>
  </item>
  <item>
    <guid>https://www.earthli.com/news/view_article.php?id=150</guid>
    <title><![CDATA[New Server]]></title>
    <link>https://www.earthli.com/news/view_article.php?id=150</link>
    <pubDate>Fri, 27 Apr 2001 10:42:45 +0200</pubDate>
    <description><![CDATA[Published by marco on 27. Apr 2001 10:42:45
------------------------------------------------------------------------

earthli moves to a dedicated server and gets mail service.

]]></description>
  </item>
  <item>
    <guid>https://www.earthli.com/news/view_article.php?id=149</guid>
    <title><![CDATA[New Logos]]></title>
    <link>https://www.earthli.com/news/view_article.php?id=149</link>
    <pubDate>Thu, 26 Apr 2001 10:42:30 +0200</pubDate>
    <description><![CDATA[Published by marco on 26. Apr 2001 10:42:30
------------------------------------------------------------------------

Updated logos for earthli.

]]></description>
  </item>
  <item>
    <guid>https://www.earthli.com/news/view_article.php?id=148</guid>
    <title><![CDATA[Quake III Battles added]]></title>
    <link>https://www.earthli.com/news/view_article.php?id=148</link>
    <pubDate>Mon, 23 Apr 2001 10:42:09 +0200</pubDate>
    <description><![CDATA[Published by marco on 23. Apr 2001 10:42:09
------------------------------------------------------------------------

"Battle statistics" <https://www.earthli.com/quake/battles/index.html> added to
"quake" <https://www.earthli.com/quake/> site.

]]></description>
  </item>
  <item>
    <guid>https://www.earthli.com/news/view_article.php?id=147</guid>
    <title><![CDATA[Test Engine Build History]]></title>
    <link>https://www.earthli.com/news/view_article.php?id=147</link>
    <pubDate>Mon, 23 Apr 2001 10:41:39 +0200</pubDate>
    <description><![CDATA[Published by marco on 23. Apr 2001 10:41:39
Updated by marco on 16. Mar 2008 18:38:00
------------------------------------------------------------------------

Logicat Test Engine "build history"
<https://www.earthli.com/data/users/marco/documents/test_engine/builds/index.html>
transferred to earthli.

]]></description>
  </item>
  <item>
    <guid>https://www.earthli.com/news/view_article.php?id=146</guid>
    <title><![CDATA[Mark I shipped]]></title>
    <link>https://www.earthli.com/news/view_article.php?id=146</link>
    <pubDate>Wed, 11 Apr 2001 10:41:07 +0200</pubDate>
    <description><![CDATA[Published by marco on 11. Apr 2001 10:41:07
------------------------------------------------------------------------

earthli "systems" <https://www.earthli.com/systems/index.html> offers the "Mark
I" <https://www.earthli.com/systems/models/mark_I.html>.

]]></description>
  </item>
  <item>
    <guid>https://www.earthli.com/news/view_article.php?id=145</guid>
    <title><![CDATA[New Look]]></title>
    <link>https://www.earthli.com/news/view_article.php?id=145</link>
    <pubDate>Fri, 23 Mar 2001 10:40:38 +0100</pubDate>
    <description><![CDATA[Published by marco on 23. Mar 2001 10:40:38
------------------------------------------------------------------------

A new look for earthli.

]]></description>
  </item>
  <item>
    <guid>https://www.earthli.com/news/view_article.php?id=144</guid>
    <title><![CDATA[earthli Forums created]]></title>
    <link>https://www.earthli.com/news/view_article.php?id=144</link>
    <pubDate>Mon, 05 Mar 2001 10:40:16 +0100</pubDate>
    <description><![CDATA[Published by marco on 5. Mar 2001 10:40:16
------------------------------------------------------------------------

earthli "Forums" <https://www.earthli.com/forums/> has been spun from the
"project manager" <https://www.earthli.com/projects/>.

]]></description>
  </item>
  <item>
    <guid>https://www.earthli.com/news/view_article.php?id=143</guid>
    <title><![CDATA[Project Manager begun]]></title>
    <link>https://www.earthli.com/news/view_article.php?id=143</link>
    <pubDate>Thu, 22 Feb 2001 10:39:41 +0100</pubDate>
    <description><![CDATA[Published by marco on 22. Feb 2001 10:39:41
------------------------------------------------------------------------

The "project manager" <https://www.earthli.com/projects/> is underway.

]]></description>
  </item>
  <item>
    <guid>https://www.earthli.com/news/view_article.php?id=142</guid>
    <title><![CDATA[Oz back on Webcam]]></title>
    <link>https://www.earthli.com/news/view_article.php?id=142</link>
    <pubDate>Mon, 05 Feb 2001 10:39:19 +0100</pubDate>
    <description><![CDATA[Published by marco on 5. Feb 2001 10:39:19
------------------------------------------------------------------------

"Oz" <https://www.earthli.com/users/oz/> is back on the "Webcam"
<https://www.earthli.com/webcam/>.

]]></description>
  </item>
  <item>
    <guid>https://www.earthli.com/news/view_article.php?id=141</guid>
    <title><![CDATA[Added Whistler 2001 pictures.]]></title>
    <link>https://www.earthli.com/news/view_article.php?id=141</link>
    <pubDate>Mon, 29 Jan 2001 10:38:36 +0100</pubDate>
    <description><![CDATA[Published by marco on 29. Jan 2001 10:38:36
Updated by marco on 16. Mar 2008 18:34:01
------------------------------------------------------------------------

Added some pictures to the "Whistler 2001"
<https://www.earthli.com/albums/view_folder.php?id=13> album.

]]></description>
  </item>
  <item>
    <guid>https://www.earthli.com/news/view_article.php?id=140</guid>
    <title><![CDATA[Updated Oz's home page]]></title>
    <link>https://www.earthli.com/news/view_article.php?id=140</link>
    <pubDate>Mon, 29 Jan 2001 10:38:10 +0100</pubDate>
    <description><![CDATA[Published by marco on 29. Jan 2001 10:38:10
Updated by marco on 16. Mar 2008 16:38:34
------------------------------------------------------------------------

Updated "Oz's home page" <https://www.earthli.com/users/oz> (New pictures).

]]></description>
  </item>
  <item>
    <guid>https://www.earthli.com/news/view_article.php?id=139</guid>
    <title><![CDATA[Re-organized Logicat section]]></title>
    <link>https://www.earthli.com/news/view_article.php?id=139</link>
    <pubDate>Wed, 17 Jan 2001 10:37:44 +0100</pubDate>
    <description><![CDATA[Published by marco on 17. Jan 2001 10:37:44
Updated by marco on 16. Mar 2008 17:02:59
------------------------------------------------------------------------

Cleaned up and reorganized the "work and notes "
<https://www.earthli.com/data/users/marco/documents/>section.

]]></description>
  </item>
  <item>
    <guid>https://www.earthli.com/news/view_article.php?id=138</guid>
    <title><![CDATA[New Test Engine Manuals]]></title>
    <link>https://www.earthli.com/news/view_article.php?id=138</link>
    <pubDate>Wed, 17 Jan 2001 10:36:58 +0100</pubDate>
    <description><![CDATA[Published by marco on 17. Jan 2001 10:36:58
Updated by marco on 16. Mar 2008 17:01:08
------------------------------------------------------------------------

Added updated version of "Test Engine manuals"
<https://www.earthli.com/data/users/marco/documents/test_engine/manuals/index.html>.

]]></description>
  </item>
  <item>
    <guid>https://www.earthli.com/news/view_article.php?id=137</guid>
    <title><![CDATA[New Jass Strategy]]></title>
    <link>https://www.earthli.com/news/view_article.php?id=137</link>
    <pubDate>Mon, 15 Jan 2001 10:35:43 +0100</pubDate>
    <description><![CDATA[Published by marco on 15. Jan 2001 10:35:43
------------------------------------------------------------------------

Added a strategy to the "Jass Manual" <https://www.earthli.com/jass/> (playing
backwards).

]]></description>
  </item>
  <item>
    <guid>https://www.earthli.com/news/view_article.php?id=136</guid>
    <title><![CDATA[Updated Jass Manual]]></title>
    <link>https://www.earthli.com/news/view_article.php?id=136</link>
    <pubDate>Tue, 09 Jan 2001 10:34:50 +0100</pubDate>
    <description><![CDATA[Published by marco on 9. Jan 2001 10:34:50
Updated by marco on 10. Mar 2008 22:08:45
------------------------------------------------------------------------

Updated the "Jass Manual" <https://www.earthli.com/jass/> with a "multi-page,
browsable version" <https://www.earthli.com/jass/manual.php>.

]]></description>
  </item>
  <item>
    <guid>https://www.earthli.com/news/view_article.php?id=135</guid>
    <title><![CDATA[Themes added to Photo Albums]]></title>
    <link>https://www.earthli.com/news/view_article.php?id=135</link>
    <pubDate>Mon, 08 Jan 2001 10:32:07 +0100</pubDate>
    <description><![CDATA[Published by marco on 8. Jan 2001 10:32:07
Updated by marco on 16. Mar 2008 19:57:20
------------------------------------------------------------------------

Added forest, winter and island styles to "photo album"
<https://www.earthli.com/albums> admin area.

]]></description>
  </item>
  <item>
    <guid>https://www.earthli.com/news/view_article.php?id=134</guid>
    <title><![CDATA[Photo Albums upgraded]]></title>
    <link>https://www.earthli.com/news/view_article.php?id=134</link>
    <pubDate>Fri, 05 Jan 2001 10:30:23 +0100</pubDate>
    <description><![CDATA[Published by marco on 5. Jan 2001 10:30:23
Updated by marco on 16. Mar 2008 11:06:27
------------------------------------------------------------------------

Numerous improvements to the "photo album" <https://www.earthli.com/albums/>
site. ("Work Log" <https://www.earthli.com/projects/view_folder.php?id=3>)

]]></description>
  </item>
  <item>
    <guid>https://www.earthli.com/news/view_article.php?id=133</guid>
    <title><![CDATA[Webcam Opens]]></title>
    <link>https://www.earthli.com/news/view_article.php?id=133</link>
    <pubDate>Thu, 04 Jan 2001 10:29:36 +0100</pubDate>
    <description><![CDATA[Published by marco on 4. Jan 2001 10:29:36
Updated by marco on 12. Mar 2008 22:00:49
------------------------------------------------------------------------

Added a "webcam" <https://www.earthli.com/webcam/> site.

]]></description>
  </item>
  </channel>
</rss>
