it does stuff automatically, so it either finds it or it doesn't
CarlosEcheverry
:( its not there :(
cikkolata
:\
CarlosEcheverry
well, anyway has been a big advance. He's now in DB at least
:)
cikkolata
that's good :)
CarlosEcheverry
mmhh 6 colombians artist has been grammy nominated :)
hehehe, ive added his photo album to my WMP :P
rj_ joined the channel
CarlosEcheverry has quit
Knio-sleep
Knio-sleep is now known as Knio
mambobuen joined the channel
mambobuen has quit
Knio
Knio is now known as Knio-school
walkah has quit
egru joined the channel
egru
Anyone have a second to help me get picard up and running on Linux?
cikkolata
I can try
egru
I've gone through all the prereq's, have most of the exact versions (more recent in 1 or 2 cases), when I try to start up tagger.py, I get a backtrace ending in TypeError: a bool is expected
in SetUnderlined
cikkolata
hmm
cikkolata pokes ruaok
egru
i'll go back and make sure I have the exact versions recommended everywhere and see if I still hit it
thanks though
cikkolata
ok
egru
anyone have it running with wxpython 2.5.3?
cikkolata checks what version she has
cikkolata
mine's 2.5.2, it seems
egru
k
don't see any older versions for download. i'll come back in a bit to see if ruaok is around
egru waves
egru has quit
zwobly joined the channel
Necronom has quit
egru joined the channel
ruaok
egru: morning.
cikkolata
ruaok: do you know how to do regexes with unicode in them on stuff without python getting annoyed with me?
Russss has quit
ruaok
sure. its trivial. :-0
use a u'this is a unicode' string.
and pass that to the re module
cikkolata
it hates me though
I'm trying to do stuff on stuff I'm reading from stdin
I'm having a bad day :(
everything is telling me to take my unicode and go fuck myself
DJKC
well, is it at least cute unicode you can have fun doing that with?
cikkolata laughs
ruaok
are you converting your data read from stdin to unicode?
cikkolata
no, I don't know how :x
ruaok
simpy cast it to type unicode:
uString = unicode(nString)
cikkolata
:/
UnicodeDecodeError: 'ascii' codec can't decode byte 0xc3 in position 23: ordinal not in range(128)
ruaok
paste some code
cikkolata
it says that for the ustring = unicode(nstring) line
ruaok
how are you reading input
?
cikkolata
for line in sys.stdin
ruaok
and it dies the moment you put in valid utf8 chars, right?