(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.
; gimp-2.8 GtkAccelMap rc-file -*- scheme -*- | |
; this file is an automated accelerator map dump | |
; | |
; (gtk_accel_path "<Actions>/view/view-shrink-wrap" "<Primary>j") | |
; (gtk_accel_path "<Actions>/plug-in/plug-in-icc-profile-set-rgb" "") | |
; (gtk_accel_path "<Actions>/context/context-brush-menu" "") | |
; (gtk_accel_path "<Actions>/context/context-brush-spacing-set" "") | |
; (gtk_accel_path "<Actions>/context/context-palette-background-previous" "") | |
; (gtk_accel_path "<Actions>/tools/tools-color-average-radius-decrease" "") | |
; (gtk_accel_path "<Actions>/context/context-gradient-select-previous" "") |
#!/bin/sh | |
# prevent commit to local master branch | |
branch=`git symbolic-ref HEAD` | |
if [ "$branch" = "refs/heads/master" ]; then | |
echo "pre-commit hook: Can not commit to the local master branch." | |
exit 1 | |
fi | |
exit 0 |
(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.
(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.