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 / ZZZ_output.js
Last active May 17, 2024 03:35
generate JavaScript WebGL API wrapper from the WebGL IDL. the output also contains flowtypes.
//@flow
/* eslint-disable */
class ArrayBufferView {}
class WebGLObject {
_id: number;
constructor (id: number) {
this._id = id;
}
}
class WebGLBuffer extends WebGLObject {}
activeTexture
attachShader
bindAttribLocation
bindBuffer
bindFramebuffer
bindRenderbuffer
bindTexture
blendFunc
bufferData
checkFramebufferStatus
document.write(`<link rel="stylesheet" href="https://rawgit.com/PrismJS/prism/gh-pages/themes/prism.css" />`);
var Prism = require('prismjs');
var code = [
"const c = `",
"// do something",
"float a = p.x * p.y;",
"",
"// do something else",
@gre
gre / webcam.js
Last active November 19, 2016 14:11
This is using an experimental incoming version of gl-react, stay tuned
//@flow
import React, { Component } from "react";
import { Bus } from "gl-react";
import { Surface } from "gl-react-dom";
import colorScales from "./colorScales";
const shaders = Shaders.create({
colorify: {
frag: GLSL`
precision highp float;
@gre
gre / ReactNative.example.js
Created September 30, 2016 10:35
in React / React Native, simulate bad network (lag / error) to debug how your app behaves with images
import React, {
Component,
} from "react";
import {
Image as RNImage,
View,
} from "react-native";
const debugImage =
__DEV__
@gre
gre / example.js
Last active September 24, 2016 09:40
const { transform, execute } = require("./lib");
const ReactNativeWeb = require("react-native-web");
const {render} = require("react-dom");
const example = `
...jestsnapshotcodegoeshere
`;
const out = transform(example);
const node = execute(out, {
@gre
gre / README.md
Last active January 14, 2019 22:41
Standalone minimal version of Google Photos Albums list in order for you to share photos with family and with link to multiple shared google photos albums

DWTFYW

Disclaimer:

  • no warranty this will work for you!
  • I'm not responsible of how you use this!
  • READ, VERIFY and TEST the CODE before using!
@gre
gre / scrollparent.js
Created August 3, 2016 11:27
get first parent scrollable container of a dom element
// more minimal version of https://github.com/olahol/scrollparent.js/blob/master/scrollparent.js
const regex = /(auto|scroll)/;
const style = (node, prop) =>
getComputedStyle(node, null).getPropertyValue(prop);
const scroll = (node) =>
regex.test(
style(node, "overflow") +
style(node, "overflow-y") +
@gre
gre / README.md
Last active August 22, 2016 15:51

This is a PoC that will be later a PR to react-native-view-snapshot to implement the feature for Android.

We still need to wait React Native to have the addUIBlock feature provided by this PR.

Also, I'll wait react-native-view-snapshot to implement the same API as the current RN takeSnapshot on iOS allowing the options.

Usage

import {NativeModules, findNodeHandle} from "react-native";
class Foo extends Component {
constructor () {
super();
this.state = {
data: null,
error: null,
pending: false
};
}