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 config = { | |
region: 'eu-west-1', | |
table: 'MyTableName' | |
}; | |
const AWS = require('aws-sdk'); | |
const ddb = new AWS.DynamoDB({ | |
apiVersion: '2012-08-10', | |
region: config.region | |
}); |
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
# zsh config | |
############### | |
# Load version control information | |
autoload -Uz vcs_info | |
precmd() { vcs_info } | |
# Format the vcs_info_msg_0_ variable | |
zstyle ':vcs_info:git:*' formats '(%b) ' | |
autoload -U colors && colors | |
setopt PROMPT_SUBST |
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
echo "Setup prompt appearance" | |
# to add username@hostname to prompt, then prepend the following: | |
# \[\033[36m\]\u\[\033[m\]@\[\033[32m\]\h:\[\033[33;1m\] | |
# The promp should look like: | |
# ~/Documents/project $ gitbranch _ | |
export PS1="\[\033[32m\]\w\[\033[00m\] \$ \[\033[34m\]\$(git branch 2>/dev/null | grep '^*' | colrm 1 2)\[\033[00m\] " | |
# On FreeBSD and Mac OS X, ls shows colors if the CLICOLOR environment variable is set | |
export CLICOLOR=1 | |
export LSCOLORS=ExFxBxDxCxegedabagacad |
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
# This is a copy/excerpt from Sam Hobbs article | |
# https://samhobbs.co.uk/2016/01/connect-bose-soundtouch-10-wifi-using-linux-telnet | |
# Just making sure it does not dissapear into the void before I need it again | |
# check IP | |
$ route # or "netstat -rn" on osx | |
Kernel IP routing table | |
Destination Gateway Genmask Flags Metric Ref Use Iface | |
default 192.0.2.1 0.0.0.0 UG 600 0 0 wlan0 | |
link-local * 255.255.0.0 U 1000 0 0 wlan0 |
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
language: android | |
sudo: required | |
jdk: openjdk8 | |
android: | |
components: | |
# https://github.com/travis-ci/travis-ci/issues/5036 | |
- tools | |
# The BuildTools version used by your project | |
- build-tools-28.0.3 |
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 scrape = require('website-scraper') | |
const path = require('path') | |
const options = { | |
urls: ['https://path.to.website.com'], | |
directory: path.resolve(__dirname, '<folder name here>'), | |
recursive: false | |
} | |
scrape(options) |
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
import com.github.spotbugs.SpotBugsTask | |
// ... | |
plugins { | |
// ... | |
id "com.github.spotbugs" version "1.7.1" | |
} | |
// ... |
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
language: android | |
sudo: required | |
jdk: openjdk8 | |
env: | |
global: | |
- ANDROID_API=27 | |
- EMULATOR_API=24 | |
- ANDROID_BUILD_TOOLS=27.0.3 |
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
@Grapes([ | |
@Grab('org.antlr:ST4:4.0.8'), | |
@GrabConfig(systemClassLoader = true)]) | |
import org.stringtemplate.v4.ST; | |
Word word = new Word("1234567890AB") | |
println word.getTomap() |
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
@Grab(group='org.apache.pdfbox', module='pdfbox', version='2.0.0') | |
import org.apache.pdfbox.pdmodel.PDDocument | |
["url"].each { String url -> | |
boolean fails = false | |
try{ | |
new URL("$url").withInputStream { |