Skip to content

Instantly share code, notes, and snippets.

View qodot's full-sized avatar

qodot qodot

View GitHub Profile
@qodot
qodot / es6-symbol-iterator-generator.md
Last active July 31, 2023 01:30
ES6의 심볼, 이터레이터, 제네레이터에 대해 알아보자

심볼

심볼이 무엇인가? ES6에서 새로 선보인 원시 타입이다.

  • Undefined
  • Null
  • Boolean
  • Number
  • String
  • Object
@qodot
qodot / javascript-function.md
Last active November 16, 2021 05:10
자바스크립트의 함수를 배워보자

함수

자바스크립트의 함수는 일급 객체로, 코드 재용, 정보의 구성 및 은닉 등에 사용하는 모듈화의 근간이다.

함수 객체

함수는 객체이다. 따라서 프로토타입 체인이 있다.

var fn = function () {};
@qodot
qodot / pytest_flask_fixtures.py
Created November 10, 2016 01:30
Pytest Fixtures (Flask, SQLAlchemy, Alembic)
import sys
import pytest
from sqlalchemy import create_engine
from sqlalchemy.orm import sessionmaker
from alembic.command import upgrade as alembic_upgrade
from alembic.config import Config as AlembicConfig
from wsgi import create_app
from config import config