View Thank_You.dot
digraph G { | |
graph [rankdir = LR]; | |
LTP_01 -> LTP_01_01 [label = "track"]; | |
LTP_01 -> LTP_01_02 [label = "track"]; | |
LTP_01 -> LTP_01_03 [label = "track"]; | |
LTP_01_01 -> Thank_You [label = "recordingOf"]; | |
LTP_01_02 -> Thank_You [label = "recordingOf"]; | |
LTP_01_03 -> Thank_You [label = "recordingOf"]; | |
LTP_01_01 [label = "1曲目", style = dashed]; |
View LTP_01 のリソースの記述を取得する.rq
# Turtle 形式で出力させるのが見やすくておすすめです | |
BASE <https://mltd.pikopikopla.net/resource/> | |
DESCRIBE <LTP_01> |
View github-dashboard-emojify.user.css
#dashboard>.news>div>.create>.body>.Details>div>div>div:first-child>div:before { | |
content: '📖'; | |
} | |
#dashboard>.news>div>.follow>.body>.Details>div>div>div:first-child>div:before { | |
content: '👤'; | |
} | |
#dashboard>.news>div>.follow>div>div>div>div:first-child>div:before { | |
content: '👤'; |
View millionlive.tsv
名前 | タグ数 | 属性(グリマス) | 属性(ミリシタ) | |
---|---|---|---|---|
北沢志保 | 2144 | Visual | Fairy | |
七尾百合子 | 1723 | Visual | Princess | |
望月杏奈 | 1576 | Vocal | Angel | |
真壁瑞希 | 1345 | Dance | Angel | |
周防桃子 | 1297 | Visual | Fairy | |
箱崎星梨花 | 1287 | Vocal | Angel | |
最上静香 | 1186 | Vocal | Fairy | |
横山奈緒 | 1177 | Dance | Princess | |
春日未来 | 1160 | Vocal | Princess |
View palindrome.scala
val answers = Iterator.from(10, 1).filter( | |
Foo(_).test(isPalindrome) | |
) | |
println(answers.next) | |
def isPalindrome(base: String): Boolean = | |
base == base.reverse | |
case class Foo(n: Integer) { |
View config.py
import pyauto | |
from keyhac import * | |
def configure(keymap): | |
def is_not_cygwin(window): | |
return window.getProcessName() != "mintty.exe" | |
keymap_emacs = keymap.defineWindowKeymap(check_func=is_not_cygwin) | |
keymap_emacs["LC-a"] = "Home" | |
keymap_emacs["LC-e"] = "End" |
View backup_doukutsu.sh
#!/bin/bash | |
set -eu | |
DOUKUTSU_DIR="${HOME}/Documents/洞窟物語/" | |
PLIST_DIR="${HOME}/Library/Preferences/" | |
PLIST_NAME="com.nakiwo.Doukutsu.plist" | |
backup() | |
{ |
View MSGothicBuster.css
@font-face { | |
font-family: "MS Pゴシック"; | |
src: local("Hiragino Kaku Gothic Pro"); | |
} | |
@font-face { | |
font-family: "MS ゴシック"; | |
src: local("Hiragino Kaku Gothic Pro"); | |
} |
View anime.txt
[2005] | |
苺ましまろ | |
[2007] | |
ひだまりスケッチ | |
[2008] | |
ひだまりスケッチ×365 | |
ストライクウィッチーズ |
View keymap.txt
status key command | |
Composition Backspace Backspace | |
Composition Ctrl [ Cancel | |
Composition Ctrl @ ConvertToHalfAlphanumeric | |
Composition Ctrl g Delete | |
Composition Ctrl h Backspace | |
Composition Ctrl i ConvertToFullKatakana | |
Composition Ctrl k MoveCursorLeft | |
Composition Ctrl l MoveCursorRight | |
Composition Ctrl Left MoveCursorToBeginning |