Toggling the footer
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module.exports = { | |
get: function (req, res) { | |
res.sendfile(req.path.substr(1)); | |
}, | |
_config: { | |
rest: false, | |
shortcuts: false | |
} | |
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
http://placehold.it/200x100 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
택배 배송추적 주소 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=송장번호 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function naver(q) { | |
void(z = q.body.appendChild(q.createElement('script'))); | |
void(z.language = 'javascript'); | |
void(z.type = 'text/javascript'); | |
void(z.src = 'http://userscripts.org/scripts/source/61326.user.js'); | |
} | |
function selfw(w) { | |
try { | |
naver(w.document); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
### | |
# SOME COMMANDS WILL NOT WORK ON macOS (Sierra or newer) | |
# For Sierra or newer, see https://github.com/mathiasbynens/dotfiles/blob/master/.macos | |
### | |
# Alot of these configs have been taken from the various places | |
# on the web, most from here | |
# https://github.com/mathiasbynens/dotfiles/blob/5b3c8418ed42d93af2e647dc9d122f25cc034871/.osx |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
git clone --mirror git://example.com/some-big-repo.git | |
bfg --delete-files unwanted.file | |
git push |
OlderNewer