Skip to content

Instantly share code, notes, and snippets.

View ivarprudnikov's full-sized avatar
🌍
Vivamus, moriendum est.

Ivar (aɪvɑr) ivarprudnikov

🌍
Vivamus, moriendum est.
View GitHub Profile
@ivarprudnikov
ivarprudnikov / dynamo_insert_row_node_sdk.js
Created March 17, 2020 10:59
Insert rows into dynamo table
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
});
@ivarprudnikov
ivarprudnikov / .zshrc
Last active December 6, 2023 22:18
Initial zshrc config
# 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
@ivarprudnikov
ivarprudnikov / .bash_profile
Last active December 8, 2023 10:09
Bash setup
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
@ivarprudnikov
ivarprudnikov / bose_sound_touch_10.sh
Last active January 29, 2021 22:52
Connect Bose SoundTouch 10 to WiFi
# 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
@ivarprudnikov
ivarprudnikov / .travis.yml
Created August 6, 2019 10:52
Enabling Android instrumentaiton tests on Travis CI. This was not working at the time due to Travis not being able to boot up emulator or similar.
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
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)
@ivarprudnikov
ivarprudnikov / build.gradle
Last active March 19, 2019 18:26
Adding SpotBugs v1.7.1 to gradle v5 project
import com.github.spotbugs.SpotBugsTask
// ...
plugins {
// ...
id "com.github.spotbugs" version "1.7.1"
}
// ...
@ivarprudnikov
ivarprudnikov / .travis.yml
Created June 28, 2018 08:55
Travis Android emulator setup. Emulator starts but espresso test still fails. Do not twiddle with version numbers as it was quite hard to get it right
language: android
sudo: required
jdk: openjdk8
env:
global:
- ANDROID_API=27
- EMULATOR_API=24
- ANDROID_BUILD_TOOLS=27.0.3
@ivarprudnikov
ivarprudnikov / test.groovy
Last active June 27, 2018 16:02
Stringtemplate example showing how to extract individual characters from a "String"
@Grapes([
@Grab('org.antlr:ST4:4.0.8'),
@GrabConfig(systemClassLoader = true)])
import org.stringtemplate.v4.ST;
Word word = new Word("1234567890AB")
println word.getTomap()
@ivarprudnikov
ivarprudnikov / load_pddocument
Created April 11, 2016 09:43
Check if PDF loads into PDDocument without IOException
@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 {