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

help-circle



  • This is what you said:

    While that may be partly true, (also likely) depending on the county you’re located, they’re not able to revoke the license though.

    The same is true for Steam, laws are laws

    So in this specific case you having the files makes a world of difference.

    You also have the files if you downloaded them on Steam. What’s important is whether those files can be used on their own or if they’re protected by some form of DRM. If the files can be used on their own it doesn’t matter if you got them from Steam, GoG or a physical disc. If on the other hand the files are DRM protected you having them is useless, whoever controls the DRM controls your files, again regardless of where you got the files from.





  • Not the user you’ve asked but I’m using Silverbullet and have been loving it, it ticks every box of what I was looking for:

    • Self hosted
    • Stores files in plain markdown text format
    • You can edit those files externally and Silverbullet picks up the changes
    • Allows customization and expansion easily
    • Provides queries that allow you to extend markdown to pull data from other files
    • These use an SQLite db to get these things to work fast, but if you delete them they get regenerated
    • Can be easily synchronized with multiple nodes by using synching to sync the markdown files


  • I’ve tried several, but I’ve had a major incident and lost all of the recipes I had because of a database corruption.

    So I decided against keeping recipes in databases. I migrated to Notion, but I kept looking for a replacement since that’s not self-hosted. Eventually I ran across Silverbullet, and I’ve been using it for everything, so far it’s been great. Not exactly specifically what you asked but it can be used for it and works great.


  • Long story short:

    1. CO released an unoptimized game
    2. Community complained
    3. CO vowed to fix it before releasing DLCs
    4. CO released an assets only DLC
    5. Community complained they broke their promise
    6. CO tried to explain it’s different teams
    7. Community kept complaining
    8. CO refunded the DLC for everyone and removed it from Steam and will add the content for free in the next update
    9. Community gets refund and assets become gray boxes until the new version is released
    10. Community complains about grey boxes

    Yes, CO did bad releasing an unoptimized game, but if you put pressure for a cosmetic DLC to be removed you can’t be angry that they removed said DLC.


  • O was going to make a weak suggestion, but the more I read the stronger my suggestion becomes. I strongly recommend you look at Silverbullet. It’s similar to Obsidian in that everything is a markdown file, but has an excellent query language. For example in a random file I add a task with a tag, e.g.

    * [ ] Do something [priority: 30]
    

    Then on my homepage I have this block of code:

    \```query
    task where done = false and
    priority > 0
    order by priority desc
    render [[Library/Core/Query/Task]]
    \```
    

    Which renders as a list of all my tasks on all my files ordered by priority, you can see how this becomes extremely customizable, e.g. using where page = Some/Page will only render tasks from that page.

    It’s not a kanban board like you asked, but it’s great for all those stuff, and it’s highly customizable to whatever you need.

    You can keep track of problems each on their own page and have a frontmatter with general information that can be queried as if it were a database.

    For example I keep one page for each tool I use at my work, and on the index of my work I have a table that shows these tools and links or cli examples.