Llunainmaymeow.hashnode.dev路2d ago 路 1 min readgenerating technical usernamesFor technical username you can use for example a prefix u + 10 random numbers. PowerShell one-liner: 'u' + -join (1..10 | ForEach-Object { Get-Random -Minimum 0 -Maximum 10 }) Output examples: u4829100
Llunainmaymeow.hashnode.dev路Dec 12, 2025 路 7 min readAoC25 Day 12: Christmas Tree FarmTetris, but make it elves. Today was all about figuring out whether oddly shaped presents could tile a given rectangle without overlaps. On paper it sounds like a straight polyomino packing question; in practice it turned into a tour through three di...00
Llunainmaymeow.hashnode.dev路Dec 12, 2025 路 6 min readAoC25 Day 11: Reactor RelaysToday鈥檚 problem looked like a straight "count the wire paths" exercise, but the density of the wiring diagram quickly turned it into a combinatorics workout. I ended up treating the factory like a directed acyclic graph of devices and tallying every ...00
Llunainmaymeow.hashnode.dev路Dec 12, 2025 路 8 min readAoC25 Day 10: FactoryToday鈥檚 puzzle felt like fixing two halves of the same machine: first we snap indicator lights into place with toggles, then we flip a lever and treat those same buttons like little add-one circuits. Two different algebra problems, one pile of schema...00
Llunainmaymeow.hashnode.dev路Dec 9, 2025 路 8 min readAoC25 Day 9: Movie TheaterNorth Pole interior decorators handed me a loop of red tiles laid out on a huge floor. Part 1 wanted the largest axis-aligned rectangle that uses any two red tiles as opposite corners. Part 2 limited the rectangle to stay entirely inside the red/gree...00