This file contains hidden or 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
| #!/usr/bin/env bash | |
| set -o errexit | |
| set -o nounset | |
| set -o pipefail | |
| if [[ "${TRACE-0}" == "1" ]]; then | |
| set -o xtrace | |
| fi | |
| if [[ "${1-}" =~ ^-*h(elp)?$ ]]; then |
This file contains hidden or 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://tickets.edfringe.com/solr/select?fq=category%3AComedy&fq=dates%3A%5B2018-8-22T5%3A0%3A00Z%20TO%202018-8-26T5%3A0%3A00Z%5D&q=*%3A*&facet=true&fl=sf_meta_id%2Cname%2Cgroup_name&f.subcategories.facet.limit=10000&json.nl=map&sort=name_sort_s%20asc&defType=edismax&start=0&wt=json&rows=1000 |
This file contains hidden or 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": "2012-10-17", | |
| "Statement": [ | |
| { | |
| "Sid": "AllowAllUsersToListAccounts", | |
| "Effect": "Allow", | |
| "Action": [ | |
| "iam:ListAccountAliases", | |
| "iam:ListUsers" | |
| ], |
This file contains hidden or 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 | |
| # To run... | |
| # curl https://gist.githubusercontent.com/robinweston/9d08e343d7306cd69e2abfa9e1d63fc1/raw/763c2ae5874571d02c8d567762b1c7e894ccc352/setup_mac.sh | bash | |
| echo "Starting bootstrapping" | |
| function reload_shell() | |
| { | |
| echo "Reloading shell" |
This file contains hidden or 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
| var request = require('superagent'); | |
| var wrap = require('superagent-promise'); | |
| var agent = wrap(request, Promise); | |
| function makeRequestAsPromise(req) { | |
| return new Promise(function (accept, reject) { | |
| req.end(function (err, response) { | |
| if (err) { | |
| err.response = response; | |
| reject(err); |
This file contains hidden or 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
| (ns tile-contains-tests | |
| (:require [midje.sweet :refer :all])) | |
| (defrecord Tile [insect color]) | |
| (facts | |
| (fact "contains works with top level maps and records" | |
| (let [record-vec [(Tile. :ant :white)]] | |
| record-vec => (contains {:insect :ant :color :white}))) |
This file contains hidden or 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
| using System; | |
| using System.Collections.Generic; | |
| using System.Linq; | |
| namespace ITunesRatings | |
| { | |
| using System.Xml.Linq; | |
| using iTunesLib; |
This file contains hidden or 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
| Set-ExplorerOptions -showHidenFilesFoldersDrives -showProtectedOSFiles -showFileExtensions | |
| cinst fiddler4 | |
| cinst poshgit | |
| cinst visualstudio2015community | |
| cinst googlechrome | |
| cinst adobereader | |
| cinst Console2 | |
| cinst filezilla | |
| cinst visualstudiocode |