Monday, January 24, 2011
Luisa Maitas - Lero Lero
via YouTube - Luisa Maita - Lero-Lero.
No mp3brasil.com estão oferecendo o mp3 gratis, em troca por um tweet (A @luisamaita é destaque na @radiompbfm e pra comemorar eu baixei uma música em troca de um tweet! http://bit.ly/hpZsof). Pois, dessa forma fiquei sabendo dessa garota lindinha e talentosa, e fui buscando mais músicas dela. Valeu, sim!
Se você gostar, pode comprar o disco inteiro Lero-Lero
ou ainda melhor, pode baixar todos os mp3s por somente US$5.00: Lero-Lero (Amazon Exclusive Version) (vem com um remix extra somente disponível no amazon!)
Comprei os mp3 dessa forma, e estou gostando demais!
In mp3brasil.com today they are giving a free download of this song, in exchange for a tweet. Thus, I learned of this beautiful and talented girl, and went in search of more of her music. It was definitely worth it!
Follow this link to get the mp3 for yourself: http://bit.ly/hpZsof
If you like it, you can get the CD for $13 here: Lero-Lero
or, even better, download the entire mp3 album for only $5 here: Lero-Lero (Amazon Exclusive Version) (comes with an extra remix song ONLY available on Amazon!)
I bought the mp3s, and I am LOVING it!
Okay, desde que eu estava aqui de tarde escrevendo, eu tenho que dizer que NÃO POSSO PARAR DE ESCUTAR ESSA MENINA!
Eu tive que sair de casa, pois, fiz um disco das suas músicas pra levar no carro, E, também pois as suas canções no meu celular (android), e, fico escutando, de novo e de novo, sem cansar dessas músicas. Tem elementos folcloricos e de músicas tradicionais brasileiras, mas, também algo bem moderno, que nem posso describir, e, que ela tem influencias em outros artistas brasileir@s já e obvio (Céu, Marisa, Bebel, Adriana e muitos que llegaram bem antes) mas, ela tem criado algo bem distinto, ainda. Além de tudo, essas músicas possuem uma beleza cativante que me deixam louco pra ouvir-as de novo.
Você TEM que escutar esse disco. Eu juro.
Okay, since I was here this afternoon writing, I have to say that I CAN NOT STOP LISTENING TO THIS GIRL!
I had to go out, so, I burnt a disc of her music to take in the car, AND, I also put her songs on my cell phone (android), and I keep listening, over and over, without tiring of these songs. They have elements of folk and traditional Brazilian music, but, also, something quite modern,that I can't quite describe, and, that she's been influenced by other Brazilian artists (Céu, Marisa, Bebel, Adriana and many other who came before her) is quite obvious, yet, she's made something all her own and original. Above all, these songs possess a captivating, hauting beauty to them that makes me crazy to hear them again.
I swear, you have GOT to listen to this disc.
:)
./tony
Sunday, January 23, 2011
Adventures with Debian on AMD64
d00d...I have not been able to ramp up the CPU usage past like 18%, nor use more than about 20% of the ram. I know there are bigger, faster machines out there, but this is clearly plenty of machine for my needs.
Anyway, this machine is an AMD 64 bit CPU. I won't pretend, for even a second, to comprehend what the difference is between 64 bit and 32 bit computer, beyond that 64 is twice 32, and, in some cases, it means I need different software.
So, I got the machine in two boxes, with all these separate parts, a motherboard, a cpu, 2 ram sticks, a hard drive, and I had to put them together. I yanked the video card from my old machine and used it, too, since it has dvi, and this mobo in this kit did not (works best for my monitor). And, then, being completely ignorant, as I am, I installed from the same Debian/Lenny XFCE installation disk that I had used for every other machine in my office. It installed okay, but, for the life of me, I could not get DHCP to work so I could connect to the internet. So I got on #debian at freenode with my old computer (now using an older monitor, and the onboard mobo video) and raised my hand and after several rounds of the real hackers in there massaging me with the Socratic method, it became clear that I had simply installed the wrong system, and that I needed the (duh!) AMD64 version of Lenny. So, I downloaded that ISO file, burnt up a CDROM, and installed it. And that worked nicely, and the DHCP works fine, and I'm actually writing to you from this new machine. I like it. But I had a few other adventures between then and now, and thought I'd share them.
cd /usr/lib/swfdec-mozilla/
Now, that's not the only issue I've had. I installed LibreOffice, for which there are 64 bit .deb files. But when I tried to run it, it kept puking and giving up. I looked at the error it was giving. I neglected to write it down, but, it comes down to the fact that it could not find libcairo.so.2. I dug around for that, and found it right in (big surprise) /usr./lib....so, what was the problem? I looked again at the error. For some reason unknown to me or anyone with whom I've communicated, libreoffice was looking for libcairo.so.2 in /opt/libreoffice/basis3.3/program, rather than in /usr/lib, where any normal program would expect to find such a lib. That was easy. I just copied the lib right in there (I don't know, I probably could have symlinked that, too...didn't even try that...).
cp /usr/lib/libcairo.so.2 /opt/libreoffice/basis3.3/program/
There have been a few other tweaks and adjustments along the way, but, at this juncture, I've got a blazing fast system (debian with openbox is light and efficient) on which to work. Good stuff. I feel like a got a great deal from TigerDirect, and, as always the best deal ever with Debian gnu/linux. The guys on #debian at freenode were extremely patient and graciously helpful, and I owe them a great debt of gratitude. Debian ROCKS! both the software and the community.
On a side note, stealing my old machine's video card (Celeron 32.g 1.5mb ram, x86 arch), and the 24 inch 1680x1050 monitor, seemed to have pissed it off, because, with the onboard video and 15 inch 1280x960 monitor (both of which it HAD used before I purchased the big screen) all text in gui windows, menus, panels, etc. was
HUGE
One more really cool thing. I back up my /home regularly onto an external usb hdd (at least monthly, but I did it before building the new machine and stealing the video card from the old one, I do :~# rsync -rvu /home/tony /media/disk/home), so, I was able to simply copy my whole home directory onto the new machines, and, this being the very same system (well, except being amd64 in stead of 32bitIntel, or whatever), all the programs have the same configs, saved passwords, blah blah blah that they had before. That makes moving to a new computer so much easier. Since I run rsync as root, I do have to chown everything (chown -R tony:tony) again after moving it back, but that's no big deal. Except, some program configs from the x86 machine CAN interfere with AMD64 programs (I had to remove the libreoffice configs from the x86 machine).
DjVu: viable, Free alternative to PDF? convert .txt to .djvu
Okay, you know I'm always harping about using Open Document Formats.
So, on the LibreOffice user list today there was discussion of a viable Free/Open alternative to .pdf files. After all, PDF is, indeed, a proprietary format, owned by Adobe, and it is ubiquitous, and there really should (must, perhaps), be a free, open alternative. As such, someone on the list mentioned DjVu, which, frankly, I'd never looked at before (I had heard of it, but knew not what it was). It's a free/open file format that was initially created for scanned documents, from what I gather, and has been around since the late 80s, still maintained by the original authors, and is now used for all kinds of gro0vy stuff.
I did a bit of research, googling, apt=cache searching, and poking around. Eventually, I aptitude installed djview4 and djvulibre and experimented a little. I have drawn the conclusion that, yes, in my opinion, DjVu would be an excellent candidate to be used as, in fact, a better option for many reasons, for the purposes .pdf currently serves (a portable document format that preserves formatting, essentially). Works great.
But there IS a rather glaring drawback...
The one big drawback is, conversion tools are lacking.
One can not, for instance, simply write a DjVu file in any kind of document editor, as you can write a pdf with many different editors, web browsers, most office software, LaTeX editors, and basic text editors, such as tcltext, and, frankly, even in a command line interface.
But to create DjVu, you can only convert other files to DjVu.
Then, in general, and this is what most irritates me, it seems you have to convert from non-free formats. There are no tools, for instance, to convert directly from plain text, LaTeX (.tex), .odf (.odt), .png, or even html files to a .dvju file. What's worse, is that all of your Free and/or open source browsers, document editors, etc., will export or print a file to .pdf, but not to .djvu. OpenOffice.org will write a .pdf. LibreOffice, and Abiword will write a .pdf. LaTeX editors will write a .pdf....Everybody will write a .pdf, but nobody has written code to write a file directly to .djvu. In my opinion, that needs changing. We need to use open standards and free/open file formats (all kinds of reasons for that discussed in this entry to this blog).
That said, today I wrote a script to convert a plain text file to DjVu (but, yes, I had to round-trip it through .pdf, darn it).
This script was written on a Debian/Stable (lenny at the time of this writing) system, on AMD64 arch, using all tools available in the lenny repos.
It requires (obvious when you read the script) enscript, ps2pdf, and pdf2djvu (part of dvjulibre).
The script first converts your text file to postscript with enscript, the from postscript to pdf, with, surprise, ps2pdf, and, then, the final step of converting to .djvu.
The script looks like this:
#!/bin/bash
if [[ $(echo $*) ]]; then
text="$*"
else
echo "try again, and include a file name, and ONLY 1 file name at a time. Thank you." && exit
fi
echo converting $text to $text.ps
enscript $text -q -B -p $text.ps
echo converting $text.ps to $text.pdf
ps2pdf $text.ps
echo converting $text.pdf to $text.djvu
pdf2djvu $text.pdf -o $text.djvu
echo renaming ...
rename.ul .txt.djvu .djvu $text.djvu
echo cleaning up ...
rm $text.ps $text.pdf
echo done
exit
With this, I may very add the capacity to export a .djvu file to tcltext. Why not? It's just a shame, imho, that such an export is not direct, without having the cross into proprietary territory via .pdf, in order to be accomplished.
Also, as a gift to my fellow freedom fighters, foss hackers, and open standards supports, I have created a DjVu of my poetry here which contains all the poems published in my recent book (but not the paintings and photographs).
And, this full article in djvu format here. This last was fun, because I ended up having to change the text encoding first. Apparently enscript doesn't like utf8. I had copy/pasted the article into tcltext, which generates utf8 here (system default). I made a .dvju that had all these weird character substitutions (like /200a#blahblah for a quotation mark?). Here's how to handle the conversion.
iconv iconv -f utf8 --to-code=ascii//TRANSLIT yourfile > newfile