Skip to content

Instantly share code, notes, and snippets.

View Istom1n's full-sized avatar
🌍
I have no idea what I'll think about tomorrow.

Ivan Istomin Istom1n

🌍
I have no idea what I'll think about tomorrow.
View GitHub Profile

Keybase proof

I hereby claim:

  • I am ivan-istomin on github.
  • I am istomin (https://keybase.io/istomin) on keybase.
  • I have a public key ASAfvOO6coQyEayxs7DvhbmzOkGUVf-VB4gMW1Rfh6JRLAo

To claim this, I am signing this object:

@Istom1n
Istom1n / astylerc
Created August 10, 2018 14:13
Istom1n's config for Artistic Style
# Google style uses attached braces and indented class access modifiers.
-A14
# Convert tabs
-c
# 4 space indent
-s4
# Indent 'class' and 'struct' access modifiers, 'public:', 'protected:' and 'private:', one half indent.
-xG
# Indent 'switch' blocks so that the 'case X:' statements are indented in the switch block. The entire case block is indented.
-S

Keybase proof

I hereby claim:

  • I am istom1n on github.
  • I am istomin (https://keybase.io/istomin) on keybase.
  • I have a public key ASDL81rj9CvBWuotjI_CyeL_pWd4y2qik03rpyUZZQs6jAo

To claim this, I am signing this object:

@Istom1n
Istom1n / disable-notification-about-catalina.sh
Created December 2, 2019 00:28
Disable macOS Catalina update notification in Mojave
# Ignore Notification of Catalina Update in Mac App Store
sudo softwareupdate --ignore "macOS Catalina"
# Disable the badge
# But this works only until the next time the update checker runs
defaults write com.apple.systempreferences AttentionPrefBundleIDs 0
killall Dock
# Make alias for next update check
alias clearbadge="defaults write com.apple.systempreferences AttentionPrefBundleIDs 0 && killall Dock"