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 YNO screenshot shortcut | |
// @description Default behaviour: C key takes a screenshot | |
// @version 0.2.0 | |
// @namespace https://ynoproject.net/ | |
// @match *://*.ynoproject.net/* | |
// @author rafuwu | |
// @homepageURL https://gist.github.com/rafuwu/8945525516044de510ee79ebebe9546a | |
// @license 0BSD | |
// ==/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
// This is free and unencumbered software released into the public domain. | |
// For more information, please refer to <http://unlicense.org/> | |
/* Made for: | |
* https://yume.wiki/2kki/Kura_Puzzles | |
* https://yume.wiki/2kki/Wallpaper_Guide | |
* | |
* Enter this into the console and then focus on the page with the cursor | |
* (to allow the contents to be copied into the clipboard) | |
*/ |
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 YNO Expeditions keyboard shortcuts | |
// @name:fr Raccourcis clavier de YNO Expéditions | |
// @name:pt Atalhos de teclado para Expedições YNO | |
// @name:ja YNOのドリームラリーキーボードショートカット | |
// @description Press "R" to open the Expeditions window and "T" to cycle between Locations and Vending Machine Finder. | |
// @description:fr Appuyez sur "R" pour ouvrir la fenêtre Expéditions et "T" pour passer de Lieux à Distributeur automatique à trouver. | |
// @description:pt Pressiona "R" para abrir o menu das Expedições e "T" para alternar entre Localizações e Máquina de Venda Automática. | |
// @description:ja Rキーでドリームラリーウインドウを開閉する。Tキーで世界と自販機の切り替えができます。 | |
// @version 0.9.0 |
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/sh | |
# This is free and unencumbered software released into the public domain. | |
# For more information, please refer to <http://unlicense.org/> | |
# | |
# This script renames YNOproject.net screenshots taken with the feature inside the website | |
# | |
# It supports all of the following naming formats as inputs (given as examples): | |
# * 'ynoproject_2kki_screenshot_2023-1-6-0-49-2.png' |
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 | |
[ -z "$1" ] && port=6869 || port=$1 | |
# Get local IP address | |
localip=$(ip addr | grep -i "inet 192.168" | awk '{print $2}' | awk -F / '{print $1}') | |
# Get current user name | |
user=$(whoami) |