Planet Open Fonts

July 01, 2009

Dave Crossland

Hitler Jokes

I’m always a sucker for teenage humor:

by David Crossland - July 01, 2009 11:43 AM

June 30, 2009

Dave Crossland

Web Fonts Arrive! Firefox 3.5 is out!

“But we need not wait for epiphanies from those whose paycheck depends on them not having any.” - Dmitri Orlov

Firefox 3.5 is out, and supports web fonts! Grab it from getfirefox.com and tell your friends :-)

by David Crossland - June 30, 2009 07:26 PM

Fontmatrix news

play with the playground

For long time I did not use the playground because it was not as fun and easy to use after all. When I came back to it to add a few features, I thought I could as well make it fun again! I thought that what prevented me to really enjoy this place was the heavy process to get something on screen. Select a font, select a sentence or type it in the line edit and then push the button and Oh! the thing just goes nowhere you want it to be. So, while it still has some flaws, I redesigned it to act much friendly with me.

Select a font, click somewhere and type!

read more

by admin - June 30, 2009 04:03 PM

June 29, 2009

OSP

Pelgrimage to Pragma

Designing with TeX: episode IV Today we drove up North to the headquarters of Pragma in Hasselt (NL), La Place from where ConTeXt, a document markup language and document preparation system based on TeX, is being developed. The goal of the journey was to resolve some of the issues we encounter while designing a multi lingual [...]

by Pierre - June 29, 2009 09:34 PM

Alexandre Prokoudine

Dear GNOME developers…

What happened to Integrated Media Management for GNOME GSoC project? Was there any real code in the end? Is it going to be used? Where? When?

by Alexandre - June 29, 2009 03:15 PM

June 28, 2009

OFLB font releases under OFL

June 27, 2009

OSP

Opening the blackbox of printing

When we began to think about how to establish a more rich and warm collaboration with printers after the cold alerts we experienced during OSP production, Georges Charlier’s appetite for research and openness to exotic solutions reappeared in Pierre’s mind. And since we are preparing some new books, it was time for an update on [...]

by Pierre - June 27, 2009 07:30 PM

June 26, 2009

Dave Crossland

The Core of the Copyfight

Over on the PHD-DESIGN mailing list, Lars Albinsson asked, “In Sweden there is a huge debate on copyrights vs sharing on the Internet. (Swedes managed to both start the Pirate Bay, allegedly the leading peer-to-peer service, as well as introduce very strong regulatory legislation against it.) The trail of the pirate bay people this spring was one of the most internationally covered events in Sweden for years. The pirate lobby also started a political party and managed to get a seat in the European Parliament. There are mainly two sides in Sweden; roughly summed up as: Mainly record companies and some artists claim that the creative industry is dying because of internet piracy; and Other artists, many “intellectuals” and IT industry people claim the internet offers huge potential for creative businesses and people. What are the thoughts on the list about this issue (or issues)?”

As I see it, there are three sides to the “copyfight”: The public, the authors/artists, and the publishers.

Computer networks are built to share data, and the public Internet is the ultimate publishing system. Trying to prevent the public sharing data over the Internet is impossible, unless you create an intrusive police state.

Copyright conceptually starts with everything published being in the public domain. The public then grant authors a limited time monopoly over some aspects of published works in order to encourage publication. Authors do not have a natural right to control their work, this control is granted to them by the public so that the public may benefit. Note that the phrase “intellectual property” is designed to confuse this, suggesting that authors have natural rights akin to physical property rights, and lumping together laws which have almost nothing in common (patents, copyrights, trademarks, database rights, attribution rights, etc). That phrase must be avoided to have a meaningful discussion of the issues it is associated with.

The public used to trade away its natural right to copy published works to encourage the publication of more works, when it didn’t have widespread copying machines. Now that computer networks are here, the copyright bargain makes less sense for most of the public, and it seems they would rather have file sharing - even if this means that there are less works being published, which can not be assumed, although it is asserted by publishers.

Generally the political process of western democracies is dominated by corporate interests, and in this area, by publishing corporations. Therefore while the actions of the public support p2p file sharing, their governments have worked to support publishing companies. The Pirate Party is the end result of this; if the public are disenfranchised by corporate lobbyists enough about some issue, they will start political organisation to oppose the lobbyists.

So the question is, can authors/artists continue to make a living while allowing the public to share complete copies of their works, non commercially, on P2P networks? Or will the public taking back its right to share published works mean that great authors stop publishing new works and do something else?

In 2009 there is plenty of evidence that artists who are independent of publishers can make plenty of money when they respect their fan’s desire to file share; and indeed, there are examples of authors who assert they now make MORE money when the full texts of their novels are posted online.

This leaves little room for publishing companies, since artists are interfacing directly with the market over the net, and since the most famous authors and artists are contractually tied to publishers, as the publishers’ ship sinks, those artists who are going down with them have quite loud voices. However, famous artists are now actively leaving their publishers (Madonna, Radiohead, etc) and implementing the kind of mature and sophisticated “direct marketing” to monetise their works that newer artists who weren’t able to get publishing contracts have been perfecting.

Here in academia, the question is, can academics make a living while allowing the public to share complete copies of their articles, non commercially, on the web?

I suggest that they can.

A quick example: Orion Magazine just came to my attention today (having published an article - in full - about the Transition Towns movement, which I’ve recently started participating in) and the footer of each page explains: “Orion publishes six thoughtful, inspiring, and beautiful issues a year, supported entirely by our readers – we’re completely ad-free!”

Journalists and other professional authors will continue to exist, but their publishing companies and newspapers probably won’t. Many people are now professional bloggers, paid by donations directly sent by their readership and advertising.

(Many thanks to my friends Richard Stallman, who gave a speech titled “Copyright and Community in the Age of Computer Networks” at my undergraduate university in 2004 about these issues, and my dear departed friend Fravia who also practiced what he preached. Thanks also to the countless other thinkers associated with the copyfight who I do not personally know but whose works I have read :-)

by David Crossland - June 26, 2009 08:49 AM

June 25, 2009

OSP

Adjustment of a bone under the skin

Last LGM and its typographic excitements has brought the DIN – Das Ist Norm – Loch Ness project to the surface of the Saint Laurent river again in a discussion with Denis Jacquerye from Deja Vu. Back in Brussels, we meet Denis in the temporary OSP Studio at Rue de la Senne to begin to [...]

by Pierre - June 25, 2009 11:20 AM

June 24, 2009

Ben Weiner

PHP regular expression failing silently due to output buffering

I just had a problem where this regexp worked for finding the option with value 'foreign-relations' but not for finding 'economy':

'#(name="Section".*<option value="(.*)" selected="selected">.*</select></p>)#s'

The result was the dreaded PHP blank page. With no errors logged.

This fixed it:

'#(name="Section".*<option value="([\w\s-]*)" selected="selected">.*</select></p>)#s'

The second version is more specific about what string will match in the value attribute and I think that when specified with .* the match filled up the entire PHP memory buffer. If so, it wasn’t logged as an error and that could be because the code here is executed in ‘output buffering’ mode, following an ob_start() call. A guess, but if I am right that might help to avoid a lot of aggravation in future. [nb PHP: not providing error output is Bad.]

Corrections to this assumption welcome!

by noreply@blogger.com (Ben Weiner) - June 24, 2009 01:11 PM

June 22, 2009

OSP

Cookbook Launch

22 June, 16:00 @ Puerto, Varkensmarkt 23, Brussels Join us this afternoon for the long awaited festive launch of the Puerto Livre de Cuisine Kookboek: 70 delicious recipes, written, translated (Dutch and French) and illustrated in collaboration with the inhabitants of Puerto. Puerto is an organisation working from the center of Brussels, where they generously [...]

by Yi - June 22, 2009 05:56 AM

June 17, 2009

Nicolas Spalinger

17 Jun 2009

open fonts and mobile devices

The availability and use of all kinds of mobile devices is growing like crazy but what about fonts on these devices?

What happens when the default set shipped with the particular OS is not good enough for you? When the fonts simply look ugly to you or don't provide sufficient support for a language and the corresponding writing system you're using, or you really really want a specific design? You may happen to use the device as an e-book-reader, something to read RSS feeds, do blogging, drawing or whatever, you might also use it as some kind of literacy primer digital chalkboard...

Basically you own the device and you want to enjoy or create content with your preferred font (an open font or not) and not be dependent upon the decision of the creator of the device who may not care about your needs in that area. If you agree that malleability of a device includes choosing and being able to install and use your own font then all devices are not equal: sometime the device makes it very easy, sometimes you have to fight it, hack aggressively the filesystem, reflash, and sometimes you're just stuck. Let's hope that the device makers will come to see the value of allowing end-user font changes. With the pressure of open mobile platforms we can hope the current status quo will improve.

  • Nokia Internet tablet: flashable, open architecture based on the Maemo which is itself based on Debian components (with only a few restricted components): you easily get access to the filesystem, you can install a terminal application then simply add your font to ~/.fonts and fontconfig will allow you to see it in all the apps. There are also font packages available in the repositories, you can install various browsers, future versions of these browsers will support @font-face.

  • Android: flashable, open architecture, the Droid font family was commissioned to ship with the device, it's an open font and is hosted under DVCS alongside the rest of the Android source code. The browser based on webkit supports @font-face. You can push new fonts only as part of an application but you don't have access to the system fonts folder. You need to go through the SDK or a dedicated image to push the fonts you want.

  • OLPC: flashable open hardware and open architecture with a gorgeous screen resolution and a nice ebook mode: the distros running on the OLPC already include a good selection of open fonts, with more in the repositories and you can just put your desired fonts in ~/.fonts/ and fontconfig will do its thing.

  • Kindle: restricted platform (some patches to the libraries making up the OS are apparently now available but not the system itself): no end-user UI to add new fonts, you need to use a unofficial hack to flash it with a custom image to add fonts with better Unicode coverage. I don't know about the browser features.

  • Iphone: very restricted platform, a jailbroken one allows access to the filesystem to add new fonts to /System/Library/Fonts/Cache/ and you need to tweak the plist by hand but the browser supports @font-face.

  • Blackberry: very restricted platform, themes can change the fonts and there is apparently a font folder exposed /system/fonts but putting fonts in there doesn't do anything. Meh.

  • the various Netbook distros: Ubuntu Netbook Remix, Moblin, etc all these very nice open platforms give you access to the repositories where we already maintain packages for various open fonts. And fontconfig is there too so just a copy into ~/.fonts is fine. The browser with support for @font-face will be easily available.

  • Sony reader: restricted platform. But apparently a /FONT folder in the filesystem is exposed allowing to add new fonts. Again you need to tweak the settings by hand. No browser is seems.

June 17, 2009 04:00 PM

17 Jun 2009

@font-face with Mozilla Firefox 3.5

John Dagget of mozilla has written a good article about various technical aspects of using webfonts with Firefox.

In his example he uses quality open fonts such as Gentium, Scheherazade and MgOpen Moderna. Another font used as an example is Grau Blau Sans: a freeware-don't-modify font but with explicit clauses in its EULA to allow webfonts usage.

June 17, 2009 01:38 PM