Title | Author | My Thoughts on this Book |
---|---|---|
Tiny HabitsThe Small Changes That Change Everything |
- 4 tbsp. duck fat
- 12 oz. salt pork, one or two chunks
- 1 whole duck (~5 lbs.) + 4 duck breasts
- 1 lb. pork shoulder, cubed 3/4"
- 2 lbs. garlicky fresh pork sausage (kielbasa), cut into chunks
- 1.5 lbs. dried cannelini beans, soaked in saltwater overnight
- 8 oz. crushed tomatoes
- 6 fresh thyme sprigs
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
/** | |
* Returns omdb information | |
* | |
* @param {AL3} ids | |
* @param {"public"|"private"} type | |
* @return {array} range of information from API | |
* @customfunction | |
*/ | |
function TMDB(ids) { | |
var tmdbKey = 'abcd1234'; |
- 2 lb. Chuck roast, trimmed, sliced into ¾" cubes
- ½ c. Vegetable oil
- 6-8 Garlic cloves, peeled and slivered
- Around 2-3 lbs. Yellow onions, sliced into the desired size
- 1 bottle Light beer
- 1 gal. Homemade chicken broth/light stock (this makes a huge difference)
- ¼ c. Soy sauce
- 1 tbsp. Anchovy paste (or about 3-4 fillets smashed into a paste)
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
Context: gke_powerchord-dx_us-east1-b_aatkinson, namespace: default, kubectl_command: kubectl | |
Running: (['kubectl', '--context', 'gke_powerchord-dx_us-east1-b_aatkinson', 'cluster-info'],)... ran! | |
Running 'ssh -V'...Running: (['which', 'torsocks'],)... ran! | |
Running: (['which', 'sshfs'],)... ran! | |
Running: (['kubectl', '--context', 'gke_powerchord-dx_us-east1-b_aatkinson', '--namespace', 'default', 'get', 'deployment', '-o', 'json', '--export', 'api'],)... ran! | |
Running: (['kubectl', '--context', 'gke_powerchord-dx_us-east1-b_aatkinson', '--namespace', 'default', 'delete', 'deployment', 'api'],)... deployment "api" deleted | |
ran! | |
Running: (['kubectl', '--context', 'gke_powerchord-dx_us-east1-b_aatkinson', '--namespace', 'default', 'apply', '-f', '-'],)... deployment "api" created | |
ran! | |
Running: (['kubectl', '--context', 'gke_powerchord-dx_us-east1-b_aatkinson', '--namespace', 'default', 'get', 'deployment', '-o', 'json', '--export', '--selector=telepresence=3ea74b9a-64c9-4644-8f9d-b90553cb849e'],)... ran! |
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
#!/bin/bash | |
gcp () { | |
gcp_in=$(gcloud ${@} 2>&1) | |
ec=$? | |
if [ ${ec} -ne 0 ]; then | |
echo; echo "ERROR!"; echo; echo "${gcp_in}"; echo | |
fi | |
return ${ec} | |
} |
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
{ | |
"query": { | |
"match": { | |
"values.shortDescription": "automadic generater" | |
} | |
}, | |
"filter": { | |
"bool": { | |
"must": [ | |
{ |
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
bSubs := BSONCollection{} | |
err := q(query).All(&bSubs) | |
// bSubs is still a zero-value BSONCollection, not bsonCol |
NewerOlder