Jul
22

The First Green Font

For as much as people talk about living green and working in a paperless office, we still use lots of resources. It is amazing how much stuff we still print. All that printing uses lots of power, paper, and something we don’t always think of, ink or toner.

Well, now there is something you and I can do about that last item.

A design company in the Netherlands called SPRANQ has developed a new font based on the Open Source font Vera Sans, and has a series of small holes in the font body. When viewed at a large font size, it it quite noticeable – they say it looks like a ‘Swiss font’ but I think it appears more like an aircraft structural member that has the centers lightened with cutouts. But when viewed at a print size of 10pt, the human eye optically fills in the cutouts and the font appears solid.

When compared to a traditional solid font, it does appear slightly less dense.

According to the designers, it uses 20% less ink than a solid font of a similar style and size. That adds up to quite a savings of resources. Especially if thousands of people use it to print millions of documents.

Head over to http://www.ecofont.eu to view and download ecofont. It’s free to download and use!

posted in Internet on: Wednesday 22 July 2009 - 03:05 AM

May
21

IE - Images Missing in Action!

Internet Explorer continually amazes me.

I was working on a project with a couple of simple floated columns each of which had a div header with a background image. Nothing fancy, just some simple CSS:

.col{
  float: left;
}
.pct33{
  width: 32%;
}
#category1{
  background: transparent url(images/cat1.png)no-repeat;
}
#category2{
  background: transparent url(images/cat2.png)no-repeat;
}
#category3{
  background: transparent url(images/cat3.png)no-repeat;
}

The HTML is pretty straight-forward as well:

<div>
  <div id="category1" class="col pct33">
    <h2>category 1</h2>
  </div>
  <div id="category2" class="col pct33">
    <h2>category 2</h2>
  </div>
  <div id="category3" class="col pct33">
    <h2>category 3</h2>
  </div>
</div>

The problem is that in Internet Explorer the background images refuse to display. If it was version 6, I suppose I could forgive it, but this was version 7!

Expecting it to be related to the well documented float or peek-a-boo bugs, I tried all of the usual hacks to no avail.

Come to find out the thing to fix the problem is the “shorthand” background rule that combines the background-color, background-image, background-repeat into one statement.

Now, this has never been a problem before and usually displays fine. I think it may be the combination of the float with the transparent background… I don’t really know. All I do know is that once I converted the rule to the following, things started to show up:

#category1{
  background-color: transparent;
  background-image: url(images/cat1.png);
  background-repeat: no-repeat;
}
...

So when all else fails, try thinking outside of the box (or tag).

posted in Internet on: Thursday 21 May 2009 - 03:14 AM

Mar
12

maps4me.com Public Beta

How many times have you wanted to know what was going on and had to sort through newspaper listings just to find out that the good stuff was too far away?

Now, there’s a site called maps4me that let’s you see all sorts of fun stuff happening around you and maps it all out for you. Select a category and filter by subcategory to narrow your view down just to what you’re most interested in.

The public beta testing will be running for awhile, so you can be one of the first to try it out!

Make sure you let the fine folks that run that site (wink) know if you have any suggestions to make the site more usable for you or if you run into any issues they should know about – hey, that’s why it’s called “Beta”.

posted in Internet on: Thursday 12 March 2009 - 04:57 AM

Feb
27

Spam H - E - double toothpicks

My last blog ran WordPress which had a built-in comments module. Cool at first but then the spammers found it. Not fun. I think my SPAM/legitimate comment ratio was running something like 200/1.

Spam is not a problem unique to this humble website, but an epidemic upon the vast Web. Scores of spam countermeasures exist including captchas, math problems, and javascript methods all aimed at foiling the spambots from their relentless posting for performance-enhancing-get-rich-while-you-lose-weight offers.

It would be so nice if the Web could have an open conversation and not have to be constantly picking up litter and trash.

I do hope to someday enable commenting on this blog, and when I do, there just may be a solution to the spam… stay tuned!

posted in Internet on: Friday 27 February 2009 - 16:35 PM

Feb
27

OpenDNS to the Rescue

Time Warner Cable has been under Denial of Service attacks for the past 7 days or so and pretty much made the Web a series of “server not found” errors. Every night. For a week now. Sheesh.

They say they are going to work on handling the problem, but who knows how long that will take?

So I took a look at openDNS and I liked what I saw. Lots of admin features and speed. And the best part is that now my TIme Warner service works just fine.

posted in Internet on: Friday 27 February 2009 - 15:33 PM