This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# GIT heart FZF | |
# ------------- | |
is_in_git_repo() { | |
git rev-parse HEAD > /dev/null 2>&1 | |
} | |
fzf-down() { | |
fzf --height 50% "$@" --border | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
For cooking | |
=========== | |
Oil (not olive -- just plain old canola or vegetable of something) | |
2 white or yellow onions cut in half | |
3" of ginger sliced (no need to peel) | |
2-4 star anise | |
1 cinammon stick | |
4 cloves | |
1TB fennel seeds | |
1TB coriander seeds |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1 pound bucatini or similarly thick pasta (spaghetti in times of need; | |
cacio e pepe needs thick sturdy pasta) | |
4 ounces (~2 cups) of pecorino romano finely grated | |
(or gran padano or parmigiano reggiano depending on what you can find) | |
3 TB olive oil | |
1 TB butter | |
Black pepepr (freshly ground) | |
You need two pans. I use a 12" frying pan and a 3qt saucier. | |
You can replace the saucier with another large frying pan. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: STSv1 | |
mode: testing | |
mx:alt2.aspmx.l.google.com | |
mx:aspmx3.googlemail.com | |
mx:aspmx2.googlemail.com | |
mx:alt1.aspmx.l.google.com | |
mx:aspmx4.googlemail.com | |
mx:aspmx.l.google.com | |
max_age: 604800 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
I got the recipe from a transplanted Texan running | |
a bed and breafast. | |
It's the most canned foods I use in anything I cook. | |
But it’s excellent. It’s probably loaded w/ sodium which | |
is why I'm trying to make a version from scratch. | |
The spices are an approximation. | |
1 can Progresso Lentil soup |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oh, there's been a TON of work on this. | |
(1) back in the day, it was an enormous area of work: not so much "error-recovery" but "error-detection with most-perspicuous-possible error-messages, including if possible examples" | |
(2) I know that Menhir (the Ocaml parser-generator) has some support for this. | |
(3) I know that in fact, this is a good reason to WANT to use a parser-generator -- b/c the GRAMMAR will allow you to detect many cases of syntactic errors automatically. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$$\sum_{i = 0}^n {n \choose i} x^{i} y^{n-i}$$ | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
cozyho.com | |
decremental.org | |
fakenerd.me | |
guillotine-chopshop.com | |
meangrape.com (used for email) | |
tactfulmango.com | |
militarytraitors.us (for militarytraitors llc) | |
theunion.blue (shorter pointer domain for militarytraitors.us) | |
motherfucking.boston (email) | |
throatpunches.com |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#define _GNU_SOURCE | |
#include <stdlib.h> | |
#include <fcntl.h> | |
#include <stdio.h> | |
#include <getopt.h> | |
#include <stddef.h> | |
#include <stdbool.h> | |
#include <stdarg.h> | |
#include <errno.h> | |
#include <unistd.h> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
update_current_git_vars |