this post was submitted on 23 Jul 2024
86 points (100.0% liked)

Programming

423 readers
12 users here now

Welcome to the main community in programming.dev! Feel free to post anything relating to programming here!

Cross posting is strongly encouraged in the instance. If you feel your post or another person's post makes sense in another community cross post into it.

Hope you enjoy the instance!

Rules

Rules

  • Follow the programming.dev instance rules
  • Keep content related to programming in some way
  • If you're posting long videos try to add in some form of tldr for those who don't want to watch videos

Wormhole

Follow the wormhole through a path of communities !webdev@programming.dev



founded 1 year ago
MODERATORS
 

Not my blog, but the author's experience reminded me of my own frustrations with Microsoft GitHub.

top 43 comments
sorted by: hot top controversial new old
[–] Rogue@feddit.uk 35 points 3 months ago (3 children)

I kinda got bored halfway through. From what I gather they're salty that GitHub is switching to react? If that's the issue then the headline is rather misleading isn't it?

Surely legacy software is one that drifts into obscurity through lack of investment which is the polar opposite of GitHub rewriting their entire front end..

[–] mox@lemmy.sdf.org 6 points 3 months ago (1 children)

From what I gather they’re salty that GitHub is switching to react?

No, that is not the point at all. React is just an incidental detail she considered while trying to figure out what was going on.

[–] some_guy@lemmy.sdf.org 3 points 3 months ago

Exactly. The complaint is that a basic feature no longer works as expected.

[–] JackbyDev@programming.dev 3 points 3 months ago (1 children)

Crappy old websites that don't behave properly with my browsers search function sound like legacy though. I agree the headline is worded a little strangely but I can see their point.

[–] Rogue@feddit.uk 2 points 3 months ago (1 children)

But their issue isn't the old website. They're complaining about the new version?

[–] JackbyDev@programming.dev 1 points 3 months ago

Yes, but they said it reminds them of crappy old ones.

[–] MonkderVierte@lemmy.ml 2 points 3 months ago

That's another issue though. Will it get better or more bloaty webapp, like modern reddit vs. old.reddit?

[–] fmstrat@lemmy.nowsci.com 25 points 3 months ago

My one complaint: Search code in a repo, and then there is no link to return to the repo home. Back, back, back, back...

[–] Kissaki@programming.dev 16 points 3 months ago* (last edited 3 months ago)

The only issue they mention is browser page text search not working on rendered file view (blame).

The feels legacy conclusion doesn't make any sense to me.

GitHub is not the only platform implementing virtual scrolling, partial rendering of rendered files. There's a reason they do that: Files can get big, and adding various code highlighting and interactivity costs performance. It's not a local code representation and rendered canvas. It's rendered into a DOM and DOM representation, with markup and attached logic. Which at some point quickly becomes very inefficient or costly.

Not being able to use the browser text search is an unfortunate side effect.

I consider it a worsening modernization/feature addition. That's the opposite of legacy. We're moving forward (in a bad way), not stagnating.

When I click Blame, and then press Ctrl+F, it opens not my browser text search but the in-page in-file search. It works for me. (Not that I always use that search or like it.)

[–] Aatube@kbin.melroy.org 12 points 3 months ago (1 children)

I threw various keywords from that line into the browser’s command+F search box, and nothing came up.

When one clicks command+F while on the git blame, GitHub throws up their own search box. Not rendering everything at once is something a lot of stuff does.

[–] tal@lemmy.today 13 points 3 months ago* (last edited 3 months ago) (3 children)

Honestly, the ability to override menu keys is really a long-running flaw in browser UI, IMHO.

Firefox acquired a not-so-obvious way to disable that for a given site:

Click the "lock icon" to the left of the URL in the URL bar. Click "connection secure". Click "more information". In the window that comes up, click the "permissions" tab. On that page, there's an option to "override keyboard shortcuts". You can click "Block", and it'll prevent that particular website from overriding your keybindings.

This had been a long-running pet peeve until I ran into someone explaining how to disable it. I still bet that a ton of people who can't find the option put up with that. Like, lemmy Web UI keyboard shortcuts clash with GTK emacs-lite keybindings, drives me nuts. Hitting "Control-E" to go to the end of the line instead inserts some Markdown stuff by default.

[–] mox@lemmy.sdf.org 5 points 3 months ago

Firefox acquired a not-so-obvious way to disable that for a given site

Thank you for sharing that! It drives me up a wall when I tap a standard browser shortcut only to have a web site intercept it and make something else happen instead.

[–] Kissaki@programming.dev 3 points 3 months ago (1 children)

the ability to override menu keys is really a long-running flaw in browser UI

They have a reason to do so here though. OP evaded their search box and couldn't find the content. Because it's not fully rendered. Because code files can get big, and rendering them to DOM with inline highlighting and hover actions, sidebar with infos, and interactivity becomes a performance problem. So they implement partial rendering / virtual scrolling.

[–] tal@lemmy.today 3 points 3 months ago* (last edited 3 months ago)

So, I've got no problem with having page-specific functionality and allocating some kind of space of keybindings to them, right? Like, okay. Say that browsers reserved the Control-Alt prefix for webpages, and then had a list of functions that webpages could implement, and when they do, adding a visible button in a toolbar and having a hover tip to find those. That visible toolbar would solve any issue of discoverability of such functionality on a webpage (and by implementing that in the browser, the browser could choose to have a more-minimal form, like just an indicator that a page supports keybindings.) So the webpage doesn't have to grab the browser's keybindings. Or maybe we introduce a "browser button" or something, the way Microsoft did the Windows key.

But what I don't like is having access to native functionality blocked by webpages. I don't think that they should have overlapping keybinding space.

Emacs has a shitton of keybindings, users who heavily configure it, and a ton of add-on software that needs keybindings. What they did was to reserve some keybinding space for the editor, some for major modes, some for minor modes, and some for user-specified keybindings. These all don't collide, so that the user doesn't get functionality blocked by another piece of software:

https://www.gnu.org/software/emacs/manual/html%5Fnode/elisp/Key-Binding-Conventions.html

Don’t define C-c letter as a key in Lisp programs. Sequences consisting of C-c and a letter (either upper or lower case; ASCII or non-ASCII) are reserved for users; they are the only sequences reserved for users, so do not block them.

Changing all the Emacs major modes to respect this convention was a lot of work; abandoning this convention would make that work go to waste, and inconvenience users. Please comply with it.

  • Function keys F5 through F9 without modifier keys are also reserved for users to define.
  • Sequences consisting of C-c followed by a control character or a digit are reserved for major modes.
  • Sequences consisting of C-c followed by {, }, <, >, : or ; are also reserved for major modes.
  • Sequences consisting of C-c followed by any other ASCII punctuation or symbol character are allocated for minor modes. Using them in a major mode is not absolutely prohibited, but if you do that, the major mode binding may be shadowed from time to time by minor modes.

I get that websites need to have keybinding space, and have a legit reason to do so. But I don't think that they should share keybinding space with the browser's native functionality. If we want to have a "search" shortcut, hey, that's cool. But lets leave the browser-native functionality available.

In Firefox, I have:

  • Alt-f for find. By default, this is Control-f, but normally both Control- and Alt- are reserved for the browser, and I've swapped the Control and Alt prefixes so that the menu keys don't crash into the GTK emacs-lite keybindings. Some websites override this, which is really annoying if I'm trying to navigate around using conventional search; in emacs, it's common for users to use search constantly to navigate around in a document.

  • Slash. This opens a mini-find, because I'm using vimium, but only if I don't have a text-editing widget active, in which case the OS's text editor gets it.

So I've got two different search keybindings and both are inaccessible at various points, because other software packages want to use keybinding space and there's no convention for avoiding collisions.

My preference would be that there should be keybinding space for Firefox itself, keybinding space for the OS to use in things like text widgets, keybinding space for the OS (Microsoft dealt with this by adding and reserving the Windows key and mostly using that, except for traditional pre-existing conventions like Alt-F4 or Alt-Enter), keybinding space for OS add-ons, binding space for Firefox add-ons, and keybinding space for websites, and that these shouldn't overlap (and insofar as possible, and I realize that this isn't always possible for non-modified keybindings, to not change based on modality, like "this functionality isn't available if you have a text widget active").

[–] Aatube@kbin.melroy.org 1 points 3 months ago (2 children)

Neat! Does that also block right-click capture?

[–] QT1@lemm.ee 2 points 3 months ago

In Firefox, you can also override right-click capture by holding shift while right-clicking.

[–] tal@lemmy.today 1 points 3 months ago

I don't know; I'd guess not, but haven't tried to find out.

[–] onlinepersona@programming.dev 11 points 3 months ago (3 children)

What does the author mean with "legacy"? I thought that meant "abandoned". Github is nowhere near abandoned. People keep flocking to it and giving it more power.

If it becomes too shitty to use, my guess is that the majority will still stay because of inertia. Regardless of what alternatives exist, the majority stays with the popular.

Anti Commercial-AI license

[–] thingsiplay 7 points 3 months ago* (last edited 3 months ago)

What does the author mean with “legacy”? I thought that meant “abandoned”.

Legacy to me does not mean abandoned, but the previous version that is still needed. It does not tell you if its "supported". Abandoned would be a software no longer in "supported" to me. But that does not say if its still needed today. So legacy and abandoned are similar, but not the same, only sometimes the same. Legacy software or hardware can be popular in usage too. In example old graphics cards like GTX 1070 are legacy and use legacy drivers. They are somewhat popular still. The official drivers from Nvidia still support this older graphics card, so they are not abandoned, only legacy.

This is what my definition of these words. I don't think Github itself is legacy nor abandoned. I personally am just a very simple Git user and use Github through the git command and for some tasks through the website of Github. It's fine for me and I don't care if someone calls it legacy or abandoned. It's not.

[–] mox@lemmy.sdf.org 7 points 3 months ago (1 children)

When she says it's starting to feel like legacy software, I think she means parts of it seem to be falling into disrepair. Some things that once worked consistently and easily, like using the browser's built-in search, no longer do.

[–] snooggums@midwest.social 5 points 3 months ago (2 children)

That isn't what legacy means.

[–] mox@lemmy.sdf.org 4 points 3 months ago (1 children)

The meaning of words often varies with context.

[–] snooggums@midwest.social 7 points 3 months ago* (last edited 3 months ago) (1 children)

Techical terms with specific meanings don't vary significantly based on context, because consistency is important in technical usage.

The author is complaining about how guthub is being poorly modernized, which is the opposite of legacy software. If she means 'something we choose use out of tradition' that isn't what legacy software means.

[–] mox@lemmy.sdf.org 1 points 3 months ago (1 children)

Techical terms with specific meanings don’t vary significantly based on context

Every lexicographer I know would challenge that notion. (And I've had more than a few experiences in technical fields that challenge it as well.)

People sometimes express themselves using words that might not fit the discussed situation directly (at least not in the typical way), but do fit closely-associated experiences they've had. They use them because those are the words that come to mind at the time.

We could pedantically gatekeep their use of language and insist that their views/experiences are invalid because we don't like their choice of words...

...or we could try to understand them.

[–] snooggums@midwest.social 1 points 3 months ago (1 children)

What a great point to make about language in situations that are not technical! Like how theory is used differently outside of scientific contexts, which is language naturally evolving.

But this is like someone trying to use the lay definition of theory, which is the equivalent of a hypothesis in acience, in a scientific context. A scientist saying "that is just a theory" to dismiss the theory of relativity in a scientific context would be rightfully corrected by their peers.

Using legacy software wrong is like using API to describe something other than an API.

[–] mox@lemmy.sdf.org 1 points 3 months ago

You've made your opinion clear; restating it and slinging downvotes doesn't help anyone. Good day.

[–] JackbyDev@programming.dev 3 points 3 months ago (1 children)

But you can still understand the gist of the article even if it used that word differently.

[–] onlinepersona@programming.dev 2 points 3 months ago (1 children)

The author's made at a new tech breaking an old feature. Seems more to me like a "I wish they kept things the same" than "I wish they changed some stuff around here". Quite the opposite of legacy.

It being the main point of the article bug being used incorrectly in the title is just confusing. That's comparable to somebody always mentioning "wolf" in an article, actually describing a hare and never saying what their definition of a wolf is.

Anti Commercial-AI license

[–] JackbyDev@programming.dev 2 points 3 months ago (1 children)

I totally get what you're saying, but wouldn't you rather discuss the content of the article than argue about definitions?

[–] onlinepersona@programming.dev 2 points 3 months ago (1 children)

Sure, IMO github has had a subpar interface forever. I've always liked Gitlab's interface more. Github has felt behind Gitlab for a while and it feels like the major thing they have going for themselves are Github Actions and marketshare. The interface getting worse is no issue to me as I try not to use it anyway.

It also doesn't seem comprehensible to me that the author prefers Github's blame interface over every git GUI they've used. They don't even say what it is about the interface they find nicer.

Anti Commercial-AI license

[–] JackbyDev@programming.dev 1 points 3 months ago (1 children)

I really like GitHub's high contrast themes. But yeah, that's it. I recently moved my code to Codeberg. Have you tried it? I like GitLab too. That was my go to back when GitHub didn't offer free private repos.

[–] onlinepersona@programming.dev 1 points 3 months ago

Codeberg looks like a github clone from 2018 or so. I do hope that they take inspiration from other source forges and won't be afraid to experiment to go their own way.

Anti Commercial-AI license

[–] Kissaki@programming.dev 1 points 3 months ago* (last edited 3 months ago) (1 children)

Legacy means outdated. Not [necessarily] unusable or unstable or insecure or needs to be updated. But feels old or outdated. Conforming to older standards or workflows.

Wikipedia matches my understanding:

In computing, a legacy system is an old method, technology, computer system, or application program, "of, relating to, or being a previous or outdated computer system", yet still in use.

[–] onlinepersona@programming.dev 3 points 3 months ago

Then I think the author also had a different understanding of the term, because he's complaining about new functionality breaking an old feature. Introducing new code is quite the opposite of legacy.

Anti Commercial-AI license

[–] NostraDavid@programming.dev 8 points 3 months ago (1 children)

Edge does that shit too with JSON... It made me switch to Firefox, so good for me (other than that Firefox has a tendency to enshittify too, but in different ways).

[–] Scary_le_Poo 6 points 3 months ago (1 children)
[–] NostraDavid@programming.dev 1 points 2 months ago (1 children)

Wasn't talking about that, but OK Boomer.

[–] Scary_le_Poo 1 points 2 months ago

You're about 30 years off, but nice try.

You absolutely were talking about that. Maybe not as your main point, but it was part of your statement.

[–] tal@lemmy.today 6 points 3 months ago

The other day though, I tried to use the blame view on a large file and ran into an issue I don’t remember seeing before: I just couldn’t find the line of code I was searching for. I threw various keywords from that line into the browser’s command+F search box, and nothing came up. I was stumped until a moment later, while I was idly scrolling the page while doing the search again, and it finally found the line I was looking for. I realized what must have happened.

Oh, I think I hit that too. Obnoxious.

I didn't care that much, though, because normally I'd rather just use a local client (git directly or maybe magit in emacs).

the once-industry-leading status page no longer reports minor availability issues in an even vaguely timely manner;

Can't deal with issue-tracking with a local client, though.

[–] mark@programming.dev 4 points 3 months ago* (last edited 3 months ago)

I don't think this is an anti-React post, like the other commenters are implying.

This issue would occur when attempting to search any webpage with the web browser's builtin search feature before the content has a chance to load in. This happens if the page requires JavaScript to load, which is the case with React apps.

[–] 0xDREADBEEF@programming.dev 1 points 3 months ago* (last edited 3 months ago) (1 children)

The fact that the dates in the commit log are relative is stupid as shit. I am looking for the commit on March 14th at 3pm, not "last year"

edit: I'm an idiot 😭

edit 2: I just noticed that GitHub's git log does show exact dates, only as headings though, not on each commit.

[–] JackbyDev@programming.dev 1 points 3 months ago

Don't be xkcd Denver coder, tell us how you fixed this shit right now

[–] DavidDoesLemmy@aussie.zone 1 points 3 months ago

They should try Bitbucket