Skip to content

Instantly share code, notes, and snippets.

@epicfaace
epicfaace / index.js
Created February 23, 2013 23:19
voxel.js game
var createGame = require('voxel-engine')
function sphereWorld(x, y, z) {
// return the index of the material you want to show up
// 0 is air
if (x*x + y*y + z*z > 15*15) return 0
return 3
}
var game = createGame({
ffmpeg -i sourcemovie.mov -vcodec libx264 -b 400k -g 250 -keyint_min 24 -bf 16 -coder 1 -refs 6 -flags +loop -deblockbeta -6 -partitions +parti4x4+parti8x8+partp8x8+partb8x8 -flags2 +dct8x8+mixed_refs+wpred+bpyramid -me_method umh -subq 8 -s 640x360 -acodec libfaac -ar 44100 -ab 96k -threads 6 -f mp4 outputmovie.mp4
@epicfaace
epicfaace / gist:5315167
Created April 4, 2013 23:08
automatically push to gh-pages
Add the following 2 lines to the [remote "origin"] section of .git/config:
push = +refs/heads/master:refs/heads/gh-pages
push = +refs/heads/master:refs/heads/master
Every time you push it will automatically push it to gh-pages as well.
@epicfaace
epicfaace / gist:6049856
Created July 21, 2013 20:32
Platypus - convert unix commands to mac osx apps
http://sveinbjorn.org/platypus
@epicfaace
epicfaace / change.js
Last active December 20, 2015 08:19
Scatter changetime
var ScatterGame = new Class({
Binds: "mStart mEnd mDrop mEnter mLeave touchHandler instructionStart".split(" "),
TOUCH_EVENT_MAP: {
touchstart: "mousedown",
touchmove: "mousemove",
touchend: "mouseup"
},
isDragging: !1,
termSidesById: {},
tenths: 0,
@epicfaace
epicfaace / img
Last active December 26, 2015 01:49
test img
document.write("NATE!!!");
@epicfaace
epicfaace / gist:8986697
Last active August 29, 2015 13:56
spanish text
<h1>Arqueólogos dicen que hicieron un importante hallazgo Egipto: un sarcófago de 3.600 años, con la momia aún dentro.</h1>
06:24 PM ET
Descubren una momia de 3.600 años en Egipto
Por Catherine E. Shoichet y Mohammed Tawfeeq, CNN
ha ha ha
(CNN) – Arqueólogos dicen que hicieron un importante hallazgo Egipto: un sarcófago de 3.600 años, con la momia aún dentro.
El periódico estatal egipcio Al-Ahram reportó el jueves que un equipo que trabajaba en una excavación en una tumba en Luxor descubrió el sarcófago con forma de humano.
Data del año 1600 a.C., cuando reinaba el la decimoséptima dinastía faraónica en Egipto, dijo el Consejo Supremo de Antigüedades de ese país.
El sarcófago pertenecía a un alto funcionario del gobierno, cuya momia fue puesta en el interior, dijo Al-Ahram, citando al ministro de Antigüedades de Egipto, Mohamed Ibrahim.
var arr = new Array;
$($("select").get(2)).children("option").each ( function() {
arr.push ( $(this).text() );
});
@epicfaace
epicfaace / img-zoom.html
Last active May 9, 2017 13:00 — forked from vazad28/img-zoom.html
Page code for image pinch and zoom in ionic RC3. I used code from multiple places and credit is due. I cant seem to find the pages I have used the code from. If you know, please tell me so I can add that here.
<ion-header no-shadow>
<ion-navbar no-border-bottom>
<ion-buttons start>
<button ion-button color="light" (click)="closeModal()">Cancel</button>
</ion-buttons>
<ion-title>Media</ion-title>
<ion-buttons end>
<ion-spinner *ngIf="!mediaLoaded" color="light"></ion-spinner>
</ion-buttons>