Skip to content

Instantly share code, notes, and snippets.

@SebastianJay
SebastianJay / background.js
Last active April 13, 2017 00:46
Chrome extension for URL redirection
// credit http://stackoverflow.com/a/4859938
chrome.runtime.onMessage.addListener(function(request, sender) {
chrome.tabs.update(sender.tab.id, {url: request.redirect});
});
@SebastianJay
SebastianJay / do_poison.sh
Last active April 2, 2017 05:37
Prompt-based filtering
#! /bin/sh
python poison.py > candidates.txt && python filter_names.py
@SebastianJay
SebastianJay / GLCubeView.java
Created August 10, 2012 17:37
Android Sample GLSurfaceView Cube
package com.example.glcube;
import java.nio.ByteBuffer;
import java.nio.ByteOrder;
import java.nio.FloatBuffer;
import java.nio.ShortBuffer;
import javax.microedition.khronos.egl.EGLConfig;
import javax.microedition.khronos.opengles.GL10;