Pairs well with Côtes du Rhône or Malbec
| Qty | Ingredient |
|---|---|
| 1 | Whole Duck |
| 1/2 c. | Breadcrumbs |
| <?xml version="1.0" encoding="UTF-8"?> | |
| <!-- Produced by Beyond Compare 4 from Scooter Software --> | |
| <!-- | |
| This is an extension of the work done by Nate Finch: | |
| https://npf.io/2014/05/diffing-go-with-beyond-compare/ | |
| The regular expressions for identifiers have been updated | |
| to match on lowercase and allow numbers to be included anywhere | |
| after the first character of the word. | |
| atom.commands.add 'atom-text-editor', 'custom:vim-mode-and-core-cancel', -> | |
| editor = atom.views.getView(atom.workspace.getActiveTextEditor()) | |
| atom.commands.dispatch(editor, 'vim-mode-plus:activate-normal-mode') | |
| atom.commands.dispatch(atom.views.getView(atom.workspace), 'core:cancel') |
| require 'fileutils' | |
| # Install the 'facter' gem if not already installed. Facter assists in automatically determining the RAM and CPUs | |
| # to use for the VM. | |
| facter_plugins = `vagrant plugin list | grep facter`.tr("\n","") | |
| unless facter_plugins.length > 0 | |
| puts "The 'facter' gem is not yet installed; installing..." | |
| system 'vagrant', 'plugin', 'install', 'facter' | |
| end |
| bSubs := BSONCollection{} | |
| err := q(query).All(&bSubs) | |
| // bSubs is still a zero-value BSONCollection, not bsonCol |
| { | |
| "query": { | |
| "match": { | |
| "values.shortDescription": "automadic generater" | |
| } | |
| }, | |
| "filter": { | |
| "bool": { | |
| "must": [ | |
| { |
| #!/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} | |
| } |
| 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! |
| /** | |
| * Returns omdb information | |
| * | |
| * @param {AL3} ids | |
| * @param {"public"|"private"} type | |
| * @return {array} range of information from API | |
| * @customfunction | |
| */ | |
| function TMDB(ids) { | |
| var tmdbKey = 'abcd1234'; |