Skip to content

Instantly share code, notes, and snippets.

@newbie78
newbie78 / install-postman.sh
Last active February 19, 2020 11:28
postman install bash script debian - ubuntu like
#!/usr/bin/env bash
echo "Downloading Postman ..."
wget -q https://dl.pstmn.io/download/latest/linux64 -O postman.tar.gz
echo "Installing to current user folder ..."
if [ -d "~/Postman" ];then
rm -rf ~/Postman
fi
tar -xzf postman.tar.gz -C ~/Postman
@newbie78
newbie78 / gist:18c1652c249120aafc67
Created November 21, 2014 14:46
mootools 1.5.1 drag&drop with mobile support
var Drag = new Class({
Implements: [Events, Options],
options: {/*
onBeforeStart: function(thisElement){},
onStart: function(thisElement, event){},
onSnap: function(thisElement){},
onDrag: function(thisElement, event){},