Skip to content

Instantly share code, notes, and snippets.

View anwinged's full-sized avatar
👾
oops i did it again

Anton Vakhrushev anwinged

👾
oops i did it again
View GitHub Profile
@lananovikova10
lananovikova10 / teamleadconf.md
Last active June 5, 2024 11:38
additional materials from teamlead conf

Тут живут драконы. Матрица навыков как инструмент тимлида

Другие варианты матриц для команд разработки

@eiskalteschatten
eiskalteschatten / convert-indendations.sh
Last active July 14, 2018 07:16
Batch Convert 4-Space Indentations to 2-Space
#!/bin/bash
expand_func () {
OLD_LENGTH=4 # old indentation length
NEW_LENGTH=2 # new indentation length
unexpand -t $OLD_LENGTH "$1" | expand -t $NEW_LENGTH > "$1.tmp"
mv "$1.tmp" "$1"
}
export -f expand_func