Dicionário inglês-português gratuito para Kindle
Publicado; 25/01/2013 Arquivado em: open source 19 ComentáriosPara fazer download, basta clicar aqui: Inglês-Português / Português-Inglês
Sim, é gratuito mesmo, completamente free, e funciona integrado ao Kindle 🙂
Estive procurando durante algum um tempo por um dicionário inglês-português para Kindle. Não encontrando, fiz alguma pesquisa e encontrei alguns scripts pra gerar meu próprio dicionário. Ele ainda não é completo, faltam muitas traduções. No entanto, conto com a contribuição de vocês para incrementá-lo.
Se você encontrou algum erro ou tem sugestões, não deixe de visitar a página do projeto e nos notificar através de uma issue!
phantomjs 1.5 on fedora – https problem (ssl and crypto issues)
Publicado; 20/06/2012 Arquivado em: javascript, tecnologia, webdev | Tags: javascript, phantomjs, web Deixe um comentárioI was facing this problem on a 64 bit fedora 17 environment, but the solution should work for fedora 16 as well.
A tried to run phantomjs 1.5 on my system and it could not load HTTPS pages, only HTTP. A symptom for this is that require('system').isSSLSupported
is undefined
.This is the script I’m running.
var page = require('webpage').create(); var url = 'https://github.com/'; page.open(url, function (status) { console.log(status); phantom.exit(); });
The response was always “fail”. After some reading and hair pulling, I found this and this, and managed to solve it. Actually, it was quite simple. All I needed to do was to run, as root:
ln -s /usr/lib64/libssl.so.10 /usr/lib/libssl.so.10 ln -s /usr/lib64/libcrypto.so.10 /usr/lib/libcrypto.so.10
After that, I was gifted with a nice “success” message 🙂
força da senha e aplicação para gerar senhas amigáveis – via xkcd
Publicado; 29/12/2011 Arquivado em: computação, informática 1 comentáriotempos atrás, o xkcd publicou uma tirinha interessante sobre segurança de senha e memorização. abaixo, segue uma tradução que eu fiz:
inspirado neste post, fiz uma aplicação hospedada no AppEngine utilizando esse ideia geral e palavras comuns em português (essa parte ainda preciso melhorar). você pode visitá-la em SenhasAmigaveis.appspot.com.
Ser (um) Humano
Publicado; 03/09/2011 Arquivado em: literatura, música | Tags: anime, ghost in the shell, letra, música, tradução Comentários desativados em Ser (um) Humano“Be Human” (Ou, “Ser (um) Humano”) é uma música que faz parte da trilha sonora do excelente anime Ghost in the Shell. Você pode até nutrir uma certa ojeriza por animes e outras coisas do outro lado do mundo (às vezes, é até justificado), mas acredito que o que realmente é bom deve ser exaltado.
Contextualizando rapidamente, a trama de Ghost in the Shell se passa num futuro não muito distante (cerca de 2037), no qual máquinas com “inteligência” convivem com pessoas. Acompanhamos o dia-a-dia da Seção 9, uma divisão de elite que investiga e combate crimes que aparecem nessa nova sociedade absolutamente transformada, com enfoque para os questionamentos morais e éticos que surgem daí. Uma característica marcante em Ghost in the Shell é que, frequentemente, somos levados a (re)pensar um pouco nas “definições” que damos para vida, consciência e emoções.

Tachikoma
running evolus pencil in fedora with xulrunner incompatibility
Publicado; 03/08/2011 Arquivado em: computação, tecnologia | Tags: firefox, pencil, sketch, software, software engineering, tips, xulrunner 2 Comentáriosthe Evolus Pencil is an amazing tool that works as a firefox extension for gui sketching. it is simple and easy to use, and open source. absolutely great!
if you’re a windows user, they have a standalone version of it that works out-of-the-box. however, if you’re using a major linux distro (such as ubuntu, fedora), then probably Pencil will not work. this could happen because your system very likely will be updated, and unfortunately Pencil still doesn’t works with the most recent version of xulrunner (a software needed by Firefox). so, neither the standalone or the extension version will work. Leia o resto deste post »
connection through jaybird on fedora 15 linux
Publicado; 21/06/2011 Arquivado em: computação, java, linux | Tags: exception, firebird, java jaybird, localhost Deixe um comentárioI was having some problems to connect to a Firebird database on my linux box. altough the same configuration has worked for my windows environment, clearly it was not the case for linux. it keep throwing the “GDS Exception 335544721”. after digging for a while, I discovered a way to make it work. I must say, I installed the JayBird for Mandriva for the .jar and the .so files. you can download it here.
chromium behind proxy with gnome shell or gnome 3 on fedora 15
Publicado; 14/06/2011 Arquivado em: internet, linux | Tags: chromium, fedora, gnome 3, gnome shell, network, proxy 4 Comentárioslast week I installed chromium on my fedora system at my work. like many companies, there is a proxy and, changing the settings under System settings/Network/Network Proxy was uneffective. setting environment variables as http_proxy and https_proxy was not working as well. so, I needed a more hardcore approach.
I edited the file /usr/share/applications/chromium-browser.desktop and, in the line with “Exec=/usr/bin/chromium-browser %U” I just appended “–proxy-server=http://MY_PROXY_IP:MY_PROXY_PORT” at the end of line. note, you must replace the MY_PROXY_IP and the MY_PROXY_PORT according to your needs.
you must be careful with updates: it’s very unlikely, but this file can be updated and, suddenly, this proxy will cease to work.
UPDATE: alternatively, you can create a local copy of the file /usr/share/applications/chromium-browser.desktop, place it in your desktop and edit it with the proxy settings.
UPDATE 2: there is a far more elegant solution.
- logged as root, edit the file /usr/bin/chromium-browser with following the command:
gedit /usr/bin/chromium-browser
- add the following lines on the line 75:
# proxy settings CHROMIUM_FLAGS="$CHROMIUM_FLAGS --proxy-server=MY_PROXY_IP:MY_PROXY_PORT --proxy-bypass-list=127.0.0.1,localhost"
- replace MY_PROXY_IP and MY_PROXY_PORT with the appropriate values and close and save the file.
and we’re done. of course, these are system-wide settings which can too be overwritten by an update, but I hope the next update will fix this issue with environment variables.
login with facebook php sdk – a tutorial
Publicado; 17/05/2011 Arquivado em: php, webdev | Tags: api, facebook, graph, login, php, webservices 28 ComentáriosI’ve been testing the facebook php-sdk for a while and I had some problems with it. mostly, I had some cookies issues, not being set correctly, or simply not working. I had solved these problems and I’ll show you how to do it. Leia o resto deste post »
atualizado: php, curl, cookies, sessions, cpf e site da receita federal
Publicado; 06/02/2011 Arquivado em: javascript, php, webdev 160 ComentáriosEdit: este código provavelmente não funciona mais, mas o princípio por trás dele deve funcionar sim. então, sinta-se à vontade para discutir nos comentários, mas não tenho planos de atualizá-lo tão cedo.
não é nem necessário informar mas, antes de qualquer coisa, vou dizer: aqui você não vai encontrar nada a respeito de cpfs falsos, burlagem de captcha, captura automática de cpfs ou quaisquer outras práticas consideradas anti-éticas ou mesmo ilegais. o propósito é puramente de estudo. se alguma informação aqui estiver em desacordo com as leis, peço que me informe e o texto será modificado/removido. entretanto, observando os termos de utilização do site da receita federal, não foi encontrado nada que estivesse em desacordo com o que foi exposto aqui.
palestra do Rework pela BlueSoft
Publicado; 06/02/2011 Arquivado em: webdev | Tags: dicas, empresa, negócios, palestra, web Deixe um comentárioAndre Faria e Luiz Faias Jr. apresentaram à equipe Bluesoft o que aprenderam com o livro Rework de David Hanson e Jason Fried da 37signals. Leia o resto deste post »