There have been multiple accounts created with the sole purpose of posting advertisement posts or replies containing unsolicited advertising.

Accounts which solely post advertisements, or persistently post them may be terminated.

programmer_humor

This magazine is from a federated server and may be incomplete. Browse more on the original instance.

Korne127 , in "Working with Gen AI" by Dandytoon
@Korne127@lemmy.world avatar

In my experience, you can’t expect it to deliver great working code, but it can always point you in the right direction.
There were some situations in which I just had no idea on how to do something, and it pointed me to the right library. The code itself was flawed, but with this information, I could use the library documentation and get it to work.

xia ,

It can point you in a direction, for sure, but sometimes you find out much later that it’s a dead-end.

EatATaco ,

Which is, of course, true for every source of information that can point you in a direction.

uhN0id ,

ChatGPT has been spot on for my DDLs. I was working on a personal project and was feeling really lazy about setting up a postgres schema. I said I wanted a postgres DDL and just described the application in detail and it responded with pretty much what I would have done (maybe better) with perfect relationships between tables and solid naming conventions with very little work for me to do on it. I love it for more boilerplate stuff or sorta like you said just getting me going. Super complicated code usually doesn’t work perfectly but I always use it for my DDLs now and similar now.

The real problem is when people don’t realize something is wrong and then get frustrated by the bugs. Though I guess that’s a great learning opportunity on its own.

danc4498 ,

At the same with using LLM’s for writing. It won’t deliver a finished product, but it will give you ideas that can be used in the final product.

snugglebutt , in Coomitter be like
@snugglebutt@lemmy.blahaj.zone avatar
SturgiesYrFase ,
@SturgiesYrFase@lemmy.ml avatar

F

verstra ,

F

CodeMonkey ,

Senior developer tip: squash the evidence.

SatouKazuma ,

Senior developer tip: Squash the evidence management

sorter_plainview ,

git commit --amend --no-edit

This helped me countless times…

grrgyle ,

Principle developer tip: rewrite history to make yourself seem smarter.

Soft reset the whole branch and commit a series of atomic and semantic patches (eg separating code, test, and refactor changes) that tell a clean narrative of the changeset to reviewers, future blamers.

xilliah ,

Do you put effort into your commit messages before the rewrite, or just write something quick for yourself and then put in the effort later?

grrgyle ,

Depends, but usually I will put in the effort up front and maybe tweak them in an in[eractive rebase, or just manually copy+paste.

If they’re worth saving. Sometimes you have to kill your darlings though

JackbyDev ,

And then my team squashes those commits 😩

grrgyle ,

Yeah it sucks. If the commits are really helpful, you can just paste the git log into the PR/MR/CR body after it’s been merged

xilliah ,

🫂

RonSijm ,
@RonSijm@programming.dev avatar

<span style="color:#323232;">git reset head~9
</span><span style="color:#323232;">git add -A
</span><span style="color:#323232;">git commit -am 'Rebased lol'
</span><span style="color:#323232;">git push -f
</span>
Carighan , in Explaining software development methods by flying to Mars
@Carighan@lemmy.world avatar

This is depressingly accurate. 😓

onlinepersona , in Coomitter be like

Sometimes I’m in awe at the effort people put into these memes. Well done 😄

P.S Now make one about people who squash 100 commits into one without cleaning up the message and have a single commit with 1k added / 2k removed in it for the sake of “clean” history.

Anti Commercial-AI license

JackbyDev ,

Yesssss, so true. Anytime people say they want history to be “clean” I insist they explain what they mean because more often than not they’re going to suggest something that makes the history way less useful.

magic_lobster_party , in Explaining software development methods by flying to Mars

I think this is a bit disingenuous. There’s no customer interaction in these panels.

So waterfall would be:

Customer says they want to go to Mars.

You spend years building a rocket capable of going to Mars, draining all the company budget in the process.

Customer then clarifies they actually meant they wanted to go to Mars, Pennsylvania, USA - not the planet!

Carighan ,
@Carighan@lemmy.world avatar

Also the strip stops midway through as Waterfall was an invented thing just for a paper. And during your UP work you actually had the customer put in that input and hence it was like in this cartoon strip.

onlinepersona , in "Working with Gen AI" by Dandytoon

Code is the most in depth spec one can provide. Maybe someday we’ll be able to iterate just by verbally communicating and saying “no like this”, but it doesn’t seem like we’re quite there yet. But also, will that be productive?

Anti Commercial-AI license

anton , in Explaining software development methods by flying to Mars

What is the methodology called where you:

Plan to go to orbit, blow up seconds into the flight, and declare it a success.

Plan to refuel in orbit, make it minutes before the rocket brakes. Fire the FTS, it fails, the rocket blows up a minute later und declare it a successful test of the FTS.

Argue to NASA that you are not the limiting factor to the moon mission planed for the end of the year, despite delivering none of the milestones.

FTS = flight termination system

Hominine ,
@Hominine@lemmy.world avatar

An improvement.

palordrolap ,

Sounds a bit like the S&M methodology. SpaceX & Musk

gravitas_deficiency ,

Tbh it actually sounds a lot more like Boeing these days. F9/F9H is bulletproof reliable these days, and starship is making HUGE developmental strides, while Boeing is still failing to discover and iron out system integration bugs and hardware faults years after they had “completed the project”.

mrbn ,
@mrbn@lemmy.ca avatar

It’s a feature, not a bug

awesome_lowlander ,

Getting to space. Fuck Musk, but SpaceX is doing great work.

zarlin ,
@zarlin@lemmy.world avatar

That’s called R&D, Research and Development. As long as you learn from a failure, it is progress towards success.

SatouKazuma ,

This is the Kerbal methodology.

psud ,

I take it you missed the recent fourth integrated flight test, in which the ship soft landed on the ocean near Australia as planned and the booster soft landed on the ocean near the launch site as planned

Their failure in that flight was expected. They hoped thermal tiles sealing the hinge for the aerodynamic surfaces would seal those against plasma during reentry. They didn’t. Had they, it would have been much cheaper than sealing those more thoroughly. The ship landed regardless of that failure

Disliking Musk is fair, but SpaceX is doing good stuff

ghterve ,

I call that following the same successful recipe that got us the Falcon 9.

The mindset that considers those tests failures is the same one that would still be in bureaucracy hell determining what 40 year old technology we should repurpose to get a future over budget, late, and under performing solution designed and built.

Auzy , in "Working with Gen AI" by Dandytoon

My workmate literally used copilot to fix a mistake in our websocket implementation today.

It made one line of change… turned it it made the problem worse

MagicShel ,

AI coding in a nutshell. It makes the easy stuff easier and the hard stuff harder by leading you down thirty incorrect paths before you toss it and figure it out yourself.

Deceptichum , in "Working with Gen AI" by Dandytoon
@Deceptichum@sh.itjust.works avatar

So what it’s really like is only having to do half the work?

Sounds good, reduced workload without some unrealistic expectation of computers doing everything for you.

nickwitha_k ,

So what it’s really like is only having to do half the work?

If it’s automating the interesting problem solving side of things and leaving just debugging code that one isn’t familiar with, I really don’t see value to humanity in such use cases. That’s really just making debugging more time consuming and removing the majority of fulfilling work in development (in ways that are likely harder to maintain and may be subject to future legal action for license violations). Better to let it do things that it actually does well and keep engaged programmers.

jaybone ,

People who rely on this shit don’t know how to debug anything. They just copy some code, without fully understanding the library or the APIs or the semantics, and then they expect someone else to debug it for them.

AFKBRBChocolate ,

We do a lot of real-time control software, and just yesterday we were taking about how the newer folks are really good at using available tools and libraries, but they have less understanding of what’s happening underneath and they have problems when those tools don’t/can’t do what we need.

jaybone ,

I see the same thing with our newer folks. (And some older folks too.) and management seems to encourage it. Scary scary stuff. Because when something goes wrong there’s only a couple of people who can really figure it out. If I get hit by a bus or laid off, that’s going to be a big problem for them.

AFKBRBChocolate ,

Yep, you get it. And it’s really hard to get people to understand the value in learning to do that stuff without the tools.

takeda ,

From my experience all the time (probably even more) it saves me is wasted on spotting bugs and the bugs are in very subtle places.

crossmr , in "Working with Gen AI" by Dandytoon

Gen AI is best used with languages that you don't use that much. I might need a python script once a year or once every 6 months. Yeah I learned it ages ago, but don't have much need to keep up on it. Still remember all the concepts so I can take the time to describe to the AI what I need step by step and verify each iteration. This way if it does make a mistake at some point that it can't get itself out of, you've at least got a script complete to that point.

RestrictedAccount ,

Exactly. I can’t remember syntax for all the languages that I have used over the last 40 years, but AI can get me started with a pretty good start and it takes hours off of the review of code books.

Auzy ,

I actually disagree. I feel it’s best to use for languages you’re good with, because it tends to introduce very subtle bugs which can be very difficult to debug, and code which looks accurate about isn’t. If you’re not totally familiar with the language, it can be even harder

crossmr ,

I test all scripts as I generate them. I also generate them function by function and test. If I'm not getting the expected output it's easy to catch that. I'm not doing super complicated stuff, but for the few I've had to do, it's worked very well. Just because I don't remember perfect syntax because I use it a couple of times a year doesn't mean I won't catch bugs.

seaQueue , in Coomitter be like
@seaQueue@lemmy.world avatar

It’s a picture of the people who submit zero value comment spelling fixes to the Linux kernel so they can claim “I’ve submitted X patches to the Linux kernel” for KPIs or resume building

tourist ,
@tourist@lemmy.world avatar

“Hey Bob, you’ve worked on the Linux kernel before, can you handle this CPU scheduler problem we’re having? Shouldn’t take you too long. We need it done before lunch”

mexicancartel ,

“Nah I was in the network driver section”

DudeDudenson ,

“oh nice we’re also having issues with random packets being dropped, can you look into that? It’s business critical”

Anticorp ,

Listen bub, I don’t have time for this Mickey mouse bullshit!

gravitas_deficiency ,

Hey man, I once had an engineering exec (who didn’t last very long) who decided engineers would be stack ranked by SLOC. You can imagine how easy that metric was to cheese, and you can also imagine exactly how that policy turned out.

Give an engineer a stupid metric to meet, and they’ll find a stupid way to meet it for you, if only out of malicious compliance.

seaQueue ,
@seaQueue@lemmy.world avatar

I’d have a field day with that. Max line length 70 or 75, excessively verbose function and variable names, triple the normal amount of comments, extra whitespace wherever possible, tab width 8, etc. The possibilities are endless for that metric.

Anticorp ,

Dude… Just write a python script that makes small changes to white space every few seconds and commits them.

CanadaPlus ,

Campbell’s law goes brrrrr.

towerful ,

When metrics become targets they fail to be metrics any more

AstridWipenaugh ,

Oh, you contributed to the kernel? Name every commit SHA.

bjoern_tantau , in "Working with Gen AI" by Dandytoon
@bjoern_tantau@swg-empire.de avatar

Yeah, in the time I describe the problem to the AI I could program it myself.

Norgur ,
@Norgur@fedia.io avatar

This goes for most LLM things. The time it takes to get the word calculator to write a letter would have been easily used to just write the damn letter.

emptyother ,
@emptyother@programming.dev avatar

Its doing pretty well when its doing a few words at a time under supervision. Also it does it better than newbies.

Now if only those people below newbies, those who don’t even bother to learn, didn’t hope to use it to underpay average professionals… And if it wasn’t trained on copyrighted data. And didn’t take up already limited resources like power and water.

takeda ,

This is what it is called a programming language, it only exists to be able to tell the machine what to do in an unambiguous (in contrast to natural language) way.

abcd ,

This reminds me of a colleague who was always ranting that our code was not documented well enough. He did not understand that documenting code in easily understandable sentences for everybody would fill whole books and that a normal person would not be able to keep the code path in his mental stack while reading page after page. Then he wanted at least the shortest possible summary of the code, which of course is the code itself.

The guy basically did not want to read the code to understand the logic behind. When I took an hour and literally read the code for him and explained what I was reading including the well placed comments here and there everything was clear.

AI is like this in my opinion. Some guys waste hours to generate code they can’t debug for days because they don’t understand what they read, while it would take maybe two hours to think and a day to implement and test to get the job done.

I don’t like this trend. It’s like the people that can’t read docs or texts anymore. They need some random person making a 43 minute YouTube video to write code they don’t understand. Taking shortcuts in life usually never goes well in the long run. You have to learn and refine your skills each and every day to be and stay competent.

AI is a tool in our toolbox. You can use it to be more productive. And that’s it.

AFKBRBChocolate ,

Apparently he wants everything written in COBOL

catastrophicblues ,

Ugh I can’t find the xkcd about this where the guy goes, “you know what we call precisely written requirements? Code” or something like that

AnExerciseInFalling ,
MagicShel ,

I think there might be a lot of value in describing it to an AI, though. It takes a fair bit of clarity of thought to get something resembling what you actually want. You could use a junior or rubber duck instead, but the rubber duck doesn’t make stupid assumptions to demonstrate gaps in your thought process, and a junior takes too long and gets demoralized when you have to constantly revise their instructions and iterate over their work.

Like the output might be garbage, but it might really help you write those stories.

Distant_Foreground ,

When I’m struggling with a problem it helps me to explain it to my dog. It’s great for me to hear it out loud and if he’s paying attention, I’ve got a needlessly learned dog!

0x0 ,

The needlessly learned dogs are flooding the job market!

lemmyvore ,

Oh, God, he’s trying to use pointers again. He can never get them right. And they say I’m supposed to chase my tail…

RobertoOberto ,

I love this way of thinking about it.

I haven’t been interested in AI enough to try writing code with it, but using it as an interactive rubber ducky is a very compelling use case. I might give that a shot.

IronKrill ,

I have a bad habit of jumping into programming without a solid plan which results in lots of rewrites and wasted time. Funnily enough, describing to an AI how I want the code to work forces me to lay out a basic plan and get my thoughts in order which helps me make the final product immensely easier.

This doesn’t require AI, it just gave me an excuse to do it as a solo actor. I should really do it for more problems because I can wrap my head better thinking in human readable terms rather than thinking about what programming method to use.

CylustheVirus ,

A rubber ducky is cheaper and not made by stealing other’s work. Also cuter.

RustyNova , in Coomitter be like

NGL I 'm a bit like that. I often do “work” commits so that my working tree is a bit more clean/I can go from working state to working state easily.

But before a PR, I always squash it, and most times it’s just a single commit

DacoTaco ,
@DacoTaco@lemmy.world avatar

Same haha. But i use a combination of commits ( but not pushed ), ammending, fixups and usually clean it up before making a PR or pushing ( and rebase/merge main branch while at it). Its how git should be used…

verstra ,

You are not alone. This is the work git was built for.

There is a bit of benefit if you have code reviewed so separate commits are easier to review instaed of one -900 +1278 commit.

RustyNova ,

I do push often as I’m often switching between two devices. And I do make draft PR so I got an easy git diff that I can live reference with

pineapplelover ,

How do you “squash” it?

veganpizza69 ,
@veganpizza69@lemmy.world avatar

Squashing

The s “squash” command is where we see the true utility of rebase. Squash allows you to specify which commits you want to merge into the previous commits. This is what enables a “clean history.” During rebase playback, Git will execute the specified rebase command for each commit. In the case of squash commits, Git will open your configured text editor and prompt to combine the specified commit messages. This entire process can be visualized as follows:

https://lemmy.world/pictrs/image/c9b3554b-d6a9-4fd0-a612-7d2e3f60d6e9.png

Note that the commits modified with a rebase command have a different ID than either of the original commits. Commits marked with pick will have a new ID if the previous commits have been rewritten.

www.atlassian.com/git/…/rewriting-history

You can also amend for a softer approach, which works better if you don’t push to remote after every commit.

The git commit --amend command is a convenient way to modify the most recent commit. It lets you combine staged changes with the previous commit instead of creating an entirely new commit. It can also be used to simply edit the previous commit message without changing its snapshot. But, amending does not just alter the most recent commit, it replaces it entirely, meaning the amended commit will be a new entity with its own ref. To Git, it will look like a brand new commit, which is visualized with an asterisk (*) in the diagram below.

You can keep amending commits and creating more chunky and meaningful ones in an incremental way. Think of it as converting baby steps into an adult step.

RustyNova ,

My attempt to explain was squashed by this comment

mauzybwy ,

Or if you want to --force commit 😈. Imo if it’s my own working feature branch on a trunk-based roll-forward repo idgaf about rewriting history, and I will do it with wanton abandon.

SparrowRanjitScaur , (edited )

Gitlab has a checkbox for squashing merge requests into a single commit. Not sure if GitHub has that too.

nobleshift , in Derisking a project 1 year out
@nobleshift@lemmy.world avatar

deleted_by_author

  • Loading...
  • Thcdenton ,

    I’m so glad the industry spit me out like a fishbone

    ArmokGoB ,

    Same, except now I don’t know how I’m gonna pay next month’s rent. (I was spit out a while ago.)

    match ,
    @match@pawb.social avatar

    Have you tried setting [ECONOMY: NO] in the raws?

    ArmokGoB ,

    That gave me a chuckle.

    nobleshift ,
    @nobleshift@lemmy.world avatar

    deleted_by_author

  • Loading...
  • ArmokGoB ,

    I thought about doing that, but I don’t have the training or license to drive a boat. I’m in Hawaii, so it can get pretty rough out in the ocean. I’m also not sure how I would get money for food and stuff. I don’t have massive savings or anything.

    HubertManne , in Derisking a project 1 year out

    ugh. we plan user stories by quarters and everything after sprint1 is just generic garbage because it generally depends on the results of sprint1.

    Anticorp ,

    Ticket 24987: “Do the needful”

    LeroyJenkins ,

    if I’m leading a project, I avoid this by begging POs to give me a sprint 0 where i solo code out all the scaffolding ground work before all the other engineers join the project.

  • All
  • Subscribed
  • Moderated
  • Favorites
  • [email protected]
  • random
  • lifeLocal
  • goranko
  • All magazines