Skip to content

Instantly share code, notes, and snippets.

View iamleeky's full-sized avatar

Eric Kyungyeong Lee iamleeky

View GitHub Profile
@iamleeky
iamleeky / resave-as-utf8.ps1
Last active September 7, 2018 02:07
Re-save as UTF-8 encoded files
######################################################################
# Script to re-save a file or all files recursively in a directory
# as URF-8 encoded file or files
#
# Author: iamleeky@gmail.com
######################################################################
# Target file or directory
$TargetPath = "C:\yourpath"
@iamleeky
iamleeky / var-let-const.md
Created February 19, 2018 23:45 — 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 참고주소

@iamleeky
iamleeky / sns-to-slack.py
Created October 25, 2016 14:51 — forked from hayd/sns-to-slack.py
sns to slack aws lambda python
#!/usr/bin/env python
# -*- coding: utf-8 -*-
'''
Follow these steps to configure the webhook in Slack:
1. Navigate to https://<your-team-domain>.slack.com/services/new
2. Search for and select "Incoming WebHooks".