Skip to content

Instantly share code, notes, and snippets.

View h5ng's full-sized avatar
๐Ÿถ
Focusing

GILIM h5ng

๐Ÿถ
Focusing
  • Newndy
  • Seoul
View GitHub Profile
@h5ng
h5ng / install_chartjs_node.md
Last active September 3, 2017 04:46
Chartjs-Node ์„ค์น˜

Chartjs-Node


์„ค์น˜

  • MacOSX
@h5ng
h5ng / index.html
Last active September 19, 2017 05:56
Rounded Donut Chart
<div id="chart"></div>
@h5ng
h5ng / main.go
Created June 8, 2018 04:20 — forked from xyproto/main.go
gzip compression/decompression example
package main
import (
"fmt"
"compress/gzip"
"io"
"io/ioutil"
"bytes"
"log"
)
@h5ng
h5ng / resolution.md
Created November 14, 2018 16:03
Install failed, "zlib not available" on macOS Mojave
$ sudo installer -pkg /Library/Developer/CommandLineTools/Packages/macOS_SDK_headers_for_macOS_10.14.pkg -target /
$ pyenv install 3.6.5
@h5ng
h5ng / README.md
Created April 25, 2019 02:42 — forked from roachhd/README.md
EMOJI cheatsheet ๐Ÿ˜›๐Ÿ˜ณ๐Ÿ˜—๐Ÿ˜“๐Ÿ™‰๐Ÿ˜ธ๐Ÿ™ˆ๐Ÿ™Š๐Ÿ˜ฝ๐Ÿ’€๐Ÿ’ข๐Ÿ’ฅโœจ๐Ÿ’๐Ÿ‘ซ๐Ÿ‘„๐Ÿ‘ƒ๐Ÿ‘€๐Ÿ‘›๐Ÿ‘›๐Ÿ—ผ๐Ÿ”ฎ๐Ÿ”ฎ๐ŸŽ„๐ŸŽ…๐Ÿ‘ป

EMOJI CHEAT SHEET

Emoji emoticons listed on this page are supported on Campfire, GitHub, Basecamp, Redbooth, Trac, Flowdock, Sprint.ly, Kandan, Textbox.io, Kippt, Redmine, JabbR, Trello, Hall, plug.dj, Qiita, Zendesk, Ruby China, Grove, Idobata, NodeBB Forums, Slack, Streamup, OrganisedMinds, Hackpad, Cryptbin, Kato, Reportedly, Cheerful Ghost, IRCCloud, Dashcube, MyVideoGameList, Subrosa, Sococo, Quip, And Bang, Bonusly, Discourse, Ello, and Twemoji Awesome. However some of the emoji codes are not super easy to remember, so here is a little cheat sheet. โœˆ Got flash enabled? Click the emoji code and it will be copied to your clipboard.

People

:bowtie: ๐Ÿ˜„

@h5ng
h5ng / gist:fb17e6bda7d8b26b0ca86992d6c1bde0
Created May 4, 2019 14:49
vscode ํ‚ค ๋ฐ˜๋ณต ์ž…๋ ฅ
$ defaults write com.microsoft.VSCode ApplePressAndHoldEnabled -bool false

crontab ๋กœ๊ทธํŒŒ์ผ์ด ์—†๋Š” ๊ฒฝ์šฐ

sudo vi /etc/rsyslog.d/50-default.conf
# crontab log ์ฃผ์„ ํ•ด์ œ
sudo service rsyslog restart
sudo service cron restart

/mnt/d/workspace/dtp-be/scheduler/sms/run.sh

@h5ng
h5ng / index.html
Created February 1, 2020 14:08
w3-include-html
<html>
<link rel="stylesheet" href="index.css"/>
<script src="https://www.w3schools.com/lib/w3.js"></script>
<body>
<div w3-include-html="header.html"></div>
<div w3-include-html="content.html"></div>
<div w3-include-html="footer.html"></div>
<script>
w3.includeHTML();
</script>