We Are Soldiers We Have Guns and Tada Tátà

Saw two very nice bands on Friday at a Cosy Den event in Gothenburg:

We are soldiers we have guns

Tada Tátà

Posted in General | Leave a comment

John le Carré on Iran

For the full interview, visit Democracy Now!

Mark Curtis has written about Britain’s involvement in Iran: The coup in Iran, 1953

Posted in General | Leave a comment

The Return of the Public

Dan Hind on ‘serious’ news, from his excellent new book The Return of the Public:

When ‘serious’ coverage becomes more unreliable the more important the subject under investigation is, much of the population refuses to take it seriously enough to watch it or to read it. Some of them turn instead to entertainment, celebrity and crime. This is hardly surprising, although it does provoke agonized comment from politicians and journalists who worry about the low intellectual capacities of the masses. A refusal to sit still and be told tall stories thus becomes evidence for a mass flight from maturity into the fairytale world of celebrity and talent shows. But the resort to trivia makes perfect sense in an environment where the sources claiming to offer reliable information do nothing of the sort.

And on the media’s reporting of business influence in our lives:

In 2006 the Joseph Rountree Charitable Trust and the Joseph Rowntree Reform Trust published a wide-ranging review of Britain’s political economy. After a long and exhaustive consultation process the report noted that the ‘research and evidence displays that many people feel business has too great an influence over government at the expense of the “ordinary” citizen’. … In media coverage of the report, which included extensive write-ups in the Independent and the Guardian and summaries of its findings in the Daily Telegraph, the Sunday Telegraph, the Observer, The Times, the Sunday Times and the Financial Times, the view that business had excessive political power did not feature.

You can read an interview with Dan Hind on the New Left Project website.

Posted in Quotes | Leave a comment

Helvetica on Firefox: Overriding Fonts with CSS

Update (2011-01-08): Updated for Google Chrome.

I’ve recently had trouble reading sites which use the Helvetica Neue font. With Firefox (and with Chrome) running on Windows, this font gets rendered in a way which makes reading very difficult. See the screenshot below for an example.

Helvetica Neue on Windows, Firefox 4 beta 6
screenshot of Twitter page showing hard to read Helvetica Neue font
Same page but with Arial used in place of Helvetica Neue
screenshot of Twitter page showing hard to read Helvetica Neue font

Many others have experienced the same problem—for some the use of Helvetica produces even stranger results.

So why aren’t more people talking about it? Well, according to Code Style, only 1.65% of Windows users have the Helvetica Neue font installed compared to 95.78% of Mac users. Anyone who doesn’t have the font installed will see either Arial or another sans-serif font. But what about those of us who do it have it installed?

With CSS’s @font-face rule it’s possible to override a website’s choice of font and replace it with whatever you prefer:

@font-face { font-family: 'font to replace'; src: local('local font'); }

To replace all instances of Helvetica Neue with Arial:

@font-face { font-family: 'helvetica neue'; src: local('Arial'); }

If you apply this last rule to all sites you visit, you’ll always see Arial instead of Helvetica Neue. To do this in Firefox, I recommend installing the Stylish add-on and then my Kill Helvetica style. The Stylish extension is also available for Chrome, but in Chrome Stylish user styles get applied after the page has loaded (which means you’ll see the badly rendered fonts while the page is loading).

For even more flexibility, and especially for Chrome users, you can apply these styles without installing any add-ons. Both browsers override page styles by referring to a user stylesheet. In Firefox, you can add the rule to the userContent.css file. In Chrome, it’s the Custom.css file (on Windows, this will be at appdata\Local\Google\Chrome\User Data\Default\User StyleSheets\Custom.css). In Chrome, user styles in Custom.css are applied immediately so there’s no delay.

For Firefox users, Tito Bouzout’s Font Replacer add-on uses this method but lets you specify the fonts to replace without making you write the CSS yourself.

Posted in General | 8 Comments

Princess Cake

Last week was apparently Princess Cake week (Prinsesstårtans vecka) in Sweden. It’s one of my favourite cakes here and not so difficult to make at home (especially if you live in Sweden as you can buy most of the parts already made). Here’s a nice video from Linn showing how to do it:

You can find a recipe here: Cheering up with a princess cake in a cold Sweden.

Posted in General | Leave a comment