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

help-circle


  • You probably won’t be able to run an LTS kernel on a brand new PC that just hit the market. But using the most recent kernel for arch or a derivative like endevorOS should work after like a week maximum.

    I did have an issue like this on Ubuntu and its what made me actually start distro hopping since it worked fine on fedora and Arch using the latest kernels.


  • In TBD, it’s not a “release” until its production ready. The methodology and philosophy doesn’t prevent you from developing multiple feature branches at once or even deploying a work in progress feature branch to a dev environment.

    All TBD requires in that case is once the feature branch is production ready, it’s merged to the trunk. You may need to add a feature toggle if there are multiple release like for different architectures. And you also might benefit from using git tags and deploying to production from a git tag instead of the most recent commit on a branch.

    Exactly what you need to do is going to depend on the project’s exact needs but TBD is totally possible in that example.




  • CubitOom@infosec.pubtoMemes@lemmy.mlCinema
    link
    fedilink
    English
    arrow-up
    5
    ·
    4 months ago

    True, but some are more so than others. Like in spirited away. It’s kinda more just hinted at and it’s not central to the plot of the film. Which is why I think it’s more popular of a film in countries that rely on war and exploitation.



  • CubitOom@infosec.pubtoMemes@lemmy.mlCinema
    link
    fedilink
    English
    arrow-up
    13
    ·
    4 months ago

    You should try a few more.

    • Castle in the sky
    • Nausicaä of the Valley of the Wind
    • Grave of the fireflies (followed by My Neighbor Totoro as it was originally released as a double feature)

    I’m not sure why Spirited away seems to be the go to Ghibli film (maybe it is less offensive) but it’s probably one of my least favorites from the studio.







  • CubitOom@infosec.pubtoMemes@lemmy.mlChat Apps
    link
    fedilink
    English
    arrow-up
    1
    ·
    edit-2
    4 months ago

    From a maximum security perspective, you should be checking all the code you install on your computer. No matter if it is foss, audited by some group, or proprietary (if possible). What would stop a bad actor from auditing malicious code and approving it?

    As for sandboxing, there’s multiple options, not the least of which is containerization.

    Again, security is a compromise. More security normally comes at some cost just as less security does.

    But back to the topic of the post. You are complaining that SimpleX doesn’t work when installed though a flatpak (because one doesn’t exist). So perhaps it’s not a good software to rely on flatpaks for. Unless you choose to only install software via flatpaks, to which I’d say that’s admirable but also perhaps needlessly limiting. Either way it’s your choice, but I would suggest some open mindedness of options that may let you use the software you want.



  • CubitOom@infosec.pubtoMemes@lemmy.mlChat Apps
    link
    fedilink
    English
    arrow-up
    1
    ·
    4 months ago

    Security is a compromise between convenience and safety.

    However, simply using flatpaks isn’t inherently more secure than using a binary or compiling from source. But it can make it easier to be secure for people that don’t want to manage their own sandboxes.

    It’s also easier for devs so they only have to make one version of their app which in theory should work on all systems. But in practice I find it doesn’t always work that way