• 0 Posts
  • 124 Comments
Joined 1 year ago
cake
Cake day: June 6th, 2023

help-circle


  • This is giving me stress daymares about Spanish in high school.

    Still, it’s an interesting point you make.

    But then again, with definitive articles you have a bunch of things that are not supposed to convey gender conveying gender. Like a toaster… It would suck to have to remember the gender of a toaster, or, well toasters in general.




  • Great meme, and I’m sure op knows this, but for anyone else who is curious…

    007 in theory means:

    • 00: you have already committed your code to your local code base
    • 7: When you try to merge your code with everyone else’s there are 7 files that others have worked on since you last refreshed your local code base.

    To resolve this, you need to go file by file and compare your changes with the changes on the remote code. You need to keep the changes others have made and incorporate your own.

    You can use git diff file_name to see the differences.

    If you have made small changes, it’s easier to pull and force an overwrite of your local code and make changes again.

    However multiple people working on the same files is usually a sign of organizational issues with management. Ie, typically you don’t want multiple people working on the same files at the same time, to avoid stuff like this.

    If you’re not sure, ask someone that knows what they’re doing before you follow any advice on Lemmy.







  • There are still things I use reddit for, but only because Google sucks so much now. Like if I’m looking for the best something to buy, I’ll add “reddit” at the end so I don’t get pages and pages of ads.

    Otherwise, all my previously reddit-based entertainment comes from Lemmy, especially since all the activists seemed to have gone back. Lemmy is now fun again!





  • erogenouswarzone@lemmy.mltoProgrammer Humor@lemmy.ml*Permanently Deleted*
    link
    fedilink
    English
    arrow-up
    2
    arrow-down
    1
    ·
    edit-2
    9 months ago

    No offense, but I know how to read a stack trace, and yes locate a familiar file - if you’re lucky enough to have one listed therein.

    My point is, there is no excuse for them being so terrible except that they’ve always been that way.

    The important information should be brief and at the top. This is design 101. The same ideas that have driven newspaper articles and websites for as long as the two have been a thing.

    You put the important stuff in big letters at the top, and the rest, if you need it, is beneath the fold.

    Edit: just to drive the point home: I’m sure it’s not the packages I’ve downloaded that are causing the error, I am positive it is my code, so show me where my code had a mistake first. Then you can show me the horrible “wall of text” that is the stack trace so I can understand it better later, but 99% of the time, just seeing the line that caused the error is enough to know what the problem is.