Same.
Me: Oh! A chance to do all the things that have been building up on my checklist!
Brain: But what about all these other things I just thought of? And you still haven’t even started learning Korean…
Hi, I’m Amy.
✨ New 🏳️⚧️ improved ♀️ version 👩❤️👩 out 🏳️🌈 now! 🎊
I live in Japan. Talk to me about Haskell, Scheme, and Linux.
日本語も通じます。
Same.
Me: Oh! A chance to do all the things that have been building up on my checklist!
Brain: But what about all these other things I just thought of? And you still haven’t even started learning Korean…
Wow, that’s a beast of a card! And here was me still feeling pleased with my 6600 XT I got a few years ago… 😶
Hope the employment situation works out OK.
It sucks that you feel bad. I hope that passes soon and you can see the value In yourself.
Perhaps your friend sees you differently from how you think. If you like spending time with her, that’s worth pursuing.
Many fond memories of using RISC OS as a kid. It’s good to know that it’s still alive!
That’s lovely!
Hehe. Nice observation!
Although, isn’t this basically Newton’s method of square roots? I don’t recall how floating point implementations usually do it, but it’s not too surprising that the performance is similar to the algebraic approach.
That’s nice to hear. I recognize a lot of what you’re saying <3
It feels good to be able to open up to people at last.
Whee! Another time sink! /subscribe
I might have spent an unusual amount of time recently reading up on ADHD. Am I going to do anything about it? Ha ha ha.
Yep, a good lesson about communication here!
I’ve stolen plenty of content from FMA as DM in my own games, but trying to play an expy of some existing character is unlikely to go well.
I tried some of this recently. The peach flavor was a bit too sweet for me, but the plain stuff is <3
That sounds lIke fun! What do you do about hills? Do you have power assist?
I agree with 15: I solved it pretty quickly and I like my solution, but what makes me really happy is that I’m pretty sure I couldn’t have solved it a few years ago.
Also day 11 (Plutonian pebbles): it’s such a simple problem, and part two is a perfect example of how and why to use dynamic programming. I’ve been encouraging everyone to try it.
It was nice to see some of the same faces (as it were) again from last year!
Also great to see more Haskell solutions, and props to those crazy enough to write in J and Uiua.
Sorry to hear that :/
I think you handled it well.
A total inability to write code correctly today slowed me down a bit, but I got there in the end. Merry Christmas, everyone <3
import Data.Either
import Data.List
import Data.List.Split
readInput = partitionEithers . map readEntry . splitOn [""] . lines
where
readEntry ls =
(if head (head ls) == '#' then Left else Right)
. map (length . head . group)
$ transpose ls
main = do
(locks, keys) <- readInput <$> readFile "input25"
print . length $ filter (and . uncurry (zipWith (<=))) ((,) <$> locks <*> keys)
They’ll figure it out eventually. Worked for me 😁