Skip to content

Instantly share code, notes, and snippets.

View nullsauce's full-sized avatar
🫕

Flavio Roth nullsauce

🫕
View GitHub Profile
#ifdef GL_ES
precision highp float;
#endif
uniform float time;
uniform vec2 mouse;
uniform vec2 resolution;
void main( void ) {
@nullsauce
nullsauce / schema 2
Created November 30, 2011 09:39
Periodic occurence
period:20
|
begin:0 dur:15 |
| | | | | | |
(t) ------------------+--------------+----+--------------+----+--------------+----+--- > etc.. until end is reached
===============.....===============.....===============.....====
15 5 15 5 15
legend:
{
"template_name" : "Template test",
"name" : "Droit 1",
"displayRule" : {
"operands" : [
{
"begin_s" : 1322584286,
"period_s" : 252050855314,
"duration_s" : 252050855314,
"end_s" : 253373439600,
@nullsauce
nullsauce / index.svg
Created February 16, 2012 15:27
crawler jSignage-0-9-0
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
{
"packages" : ["weather"],
"packagesPath" : "/packages/",
"programDataPath" :"/program.json",
"resourcesPath" : "/",
"video_url":"h264_url"
}
#
# ----------------------------------------------------------------------------
# "THE BEER-WARE LICENSE" (Revision 42):
# <flavio.roth@gmail.com> wrote this file. As long as you retain this notice you
# can do whatever you want with this stuff. If we meet some day, and you think
# this stuff is worth it, you can buy me a beer in return.
# ----------------------------------------------------------------------------
#
#
# ----------------------------------------------------------------------------
# "THE BEER-WARE LICENSE" (Revision 42):
# <flavio.roth@gmail.com> wrote this file. As long as you retain this notice you
# can do whatever you want with this stuff. If we meet some day, and you think
# this stuff is worth it, you can buy me a beer in return.
# ----------------------------------------------------------------------------
#
@nullsauce
nullsauce / creating-edgerails-app.sh
Created October 18, 2012 19:16 — forked from peter/creating-edgerails-app.sh
Creating and Deploying an EdgeRails (Rails 4) Application to Heroku
# 0. Make sure you have Ruby 1.9.3 installed, and optionally RVM and PostgreSQL
# 0.2 If you are on the Mac, make sure you have a c compiler by installing XCode Command Line Tools or gcc4.2 with homebrew
# https://github.com/mxcl/homebrew/wiki/Custom-GCC-and-cross-compilers
# 0.5 Make sure you have bundler version ~> 1.2 as Rails depends on it
gem install bundler
# 1. Get edge Rails source (master branch)
git clone https://github.com/rails/rails.git
@nullsauce
nullsauce / mongoose group operation
Created November 6, 2012 23:11 — forked from richzw/mongoose group operation
The way of mongoose group operation
command = {
'group' : { //mongodb group command
'ns' : 'pings', //the collection to query
'cond' : {'active.end' : { $gt: new Date() }}, //active.end must be in the future
'initial': {'count': 0}, //initialize any count object properties
'$reduce' : 'function(doc, out){ out.count++ }',
'key' : {'url': 1} //fields to group by
}
}