Skip to content

Instantly share code, notes, and snippets.

View sergiosusa's full-sized avatar
🤘
rock on!

Sergio Susa sergiosusa

🤘
rock on!
View GitHub Profile
@sergiosusa
sergiosusa / .gitconfig
Last active July 21, 2022 14:39
ADM - Seat:Code
# This is Git's per-user configuration file.
[user]
name = ---
email = ---@----
[alias]
a = add
s = status
b = branch
c = checkout
/**** Url ****/
function getCurrentUrl() {
return window.location.href;
}
function getParameterByName(name, url) {
if (!url) url = window.location.href;
name = name.replace(/[\[\]]/g, "\\$&");
var regex = new RegExp("[?&]" + name + "(=([^&#]*)|&|#|$)"),
@sergiosusa
sergiosusa / steam-profile-showcase-organizer.user.js
Created April 20, 2018 20:51
Add an option to organize the showcases movind up and down
// ==UserScript==
// @name Steam Profile Showcase Organizer
// @namespace http://sergiosusa.com
// @version 0.1
// @description Add some features to the profile edit page on Steam.
// @author Sergio Susa ([email protected])
// @match https://steamcommunity.com/id/*/edit
// @require https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js
// @grant none
// ==/UserScript==
@sergiosusa
sergiosusa / games-bundle-extractor.user.js
Last active April 30, 2020 05:19
Copy the games present on the famous bundle websites to the clipboard using a link injected on the page.
// ==UserScript==
// @name Games Bundle Extrator
// @namespace http://sergiosusa.com
// @version 0.7
// @description Extract the name of the games in diferent bundles.
// @author Sergio Susa ([email protected])
// @match https://www.gogobundle.com/latest/bundles/*
// @match https://gogobundle.com/latest/bundles/*
// @match https://www.indiegala.com/*
// @match https://www.humblebundle.com/games/*
@sergiosusa
sergiosusa / indiegala-autojoin.user.js
Last active November 5, 2023 16:36
User script to auto-join all giveaways from indiegala.com.
// ==UserScript==
// @name AutoJoin IndieGala Giveaways
// @namespace http://sergiosusa.com
// @version 0.13
// @description Autojoin for IndieGala Giveaways!
// @author Sergio Susa (http://sergiosusa.com)
// @match https://www.indiegala.com/giveaways*
// @grant none
// @require http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js
// ==/UserScript==