Skip to content

Instantly share code, notes, and snippets.

View iamleeky's full-sized avatar

Eric Kyungyeong Lee iamleeky

View GitHub Profile
@LeoHeo
LeoHeo / var-let-const.md
Last active August 23, 2025 01:25
javascript var, let, const 차이점

var, let, const 차이점은?

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

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

var(function-scoped)

jsfiddle 참고주소

@mikedavies-dev
mikedavies-dev / gist:989dd86a1ace38a9ac58
Created May 27, 2015 09:40
A simple log file monitor class for .NET
/*
A simple log file monitor class for .NET
Uses a threaded timer to check for changes in the file, if the file length has changed then the unread
section of the file is read and parsed into lines before being passed back to the event handler.
Note, because the class uses the threaded timer callbacks on the event hander WILL be made form a
different thread, keep this in mind when using the class.