Lazy Diary @ Hatena Blog

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

Entries from 2023-09-01 to 1 month

submoduleとsubtreeの.gitディレクトリの違い

Git

submoduleの場合 コミットが1つもないリポジトリにはsubmoduleの追加はできない submoduleの先のオブジェクトは.gitディレクトリには保存されない $ git clone https://github.com/satob/main-submodule.git Cloning into 'main-submodule'... warning: You …

ITプロジェクトの失敗原因における「プロジェクトマネジメントに関する」の意味

ITプロジェクトの失敗原因のうち、いちばん多いのはプロジェクトマネジメントに関するもので全体の54%、純粋に技術的なものは3%だけ、という調査結果がある。*1 では、この「プロジェクトマネジメントに関する(attributed to project management)」という…

IE11 Compatibility of JSFiddle Equivalent

# Name URL IE11 1 JSFiddle https://jsfiddle.net/ NG Show error message 2 JS Bin https://jsbin.com/?html,output OK 3 JSitor https://jsitor.com/ NG Show error message 4 CodePen https://codepen.io/pen/ NG Show error message 5 Plunker https://…

System.currentTimeMillis()のOS・JavaVMごとの精度

動機 JavaのSystem.currentTimeMillis()の説明*1には以下のように書いてあるけど本当? System.currentTimeMillis()とSystem.nanoTime()で試してみた。 たとえば、多くのオペレーティング・システムでは、時間を10ミリ秒の単位で計測します。 方法 以下のプ…