Copy and paste this text block into a forum or messaging program to find out which Markdown features it supports:
### Header Support
Single line paragraph
See https://github.com/BeyondCodeBootcamp/beyondcodebootcamp/blob/main/001-Markdown-Cheat-Sheet.md
The best parts of the best cheat sheets, in table form! π
Markdown is a standardized format for creating web pages and documentation, modeled after the way that people stylize plain-text.
"TL;DR" is a technical term that means "Too Long; Didn't Read". I recommend adding a TL;DR section to all documentation that you create, with the most concise instructions, without much or any explanation, as a quick copy-and-paste or quick-reference example.
Re:
WHITELIST = {
:elements => %w(
h1 h2 h3 h4 h5 h6 h7 h8 br b i strong em a pre code img tt
Restore the default spctl
database:
sudo spctl --reset-defaults
sudo cp /var/db/.SystemPolicy-default /var/db/SystemPolicy
# reboot may be required
Add the quarantine back:
#!/bin/bash | |
# Block all of APNIC | |
ufw deny from 43.224.0.0/13 | |
ufw deny from 43.236.0.0/14 | |
ufw deny from 43.240.0.0/14 | |
ufw deny from 43.245.0.0/16 | |
ufw deny from 43.246.0.0/15 | |
ufw deny from 43.248.0.0/14 | |
ufw deny from 43.252.0.0/16 |
He said, "Bono, do you know the Senegalese proverb 'If you want to cut a man's hair, it is better if he is in the room'?" He said it in a loving way, but we didn't miss the message:
Be careful if you think you know what we want. Because we know what we want. You're not African, and this messiah complex hasn't always turned out so well.
package tabletest | |
import "errors" | |
//ForceError will return an error if the boolean is true | |
func ForceError(force bool) error { | |
if force { | |
return errors.New("forced error") | |
} | |
return nil |