Novidades nos Androids Brasileiros?

Hoje de manhã meu Nexus S (2.3.4) acordou com algumas atualizações interessantes:

  • Google Books (Livros) – Instalou sozinho no celular, pois não estava disponível antes para os celulares do Brasil
  • Player de Músicas (Music) – Atualização manual (precisei selecionar a opção “atualizar” no menu de contexto (longo click) do app Music no “My Apps” do Market. Só clicar não levava a lugar nenhum)

Em linhas gerais, o Google Books me pareceu bem agradável, com opção de cores escuras para ler de noite e sincronização com o Google Books (óbvio), mas ainda perde para o app do Kindle, que tem mais recursos (como selecionar partes do texto).

O app Music ficou muito mais agradável, as cores do fundo inclusive se alteram conforme a capa dos álbuns. Não parece mais um app “Hello Android” como antes.

*As atualizações podem estar disponíveis apenas para a série de celulares Nexus. Ainda não consegui descobrir… =D

Update: Leia sobre as novidades no post (melhor que o meu, obviamente =D) do Gizmodo. Valeu pela citação, Felipe!

Update 2: Google Music funcionando sem problemas aqui no Brasil, tanto o website quanto o streaming das músicas pro app  do Android. Só precisei de proxy pra pedir o convite do Google.

Algumas Screenshots:

Street View no Brasil

O Google anunciou (30/09/2010) o serviço Street View para o Brasil. Ao todo foram percorridos cerca de 150.000 Km em São Paulo, Rio de Janeiro e Belo Horizonte metropolitanas.

Leia no site folha.com.br

De brinde, um auto-retrato do carro do Google tirando as fotos na ponte Rio Niterói:

Read more of this post

One more step (UFW-Notify)

I made a little progress on UFW-Notify today! Now its automatic and seens to work.

I used pyinotify to watch the log file for changes. When the firewall updates the file, the script reads last line of it and calls the popup ballon with some info about the connection blocked.

It’s not perfect, though. If the firewall detect more connections while the popup is shown, maybe they will be left. And the only way to kill the script is the SIGINT (Ctrl + C).

Here is the code:

Read more of this post

UFW-Notify almost done

Last week I decided to build something to show messages on the screen when my firewall blocked something. I did a python script that does almost that

I still can”t detect connections automatically, but the script already reads the log, parses it and show the important fields (time, ip address, ports) as a popup window (pynotify). It’s my first python script, so I’m happy with that.

By the way, Python is very interesting. Really short and simple, but seens powerfull.

At the end of the weekend, maybe it will be usefull. The tricky part was finding the regular expressions. =D

Read more of this post

Using Ubuntu notifications

After a while using the ubuntu notifications for music changes and messaging, I thought that would be nice to have the firewall warning me when a connection was blocked. As Notify-OSD can be used from terminal to popup messages, I tested the idea using it:

notify-send  Firewall "`tail -n 1 /var/log/ufw.log`"

Where “Firewall” is a bold title and the “tail” command is the message itself, with ufw.log last line.

Later I’ll try to make it automatic, using shell or python script.