Skip to content

Instantly share code, notes, and snippets.

@urunimi
urunimi / ladder.md
Created February 27, 2020 05:38 — forked from jamtur01/ladder.md
Kickstarter Engineering Ladder
@urunimi
urunimi / coroutines.kt
Created November 23, 2018 01:54
Kotlin - coroutines
// Coroutine - CPU 상태를 Check 하지 않기 때문에 거의 공짜!
/*
Asynchronous of non-blocking programming 제공
dependencies 추가 필요함
*/
private suspend fun MutableList<Int>.sum(): Int = this.sumBy {it}
@Test
@urunimi
urunimi / rename.py
Created March 28, 2018 02:27
Rename files (%Y-%m-%d %H.%M.%S) under directories. I use this script for renaming photo files.
import os
import sys
import datetime
if len(sys.argv) <= 1:
print("No dir")
else:
for target in sys.argv[1:]:
os.chdir(target)
allfiles = os.listdir(target)