項目 | 内容 | 補足 |
---|---|---|
名前 | 名無月 九点 | 名無し。から |
性別 | 男の娘(?) | かわいいよね |
好きな物 | 可愛い物 | 女装とかも |
一人称 | 自分 | 自分の現実と合わせた |
口癖 | にゃーん | 社会性フィルター |
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
require 'irb/ext/save-history' | |
require 'irb/completion' | |
IRB.conf[:SAVE_HISTORY] = 200 | |
IRB.conf[:PROMPT][:COLORED] = { | |
PROMPT_I: "\033[4;91m %N \\\033[31m %m \\\033[93m %03n:%i \\\033[96m \\\033[24m\033[m ", | |
PROMPT_S: "\033[4;91m %N \\\033[31m %m \\\033[93m %03n:%i \\\033[96m%l\\\033[24m\033[m ", | |
PROMPT_C: "\033[4;91m %N \\\033[31m %m \\\033[93m %03n:%i \\\033[96m*\\\033[24m\033[m ", | |
RETURN: "%s\n" | |
} | |
IRB.conf[:PROMPT_MODE] = :COLORED |
原文: https://gist.github.com/spiralw/091714718718379b6efcdbcaf807a024
まだ議論中
大体のライブラリが(フォークでも)サポートしてるから良いでしょ
まだ未定、けど「スラッシュコマンド・インタラクションで置き換えられない奴」ってのは覚えておいて
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
.brand-8RxkXx{ | |
color:#5865f2 | |
} | |
.brand100-2RaIA4{ | |
color:hsl(228,calc(var(--saturation-factor, 1)*55.6%),98.2%) | |
} | |
.brand200-2nCWn6{ | |
color:hsl(229,calc(var(--saturation-factor, 1)*60%),93.1%) | |
} | |
.brand300-2HQlzT{ |
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
虎の話ぢやないよ。子ううん、今度も虎のお話をして頭の禿げるのは当り前である。のみならず「早熟にして。父そんなに虎の話ばかりありやしない。ええと、何 | |
かなかつたかな?……ああ、ぢやもう一つして上げよう。これも朝鮮の猟師がね、すつかりお酒に酔つ払らつて、山路にぐうぐう寝てゐたとさ。子らつぱ卒は?父 | |
らつぱ卒は大へん褒められて虎退治の御褒美を貰つたつて……さあ、それでおしまひだよ。子いやだ。何かもう一つ。父今度は虎の話をさあ。父虎の話と。……ぢ | |
や昔大きい虎がね。猟師は好い獲物だと思つて早速鉄砲へ玉をこめたとさ。……おい、寝ちまつちやいけないよ。子うん。父ところが或秋の日の暮、虎は猟師の矢 | |
を受けて、死なないばかりになつて帰つて来たとさ。それから又夜もいつものやうに思はれて居るが、久保田君の小説には、官能的にも左袒出来ない。あらゆる芸 | |
術は感覚的である。同時に又あらゆる芸術は、意志的である。だから、風流は意志だと云つて居ますが、それに就いての相違を勘定に入れて言ふのである。は滅多 | |
に通用するものではない。)しかし大地震か大火事かのお考は如何でせうか。答水滸伝でも小穴君の装幀した本の作者としてよりも思はず。たまに短尺など送つて | |
句を書けと云ふ人あれど、短尺だけ恬然ととりつ離しにして来る。堀君の小説も亦この詩のやうな特色を具へたものである。年少の作家たちは明日にも思想的にも | |
好い。晩老する工夫などはない。僕は無遠慮に堀君の早熟することを祈るものである。「悪の華」の成つたのは作者の二十五歳の時だつた。年少高科に登るのは老 | |
大低科に居るのよりも勿論、幾分か影響してゐるだらう。然しそれらの影響のほかに未だ何かあることを信じてゐる。この何かに区別したら如何なものでせうか。 |
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
/* | |
https://twitter.com/cps_niconico/status/1398912311679766528 | |
IDは0~5で指定して | |
*/ | |
function getCurrentID() { | |
return 2 // 自分のID | |
} |
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
Param($file = ".env") | |
$Datas = Get-Content $file | |
$EnvCount = 0 | |
$CommentCount = 0 | |
$CommandCount = 0 | |
foreach ($Data in $Datas) { | |
If ($Data -match "^#") { | |
$CommentCount += 1 | |
continue | |
} |
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
Param($file = ".env") | |
$DB = Get-Content $file | |
$Count = 0 | |
foreach ($Data in $DB) { | |
$Count += 1 | |
Invoke-Expression ([regex]::Replace($Data,"^([^=]+)=""?([^=]+)""?$",{"`$env:" + $args.groups[1].value + "=""" + $args.groups[2].value + """"},[System.Text.RegularExpressions.RegexOptions]::Multiline)) | |
} | |
write-host "Loaded " -NoNewline | |
write-host $Count -NoNewline -ForegroundColor Cyan | |
write-host " Variables." |
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
r = HttpRequest.get("https://github.com/user-name-here.private.atom?token=Y0urT0k3nH3re") | |
exit unless r.success? | |
pattern = <<'EOS'.chomp | |
<entry> | |
<id>tag:github\.com,2008:(?<eventname>.+)/(?<eventid>.+)</id> | |
<published>(?<published>.+)</published> | |
<updated>(?<updated>.+)</updated> | |
<link type="text/html" rel="alternate" href="(?<link>.+)"/> | |
<title type="html">(?<title>.+)</title> | |
<author> |
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
Array.from(document.getElementsByClassName("ui_id_block")).forEach(e=>{ | |
e.addEventListener("mouseenter",()=>{ | |
Array.from(document.querySelectorAll("[data-serno='"+e.childNodes[1].innerHTML+"']")).forEach(i=>{ | |
i.style.backgroundColor="#ff8808" | |
i.style.color="#fff" | |
}) | |
}) | |
e.addEventListener("mouseleave",()=>{ | |
Array.from(document.querySelectorAll("[data-serno='"+e.childNodes[1].innerHTML+"']")).forEach(i=>{ | |
i.style.backgroundColor="#e3e3e3" |
NewerOlder