Skip to content

Instantly share code, notes, and snippets.

View samatt's full-sized avatar

Surya Mattu samatt

View GitHub Profile
import os
from datetime import datetime as dt
import shutil
desktop_folder = os.path.expanduser("~/Desktop")
screenshots_folder = os.path.join(desktop_folder,'Screen Shots')
files = os.listdir(desktop_folder)
cur_screenshots = [os.path.join(desktop_folder, f) for f in files if 'Screen Shot' in f]
@samatt
samatt / gist:954dfb8f981a26093eac
Created November 30, 2014 22:07
zazzleScrapyer.py
from bs4 import BeautifulSoup
import urllib2
import re
import os
import os.path
import pprint
import json
import mechanize
import random
from urlparse import urlparse
@samatt
samatt / gist:b2b8353b9644f0fa850e
Created September 9, 2014 15:34
Leonardo CardReader
/*
* HID RFID Reader Wiegand Interface for Arduino Uno
* Written by Daniel Smith, 2012.01.30
* www.pagemac.com
*
* This program will decode the wiegand data from a HID RFID Reader (or, theoretically,
* any other device that outputs weigand data).
* The Wiegand interface has two data lines, DATA0 and DATA1. These lines are normall held
* high at 5V. When a 0 is sent, DATA0 drops to 0V for a few us. When a 1 is sent, DATA1 drops
* to 0V for a few us. There is usually a few ms between the pulses.
glPushMatrix();
glTranslatef(0, ofGetHeight(), 0);
ofBeginShape();
for (int i = 0; i <fftData.size(); i++){
float val =fftMax - fftData[i] * 128;
// ofRect(i*rectWidth, 0, rectWidth,val);
// ofCircle(ofGetWidth()/2, -ofGetHeight()/2, val*100);
}
#my first python program
import sys
#searchString = 'a'
#trString = 'e'
def translator(w):
return w.replace(searchString,trString)