Skip to content

Instantly share code, notes, and snippets.

View amzar96's full-sized avatar
๐Ÿ˜
WFH

Amzar amzar96

๐Ÿ˜
WFH
View GitHub Profile
@bellbind
bellbind / genetic.py
Created December 15, 2010 10:46
[python]Genetic Algorithm example
"""Genetic Algorithmn Implementation
see:
http://www.obitko.com/tutorials/genetic-algorithms/ga-basic-description.php
"""
import random
class GeneticAlgorithm(object):
def __init__(self, genetics):
self.genetics = genetics
pass
@robjohnson
robjohnson / TwitterJSONTweet.js
Created November 16, 2010 19:41
Twitter JSON Tweet Schema
{
"place":null,
"coordinates":null,
"retweeted":false,
"in_reply_to_status_id":null,
"id_str":"28039652140",
"truncated":false,
"in_reply_to_status_id_str":null,
"source":"web",
"favorited":false,