Skip to content

Instantly share code, notes, and snippets.

View RoboMWM's full-sized avatar

RoboMWM

View GitHub Profile
@RoboMWM
RoboMWM / Loading Previous Messages.md
Last active February 24, 2026 05:40
Gemini Flash 3 agent in Antigravity has an "overthinking" crisis when asked to implemented a feature on the first turn

Chat Conversation

Note: This is purely the output of the chat conversation and does not contain any raw data, codebase snippets, etc. used to generate the output.

User Input

add ability to load previous messages in a room when scrolling up.

*Listed directory unimatrix *

<Kanazawa (カナザワ)> on my last will and testment ill be sure to write "sorry if my death has caused any inconvenience. i promise it wont happen again."
@RoboMWM
RoboMWM / changelog.md
Last active November 26, 2025 19:27
Jim's Scalability.ini for Marvel Rivals, modified by RoboMWM

11/26/2025

  • Removed r.Shadow.MaxResolution=4

This option causes a crash when ingame setting "Shadow Detail" is set to "Low" as of Season 5. https://www.youtube.com/watch?v=rIUNvCnHjcc

  • Removed comments about GameUserSettings.ini

All of these options are configurable ingame as of at least Season 2 I think?

@RoboMWM
RoboMWM / latest.log
Created October 5, 2025 21:13
mace knockback eventdebug
[22:51:18] [Server thread/INFO]: [EventDebug] Event fired: EntityDamageByEntityEvent
getDamager: PrettyTroubles1
isCritical: true
getDamageSource: DamageSource{damageType=CraftDamageType{holder=Reference{ResourceKey[minecraft:damage_type / minecraft:mace_smash]=DamageType[msgId=mace_smash, scaling=WHEN_CAUSED_BY_LIVING_NON_PLAYER, exhaustion=0.1, effects=HURT, deathMessageType=DEFAULT]}}, causingEntity=CraftPlayer{name=PrettyTroubles1, uuid=7f7381ca-d058-443b-b74c-2429cc99e226}, directEntity=CraftPlayer{name=PrettyTroubles1, uuid=7f7381ca-d058-443b-b74c-2429cc99e226}, damageLocation=null}
getDamage: 25.167369842529297
getFinalDamage: 10.100645065307617
getCause: ENTITY_ATTACK
isCancelled: false
getEntityType: PLAYER
getEntity: RoboMWM
@RoboMWM
RoboMWM / bukkit_dmca_tldr.md
Created June 28, 2025 05:34
Bukkit DMCA drama in a tl;dr simple easy bullet points

[22:06]BillyGalbreath[SQID]:

  • dinnerbone started bukkit.
  • everyone loved it. friends joined him.
  • mojang took notice and hired dinnerbone to work for mojang.
  • dinnerbone stops working on bukkit but friends continue working on bukkit.
  • years later friends realize that dinnerbone sold bukkit to mojang when he was hired.
  • friends pissed off about this try to shut bukkit down and quit working on the project.
  • dinnerbone gets pissed and vows to continue it himself to keep it alive.
  • friends dont like this so file DMCA against it, making it impossible for dinnerbone to continue it.
  • spigot finds a loophole in the license and exploit it to continue bukkit to ensure its survival
@RoboMWM
RoboMWM / Package.StoreAssociation.xml
Created April 12, 2025 03:17
WolframAlpha Windows app and apps that they may have considered creating.
<?xml version="1.0" encoding="utf-8"?>
<StoreAssociation xmlns="http://schemas.microsoft.com/appx/2010/storeassociation">
<Publisher>CN=07A8B044-9B6C-4FDA-B92C-9A2E8EF8A5D9</Publisher>
<PublisherDisplayName>Wolfram Group LLC</PublisherDisplayName>
<GeneratePackageHash>http://www.w3.org/2001/04/xmlenc#sha256</GeneratePackageHash>
<SupportedLocales>
<Language Code="af" InMinimumRequirementSet="true" />
<Language Code="af-za" InMinimumRequirementSet="true" />
<Language Code="am" InMinimumRequirementSet="true" />
<Language Code="am-et" InMinimumRequirementSet="true" />
@RoboMWM
RoboMWM / billy.sh
Last active July 15, 2021 23:08
from ZombieChickenMan and billy
#!/bin/bash
# A place to store build information
DIR=~/.purpur/
FILE=$DIR"build"
# Get the latest version from pl3x api
echo "Checking for latest version ..."
VERSION=`curl -sN 'https://api.pl3x.net/v2/purpur/' | jq -r '.versions[0]'`
echo "Latest version is $VERSION"
[12:20:56] ~Purpur: <BillyGalbreath> oooooh, poems.. i got one
[12:20:56] ~Purpur: <BillyGalbreath> Roses are red,
[12:20:57] ~Purpur: <BillyGalbreath> Violets are blue,
[12:20:59] ~Purpur: <BillyGalbreath> Unexpected { on line 32
@RoboMWM
RoboMWM / merge_upstream.sh
Last active January 16, 2021 00:39
How to merge upstream
# With Tuinity
# Fetch Paper upstream
./tunity up up
# Fetch Tuinity
./tuinity up
# Apply Tuinity patches on top of Paper (or is it Tuinity and Paper on top of CB?)
./tuinity patch
# build jar
./tuinity build
# rebuild patches so the diff looks good (not needed if not publishing)
@RoboMWM
RoboMWM / GP_SQL_TO_FILE.py
Created April 28, 2020 04:17 — forked from ar00n/GP_SQL_TO_FILE.py
Migrate GriefPrevention from SQL to file directory storage.
import mysql.connector
import os, sys
from datetime import datetime
import time
path = "GriefPreventionData"+time.strftime("%Y%m%d-%H%M%S")
try:
os.mkdir(path)
os.mkdir(path+"/PlayerData")