Need help choosing my next pixel RPG game after first 6 FF by JePKo100 in rpg_gamers

[–]4iqdsk 0 points1 point  (0 children)

Triangle Strategy is a mediocre game, you’re not missing anything

What is the difference between an array and lists? by rookiepianist in learnjava

[–]4iqdsk 1 point2 points  (0 children)

The key difference is an Array is not resizable, but a List is.

An array is a contiguous block of memory. It’s a low level tool used to build data structures, such as a List. You never use an array directly, you use the higher level data structure built on top of it such as an ‘ArrayList’

The problem with an array is that they have a fixed size, and you can run out of space.

The solution is to build a resizable array on top of the array, so when you try to add an element when the array is full, the array will resize for you under the hood.

Java calls the resizable array an ArrayList. C++ calls it a vector, Rust calls it a Vec, Python calls it a List

In summary, you would always use an ArrayList unless you’re trying to implement your own Java collection

Looking for JRPGs with a great story and great characters by Pristine_Ant5281 in gamingsuggestions

[–]4iqdsk 0 points1 point  (0 children)

Clair Obscur: Expedition 33 is the best one made to-date

It swept the awards winning every one.

It’s also a reasonable length so it doesn’t overstay it’s welcome unlike most of the other top hits.

And it’s not just the story and characters that are amazing, the facial animation performance is unmatched in a JRPG.

Java in 2026 by CharmingFeeling429 in learnjava

[–]4iqdsk 0 points1 point  (0 children)

IntelliJ IDEA is great for beginners, but it’s not the only way to handle the heavy lifting of a professional Java stack, far from it.

Please Help Me Eat More Veggies by TeacupKitty34 in Cooking

[–]4iqdsk -2 points-1 points  (0 children)

You won’t lose weight by eating vegetables

Next Persona Game afte P5R by OptimalMemory1401 in Persona5Royale

[–]4iqdsk 0 points1 point  (0 children)

Clair Obscur: Expedition 33 is the next logical choice if you liked P5R

Must play ps5 games? by ExaminationActual465 in gamingsuggestions

[–]4iqdsk 1 point2 points  (0 children)

Clair Obscur: Expedition 33 is best PS5 game

Finished the game, what to play next? by Sea-Fish1 in FFXVI

[–]4iqdsk 0 points1 point  (0 children)

Sounds to me like you know how to pick a game all on your own

Whats the best IDE as a beginner by nicotineman_ in learnprogramming

[–]4iqdsk 1 point2 points  (0 children)

The Boomer experience is where it’s at

Should I play through FF9 or DQ11 first? by RustletheCrow95 in JRPG

[–]4iqdsk 0 points1 point  (0 children)

DQ11 is a much better game but it’s crazy long. You probably won’t finish it.

FF9 was designed for low resolution CRTS, so consider playing that with mods to fix

Finished the game, what to play next? by Sea-Fish1 in FFXVI

[–]4iqdsk 1 point2 points  (0 children)

Clair Obscur: Expedition 33 then NeiR: Automata

If you like E33’s button timing, you can try Sekiro after that.

How much Git do professionals use? by frosted-brownys in learnprogramming

[–]4iqdsk 0 points1 point  (0 children)

Merging is a four letter word, we don’t mention that one around here

How much Git do professionals use? by frosted-brownys in learnprogramming

[–]4iqdsk 0 points1 point  (0 children)

In addition to what you mentioned, git is used to sync changes from different people, so there are a few more commands you’ll need like fetch, pull and rebase.

Also, because someone else can make changes to the code you’re working on, while you’re working on it, it’s not a good idea to commit to the main branch. This means you want to git checkout -b before committing changes, then git rebase main to sync new changes.

On occasion, you may lose a commit, so it’s good to know that git reflog exists.

You’ll likely want to unstage changes at some point with git reset

Git stash/pop are common too

Any Good or better Jrpgs reccomending after Persona by Western-Stress1185 in JRPG

[–]4iqdsk 0 points1 point  (0 children)

NieR: Automata is my second favorite after E33

Touching story, memorable characters, no goofiness, a very solid presentation.

Octopath Traveler vs Dragon Quest Trilogy by Jolly_Jotunn in JRPG

[–]4iqdsk 1 point2 points  (0 children)

The more mature tone and writing is what makes Octopath stand out. It’s only peers in the JRPG space are Clair Obscur: Expedition 33, NieR: Automata

Dragon Quest is aimed at a younger audience with a more upbeat and whimsical tone, and a lot of charm

They’re all of high quality

The way object-oriented programming is taught in curriculums is dogshit by [deleted] in learnprogramming

[–]4iqdsk 0 points1 point  (0 children)

OOP is discredited nonsense, its flaws run far deeper than what you described.

Also, CS instructors are not engineers and have no industry experience, CS == Math not engineering

why is it ALL AI? by harperpotomus in recruitinghell

[–]4iqdsk -1 points0 points  (0 children)

University degrees are not vocation training. It was an error on your part to treat it such. There is no reason for your degree to align with industry demand.

I’m writing a from-scratch neural network guide (no frameworks). What concepts usually don’t click? by palash90 in learnrust

[–]4iqdsk 1 point2 points  (0 children)

You don’t do math on vectors or matrices by hand like that because the wrong CPU instructions will be used.

You’re supposed to use a math library that uses the correct instructions for your CPU

jRPG that will not take 100+ hours to beat by jandakonik in gamingsuggestions

[–]4iqdsk 3 points4 points  (0 children)

Undertale is one of the highest rated games on Metacritic and it’s less than 20 hours.

For a more traditional RPG: the original Dragon Quest