View gist:4727439
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
NullReferenceException: Object reference not set to an instance of an object | |
UnityEngine.GUI.DrawTextureWithTexCoords (Rect position, UnityEngine.Texture image, Rect texCoords, Boolean alphaBlend) (at C:/BuildAgent/work/812c4f5049264fad/Runtime/ExportGenerated/Editor/GUI.cs:215) | |
Character.Start () (at Assets/Character.cs:13) |
View webkitGetUserMedia.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
navigator.webkitGetUserMedia({audio: true, video: false}, function(LocalMediaStream){ | |
audio = document.querySelector('video'); | |
if(typeof window.URL.createObjectURL(LocalMediaStream) != "undefined"){ | |
var file = window.URL.createObjectURL(LocalMediaStream); | |
audio.src = file; | |
audio.play(); | |
} | |
console.log(file); | |
console.log('>>'+LocalMediaStream.kind); // THIS WILL RETURN UNDEFINED | |
View gist:4576731
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
n=[] | |
n['M'] = 1000 | |
n['CM'] = 900 | |
n['D'] = 500 | |
n['CD'] = 400 | |
n['C'] = 100 | |
n['XC'] = 90 | |
n['L'] = 50 | |
n['XL'] = 40 | |
n['X'] = 10 |
View gist:4569549
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
part1 = 'abcdefghijklm ' | |
part2 = 'nopqrstuvwxyz.' | |
convert = (text) -> | |
output = "" | |
for i in [0...text.length] | |
index = part1.indexOf text.charAt(i) | |
if index isnt -1 then output += part2.charAt index else | |
index = part2.indexOf(text.charAt(i)) | |
output += part1.charAt index |
View gist:4569362
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
murder = (howMany, bounce) -> | |
people = [0..howMany] # people from 0 to 40 | |
for i in people | |
people[i] = 1 | |
killed = Array() | |
count=0 | |
for i in [1..howMany] | |
whichOne = i*bounce - howMany*count | |
count++ if whichOne> (howMany-bounce) | |
if people[whichOne] is 1 |
NewerOlder