What you don’t know is that he died when he was pulled into a jet engine.
What you don’t know is that he died when he was pulled into a jet engine.
I know some folks are joking about and dunking on this, but in modern times, I have justification. Call me lazy, but I have found myself writing out these comments and then letting the AI take over to at least give me a sketch of an implementation. Works reasonably well and saves me a lot of time and effort. Mostly I don’t bother to remove them, though I usually edit them a bit.
On the other hand, there are factions within my colleagues who steadfastly insist that commenting is unnecessary and to some degree even potentially harmful, and that if you feel the need to comment your code, it means your code should be improved so that it’s obvious what it is doing without the need for comments.
How many j’s has this photo been pegged? My dear sweet pixelated Jesus.
Why you peeing in that thing, bro? The two big arches ought to be enough for any halfway intelligent person to realize that you’re supposed to stick your buttocks there not your beanie-weenie. Dries out your logs so that they don’t make as big a mess when you pick them up to toss them into the sink.
My credit card offers virtual credit card numbers AND the ability to auto-lock the virtual numbers so you can set a date and after that the number will not accept new charges.
I make sure to use a virtual card number for everything subscription based, then I immediately set the auto-lock feature to expire in a few days (give the initial charge time to clear but still plenty of time before the subscription would otherwise renew).
Some subscription services make it super tough to cancel. This method fixes that issue for the most part. Some subscription services terminate immediately once you cancel the subscription, even if you still have “time left” otherwise. This way you don’t really have to formally unsubscribe. It’s easy peasy pumpkin breezy as the common folk like to say.
When someone asks a thing like this on Lemmy, look up the same thread on Reddit (guaranteed to find it was recently also posted there) and copy-pasta some of the top posts. Guaranteed worthless internet up arrows.
I hope your system is doing butter thesis dames. sister is doing better these days.
Don’t swing on that one, Matt threw up on it.
I mean, cloudberries are overrated. Dingoberries are where it’s at these days.
I reserve the right as I am from a different but somehow similar shithole, and recognize it is detriment to society.
I will mock it at every opportunity until it cleans up it is act.
I too will be pampering myself with TUCKS Medicated Cooling Pads® tonight.
Look, I’m down to joke around about eating suburban pets, but I draw the line at discussions about Idaho. I do have standards.
Could really use some Labrador recipes right about now. Anybody got any good ones?
I found it interesting that Trump claims if he wins the election, he’ll have the Russia / Ukraine conflict resolved BEFORE he even takes office. I’m paraphrasing there, but that’s how I interpreted what he stated.
If that’s the case, then it seems like he could choose to end the conflict at any time. Why doesn’t he just end it now? Save countless lives. Minimize injuries. Prevent suffering. Save money. I’m sure that’d change some voters’ minds if he did it. Might even win him the election.
Yes, this is a rhetorical question. I have no doubt that he can’t actually end it without basically giving in entirely to Russia.
As long as we’re eating pets, I’d like to have a Macaw. Anybody wanna split the bill?
Not only did I accidentally break up your marriage 12 years ago, I’m also incredibly abrasive, smell like I’ve not showered in several days, and when I visit your house I always remove the toilet paper roll and make sure to put it the opposite direction when I put it back into the holder. And I hissed at your cat.
I recently joined WTF and based on the list of the instances this place is federated with, my assumption is that’s the basis for the WTF name. So, maybe something like this could be useful for choosing an instance that’s not 1/2 filled with bat shit insane posts by default rather than requiring significant and immediate curation (i.e. blocking stupid shit like hexbear and ml).
Encryption.
I use VS Code and GitHub Co-pilot and develop in a variety of different languages and frameworks. I’ve got lots of experience with some, but I’m less knowledgeable on others.
So, having the AI assist with languages I am very familiar with is basically a way to save time and preserve my mental energy. For languages and frameworks I’m less experienced with, it speeds things up because I’m not having to constantly search how-tos and forums for guidance. And for languages/frameworks I have limited or no experience with, it can be a helpful learning tool that speeds up how long it takes to get ramped up.
With this set-up, if I start writing a line of code and then pause for a moment, co-pilot kicks in and tries to autocomplete that line, sometimes even suggests the entire block of code. It’s really good at recognizing simple patterns and common boilerplate stuff. It’s less good at figuring out more complex stuff, though.
However, I find that if I start out by writing a comment that explains what I’m trying to accomplish, and to some degree how to accomplish it before I start writing one of those more complex blocks/lines, the AI has a much higher success rate in returning helpful, functioning code. So, basically yes, I write the comment to describe code I haven’t written, and I’ll let the AI take over from there.
This works for code, raw database queries, configuration files, and even for writing tests. I’m not an expert at building out Docker configurations for local development or configuring auto-deployment on whatever random system is being used for a project, but I can often get those things up and running just by describing in comments what I need and what I’m trying to accomplish.
The VS Code co-pilot extension also has some context menu items that let you ask questions and/or ask for suggestions, which comes in handy for some things, but for me, typing out my intentions in comments and then letting the auto-complete kick in as I’m starting a line of code is faster, more efficient, and seems to work better.
Granted, co-pilot also likes to try to auto-complete comments, so that’s sometimes funny just to read what it “thinks” I’m trying to do. And most of the time, I do remove my comments that were specifically to guide co-pilot on what I wanted it to do if they’re super redundant. And, at the end of the day, not everything co-pilot suggests is production-worthy, functional, nor does what I actually described. In fact, a lot of it is not, so you should expect to go back and fine tune things at a minimum. It’s just that overall, it’s good enough that even with all the supervision and revisions I have to make, it’s still a net positive, for now.