Skip to content

Instantly share code, notes, and snippets.

View Nuptial's full-sized avatar
😃

Alican Çamlıbel Nuptial

😃
View GitHub Profile
@Nuptial
Nuptial / .gitignore
Last active October 12, 2017 06:42
Git ignore all images and node modules
*.jpg
*.jpeg
*.png
*.gif
node_modules/
@Nuptial
Nuptial / autobumping.js
Last active October 30, 2017 19:13
CSGO Lounge Auto Refresh and Auto Bump script
// You need to install custom javascript extension for this
// Refresh page every 10 seconds.
setInterval(function() {
window.location.reload();
}, 10000);
// After page load Find bump buttons and click them
$(document).ready(function(){
var buttons = document.getElementsByClassName('buttonright');