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 Hide Ratings on 1001albumsgenerator | |
// @namespace http://tampermonkey.net/ | |
// @version 0.1 | |
// @description Hides group ratings on 1001 albums generator to avoid being influenced if you didn't vote yet | |
// @author Daniele Rapagnani | |
// @match https://1001albumsgenerator.com/groups* | |
// @icon https://1001albumsgenerator.com/images/favicon.ico | |
// @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
#!/bin/bash | |
# Run inside a Unity project's root | |
if [ -z "$1" ]; then | |
echo "Usage: $0 guid" 1>&2 | |
exit 1 | |
fi | |
FILENAME=`grep -lr --include "*.scene" --include "*.meta" "^guid: $1$" . | head -n 1` |
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 dirty, dirty script, allows you to export links from google spaces | |
* so that you don't have to do it manually before April 17th. | |
* I could not find any official way to do this so I quickly threw this script | |
* together. | |
* | |
* USAGE: | |
* 1. Place yourself on the space page you want to export | |
* (such as: https://spaces.google.com/space/XXXXXXXXXXXXXXX) | |
* |