- Jungle Brothers - Raw Deluxe
- ATCQ, Busta Rhymes, Charlie Brown, Scenario, Black Sheep, De La Soul,
- Busta w/Flipmode, Spliff Starr, Beatminerz
- Jay-Z vs. Nas
- Cocoa Brovas, Smif n Wesson
- Cam’ron, Juelz Santana, chipmunk soul, Kanye
- THPS, b-boy document
- Rawkus, Mos Def, Talib Kweli, Common, DCQ
- 7L & Esoteric - The Soul Purpose
- Kanye round 2
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
resource "aws_acm_certificate" "aigee_org" { | |
domain_name = "aigee.org" | |
subject_alternative_names = ["notes.aigee.org"] | |
validation_method = "DNS" | |
lifecycle { | |
create_before_destroy = true | |
} | |
} |
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
#! /usr/bin/env bash | |
GOOS=linux GOARCH=amd64 go build -o main main.go | |
zip main.zip main |
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
# takes json from ajax request on list of kindle ebooks, returns title, author, url | |
cat books.json | jq '.GetContentsForCollection | .asinDetails[] | .title + " - " + .authors + " www.amazon.com" + .dpURL' |
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
// Base implementation: | |
function videoExperience(options) { | |
var elem = document.createElement("...") | |
// attach handlers, set up video/images/etc | |
return elem | |
} | |
// TCS: | |
var video = videoExperience(options) | |
document.getElementById("videoContainer").appendChild(video) |
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
# ssh to circleci.fanaticslabs.com | |
circleci dev-console |
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
const output = {} | |
for (const verb of Object.keys(server.router.routes)) { | |
console.log(verb) | |
for (const route of server.router.routes[verb]) { | |
const {method, spec: {path}} = route | |
if (!output[path]) { | |
output[path] = [] | |
} | |
output[path].push(method) | |
} |
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
# Scrubs a file of ip addresses, renaming anything that isn't broadcast to 10.0.0.(1-n) | |
import re | |
import sys | |
pattern = '(?:[0-9]{1,3}\.){3}[0-9]{1,3}' | |
def main(): | |
with open('output.txt', 'r') as output_file: | |
output = output_file.read() |
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
➜ bower-test npm -g list | |
^C | |
➜ bower-test npm -g list | grep bower | |
├─┬ [email protected] | |
│ ├─┬ [email protected] | |
│ ├── [email protected] | |
│ ├─┬ [email protected] | |
│ ├── [email protected] | |
│ ├─┬ [email protected] | |
├─┬ [email protected] |
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
➜ tcs git:(master) git checkout feature/RED-599-Bundling | |
Branch feature/RED-599-Bundling set up to track remote branch feature/RED-599-Bundling from origin. | |
Switched to a new branch 'feature/RED-599-Bundling' | |
➜ tcs git:(feature/RED-599-Bundling) git rebase feature/fanatics | |
First, rewinding head to replay your work on top of it... | |
Applying: PDP Round swatches, exposed sizing. | |
Applying: More updates to the PDP; circle swatches, flush left, fixed color swatch | |
Using index info to reconstruct a base tree... | |
M TCS.Website/Areas/Fullsite/Views/Catalog/ProductDetails.ascx | |
M TCS.Website/css/fullsite/global.css |
NewerOlder