db d8b db d8888b. db dD d888888b .d8888. d888888b
88 I8I 88 88 8D 88 ,8P'
88' 88' YP ~~88~~' 88 I8I 88 88oobY' 88,8P 88
8bo. 88
Y8 I8I 88 888b 88
8b 88 Y8b. 88
8b d8'8b d8' 88 88. 88
88. db .88. db 8D 88
8b8'
8d8' 88 YD YP YD VP Y888888P `8888Y' YP
This file contains hidden or 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
/* | |
* Usage: | |
* | |
* AFRAME.utils.throttleTicks({ | |
* 'aabb-collider':{ "*": 150 }, | |
* 'texturescroll':{ "*": 50 }, | |
* 'foo': { "*": AFRAME.utils.device.isMobile() ? 150 : 50 } | |
* }, true) | |
* | |
*/ |
This file contains hidden or 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
find . -type f -printf "%p %s\n" | LC_ALL=C sort | md5sum | |
# output: a71e7b59041f2db45adb105596519167 - |
This file contains hidden or 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
<nav class="navbar navbar-inverse navbar-fixed-top"> | |
<div class="container"> | |
<div class="navbar-header"> | |
<a class="navbar-brand" href="#">Metaradio</a> | |
</div> | |
<div id="navbar" class="navbar-collapse collapse"> | |
<ul class="nav navbar-nav"> | |
<li><a href="#link2" onclick="alert('todo')">About</a></li> | |
<li><a href="#link3" onclick="alert('todo')">Examples</a></li> | |
</ul> |
This file contains hidden or 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 | |
awk '/^#include *".*"$/ { | |
i = index($0, "\""); | |
file = substr($0, i + 1, length() - i - 1); | |
while ((getline < file) == 1) print; | |
close(file); | |
next; | |
} 1' myfile.txt > myfile.bundled.txt |
This file contains hidden or 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 | |
# usage: ./wav2csound sample.wav >> mysong.csd | |
test -z $1 && { | |
echo "usage: wav2csound sample.wav"; | |
echo " wav2csound sample.wav >> mysong.csd" | |
exit 0; | |
} | |
{ |