Skip to content

Instantly share code, notes, and snippets.

View visortelle's full-sized avatar
🎯

Kiryl Valkovich visortelle

🎯
View GitHub Profile
@visortelle
visortelle / Notes_on_Pair_Programming.md
Created October 25, 2021 20:15
Recommendations, quotes, and links to become better at pair programming
@visortelle
visortelle / .bashrc
Last active April 30, 2020 18:06
bazel-bash-helpers
## Print availabel bazel rules by path
## Usage bazel_rules '//src'
function bazel_rules(){
bazel query "attr(name, \".*\", $@:*)" 2> /dev/null
}
## Print availabel bazel rules by path
## Usage bazel_public_rules '//src'
function bazel_public_rules() {
bazel query "attr(visibility, \"//visibility:public\", $@:*)" 2> /dev/null