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
| // 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); |
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
| 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 |