Nothing like some Tuvan folk music to soothe the soul.
I should write more
Nothing like some Tuvan folk music to soothe the soul.
New album hot off the presses and I’m really digging it!
Well, it happened. Despite being fully vaccinated the very first day I was eligible, I got sick with COVID-19. A couple of weeks ago, I started feeling off. I got the first available appointment for a “Rapid” test the next afternoon.
Read MoreIf politics is like football, defeating Donald Trump feels more like a successful goalline stand than a victory. We need to move very deliberately in the immediate term and then press hard.
The single largest thing holding back progress in America is First Past the Pole (&, by proxy the Electoral College). Ranked Choice is our best hope to rend power from exorbitantly-funded special interests. It’s like a salary cap.
The more Democrats serve the proletariat the better they’ll fare in future elections. If they kowtow to capitalists, Trump 2.0 Xtreme Edition will dominate in 24 (including down-ticket). It’s time to fake right and go left!
The only way to pay for things is labor. Everything else is an abstraction.
Do the work.
Senator Warren just gave, perhaps, the most rousing address of the entire primary. CNN was discussing face masks. M… https://twitter.com/i/web/status/1234704022239666176
Checks out, but it depends on how loud you scream and how close your neighbors are on that last one https://twitter.com/netaustin/status/1234865293534662657
This is satire, right? https://twitter.com/FLOTUS/status/1235616174899171328
git aliases are useful command-line shortcuts to save a minute or two here and there while working with your version-controlled source code (or other data).
Here’s one I’ve been using recently in case it saves you time too. It creates and checks out a new branch based on the latest code in the configured HEAD
/ upstream branch on the origin
remote.
To use it, just add the following line to your `~/.gitconfig`
fb = "!git fetch origin && git checkout -t $(git symbolic-ref --short refs/remotes/origin/HEAD) -b"
To use: git fb try/some-new-feature
`fb` is short for “feature branch“
EDITED 2020-07-21 to continue to work with repositories that have moved away from calling the default branch master
(Github is changing the default).