Skip to content

Instantly share code, notes, and snippets.

View tankorsmash's full-sized avatar

TankorSmash tankorsmash

View GitHub Profile
@tankorsmash
tankorsmash / xkcd.py
Created February 12, 2013 19:05 — forked from rchrand/xkcd.py
from bs4 import BeautifulSoup
import requests
import os
images = []
final = ""
r = requests.get('http://xkcd.com/')
soup = BeautifulSoup(r.content)
@tankorsmash
tankorsmash / magnifier.shadertoy
Last active August 4, 2017 06:40 — forked from detunized/gist:1317940
Magnifying glass shader
// (c) 2011 detunized (http://detunized.net)
// Paste the shader below into http://shadertoy.com
// Click and drag the mouse around
#ifdef GL_ES
precision highp float;
#endif
uniform vec2 resolution;
uniform sampler2D tex0;