hamait2024
2024/12/07 @suchi
FYIL How Small Steps Build Knowledge, Drive
Growth, and Spark Endless Possibilities
Slide 2
Slide 2 text
hamait2024
2024/12/07 @suchi
TODAY
I LEARNED How Small Steps Build Knowledge, Drive
Growth, and Spark Endless Possibilities
Slide 3
Slide 3 text
TIL
hamamatsu.rb #132
2022/02/09: suchi
https://speakerdeck.com/suchi/til-today-i-learned
https://speakerdeck.com/suchi/til-today-i-learned
Slide 4
Slide 4 text
TILとは
Today I Learned(今日わたしが学んだこと)
Slide 5
Slide 5 text
最もスターがあるtilリポジトリ
https://github.com/jbranchaud/til
A collection of concise write-ups on small things I learn day to day
across a variety of languages and technologies. These are things
that don‘t really warrant a full blog post. (いろんなな言語や技術を使っ
て日々学んでいる小さなことを簡潔に書いた記事のコレクションです。こ
れらはブログエントリレベルの内容は保証できません)
hamait2024
FYIL
ruby.txt
24
#2005/06/28
ARGFは引数をすべてファイルで、かつ1つの大きなファイルとみなす。
while line = ARGF.gets
..
end
は、
while argv = ARGV.shift
File.open(argv) {|file|
while line = file.gets
..
end
}
end