This file contains 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
// Volume slider from: https://codepen.io/emilcarlsson/pen/PPNLPy | |
// ==UserScript== | |
// @name Instagram volume slider | |
// @namespace https://delivator.me/ | |
// @version 0.5 | |
// @description Adds a volume slider to Instagram | |
// @author Delivator.me | |
// @match https://www.instagram.com/* | |
// @homepage https://gist.github.com/Delivator/902cdaff0f21186b514e576e4670ff70 |
This file contains 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
@echo off | |
for %%a in (*.*) do if not "%%a"=="%~nx0" ( | |
echo Renaming %%~a in %%~na_1%%~xa | |
ren "%%~a" "%%~na_1%%~xa" | |
) | |
pause |
This file contains 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
// ==================== General Server Settings ==================== | |
sv_cheats "1" | |
mp_limitteams "0" | |
mp_autoteambalance "0" | |
mp_roundtime "60" | |
mp_roundtime_defuse "60" | |
mp_maxmoney "60000" | |
mp_startmoney "60000" | |
mp_freezetime "0" | |
mp_buytime "9999" |
This file contains 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
// In chrome: Open the developer console with CTRL + J and paste the code bellow in the console | |
(function() { | |
let elements = document.getElementsByClassName("btn_grey_black"); | |
for(var i = 0; i < elements.length; i++) { | |
let element = elements[i], | |
linkParts = element.getAttribute("href").split('\''); | |
UnsubscribeItem(linkParts[1], linkParts[3]); | |
} | |
})(); |
This file contains 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
// ==================== Ascii Art ==================== | |
echo "$$$$$$$\ $$$$$$$$\ $$\ $$$$$$\ $$\ $$\ $$$$$$\ $$$$$$$$\ $$$$$$\ $$$$$$$\ $$\ $$\ $$$$$$$$\ " | |
echo "$$ __$$\ $$ _____|$$ | \_$$ _|$$ | $$ |$$ __$$\\__$$ __|$$ __$$\ $$ __$$\ $$$\ $$$ |$$ _____|" | |
echo "$$ | $$ |$$ | $$ | $$ | $$ | $$ |$$ / $$ | $$ | $$ / $$ |$$ | $$ | $$$$\ $$$$ |$$ | " | |
echo "$$ | $$ |$$$$$\ $$ | $$ | \$$\ $$ |$$$$$$$$ | $$ | $$ | $$ |$$$$$$$ | $$\$$\$$ $$ |$$$$$\ " | |
echo "$$ | $$ |$$ __| $$ | $$ | \$$\$$ / $$ __$$ | $$ | $$ | $$ |$$ __$$< $$ \$$$ $$ |$$ __| " | |
echo "$$ | $$ |$$ | $$ | $$ | \$$$ / $$ | $$ | $$ | $$ | $$ |$$ | $$ | $$ |\$ /$$ |$$ | " | |
echo "$$$$$$$ |$$$$$$$$\ $$$$$$$$\ $$$$$$\ \$ / $$ | $$ | $$ | $$$$$$ |$$ | $$ |$$\ $$ | \_/ $$ |$$$$$$$$\ " | |
echo "\_______/ \________|\________|\______| \_/ \__| \__| \__| \______/ \__| \__|\__|\__| \ |
NewerOlder