Anyone heard of a good Voice Stress Analysis program

2008-11-25 Thread Daniel Folkes
Anyone heard of a good voice stress analysis program that was either: a) Written in python b) can be used by python? It would be a great help to me. Thanks, Dan Folkes http://danfolkes.com -- http://mail.python.org/mailman/listinfo/python-list

Re: Can you recommend a book?

2008-04-25 Thread Daniel Folkes
On Apr 25, 6:28 am, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote: > Hello all, I learned Python with the book "Programming Python" by John > Zelle. But today this book is a little bit old. My Python is some kind > old. I need a book that will help me brush my style and keep me up to > date. I woul

Re: Email Directly from python

2008-02-15 Thread Daniel Folkes
You could always just set up a gmail account and use that SMTP. Thats what I do. Then all you have to do is google search for "gmail smtp python" and get some easy code. You can even send attatchments really easy. -Daniel Folkes brad wrote: > I'd like to send email directly

Removing the Close, Min, Maximize and frame with ANY gui toolkit

2008-02-05 Thread Daniel Folkes
of a window. Thanks, Daniel Folkes http://danfolkes.com -- http://mail.python.org/mailman/listinfo/python-list

What is a shortcut to the Default home directory in Windows

2008-01-18 Thread Daniel Folkes
Thanks in advance for the help. -Daniel Folkes -- http://mail.python.org/mailman/listinfo/python-list

Python Nmap script linux version

2007-11-28 Thread Daniel Folkes
I made this script for fun. you need to have Nmap installed on your linux computer and it will find all the computers on the network and then run Nmap on it. Hope you enjoy! import os fn = 'i.result' ip = '192.168.1.1-255' ip1 = ip[:3] ips = [] os.system("nmap -sP 192.168.1.1-255 > "+fn) f = ope

Python Nmap Scour sP script for linux

2007-11-27 Thread Daniel Folkes
I made this script for fun. you need to have Nmap installed on your linux computer and it will find all the computers on the network and then run Nmap on it. Hope you enjoy! import os fn = 'i.result' ip = '192.168.1.1-255' ip1 = ip[:3] ips = [] os.system("nmap -sP 192.168.1.1-255 > "+fn) f = o

New to Vim and Vim-Python

2007-10-24 Thread Daniel Folkes
I am new to using Vim's scripts. I was wondering if anyone uses Vim-Python and how to use it? This includes things like key bindings and such. Thanks in advance, Daniel Folkes [EMAIL PROTECTED] -- http://mail.python.org/mailman/listinfo/python-list