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 -*- | |
#エロ同人ファンク 歌詞カード | |
# original: | |
# KNOTS (@knotscream) | |
# http://soundcloud.com/knotscream/ero_doujin_funk | |
if __name__ == "__main__": | |
for i in range(2): | |
for j in range(4): | |
print("やめて!私に乱暴する気でしょう!エロ同人みたいに!") |
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 -*- | |
#プレゼント 歌詞カード | |
if __name__ == "__main__": | |
presents = [ | |
[ | |
"キリンがさかだちしたピアス", | |
"フラッグチェックのハンチング", | |
"ユニオンジャックのランニング", | |
"丸いレンズのサングラス", |
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 -*- | |
import csv | |
import sys | |
def main(filepath): | |
csvfile = open(filepath) | |
for num, line in enumerate(csv.reader(csvfile)): | |
print("line {0}: ({1} fields) {2} ".format(num, len(line), 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
#! /usr/local/bin/python3 | |
# -*- coding:utf8 -*- | |
# BOOTH2clickpost | |
# Author: mzsm | |
# License: NYSL <http://www.kmonos.net/nysl/> | |
import csv | |
import re | |
from optparse import OptionParser |
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
find . -name '*.zip' | awk '{print substr($0, 3, length($0)-6), substr($0, 3)}' | xargs -L 1 unzip -O cp932 -d |