Skip to content

Instantly share code, notes, and snippets.

View aguilarcarlos's full-sized avatar
👋

David Aguilar aguilarcarlos

👋
View GitHub Profile
@aguilarcarlos
aguilarcarlos / clean_branches.sh
Created November 12, 2021 21:41
clean_branches
clean_branches() {
git remote prune origin
git branch -vv | grep "origin/.*: gone]" | awk '{print $1}' | xargs git branch -D
}
@aguilarcarlos
aguilarcarlos / swipe.js
Last active February 24, 2024 13:52
Swipe JS for Mobile App
/**
* @name _swipe
* Small event handler for swipe in mobile phones using javascript, this handler is based on http://stackoverflow.com/a/27115070
* This handler supports classes, ids and elements.
* @author David Aguilar
* @example
*
* _swipe("#element", function(dir, elem) {
* console.info("You're swiping to %s direction.", dir.type);
* });