Skip to content

Instantly share code, notes, and snippets.

View yujihamaguchi's full-sized avatar

Yuji Hamaguchi yujihamaguchi

View GitHub Profile
@yujihamaguchi
yujihamaguchi / fizzbuzz-using-condp.clj
Created July 19, 2014 12:42
fizzbuzz using condp
(defn fizzbuzz [x]
(condp #(= (mod %2 %1) 0) x
15 "FizzBuzz"
3 "Fizz"
5 "Buzz"
x))
@yujihamaguchi
yujihamaguchi / lsof.sh
Created July 19, 2014 08:03
[Linux] 待ち受けポート番号とプログラムの確認
lsof -i -n -P
@yujihamaguchi
yujihamaguchi / list_running_pid.sql
Created July 14, 2014 06:53
[Redshift] 実行中のプロセスをリスト
select pid, starttime, duration,
trim(user_name) as user,
trim (query) as querytxt
from stv_recents
where status = 'Running';