Skip to content

Instantly share code, notes, and snippets.

View davidpa9708's full-sized avatar
👉

David Perez Alvarez davidpa9708

👉
View GitHub Profile
@davidpa9708
davidpa9708 / easing functions
Last active May 6, 2019 04:14
Robert Penners easing functions js (compatible with scroll-utility)
/* ============================================================
* jQuery Easing v1.3 - http://gsgd.co.uk/sandbox/jquery/easing/
*
* Open source under the BSD License.
*
* Copyright © 2008 George McGinley Smith
* All rights reserved.
* https://raw.github.com/danro/jquery-easing/master/LICENSE
* ======================================================== */
@HaydenElza
HaydenElza / AutoClicker.sh
Created June 15, 2015 03:25
Auto-Clicker using xdotool on linux
#!/bin/bash
COUNTER=0
while [ $COUNTER -lt 10000 ]; do
xdotool click 1
sleep 0.001s
echo The counter is $COUNTER
let COUNTER=COUNTER+1
done