ReactiveX: library for composing asynchronous and event-based programs by using observable sequences

http://reactivex.io/ ReactiveX is a combination of the best ideas from the Observer pattern, the Iterator pattern, and functional programming

Simple, yet effective OS X security tools. Always free of charge

As Macs become more prevalent, so does OS X malware. Unfortunately, current Mac security and anti-virus software is fairly trivial to generically bypass. Objective-See was created to provide simple, yet effective OS X security tools. Always free of charge – no strings attached! https://www.objective-see.com/

Postman variables scopes

https://www.getpostman.com/docs/v6/postman/environments_and_globals/variables https://github.com/postmanlabs/postman-app-support/issues/4164 pm.variables.set – is setting local scope variable pm.variables.get – is getting local scope variable or closest scope variable if not set locally

macOS High Sierra: Remove the creation of .DS_Store and Resource Forks files on external network and USB disks

https://optocrypto.com/macos-high-sierra-remove-the-creation-of-ds_store-and-resource-forks-files-on-external-network-and-usb-disks/

Change macOS user preferences via command line

https://pawelgrzybek.com/change-macos-user-preferences-via-command-line/

How to create keyboard shortcuts to launch apps in macOS using Automator

https://appleinsider.com/articles/18/03/14/how-to-create-keyboard-shortcuts-to-launch-apps-in-macos-using-automator

Convert Bash history to Zsh history

https://gist.github.com/muendelezaji/c14722ab66b505a49861b8a74e52b274 #!/usr/bin/env python # -*- coding: utf-8 -*- # # This is how I used it: # $ cat ~/.bash_history | python bash-to-zsh-hist.py >> ~/.zsh_history import sys import time def main(): timestamp = None for line in sys.stdin.readlines(): line = line.rstrip('\n') if line.startswith('#') and timestamp is None: t = line[1:] if t.isdigit(): timestamp = t ...

MacOS keyboard shortcuts

https://www.appleworld.today/blog/2018/6/22/macos-window-management-keyboard-shortcuts 24 keyboard shortcuts Mac users need to know

Sensible hacker defaults for macOS

https://github.com/mathiasbynens/dotfiles/blob/master/.macos

How to Clean-Install macOS

https://hackercodex.com/guide/macos-clean-install/