I hereby claim:
- I am salmonmoose on github.
- I am salmonmoose (https://keybase.io/salmonmoose) on keybase.
- I have a public key whose fingerprint is 67D2 80ED A59F 3313 DF93 7068 9FB2 4E36 9573 580E
To claim this, I am signing this object:
| // ==UserScript== | |
| // @name Replace CEO | |
| // @namespace http://tampermonkey.net/ | |
| // @version 2024-12-25 | |
| // @description https://bsky.app/profile/riverboatjack.bsky.social/post/3le45z4efsc2c | |
| // @author salmonmoose | |
| // @match *://*/* | |
| // @icon https://www.google.com/s2/favicons?sz=64&domain=bsky.app | |
| // @grant none | |
| // ==/UserScript== |
| // ==UserScript== | |
| // @name The Riverboat Helper | |
| // @namespace http://tampermonkey.net/ | |
| // @version 2024-09-10 | |
| // @description Things I don't like in the Riverboat.gg site | |
| // @author salmonmoose | |
| // @match https://www.riverboat.gg/ | |
| // @icon https://www.google.com/s2/favicons?sz=64&domain=riverboat.gg | |
| // @grant none | |
| // ==/UserScript== |
| <html> | |
| <body> | |
| <h1>Mobile tester</h1> | |
| </body> | |
| </html> |
| // ==UserScript== | |
| // @name First character highlight | |
| // @namespace http://tampermonkey.net/ | |
| // @version 0.1 | |
| // @description Highlight the first 2 characters of words to aid with readability | |
| // @author salmonmoose | |
| // @match *://*/* | |
| // @require https://code.jquery.com/jquery-3.6.0.min.js | |
| // @grant none | |
| // ==/UserScript== |
| import sys | |
| max = sys.maxsize | |
| min = -sys.maxsize -1 | |
| for i in range(min, max): | |
| print ('{0} - {1} = 45'.format(i, i-45)) |
| div.fogged_img_holder { | |
| padding: 10px; | |
| } | |
| div.fogged_img_holder img { | |
| width: 100%; | |
| box-shadow: 5px 5px 5px #888888; | |
| } | |
| div.fogged_logo { |
I hereby claim:
To claim this, I am signing this object:
| Running PokerKingdomsUnity.Assembly-CSharp.PokerKingdoms.AITests.GenerateHands ... | |
| ===TABLE=== | |
| QC 3S 8H 5S 4C | |
| JH 0D KD 0S JS | |
| 6S 6D 6C 4H 8S | |
| 9C AH KH JD 5D | |
| 4D KC 8C KS AS | |
| =========== | |
| ===SELECTION=== | |
| (0, 0), (0, 1), (0, 2), (1, 2), (2, 2) |
| function ceilToSignificant($number, $figures) { | |
| $digits = ceil(log10($number < 0 ? -$number : $number)); | |
| $power = $figures - (int) $digits; | |
| $magnitude = pow(10, $power); | |
| $shifted = ceil($number * $magnitude); | |
| return $shifted / $magnitude; |
| /* | |
| * OpenSimplex (Simplectic) Noise for 3D in Java | |
| * (Preliminary Release) | |
| * | |
| * KdotJPG | |
| */ | |
| public class OpenSimplexNoise { | |
| private static final double STRETCH_CONSTANT_3D = -1.0 / 6; |