Entertainment, art, technology, news, knowledge. Entretenimento, notícias, conhecimento geral.
Tuesday, April 26, 2011
Desastre nuclear de Chernobyl - Nuclear disaster Chernobyl 25 years
Thursday, April 21, 2011
Das florestas para o Congresso | Greenpeace Brasil
"São dois cenários e uma só história: de um lado, Brasília. Do outro, a Amazônia. Enquanto deputados e representantes do agronegócio tentam derrubar o Código Florestal na Câmara dos Deputados, centenas de ribeirinhos, extrativistas e organizações que representam os povos da floresta estão na cidade de Parintins, no Amazonas, dando o que apelidaram de Grito da Floresta. Após estender uma faixa dizendo “Congresso, desliga a motosserra” no Bumbódromo, onde acontece a tradicional Festa do Boi-Bumbá, eles circularam um manifesto pedindo o fim do desmatamento."
(Continuar lendo em Greenpeace.org)
Rainbow Warrior to conduct marine radiation monitoring off Fukushima | Greenpeace International
A crise nuclear no Japão ainda têm-se mantido e desencadeado uma grande preocupação.
O que tem feito muitos questionarem sobre a segurança e as vantagens de se ter investimentos no desenvolvimento de produção de energia apartir desta tecnologia. Será que os resultados justificam os riscos corridos. Além da preocupação que os residuos radiotativos e seus riscos a saúde e ao meio ambiente.
The nuclear disaster in the Japan still has it persisted and initiated a big preoccupation in world.
What have did the people ask yourself about the security and the advantages of the investments in the development of this techonology. Will be what results explain the risks that this technology offer us. And the radioactive waste, what do it.
(read more in greenpeace.org)
Friday, April 08, 2011
Dica Python - Script para visualizar imagens
# -*- coding: cp1252 -*-
#Code by Wandeson R.
#04/2011
#My pages:
# http://www.kartunoderikardo.blogspot.com
# https://www.sites.google.com/site/wanartsci
#
import sys
from Tkinter import*
class simpleViewer:
"""This class implements a simple viewer of
images ppm and gif(without animation) images.
View images ppm, gif(not animated). Put
name file in line command for open."""
def __init__(self, image=None):
root = Tk()
root.title("Simple Viewer")
#List of cursors type. Listas de cursores.
cursor_list = ["umbrella", "trek",
"spider", "spraycan", "sailboat",
"gumby", "gobbler", "heart",
"pirate", "man"]
#Configure cursor. Change cursor for
#"trek". Muda cursor para "trek"
root.configure(cursor="trek")
#Open image ppm/gif(without animation).
#Abrir imagem ppm/gif(sem animação).
self.image = PhotoImage(file=image)
#self.image = self.image.subsample(3)
self.label = Label(root, image=self.image)
self.label.pack()
#Loop for program
root.mainloop()
#Iniciliaze application. Inicia aplicação.
if __name__=="__main__":
if len(sys.argv)>1:
print">> Your Image: ", sys.argv[1]
#Create viewer for image.
#Cria visulizador com simpleViewer.
myViewer = simpleViewer(sys.argv[1])
else:
print"""Insert argument name for file name
example simpleViewer name_file.ppm
Suported format is ppm and gif(without
animation).
"""
exit(0)