An introduction

This is a semi-public place to dump text too flimsy to even become a blog post. I wouldn't recommend reading it unless you have a lot of time to waste. You'd be better off at my livejournal. I also have another blog, and write most of the French journal summaries at the Eurozine Review.

Why do I clutter up the internet with this stuff at all? Mainly because I'm trying to get into the habit of displaying as much as possible of what I'm doing in public. Also, Blogger is a decent interface for a notebook

Sunday, June 19, 2011

Sexy gadgets

Jonathan Franzen stumbles on a parallel between 'sexy' as applied to humans and to gadgets: it's inherently one-sided:

Do I need to point out that — absent some wild, anthropomorphizing projection in which my old BlackBerry felt sad about the waning of my love for it — our relationship was entirely one-sided? Let me point it out anyway.

Let me further point out how ubiquitously the word “sexy” is used to describe late-model gadgets
...
Let me toss out the idea that, as our markets discover and respond to what consumers most want, our technology has become extremely adept at creating products that correspond to our fantasy ideal of an erotic relationship, in which the beloved object asks for nothing and gives everything, instantly, and makes us feel all powerful, and doesn’t throw terrible scenes when it’s replaced by an even sexier object and is consigned to a drawer.

Wednesday, June 15, 2011

Multiuser screen

To make a screen multiuser:

-a : multiuser on

You can also include _multiuser on_ in .screenrc to make all screens start multiuser

Then you connect to it with screen -x

Thursday, June 9, 2011

Mongol tolerance


The Mongols, famously, were not much interested in religious conformity. People who managed to avoid being massacred during the Mongol invasions were at least unlikely, subsequently, to be persecuted for their religious beliefs. What interested the Mongols was that holy men of all religions should both pray for the Khan (for there was no knowing who might have the best hotline to heaven), and, at least as important, provide the regime with access to their specialist skills. The Mongols were nothing if not pragmatists.

-- David Morgan (?) in the TLS

[you hear this a lot. I do wonder how psychologically true it ever was]

Donations and university admissions

Large donations to prestigious universities, so goes the common belief, will help your offspring get places there.

The universities deny this with varying amounts of vigor.

The rumour, though, probably does them no harm at all. If the rumour were mostly baseless, they would be in the best possible position. They can whip up donations with the belief, and not be constrained to live up to their not-quite-promises.

Such is the benefit of being a powerful player in an illegal market, where most of the other participants will only play once, have poor information and jdugment often clouded by emotions.

[vaguely in rsponse to Tyler Cowen, and more indirectly to the New College of the Humanities]

Tuesday, June 7, 2011

This is fantastic, and fantastical. It's something like the origin myth of k-punk, in a self-consciously edgy philosophy sub-faculty over-exposed by Simon Reynolds:


Still nominally affiliated to the famously poststructuralist Philosophy Department of Warwick University, England, the Cybernetic Culture Research Unit is a rogue unit. It's the academic equivalent of Kurtz: the general in Apocalypse Now who used unorthodox methods to achieve superior results compared with the tradition-bound US military. Blurring the borders between traditional scholarship, cyberpunk sci-fi and music journalism, the CRRU are striving to achieve a kind of nomadic thought that to use the Deleuze & Guattari term—“deterritorializes” itself every which way: theory melded with fiction, philosophy cross-contaminated by natural sciences (neurology, bacteriology, thermodynamics, metallurgy, chaos and complexity theory, connectionism), academic writing that aspires to the future-shock intensity of jungle and other forms of post-rave music.

Thursday, May 19, 2011

stdout.be argues that shortage of metadata is specifically an internet problem:

It’s kind of humbling to see that even a quarter of a century ago, news formatted in International Press Telecommunications Council standards like IPTC 7901 , NITF or NewsML had more metadata associated with it than a lot of websites of today.

The “big blob of text” phenomenon we’re stuck with now wasn’t caused by newspapers sticking to their old, wary ways, but by the transition to a new medium, the internet.


via the mojo list

Tuesday, May 17, 2011

I've seen things you people wouldn't believe

There's a quote from Blade Runner which has long irritated me. It's sampled in some Juno Reactor track, and so slides into my subconsciousness every time I try to zone in/out with the trance:

I've seen things you people wouldn't believe. Attack ships on fire off the shoulder of Orion. I watched C-beams glitter in the darkness at Tannhäuser Gate.


Out of context, it just seems so petty. You're describing the wonder and immensity of the universe, I thought, and this is the best you've got? All the cosmos can offer you is the pretty pictures? It's the equivalent of dropping acid, then just admiring the hallucinations as pieces of theatre.

I was planning a blogpost to that effect.

Then I looked up the video, and suddenly I'm a convert:


I probably shouldn't try to put the effect of the clip into words. Suffice it to say, all is forgiven. This isn't somebody bragging, it's the hopeless attempt to telegraph into dying breath the most intense moments of a 'lifetime'. The machine will not communicate -- it can't, any more than a human can verbalise hir innermost thoughts. But there's glory in the attempt.

Removing whitespace with sed

Use sed to remove leading whitespace:

sed 's/^[ \t]*//'


The particular reason I want to do this is to turn my todo-list (a tree of tasks, marked off by when i completed them), into a sorted record of what I've done on a particular day. In other words, I want to go from this:


Code
Thule
OED javascript
other tasks
2011-04-17 16:57:33 Sort out markdown for vim 45m
blah
Thing I haven't done


To this:

2011-04-17 15:58:32 update blog with more cmds 3m
2011-04-17 15:58:59 modify timestamp to include date 20m [,,T,,D wil do for now]
2011-04-17 16:57:33 Sort out markdown for vim 45m
2011-04-17 17:39:04 [email to ejc about resources for journalists


Which can be done by removing whitespace, limiting to lines containing dates, and sorting


$ cat todo/todo.otl| sed 's/^[\t ]*//' | grep 2011 | sort

Monday, May 16, 2011

mode function in python

Oddly, there seems to be no mode function in the python standard library. It feels like something that should have an optimized C version squirreled away somewhere. 'Mode' is too ambiguous to be easily searchable, alas. Anyway, here's a version that should be reasonably fast


from collections import defaultdict
def mode(iterable):
counts = defaultdict(int)
for item in iterable:
counts[item] += 1
return max(counts, key = counts.get)


Should be reasonably fast (for pure-python), though could eat up a lot of memory on an iterable contaning large items.

back to the future with ellis

Warren Ellis is on an urbanism/retrofuturism jag:
the real world was always moving faster than science fiction: it’s just that back then the real future was broadcasting at 4.20 in the bloody morning and no-one was around to see it.

[more]

Saturday, May 14, 2011

Firefox switch to tab

FF4 has a feature by which, when you try to open a second copy of a page, will flip to the existing tab rather than re-opening it.

This drives me crazy.

I usually have several dozen tabs open, across multiple screens, some not visible. When I re-open a tab I want it to appear right in front of me. Not (as happens now) to be brought to the front of a window I can't even see.

this blogpost offers some solutions, most of which don't seem to work.

What does seem to work is adding some junk to the end of the url. A hash should do it, or in extreme cases a hash followed by some random characters.

Friday, May 13, 2011

More B&T

More B&T:

BRIC - MIST - MAYHEM: "the creation of random geopolitical blocs is kind of fun. I mean, if you group Mexico with Afghanistan, Yemen, Haiti, Egypt and Moldova then you have MAYHEM; as indeed you do."

Libyan nukes:

Actually, come to think about it there seemed to be a fair amount of ritual involved in Libya giving up its nuke programme.

Step one: Libya buys a bunch of stuff from the Khan network

Step two: Libya hands it over and renounces its programme

Stepo three: Welcome to the international community! Here's a guy we jugged earlier.

I always wondered if step one was taken in anticipation of taking step two.


On Torygeddon

it's important not to get paranoid about this. Just because the management of the economy resembles something from a political science textbook about the period of destabilisation engineered to lay the groundwork for a coup doesn't mean that it's actually happening that way.


On Tunisia: "It obviously wasn’t a twitter revolution, or a wikileaks one for that matter. It was a "man burning himself alive in despair" revolution. The only thing digital about it was when he flicked his bic"

Empire numerology: "So, Britain as superpower, 1759-1945. US as superpower, 1919-2008. USSR as superpower, 1945-1989. Clearly there's a pattern here; each new power lasts approximately half the length of its predecessor. ..Unfortunately, this only gives the Chinese from 2008-2033 or thereabouts. Which sounds about right for a really serious demographic/elite incompetence crisis. India and Brazil only get 12 or 6 years, and at some point in the 2050s the world order starts to move like a singulatarian's fantasy"

Tuesday, May 10, 2011

Quickly creating a shell script

Suppose you want to create and run a short script. It's often faster not to bother opening up a text editor. Instead, use shell history to write a file, then chmod and execute it:


$ cat > /tmp/me.py
#!/usr/bin/env python
print('hello world')
$ chmod a+x !$
chmod a+x /tmp/me.py
$ !$
/tmp/me.py
hello world
$

Sunday, May 8, 2011

Qatar arms to Libya

The New York Times reports that:
for the first time, Qatar put the question of supplying arms to the rebels on the table, but no agreement was reached.


Well, not really for the first time. Qatar has been pushing for arms shipments to the rebels for a long time:
"If they will ask for weapons, we're going to provide them," the amir, who is on a visit to the United States, told CNN in an interview. [xinhua, 15 April]


And the New York Times itself has reported on the rebels receiving foreign weapons, and speculated that Qatar is one source of them.

Saturday, May 7, 2011

Kenneth Rexroth

Bruce Sterling, Kenneth Rexroth. Rexroth was columnist in the San Francisco Examiner, through the 1960s. Elegant, thoughtful, panoramic. While I don't quite share Sterling's enthusiasm ("there are no blogs this good"), there's good stuff here:
Looking back, it seems now that most of our crises have been crises of talk. We have been able to take it out by abusing each other. That is just dandy. Nobody pushed those banks of buttons over the U-2. The Chinese have not invaded Laos or Taiwan. The Marines have not landed in Cuba. The Congolese seem to be tiring. The UN proved able to cope with Khrushchev.

Who knows? We may talk ourselves out of the woods yet.

Friday, May 6, 2011

vim: firefox-like tab controls

I approve of this tip to make tab navigation in vim the same as with firefox. Life is too short to memorize multiple sets of commands.

:nmap :tabprevious
:nmap :tabnext
:map :tabprevious
:map :tabnext
:imap :tabpreviousi
:imap :tabnexti
:nmap :tabnew
:imap :tabnew

following irc with inotail

Being always in a several irc channels, it's helpful to have an overview of what's going on without tabbing through a dozen windows. Fortunately I can follow the logs using inotail:


$ find /home/dan/.purple/logs/ -name "`date +%F`*" | xargs inotail -fv


This would also work with tail -- the only problem is that _tail_ with so many files would put some strain on the filesystem.

Getting server messages via irc

irccat is a bot designed to facilitate sending server messages to an irc channel


The irccat bot joins all your channels, and waits for messages on a specified ip:port on your internal network. Anything you send to that port will be sent to IRC by the bot. IRCCat - as in, cat to IRC.

Using netcat, you can easily send events to irc from shell scripts:

echo "Something just happened" | nc -q0 somemachine 12345


That will send to the default channel only (first in the config file). You can direct messages to specific combinations of channels (#) or users (@) like so:

Wednesday, May 4, 2011

playing mp3s in orer

I often use mplayer to play all files in a directory:
mp ./*


*mp*, by the way, is simply an alias for mplayer, used to play things faster and with speed control:


$ which mp
mp: aliased to mplayer -speed 1.21 -af scaletempo=speed=tempo



But what if I want to play them in date order? (useful to replay a stream with streamripper). I need a shell loop. A for loop will choke on filenames with spaces
:

$ for i in `ls -tr`
do
mp "$i"
done


A while loop seems to give me some problem of mplayer reading too much from stdin:

$ ls -1tr | while read i
do; mp '$i'
done


So I end up using an array:

$ mp3files=( ./*mp3 )
$ for d in "${mp3files[@]}"; do
mp "$d"
done


phew! that was far too much work

urban agriculture

Via robokow, news of plant cultivation in an old IBM typewriter factory:

The location for the first commercia nursery in the world in an office is the former IBM typewriter factory on Johan Huizinga Avenue. The large factory building has already been empty for eleven years


It goes without saying that this is an area where the cannabis cultivators have a *big* headstart :)

Stuxnet under the bed

Botnets are convenient enemies, providing justification for the introduction of spyware and restrictions on computers.
Walter and Amelia have good posts on the subject, particularly in South Korea.

South Korea, it seems, is further along a path that can be expected also in Europe and elsewhere. The country's infrastructure has repeatedly been attacked by botnet-fuelled DDoS. These attacks strengthened demand for official regulation:

Popular support is rising for a helpful Zombie PC Act giving a government-controlled authority the mandate to access and scrutinize commercial, official and private datasystems. The authortity will help the government determine if the system is infected by any potential virus. Lacking appropriate anti-virus software shall, according to the bill, lead to repercussions.


That is, there would be a requirement for official intervention in every computer. With intervention comes inspection. And thus, the threat to alarm the paranoid -- a sideways approach by which governments could seize computers. Walter:

Your computer may become a target for a serach (and seizure) just because it is a computer. The cherry on the cake is of course that we also should expect governmental bodies to take enough care that backdoors installed for this very purpose will not be abused by those very nefarious people, the Zombie-operators, it aims to fight. To quote Top Gear: what could possibly go wrong?


ETA: Amelia has another post, laying all this out much more clearly.

Friday, April 29, 2011

To joyfully watch the fumbling coalescence as a community becomes self-aware


He had the sense, at the moment, of groping for intellectual support, of casting about and dimly receiving a hint here, a hint there. Like a radio technician delicately picking signals out of background static, he'd learned to recognise voices worth listening to, voices that meant something distinct even when they ued hte same compulsory words as everyone else. Here and there, people were speaking with secret passion


-- Francis Spufford, Red Plenty p.65

Friday, April 22, 2011

Cory Doctorow on the joys of writing for teenagers:

That's one of the most wonderful things about writing for younger audiences — it matters. We all read for entertainment, no matter how old we are, but kids also read to find out how the world works. They pay keen attention, they argue back. There's a consequentiality to writing for young people that makes it immensely satisfying. You see it when you run into them in person and find out that there are kids who read your book, googled every aspect of it, figured out how to replicate the best bits, and have turned your story into a hobby.
...
young people live in a world characterized by intense drama, by choices wise and foolish and always brave. This is a book-plotter's dream. Once you realize that your characters are living in this state of heightened consequence, every plot-point acquires moment and import that keeps the pages turning.

Wednesday, April 20, 2011

Next in the continuing saga of Rolling Stone printing surprisingly good long-format journalism: The Stoner Arms Dealers.

Packouz was baffled, stoned and way out of his league. "It was surreal," he recalls. "Here I was dealing with matters of international security, and I was half-baked. I didn't know anything about the situation in that part of the world. But I was a central player in the Afghan war... It was totally killing my buzz. There were all these shadowy forces, and I didn't know what their motives were. But I had to get my shit together and put my best arms-dealer face on."


The author, Guy Lawson, seems to have written a string of in-depth articles on international crime in Rolling Stone.

Although you suspect Rolling Stone is also dropping serious money on lawyers, to let them say things like:

The Albanians cut him out of the deal, informing AEY that the repackaging job would be completed instead by a friend of the prime minister's son. What Trebicka had failed to grasp was that Thomet was paying a kickback to the Albanians from the large margin he was making on the deal. Getting rid of Thomet was impossible, because that was how the Albanians were being paid off the books.


I suspect part of the reason Rolling Stone can support this kind of journalism is that they force their writers to be entertaining. Not only does this mean people read and appreciate the long-form articles (and thus build demand for more of them), but it forces the writers to properly get to grips with their subject.

Monday, April 18, 2011

open matching in vim

To open in vim all files matching a regex:
$ grep -l foo ./* | xargs vim -p

Forced-labour asparagus

Adrian Mogos describes the use of forced labour in Central European. They were producing food for Tesco, among other outlets:

Corina says they worked in the fields under Ukrainians carrying shotguns who hit anyone that dared ask about the wages they’d been promised or protested over the conditions and hours.
Around 400 hundred men and women were kept working around the clock, sleeping in a dormitory, and they were not allowed to leave the fields unless their Ukrainian bosses transferred them to constructions sites or slaughterhouses.
...
After two months of working for free under these armed guards, Corina knew she’d never get any money. When she and her husband protested, they threatened to sell her off to a pimp to work as a prostitute in Prague. Finally, she, her husband and one brother-in-law fled the camp by night in the summer of 2008.

Sunday, April 17, 2011

vim outliner (snippet)

Vim has a plugin for outlines, clearly described here. Create a file with the extension otl, and you'll get some visual help in managing an outline.

Whitespace denotes indentation level, colons mark text content. It builds on the vim folding commands:

  • zc: collapse hierarchy

  • zo: expand hierarchy one level

  • zO: expand hierarchy all the way

  • [z: move to header (]z move to next header]



There are also some commands specific to vimoutliner. these are introduced with a double comma, and listed in the documentation

Finally, it's possibe to get ascii checkbox functionality, a little like emacs org-mode. This requires installing a plugin-for-the-plugin, and I've not yet tried it. Details in :help vimoutliner

The real get out of my head command is this perfect incarnation of my own notation for marking tasks as done:

,,T normal Pre-pend timestamp (HH:MM:SS) to heading

Friday, April 15, 2011

HTTP authentication (snippet)

And the reason for that faff is to start using this blog more to keep track of snippets of code and config that I'm constantly re-using. That is, the things you have half inside your head anyway, but need to look up exactly what the command is.

One from today: setting up basic HTTP Authentication with Apache:


vps:/etc/apache2/sites-enabled# htpasswd -c /etc/apache2/anaad.passwd admin
New password:
Re-type new password:
Adding password for user admin



edit .htaccess:

AuthType Basic
AuthName "Anaad"
AuthUserFile /etc/apache2/anaad.password
Require valid-user

Syntax Highighting

Whenever I try to put code snippets up here, I end up frustrated that they turn up deprived of any highlighting. So I've tried following these instructions to fix things. With luck, this post should be an example ;)

So this goes in <head>:




And for the highlighted text you have 2 options.

First is with <pre> tags:


or a slightly more longwinded version, which provides for escaping of html tags:


<script type="syntaxhighlighter" class="brush:html"><![CDATA[ <a href="http://exampe.com/blah">blah</a>]]</script>


This, alas, interacts badly with blogger's pre-posting HTML validation. It's easier to handle the escaping from the command-line beforehand:


$ xclip -o | perl -MHTML::Entities -ne 'print encode_entities($_)' | xclip

Monday, April 11, 2011

The education scam

Oh boy, I find myself agreeing with Peter Thiel:

Instead, for Thiel, the bubble that has taken the place of housing is the higher education bubble. “A true bubble is when something is over-valued and intensely believed,” he says. “Education may be the only thing people still believe in in the United States. To question education is really dangerous. It is the absolute taboo. It’s like telling the world there’s no Santa Claus.”

Like the housing bubble, the education bubble is about security and insurance against the future. Both whisper a seductive promise into the ears of worried Americans: Do this and you will be safe. The excesses of both were always excused by a core national belief that no matter what happens in the world, these were the best investments you could make. Housing prices would always go up, and you will always make more money if you are college educated.

Thursday, April 7, 2011

Gambling in Azerbaijan

RFE/RL:

The ban on gambling dates back to a 1998 scandal involving the current president of Azerbaijan, Ilham Aliyev. Media reports claimed that he lost up to $6 million to a Turkish businessman while gambling in a nearby country.
Aliyev's father Heydar, then president of the oil-rich country, denied the charges and promptly banned casinos and gambling activity in a morality drive.

Monday, April 4, 2011

Sally Bowles wakes up screaming

Sheila O'Malley is still one of the most powerful writers around:

And so when Liza Minnelli sings "Life is a cabaret, old chum," there is a crazy hope behind those glittering scary eyes. The world is about to end. Everything is about to fall apart. Bowles has been in bed with the wrong people. The waking-up-screaming is coming, but until that day? She plants her legs wide apart on that empty stage, and wails out her life force, defiantly declaring her belief that the party was worth it. In a strange way, Minnelli's version can be seen as a triumph. At least from Bowles' perspective. That's why it's such a good performance. It's complicated. There are no easy answers. Bowles launches herself, willfully, above the horror in that moment, and insists—she insists, all evidence to the contrary, that life IS a cabaret. She will not have it any other way. But when you think about the wider picture of what is happening in Europe at that time, that mindset becomes disgusting, soulless.

Friday, March 25, 2011

Small change and a nosebleed

Smaller bits stolen from B&T:

dsquared: "If you look at really durable dictatorships they're nearly always mass membership political parties."

Russian TV: "Assuming that everything on reality TV is fake seems to me less a product of Soviet cynicism and more robust common sense, butcalling your reality TV company "Potemkin Productions" is a nice touch"

One sub-point of Paul Mason's revolution-analysis tour de force: "are we creating a complete disconnect between the values and language of the state and those of the educated young? Egypt is a classic example - if you hear the NDP officials there is a time-warped aspect to their language compared to that of young doctors and lawyers on the Square. But there are also examples in the UK: much of the political discourse - on both sides of the House of Commons - is treated by many young people as a barely intelligible "noise" - and this goes wider than just the protesters.

As Sudanese police lure activists to a fake 'protest', and arrest them: "any calculation of the actual effect of social media on protest comes down to the question "how smart are the local cops?"'

Zombies are workers, vampires are aristocrats, werewolves are yokels -- what are the middle-class monsters? Answers: possessed people, doppelgangers.And:

Haunted houses might factor in there too - is there anything more fundamentally middle-class than the desire for home ownership even though it might eat you?

Wednesday, March 23, 2011

Censors to the left of them, censors to the right of them

This is a relevant point in terms of Western criticisms of Chinese censorship. The ultra-nationalists are being censored as much as the liberals, and when did you last hear an NGO earnestly complaining about that?


If you went to websites such as KDnet, you get the liberal viewpoints; if you went to websites such as WYZXSX, Strong Nation or Iron Blood, you get the ultra-nationalistic viewpoints.

Neither of these groups are actually supportive of the government. Tha Nationalist forums are hostile to what they perceive as westernization but also think that the CPC are a bunch of softies for not invading Taiwan right now. And like liberal or reformist opinion, nationalist expression is also liable to censorship.

Monday, March 21, 2011

Egypt arming Libyan rebels

WSJ:

Egypt's military has begun shipping arms over the border to Libyan rebels with Washington's knowledge, U.S. and Libyan rebel officials said.

The shipments—mostly small arms such as assault rifles and ammunition—appear to be the first confirmed case of an outside government arming the rebel fighters


Compare this to Robert Fisk's piece from a fortnight ago,

the Americans have asked Saudi Arabia if it can supply weapons to the rebels in Benghazi. The Saudi Kingdom...has so far failed to respond to Washington's highly classified request...
But the Saudis remain the only US Arab ally strategically placed and capable of furnishing weapons to the guerrillas of Libya.


I guess either the Saudi request got nowhere, or at least has only happened behind the scenes. Besides, whatever Fisk thinks, Egypt is obviously better placed to move weapons into the East of Libya


The WSJ also has some interesting comment on the various positions among Arab states:

Lebanon took a lead role drafting and circulating the draft of the resolution, which calls for "all necessary measures" to enforce a ban on flights over Libya. The United Arab Emirates and Qatar have taken the lead in offering to participate in enforcing a no-fly zone, according to U.N. diplomats.

Libyan rebel officials in Benghazi, meanwhile, have praised Qatar from the first days of the uprising, calling the small Gulf state their staunchest ally. Qatar has consistently pressed behind the scenes for tough and urgent international action behind the scenes, these officials said.

Qatari flags fly prominently in rebel-held Benghazi.

Thursday, March 17, 2011

Egypt and the intellectuals

I've not found any English translation online -- here's part of the German version from the FAZ, via the Egyptian-German Network on Facebook:

Die Revolution geht weiter. Das Ringen zwischen den verschiedenen Strömungen ist jetzt auf seinem Höhepunkt. Die einen wollen den Fortbestand des Mubarak-Regimes, nur mit neuen Gesichtern. Die anderen wollen die Revolution, eine Revolution der blühenden Bäume, die sich mitten auf den Plätzen bewegen und ihren Duft überall verströmen.
Wo steht Amerika? Wo steht Europa? Das weiß keiner so genau. Wahrscheinlich unterstützen sie immer noch das Mubarak-Regime, allerdings mit einem großen Kulissenwechsel und mit kleinen, winzigen Schrittchen in Richtung Entwicklung. Heute mögen sie wohl gerade mit Spezialisten aus Hollywood verhandeln, die sich auf den Bau politischer Kulissen verstehen. Oder mit dem Regisseur des Spielfilms "Wag the Dog - Wenn der Schwanz mit dem Hund wedelt".
Und hier setzt die Rolle des Intellektuellen ein. Er muss Licht werfen auf die Details und Entwicklungen der Konterrevolution. Der Kampf wird noch lange dauern. Aber diesmal wird er nicht überdeckt sein von einer Schicht aus Propaganda, mit der die Anführer versuchen, ihre Ziele hinterhältig durchzusetzen. Vielleicht wollen sie die Wildtaube töten, bevor sie aus dem Ei schlüpft. Vielleicht versuchen sie, die Wurzeln wieder festzusetzen, damit sie ihren Mund nicht noch einmal aufmachen. Aber was, so frage ich Sie, was machen sie mit dem Duft von Zitronen und Äpfeln und Freiheit?

Avoiding hate figures

It's common to talk about dictators' personality cults, but maybe that's just because they don't work?


The second [reason China won't follow Egypt] is the lack of personality cults, and of criticism of the top leadership. China's done a very, very good job of keeping the foibles of the top leaders out of the public eye, for the most part; gossip about the central leadership and their families is extremely restricted. Without a clear dictator, there's a lack of focus for rage.


This is tedium as insulation against protest. China's got it, Europe's got it, so does the world business elite if you want to count that as a regime.

Tuesday, March 15, 2011

Against the referendum

In Egypt, the protest movement is mainly calling for a no vote to Saturday's referendum on constitutional amendments:

The upcoming referendum on the proposed amendments to the Egyptian constitution, scheduled March 19th, gives people a sense that the revolutionary process is reaching its end. The limited scope of the amendments, the majority dealing with electoral matters (such as presidential term limits, reduced length of the president’s term, judicial oversight of elections…), imply that the 11 men of the amendment drafting committee were not attempting to upend the existing order, but were attempting to establish a legal framework for the transition from Mubarak’s rule.

Yet, over the last few days, the legal community – including human rights lawyers, law professors and lawyers in general practice – has begun to coalesce around a consensus in favor of completely rewriting the constitution as the necessary next step in the political process. Many legal professionals believe that the amendments represent a dangerous step backward. As a result, many in the legal community have begun to organize a call for the referendum to be scrapped and/or for people to cast a “no” vote in protest to the entire process.


[not sure how representative this position is, but it's one I'm running into a great deal online]

Monday, March 14, 2011

Spanish Bombs

At Arabist, Abu Ray has a powerful account of the view in Libya from the rebels' side:

“It is just like the Spanish Civil War,” said Raoul, a Spanish TV journalist, “like Homage to Catalonia.” Benghazi in this scenario becomes civil war Barcelona, with an exuberant explosion of revolutionary thinking and fervor that is eventually crushed under the boot of the fascist armies after it turns out enthusiasm doesn’t beat out lots of equipment on the front.

Saturday, March 12, 2011

"Why yes, I am God" -- Great Firewall edition

The Joy of Censorship:
It must be an immensely satisfying job being a Chinese net censor, at least in an oversight role. 450 million people surging hither and yon across multiple platforms intent on a dizzying variety of satisfactions. Squeeze this. Promote that. Block the other. Occasionally, a call comes down for a real work of art: carving a Namibia shaped hole in the Chinese internet after a company associated with the president’s son gets itself in a little difficulty down there, for instance.


It's a genuine problem that the devil has so many of the best technical jobs. Not just censorship, but data-mining, surveillance, military technology -- many, many jobs which are technically fascinating and morally repulsive.