hellishharlot

joined 2 years ago
[–] [email protected] 7 points 1 year ago (1 children)

I think pcsx 2 let's you put a PS2 CD in and run it through the emulator

[–] [email protected] 4 points 2 years ago

And when it's 100+f in the summer? AC has to run enough to keep them cool

[–] [email protected] 4 points 2 years ago (2 children)

Not if you have pets at home

[–] [email protected] 1 points 2 years ago

You build workspaces with vscode but the real magic is you never have to switch to visual studio or spend time configuring plugins for a new workspace each time you start a new project

[–] [email protected] 1 points 2 years ago

Clean fuel for the furnace

[–] [email protected] 13 points 2 years ago (1 children)

Gotta pay min wage for that

[–] [email protected] 1 points 2 years ago

So you could generate lists of 1, 2, and 3 character code items rather than looking at index +1 or something.

[–] [email protected] 1 points 2 years ago (1 children)

What's incoherent about the first one? Why is index bad beyond standards

[–] [email protected] 2 points 2 years ago* (last edited 2 years ago) (3 children)

In what world is

for (int index = 0; index < objectToIterate; index++)
{
    // DO YO THANG
}

less coherent than

for (int i; i < objectToIterate; i++)
{
    // DO YO THANG
}
[–] [email protected] 2 points 2 years ago (2 children)

Not that I'm aware of but that's a condition where you're thinking with an index. What's the difference you're looking for?

[–] [email protected] 1 points 2 years ago

JavaScript, TypeScript, and C# babyyyy

[–] [email protected] 5 points 2 years ago (11 children)

Index can be useful but start looking for mapping and sorting functions. Or foreach. If you really must index, sure go use index or I if it's conventionally understood. But reading something like for I in e where p == r.status is really taxing to make sense of

view more: next ›