Skip to content

Instantly share code, notes, and snippets.

@chengkiang
chengkiang / paynow.js
Last active May 7, 2024 08:39
SG PayNow QR Code Generator Sample
String.prototype.padLeft = function (n, str) {
if (n < String(this).length) {
return this.toString();
}
else {
return Array(n - String(this).length + 1).join(str || '0') + this;
}
}
function crc16(s) {
Remove the macOS Catalina Update notification badge in Settings
defaults delete com.apple.preferences.softwareupdate LatestMajorOSSeenByUserBundleIdentifier && softwareupdate --list
Source: https://tinyapps.org/blog/202005070700_remove_catalina_notification_badge.html