Lazy Diary @ Hatena Blog

PowerShell / Java / miscellaneous things about software development, Tips & Gochas. CC BY-SA 4.0/Apache License 2.0

Entries from 2018-04-01 to 1 month

(特に小学校の)プールの運用方法

(A) 夏、屋外のプールが終わっても水を張ったままにしておき、翌年の春、プール開きの前に虫やカエルなど水生生物の観察をする文化。そのあとプールに繁茂した藻やら何やらを一生懸命に掃除して、やっとプール開き。 (B) プールは必ず屋内に設置されているの…

GitLabのworker_processesの設定

Git

GitLabのunicornの設定のうち、worker_processes(プロセス数)はCPUコア数+1がおすすめ、という話がGitLabのドキュメントに載っている。 https://docs.gitlab.com/ee/install/requirements.html#unicorn-workers なんだけど、これってだいたい奇数になるし…

小さな生き物を使った「実験」

(A) 子供が小さな生き物を「実験台」にして遊ぶのは、よくあることだし実験や科学的な知識に興味を持たせるのによい、という考え方。 (B) 生き物を「実験台」にするのは残酷で、許されることではない、という考え方。 たとえば私の地元は(A)の考え方で、友人…

Memory Consumption to Read XMLs in PowerShell

Background PowerShell has an useful function to read and parse XML files: [XML]. But reading XML files and (especially) building DOMs are memory consuming function. Question How much memory do you need to read XML files with [XML]? Methods…