順位 | カタカナ | 頻度 | スコア |
---|---|---|---|
1 | ニンジャスレイヤー | 610 | 10632 |
2 | ニンジャ | 500 | 3657 |
3 | イヤーッ | 211 | 2537 |
4 | グワーッ | 155 | 2056 |
5 | ギンイチ | 166 | 1986 |
6 | スリケン | 123 | 1533 |
7 | ネオサイタマ | 73 | 1362 |
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
digraph g{ graph[rankdir=LR;]; | |
v0477 [label="0477\n(33)"] | |
v0225 [label="0225\n(05)"] | |
v4689 [label="4689\n(25)"] | |
v1224 [label="1224\n(03)"] | |
v2268 [label="2268\n(44)"] | |
v6678 [label="6678\n(12)"] | |
v6777 [label="6777\n(01)"] | |
v5589 [label="5589\n(34)"] | |
v2889 [label="2889\n(04)"] |
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
default: | |
echo "(+ 1 2) (+ 10 3)" | ruby tlisp.rb |
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
(ns xmas) | |
(doseq [line (concat (take 9 (map #(apply str | |
(take (+ (rem % 3) | |
(int (/ % 3))) | |
(repeat "*"))) | |
(range 20))) | |
(take 2 (repeat "*")))] | |
(println (format "%1$30s*%1$s" line))) |
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
(defpackage :brainfuck (:use :cl)) | |
(in-package :brainfuck) | |
(defun string->brainfuck (source) | |
(let* ((fragments | |
(map 'list | |
(lambda (c) | |
(case c | |
(#\> "(incptr 1)") |
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
#!/bin/bash | |
cd "`dirname $0`/../" | |
lein compile | |
git archive --format=tar --prefix=hogehoge/ HEAD | gzip > ../hogehoge.tar.gz | |
scp -l 800 ../hogehoge.tar.gz server:/tmp/ | |
ssh server "cd /usr/local; tar zxf /tmp/hogehoge.tar.gz" |
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
# -*- coding: utf-8 -*- | |
require 'open-uri' | |
require 'nokogiri' | |
require 'uri' | |
$index_url = URI.parse('http://mbbs.tv/u/?id=18over') | |
$known_pages = [] | |
def page(url) |
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
(defn md5 | |
"Generate a md5 checksum for the given string" | |
[token] | |
(let [hash-bytes | |
(doto (java.security.MessageDigest/getInstance "MD5") | |
(.reset) | |
(.update (.getBytes token)))] | |
(.toString | |
(new java.math.BigInteger 1 (.digest hash-bytes)) ; Positive and the size of the number | |
16))) ; Use base16 i.e. hex |
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
(ns tarai.core | |
(:use [overtone.live])) | |
;; basic.clj より | |
(defsynth foo [freq 200 dur 0.5] | |
(let [src (saw [freq (* freq 1.01) (* 0.99 freq)]) | |
low (sin-osc (/ freq 2)) | |
filt (lpf src (line:kr (* 10 freq) freq 10)) | |
env (env-gen (perc 0.1 dur) :action FREE)] | |
(out 0 (pan2 (* 0.1 low env filt))))) |
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
(ns overtone-xmas.bells | |
(:use [overtone.live])) | |
;;tested in Overtone 0.6-dev | |
;;add [overtone.sc.machinery.defcgen] to ns :use clause for 0.5.0 | |
;;http://computermusicresource.com/Simple.bell.tutorial.html | |
(def dull-partials | |
[ | |
0.56 |
OlderNewer