
In HS I skipped the first couple stairs and reached for the hand rail and my ring finger clipped it just perfectly enough to spiral fracture. I wasn't fully convinced it broke and continued through my day but then the doctor confirmed. It just felt like there was no way I could've sustained that kinda damage from something so boring but I still can't close my fist without that finger veering into my pinky.
There are no good 1%ers. Doing philanthropy with your excessive fortune isn't worthy of applause, it's simply the easiest way to give. And more often than not they still do not. Using your influence (acquired through fortune) is hollow as hell too like why should we listen to you? Because you're loaded?? Nah but thanks for the dono.
There are good rich people but they are rich in other resources, usually immaterial.
Also Cosby Cosby'd himself....
avoid rigid recipes and prefer cookouts
Emacs is a crazy good GUI debugger I've heard but I've been invested in Neovim for years
You hear that? It's the sound of dozens of normies storming stux instances. Stay calm don't panic, the algorithm will take them back in a week.
It's been our biggest error since the Scientific Revolution, assuming the universe can be broken down into its simplest most precise parts. Materialism has many strong achievements but it's not the whole picture. Perhaps it is the interplay between polarities that brings us closer to understanding precision as contextual and nuanced...
Recognizing how our consciousness permeates our percepts, and how language is the synthesis of this... Everyone is being as precise as they have the capacity to be, colored by spirit and with their soul.
You're gonna want a powerful laser probably and ain't no stick that big like not even fkn close not even if we tried so that's why would'nt tbqh
I was reading up on Aaron Swartz once before bed while hitting a weed pen and I had somehow convinced myself I was facing felony charges and had to go to court to fight jail time and I lost it... unplugged my computer from the wall and shoved my face in my pillow until I was able to calm down and realize my foolishness before going to sleep.
Free speech enthusiasts are exercising hatred. Before non-hateful people realize this they sometimes conflate it with the inversion: speaking truth to power. Or sometimes simply "freedom" which isn't perfectly absolute when we live in a society. If you wanna witness hatred then follow the free speech thread.
oh I do that all the time. tbh just alias flatpack=flatpak
and you should be good to go.
and yet y'all are also gonna keep trying to use Agile too
new tilde backdoor?
libertarian socialist
idk about you comrade but I don't read from thelibertariansocialistlibrary.org
Only because CTRL+F had zero results: Krita. Everyone complains about GIMP having a bad name and Krita is actually good!!
This is certainly the closest I've ever been to trying emacs... but for better or for worse I probably won't get around to even trying it until a decade from now and then just like LISP I'll probably think damn I should have tried this a decade ago.
I've got a few fennel projects to get to a good place and then I'm really excited to look into Lisp Flavored Erlang!
Lisp flavored configuration via Fennel. Tuned for s-expressions and prose.

cross-posted from: https://board.minimally.online/post/20318
> I just recently discovered TIC-80 and then Fennel. I was already liking Lua but now I'm hooked on LISP!! Here's my Neovim config using lazy.nvim, all written in fennel thanks to hotpot > > It's not marketed like one of those "template Neovim config repos" but it could be one of those if your heart desired. I based it loosely off kickstart.nvim.
cross-posted from: https://board.minimally.online/post/12268
> The math behind the game is atan2
which I use to get the angle from a thing to another thing:
>
> lua > function ato(from,to) > return atan2( > to.x-from.x, > to.y-from.y > ) > end >
>
> And then when you give that angle to cos
for the x axis and sin
for the y axis you get (x,y) coords that can be multiplied by the number of pixels you want to "move" in that direction. So this function assumes a table like {x,y,a,s}
and returns new a new x,y multiplied by s
for "speed"...
>
> lua > function amove(●,s) > s=s or ●.s > return ●.x+cos(●.a)*s, > ●.y+sin(●.a)*s > end >
>
> I use both those together like this to move the worms each frame. (This symbol: ∧ looks more like a worm in the Pico-8 font. If you didn't notice I like the emoji for variables 😋)
>
> lua > for ∧ in all(∧s) do > ∧.a=ato(∧,웃) > ∧.x,∧.y=amove(∧) > end >
>
> The astitue reader may have noticed amove
allows one to supply their own s
instead of the table's s
... this is useful when you want to calculate things along something like a line, I mean the length of a worm. For example if we put everything together then we get this loop that, after a bullet (✽
) moves, checks every part of a worm (for ∧t=0,∧.l do
where ∧.l
is worm length and ∧t
is each "tail" pixel) and if they collided deletes both and plays a sound effect. amove
is given each ∧t
but it's not actually used to move the worm, just to reconstruct it's body for collision detection.
>
> lua > for ∧ in all(∧s) do > for ∧t=0,∧.l do > ∧x,∧y=amove(∧,∧t) > if flr(✽.x)==flr(∧x) > and flr(✽.y)==flr(∧y) > then > del(bullets,✽) > del(∧s,∧) > if #∧s==0 then > sfx(2) > else > sfx(1) > end > end > end > end >
Now I miss the lizard milk too :(
Indie and self-hosted object storage providers could help diversify who is storing the end data (ideally less Amazon and big corps). I've heard things about https://min.io but haven't dug into it beyond that. And pict-rs instances using filesystem/sled are already set, although cost for disk is more expensive than objects I think?