Skip to content

Instantly share code, notes, and snippets.

View oiojin831's full-sized avatar

Eung Jin Lee oiojin831

View GitHub Profile
@oiojin831
oiojin831 / concept.md
Last active August 29, 2015 14:06
scala 개념

Scala def and val literal

리터럴은 컴파일타임에 스택에 new는 런타임에 들어가는거임 그냥 리터럴 쓸수있을때 쓰는게 더좋음?

@oiojin831
oiojin831 / c9-helpers.py
Last active August 29, 2015 14:06
c9 flask helpers
''' run server in c9 IDE '''
from os import environ
if __name__ == '__main__':
app.run(host=environ['IP'], port=int(environ['PORT']))
''' 한글 인코딩 '''
# -*- coding: utf-8 -*-
''' setup.py 설정시 pip 명령어 '''