- Created by a team Led by Todd Semple, ceator of Plants vs. Zombies
- VR Puzzle Game using GearVR
- excellent blackless color pallette inspired by impressionist exhibit at the deYoung museum in SF
- ride a magic carpet, collect items, avoid danger, get lost
- looking up to the sky lets you access inventory / navigate / other tasks - pretty innovative!
- created for Oculus VR Jam
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
#!/usr/bin/env python | |
# encoding: utf-8 | |
# install dependencies: sudo pip install validate_email pyDNS | |
# run it: python check.py robin hood gmail.com | |
# FYI, forwarding addresses (not catchalls) will report 'probably not valid'. that's all i've got right now. | |
import sys | |
from validate_email import validate_email |
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
// on page load, search for & display a random gif matching your search term using the Giphy API. | |
// usage: | |
// include giphy.js in your <head> | |
// set q to your search term (e.g. "brunch") | |
// add <span id = "giphyme"></span> wherever you want to display the image. -- FYI, it will be centered. | |
// big ups to the Giphy crew (giphy.com) | |
// 2014 - Neal Shyam [@nealrs | nealshyam.com] | |
document.addEventListener('DOMContentLoaded', function () { | |
q = "finger guns"; // search query |
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
#!/usr/bin/env python | |
# encoding: utf-8 | |
# 2014 - Neal Shyam [@nealrs | nealshyam.com] | |
# usage: $python checkrap.py first_name last_name domain_name | |
# e.g: $python checkrap.py john doe gmail.com | |
# | |
# | |
# PLEASE DON'T BE A DICK OR USE THIS FOR EVIL. | |
# Seriously, the internet is a nice place, let's keep it that way. |
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
# Say hello to Jr. | |
This is a demo of [David Pennington](https://github.com/Xeoncross)'s client-side [static site generator](https://github.com/Xeoncross/jr). | |
The whole page is regular markdown (except for the `jr.js` load) | |
*For basic bloggers & the CMS averse, this may be just want you need.* | |
<script src="js/jr.js"></script> |
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
# fix non-looping gifs | |
#source: http://superuser.com/questions/159212/how-do-i-make-an-existing-animated-gif-loop-repeatedly | |
./gifsicle -bl /path/to/image.gif |
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
# Giphy API search written with Toga -- written for Issue 62 of Git@Me | |
# This is entirely cribbed from the Toga Browser tutorial. This isn't a particuarly good demo, but it'll do. @nealrs 2014 | |
#!/usr/bin/env python | |
from __future__ import print_function, unicode_literals, absolute_import | |
import urllib | |
import json | |
import toga | |
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
{ | |
"neal" : [ | |
{ | |
"year":1983, | |
"live": "New Delhi, India", | |
"school": null, | |
"work": null | |
}, | |
{ | |
"year":1984, |
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
# Path to your oh-my-zsh installation. | |
export ZSH=$HOME/.oh-my-zsh | |
#autoenv | |
source /usr/local/opt/autoenv/activate.sh | |
source ~/.autoenv/activate.sh | |
#tmpdir | |
if [ -f $(which tmpdir-tab) ]; then | |
. $(which tmpdir-tab) |
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
# Clean, simple, compatible and meaningful. | |
# Tested on Linux, Unix and Windows under ANSI colors. | |
# It is recommended to use with a dark background and the font Inconsolata. | |
# Colors: black, red, green, yellow, *blue, magenta, cyan, and white. | |
# | |
# http://ysmood.org/wp/2013/03/my-ys-terminal-theme/ | |
# Mar 2013 ys | |
# Machine name. | |
function box_name { |
OlderNewer