Skip to content

Instantly share code, notes, and snippets.

View bishopZ's full-sized avatar

Bishop Zareh bishopZ

View GitHub Profile
@bishopZ
bishopZ / After Effects Notes
Last active June 10, 2016 15:17
websites
http://bishopz.com
Training Videos
http://www.videocopilot.net/tutorials/
http://www.lynda.com/ (not free)
Plugins and Script
http://motionscript.com/
http://aescripts.com/ (not free)
@bishopZ
bishopZ / phonegap notes
Last active January 8, 2016 23:32
phonegap notes
x86 emulator is faster
http://ionicframework.com/getting-started/
http://gonzalo123.com/2014/07/21/testing-phonegapcordova-applications-fast-as-hell-in-the-device-with-ionic-framework/
https://developer.amazon.com/public/community/post/TxSKXI5UIOVFFU/Build-Higher-Performance-Cordova-Based-Fire-OS-Apps-by-Implementing-Amazon-Web-V
SQLite Docs
https://github.com/litehelpers/Cordova-sqlite-storage/blob/d99ee44/README.md
http://bignerdranch.com/solutions/AndroidProgramming2e.zip
http://emma.sourceforge.net
http://developer.android.com/tools/help/monkey.html
https://android-arsenal.com/news
https://www.reddit.com/r/androiddev
https://plugins.jetbrains.com/?androidstudio
@bishopZ
bishopZ / gist:f44dca19d22b9de96958
Last active August 29, 2015 14:04
Require.js & CommonJS & Node compatible module creation
function(name, root, factory){
if (typeof define !== 'undefined' && define.amd) {
define(name, ['dependency'], factory);
} else if (typeof exports !== 'undefined') {
if (typeof module !== 'undefined' && module.exports) {
exports = module.exports = factory;
}
exports[name] = factory;
} else {
root[name] = factory;
@bishopZ
bishopZ / Version 1.2
Last active December 27, 2015 21:48
Spec Version 1.2
// Specification V1.2
// Collapsed namespace
// Common to all standards
// Saitized:
// Text only content
// URL rewriting
// Some type enforcement
// unescaped
@bishopZ
bishopZ / StagecoachHack
Last active December 15, 2015 14:49
The Stagecoach Hack
The Stagecoach Hack was inspired by this quotation:
"Plus it was rumored that hackers for big media companies had figured out a way
to get through the defenses that were built into such systems, and run junk
advertisements in your peripheral vision (or even sprang in the fucking middle)
all the time - even when your eyes were closed. Bud knew a guy like that who'd
somehow gotten infected with a meme that ran advertisements for roach motels, in
Hindi, superimposed on the bottom right-hand corner of his visual field,
twenty-four hours a day, until the guy whacked himself."
-- Neal Stephenson, Diamond Age, pg 39
@bishopZ
bishopZ / localstorage-example.html
Created February 3, 2013 18:09
LocalStorage Example
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Cat Walk</title>
</head>
<body>
<img style="position:absolute;" src="cat.gif">
@bishopZ
bishopZ / indexDB-example.html
Created February 3, 2013 18:06
IndexDB example
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Meme Generator</title>
<style>
#meme-preview {
position: relative;
width: 400px;
height: 400px;
/**
* An implementation of the K Combinator.
* http://wiki.tcl.tk/1923
*
* Copied from Mikael Brockman's code in Ruby on Rails' ActiveSupport library.
* http://weblog.jamisbuck.org/2006/10/27/mining-activesupport-object-returning
*/
function returning(value, block, context) {
block.call(context || null, value);
return value;