Jason Thor Hall / PirateSoftware / Maldavius Figtree / DarkSphere Creations / Maldavius / Thorwich / Witness X / @PotatoSec - Incompetent Furry Programmer, Blizzard Nepo Baby, Lies about almost every thing in his life, Industry Shill, Carried by his father, Hate boner against Ross Scott of Accursed Farms, False Flagger

Which will happen first?

  • Jason Hall finishes developing his game

    Votes: 17 0.7%
  • YandereDev finishes developing his game

    Votes: 211 9.1%
  • Grummz finishes developing his game

    Votes: 82 3.5%
  • Chris Roberts finishes developing his game

    Votes: 86 3.7%
  • Cold fusion

    Votes: 929 40.0%
  • The inevitable heat death of the universe

    Votes: 997 42.9%

  • Total voters
    2,322
Heartbound 2 :story:
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???
 
Looking in the discord, this might be what the announcement will be about. Guess we'll see
1737250256750.png
 
More maldy's voice breaking.
And no, it is not proximity effect, cause you can see him moving away from mic later in clip and voice stays deep.


This came across my TikTok FYP. Seems like his real voice slips through voice changer.
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.
 
I thought it's very obvious what he's ripping-off.
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.
 
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???
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.

1737250345914.png

Small bonus: Some of his audience got mad at him for playing harry potter
1737250423278.png
 
View attachment 6872638
Source / PreserveTube / Rumble
Someone put the AOC clips together. Putting it here because Mald will strike it for sure.
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.

Also goes to show he's ripe for the milking.
 
Last edited:
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.
His coding style is also unoriginal, Undertale for reference:
image.png
 
Jason this dog will deny the Holocaust. Don't let it happen, finish your game
More importantly the dog has a message for Jason.


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.
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.
 
If anything, a hashmap where you can just use strings as keys would be much better, but less efficient.
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.
 
  • Agree
Reactions: Umikot
Not sure if anyone has posted this but dug into one of those DEFCON badges, specifically the one he was awarded in 2017

The challenge was designed by Telephreak group members TProphet and Lion Templin
- Robert "TProphet" Walker (CISSP) - https://www.linkedin.com/in/robertwa/
"Last year's winners were the Psychoholics but that was obviously a fluke and this year we are pretty sure that solving the Challenge will be impossible." - www.reddit.com/r/Defcon/comments/8wqghf/what_are_some_fun_contests_and_team_events/
1737253872333.png

congrats on the fluke!
 
Lookup is O(1) in both cases. Adding or removing items in the array is O(n) and O(1) with the dictionary.
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:
just use a fucking struct
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.
 
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.
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.

His way is a nightmare any way you slice it though.

Edit:
Also Big O is a pretty good shorthand but the fact that people drop off every C value in that shorthand makes bootcamp grads and expert beginners write some really shitty algorithms.
 
Back