ASH84
Software Engineer focused on turning complexity into simplicity. Co-founder at Payhere. Previously Tech Lead of remit team at Banksalad.
Experience
- Head of tech Payhere.Inc, 2024โpresent
- CTO Payhere.Inc, 2020โ2023
- TechLead, Banksalad, 2018โ2020
- Senior Software Engineer Danal, 2014โ2018
Latest Blog Posts
-
Jul 18, 2018dictionary view object`dict.keys()`, `values()`, `items()` ๊ณผ ๊ธฐ์กด์ python2 ์๋ ๋ค๋ฅด๊ฒ ๋ณ๊ฒฝ ๋์๋ค. ๊ธฐ์กด์ ์๋์ ๊ฐ์ด ๋ฆฌ์คํธํ์ ๋ฐํํ๋ค. ```python # python2.x >>> d = {'a':1, 'b':2} >>> keys = d.keys() >>> values = d.values() >>> items = d.items() >>> keys ['a', 'b'] >>> values [1, 2] >>> items [('a'...
-
Apr 17, 2015Python3 adoption for pyimgdown[pyimgdown](https://github.com/AhnSeongHyun/pyimgdown) ์ด๋ผ๋ wand ๋ฅผ ์ด์ฉํ ์ด๋ฏธ์ง๋ฅผ ๋ค์ด๋ฐ๊ณ ์ธ๋ค์ผ์ ๋ง๋๋ ๋ผ์ด๋ธ๋ฌ๋ฆฌ๋ฅผ ํ์ด์ฌ2 ๋ฒ์ ์ผ๋ก pypi์ ์ฌ๋ฆฐ์ ์ด ์์๋๋ฐ, ์ฌ์ค ๊ทธ์ ์ ์ด๋ฏธ์ง ๋ก๊ฒจ์์ ์ธ๋ค์ผ ํ ๋ ๋ง๋ ๋ผ์ด๋ธ๋ฌ๋ฆฌ์๋ค. ์ฌํด ๋ชฉํ์ค์ ํ๋๊ฐ Python3 ๋ฅผ ์ฌ์ฉํด ๋ณด๋๊ฒ์ด์๊ณ ์์ง ํ์ฌ์์๋ Python2 ๋ฅผ ์ฌ์ฉํ์ง๋ง ๋ช๊ฐ์ ๊ฐ์ธํ๋ก์ ํธ๋ค์ ์ผ๋จ ๋ฐ๊ฟ ๋ณด๊ธฐ๋ก ํ๋ค. ย **ํ๊ฒฝ ๊ตฌ์ฑ** ๊ธฐ์กด์ 2.x ๋ฒ์ ์ ํ์ด์ฌ์ด ์์ง๋ง ์๋ฒ์ 3.4 ๋ฒ์ ์ ์ค์นํ๊ณ ๋ช ์์ ...