Skip to content

Instantly share code, notes, and snippets.

@albertomm
albertomm / _bash_one_liners.md
Last active June 6, 2016 12:05
Bash one-liners

My collection of bash one-liners to be used as reference to write more complex scripts.

@albertomm
albertomm / install_patched_rsync.sh
Last active May 12, 2017 02:32
Install rsync 3.1.2 with detect-renamed patch from source
wget https://download.samba.org/pub/rsync/rsync-3.1.2.tar.gz
wget https://download.samba.org/pub/rsync/rsync-patches-3.1.2.tar.gz
tar xzvf rsync-3.1.2.tar.gz
tar xzvf rsync-patches-3.1.2.tar.gz
cd rsync-3.1.2/
patch -p1 <patches/detect-renamed.diff
@albertomm
albertomm / jquery_cheat_sheet.js
Last active May 3, 2016 19:45
JQuery Cheat Sheet
/* Selectors */
$("button"); // by tag name
$(".animated"); // by class name
$("#button3"); // by ID
$("someselector:nth-child(2)");
/* CSS */
$(selector).addClass("someclass");
$(selector).removeClass("someclass");
$(selector).css("color", "blue");