Skip to content

Instantly share code, notes, and snippets.

View gre's full-sized avatar
3 cups required

@greweb gre

3 cups required
View GitHub Profile
@gre
gre / AutoCaptureGLThing.js
Last active August 23, 2017 10:42
example that render things offscreen with gl-react – would love if you find a way to make this use-case less hacky
class AutoCaptureGLThing extends Component {
onRef = exportable => {
if (!exportable || this.exporting) return;
this.exporting = true;
exportable.captureFrame(/* see https://projectseptemberinc.gitbooks.io/gl-react/content/docs/api/Surface.html */)
.then(path => { // oops back to node callback pattern via props callback
this.props.onCapture(null, path);
}, error => {
this.props.onCapture(error);
});
@gre
gre / README.md
Last active December 16, 2015 18:57
NOT WORKING attempt to workaround https://github.com/facebook/react-native/issues/3452

Usage

const patchListView = require("./patchListView");
const ListView = patchListView(React.ListView);
@gre
gre / getStream.js
Last active December 14, 2015 14:53 — forked from mrspeaker/getStream.js
/*
getStream(callback) : Get a stream of items.
callback will be called multiple time asynchronously, as if you were continuously getting events from a server.
callback will be called with an "item" in parameter.
Each "item" is an object with following format:
{
@gre
gre / getStream.js
Last active November 23, 2015 20:14
/*
getStream(callback) : Get a stream of items.
Each item get passed in to the provided callback.
Each item is an object with following format:
{
id: Number,
title: String
date: Number (timestamp in ms)
imageURL: String
@gre
gre / README.md
Last active June 24, 2016 19:44
Troubleshooting with cassandra on Mac OSX El Captain
  • Download the tar.gz of Cassandra from http://cassandra.apache.org/download/
  • extract it in your own ~ wherever it makes sense for you (me it's in ~/bin/)
  • Add the cassandra-*/bin/ to your $PATH in your bash profile (me I need to add /Users/gre/bin/apache-cassandra-2.2.3/bin/)
  • Try to run cassandra.
  • If it runs fine you are done.
  • If you get into trouble with an error like Unable to gossip with any seeds or Fatal exception during initialization org.apache.cassandra.exceptions.ConfigurationException: Found system keyspace files, but they couldn't be loaded!
    • edit conf/cassandra.yaml in the extracted cassandra directory
    • comment the line # listen_address: localhost
  • start the cassandra command again.
@gre
gre / list.md
Last active September 18, 2015 21:29
greweb's Top 20 of JS13K 2015 games (VERY subjective. I've used LD categories to establish a score. and sorted the list (left right, top down) )
@gre
gre / sample.js
Last active September 4, 2015 22:14
minimal survival kit WebGL code for doing JS13K stuff with multiple shaders and a canvas2d
// DISCLAIMER: this example is not complete. just showing some synthax
var laserShader = glCreateShader( STATIC_VERT, LASER_FRAG);
gl.uniform2f(glUniformLocation(laserShader, "dim"), W, H);
var laserFbo = glCreateFBO();
var textureGame = glCreateTexture();
gl.viewport(0, 0, W, H);
gl.pixelStorei(gl.UNPACK_FLIP_Y_WEBGL, true);
@gre
gre / Blur.js
Created September 4, 2015 12:22
Multi-pass blur implementation in gl-shader(-native)
const React = require("react-native");
const GL = require("gl-react-native");
const {
PropTypes
} = React;
const Blur1D = require("./Blur1D");
const NORM = Math.sqrt(2)/2;
function directionForPass (p, factor, total) {
@gre
gre / constants.js
Last active September 1, 2015 21:06
const ENUM = `
BAR
FOO
WHATEVER
`;
const enumMap = {};
ENUM.split("\n").forEach(name => enumMap[name] = name);
module.exports = enumMap;
@gre
gre / proxy_flickr.go
Last active August 29, 2015 14:26
proxy of flickr images to workaround the CORS issue on images (can't draw them on canvas / webgl)
package main
import (
"fmt"
"io/ioutil"
"net/http"
)
func main() {
http.HandleFunc("/", GetImageFromFlickr)