Skip to content

Instantly share code, notes, and snippets.

View gseok's full-sized avatar
:octocat:
Happy

gyeongseok.seo gseok

:octocat:
Happy
View GitHub Profile
@gseok
gseok / ClearLocal.js
Created September 18, 2019 00:01
Git Local Branch Clear When Remote Branch PR Merge and Deleted
#!/usr/bin/env node
const { spawn } = require('child_process')
const REMOTE_START_STR = 'remotes/origin/'
const runCommand = async (command, options) => {
return new Promise((resolve, reject) => {
const prc = spawn(command, [...options], {
cwd: process.cwd(),
})
@gseok
gseok / editor.css
Created December 3, 2013 07:44 — forked from nakhli/editor.css
.shape{
height: 100%;
width: 100%;
}
.circle {
border-radius: 50%/50%;
-moz-border-radius: 50%/50%;
-webkit-border-radius: 50%/50%;
}
.hide {