Skip to content

Instantly share code, notes, and snippets.

View monry's full-sized avatar

Tetsuya Mori monry

View GitHub Profile
@adarapata
adarapata / aruaru.md
Last active January 9, 2019 02:12
Rxあるある

Rxあるある


無限Subscribe

void Update() {
    this.UpdateAsObservable().Subscribe(_ => Foo());
}
@mattak
mattak / umm-create.sh
Last active July 25, 2018 04:16
Create empty umm project
#!/bin/sh
set -ue
if [ ! -e $HOME/.umm-config.json ]; then
cat <<__CHECK__
ERROR: Cannot find umm-config.json
Make sure the file exists on $HOME/.umm-config.json
__CHECK__
exit 0