Posts
2692
Following
116
Followers
679
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
Edited 1 month ago

a problem that I often run into when learning a new Tech Thing is figuring out how to apply the knowledge that I’m learning about, without asking myself to do something that’s too hard with my current knowledge. but this Haskell MOOC does all the work for me and that’s amazing

specifically it comes with a git repo that I can clone. for each chapter there’s a premade file full of stub code and comments that describe what the code should do. and I just edit the stub code in order to make it work. then there’s another file that I can run to unit-test those challenges. that way I instantly know if I did each challenge right

this is genuinely a lot of fun to do and it helps reassure me that I am actually absorbing the information that I’m reading

I really wish that there were more courses(?) like this for learning tech stuff. even just something at the end of each chapter like “here are some optional challenges that you might want to try at this point” would go a long way

2
2
4

aaa now the Arch laptop fucked up my cloud storage too and I don’t even know why. I literally haven’t touched this stupid laptop in like 6 months and suddenly everything is broken

1
0
1
repeated

eli (ˈe̝ːli), vampire kitsune

giving me retractable claws is gender affirming care

1
5
19
Edited 1 month ago
kinda mean anti-Arch shitpost
Show content

instead of “I use Arch btw” it should be “ugh hang on. I use Arch :/“

as in: “hey can you plug your laptop into the TV so we can use it to watch the movie?” “ugh hang on. let me check the Arch wiki. okay actually this is pretty confusing. wait a sec pacman just borked something. okay uhh… let me work on this for a few hours”

3
0
7
Edited 2 months ago

I think the reason why I like programming and software tinkering but not OS tinkering is because with the former two I get to decide when I do the tinkering

but if I start tinkering with my OS then it decides when I do the tinkering. it can just suddenly be like “hahaha I broke myself! time to learn about partition resizing!”

which is not great when I leave in a few days and need a functioning laptop and do not have the energy or patience for Linuxing

0
0
5
Edited 2 months ago

if you want to try Linux don’t use Arch it’s a trap. I’ve heard Linux Mint is good instead

also make one big partition don’t have a separate /home partition

3
0
10
Edited 2 months ago

ugghhh I’m going to have to learn how to resize a partition on Linux. this is definitely going to suck and there’s a nonzero chance I’m going to bork my laptop

3
0
3
Edited 2 months ago

the autistic urge to somehow learn Haskell and ANSI C and Scheme simultaneously

(every time I start learning one it makes me want to switch to learning the other two)

1
0
6

holy shit I installed Haskell and my WSL drive went from 5 GB to 22 GB

that’s kind of a problem because I do weekly backups lol so every time my WSL drive changes I have to transfer all 22 GB of it over. maybe I should figure out a better backup system than FreeFileSync

0
0
6
repeated

Automatically updating content can be extremely distracting, especially for users with vestibular disorders or attention difficulties. This could force users to scroll through page content to not see the animation, or to just look away. Allow animations to be paused or stopped.

0
1
1
repeated

PSA to anyone who uses Gmail!

"Reportedly, Google has recently started automatically opting users in to allow Gmail to access all private messages and attachments for training its AI models. This means your emails could be analyzed to improve Google’s AI assistants, like Smart Compose or AI-generated replies. Unless you decide to take action."

https://www.malwarebytes.com/blog/news/2025/11/gmail-is-reading-your-emails-and-attachments-to-train-its-ai-unless-you-turn-it-off

8
8
1

Call of Duty’s new Omni-Movement™ system is an amazing example of AAA games innovating by changing things for no particular reason, and then innovating again by un-changing things and going back to how Quake 1 worked

1
1
4
Edited 2 months ago

my philosophy as a developer is to figure out which technologies are the most popular and deliberately avoid them out of disgust

this philosophy has resulted in 58,927,345,598,307 unfinished toy projects, maybe like 12 finished toy projects, and one bare-functionality webapp

but at least I’m not using Node *shakes fist at cloud*

1
0
6

Beating Minecraft, But I Can’t Break the Laws of Judaism

this is unironically a really cool and interesting video wtf

CW: there’s a gross part at the end but just skip the last few seconds (from 18:44 onward)

0
1
2
my ideal programming language philosophy (long)
Show content

in the past I’ve posted about how my ideal language would be made out of the bare minimum of simple parts, and then built out from there as a tree structure of abstractions

the root node would unfortunately have to be defined in natural languages which are messy and imprecise, but all of the root’s child nodes would be defined in terms of the language features in the root node - as well as having natural language descriptions to help people understand what they’re reading and why it’s designed that way

and for every node in the graph, its features would be defined only in terms of the features contained in its child nodes (with natural language to help explain things more of course). also, each child node would reuse as many concepts as possible from its parent nodes, to minimize the number of special cases that a user of the language would have to learn

there are a few reasons why I want a language like this:

  • just simple aesthetics. it’s beautiful to me to take the bare minimum of parts and build outward from that, and I love that if some node somewhere in the tree isn’t beautiful for someone, then they can make their own node instead
  • more importantly, beginners can learn in discrete “steps” and gain a basic understanding very very quickly. after they’ve learned the root node they can feel accomplished that they’re able to do everything the language is capable of already, and all there is left to learn are bonus convenience features
  • as they learn more and more distant nodes, they’re able to incrementally increase their ability to express complex thoughts using the language - effectively allowing them to learn chunking in the new language
  • every single feature of the language, not including the root node, is defined with complete precision because it’s written in code rather than natural language
  • in theory, a language designed like this would require users to learn the minimum number of discrete concepts in order to use the language - which would also create a “there’s only one way to do it” effect where users can often correctly guess how to use a new language feature just by applying existing language features in the way that makes the most sense

I feel like a lot of languages over-rely on people “just knowing” what different behaviors are and do, and they also take for granted that users of those languages are willing to memorize arbitrarily many special cases that could have been simplified by reusing existing concepts. just compare Lua’s import system with any other scripting language’s import system for a great example. Lua’s import system only has two special-case rules (how it finds the file, and the fact that that file gets executed like a function) and otherwise works entirely using pre-existing language features. can any other language say the same? if so I want to know about it

meanwhile Python is a mess of “okay so… this directory is treated like a module, right? is that in the search path? wait this is from . import foo so it looks in the current directory… but what’s ‘the current directory’ in this case? wait no it’s not the current directory it’s the current module, isn’t it? but how does Python define a ‘module’ again?” I’ve used Python since I was 14 and I still couldn’t tell you the behavior of a lot of imports without running it just to make sure. and my experience is that every programming language besides Lua is like this. so I’m forced to experiment with each import system by trial-and-error instead of just understanding it right away in terms of stuff I already know

and I think that’s a microcosm of a bigger problem, which is that languages take for granted that their users are willing to learn arbitrarily many special cases, extra syntax rules, new keywords, etc. a lot of languages are really fucking big and every new feature is a self-contained “thing” that has to be learned in complete isolation from anything else in the language - without any familiar reference point to understand it from (looking at you, Rust)

but imagine, instead, if I had a clear progression of nodes to traverse, and traversing those nodes required me to learn as few discrete concepts as possible - but rather let me recycle my old knowledge to learn each new system. wouldn’t that be so much better - not just for learning, but for understanding and applying that knowledge?

anyway, I’ve been hopeful that there’s some Lisp language out there that could do this for me. since they can be built up from literally like 9 discrete concepts, and from there it’s possible to build an arbitrarily complex language, with special syntax and built-in DSLs and everyting - which I find incredibly beautiful

unfortunately the Lisps that I’ve found so far (other than Fennel) have felt… not good. and they definitely don’t follow this philosophy. so I’m still looking for my ideal language, or at least something a bit closer to it than Lua is, in case it’s out there somewhere (currently I’m hopeful about Scheme and warily curious about Haskell)

in the meantime, though, I’m happy to have Lua and Fennel because they get pretty damn close. especially Fennel

1
1
3
physical health negative
Show content

reason #578 to get an android body: I wake up in pain, too early in the morning, more often than not now :/

this time I somehow hurt my neck in my sleep and now it hurts every time I look to the left. fuck this shit I wanna be a cyber-succubus

0
0
5
repeated
:ms_robot_upside_down:, technically a subpost
Show content

query: do {rewrite it in rust} evangelists still exist? when was the last time the reader noticed a commenter telling someone to rewrite something in rust, without the commenter offering to shoulder the work?

this unit is disappointed that a useful programming language acquired such a negative reputation from a loud minority of its users. it would be quite disappointed if that reputation outlived the loud minority, and programmers continued to dislike the language based solely on [stereotypes, ghosts]

1
1
3

how do you pronounce FFXIV?

23% fuh-FUHKS-ive
14% eff-EFF-ksive
19% eff-eff-thirteen
42% Maple Story
3
3
6
Edited 2 months ago

esolang that starts as the minimum viable lisp

except anyone can create a new function or macro and it becomes a read-only builtin after that point, which anyone else can use

for example I could use (cond) to make an (if) macro and now everyone else has access to (if). except if I make a mistake with (if), that mistake is there forever. now someone has to call their working version of if (if-fixed) or (if-working) or something

2
1
7

I don’t think marketers appreciate how much damage they’re doing to my perception of their brand when they send me emails like

Well hey there, [deadname]! It’s so nice to meet you!

Hey again [deadname]! We’ve got a fucking coupon for you [deadname]!

[Deadname], have you considered buying [thing]? You should really consider it [deadname] it’s a great idea [deadname].

2
0
4
Show older