const patchListView = require("./patchListView");
const ListView = patchListView(React.ListView);
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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); | |
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
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: | |
{ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
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 |
- 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
orFatal 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.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const ENUM = ` | |
BAR | |
FOO | |
WHATEVER | |
`; | |
const enumMap = {}; | |
ENUM.split("\n").forEach(name => enumMap[name] = name); | |
module.exports = enumMap; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import ( | |
"fmt" | |
"io/ioutil" | |
"net/http" | |
) | |
func main() { | |
http.HandleFunc("/", GetImageFromFlickr) |