Skip to content

Instantly share code, notes, and snippets.

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
@chengkiang
chengkiang / paynow.js
Last active April 3, 2024 04:24
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) {