This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- complete-dict - Created by Ryan Kulla using Python 2.6 on Ubuntu Linux 9.04 on July 23rd 2009 --- | |
--- Python Keywords (These were manually inputted) --- | |
and | |
del | |
for | |
is | |
raise | |
assert | |
elif |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//quicklog.h | |
//include it, and just loginfo("hello, %s", "world"); | |
//MIT licence | |
#include <stdio.h> | |
#include <time.h> | |
#ifndef QUICKLOG_H | |
#define QUICKLOG_H |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python | |
# Back-Propagation Neural Networks | |
# | |
# Written in Python. See http://www.python.org/ | |
# Placed in the public domain. | |
# Neil Schemenauer <[email protected]> | |
# | |
# Changes: | |
# 2009-01-30 Fix dsigmoid() to use correct derivative rather than an | |
# approximation. Suggested by Andrew Lionel Blais. |
NewerOlder