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
49,^( )*TRACK \d\d AUDIO$ | |
49,^( )*TITLE ".*"$ | |
49,^( )*REM( .*)?$ | |
49,^( )*PREGAP [0-7]\d:\d\d:\d\d$ | |
49,^( )*PERFORMER ".*"$ | |
49,^( )*INDEX 0[01] [0-7]\d:\d\d:\d\d$ | |
49,^( )*FILE ".*" WAVE$ | |
/<ColorSet> | |
/[0][0]:0x000000FF | |
/[0][1]:0x01000005 |
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
もみもみもみもみもみもみもみもみもみひろえっちもみもみもみもみもみ | |
もみもみもみえっちもみもみもみもみもみもみもみもみもみもみもみ | |
えっちもみもみもみもみもみ/////////導線ヤリキレナイえっち火暴えっち | |
もみもみ火暴もみもみもみもみもみもみもみ火暴火暴もみもみもみ火暴 | |
えっち導線火暴導線導線導線導線導線導線導線導線導線導線導線導線 | |
火暴///もみもみもみもみもみもみもみもみ火暴導線導線導線導線導線 | |
導線導線導線火暴もみもみもみ火暴導線導線導線導線導線導線火暴導線 | |
導線導線導線導線導線導線導線火暴えっちもみ火暴 | |
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
curry = ->(f){ | |
args = [] | |
return rec = ->(a){ | |
args << a | |
return f.call(*args) if (args.length == f.arity) || (f.arity == -1) | |
return rec | |
} | |
} | |
if __FILE__ == $0 |
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
REM GENRE blues | |
REM DISCID AF0E790F | |
REM COMMENT "ExactAudioCopy v0.99pb5" | |
CATALOG 0044003082861 | |
PERFORMER "Various Artists" | |
TITLE "ボーカロイド ラボラトリー" | |
FILE "CDImage.wav" WAVE | |
TRACK 01 AUDIO | |
TITLE "実谷なな" | |
PERFORMER "ダブルラリアット" |
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
#!/usr/bin/env ruby | |
cfile_path = ARGV[0] | |
headnum = Multiset.new | |
otherec = Multiset.new | |
certfile = File.open(cfile_path) | |
linenum = 0 |
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
#!/usr/bin/env python | |
#こんなので良いの? もっと良い組込みライブラリとかないの? | |
class Multiset(object): | |
def __init__(self): | |
self._collection = {} | |
def add(self, value): | |
if value in self._collection: |
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 AAAAB3NzaC1yc2EAAAABIwAAAQEAn8TuCZeeEFjuE9KT7Mv5EQrmPrVf6/xlfeh1ChFE7oOhV22f9X3yx4yN3tX2bxHK3AMXQps0ulez3XJ9S3bFrnbhe92z+4VlS3BVnFJV7yTv470cuhTMLzq9iBMdTdGx5Nx15lxJ4iPzd/OzvektRT/+erdOvuDAO1X2iNz1yN1wfDmtFpYGieqJH7n1yd75uqAqPEp/jjqalrRFpc8PgOWdYNV4LbMKhEA76XMTL5RuScjihUxIjNSQ+kSn2yOnypQMrcNg3G03DOiVsMgxAqo/pwzYRmSg2SxcpIVredlY3Mamr4YmSB9a+GHE2yMPH/pb6YjySJYUfxBiIHOBDQ== [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
package me.zonu.dt; | |
import au.com.bytecode.opencsv.CSVReader; | |
import java.io.IOException; | |
import java.io.StringReader; | |
import java.util.List; | |
public class CSVMyTest { | |
public static void main(String[] args) throws IOException { | |
String str = "a\tb\tc\nfooo\tbarr\tbuzbuz"; |
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
# C言語と同じふうにやると、たぶんこんな感じに | |
i = 0 | |
while(i < 10) | |
j = 0 | |
while(j <= i) | |
print "*" | |
j += 1 | |
end | |
print "\n" |
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
scriptor = ->(*args){puts args.join("\n")} | |
title = ->(text){"『#{text}』\n"} | |
paragraph = ->(*args){args.join("\n")+"\n"} | |
chara = ->(name){ | |
->(text){"#{name}「#{text}」"} | |
} | |
ryu = chara[:リュウ] | |
tak = chara[:たかし] | |
scriptor[ |
OlderNewer