On the next episode of Sweaty Bearded Men Cussing a Lot While Doing Manly Jobs (only on the Discovery Channel): another mechanical failure threatens the livelihoods of the sweaty men! Can they overcome this equipment failure throw sheer force of swear words and turn a profit?
@tempest I really am too. until I found Fedi I thought that the entire internet was like that, and I even thought that it was normal. but I’m glad that I have some perspective now and I’m not steeped in that toxic culture anymore
code is a pidgin language between computers and people. computers are very logical and consistent, but people are incredibly messy and chaotic and diverse
there’s such a wide variety of programming languages and styles (imperative, object-oriented, statically-typed, functional, etc.) because those styles are meant to serve different cultures of problem-solving, which value different things (speed, various definitions of “elegance”, various definitions of “safety”, etc.)
I grew up on reddit, though, where every user has to find a reason why they’re smarter and better than all of the other users. so I grew up hearing sentiments like:
and I learned to be very defensive about what works for me, because the cultural assumption was that one of these languages must be the superior choice and only a chosen few geniuses can understand which it is and use it properly - and I didn’t want to be one of those ignorant plebs using an inferior language for idiots instead. so that’s why I am the way I am towards Rust and anything related to functional programming
Reminder that I am currently OPEN for sugar cookie collar commissions!!
Grab a classic pink collar here: https://shop.cairosteele.com/products/sugar-cookie-deluxe-day-collar
Or, design your own! https://shop.cairosteele.com/products/made-to-order-custom-sugar-cookie-deluxe-day-collar
#BSNM #handmade #leather #bondage #bdsm #TransArtist #QueerArtist #furryart #PupPlay #kink
*skitter skitter skitter scamper SCAMPER SCAMPER*
*claws on wood floor scrabbling sound*
*CRASH*
....
....
*SCAMPER SCAMPER SCAMPER*
🩵🩵🩵
reminder that Archipelago exists and is absolutely incredible:
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
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
@ifixcoinops holy shit it’s almost like countries other than the US have justice systems that work
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
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 💙
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:
(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)regex/replace, is there any way that I can access the text of the capture group in my replacement?)I’m falling out of love with Janet. it seems to have a lot of very good ideas and design choices but:
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