• 0 Posts
  • 146 Comments
Joined 3 years ago
cake
Cake day: June 16th, 2023

help-circle

  • I still feel like it should apply, this is the first term of the gpl:

    This License applies to any program or other work which contains a notice placed by the copyright holder saying it may be distributed under the terms of this General Public License. The “Program”, below, refers to any such program or work, and a “work based on the Program” means either the Program or any derivative work under copyright law: that is to say, a work containing the Program or a portion of it, either verbatim or with modifications and/or translated into another language

    “I rewrote it in another language as a library instead of an exe” is still covered under this term isn’t it?


  • I feel like rewriting a GPL thing based on the GPL version should require the GPL licence. After all, you’ve built something on top of GPL code which means it’s also GPL right?

    If I go and build my own implimentation of GTK, how do I even prove that I made it entirely without looking at GTK because that’s what’s required to relicense right?

    Solely from the fact that I’m telling you I made my own implementation of GTK, I’m admitting It’s not clean room right?







  • Solemarc@lemmy.worldtoGames@lemmy.worldDid nightreign flop?
    link
    fedilink
    English
    arrow-up
    2
    arrow-down
    1
    ·
    edit-2
    1 year ago

    I wouldn’t say it’s a flop but it is kinda light on content. I finished they game on week 1 played a bit more on week 2 where nothing changed I then uninstalled it. I’m back right now because they’ve released new content though.

    Most games do have huge concurrent player falloffs pretty quickly helldivers 2 currently has a 24hr peak of 63k and I wouldn’t call it a flop. Path of Exile 2 currently has a 24hr peak of 17k players, I wouldnt call it a flop. Somehow Dragon age veilguard was at the top of the steam charts in week 1 and we all know it was a flop. I’m not sure steam charts are a particularly useful metric. Fromsoft seems very happy with the amount of players in NightReign and that’s probably the most useful metric we have.




  • My completely unqualified position is that manjaro is not more stable than arch, in fact, according to the news manjaro’s changes are just more instability. I’ve been running basic arch & KDE for 6 months now and it hasn’t been perfect. The biggest issue I’ve had so far is; “using the scroll wheel in the KDE start menu will crash the DE” and that was fixed in a day.


  • I had a fun one this week! I needed to make an SQL query that would aggregate rows by invoice and date, but only aggregate 5 then overflow to a new row. I also needed to access the individual row data because the invoice items weren’t summed, they were displayed on separate columns!

    I ask my senior if there’s an easy way to do this, he comes back with “chatgpt says you can assign row numbers then get individual row data with % row number”

    I go to Gemini and ask “how to aggregate rows by 5 and get individual row data out?” It says “you can’t” (since when has Ai’s been able to say you can’t do X) So I ask it about the modulo operator and it gives me an example that doesn’t really work. After screwing around for a while I give up and decide I’ll just run this query 3 times. 1 for rows 1-5 then for 6-10 and one more for 11-15 that’s so many rows surely no one will break this.






  • It’s funny, to me I’ve had an llm give me the wrong answer to questions every time.

    The first time I couldn’t remember how to read a file as a string in python and it got me most of the way there. But I trusted the answer thinking “yeah, that looks right” but it was wrong, I just got the io class I didn’t call the read() function.

    The other time it was an out of date answer. I asked it how to do a thing in bevy and it gave me an answer that was deprecated. I can sort of understand that though, bevy is new and not amazingly documented.

    On a different note, my senior who is all PHP, no python, no bash, has used LLM’s to help him write python and bash. It’s not the best code, I’ve had to do optimisations on his bash code to make it run on CI without taking 25 minutes, but it’s definitely been useful to him with python and bash, he was hired as a PHP dev.