Skip to content

Instantly share code, notes, and snippets.

View astrochili's full-sized avatar
☀️

Roman Silin astrochili

☀️
View GitHub Profile
@astrochili
astrochili / remove_all_music_vk.js
Last active June 27, 2017 22:15
Works on mobile version (https://m.vk.com/audio). 28 June 2017.
// 1. Open https://m.vk.com/audio
// 2. Scroll music page to the end
// 3. Open develop console
// 4. Run this code to connect jquery
var script = document.createElement("script");
script.src = "https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js", script.type="text/javascript", document.getElementsByTagName("head")[0].appendChild(script);
@astrochili
astrochili / love.sh
Created April 4, 2017 13:50
Love terminal session runner adapted for atom-shell-commands
projectDirectory=$1
echo "rm /tmp/tmp.sh; clear; /Applications/love.app/Contents/MacOS/love $projectDirectory" > /tmp/tmp.sh
chmod +x /tmp/tmp.sh
open -a Terminal.app /tmp/tmp.sh