Skip to content

Instantly share code, notes, and snippets.

@kuniss
kuniss / textmate.styles.iro
Created April 16, 2019 15:01
Textmate focused unambigious styles for Iro https://eeyo.io/iro/ (only invalid is ambigouse due to Pygments restrictions)
styles [] {
# textmate focused scopes
# comment — for comments.
# // comment
.comment_line_double_slash : style {
color = light_green
italic = true
@kuniss
kuniss / determineLibraryDependencies.sh
Created June 12, 2016 20:56
Code accompanying article "Let it flow!"
determineLibraryDependencies() {
read input
for f in $input; do
ldd $f | awk '/=>/ { print $1 }'
done
}
determineFullPathLibraryDependencies() {
read input
for f in $input; do