How to configure your Mac to use DNS over TLS in five easy steps:
-
Install Stubby with Homebrew (https://dnsprivacy.org/wiki/display/DP/DNS+Privacy+Daemon+-+Stubby):
brew install stubby -
Edit the configuration file:
How to configure your Mac to use DNS over TLS in five easy steps:
Install Stubby with Homebrew (https://dnsprivacy.org/wiki/display/DP/DNS+Privacy+Daemon+-+Stubby):
brew install stubby
Edit the configuration file:
This is a compiled list of falsehoods programmers tend to believe about working with time.
Don't re-invent a date time library yourself. If you think you understand everything about time, you're probably doing it wrong.
| #!/usr/bin/env python | |
| """ | |
| Interactive execution with automatic history, tries to mimic Mathematica's | |
| prompt system. This environment's main features are: | |
| - Numbered prompts (In/Out) similar to Mathematica. Only actions that produce | |
| output (NOT assingments, for example) affect the counter and cache. | |
| - The following GLOBAL variables always exist (so don't overwrite them!): | |
| _p: stores previous result which generated printable output. |