sorted by: new top controversial old
[-] hellishharlot@programming.dev 8 points 9 months ago

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

[-] hellishharlot@programming.dev 1 points 1 year 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

[-] hellishharlot@programming.dev 3 points 1 year ago

In truly flexible work cultures, teams chose their working style as a group. If that means y'all pick 2 days a week to voluntarily commute, go for it. Me on my team of 1 will absolutely not be going in to collaborate. Even 100% of unscheduled discussions happen asynchronously

[-] hellishharlot@programming.dev 17 points 1 year ago

2 days? No it should be that if the employee is able to wfh they should be able to.

[-] hellishharlot@programming.dev 1 points 1 year ago

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

[-] hellishharlot@programming.dev 1 points 1 year ago

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

[-] hellishharlot@programming.dev 2 points 1 year ago* (last edited 1 year ago)

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
}
[-] hellishharlot@programming.dev 2 points 1 year ago

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?

[-] hellishharlot@programming.dev 1 points 1 year ago

Big same. Long feels complex until you go back later

[-] hellishharlot@programming.dev 1 points 1 year ago

JavaScript, TypeScript, and C# babyyyy

[-] hellishharlot@programming.dev 4 points 1 year ago

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

[-] hellishharlot@programming.dev 7 points 1 year ago

Why though? Intellisense helps you write out the full name. And instead of response why not call it whatever the data you're expecting to be

view more: next ›

hellishharlot

joined 1 year ago