Custom Search

Thursday, November 19, 2009

A python module I made

This module I made shortens the .write functions
Check out here

Business Manager 1.6

Check out my business script here

Sunday, November 15, 2009

Example of Object Oriented Programming

Here is and example of object oriented programming in python
http://pastebin.com/f70f50cb1

Business Manager

This is the newest release of my business manager (Version 1.4)
http://pastebin.com/f16b20d3a

Sunday, November 8, 2009

Flip a Coin

I was bored and made this

Friday, November 6, 2009

Password Generator

I know Remembering secure passwords is difficult. So I made this.

Thursday, November 5, 2009

Alphabiter

#Credits:
#Nevets04
#Fallen
#Uber1337
#Farout
import os
List = []
z = int(raw_input("How many words in your list?: "))
os.system("clear")
for x in xrange(z): List.append(raw_input(""))
List.sort(),os.system("clear")
print "\n".join(List)