Skip to content

Instantly share code, notes, and snippets.

View hanjoongcho's full-sized avatar
💭
👍

Bulbasaur hanjoongcho

💭
👍
View GitHub Profile
Regex for matching ALL Japanese common & uncommon Kanji (4e00 – 9fcf) ~ The Big Kahuna!
([一-龯])
Regex for matching Hirgana or Katakana
([ぁ-んァ-ン])
Regex for matching Non-Hirgana or Non-Katakana
([^ぁ-んァ-ン])
Regex for matching Hirgana or Katakana or basic punctuation (、。’)
@hanjoongcho
hanjoongcho / var-let-const.md
Created January 1, 2021 02:11 — forked from LeoHeo/var-let-const.md
javascript var, let, const 차이점

var, let, const 차이점은?

  • varfunction-scoped이고, let, constblock-scoped입니다.

  • function-scopedblock-scoped가 무슨말이냐?

var(function-scoped)

jsfiddle 참고주소

@hanjoongcho
hanjoongcho / postgisOSM-LAS.md
Created December 27, 2018 01:56 — forked from patriciogonzalezvivo/postgisOSM-LAS.md
Loading OSM and LIDar to PostGIS