Daniel Leigh

@danielleigh
57 Followers
232 Following
901 Posts
I write software and music from time to time
@landelare @glassbottommeg Yeah, alt+drag has been a common Linux default for decades at this point. Definitely not specific to any one DE.
It is somewhat surprising that there still isn't any guidance for users effected by the AUR issues over the last couple days. I would have expected cleanup instructions to start showing up by now.
This sewing pattern thought I needed several pages of background on Rosie the Riveter, but then the instructions are just "sew the seams together." Who thought this was a reasonable thing to sell?
Life with a cat: privacy sold separately. 😹🐾
#catownerslife
Slowly being driven crazy by the brand new AC unit running next door with a 100% duty cycle for the last few days.
@aeva pretty sure 2 is unfortunately "already be famous/successful with a large audience"
@sdwilsh @alice It is the cap of the opened tube in top left of the picture. It inserts into the tube, with a sealed bottom and a flange to stop it from falling all the way in, with the indent giving access to a hole that matches up to lock it through.
@mcc As to designing a tiny language with similar ownership: All you really need if you aren't checking correctness is to be able to run destruction code at scope exit. I'm familiar enough with rust to know if there are edge cases that make the correctness checking hard though.
@memoriesin8bit I'm assuming you've already ensured you don't have any memory allocations (usually pushing into an array) in the ghost collision loop, and have done some basic space partitioning do reduce the search space? If not, I recently had a problem where I needed to find closest pairs of points, and just sorting them into a grid of points and only checking the 9 nearest partitions instead of the entire space saved like 95% of the time. Even basic space partitioning helps searches a lot.