• 0 Posts
  • 24 Comments
Joined 6 months ago
cake
Cake day: January 14th, 2024

help-circle

  • Yeah, it’s bad. Surprised they’re still serving that crap in their own bundle but i guess some things don’t change.

    Filezilla is no relation to mozilla. But yeah i moved away from it years ago. The general recommendation I’ve seen is “anything but filezilla”. Personally i use winscp for windows, and will have to figure out what to use when i switch my daily driver to Linux.






  • ResoluteCatnap@lemmy.mltoSelfhosted@lemmy.worldSelf-hosted diary
    link
    fedilink
    English
    arrow-up
    1
    ·
    edit-2
    29 days ago

    Id set up a static website with Hugo. You can preview and build locally. Or put it on your home network and vpn in if you need remote access to make an entry.

    In your content folder you could do content/[year]/[month]/[day]/index.md, and have a _index.md in the year and in month folders so there would be pages with automatic collection of articles under that year/ month. You could also subdivide the content folder into health/ general/ shower thoughts and other “types” of journals

    They have support for tags, categories, and custom taxonomies. So if you wanted to have “people” category you could, and then a “thing” category or any other sort of way to tag the content.

    https://gohugo.io/







  • This is why re-licensing a Free software project, even from GPL-2 to GPL-3 can be really painful: you have to contact each contributor and acquire the right to change the license.

    Is that true if you leave in the license the “or (at your option) any later version” text regarding what version youre using? I understood that to mean that even if i accept contributions then my licensing clearly defines it as GPL-3 or later version so I’m able to relicense to a future GPL-4 if i wanted. Or would i still need to get any contributors agreement to relicense?






  • If you haven’t already, check out https://choosealicense.com/licenses/ . This gives a broad overview of the common open source licenses. And if you’re just starting out, one of the first things you’ll want to learn is that the licenses fall into either a permissive or copyleft category. You’ll want to make sure you understand the difference between those broad categories.

    Shortly, permissive have less to no strings attached to use their code, and copyleft requires you to retain the same licensing terms meaning if you publish under GPLv3 then someone using/ modifying your code needs to also publish under GPLv3. Copyleft licenses ensure that open source code stays open source.