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

help-circle



  • It was written as part of my work.

    check your contract, you might not own the code and your organization may have a process to determine how to license something.

    to your other questions (IANAL)

    1. prior work wont be licensed, meaning no one but the owner of the work is allowed to do anything with versions prior to the license
    2. you don’t have to, but i can’t see a reason why you should not.
    3. GPL might mean that other work depending on gpl licensed code has to be licensed in a gpl compatible way, depending on how exactly you depend on it and how you distribute your dependencies. MIT/BSD is easier here, if you don’t plan to license everything with the GPL anyway.



  • And no, I have not tested it because I don’t know how I’m actually supposed to do that.

    depends on what you backup and how.

    if it’s just “dumb” files (videos, music pictures etc.), just retrieve them from your backups and check if you can open the files.

    complex stuff? probably try to rebuild the complex stuff from a backup and check if it works as expected and is in the state you expect it to be in. how to do that really depends on the complex stuff.

    i’d guess for most people it’s enough to make sure to backup dumb files and configurations, so they can rebuild their stuff rather than being able to restore a complex system in exactly the same state it was in before bad things happened.







  • It’s absent in the biologist sure, she is driven by curiosity, and the loss of her partner.

    But the Director? She saw numerous highly skilled people enter the are without returning, but still thought she could somehow make a difference and ultimately understand what area x is.

    Lowry still thinks it’s something he could, and only him could deal with, so he keeps messing with the missions and has everyone brainwashed.

    Control atleast starts out thinking he has the reigns in hand, but he atleast begins to understand how ununderstandable the situation is to him.

    But to be honest, i found it really hard to get anything from the books where i could say: “yeah, that’s definitely something this is about” it has many themes and layers and it’s just so thoroughly weird that i am not really sure about anything i experienced reading it.




  • Most clients are web browsers and support for torrents in http is the same as for every other file.

    So that would only give us a use for torrents as a form of content distribution plattform to get the actual files closer to the client.

    In cases where we have actual non browser clients: i like to curate what i am distributing and don’t want to distribute anything i happen stumble upon or would you be willing to store and more importantly share everything you find on 4chan or that might show up in your mastodon feed?


  • I think i have roughly three categories for this.

    Needs: i need food/ my meds/ a train ticket to get to work

    Wants: stuff that i want for me beyond the needs, e.g. hobby stuff like a tripod if one is into photography or dinner in a nice restaurant from time to time

    Desires: stuff thats purely for pleasure. Like candy, or a new phone if the old one is still working or very expensive hobby related material, like that carbon tripod with all the bells and whistles, or material i allready own plenty of, like video games.

    Asking myself if something is still a want vs a desire stopped some impulse buys, but this desires very very tempting




  • It becomes pretty nice if you use a templating engine to generate html server side. Context: 95% of my work projects are java with spring boot and JavaScript applications for the front end.

    I used turbo (other js library, very simmiliar) for some prototypes and having the complete state of an application in the backend and the ability to reuse so much of my html templates allowed me to iterate pretty fast on ideas. And using htmx or turbo does not mean you can’t write js ever, but you can use it for purely ui functions and leave a lot of application logic to the backend, while still avoiding full page reloads and other cool features of typical JavaScript applications.

    Big fan of the idea behind htmx, would love to actually use it for stuff that goes into production. I guess it would also be really nice for existing projects with lots of html allready written.