hottari

joined 3 years ago
[–] hottari@lemmy.ml 7 points 10 months ago

You should learn how to use ssh. Running Firefox on top of Xorg is a disaster waiting to happen.

[–] hottari@lemmy.ml 5 points 10 months ago (1 children)

I wonder why...

[–] hottari@lemmy.ml 4 points 10 months ago

Looks like you are running rootless.

[–] hottari@lemmy.ml -4 points 10 months ago

You are reading too much into the comment.

[–] hottari@lemmy.ml -4 points 10 months ago (2 children)
  1. Am not promoting Linux, I don't know where you got that idea from.
  2. How is it hostility when am letting OP know that's exactly what's included in the package when he chose Linux? And that unlike Windows where you install downloaded files as programs, things work differently over here?
  3. You can install malware by blindly copypasting commands on any terminal, the OS doesn't matter.
[–] hottari@lemmy.ml 4 points 10 months ago

I've had my Nextcloud exposed for a long while now without any incidents (that I know of). I know automatic updates are not generally recommended but if you want a lighter load, you could use LSIO's docker container (I use the standard db in the sample config). I run mine that way with watchtower and can't recall ever in recent times when an update broke Nextcloud. Other than that, nextcloud has a brute-force plugin and you could consider overall hardening the entry points of the machine hosting Nextcloud (e.g ssh).

[–] hottari@lemmy.ml -5 points 10 months ago (11 children)

Yes and with good reason. To prevent people like yourself from downloading and running malware.

[–] hottari@lemmy.ml 20 points 10 months ago

None. I don't make a habit of keeping "misbehaving" apps around. If I can't get to the bottom of a specific issue that app is getting the boot from my stable.

[–] hottari@lemmy.ml 12 points 10 months ago* (last edited 10 months ago)

They got hit with their first cloud AI GPU compute bill...

[–] hottari@lemmy.ml 1 points 10 months ago

Not exactly. OP mentions he's interested in using cloudflare/github pages where the security is managed by those platforms not the user.

[–] hottari@lemmy.ml -3 points 10 months ago (2 children)

If you concerned about your exposed services being hacked, why not learn how to protect them properly from bad actors? There exists a wide range of solutions that attempt to specifically solve this problem.

[–] hottari@lemmy.ml 8 points 10 months ago

Most modern devices should support x265 playback which has the compression sizes you are looking for.

In addition to setting the cap to file sizes for media, you can also blacklist tags like REMUX etc.

This is an example of a custom format for hevc/x265 files that are no larger than 6Gigs. You just need to create a new custom quality profile and give below custom format a positive/higher score.

{
  "name": "Minima",
  "includeCustomFormatWhenRenaming": false,
  "specifications": [
    {
      "name": "No mo than 6 Gigs",
      "implementation": "SizeSpecification",
      "negate": false,
      "required": true,
      "fields": {
        "min": 0,
        "max": 6
      }
    },
    {
      "name": "1080p",
      "implementation": "ResolutionSpecification",
      "negate": false,
      "required": true,
      "fields": {
        "value": 1080
      }
    },
    {
      "name": "eng",
      "implementation": "LanguageSpecification",
      "negate": false,
      "required": false,
      "fields": {
        "value": 1
      }
    },
    {
      "name": "Preferred x265",
      "implementation": "ReleaseTitleSpecification",
      "negate": false,
      "required": false,
      "fields": {
        "value": "[xh][ ._-]?265|\\\\bHEVC(\\\\b|\\\\d)"
      }
    }
  ]
}
view more: ‹ prev next ›