Skip to content

Instantly share code, notes, and snippets.

@abhishek-saware
abhishek-saware / mint-nemo-shortcuts
Last active June 17, 2020 16:58 — forked from da0ab/menurc
mint-nemo
; 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" "")
@abhishek-saware
abhishek-saware / pre-commit
Last active April 24, 2020 04:34 — forked from aaronhoffman/pre-commit
git hooks - prevent commit to local master branch and prevent push to remote master branch
#!/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
@abhishek-saware
abhishek-saware / introrx.md
Created November 11, 2018 14:38 — forked from staltz/introrx.md
The introduction to Reactive Programming you've been missing
@abhishek-saware
abhishek-saware / introrx.md
Created November 11, 2018 14:37 — forked from staltz/introrx.md
The introduction to Reactive Programming you've been missing