The idea is based on a gist by @jimbojsb.
You can use Pygments or Highlight.
brew install python
[ | |
{ | |
"keys": ["ctrl+w"], | |
"command": "run_multiple", | |
"args": { | |
"commands": [ | |
{"command": "find_under_expand", "args": null, "context": "window"}, | |
{"command": "show_panel", "args": {"panel": "find"}, "context": "window"} | |
] | |
} |
The idea is based on a gist by @jimbojsb.
You can use Pygments or Highlight.
brew install python
Disclaimer: This piece is written anonymously. The names of a few particular companies are mentioned, but as common examples only.
This is a short write-up on things that I wish I'd known and considered before joining a private company (aka startup, aka unicorn in some cases). I'm not trying to make the case that you should never join a private company, but the power imbalance between founder and employee is extreme, and that potential candidates would
import httpx | |
import argparse | |
from http import HTTPStatus | |
from datetime import datetime | |
from contextlib import suppress | |
from collections import namedtuple | |
from typing import Dict, List, Optional, Tuple, Union |