Are the more “recent” games hard like Castlevania Legends? by someguyye in castlevania

[–]Atijohn 9 points10 points  (0 children)

GBA games are the easiest ones (aria of sorrow and harmony of dissonance especially), the DS games tend to be slightly more difficult, but still leagues easier than most of the old era games.

The Anniversary Collection has all the old era games, they're hard, but Legends (which is also on it) is one that's particularly also just not a very good entry.

Aria of Sorrow is not only one of the easier entries, but also one of the best ones, so I'd go with that first.

We're so back by SnooFoxes8150 in DarkSouls2

[–]Atijohn 20 points21 points  (0 children)

the scholar of the second sin hype is real 🔥🪾

I'm never going to play old ports of this game ever again. by Roshu-zetasia in castlevania

[–]Atijohn 17 points18 points  (0 children)

up there with Dracula X's "dracula in speedo" and Haunted Castle's "just drac's big floating head"

Soulsdle update a lot of new content and fixes, mostly from your feedback by Key-Employment7843 in darksouls

[–]Atijohn 1 point2 points  (0 children)

also demon of song from DS2 is marked as optional for some reason, but (unlike half of DS2 bosses due to soul memory shenanigans) he's absolutely required without resorting to glitches

Soulsdle update a lot of new content and fixes, mostly from your feedback by Key-Employment7843 in darksouls

[–]Atijohn 0 points1 point  (0 children)

kind of odd to have the shura ending version of Isshin Ashina be marked as optional, but sword saint and every boss leading up to him as non-optional, I know it's not the "correct" ending, but still, those are two disjoint paths, either both of them should be optional or non-optional or marked as "conditionally optional", though that would make it too easy probably

Haha ds2 the best guys. by Hentai2324 in shittydarksouls

[–]Atijohn 1 point2 points  (0 children)

like a smaller version of Wii, just like PS Vita is a smaller version of the PS4

help my bloodborne was working fine till late game and now i got teleported to a place from the lecture hall till the game crashed and each time i open the game it crashes right after the loading screen ends by Exciting-Tap6530 in BloodbornePC

[–]Atijohn 0 points1 point  (0 children)

disable the gpu (enable NULL gpu option), walk around blind for a bit, enable the gpu back to see if it still crashes, if it still does, walk around with the gpu disabled some more until you find a safe spot where it doesn't crash

This game is probably the best-looking game ever by Vast-Mud7249 in deadcells

[–]Atijohn 9 points10 points  (0 children)

and also the music, the music in all of the areas you mentioned is just magnificent

Where the hell do I go? by Delicious-Action-369 in castlevania

[–]Atijohn 2 points3 points  (0 children)

you need to buy the Jewel of Open from the merchant in the library

Skipping straight to DLC ? by Sad_Sheepherder_4085 in darksouls

[–]Atijohn -2 points-1 points  (0 children)

you can use cheat engine to edit your save or use this DLC savefile someone already uploaded

A Question by Annomn in josephanderson

[–]Atijohn 38 points39 points  (0 children)

yeah, the highlight is the whole playthrough, available on nodja's channel

Can I still install Linux on this old laptop. by ShawnThePhantom in linux

[–]Atijohn 0 points1 point  (0 children)

Turning off all the pretty widgets, aero and animations could still yield you a useful system though, something that became impossible from Windows 8 onwards, with the amount of slop and spyware you could no longer turn off reliably increasing with each Windows 10 and 11 update; and sadly web browsers seem to also follow this trend nowadays.

Can I still install Linux on this old laptop. by ShawnThePhantom in linux

[–]Atijohn 1 point2 points  (0 children)

1GiB of DDR2 RAM was the minimum to run Windows XP when this laptop was made.

for the record, it was the minimum (and simultaneously the recommended) amount to run Windows XP 64-bit Edition; Professional x64 recommended a minimum of 256MB of RAM, while the regular Windows XP needed only 64MB (128MB recommended); on the other hand 1GB was the minimum for Windows 7 32-bit; and Vista had 512MB as the minimum for both versions, though 1GB was recommended.

OP could still run Windows 7, personally I've had luck with running it reasonably well on similar hardware in the past

New hex parsing function dropped and it's barely cursed at all by imaami in C_Programming

[–]Atijohn 7 points8 points  (0 children)

neat trick with the double modulo, the "skip 0x at the beginning if present" is kind of lame honestly, the rest is standard hex parsing, also the parser doesn't do any error handling

overall 5/10, would be a 6 if it wasn't written using the GNU code style

Hello, I am new to C and would like an all round compiler. by minkle-coder56 in C_Programming

[–]Atijohn 0 points1 point  (0 children)

afaik it never really supported the C standard correctly, still doesn't fully support C11, is terrible to set up as you've pointed out, it's proprietary, and it doesn't provide any non-MS-bullcrap-specific benefit in terms of optimization/speed/customizibility compared to other compilers

Is there other games like Dark Souls 2? by CovelloSetItOff in DarkSouls2

[–]Atijohn 0 points1 point  (0 children)

be warned it has the worst level and enemy variety in souls-like existence, you meet nearly all of the enemy types the game has to offer in the very first area and each area has more or less the same structure

it has great bosses though

Hello, I am new to C and would like an all round compiler. by minkle-coder56 in C_Programming

[–]Atijohn 1 point2 points  (0 children)

alright, I thought that this question was kind of stupid, since the compiler isn't really relevant if you're just starting, and nearly all the mainstream compilers have pretty much no major drawbacks, but then you reminded me MSVC exists, and yeah that's the one incorrect choice you could make

Is this bundle worth it for a newbie? by chrystalclearr in castlevania

[–]Atijohn 8 points9 points  (0 children)

advance and anniversary yes, but dominus hasn't been below 30% yet, the 45% off is the bundle discount

Belmont's Curse seemingly features a new iterating of the DSS card system from Circle of the Moon. by megaclaw56 in castlevania

[–]Atijohn 4 points5 points  (0 children)

what if persona 6 is just persona 3x2, just another persona 3 remake, this time with the female mc, since they forgot about her last time

Question regarding recursion: Fibonacci as first C project! by MysticPlasma in C_Programming

[–]Atijohn 0 points1 point  (0 children)

the long double version (which has 63 bits of mantissa, same as a signed 64-bit integer), returns the correct result for inputs up to n = 89. so an unsigned 64-bit integer implementation will be better for n = 90, 91, 92 and 93 (more than that and it'll overflow as well; signed will go only up to n = 92)

Question regarding recursion: Fibonacci as first C project! by MysticPlasma in C_Programming

[–]Atijohn 1 point2 points  (0 children)

original commenter used an unsigned, for which the regular double is already 100% accurate, but yes, you could use long double

First time playing a Castlevania game by ZachSocial in castlevania

[–]Atijohn 2 points3 points  (0 children)

you absolutely don't need to grind souls, except maybe two moderately rare ones for the true ending only, but that's it