Skip to content

Instantly share code, notes, and snippets.

View kyontan's full-sized avatar
♨️

kyontan kyontan

♨️
View GitHub Profile
@mgalardini
mgalardini / run_notebook.py
Created June 14, 2017 10:00
Pass arguments to a Jupyter notebook and save it after re-running it
#!/usr/bin/env python
'''
Run and save a jupyter notebook by providing arguments from the command line
Uses the nbparameterise package, and requires the first cell to have variables
definitions.
Command line parsing based on this Stack Overflow answer:
https://stackoverflow.com/a/42355279/1237531
'''
@yosida95
yosida95 / pre-commit
Created April 13, 2018 09:46
Check Java format against google-java-format and prevent git commit if found violations
#!/usr/bin/env bash
google_java_format=$HOME/.local/lib/google-java-format-1.5-all-deps.jar
[ -f "$google_java_format" ] || exit 1
git diff --name-only --cached| {
code=0
while IFS= read -r file; do
[ -f "$file" ] || continue
case "$file" in
@voluntas
voluntas / death_march.md
Last active September 26, 2025 07:43
デスマーチが起きる理由 - 3つの指標

デスマーチが起きる理由 - 3つの指標

著者: 青い鴉(ぶるくろ)さん @bluecrow2

これは結城浩さんの運用されていた YukiWiki に当時 Coffee 様 (青い鴉(ぶるくろ)さん)がかかれていた文章です。 ただ 2018 年 3 月 7 日に YukiWiki が運用停止したため消えてしまいました。その記事のバックアップです。

今は 404 ですが、もともとの記事の URL は http://www.hyuki.com/yukiwiki/wiki.cgi?%A5%C7%A5%B9%A5%DE%A1%BC%A5%C1%A4%AC%B5%AF%A4%AD%A4%EB%CD%FD%CD%B3 になります。

昔、自分がとても感銘を受けた文章なので、このまま読めなくなるのはとてももったいないと思い、バックアップとして公開しています。