Skip to content

Instantly share code, notes, and snippets.

View sujinleeme's full-sized avatar
🎯
Focusing

Sujin Lee sujinleeme

🎯
Focusing
View GitHub Profile
@sujinleeme
sujinleeme / README.md
Last active May 21, 2019 12:20
Convert a JSON's file tree structure

Convert a JSON's file tree structure

If you want to make the tree command available on mac OS X, run brew install tree.

Simply, change BASE_DIR and OUTPUT_JSON_FILENAME. Run convert-file-tree-json.py.

You can use the tree command which lists a directory structure recursively.

e.g)

@sujinleeme
sujinleeme / sample-commit-msg
Created March 30, 2018 16:47
commit message sample
feat: Summarize changes in around 50 characters or less
More detailed explanatory text, if necessary. Wrap it to about 72
characters or so. In some contexts, the first line is treated as the
subject of the commit and the rest of the text as the body. The
blank line separating the summary from the body is critical (unless
you omit the body entirely); various tools like `log`, `shortlog`
and `rebase` can get confused if you run the two together.
Explain the problem that this commit is solving. Focus on why you
@sujinleeme
sujinleeme / README.md
Created March 30, 2018 13:46 — forked from akashnimare/README.md
A Beginners Guide to writing a Kickass README ✍

Project title

A little info about your project and/ or overview that explains what the project is about.

Motivation

A short description of the motivation behind the creation and maintenance of the project. This should explain why the project exists.

Build status

Build status of continus integration i.e. travis, appveyor etc. Ex. -

Build Status

@sujinleeme
sujinleeme / learnPromise.js
Last active November 11, 2017 08:17
learnPromise.js
const mapDispatchToProps = (dispatch) => {
return {
deleteCommentBodyContent: (id, category, parentId) => {
dispatch(deleteCommentContent(id))
.then(() => dispatch(getComments(parentId)))
}
}
// actions
@sujinleeme
sujinleeme / 2d-basic-vector-operations.js
Last active September 22, 2017 08:46
Simple 2D Vector Operation Class
/**
Simple 2D Vector Operation calculator Class using Javascript
Blog Post : https://www.sujinlee.me/blog/vector-basics/
*/
class Vector {
constructor(v, w) {
this.u = v
this.w = w
this.decimalPlaces = 2
@sujinleeme
sujinleeme / Vector2D.js
Created September 3, 2017 03:39
JavaScript 2D Vector Class
/*
Simple 2D JavaScript Vector Class
Sujin Lee
*/
class Vector {
constructor(v, w) {
@sujinleeme
sujinleeme / Vector2D.js
Last active September 7, 2017 01:47
JavaScript 2D Vector Class
class Vector {
constructor(v, w) {
this.v = v
this.w = w
this.decimalPlaces = 2
this.sign = {
add : '+',
subtract: '-',
multiply: '*',
// 1. the sum of digits for one credit card number
function sumCard(num) {
// get number and change to integer
var num = num.match(/\d/g).map(Number);
// find the sum of an array of numbers
var sum = num.reduce((a, b) => a + b, 0);
return sum
}
// 2. get credit card number has the last largest sum of digits
@sujinleeme
sujinleeme / gulpfile.js
Last active February 6, 2020 05:21
gulpfile.js for Django
var gulp = require('gulp');
var sass = require('gulp-sass');
var browserSync = require('browser-sync').create();
var exec = require('child_process').exec;
gulp.task('sass', function() {
return gulp.src('myblog/static/scss/**/*.scss')
.pipe(sass())
.pipe(gulp.dest('myblog/static/css'))
.pipe(browserSync.reload({