Skip to content

Instantly share code, notes, and snippets.

View SpiritAxolotl's full-sized avatar
‼️

Spax SpiritAxolotl

‼️
View GitHub Profile
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@SpiritAxolotl
SpiritAxolotl / definemod.lua
Last active November 30, 2023 15:03
Winestealth shader for NotITG
--acts exactly like stealth
definemod{'winestealth', function(percent, pn)
if not P[pn] then return end
local a = 0.02*math.min(100 - percent, 50)
local w = 0.02*math.min(percent, 50)
local shader = winestealth:GetShader()
shader:uniform1f('a', a)
shader:uniform1f('w', w)
if not P[pn]:GetArrowShader() and percent > 0 then
P[pn]:SetArrowShader(shader)
@SpiritAxolotl
SpiritAxolotl / gautier_serre_discography.md
Created November 15, 2023 21:31
Gautier Serre Full Discography List (WIP)
@SpiritAxolotl
SpiritAxolotl / findNote_binarysearch_NotITG.lua
Last active November 17, 2023 19:04
Spax's note-finding method for stepmania
steps = P1:GetNoteData()
function findNote(beat, type)
if not type then type = 'notes' end
local t = {}
local r = 0.02
local left = 1
local right = #steps
while left <= right do
local mid = math.floor((left + right) * 0.5)
@SpiritAxolotl
SpiritAxolotl / wukko.css
Created October 14, 2023 19:51
Dragon face to Wukko for cobalt.tools
@-moz-document domain("cobalt.tools") {
[src="emoji/dragon_face.svg"], img.emoji > div {
content:url("emoji/dragon_face_wukko.svg");
}
}
@SpiritAxolotl
SpiritAxolotl / parrot.css
Last active August 29, 2023 16:05
Makes the "No QRTs" bird have normal eyes
[src="https://abs.twimg.com/responsive-web/client-web/parrot-800x400.v1.de5767b9.png"] {
content: url("https://cdn.discordapp.com/attachments/877970355241746442/1111501949641171034/parrot.png");
}
[style="background-image: url(\"https://abs.twimg.com/responsive-web/client-web/parrot-800x400.v1.de5767b9.png\");"] {
background-image: url("https://cdn.discordapp.com/attachments/877970355241746442/1111501949641171034/parrot.png");
}