This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This is Git's per-user configuration file. | |
[user] | |
name = --- | |
email = ---@---- | |
[alias] | |
a = add | |
s = status | |
b = branch | |
c = checkout |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/**** 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 + "(=([^&#]*)|&|#|$)"), |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==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== |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==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/* |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==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== |