Skip to content

Instantly share code, notes, and snippets.

View bynaki's full-sized avatar
💂‍♂️
I'll be back! 👍

bynaki bynaki

💂‍♂️
I'll be back! 👍
View GitHub Profile
@bynaki
bynaki / 151202ee168-8883283.md
Last active November 24, 2015 09:28
JavaScript :: File Dialog 만들기. :: jquery 를 이용하여. - Preview s

:origin:

JavaScript :: File Dialog 만들기. :: jquery 를 이용하여.

Preview selected images for uploading using jQuery

  • Published on 21st November 2013

This is the continuation of how to open a multi select file dialogue just using JavaScript. In this tutorial I will explain how to preview the selected files before upload.

@bynaki
bynaki / 1511108670c-ace6e098.md
Last active November 24, 2015 10:05
JavaScript :: marked api - Install - Usage - Browser - marke

:origin:

JavaScript :: marked api

A full-featured markdown parser and compiler, written in JavaScript. Built for speed.

[NPM version][badge]

Install

@bynaki
bynaki / 1510fa58be0-922421e5.md
Last active November 18, 2015 21:16
Coffee Script - 설치. - Coffee Script 명령어 - JavaScript로 컴파일. -

Coffee Script

설치.

$ npm install -g coffee-script

Coffee Script 명령어

@bynaki
bynaki / generate-id.md
Last active February 13, 2024 06:10
JavaScript :: 유일한 ID 만들기.

JavaScript :: 유일한 ID 만들기.

var newID = function () {
  return Math.random().toString(36).substr(2, 16);
}
console.log(newID());
@bynaki
bynaki / curl-install.md
Last active November 25, 2015 21:50
cURL 설치

cURL 설치

node-libcurl 을 사용하기 위해 curl 업데이트가 필요하다.

cURL is a very popular software utility that provides a command-line tool and a programming library useful for transferring and receiving data from servers. cURL supports many popular protocols. Here is the procedure about how to make and install cURL in a Mac OS X (Mountain Lion) computer

  1. Download the cURL from http://curl.haxx.se/download.html

  2. Open a Terminal and change directory to the folder where the above mentioned file was downloaded

  3. extract the compressed file with below command (change curl-7.30.0.tar in below command as per your download):