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

@zeichenreihe omgg I just looked up LEAN and it scares me lol. like it seems pretty cool - it seems like it’s able to solve equations at compile time and turn them into constant values? and maybe it can also mathematically prove that certain functions will always be correct, which sounds really cool if that’s a thing that it cna do

but this type of advanced math scares me lol - you can’t even google what something like ∀ means or what a lot of the jargon is

1
0
1
Edited 4 days ago

FFXIV should have an addon where people can thumbs-up or thumbs-down whether some dialog is worth reading or if you should just skip past it. and then everyone can see those ratings before they decide whether to read something or not. I genuinely think that would be incredibly helpful for the community to have

every MMO has to have an unreasonable amount of filler because that’s how they keep players occupied long enough to make the next expansion. FFXIV, being a story-first game, puts a lot of that filler in the form of dialog. so NPCs will prattle on for paragraphs and paragraphs about how you should deliver wine to some guy, then you walk over to the guy and he prattles on about how you gave him wine

but if there was a way to know what dialog is filler and what dialog is worth reading, that would alleviate a ton of the problems that FFXIV players face - especially new ones who have to deal with the incredibly slow start of the story

it might even convince me to not skip past every bit of MSQ dialog I encounter :P

1
3
5
Edited 5 days ago

Racket’s contract system is so cool!

it kind of works like type annotations in a language like Python, except instead of providing information for static analysis from an LSP, these are checked at runtime and they’re much more granular than just checking types

for example in Python I could write a simple Collatz function like this:

def collatz(max_: int) -> list[int]:
    ...

and that would tell my LSP that max_ is an integer and this function should return a list of integers. but in Racket I can do:

(define/contract (collatz max)
  (-> positive-integer? (listof positive-integer?))
  ;; ... code for the collatz function goes here
  )

and what this means is that max must be a positive integer, and collatz must always return a list of positive integers. if anything else happens, that will cause a contract error at runtime

so you’re not just defining what types your functions take - you’re also defining what specific kinds of values you’re expecting! and you can even define your own contracts from scratch, almost like writing your own assert statements (except it’s also kind of like defining a new type of data)

the one downside to this is that the Racket LSP can’t statically check contracts - they have to be checked at runtime. but still, it’s so cool

1
0
6
capitalism
Show content

a lot of advice for artists makes a lot more sense if you mentally add “if they want to survive under capitalism” at the end

like: “a writer should read as many novels as possible (if they want to survive under capitalism)”

now it’s not about the relationship that an artist “should” have with their art - it’s about the sacrifices that they need to make as people if they want to turn making art into their capitalism survival skill

there is no wrong way to make art, but the ice cold truth is that there are many wrong ways to survive under capitalism

0
15
25

@mark_pc ooh I hope that you end up liking Rogue Incursion! it’s definitely not for everyone but it sounds like you might appreciate a lot of the same things that I did - and I also just enjoyed the atmosphere a lot too

for Alien: Isolation, I definitely remember a few times where I stopped and asked myself what a room was used for before everything went to shit and I couldn’t really figure it out

and I also remember that there’s this one specific machine that kept being reused as an objective. in one mission it was a power generator for an elevator but in another mission it was something completely different, and I think it was reused about 3-4 times as different things each time. but I could have also just been confused lol because I had a hard time understanding what Ripley’s moment-to-moment goals were in that game

1
0
1

@emmy that’s an interesting thought! I wonder if that’s at least part of what’s going on

0
0
1
repeated

@h3mmy @kasdeya automatic semicolon insertion has gotta be my favorite part of js - somehow brendan eich managed to make both semicolon likers and haters mad. unprecedented lows in language design

2
2
1

@nycki that honestly does kinda fit what my experience is. except for the compiled languages which want to be like Java. but Java wants to be like C in a grey business suit

0
0
2

there is a weirdly strong correlation and I’m not sure why that is

3
0
6

how to tell if a language is compiled:

are there semicolons at the end of every line?

no: it’s interpreted

yes: it’s compiled

3
0
11

@Owlor yeah I’ve joined tech.lgbt and now cryptid.cafe and both of them have been amazing! so I’ve never run into this problem on Fedi thankfully

I wonder if that’s because a Fedi server is more like a community where you interact with the folks you’re helping every day - but a Matrix homeserver is more like a public service where you just see an abstract number of how much the server is getting used

1
0
4

this post inspired by me taking this advice and ending up with a homeserver that shut down within 2 weeks of me joining

1
1
5
Edited 7 days ago

oh? I noticed that your matrix account uses the matrix.org homeserver. did you know that if you use a homeserver besides matrix.org you’ll be helping the network grow more robust and decentralized?

for example there’s transkitty.nyaan.si which I- oh that one’s gone

well I’ve seen a lot of folks using miau.dev which is run by- oop the server has been offline since a month ago

well there’s always homeserver.project.foxgirls.online which- ah, they’ve announced that the project will be shut down due to creative differences

anyway make sure not to use matrix.org or the network will be less robust!

6
9
21

@codingcoyote hm I’m having trouble imagining what those higher order functions would be or how they work, but I think I roughly understand overall! it kinda reminds me of Python’s duck typing, where as long as the expected fields are there then everything is okay. almost like following an implicit interface

0
0
0

also this has me worried that I’m going to have no idea how to do abstractions in Racket lol. I think you use structs for that? maybe it’ll make sense when I start experimenting

1
0
1
Edited 7 days ago

I just had a realization about a point of confusion I’ve had with functional programming languages for a long time: sometimes, in functional programming, an entire value can represent an abstraction and you aren’t meant to know anything about its internals at all

in the languages that I’m used to:

  • if you have a function, that signals that it’s an abstraction and you’re only meant to understand its inputs, its outputs, and its side effects
  • if you have a class or object, that signals that it’s an abstraction and you’re only meant to understand its methods (as if they were functions), its publicly-accessible data, and roughly what data it’s representing internally
  • if you have any other type of data, you’re meant to understand every detail of it, because it’s not an abstraction

but since functional programming doesn’t use classes, the abstractions go more like this:

  • if you have a function, it’s the same as above (know side effects, inputs, outputs, everything else is abstracted)
  • if you have certain data types (I’m not sure how you know which ones but there is probably a well-defined indicator) that signals an abstraction and you’re only meant to know what type it is (so you know which functions can operate on it) and roughly what its internal data represents
  • otherwise, you should know everything about the data because it’s not abstracted

so that explains a lot lol. I was talking to a functional programmer about why they were sadistically (from my perspective) asking the caller to do a bunch of very complex function composition in order to use their public API, but from their perspective the function composition was an implementation detail and what was actually happening is that functions were being used to manipulate abstractions in a way that was probably very intuitive to them. and this distinction was completely lost on me at the time so I just got confused and frustrated

stuff like this has me thinking that the cultural differences between functional programmers and {mixed paradigm or OOP} programmers might be so extreme that you’d need a translation layer between functional code and OOP code in order for programmers on each side to use each others’ APIs. because even very fundamental things like “how do I recognize a black box when I see one?” are very different between them, and in a way that’s so implicit that they aren’t even aware that it’s a cultural difference

2
0
4
re: video game violence, FFXIV thoughts and complaining
Show content

also the main story quests in FFXIV give a really bad impression of ARR, I’ve discovered. since they mostly just consist of running all over the world and reading novels of filler dialog and not actually doing anything

but if you go around the different zones* and just take sidequests it’s much more like WoW where some guy will be like “for contrived reasons, kill 6 of this nearby enemy” and you can just run off and do that and come back and get a reward. so if you focus on sidequests you get to actually Do Things and there’s much less running all over the world because everything is nearby

so I’m having a lot more fun with that tbh, and I’m also starting to get the hang of FFXIV’s weird combo system as well (a little bit, anyway)

* make sure you’re in an appropriately-leveled zone using this chart which is for FATEs but this is the only way I’ve found to figure out what level each zone is meant for :/

0
0
0
Edited 8 days ago
video game violence, FFXIV thoughts and complaining
Show content

okay the rogue questline in FFXIV is actually kinda good

like it’s extremely contrived, and you’re more like mercenaries than rogues (you actually help the cops, too :/), and the tone is pretty cartoony/goofy which comes off as flippant because the questline deals with some very heavy topics. also everyone talks in a weird, hard-to-follow mix between pirate-speak and thieves’ cant. and I have a lot of complaints about the rogue abilities and the overall design of the class. and overall everything feels rushed and sloppy as you’d expect from ARR

and yet it’s actually just fun to sneak around, gather information, steal stuff, spy on people, and stab guys idk

1
0
3
repeated

RE: https://infosec.exchange/@rebane2001/116123227412288110

This might genuinely be the most mind blowing thing I’ve ever seen.

0
2
1
Show older