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.

Blamemeta , in Pick a side Javascript

Simple. Malformed data from.a bad actor. Always sanity check your shit.

GandarfDeGrape , in History repeats itself

OK. Query.

Rebase or merge into current?

I personally never rebase. It always seems to have some problem. I’m surely there’s a place and time for rebasing but I’ve never seen it in action I guess.

NatoBoram ,

It only matters if you want to be able to use the commit tree and actually find something. Otherwise, there’s no harm in using merges.

Blamemeta ,

What you do is create a third branch off master, cherry pick the commits from the feature branch, and merge in the third branch. So much easier.

BabaYaga ,

I’ve definitely done this before…

JDubbleu ,

This is actually genius. Gonna start using this at work.

GigglyBobble ,

If your cherry-pick doesn't run into conflicts why would your merge? You don't need to merge to master until you're done but you should merge from master to your feature branch regularly to keep it updated.

Blamemeta ,

Git is weird sometimes.

yogo ,

That’s called rebasing

fiah ,
@fiah@discuss.tchncs.de avatar

for some reason it’s easier than normal rebasing though

yogo ,

Have you tried interactive rebase (rebase -i)? I find it very useful

Blamemeta ,

Yeah, but then you deal with merge conflicts

gedhrel ,

rerere is a lifesaver here.

(I’m also a fan of rebasing; but I also like to land commits that perform a logical and separable chunk of work, because I like history to have decent narrative flow.)

dukk ,

You can get merge conflicts in cherry picks too, it’s the same process.

atyaz ,

That is absolutely not what rebasing does. Rebasing rewrites the commit history, cherry picking commits then doing a normal merge does not rewrite any history.

yogo , (edited )

I’m sorry but that’s incorrect. “Rewriting the commit history” is not possible in git, since commits are immutable. What rebase actually does is reapply each commit between upstream and head on top of upstream, and then reset the current branch to the last commit applied (This is by default, assuming no interactive rebase and other advanced uses). But don’t take my word for it, just read the manual. git-scm.com/docs/git-rebase

atyaz ,

“Reapply” is rewriting it on the other branch. The branch you are rebasing to now has a one or multiple commits that do not represent real history. Only the very last commit on the branch is actually what the user rebasing has on their computer.

yogo ,

Cherry picking also rewrites the commits. This is equivalent to rebasing:


<span style="color:#323232;">git branch -f orig_head
</span><span style="color:#323232;">git reset target
</span><span style="color:#323232;">git cherry-pick ..orig_head
</span>
dukk ,

Merge commits suck.

My biggest issue with GitHub is that it always squashes and merges. It’s really annoying as it not only takes away from commit history, but it also puts the fork out of sync with the main branch, and I’ll often realize this after having implemented another features, forcing me end up cherry picking just to fix it. Luckily LazyGit makes this process pretty painless, but still.

Seriously people, use FF-merge where you can.

Then again, if my feature branch has simply gone behind upstream, I usually pull and rebase. If you’ve got good commits, it’s a really simple process and saves me a lot of future headaches.

There’s obviously places not to use rebase(like when multiple people are working on a branch), but I consider it good practice to always rebase before merge. This way, we can always just FF-merge and avoid screwing with the Git history. We do this at my company and honestly, as long as you follow good practices, it should never really get too out of hand.

GandarfDeGrape ,

Sounds like I just gotta get better with rebasing. But generally I do my merges clean from local changes. I’ll commit and push, then merge in, push. Then keep working. Not too hard to track but I’ve found it’s the diff at MR time that people really pay attention to. So individual commits haven’t been too crucial.

GigglyBobble ,

Merge commits suck.

My biggest issue with GitHub is that it always squashes and merges.

You are aware you're talking about two different pieces of software?

dukk ,

Yeah, I am. However GitHub, being the biggest Git hosting provider and all that, makes you use merge commits. FF-merges must be done manually from the command line. While this definitely isn’t a problem for me, many people out there just don’t care and merge without a second thought (which, as I said in my comment, results in having to create a new branch and cherry picking the commits onto there).

themusicman ,

You should check out the repo options on GitHub. It most definitely supports rebase merges, and you can disable other merge types if desired.

risottinopazzesco ,

Rebase. Merge into current leaves merge commits in the dev branches.

atyaz ,

Always merge when you’re not sure. Rebasing rewrites your commit history, and merging with the squash flag discards history. In either case, you will not have a real log of what happened during development.

Why do you want that? Because it allows you to go back in time and search. For example, you could be looking for the exact commit that created a specific issue using git bisect. Rebasing all the commits in a feature branch makes it impossible to be sure they will even work, since they represent snapshots that never existed.

I’ll never understand why people suggest you should default to rebasing. When prompted about why, it’s usually some story about how it went wrong and it was just easier to do it the wrong way.

I’m not saying never squash or rebase. It depends on the situation but if you had to pick a default, it should be to simply merge.

h14h ,

I try to structure my commits in a way that minimizes their blast radius, which usually likes trying to reduce the number of files In touch per commit.

For example, my commit history would look like this:

  • Add new method to service class
  • Use new service class method in worker

And then as I continue working, all changes will be git commit --fixuped to one of those two commit’s hashes depending on where they occur.

And when it’s time to rebase in full, I can do a git rebase master --interactive --autosquash.

dukk ,

This is the way! Small commits with descriptive commit names, then just fixup into a few feature commits. Makes rebase a breeze.

rookeh ,

I’ve always merged. Rebase simplifies the history graph, but realistically I can’t think of a time where that has been important to me, or any of the teams I’ve worked with.

Maybe on some projects with a huge number of concurrent branches it becomes more important, probably less so for smaller teams.

terminhell , in Pick a side Javascript

Hol’ up

magnetosphere , in Scammers vs Impossible Password Game
@magnetosphere@kbin.social avatar

“This is Ohio… or maybe EPCOT?” almost had me crying.

Unquote0270 , in Scammers vs Impossible Password Game

Love a bit of kit

LossLeader , in Scammers vs Impossible Password Game

Kitboga is the greatest troll of all time

Mozami ,
@Mozami@kbin.social avatar

Gotta agree with you there. His improv game is something else.

Huschke ,

The best past is when he uses his little device to record sentences that he then replays to create the illusion of two people talking over each other!

mojo , in Scammers vs Impossible Password Game

How did they not catch on they’re getting fucked with lol

bappity ,
@bappity@lemmy.world avatar

probably frothing at the mouth for the chance to get money that they don’t realise

ruk_n_rul ,

They devoted every brain cell to scamming people, none is left to detect 200IQ level pranks.

Mozami ,
@Mozami@kbin.social avatar

Because some scammers are stupid enough to believe that they'll get a certain amount of money (usually very large) from scambaiters. It's even more hilarious when they fail to catch on (after a long period of time) to the fact that they've been led on.

maiskanzler , in Scammers vs Impossible Password Game

Some insanely great moments in there! At least twice he slipped in a subtle meme into what he said and it just went over the scammer’s heads entirely.

HamBrick , in data secured

How are the hackers supposed to find it if even you can’t? Exactly. Latest security at its finest

PipedLinkBot , in Scammers vs Impossible Password Game

Here is an alternative Piped link(s): piped.video/watch?v=knhQ2f8anT8

Piped is a privacy-respecting open-source alternative frontend to YouTube.

I’m open-source, check me out at GitHub.

altima_neo , in data secured
@altima_neo@lemmy.zip avatar

Pretty sure it saves it to “my documents”

That fucking no man’s land. Who actually stores shit there?

Zink ,

I’ve started doing that at work, since the documents folder is one of the handful automatically backed up to MS onedrive.

At home the documents folder is on a network share and backed up from that little server.

floofloof , in data secured

At least there’s Windows Search to bring your system to its knees by indexing everything constantly in the background, only to be both terribly slow and unable to find anything at all when you actually need it.

I depend on Voidtools’ Everything search, which actually finds stuff.

Phantom52347 ,

PowerToys has a good search engine too

JackbyDev ,

What if I: Indexed everything in the background forever

And said: I don’t know what the fuck file you’re talking about

lolcabanon , in It always gets me

Am I the only one who only knew ctrl+y? I’ve been used to it since forever and never used ctrl+shift+z even tough I am a keyboard shorcut fanboy…

edit: also the logic behind ctrl+shift+z totally makes sense, i’ll try it everywhere now lol

Arnaught , (edited ) in data secured
@Arnaught@kbin.social avatar

The Windows Scan app is particularly bad at this. When you scan a document, it saves the scan as a PNG in PicturesScans. This is a sensible place to save scans by default, but it doesn't tell you where. It just says it was saved. There's a button to view it, but this just opens the scan in the Windows Photos app, which (at least, last I checked) doesn't have an option to view the full path of the picture you're viewing or open the folder it's in!

null_recurrent ,

They want you to access everything through search and recently accessed because its so intuitive. It’s like they want computers to be as hard to use as possible for people who need to do actual work on many projects in any sort of organized way.

Also, now that IT has integrated everything with OneDrive, I routinely have to wait for my own files to be redownloaded before accessing them.

eduardobragaxz ,

You can both see the path and open the folder it’s in with the photos app.

I’m not sure what scan app you’re using, but there’s a Windows 8 era one that hasn’t been updated since, so maybe not the best.

Arnaught ,
@Arnaught@kbin.social avatar

Oh, looking at the Windows 11 Photos app real quick, I see the path is shown under the file info tab at the top. That's nice! I don't think this was shown anywhere in the Windows 10 version, but again, it's been a while since I've checked.

pozbo , in data secured
@pozbo@lemmy.world avatar

Great title

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