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
import ddf.minim.analysis.*; | |
import ddf.minim.*; | |
Minim minim; | |
AudioPlayer in; | |
int time; | |
int waveH; | |
String stringName = "test"; |
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
*-zsh zone(3356)-* | |
/Users/mactkg/Desktop/pros% bash | |
*-bash zone(23750)-* | |
bash-3.2$ csh | |
*-csh zone(23756)-* | |
[athene:~/Desktop/pros] mactkg% ps -la | |
UID PID PPID F CPU PRI NI SZ RSS WCHAN S ADDR TTY TIME CMD | |
0 3352 62566 4106 0 31 0 2436324 1612 - Ss f1992a0 ttys000 0:00.25 login -pf mactk | |
501 3356 3352 4006 0 31 0 2437320 2724 - S cb37540 ttys000 0:00.18 -zsh | |
501 23750 3356 4006 0 31 0 2435548 996 - S 1cb527e0 ttys000 0:00.00 bash |
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
#include <string.h> | |
#include <stdio.h> | |
#include <time.h> | |
#include <limits.h> | |
#define NUM 100000 | |
#define N 2147483647L | |
int main(void){ | |
long long int i; | |
clock_t start,end; |
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
<install> | |
<name>ofxUI</name> | |
<version>0.01</version> | |
<author>none</author> | |
<url></url> | |
<add> | |
<!-- ===================================================================== --> | |
<!-- ========================== add per project using this addon ========= --> | |
<!-- ===================================================================== --> |
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
# -*- coding:utf-8 -*- | |
import random | |
def main(): | |
word_list = [u'マジで', u'ヤバい', u'ウケるー', ] | |
while True: | |
raw_input(">>>") | |
print random.choice(word_list) |
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
ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEAoJ888agLJ1sGsZYvxLH7AhNUQNvFIH7R8Gh5pdhDHTJW2582d/fNVHZys95Rv+KRpQ25K4j/WHYfpjAdmGYtg8knAx4k+yjsdITC0aCXg32qxnMLMlwwusci4AN95THgDAEUQt3q/2FR/ssgwkkngsHaFqykLrJINVES+zK679Up/kQtwCm7b5+o3ya4T/L+AkR9C/IBfhPCZkhSQtQfVruxR2Ou5NR8eUI5hy4VPo0RxN8tRKP6Szl6kp07+1RwU8x12bInpU139kSGMhj81++dMaY59k7xX5YmQs0YMaknI8doFGgtgvHcIpNef/lnLtDEtuaqPPTFOw89YCUrUQ== [email protected] |
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
atk giflib libevent mit-scheme rtmpdump | |
boost gist libffi mobile-shell ruby | |
cairo git libicns nkf theora | |
cflow git-flow libogg node tig | |
clisp glib librsvg opencore-amr tmux | |
cmake global libsigsegv openjpeg tree | |
corkscrew gtk+ libtiff openssl wget | |
eigen htop-osx libvorbis pango wine | |
elixir imagemagick libvpx pixman x264 | |
erlang intltool libyaml pkg-config xvid |
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
echo "make a directory" | |
sudo mkdir -p /usr/local/texlive/texmf-local/fonts/opentype/hiragino/ | |
cd /usr/local/texlive/texmf-local/fonts/opentype/hiragino/ | |
echo -n "I'm at" | |
pwd | |
sudo ln -fs "/Library/Fonts/ヒラギノ明朝 Pro W3.otf" ./HiraMinPro-W3.otf | |
sudo ln -fs "/Library/Fonts/ヒラギノ明朝 Pro W6.otf" ./HiraMinPro-W6.otf | |
sudo ln -fs "/Library/Fonts/ヒラギノ丸ゴ Pro W4.otf" ./HiraMaruPro-W4.otf | |
sudo ln -fs "/Library/Fonts/ヒラギノ角ゴ Pro W3.otf" ./HiraKakuPro-W3.otf | |
sudo ln -fs "/Library/Fonts/ヒラギノ角ゴ Pro W6.otf" ./HiraKakuPro-W6.otf |
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 | |
ADDRESS=`grep OFFER /var/log/system.log | tail -n1 | cut -d' ' -f9` | |
if test -z $1 | |
then | |
ssh pi@$ADDRESS | |
else | |
ssh $1@$ADDRESS | |
fi |
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
import math | |
def fft(n, data): | |
theta = math.pi * 2 / n | |
def scramble(k, i): | |
while True: | |
i ^= k | |
if i >= k: | |
return i |