remember flash mobs? when the internet troops still had a formation. seems it's all guerilla dancing nowadays.
Notices by LR (lritter@mastodon.gamedev.place), page 2
-
Embed this notice
LR (lritter@mastodon.gamedev.place)'s status on Saturday, 18-Oct-2025 21:53:22 JST
LR
-
Embed this notice
LR (lritter@mastodon.gamedev.place)'s status on Monday, 29-Sep-2025 05:01:34 JST
LR
@RamenCatholic Slack is Mood / Slack is a Vibe / Slack Slaps.
-
Embed this notice
LR (lritter@mastodon.gamedev.place)'s status on Monday, 29-Sep-2025 04:57:35 JST
LR
@RamenCatholic as a tele-anointed discordian pope (german denomination) i hereby declare the alliance as confirmed
-
Embed this notice
LR (lritter@mastodon.gamedev.place)'s status on Monday, 29-Sep-2025 03:09:53 JST
LR
@RamenCatholic what is RamenCatholicism's alignment towards the Church of the SubGenius?
-
Embed this notice
LR (lritter@mastodon.gamedev.place)'s status on Saturday, 27-Sep-2025 10:15:55 JST
LR
throwing my depression in the trash
-
Embed this notice
LR (lritter@mastodon.gamedev.place)'s status on Tuesday, 23-Sep-2025 10:03:16 JST
LR
@RamenCatholic first say yes, then say "well, almost" and clarify.
-
Embed this notice
LR (lritter@mastodon.gamedev.place)'s status on Tuesday, 23-Sep-2025 10:03:15 JST
LR
@RamenCatholic also edibles beat smoking for so many reasons. even dry herb vaping is better. esp since you can first vape to get there fast, then eat the vaped product to concatenate six more hours on top of the three you already got.
-
Embed this notice
LR (lritter@mastodon.gamedev.place)'s status on Monday, 22-Sep-2025 21:39:27 JST
LR
the existence of activism suggests the existence of deactivism
-
Embed this notice
LR (lritter@mastodon.gamedev.place)'s status on Wednesday, 20-Aug-2025 05:58:57 JST
LR
memorizing each brand that interrupts my youtube livestream with ads, so that i can explicitly avoid it
-
Embed this notice
LR (lritter@mastodon.gamedev.place)'s status on Sunday, 10-Aug-2025 09:55:46 JST
LR
@RamenCatholic ah. that's a great resource, thanks. the diagnosis they give is spot on.
-
Embed this notice
LR (lritter@mastodon.gamedev.place)'s status on Sunday, 10-Aug-2025 09:39:49 JST
LR
@RamenCatholic beautiful.
you seem an expert. some of my tomatoes this year have wounds at the bottom. any idea why?
-
Embed this notice
LR (lritter@mastodon.gamedev.place)'s status on Thursday, 07-Aug-2025 18:27:41 JST
LR
@eniko valve is privately owned and has a big war chest so they can say what they like without worrying about shareholders.
-
Embed this notice
LR (lritter@mastodon.gamedev.place)'s status on Wednesday, 06-Aug-2025 03:00:31 JST
LR
@RamenCatholic Not a speck of light is showing
So the danger must be growing
Are the fires of Hell a–glowing
Is the grisly reaper mowing
Yes, the danger must be growing
For the rowers keep on rowing
And they're certainly not showing
ANY SIGNS THAT THEY ARE SLOWING -
Embed this notice
LR (lritter@mastodon.gamedev.place)'s status on Thursday, 10-Jul-2025 15:12:56 JST
LR
@abolisyonista who specifically built the camp
-
Embed this notice
LR (lritter@mastodon.gamedev.place)'s status on Thursday, 10-Jul-2025 14:24:37 JST
LR
with every latin glyph you send, you perpetuate the rule of the roman empire and use the symbols of your oppressors
the only ethical way to communicate is offered by unicode page U+1FB00..U+1FBFF (symbols for legacy computing)
-
Embed this notice
LR (lritter@mastodon.gamedev.place)'s status on Tuesday, 08-Jul-2025 19:01:11 JST
LR
Splitting the public 50:50 lets powerful figures do whatever they want - groups can't coordinate when they disagree on everything. The hack: polarized groups won't block each other's separate actions against shared threats. Instead of seeking consensus, each group can act independently on quiet agreements. Fighting the same enemy separately forces that enemy to split attention - more effective than trying to unite.
-
Embed this notice
LR (lritter@mastodon.gamedev.place)'s status on Thursday, 03-Jul-2025 17:06:58 JST
LR
@RamenCatholic what do you *mean* no minigun swivel chair on the roof!!
-
Embed this notice
LR (lritter@mastodon.gamedev.place)'s status on Monday, 30-Jun-2025 00:34:49 JST
LR
@dalias @pkhuong i'm working on fixpoint-iterative primitives lately (as an alternative to structured control flow) that are strictly forward-facing but trivially copyable, and this would be an ideal solution to support time-reversed debugging.
-
Embed this notice
LR (lritter@mastodon.gamedev.place)'s status on Sunday, 29-Jun-2025 22:12:54 JST
LR
@dalias what.. how is that even logically possible. it needs n iters to reach the beginning of the iteration range. then m iters to go through the range, buffer all results. then another m to go through the buffer in reverse (the actual reverse iteration). space needed is also m.
do you know of a different way to do this? b/c it doesn't seem like 1-step-iterators give us much freedom here.
or do you build an ad-hoc search tree? then the space needed would be log m and m log m makes more sense
-
Embed this notice
LR (lritter@mastodon.gamedev.place)'s status on Sunday, 29-Jun-2025 22:12:52 JST
LR
@pkhuong @dalias yeah. so, an ad-hoc search tree. it has fragments that appear in in-place sorting algorithms.
then it is all the more important to mention the time-for-space trade-off, since that's the whole point.