Skip to content

Instantly share code, notes, and snippets.

View plechev's full-sized avatar
🎯
Focusing

Pavel Lechev plechev

🎯
Focusing
View GitHub Profile
@plechev
plechev / keybase.md
Created August 31, 2018 14:16
Keybase

Keybase proof

I hereby claim:

  • I am plechev on github.
  • I am plechev (https://keybase.io/plechev) on keybase.
  • I have a public key ASA-I8yPV7xeUYn6D66swP0wOE-XEN76SfwS0JPA9W9rBgo

To claim this, I am signing this object:

@plechev
plechev / maven-alias.sh
Created October 25, 2017 09:44
Maven shell command aliasing (Bash)
#!/usr/local/bin/bash
#
# Saves typing by allowing commands like `m ci` to be translated to `mvn clean install`
# Mapping lists can be customised for dev environment
#
declare -A mavg=(["c"]="clean"
["i"]="install"
["t"]="test"
@plechev
plechev / gradle-alias.sh
Last active October 25, 2017 09:40
Gradle shell command aliasing (Bash)
#!/usr/local/bin/bash
#
# Saves typing by allowing commands like `g cb` to be translated to `gradlew clean build`
# Mapping lists can be customised for dev environment
#
declare -A grt=(["c"]="clean"
["b"]="build"
["a"]="assemble"