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
@endofcake
endofcake / Dockerfile
Last active October 23, 2024 06:24
Copy *.csproj files during a docker build, preserving the directory structure (kudos to @aidansteele)
COPY src/*/*.csproj ./
RUN for file in $(ls *.csproj); do mkdir -p ${file%.*}/ && mv $file ${file%.*}/; done