Issue 157 - googleappengine - Google Code
04 May 2008
in links
tagged with
[appengine]
[google]
[unicode]
the google appengine uploader isn’t unicode aware. Grrr. Easily fixable, but still an irritating oversight.
http://code.google.com/p/googleappengine/issues/detail?id...
Main Page - DejaVuWiki
01 May 2008
in links
tagged with
[fonts]
[free]
[unicode]
Free fonts with pretty good Unicode coverage. Useful.
UnicodeChecker 1.12 (Quarter Life Crisis)
22 February 2007
in links
tagged with
[macos]
[unicode]
This utility is great and I could not live without it.
http://earthlingsoft.net/ssp/blog/2007/02/unicodechecker_112
Deskbar plugins - CatmurWiki
06 September 2006
in links
tagged with
[deskbar]
[linux]
[unicode]
Search for unicode characters with deskbar
encoding::warnings - Warn on implicit encoding conversions - search.cpan.org
22 April 2006
in links
tagged with
[perl]
[unicode]
Looks like it solves my favourite all-time problem in perl - no clear distinction between characters and byte sequences. Horay.
http://search.cpan.org/dist/encoding-warnings/lib/encodin...
Homepage of Crimson Editor - Free Text Editor, Html Editor, Programmers Editor for Windows
28 January 2006
in links
tagged with
[editor]
[text]
[unicode]
[windows]
Does everything I want - file browser, UNIX line endings, it even gives me the level of control I need over file encodings. and it’s free. Perfect.
Perl Loves UTF-8
16 October 2005
in talks
tagged with
[perl]
[unicode]
Given for the first time at the london.pm tech-meet at the Fotango offices on 2005/02/24, this was a 5-minute rant about perl, character sets, and why noone can ever get them right. The slides were written in OmniGraffle for some bizarre reason, but I think it worked quite well, and may use the technique again some time.
JSON Examples
16 October 2005
in links
tagged with
[javascript]
[unicode]
..and not a single non-ascii character on the page.
using utf-8 in irssi under screen
23 June 2005
in blog
tagged with
[linux]
[screen]
[unicode]
[utf8]
Firstly, tell your local terminal application that you want a utf-8 window. This is left to you, but under macos (which I use), right click the window, select ‘Window settings’, pick the ‘Display’ option from the drop-down, and pick utf-8 under ‘Character set encoding’.
Next, when you start the screen session, pass the ‘-U’ flag. This has to be passed to a new screen session - you can’t connect to an existing one this way.
screen -U
Alternatively, you can turn on the utf-8 flag for a single existing screen window by typing your hotkey (ctrl-a by default), then ‘:utf8 on’. This is good if you don’t want all of your windows to be utf now.
On the remote machine, make sure that the ‘LANG‘ environment variable is set to something UTF-8 like, for instance, I use
export LANG=en_GB.UTF-8
in my .bashrc.
Finally, you need to tell irssi to use UTF-8. Start it up in your new utf-8 window, and type
/set term_type utf-8
Hopefully everything should work now.
python and unicode
20 January 2005
in blog
tagged with
[python]
[unicode]
I like python’s unicode handling. Instead of perl’s situation, where file handles are assumed, by default, to be latin-1, python file handles (including STDIN/OUT) are assumed, by default, to be ASCII. Forget nasty things like ‘☃’, in python, you can’t even print ‘é’ without explicitly telling it how. Lovely.
More UTF8 pain
15 December 2004
in blog
tagged with
[browser]
[unicode]
[utf8]
Does no-one in the world care about non-ASCII characters? It’s pathetic. I’m trying to make HTML form uploads work for files with non-ASCII characters in their names, and I’m hitting the stupidest problems.
The main bugbear is mozilla - you can’t upload files with wide characters in their names. At all. Piece of shit. Safari seems to be encoding the upload filenames with some made-up encoding that I can’t figure out, so that’s out of luck. At least safari sends the actual contents of the files.
The one browser I’ve tried that works flawlessly is Internet Explorer. Microsoft, at least, seem to care about the non-US market.
UTF8 Openguides
13 December 2004
in blog
tagged with
[perl]
[unicode]
[utf8]
[wiki]
I foolishly offered to make OpenGuides UTF-8 safe. Because I don’t do that enough at work, or something. Anyway, it’s going quite well - because I did all the grunt work in CGI::Wiki a while ago, it’s just a matter of finding all the inputs and outputs and making sure they’re encoded properly. So far, the page contents and names are utf-8 safe, along with the cookie preferences, so your username is good. The search stuff looks scary, and there are various broken plugins, etc, etc, so there’s still stuff to do. I should also do the hooks properly - CGI::Wiki should offer nice functions for this stuff.
Anyway, there’s a demo site here in case you feel like trying to break it. The patch against OG is here, out of my svn repository, of course.
safari and password fields
09 December 2004
in blog
tagged with
[browser]
[macos]
[unicode]
Today I discovered that safari ‘magically’ downgrades latin-1 input in form password fields to their nearest ascii equivalents - typing ‘pásswörd’ into a password box actually submits ‘password’. But you can cut and paste non-ascii in and it works fine. I’m very confused.
ASCII is not enough
24 November 2004
in blog
tagged with
[tests]
[unicode]
I need a rule. All testing MUST BE DONE WITH NON-ASCII CHARACTERS.
I’m just fed up with things breaking the moment someone foreign touches them.