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.

aes , in Manager: This task only takes 30 minutes. Why did it take you the whole day?

Psst,

git add -p

Johanno ,

What does this?

foxymulder ,
@foxymulder@lemmy.ml avatar

“patch mode” - Patch mode allows you to stage parts of a changed file, instead of the entire file. This allows you to make concise, well-crafted commits that make for an easier to read history.

pomodoro_longbreak ,
@pomodoro_longbreak@sh.itjust.works avatar

Highly recommend throwing –patch on any git commands you’re used to using. You will have the prettiest, most atomic fkn commit, I’m serious people will love you for it.

I mean many people won’t care, but the quality folk will notice and approve.

oce ,
@oce@jlai.lu avatar

Or just use a good IDE that makes doing atomic commits pretty natural.

pomodoro_longbreak ,
@pomodoro_longbreak@sh.itjust.works avatar

I’ve only tried the VS code hunk stager thing, and found it cumbersome compared to command line, but if you can make a GUI work for you ya go for it. I’ve never found it worth the trouble personally

dukk ,

Shout out to Lazygit for letting me stage individual lines

pomodoro_longbreak ,
@pomodoro_longbreak@sh.itjust.works avatar

Looks pretty neat. I like that it shows the commands it’s issuing!

oce ,
@oce@jlai.lu avatar

You should try the JetBrains IDEs, as the other said, you can pick changes line by line graphically, when you commit, when you do a diff with another branch or when you fix conflicts. It’s much more convenient than commands and terminal text editors.

Johanno ,

We make a singular commit per feature.

pomodoro_longbreak ,
@pomodoro_longbreak@sh.itjust.works avatar

Trunk based, eh? Yeah, we do that on a couple teams where I’m at, too. I like the philosophy, but force pushing the same commit over and over as you’re incorporating review feedback is antisocial, especially when you’ve got devs trying to test your changes out on their machines.

Omgpwnies ,

eh, just squash and merge. Feature branch can be messy as long as main is clean

Johanno ,

Yep. You have to make sure your feature branch works.

KairuByte ,
@KairuByte@lemmy.dbzer0.com avatar

I always find this hard to follow personally.

AnarchistArtificer ,

Yay, learning!

dukk ,

Better yet, git commit -p

sip ,

uuuuuuuu. and you could do -m to describe the commit.

next they’ll add --push/-P.

perhaps add -r for fetch/rebase then commit.

one command to rule them all! 😈

OsrsNeedsF2P , in Release notes of an open source app. Someone is pretty mad at Canonical for Snap

Canonical could have done a lot better with the explanation message here. The idea is to push apps towards XDG compliance and the use of things like Portals.

That said, unlike Wayland, portals really aren’t there yet from a UX perspective, especially for an app that is heavy on file transfers.I prefer what Flathub does where it puts a nice green checker beside your app for XDG compliance - it’s an encouragement, but not an enforcement.

baseless_discourse , in Rust's static linter is called "Clippy" for a reason.

Every monad is a monoid in the category of endofunctors, it is literally the definition of monad. But what do you expect from clippy…

umbraroze OP ,
@umbraroze@kbin.social avatar

Yeah, the thing is, "a monad is a monoid in the category of endofunctors" is kind of a meme among non-Haskell developers. Personally, I think Haskell is a very interesting language. The mathematical jargon, however, is impenetrable, and this particular expression is kind of the poster child. I'mma go look at Erlang if I want my functional language fix without making my head hurt, thank ye very much.

synae ,
@synae@lemmy.sdf.org avatar

Erlang fucks, haskell is the nerd in the corner at the party crying “they don’t know about my mathematical purity”

pkill ,

Haskell’s got better type system tho

1rre ,

OCaml has an equally good type system without being pretentious about it

mariusafa , in GitHub Desktop or Git CLI?

Git cli powerfull af only us git cli. Well and gitk

muntedcrocodile , in GitHub Desktop or Git CLI?
@muntedcrocodile@lemmy.world avatar

Vscode plugins?

amotio , in GitHub Desktop or Git CLI?

Sublime-Merge

narc0tic_bird ,

I love Sublime Merge. Worth every penny.

CmdrKeen , in GitHub Desktop or Git CLI?
@CmdrKeen@lemmy.today avatar

GitLens?

GitHub Desktop is literally “Baby’s first git GUI”.

pkill , in GitHub Desktop or Git CLI?

gitui

cabhan , in Rust's static linter is called "Clippy" for a reason.

I wish this was exaggerated, but it isn’t at all. Every time I try to learn Haskell, I end up in some tutorial: “You know how you sometimes need to represent eigenvectors in an n-dimensional plane with isotonically theoretical pulsarfunctions? Haskell types make that easy!”

outdated_belated , in GitHub Desktop or Git CLI?

tig

EmperorHenry , in Manager: This task only takes 30 minutes. Why did it take you the whole day?
@EmperorHenry@discuss.tchncs.de avatar

reminds me of what youtube was doing to firefox users for awhile.

hypnotic_nerd OP ,
@hypnotic_nerd@programming.dev avatar

git commit -m “break codec sync if UA = firefox/gecko”

Maiznieks , in Manager: This task only takes 30 minutes. Why did it take you the whole day?

“Fix”

obrenden ,

With 400 lines changed over 50 files

hypnotic_nerd OP ,
@hypnotic_nerd@programming.dev avatar

“updates”

dukk ,

“feat: stuff”

Guilty of this one myself.

Jeremyward ,

I had a commit recently that was like 2000 lines changed over 6 files. Really should have been a smaller issue.

Dkarma ,

Y tho??? Holy shit. Commits should be like functions. One thing and one thing only. Maybe a small group of files like the same change over multiple config files. 50 is insane to me.

Dasnap ,
@Dasnap@lemmy.world avatar

‘Change’ if I’m feeling particularly chaotic.

ShittyKopper ,

git commit -m $(date)

akkajdh999 ,

Make a cron job for git add . && git commit “$(date)” && git push -f

MajorHavoc ,

I actually did this once…I swear there was a good reason. I promise it wasn’t anywhere that mattered.

Edit: I think it was a personal journal repo that I wanted daily versions of, but couldn’t be bothered to actually check in.

frezik ,

“Bits were fiddled, possibly in the right way”

PixxlMan ,

My butterfly was having a bad day so I can’t be sure, sorry

Dkarma ,

See jira-blah: is my go-to. Sometimes there’s even a jira at that location/number 🤔

Meowoem ,

‘fixed odd or even function for values 600 to 950, plus other stuff I forgot to commit earlier’

AVincentInSpace , (edited ) in Manager: This task only takes 30 minutes. Why did it take you the whole day?

Every time I commit I have to look through git diff, figure out what the hell I actually did, come up with something intelligent to say about jt, possibly split the commit into multiple commits if I changed multiple things, do some shuffling with git reset and git add

For some reason all my personal projects are all like 4K SLoC with 50 total commits, all of which include apologies for not doing more smaller commits

Anticorp ,

There’s a bigger issue than your commit message if you don’t even know what you just coded and are committing.

AVincentInSpace , (edited )

You see, sometimes I code something, go to bed before finishing it, come back, decide not to commit because then I’d have to think of a commit message and I just want to code, start working on an unrelated feature, do that for a couple days, get distracted by life stuff and put the project down for a few weeks/months, rinse and repeat, and then I finally get around to writing a commit message because I’m about to start a huge change and I want a restore point and I’m like. Okay, it’s been like 3 months since my last commit, I’m pretty sure my code can now do something it couldn’t 3 months ago but come on, I can’t even remember what I had for lunch last Thursday

I’m well aware this is terrible practice but I don’t know how to stop doing it

dukk ,

Commit more often. Maybe work in a different feature branch, and don’t be afraid to commit your half-working crappy code. If it’s a personal project/fork, it’s totally acceptable to commit often with bad commit names and small unfinished changes: you can always amend/squash the commits later. That’s how I tend to work: create a new branch, work on the feature, rebase and merge (fast forward, no merge commit). Also, maybe don’t jump around working on random features :P

AVincentInSpace , (edited )

but…but new feature shiny

Fr tho this is all excellent advice

ExtraMedicated ,

Jumping around to random features is how my ADHD brain works most efficiently.

Slotos ,

Good news, TDD is methylphenidate of software development!

Anticorp ,

You can help yourself a lot here by making commits every time you make a meaningful change. A feature doesn’t need to be complete to commit major checkpoints along the path to completion. That’s what feature branches are for. Commit often. It’ll help you think of messages, and it’ll help you recover in the case of catastrophe.

adrian783 ,

you can setup a on-save script to force you to commit when the number of changes is greater than a certain number from the previous commit.

akkajdh999 ,

I just get too excited about actually implementing/fixing something (random things that I see along the way) more than commit ceremony (nobody will care about it in my project anyway other than one random guy who gave the repo a star)

oce ,
@oce@jlai.lu avatar

Nah, I’m that guy, I gave your repo a star for the effort, but I’m not reading your history.

adrian783 ,

it means you commit too infrequently. your commit messages should be able to describe what u just did within 10 words.

PixxlMan ,

I spend much time splitting them up inside visual studio by file and individual lines changed to try and separate my many simultaneous changes into several somewhat usable commits. If I was stupid enough to make some big refactor at the same time I might just have to throw in the towel… It’s really painful after a few weeks to try and pick up the pieces of what I was doing but never commited too lol.

PoolloverNathan ,

^psst,^ ^git^ ^add^ ^-p^

etchinghillside ,

Remind me what -p does.

Edit: never mind - I see it mentioned below.

PoolloverNathan ,

Patch add - it shows you particular changes you made, and you choose whether or not to include them in the commit. (You can then use git stash -k to stash only the changes you did not add, so you can test before you commit.)

syd , in Manager: This task only takes 30 minutes. Why did it take you the whole day?
@syd@lemy.lol avatar

I’m using Copilot for it right now. It works on half of the cases.

mdurell ,

That’s about 300% better than my average!

skyline , in Rust's static linter is called "Clippy" for a reason.
@skyline@programming.dev avatar

There is no way.

umbraroze OP ,
@umbraroze@kbin.social avatar

It's a thing! Sadly it won't rewrite Haskell codebases for you, though.

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