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
[JoystickSetting] | |
EnableJoystick=True | |
EnableDeviceJoystick=True | |
EnableDeviceFlight=True | |
EnableDevice1stPerson=True | |
[JoystickMappingFormat] | |
HelpComment=" ObjectFormat" | |
HelpComment=" X, Y, Z, Rx, Ry, Rz, Slider[1-2], POV_[U, D, L, R][1-4], Button[1-32]" | |
HelpComment= |
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
# @author Petalousa | |
# | |
# This file pings google's dns (8.8.8.8) every second to confirm connectivity | |
# if a ping to google fails, the script will ping the router (192.168.0.1) | |
# - if it can connect, the failure to connect to google and successful connection to the router is logged | |
# - if it canot connect, the failure to connect to google and the router is logged | |
# if the script was previously unable to ping google and now is able to ping google, the success will be logged | |
# | |
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
// ==UserScript== | |
// @name Generic Key Listener | |
// @namespace http://tampermonkey.net/ | |
// @version 0.1 | |
// @description logs key events. useful for creating a script you want actived on a set of keys | |
// @author Petalousa | |
// @include * | |
// @grant none | |
// ==/UserScript== |
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
// ==UserScript== | |
// @name YouTube add to playlist | |
// @namespace http://tampermonkey.net/ | |
// @version 0.1 | |
// @description try to take over the world! | |
// @author You | |
// @include https://www.youtube.com/* | |
// @grant none | |
// ==/UserScript== |