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
}
};