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
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
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
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
// 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
module.exports = { | |
get: function (req, res) { | |
res.sendfile(req.path.substr(1)); | |
}, | |
_config: { | |
rest: false, | |
shortcuts: false | |
} | |
}; |
NewerOlder