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
// Generated on 2013-12-19 using generator-webapp 0.4.6 | |
'use strict'; | |
// # Globbing | |
// for performance reasons we're only matching one level down: | |
// 'test/spec/{,*/}*.js' | |
// use this if you want to recursively match all subfolders: | |
// 'test/spec/**/*.js' | |
module.exports = function (grunt) { |
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
// brace/brace.js | |
(function(Brace) { | |
define('brace/base', | |
['THREE'], | |
function (THREE) { | |
Base = function() { | |
Object.call(this); |
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
(function() { | |
Brace = {}; | |
define('brace/brace', ['THREE', 'brace/base', 'brace/publisher', 'brace/chapter', 'brace/app', 'brace/object', 'brace/settings'], | |
function (THREE, Base, Publisher, Chapter, App, SceneObject, Settings) { | |
Base(Brace); | |
Publisher(Brace); | |
SceneObject(Brace); |
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
int xspacing = 3; // How far apart should each horizontal location be spaced | |
int w; // Width of entire wave | |
int maxwaves = 4; // total # of waves to add together | |
int numwaves = 15; // total # of separate waves | |
float theta = 0.0; | |
float[] amplitude = new float[maxwaves]; // Height of wave | |
float[] dx = new float[maxwaves]; // Value for incrementing X, to be calculated as a function of period and xspacing | |
float[] yvalues; // Using an array to store height values for the wave (not entirely necessary) | |
float[] xpow = new float[numwaves]; |
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
root = true | |
[*] | |
charset = utf-8 | |
indent_style = space | |
end_of_line = lf | |
insert_final_newline = true | |
trim_trailing_whitespace = true | |
[*.js] |
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
(function() { | |
define('shaders/ColorWheel.shader', [] , function () { | |
return { | |
uniforms: { | |
time: { type: 'f', value: 0.0 } | |
}, | |
fragmentShader: [ | |
"uniform float time;", |
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
// | |
// KeyboardViewController.swift | |
// Demo Custom Keyboard | |
// | |
// Created by Drew Lustro on 10/20/14. | |
// | |
// Original derived from tutorial found on AppDesignVault | |
// http://www.appdesignvault.com/ios-8-custom-keyboard-extension/ | |
// | |
// |
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
#!/bin/sh | |
# Some things taken from here | |
# https://github.com/mathiasbynens/dotfiles/blob/master/.osx | |
# Set the colours you can use | |
black='\033[0;30m' | |
white='\033[0;37m' | |
red='\033[0;31m' | |
green='\033[0;32m' |
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
server { | |
listen 80; | |
root /sites/SOME-SITE-ROOT-DIRECTORY/staging0; | |
index index.html index.htm; | |
server_name staging0.jessechorng.com; | |
location / { | |
try_files $uri $uri/ /index.html /index.htm; |
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
drew@ubuntu:~$ cd Desktop/ | |
drew@ubuntu:~/Desktop$ ls | |
vmware-tools-distrib | |
drew@ubuntu:~/Desktop$ cd vmware-tools-distrib/ | |
drew@ubuntu:~/Desktop/vmware-tools-distrib$ ls | |
bin doc etc FILES INSTALL installer lib vmware-install.pl | |
drew@ubuntu:~/Desktop/vmware-tools-distrib$ clear | |
[3;J | |
drew@ubuntu:~/Desktop/vmware-tools-distrib$ sudo ./vmware-install.pl | |
[sudo] password for drew: |
OlderNewer