• 3 posts
  • 160 comments
Joined 3 years ago
Cake day: June 19th, 2023
  • Also: January is not always the 1st month, sometimes it is the 0th.

    1/1/2026 can be both Jan 1st, and Feb 1st.


    For the downvoters, try it in your browser’s terminal:

    let test = new Date("1-1-2026");
    
    console.log(`Year: ${test.getFullYear()}, Month: ${test.getMonth()}, Day: ${test.getDate()}`);
    // Prints -> Year: 2026, Month: 0, Day: 1
    
    // --- --- --- --- --- --- --- ---
    
    // test.getFullYear() returns the year, but test.getYear() only returns the number of years since 1900
    
    // test.getMonth() returns the month, but the first month is 0-indexed
    
    // test.getDate() returns the day, 1-indexed, but test.getDay() returns the current day right now and not the day of the date object
    
    
  • More like “why the fuck would I walk all the way across the city now that I own a car”

    That’s a bad analogy.

    Using an LLM for coding gives you an initial speed up with the trade off being skill atrophy, and a build up of cognitive debt in the project.

    A better analogy would be the Greek government before their national debt crisis. It would have been better to invest in themselves, not lie about their own finances, and not kick the can down the road. But they kept lying and kicking the can down the road because it was easier in the short term. Of course, we all know how that turned out in the end.

  • It’s Phoronix, the articles are good but the comments on every article are unbearable.

    It’s basically a meme at this point.

    There’s a bunch of people in the forum with poor awareness and emotional control throwing tantrums, typically over any project with a code of conduct (even something as simple as “Don’t be an asshole”) because they believe it infringes on their right to be inconsiderate.

    New projects want to avoid the drama and issues of projects from decades past, so naturally they add codes of conduct which causes those folks above to have hissyfits everywhere about those projects anytime they or something adjacent to them is mentioned.

    Most places warn then kick those users out, and then there’s Phoronix.

  • I don’t understand comments like this

    It’s a wishlist of Open tickets. Wouldn’t necessarily even call this a commitment to a roadmap.

    Roadmaps are just wishlists with a committed to priority list, like an assembly line. Programming doesn’t work like an assembly line and anyone trying to convince you to the contrary is bullshiting marketing.

    Every task has the potential to bring forwards new information that changes the order in which tasks should be completed, let alone which tasks even need to attempted. You only get all the information once you’ve finished.

    Instead of having an inflexible commitment, use a wishlist, and do the tasks in order of which one makes the most sense at the time.

    75% of Open tickets will never get resolved anyway.

    Based on what?

    You can clearly see that practically all tickets in their previous epoch were resolved: https://github.com/orgs/pop-os/projects/23/insights?period=max

  • If I were a uutils developer, I would stay far away from all of these discussions because of how much hate is directed towards it.

    I only see the hate towards this project being either from anti-rust trolls, or misdirected hate from Ubuntu towards switching to a new coreutils implementation on an LTS release before full compatibility has been achieved. I don’t see any hate in regards to licensing.

    If they do not adopt the license you prefer, would it be better for them to just go ahead and abandon the whole effort? Are there efforts really so valueless simply because they chose the license that they did?

    Their efforts have value, but the value is limited by its current license. MIT licenced projects have a recurring history of being improved privately without those improvements going back into the project. It leads to a lot of duplicated, wasted effort. There may also be the potential for patent issues with the licence. No one wants to deal with some litigious asshole or company going after the project turning it radioactive.

    Moreover, is dictating to volunteers what license they should be using for their code what you think this community should be about?

    I think bringing up issues with the project is definitely something that should be brought up. As for dictating which particular licence is used, that’s up to the contributors, but that doesn’t mean others can’t give their input. It’s also likely that most of the contributors will want a license that allows the project to safely continue into the future.

    You claim that it is important that people make tons noise in every single post on uutils because it will prevent a bad scenario down the line, but could you detail what that scenario is? Because people like to make allusions to such a scenario constantly but refuse to get specific and then engage on a discussion on the specifics.

    I thought the Redis example was a good example of this.

    I continue on this point further down, but I’m leaving this right now to stay on topic with redis.

    Incidentally, your choice of Redis is an example exactly illustrates my point that this license is not a gigantic deal it shows that the worst case scenario is… uutils being forked.

    The community was fractured. A report by an enterprise support company said 75% of existing redis users were motivated to seek alternatives. I’m not sure what number you would consider to be a gigantic deal, but Redis certainly thought it was, otherwise they would not have reverted back to the previous license.

    Heck, it can even be forked at any time with a copyleft license precisely because its existing language is permissive.

    It can be forked, but relicensing can mean needing permission from every contributor of the original, and/or removing all contributions from those who don’t agree to the new licence. Not to mention the community fracturing, and legal issues. It’s a massive effort that can be prevented by the original project choosing a better license earlier.

    You claim that it is important that people make tons noise in every single post on uutils because it will prevent a bad scenario down the line, but could you detail what that scenario is? Because people like to make allusions to such a scenario constantly but refuse to get specific and then engage on a discussion on the specifics.

    Well this comment is probably getting too long, so I’ll simply point you towards the busybox licensing drama.

  • So it needs to be commented on in every single article?

    Yes

    If so, is that going to change anything?

    Potentially.

    The alternative is not bringing up the concern and it goes forgotten until it is too late and we are stuck with the results of bad decisions for no good reason.

    Developers voicing their concerns is the only way things can change for the better.

    Here’s two examples:

    1. Redis licensing rug pull

      • Redis unexpectly changed its own licencing
      • Developers demanded Redis return to its original (or similar) licence
      • Redis said no
      • Developers formed their own Redis clones from scratch with compatible APIs
      • Developers switched to the new Redis replacements
      • Redis returned back to the original licence in an attempt to keep existing users
    2. Google’s JpegXL whiplash

      • Google added support for jpegxl in Chrome
      • Google removed support for jpegxl in Chrome in favour of inferior standards
      • Developers demanded support added back
      • Google said no
      • Developers flooded every issue tracker and feature request with support for jpegxl, consistently, unrelentingly, for years
      • Other browsers add support for jpegxl
      • Creative industry adds support for jpegxl
      • PDF association adds support for jpegxl
      • Google forced choose between jpegxl or fall out of supporting pdf standard
      • Google readds jpegxl support

    And there’s plenty of other examples (e.g. Microsoft against linux -> WSL support, etc…)

    If developers don’t voice their concerns, then things stop changing for the better.