• 0 Posts
  • 127 Comments
Joined 3 years ago
cake
Cake day: June 24th, 2023

help-circle


  • AWS and similar are very expensive compared to a simple VPS. However, AWS offer things that is hard to do on a VPS, not impossible of course but just hard.

    Like automatic scaling, your site suddently gets on the frontpage of slashdot/hn/reddit/etc and get 1000x the normal traffic? Your VPS will probaly choke and render error pages for most of the traffic. On a correctly configured AWS scaling deployment, you won’t even notice it. And not only for your webserver, you can do the same for data

    And other features like multiregional and easier CDN (also in multiregion) integration.

    There are of course problems with AWS also, sometimes you don’t want your site to scale uncontrollably. If you get DDoSed without mitigatiln, for example, you could end up with a huge bill for nothing.

    So, as with almost everything in life. It depends what your goal is and how much you want to spend.




  • Tanoh@lemmy.worldtomemes@lemmy.worldTessNote
    link
    fedilink
    arrow-up
    8
    ·
    15 days ago

    Perhaps their regex engine is insultingly bad. But I assume they would use the basic js/ts which is not that bad.

    Some croak on just about anything except basic matching, look ahead, look behind, no capture groups, etc… pfft. Too advanced


  • I lived at a place many years ago, and the landlord wanted to increase the rent from 900 to 1300. Which was just a fantasy number for the area. I countered with 1000, because moving is a hassle and it was an ok place. They said no, so we moved.

    Then the place was vacant for years afterwards. I always chuckled when I walked past it. Great job, instead of getting a steady income, you try to gouge your tenant and get nothing! Art of the deal level right there.



  • You could also actually just use it. Just because it is physically located on the root disk doesn’t mean you can’t add some directories and give your user full access to them.

    I usually have a /mnt/scratch, usually on another disk (hence mnt). Or you could make another steam library in /opt/. Steam can have multiple data locations.

    The purists might yell at you, but it is your system. If you have space to spare in root use it, just remember what is where if you need/want to reinstall at some point.

    Edit: or just nuke the NTFS partition, and use that partition as extra storage. Usually you don’t need that much in root, and if you do you can always symlink to another dir to get around it. Just remember to copy anything that might be useful from the ntfs! User/<foo> has a lot of data, I would copy at least that. Reading ntfs data is not a problem from linux, writing is more hit and miss.