Skip to content

Instantly share code, notes, and snippets.

View catgarret's full-sized avatar

Lee Dong-Kyu (Dong-gri) catgarret

View GitHub Profile
@LeoHeo
LeoHeo / var-let-const.md
Last active February 13, 2024 08:21
javascript var, let, const 차이점

var, let, const 차이점은?

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

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

var(function-scoped)

jsfiddle 참고주소

@getflourish
getflourish / receiver.pde
Last active May 9, 2018 20:37
Speech to Text for Processing using WebSockets and Google Chrome.
/*
Simple WebSocketServer example that can receive voice transcripts from Chrome
Requires WebSockets Library: https://github.com/alexandrainst/processing_websockets
*/
import websockets.*;
WebsocketServer socket;
void setup() {