Skip to content

Instantly share code, notes, and snippets.

View 9oelM's full-sized avatar
🎯
Focusing

Joel Mun 9oelM

🎯
Focusing
View GitHub Profile
@9oelM
9oelM / my-iterm-config.json
Created January 8, 2020 13:22
My iterm config (enables option/command + move or option/command + select and some more)
{
"Use Non-ASCII Font" : false,
"Tags" : [
],
"Ansi 12 Color" : {
"Red Component" : 0.51372549019607838,
"Color Space" : "sRGB",
"Blue Component" : 0.58823529411764708,
"Green Component" : 0.58039215686274515
{"num":1,"sayHiInChildren":"_NuFrRa_child => console.log(\"hi~~~~~~~~~ - from \".concat(child))"}
import JSONfn from 'json-fn'
import isEqual from 'react-fast-compare'
export const areEqual = (prevProps, nextProps) => {
const [prev, next] = [prevProps, nextProps].map(JSONfn.stringify)
return isEqual(prev, next)
}
import React, { useState } from 'react';
const Child1 = () => {
console.log('Child1 rendered')
return <div style = {{border: '1px solid red', padding: '30px'}}>
Child1
</div>
}
const Child2 = () => {
console.log('Child2 rendered')
@9oelM
9oelM / crawl_zigbang.py
Created March 12, 2019 04:15 — forked from giftbott/crawl_zigbang.py
직방 매물정보 크롤링, 학습용으로 사용
# -*- coding: utf8 -*-
"""
# 주요기능 : 직방 매물 정보 크롤링
# 상세기능 : 원하는 지역의 매물ID 를 가진 URL 을 입력받아 각 매물별 상세 정보를 csv 파일 및 jpg 파일로 저장
# 추가계획 : 현재 계획 없음
# 최종수정 : 2016.10.10
"""