brew install gnupgsudo apt-get install gnupg| [sudo] password for codejamninja: | |
| [ 0%] Built target elfloader_dummy32 | |
| [ 0%] Built target elfloader_dummy64 | |
| [ 0%] Built target bsdln | |
| [ 0%] Built target x86_64-apple-darwin11-ld | |
| [ 0%] Built target x86_64-apple-darwin11-ar | |
| [ 0%] Built target stuff | |
| [ 0%] Built target lipo | |
| [ 0%] Built target ranlib | |
| [ 0%] Built target getuuid |
| #!/bin/sh | |
| test -f /etc/sysctl.conf && \ | |
| (sudo sed -i 's/fs.inotify.max_user_watches=[[:digit:]]*//g' /etc/sysctl.conf && \ | |
| sudo sed -i '/^$/d' /etc/sysctl.conf && \ | |
| echo fs.inotify.max_user_watches=524288 | sudo tee -a /etc/sysctl.conf && sudo sysctl -p) || true |
| #!/usr/bin/python3 | |
| import os | |
| import sys | |
| from configparser import ConfigParser | |
| config = ConfigParser() | |
| config.read(os.path.abspath(sys.argv[1])) | |
| def get_value(path, value): |
| function helloWorld() { | |
| console.log('hello world'); | |
| } |
| provider "aws" { | |
| region = "us-west-2" | |
| shared_credentials_file = "~/.aws/credentials" | |
| } | |
| resource "aws_iam_user" "user" { | |
| name = "some-new-aws-user" | |
| } | |
| resource "aws_iam_user_policy_attachment" "test-attach" { |
| alert() |
| <!doctype html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"/> | |
| <title>Document</title> | |
| </head> | |
| <body> | |
| <a onclick="loginGithub()" href="#">Login w/ GitHub</a> | |
| </body> | |
| <script> |
| var h2Tags = document.getElementsByTagName('h2'); | |
| var h2Inner = []; | |
| for (var i = 0; i < h2Tags.length; i++) { | |
| var h2Tag = h2Tags[i]; | |
| if (h2Tag.getElementsByTagName('a').length > 0) { | |
| h2Inner.push(h2Tag.getElementsByTagName('a')[0].innerHTML); | |
| } else { | |
| h2Inner.push(h2Tag.innerHTML); | |
| } |