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 Whirling Pool | |
| // @namespace whirled | |
| // @description Fix stuff on Whirled Club, for PaleMoon and similar browsers. | |
| // @include https://www.whirled.club/* | |
| // @version 1.0 | |
| // @grant none | |
| // ==/UserScript== | |
| function patch_fixObjectEmbedFF() { |
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
| { | |
| "id": "fmbank4stupidsynth", | |
| "ver": "alpha01_4op_ARenv", | |
| "instruments": [ | |
| { | |
| "name": "2OP Tubular Bell", | |
| "fbRatio": 0, | |
| "opDetune": [0, 0, 0, 0], | |
| "opFreqMul": [1.0, 3.5, 0, 0], | |
| "opAmp": [1.0, 0.05, 0, 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
| #include <stdio.h> | |
| #include <windows.h> | |
| //Use: copy text to clipboard and press HOTKEY to type it back | |
| // for those places where system clipboard doesn't reach. | |
| #define HOTKEY VK_SCROLL | |
| #define BLEEP_PITCH 2000 | |
| //#define KDELAY 5 |
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
| #pragma once | |
| #include <windows.h> | |
| #define DEFFUN_OBJ(_HMOD, _ERR, _FNAME) __typeof__(_FNAME) *pf##_FNAME = NULL | |
| #define DEFFUN_EXT(_HMOD, _ERR, _FNAME) extern __typeof__(_FNAME) *pf##_FNAME | |
| #define DYNLOAD(_HMOD, _ERR, _FNAME) _ERR = _ERR ? _ERR : !(pf##_FNAME = (void*)GetProcAddress(_HMOD, #_FNAME)) | |
| //usage scenario | |
| //You have a header full of function definitions that would result in linking to dll | |
| //But you want to use them as dynamically loaded functions instead. |
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
| #include <windows.h> | |
| #include <stdio.h> | |
| #include <stdint.h> | |
| #define DEVNAME_LEN 32 | |
| #define A2I(x) ((uint8_t)(x-48)) | |
| static DEVMODEA dmActive; | |
| static DEVMODEA dmWanted; | |
| static char nameActive[DEVNAME_LEN]; |