Skip to content

Instantly share code, notes, and snippets.

View catgirlinspace's full-sized avatar
🏳️‍⚧️
happy pride month!!

rosalina saige catgirlinspace

🏳️‍⚧️
happy pride month!!
View GitHub Profile
@catgirlinspace
catgirlinspace / SplashcatPrivacy.md
Last active January 15, 2024 00:11
Splashcat TOS and Privacy Policy

Splashcat Privacy Policy

Splashcat.ink ("Splashcat", "the service") takes privacy seriously.

How Your Data is Used

Splashcat provides aggregated exports of battles uploaded to the service. In these exports all IDs are hashed, but it may still be possible for uploaded records to be linked back to the uploader. In order to provide the service, Splashcat stores some personal user data that you provide such as a username, display name, or pronouns. Splashcat also stores all data sent from an uploader, including any data that isn't processed into Splashcat's proprietary format.

Third Party Data Processors

@catgirlinspace
catgirlinspace / table.md
Created September 28, 2023 04:03
webmention implementation table
Editor(s) Member(s) Outside WG
Sender Tests Impls Telegraph Postly Falcon Bridgy Dobrado GNUSocial Grav Kaku Processwire Known Wordpress Aruna jonnybarnes Transformative Web::Mention lazymention Pushl
Discovery #1 15 1 1 1 1 1 1 1 1 1

Keybase proof

I hereby claim:

  • I am phoebethewitch on github.
  • I am catgirlinspace (https://keybase.io/catgirlinspace) on keybase.
  • I have a public key ASBMg7hpFPWfjFXWi-oK6eWWAYc3hy5QeK3oo_Balz-p2Ao

To claim this, I am signing this object:

@catgirlinspace
catgirlinspace / Splatoon 3 Lock Screen Widget.js
Created September 17, 2022 22:10
Splatoon 3 Lock Screen Widget
// Variables used by Scriptable.
// These must be at the very top of the file. Do not edit.
// icon-color: yellow; icon-glyph: gamepad;
const getRuleImageUrl = (rule) => {
// reupload images from https://github.com/misenhower/splatoon3.ink/tree/main/src/assets/img/rules
// as png to your own host and link below
switch (rule) {
// Splat Zones
case 'AREA': return "";
// Clam Blitz
@catgirlinspace
catgirlinspace / readme.md
Last active January 12, 2023 05:51
splatnet 3 paths

hi! this is a list of all¹ the paths in the splatnet 3 application as of september 10th, 2022. a lot of these are probably not useful for external applications. i found all these manually through developer tools. some may be incorrect. a : indicates that it's a parameter. i have marked what i considered to be notable with a ⭐️ emoji.

these can be used to launch the splatnet 3 application on a device with the nintendo switch online app installed. on ios, this is done with com.nintendo.znca://znca/game/4834290508791808?p=<url encoded path>. i am not sure how this works on android, but it's probably similar. for example, to open the anarchy schedule, use com.nintendo.znca://znca/game/4834290508791808?p=%2Fschedule%2Fbankara.

Keybase proof

I hereby claim:

  • I am madelinecatgirl on github.
  • I am maddycatgirl (https://keybase.io/maddycatgirl) on keybase.
  • I have a public key ASCQgajKnGIHPEKkJUj_XfycvKY5llD3kH0rC2Oh4VhKZgo

To claim this, I am signing this object:

@catgirlinspace
catgirlinspace / AveragePlayTime.kql
Last active September 19, 2021 18:11
Roblox PlayFab Data Explorer Quieries
['events.all']
| where FullName_Name == "_Player_Leave"
| where isnotnull(EventData.data.sessionTime) // older _Player_Leave events dont have this
| summarize SessionTime = avg(todouble(EventData.data.sessionTime) * 1s)
@catgirlinspace
catgirlinspace / CodeBlock.lua
Last active March 6, 2021 04:14
Code Block Roact Component
local plugin = script:FindFirstAncestorWhichIsA("Plugin")
local Lexer = require(script.Lexer) -- https://devforum.roblox.com/t/lexer-for-rbx-lua/183115/19?u=dog2puppy
local RichText = require(script.RichText) -- https://github.com/Mullets-Gavin/Roblox/blob/master/Shared/RichText.lua
local Roact = require(script.Parent.Parent.Modules.Roact)
local e = Roact.createElement
local CodeBlock = Roact.Component:extend("CodeBlock")