Posts
3013
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

I’m starting to think that maybe monads are only a useful concept in languages without union types, or languages without type-checking - and the reason why I can’t understand their value is because I don’t use the type of language that would benefit from them

I’ve heard a few different arguments for why monads are helpful but they all either don’t make sense to me (their explanation for why monads are better expects me to make an inference that I can’t) or they only make sense in a language with limitations that most popular scripting languages don’t have (for example, a language where any primitive can be null and you have to manually check all the time)

3
0
4

@dragonarchitect @elastosaur NixOS is so much worse than you would think. you don’t just have to learn Yet Another Programming Language - it basically turns any basic computer task into an engineering puzzle… which you have to solve in a really counter-intuitive functional programming language. which is great for folks who love tinkering with computers and want lots of excuses to do that, but terrible for folks who don’t care about tinkering and only want to use their computer to get work done or play games or etc.

like the amount of stuff you have to figure out in order to literally just play modded Minecraft is kind of terrifying to me lol

1
0
1

@dragonarchitect @elastosaur to be honest I would caution against using an immutable distro just because the impression I get is they’re for the types of folks who love to tinker and obsess over Linuxy stuff. like once you have a setup that works I assume it will keep working forever (unless you need to update to get security updates or something), but it takes a lot of tinkering and learning to reach that point which personally I wouldn’t want to do - I want my computer to Just Work

1
0
0

@dragonarchitect I’m convinced that having dependencies shared between multiple pieces of software like this (instead of every piece of software having its own dependencies built in) is a mistake in almost all cases. this is my biggest pain point with package managers of all kinds because this always fucking happens

0
0
1

@Willow Kasdeya was an angel who was cast out of heaven for teaching the human race about medicine, poison, abortion, psychology, and hypnosis. she’s almost like the Abrahamic equivalent of Prometheus. I could probably write a 12-paragraph essay about what all that means to me lol

0
0
8
repeated

Willow, Venus Pirate 🏳️‍⚧️

My lovelies, I want to hear the wonderful stories of how your name came to you. True or fanciful, poetic or prosaic, how did you meet your name?

3
2
1
repeated

This is a
Conduit
Through
Which I
Can hold
You for
Just a
Moment.
Hello, you
Are loved.

1
3
1

@OneSadCookie I really like using type annotations when I write code in a dynamically typed language, and then using a typechecker/LSP to make sure that I’m not making any type errors. and I honestly feel a little naked without that kind of type-checking at this point

but, maybe 1% of the time I’ll be writing a function/method and have no idea how to express it in terms of a type annotation. and I’ll have to do something almost like algebra in my head trying to figure out what the annotation would be. it’s not that I don’t understand what types the code will use but just that I don’t know how to express it if that makes sense. that happens a lot when I need to use type parameters

also, sometimes I’ll be writing a very simple function and just immediately know that giving it a type annotation is going to be impossible or very close to impossible lol. for example I wrote a partial() function in TypeScript and gave up pretty quickly on giving it a type annotation

so I really like having the escape hatch of just not including a type parameter, or using Any in places that I don’t know how to express

I wonder if Rust could handle a partial() function at all, and if so how you would explain that to the type system. Rust seems able to handle just about anything that you throw at it but I feel like you might need to use some deep magic for that to work. I bet Haskell’s version would be very simple though

2
0
2

@kit hehehehe! I’m ngl I’ve been pretty tempted to try the Monster Hunter games because of that alone. although I’m pretty uncomfortable with the premise of killing animals and then wearing their skin and eating them and stuff, so I probably won’t actually try it 😅 but the gameplay looks fun and unique though and I’ve heard that there are weapons that let you move and attack at the same time, almost dancing around in the fight, which sounds pretty cool

1
0
1

@hearts omgg that is exactly how I feel in a statically typed language lol. I get so disoriented and lost so quickly - it almost feels like I have to learn how to write code all over again, from scratch

1
0
1
Edited 23 days ago

I hate feeling limited by a programming language. I want the language to adapt to how I conceptualize the problem, instead of being forced to adapt to how the language can conceptualize the problem. and statically typed languages feel really limiting to me. like you can only do the things that you can explain to the type system, and I feel like the type system is either:

  • kinda dumb and very limited on purpose (C#, C)
  • so complex that you basically have to learn a whole new branch of advanced math to understand how to use it properly (Rust, Haskell)

although on the other hand, I wonder if folks who are used to statically typed languages find dynamically typed languages to be scary because they let you get away with so much bullshit lol

6
0
6

I’ve heard that the Monster Hunter games are like this, where you avoid attacks through positioning instead of iframes

3
2
6

@liese yes omgg I find that decision so baffling, even as someone who is Very Passionate about the overuse (IMO) of iframe-based dodging in Soulslikes. like it would have been so, so much better to just have a fixed number* of iframes like in Dark Souls 1

* it’s more nuanced than that but it’s basically a fixed number

0
0
1

@woof hmm I feel like I might watch some folks play Nioh 2 and get a feel for what it’s like because it sounds interesting. and if I like what I see I might give it a try! since it sounds like Nioh 2 is the one that you like the most

1
0
2

@woof oohh I know almost nothing about Nioh. I might give it a look just based on this alone lol

1
0
1

@OctaviaConAmore @vivi omg are you talking about Phantasy Star Online 2? I don’t know much about it but one of my partners loved the first game and seems to think pretty highly of the second game too

0
0
0

@OctaviaConAmore I’m imagining something like:

  • you can move out of the way of attacks
  • or, you can block certain attacks (but there’s a stamina system as usual)
  • or, you can parry certain attacks

and specifically:

  • light attacks can be parried, blocked, or avoided
  • medium attacks can be blocked or avoided
  • heavy attacks can only be avoided (unless you’ve specced a lot into blocking, which sounds like stupid fun lol)

enemies would need to telegraph their heavy attacks a lot - especially in the early parts of the game. and it would need to be clear which areas are going to be hit so you know where to avoid. also there would need to be no tracking heavy attacks of course, and I feel like minimizing tracking attacks would be a good idea in general to reward players for good positioning

0
0
1

they should make a Soulslike where dodge-rolls have no iframes whatsoever just to piss everyone off

5
3
14
re: Monster fucking bingo 🔞
Show content

@FoxFux oops I just realized I didn’t provide alt text so here it is:

monster fucker bingo

it’s a bingo board that I’ve filled in, with these options (X means I’m into it, _ means I’m not)

first line
X horns
_ vore
X merfolk
X too many eyes
X demons

next line
X slime
X heat
X tails
X claws
X fangs

middle line
X werewolves
X dragons
free space
X tentacles
X ghosts

next line
X aliens
X eldritch horrors
X wings
X bio-luminescent
X knots

last line
X murderous
X shapeshifter
X angels
_ eggs
X extra limbs

0
0
3
re: Monster fucking bingo 🔞
Show content

@OctaviaConAmore @FoxFux oh no! I’m sorry about that. I was quoting the original post but I guess some Fedi software can’t see that. I’m glad Bri was able to help

0
0
3
Show older