Satsuki
kiwifarms.net
- Joined
- Jan 15, 2025
Heartbound 2If it's yet another game he's going to publish I'm going to lose it![]()

Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Heartbound 2If it's yet another game he's going to publish I'm going to lose it![]()
You know, it'd be funny to do that whole "Undertale > Deltarune" thing for a joke here.Heartbound 2![]()
I thought it's very obvious what he's ripping-off.Is Earthbound.
I feel like a fucking fool for not making that connection sooner.
It seems that his voice changer have issues with his laugh. Or maybe laugh strains him so much that he cannot keep with his training.This came across my TikTok FYP. Seems like his real voice slips through voice changer.
It's obvious what he's ripping off, yeah. But that's what I feel like a fool for not realizing. The name of his game is literally just Earthbound but with the H in Earthbound shifted forwards 4 places to the start of the word.I thought it's very obvious what he's ripping-off.
That reminds me, he got pretty mad at retards mixing up his game with "Heartbeat". People were supposed to mix it up with earthbound, dammit.You know, it'd be funny to do that whole "Undertale > Deltarune" thing for a joke here.
But all Heartbound can be made into afaik
Is Earthbound.
I feel like a fucking fool for not making that connection sooner.
It was so obvious and in the open that I didn't realize.
What a fucking hack.
Who makes their quirky earthbound inspired indie game RPG a half anagram of the game in question???
This is quintessential guild master vernacular. The condescension just drips off of him as he obviously tries to shame and belittle his guildmates. Getting frustrated and expressing it is normal, but how he's actively trying to put people below him is quite the personality trait.View attachment 6872638
Source / PreserveTube / Rumble
Someone put the AOC clips together. Putting it here because Mald will strike it for sure.
His coding style is also unoriginal, Undertale for reference:It's obvious what he's ripping off, yeah. But that's what I feel like a fool for not realizing. The name of his game is literally just Earthbound but with the H in Earthbound shifted forwards 4 places to the start of the word.
It's so unoriginal my brain didn't allow me to even notice how unoriginal it was.
Wonder if he took our advice and hired someone else to work on HeartboundPlacing my bets on either he announces a release date for heartbound in a desperate attempt to make people think he's been working on his game
At this point... Seems Star Citizen is releasing before Heartbound
More importantly the dog has a message for Jason.Jason this dog will deny the Holocaust. Don't let it happen, finish your game
Heartbeat devs are outspoken anti-troon lesbians who refused to include a troon in their all-female cast, that's probably what made him mad.That reminds me, he got pretty mad at retards mixing up his game with "Heartbeat". People were supposed to mix it up with earthbound, dammit.
Lookup is O(1) in both cases. Adding or removing items in the array is O(n) and O(1) with the dictionary. It's not less efficient, in this use case it's the same efficiency but the dictionary is less messy and easier to work with.If anything, a hashmap where you can just use strings as keys would be much better, but less efficient.
Big O is gay. O(1) for hash map is expected case, and you have to consider time for hashing. Array will always be faster because it's just offset in memory.Lookup is O(1) in both cases. Adding or removing items in the array is O(n) and O(1) with the dictionary.
All flags are predetermined at compile time, so there is no reason for any dynamic data structure.just use a fucking struct
Personally I'd handle it with a dict and a private enum for the keys to avoid magic strings but using a struct works too. That's the thing about the jump this thread was talking about yesterday from "expert beginner dipshit" to senior engineer is that both are correct.Big O is gay. O(1) for hash map is expected case, and you have to consider time for hashing. Array will always be faster because it's just offset in memory.
However performance for story array does not mater in slightest.
Also using hashmap here is datastructure brain rot. (Which I also failed for ngl).
In reality you should:
All flags are predetermined at compile time, so there is no reason for any dynamic data structure.
Structs are as fast as arrays, but you are not bound by singular data type for flags.
Members can have meaningful names. And you don't risk fucking up with string key.