Posts
3011
Following
122
Followers
695
software tinkerer and aspiring rationalist. transhumanist and alterhuman

I try to be very careful about CWing things. sometimes I make mistakes but I want to make my posts as safe to read as possible

I sometimes post NSFW/kinky/lewd things behind CWs. this should go without saying but if you're a minor please do not interact with anything lewd/NSFW that I post

I have very limited energy and am very shy so it might take me a long time to reply to messages sometimes, or I might not be able to reply at all. this is kind of an "output only" account for the most part, but I'm hopeful that I can change that over time

I sometimes use curly braces to {clearly show where a grammatical phrase begins and ends}, like that. you can think of them like parenthesis in code or math, except they operate on grammar instead
repeated
repeated

🩵 Bwee the Fluffdragon 🩵

*skitter skitter skitter scamper SCAMPER SCAMPER*

*claws on wood floor scrabbling sound*

*CRASH*

....

....

*SCAMPER SCAMPER SCAMPER*

🩵🩵🩵

3
2
1
repeated
repeated
Teto the Anitifa: https://www.youtube.com/watch?v=LEjftPKjkI8

If the comments are to be believed Teto is used for some Antifa-Songs lately

#Vocaloid #Antifa
0
3
1

@tempest I would definitely love to play it with y’all!

0
0
1
repeated

@geonz @corbden It's a very good strategy, at least in computer science. If you know what's going on, you can often guide the conversation without them realizing it. If there's a bug or a hole in their design, you just ask them to explain it until they step in the hole.

2
1
1
Edited 14 days ago

reminder that Archipelago exists and is absolutely incredible:

https://archipelago.gg/

it lets you create “multiplayer games” where you and your friend play two completely different singleplayer games and find items for each other in your games

for example I could be playing Doom ‘93 and instead of getting the super-shotgun and a soulsphere, I might find the PokeFlute and some rare candies for my friend playing Pokemon

and then they might be exploring a cave and find the BFG and the red key for E1M4

I can’t believe that something like this can exist. and there are a surprising number of supported games too

7
55
86
repeated

https://www.gamedate.org/ this site is awesome this feels like how the internet should be
plain and simple ways to connect with people. i love it

1
3
1
US politics
Show content

god damn this protest sign goes hard

0
1
9
re: Epstein, actual news, Prince Andrew, all-caps
Show content

@ifixcoinops holy shit it’s almost like countries other than the US have justice systems that work

0
0
0
repeated
Epstein, actual news, Prince Andrew, all-caps
Show content

SO THEY FUCKING ARRESTED PRINCE ANDREW THIS MORNING

Not asked him to appear for a chat, not invited him to assist the police with their inquiries, they pulled up round front and back and just fucking nicked him

And now they're searching his house

and, safe guess, his hard drives

2
3
1

what really sucks is that Janet is so close to being perfect for embedding in games as a scripting language, or etc. since it’s meant to be a small, simple Lisp with modern sensibilities, and Lisp’s whole thing is letting the users extend it into whatever they want with no limits

so you could very easily embed Janet into your game, and then generations of modders after could smooth over all of the quirks and bad API decisions and even incorporate whole new programming paradigms and DSLs. it would literally be completely future-proof

it’s just that Janet is a very unfinished language (especially when it comes to documentation) and it seems to me like nobody is spending the substantial effort it would take to fix its shortcomings

although, thankfully we still have Fennel which turns Lua into exactly what I described above. I fucking love Fennel - I have literally zero complaints about it as a Lisp or as a language in general 💙

0
0
3

for those curious here are the design decisions that I find confusing or just bad:

the (frequencies) form (which is meant to count the number of occurrences of each element in a list) completely ignores all nil values, and this isn’t documented anywhere

#Janet has a really cool concept where there are separate types for mutable or immutable data structures. for example "asdf" is an immutable string, but @"asdf" is a mutable string. but the problem is that for some reason, @"asdf" != "asdf" and also @"asdf" != @"asdf" - even if you do a deep/recursive equality check? and this is true for all data structure types

since the above means that the difference between mutable and immutable is very important if you want to compare things, you would think that all of Janet’s forms would be very clear about whether they return a mutable or immutable data structure, right? nope! there is no documentation of this whatsoever, which means that every time you want to compare two data structures you have to manually convert both of them - recursively - to immutable structures, just in case

the (complement) macro is meant to take a function and return its complement (a function that returns true when the original function would return false and vice-versa) but I think it’s just straight-up broken if you run it on a function with an arity of more than 1, and this is not documented anywhere

Janet’s random number generation is deterministic by default because the random seed defaults to the same number every time. you have to manually set the random seed yourself if you want to fix this. this isn’t documented either btw

Janet has a built-in error system using fibers (this is really cool!) but almost none of its forms actually throw errors when they should. instead they return values like nil or false and expect you to check this every time (even when this isn’t a documented behavior)

Janet’s docstrings use terms like “strictly equal”, “strictly less than”, etc. but the documentation calls this “primitive comparison” instead and never uses the word “strict”

in general there’s a pretty big disconnect between the language that Janet’s docstrings use, and the language used in the documentation. it feels like they were written by separate people who didn’t communicate very much

a lot of Janet’s docstrings say that they only take an indexable type but this seems to never be true - they can take any data structure type just fine, including strings

also, Janet either has no documentation for, or extremely limited documentation for:

  • any basic file operations
  • the existence of Lua-style metamethods which apparently this language has?
  • how to get a list of an object’s methods (you need to use (keys «object») in the REPL, even though a lot of objects are a bespoke type imported from C so there’s no indication that they might have methods or keys at all)
  • which features are supported by its regex implementation and how to use them (for example: if I regex/replace, is there any way that I can access the text of the capture group in my replacement?)
1
0
2
Edited 15 days ago

I’m falling out of love with Janet. it seems to have a lot of very good ideas and design choices but:

  • the documentation is missing a lot of important information and is sometimes just outright wrong
  • it seems like nobody really works on the documentation except for small maintenance tasks, and I wonder if the whole project is petering out similarly
  • it has some design choices that are either flat-out bad, or I just don’t understand the logic behind them

it’s been fun to work with it but I think I might try learning Typed Racket next

I’m ngl I’m starting to wonder if there are any Lisp languages that I would consider good enough for my hobby projects

it’s weird because I think that S-expressions and Lisp-style macros are incredibly good ideas, and yet exploring these languages feels a bit like exploring the fossils of an evolutionary dead end. like maybe there’s some fatal flaw in Lisps that I’m just not seeing, and that’s why all of these languages die. maybe the noisiness of the parenthesis and the potential for hard-to-diagnose syntax errors is a much worse issue than I think, and Lisps just aren’t worth it because of that alone. idk. but I still want to try Racket

1
1
5
repeated

Post your ominous signs

15
5
2

@SimplyTadpole thank you! I feel a little better hearing this tbh

0
0
1
re: kinda ranting re: pointed D&D shitpost
Show content

@kit that’s a really interesting point - I wonder if it really is because people are bringing their expectations of video games into the TTRPG world

I try to be generous sometimes and assume that D&D is trying to do something that I don’t understand - like it has goals and is filling a niche that I just don’t have a good grasp on. but yeah from the outside it really does look that way to me too

and I wonder if there’s a feedback loop where:

  • folks who want to try TTRPGs try D&D, because of its cultural dominance, and if they bounce off of it they assume that all TTRPGs are like D&D and therefore that they won’t like any of them
  • D&D players bounce off of other systems because they treat them like video games and get confused by the unspoken cultural assumptions that come from more imagination-focused systems
1
0
2
repeated
re: kinda ranting re: pointed D&D shitpost
Show content

@kasdeya it’s even more annoying when you DO get the appeal, I think. I love RPGs and tactics games, they’re often among my favorites… but the thing is, if I wanted that experience, I’d be playing a video game, not a TTRPG, and that is a concept that is apparently too alien for certain people to understand

the ability to do anything you can imagine is literally the entire point of a TTRPG in my mind, because that is quite literally what a Role Playing Game is. video game genres have stupid names that make no sense unless you speak their language, so when people who mostly play video games then get into TTRPGs, that’s the definition they carry with them, not knowing that it could be more than that

video games are interactive play, role playing games are imaginative play, and imagination is apparently in short supply

someone tried to get me into a pokemon TTRPG session with them once and the first thing I asked was “do my pokemon have a maximum of four moves” because I figured that would be the best way to ask “are we just pretending to play a video game or not” without upsetting them, and yeah, it was literally just pokemon, the video game, but on a virtual table instead. that was especially annoying because I like just about everything about the pokemon universe except the video games

1
1
1
re: kinda ranting re: pointed D&D shitpost
Show content

@kit yes omgg - that is such a good way to put it. it feels like they took a turn-based tactics RPG and then tried to retroactively turn it into a tabletop game (not even necessarily one where you roleplay)

I don’t get the appeal at all, but then again I don’t like RPGs or turn-based tactics games. and what excites me most about TTRPGs is being able to do anything that I can imagine - which D&D limits by necessity because its first priority is to be a turn-based tactics RPG

1
0
2
Show older