Entertainment, art, technology, news, knowledge. Entretenimento, notícias, conhecimento geral.
Thursday, April 21, 2011
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)
Tuesday, January 18, 2011
Saturday, November 13, 2010
Dica Python: Função lambda & Matplotlib para aproximar derivada e visualizar gráfico

Saturday, June 12, 2010
ChatBot Taina Maria
Testei com windows XP usando em inglês. Para Windows XP só encontrei o pacote para reconhecimento de inglês, japonês e chinês simplificado.
Os requerimentos são: Pytho2.6x+, PySpeech, Comtypes, PythonWin32, Speech SDK Windows. Mais informações e o link estão disponiveis em http://www.arttecnologwr.110mb.com.
Dúvidas, comentários e sugestões favor contactar-me.
Minha página: https://sites.google.com/site/wanartsci e http://code.google.com/p/codesart.
Links requerimentos:
www.microsoft.com/speech
www.python.org
http://code.google.com/p/pyspeech/
http://sourceforge.net/projects/comtypes/files/
http://sourceforge.net/projects/pywin32/
http://pyaiml.sourceforge.net/
Links interessanteshttp://surguy.net/articles/speechrecognition.xml
http://www.daniweb.com/forums/thread88358.html
http://probing.wikidot.com/speech-recognition-using-sphinx3-and-python
http://www.wxpython.org/
