Skip to content

Instantly share code, notes, and snippets.

View sri's full-sized avatar

Sriram Thaiyar sri

  • Bay Area, CA
View GitHub Profile
# How to access Clipboard data in Windows from Python 3
def win32_clipboard():
import ctypes
ctypes.windll.user32.OpenClipboard(None)
pc = ctypes.windll.user32.GetClipboardData(1)
return ctypes.c_char_p(pc).value
def win32_clipboard_paste(txt):
import ctypes
ctypes.windll.user32.OpenClipboard(None)
@sri
sri / usd2rs.rb
Created September 22, 2010 04:49
#! /usr/bin/env ruby
# usd2rs AMOUNT - convert from US dollars to Indian Rupees
# Prints out Rupees in Lakhs & Crores as necessary
require 'open-uri'
LAKH, CRORE = 100_000, 10_000_000
dollars = (ARGV[0] || begin; printf "Dollars? "; gets.chomp; end).
gsub(/,/, '').
to_i
#! /usr/bin/env python3
# Released under MIT License.
# Linked list implementation after reading this
# http://www.rethinkdb.com/blog/2010/06/will-the-real-programmers-please-stand-up/
import sys
class Node:
def __init__(self, value):
self.next = None
# Download all dependencies and parse a bunch of Outlook MSG files.
# See http://defcraft.blogspot.com/2010/03/extracting-phone-numbers-from-outlook.html
# Released under the GNU GPL.
# http://www.gnu.org/copyleft/gpl.html
require 'fileutils'
DOWNLOADS = %w{
@sri
sri / gist:600551
Created September 28, 2010 07:18
node.js serve dir
// node.js example
// usage: http://localhost:8080/?path=. will list
// all files under '.'
var Sys = require('sys'),
Http = require('http'),
Fs = require('fs'),
Url = require('url')
function stat(f, if_file, if_dir, if_other) {
Fs.stat(f, function(err, stat) {
# Arbitrary precision Multiplication & Addition -- the slow, slow way
def mul(x, y):
if len(x) < len(y):
x, y = y, x
results = []
x = list(x)
y = list(y)
x.reverse()
y.reverse()
# daemoinze the current process
# Copied from the Python Cookbook
import sys, os
LOG = "path where you want the program output to go"
def daemonize():
try:
pid = os.fork()
if pid > 0:
# exit parent
sys.exit(0)
#! /usr/bin/env python3
# USAGE:
# h -- prints out the http server headers for a given URL
# Command-Line: h [agent] URL
# Agent can be any of: ff, chrome, ie, googlebot, safari
# If nothing is given on the command line, clipboard data
# is tried (under OS X and Windows). If it contains a valid
# URL, then that is used.
<!-- Simple Paint in plain HTML -->
<html>
<style>
html, body { margin:0; padding:0; }
#undo {
background: #666;
color: #fff;
cursor: pointer;
padding:0;
}
@sri
sri / gist:971921
Created May 14, 2011 04:32
benchmark_underscore.js
#! /usr/bin/env node
var Underscore = require('./underscore')
function randomizedArray(size, limit) {
var result = []
for (var i=0; i < size; i++) {
var rnd = Math.floor(Math.random() * limit)
result.push(rnd + '')
}