• 0 Posts
  • 21 Comments
Joined 1Y ago
cake
Cake day: Jul 29, 2023

help-circle
rss

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


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


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


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
}

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?




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


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



Using single character variable names is always bad practice


My company and literally every company I’ve worked for somehow has been deeply afraid of leaving .NET framework for .NET core or .NET 6, 7, or 8.

I just want to get away from needing Windows to run my programs locally


Firmly in camp conservative (yikes) Fav OS: Fedora Fav browser: Firefox Fav apps: Thunder and Element and technically feeder but only because I haven’t had the energy to write my own rss feed consumer nervously in dart/flutter

I’m in the process of putting together my own next cloud and moving to proton mail. After that I’ll be able to install bridges from a self hosted matrix to discord for people and teams for work. I use edge, outlook, and teams on my work computer but it occasionally connects to my home network so at some point I’ll probably put it on an isolated vlan.


Yeah I think that makes CSS a manager. It’s always prioritizing not important things



  • Jeffery wtf is this?
  • ok so why didn’t we remove this from the codebase!?
  • define the variable please I’m begging for just a smidge of readability!!! … Oh that’s actually remarkably clever


You could use proton cloud storage to do 90% of the same thing you just would have to have local editors installed



You could set up a docker with an exposed port for connections to the MySQL database server and run 20 databases inside it, that will come with its own risks fyi. You may have MySQL version mismatches to start with, you may have concurrent connections trying to use the same internal port, you may have a number of different situations where reads or writes take a much longer time due to other services wanting data.


This is it. Gpt is great for taking stack traces and put them into human words. It’s also good at explaining individual code snippets. It’s not good at coming up with code, content, or anything. It’s just good at saying things that sound like a human within an exceedingly small context