It's not just for breakfast. It can make a great dinner!
- 1.5 cups of milk
- 1.5 cups of shredded cheese
- 3 eggs
- Filling of your choice:
| // In this case the variable hoisted ends up being declared | |
| // but undefined before the if statement, because it is hoisted | |
| (function(){ | |
| try { | |
| if (hoisted) { | |
| var hoisted = true; | |
| console.log("This will not get printed") | |
| }else{ | |
| console.log("This will be printed, because hoisted has been declared, but is not set to a truthy value.") | |
| } |
| $ proxpn | |
| Welcome to the ProXPN OpenVPN Bash Client! | |
| Which exit node would you like to use? | |
| 1) UK 4) Singapore 7) LA 10) Miami | |
| 2) Sweden 5) Dallas 8) NYC 11) Czech | |
| 3) Netherlands 6) BASIC 9) Seattle | |
| Select an exit node:9 |
---
layout: episode
number: "000"
duration: "TIME:CODE:LENGTH"
length: "FILE_BYTES"
title: "The Episode's Title"
short_description: "This is a short description about the episode."
aac_asset_link: "LINK TO AAC ENCODED EPISODE"
ogg_asset_link: "LINK TO OGG ENCODED EPISODE"
| { | |
| "Version": "2012-10-17", | |
| "Statement": [ | |
| { | |
| "Effect": "Allow", | |
| "Action": "s3:*", | |
| "Resource": [ | |
| "arn:aws:s3:::rubberduckcast.com/*", | |
| "arn:aws:s3:::rubberduckcast.com", | |
| "arn:aws:s3:::episodes.rubberduckcast.com/*", |
| [default] | |
| aws_access_key_id = SOME_ACCESS_KEY_ID | |
| aws_secret_access_key = SOME_SECRET_KEY_ID | |
| [rubberduck] | |
| aws_access_key_id = SOME_ACCESS_KEY_ID | |
| aws_secret_access_key = SOME_SECRET_KEY_ID |
| # A Makefile for Go projects | |
| # This "makes" it easy to cut reproducible builds using an ignored _vendor | |
| # directory and built in Go tooling. When this runs, it first executes the | |
| # vendor.sh shell script. It then temporarily "blesses" your GOPATH with | |
| # the _vendor directory. This ensures all modules will first be looked for | |
| # in _vendor and anything else will get picked up from your standard Go workspace. | |
| GO_CMD=$(shell which go 2>/dev/null) | |
| GO_TEST=$(GO_CMD) test | |
| GO_BUILD=$(GO_CMD) build |
| var startTime = Date.now(); | |
| var trials = 10000000; | |
| var numQuarters = 8; | |
| var quarterDelta = 6.667; | |
| var quarterRadius = 1.213; | |
| var dimeRadius = 0.895; |
| package main | |
| import ( | |
| "time" | |
| "math/rand" | |
| "fmt" | |
| ) | |
| func main() { | |
| startTime := time.Now() |
| provider "aws" { | |
| region = "us-east-1" | |
| } | |
| resource "aws_instance" "terraform-test" { | |
| ami = "ami-408c7f28" | |
| instance_type = "t1.micro" | |
| key_name = "atlas-testing" | |
| security_groups = ["terraform-testing"] | |
| } |