- Kirkland Signature Normandy-Style Vegetables
- Frozen Chicken Breast
- Morningstar Blackbean Burgers
- Hardboiled Eggs
- Lasagna
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
def create_path(self, field_path): | |
base = "\"${}\"" | |
# Create a template for each value in array | |
# reasonable assume iether str or int will be passed | |
tmplts = ["['{}']" if isinstance(path, str) else "[{}]" for path in field_path ] | |
paths = [tmplts[i].format(field_path[i]) for i in range(len(field_path))] | |
full_path = ''.join(paths) | |
return base.format(full_path) |
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
def log(**kwargs): | |
print(json.dumps(kwargs)) | |
log(articleId='test_article', message='this is a message') |
I hereby claim:
- I am andscoop on github.
- I am andscoop (https://keybase.io/andscoop) on keybase.
- I have a public key whose fingerprint is 6EE9 E58F E2A7 9BCE CAA1 FC16 6729 96DE 18FC 1225
To claim this, I am signing this object:
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
KEY 0x7f BS | |
KEY 0x115 DC |
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
https://kubernetes-charts.storage.googleapis.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
package main | |
import ( | |
"context" | |
"log" | |
"os" | |
"strings" | |
dockercompose "github.com/docker/libcompose/docker" | |
"github.com/docker/libcompose/docker/ctx" |
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/sh | |
set -e | |
# Code generated by godownloader. DO NOT EDIT. | |
# | |
usage() { | |
this=$1 | |
cat <<EOF | |
$this: download go binaries for astronomerio/astro-cli |
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
""" | |
Example of sequential dynamic task creation | |
""" | |
from datetime import datetime, timedelta | |
from airflow import DAG, configuration | |
from airflow.operators.dummy_operator import DummyOperator | |
dag = DAG( | |
dag_id="dynamic_tasks_example", | |
start_date=datetime(2018, 2, 9), |
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
############################### | |
### *B*ASH *T*RACK | |
## A series of commands leveraging git and file system to do time tracking, task management, note taking | |
# Path BASHTRACK repo | |
export BT_ROOT="/Users/andscoop/dev/kb-andscoop/notes" | |
# Convenience env for grouping daily files by month | |
export BT_TIMETRACK_PATH="$BT_ROOT/daily/$(date '+%m')" |
OlderNewer