Skip to content

Instantly share code, notes, and snippets.

View jeffminsungkim's full-sized avatar

Minsung Kim jeffminsungkim

  • undefined
View GitHub Profile
@jeffminsungkim
jeffminsungkim / jsbundler.md
Last active March 26, 2020 09:09
JavaScript Bundler에 대해 이해하기
@jeffminsungkim
jeffminsungkim / what-is-nodejs.md
Last active August 8, 2019 01:20
Node.js에 대해 이해하기
@jeffminsungkim
jeffminsungkim / gifs.md
Created April 22, 2018 15:57
Gifs markdown

Gifs markdown

@jeffminsungkim
jeffminsungkim / flightplan-deploy.md
Created October 31, 2017 07:39 — forked from learncodeacademy/flightplan-deploy.md
Deploy Node.js Apps with Flightplan

##Setup your server (this would ideally be done with automated provisioning)

  • add a deploy user with password-less ssh see this gist
  • install forever npm install -g forever

##Install flightplan

  • npm install -g flightplan
  • in your project folder npm install flightplan --save-dev
  • create a flightplan.js file
@jeffminsungkim
jeffminsungkim / DateFormat.js
Created September 30, 2017 12:49
Format JavaScript Date to yyyy-mm-dd
function formatDate(date){
var d = new Date(date);
var month = '' + (d.getMonth() + 1);
var day = '' + d.getDate();
var year = d.getFullYear();
if (month.length < 2)
month = '0' + month;
if (day.length < 2)
day = '0' + day;
@jeffminsungkim
jeffminsungkim / README.rst
Created September 27, 2017 14:36 — forked from dupuy/README.rst
Common markup for Markdown and reStructuredText

Markdown and reStructuredText

GitHub supports several lightweight markup languages for documentation; the most popular ones (generally, not just at GitHub) are Markdown and reStructuredText. Markdown is sometimes considered easier to use, and is often preferred when the purpose is simply to generate HTML. On the other hand, reStructuredText is more extensible and powerful, with native support (not just embedded HTML) for tables, as well as things like automatic generation of tables of contents.