You guys are getting paid?
- 1 Post
- 137 Comments
psycotica0@lemmy.cato
Programmer Humor@programming.dev•Kind of impressive when you think about it
9·4 days agoI don’t know the original author’s opinions on AI, but I think it’s still fair to say that it was clearly Copilot’s goal to steal all the code and be good, and they had all the code, and so ethics aside one would expect them to have succeeded with flying colour at whatever their goals were, even if those were bad goals.
But they failed instead, which is impressive.
A Single Extraordinary Gentleman
Scott Pilgrim vs Himself
~(which actually is kinda accurate)~
psycotica0@lemmy.cato
Lemmy Shitpost@lemmy.world•They are better than people and unfortunately die so young compared to us
21·10 days agoThis isn’t shit, you’re shit!
~Muhfuckin shitpost my ass…~
I know it’s kinda off topic, but what I find even weirder are bands that are “one hit wonders” in one country, but have like 10 hits and a long career in another country.
They’ll have a whole wikipedia article of awards they’ve won you’ve never heard of, and tours they went on, and you’re like “they wrote more than one song!?”
Maybe I’m expecting too much from a shitpost… or maybe it’s an accent thing, but for me “cope-in-hay-again” doesn’t sound a lot like how I say Copenhagen…
psycotica0@lemmy.cato
Linux@lemmy.ml•Over 97% of the 'Linux' Foundation's Budget Goes Not to Linux
113·15 days agoIt’s nice of this poster to ignore the $181m spent on “other projects” and conclude this is some kind of scam. If we include the Linux Kernel with the other projects part, that’s about 67%, or two thirds, of their expenses are paying for various and assorted open source projects. Among them the kernel. So if you’re a “cash and cash alone” person, then 2/3rds of your money is still going as cash to software projects.
And if we include things like community tooling and project services, which may help a project in ways beyond just cash that becomes about 78% in total, or over three quarters.
That’s pretty good, I think, but to each their own.
Yours is, I think, the only account I check in on by name on this platform. I’ll sometimes be like “what’s that wild girlie cookin’ today”!
So, like, don’t keep posting just for me if it’s not fun anymore, but block the haters and keep cruisin’!
psycotica0@lemmy.cato
Programmer Humor@programming.dev•Please let me squash a merge commit
1·22 days agoRight, but what I’m saying is that git doesn’t store authorship information or line-by-line history, no matter how it’s done. Figuring out which line came from where is an algorithm the git blame command does every time you request it, and that algorithm can give different results depending on which options you give the blame command. And so what you’ve found here is a collection of commits that produces a situation the default blame algorithm can follow, without any optional flags, which is neat! Maybe not great for git history, but neat!
psycotica0@lemmy.cato
Programmer Humor@programming.dev•Please let me squash a merge commit
1·22 days agoInteresting. Yeah, sounds like what
git blame -Cis for, so I’ve never made copies when splitting files, I’ve just moved lines between files naively. But I guess if one’s tools are limited and doesn’t have the ability to-C, then I guess I could respect the hack that is that solution?I mean, I’m 99% sure git doesn’t store blame or authorship info in the pack files, even as a convenience cache, and just guesses by traversing the patch log with heuristics live when you run blame anyway, so the history mostly doesn’t matter there, but the way you’ve done it does seem to have tricked the heuristics into doing what you want without relying on an option, so that’s neat! It’s an interesting hack, and I like interesting hacks 😛
By the way, if there are down votes, they’re not from me!
psycotica0@lemmy.cato
Not The Onion@lemmy.world•Video game-loving China monk defends hobby, says gaming, religion serve similar life purposesEnglish
6·23 days agoI don’t know about this dude, but also not all monks are, like, born into a monetary and raised in it. So probably he played videogames when he was younger, and argued as an adult that they’re not that bad.
psycotica0@lemmy.cato
Programmer Humor@programming.dev•Please let me squash a merge commit
5·23 days agoYeah, I’m with you. I mean, git isn’t magic. You “can” squash anything, including a merge commit, by just being at the end result, running
git reset <commit you want to be squashed off of>and then running a manual git add and commit there. That’s basically all a squash is.But what you’ll be left with us a single commit that contains all of the code from the branch you’re squashing and also all the code pulled in from every branch you merged, all written as though it all came from this one commit. And maybe that’s what you want? But it feels like also maybe it’s not?
psycotica0@lemmy.cato
Programmer Humor@programming.dev•Please let me squash a merge commit
1·23 days agoRight… for sure… but then if you don’t want to squash, then it doesn’t matter you can’t squash a merge commit.
psycotica0@lemmy.cato
Programmer Humor@programming.dev•Please let me squash a merge commit
4·23 days agoHuh. I have never in my 19 year career using git, ever wanted to copy a file and pretend all of the history of that file is also the history of the new file. I mean, I don’t think I’ve ever even wanted to copy a file? Why are you copying a file?
Like, maybe I’m just too familiar with git to see the forest for the trees, but what the heck are you doing over there? 😅
And just in case it’s useful, a tip is that you can use
git blame -Cto have the blame algorithm use a heuristic to try and find a “source” line if it was moved, including from another file, during a commit, and then continue following the history of that line, to try and get the real commit where this was written, not just the last time it was moved around.
psycotica0@lemmy.cato
Asklemmy@lemmy.ml•What movie franchise gets worse with each new film?
4·24 days agoYeah, 2 was just 1 again, with all the same jokes but in reverse. But 3 was legitimately different and better, so it saved the whole thing!
psycotica0@lemmy.cato
Asklemmy@lemmy.ml•What movie franchise gets worse with each new film?
201·24 days agoLord of the Rings barely counts, because not only were all three books out and classics before the movies started (obviously), but the three movies were basically worked on at the same time. It’s nuts, but somehow they managed to do it.
So it’s not like they released the first, got crazy hype, and then phoned everyone up and said “electric Boogaloo, you in?”. They’d already shot most of the second and third by the time the first came out, as I recall.
Also I really liked Glass Onion 😛



For an honest answer, from an Open Source perspective, it’s mostly auth, profiles, and discoverability.
Presuming I have a GitHub account, when I encounter a library or tool or something that’s hosted on GitHub that means I can fork it, make issues, comment on issues, make pull requests from my fork to upstream tied to issues, and generally have seamless interaction with any and all software on GitHub.
Or, if I have my account added to a project, then I can also merge PRs and push to master and be a maintainer of that software without any friction.
When I see that software is hosted on KDE’s thing it’s like “Ugh”. I have to login to that, and create a profile for that, and then figure out how tickets work there, and how do I contribute to that. It’s enough to just not, most of the time. And maybe I do that for kdenlive. Then I have a bug for Gimp. Okay, what the heck do they use? Is that another login? How do I contribute over there? Is registration even open? Okay guix, oh boy a mailing list. Do I want to subscribe to a dev mailing list just to submit a 2 line patch? I think I’ll just not… I’m sure someone else will fix it eventually…
So besides all that, some people like their GitHub profile, and like that people can see all the things they’ve contributed to from one spot. That’s why it’s often linked on resumes, but beyond that there’s also a kind of cultural cachet to having a diverse and positive profile, should someone look. If someone is a maintainer of a repo with a lot of stars, that might tell you they’re “important” even if you don’t know why. Because maybe you’re a JS programmer, but this person seems to be big in the Java community, because they seem to maintain a few high profile java libraries.
And then lastly, it’s sometimes useful as a shortcut in searching. “Source code” is kind of a useless term for searching, so if I search “ruby Ledger file library” I’m more likely to get some docs or a rubygems page, but if I search “ruby Ledger file GitHub” I’m probably going to get what I actually want, which is a readme and a git uri I can clone and play around with. Or a web view of the source I can search through to debug something without cloning. At least assuming that is what I want, it depends on what my goals are, but it’s useful often enough that I do it sometimes as a way of jumping to the source part.
I’m typically anti-centralization, and anti-microsoft, and if we all move away from GitHub I’m sure I’ll live, but this is why I like it despite its problems. And sometimes I want a webview of file contents, with search, without cloning, so sue me 😛