Skip to content

Instantly share code, notes, and snippets.

View zxshinxz's full-sized avatar

Andy (Yoon Yong) Shin zxshinxz

View GitHub Profile
ํƒ๋ฐฐ ๋ฐฐ์†ก์ถ”์  ์ฃผ์†Œ URL ๋ชจ์Œ
์‚ฌ์šฉํ•˜๊ณ  ์žˆ๋Š” ํƒ๋ฐฐ์‚ฌ๋ฅผ ํ™•์ธํ•˜์‹  ํ›„ ์•„๋ž˜ ๋งํฌ์™€ ํ•จ๊ป˜ ๋งˆ์ง€๋ง‰ '์†ก์žฅ๋ฒˆํ˜ธ' ๋ถ€๋ถ„์— ์‹ค์ œ ์†ก์žฅ๋ฒˆํ˜ธ๋ฅผ ๋Œ€์ž…ํ•˜์—ฌ ๋งํฌ๋ฅผ ์—ฐ๊ฒฐํ•ด ์ฃผ์‹œ๋ฉด ํด๋ฆญ ์‹œ ๋ฐ”๋กœ ๋ฐฐ์†ก์ถ”์ ์ด ๊ฐ€๋Šฅํ•œ ์ฃผ์†Œ์ž…๋‹ˆ๋‹ค.
ํƒ๋ฐฐ์‚ฌ์˜ ํ™ˆํŽ˜์ด์ง€๊ฐ€ ๋ฐ”๋€Œ๊ฑฐ๋‚˜, ๋ฐฐ์†ก์ถ”์  ์ฃผ์†Œ๊ฐ€ ๋ณ€๊ฒฝ๋˜๋Š” ๊ฒฝ์šฐ๊ฐ€ ์ž์ฃผ ์žˆ์Šต๋‹ˆ๋‹ค.
์กฐํšŒ๊ฐ€ ๋˜์ง€ ์•Š๋Š” ํƒ๋ฐฐ์‚ฌ๊ฐ€ ์žˆ์„ ๊ฒฝ์šฐ ๋Œ“๊ธ€ ๋‚จ๊ฒจ ์ฃผ์‹œ๋ฉด ํ™•์ธํ•˜์—ฌ ์•Œ๋ ค ๋“œ๋ฆฌ๋„๋ก ํ•˜๊ฒ ์Šต๋‹ˆ๋‹ค.
[๊ตญ๋‚ด ์—…์ฒด]
์šฐ์ฒด๊ตญํƒ๋ฐฐ http://service.epost.go.kr/trace.RetrieveRegiPrclDeliv.postal?sid1=์†ก์žฅ๋ฒˆํ˜ธ
CJ๋Œ€ํ•œํ†ต์šดํƒ๋ฐฐ https://www.doortodoor.co.kr/parcel/doortodoor.do?fsp_action=PARC_ACT_002&fsp_cmd=retrieveInvNoACT&invc_no=์†ก์žฅ๋ฒˆํ˜ธ
@zxshinxz
zxshinxz / gist:b3ab5130e2988fa56e8e
Created March 3, 2016 10:40
Ubunutu setup LocalTime
sudo apt-get update
sudo apt-get upgrade
export LANG="en_US"
export LC_ALL=$LANG.UTF-8
sudo dpkg-reconfigure locales
sudo dpkg-reconfigure tzdata
http://placehold.it/200x100
@zxshinxz
zxshinxz / fix local notification
Created September 26, 2015 13:25
fix local notification
change LocalNotification.java
both
/plugins/de.appplant.cordova.plugin.local-notification/src/android/LocalNotification.java
/platforms/android/src/de/appplant/cordova/plugin/localnotification/LocalNotification.java
private static synchronized void sendJavascript(final String js) {
if (!deviceready) {
eventQueue.add(js);
@zxshinxz
zxshinxz / gitIgnore.sh
Last active August 29, 2015 14:22
apply new git ignore
// Making changes to .gitignore and make ignored files available locally
//change .gitignore and add commit everything before doing this
git rm -r --cached some-directory
git commit -m 'Remove the now ignored directory "some-directory"'
git push origin master
// After this normal workflow. Note ignored files are available locally.
git add .
git commit -m 'blar'
git push origin master
@zxshinxz
zxshinxz / Footer-Toggle:-Nightly.markdown
Created March 29, 2015 07:41
Footer Toggle: Nightly
module.exports = {
get: function (req, res) {
res.sendfile(req.path.substr(1));
},
_config: {
rest: false,
shortcuts: false
}
};