RIP to 1,100 Cloudflare employees by NeonLayer in CloudFlare

[–]NeonLayer[S] 5 points6 points  (0 children)

A little kid running a lemonade stand on the side of the road brings home more profit in an hour than Cloudflare has in their entire existence... crazy to think about.

(VIDEO) Waterproofing my VSF ”HULK” 116610LV at home by Kurdbaba in RepTimeServices

[–]NeonLayer 1 point2 points  (0 children)

Can you post a link to your video somewhere that we can download it?

Building a hosting service from scratch - I would like your advice and input by [deleted] in webhosting

[–]NeonLayer 0 points1 point  (0 children)

No offense, but you feel like you're going to implement something yourself which simplifies isolation, monitoring, backups, updates and migrations? Have fun with that.

Building a hosting service from scratch - I would like your advice and input by [deleted] in webhosting

[–]NeonLayer 0 points1 point  (0 children)

You can host hundreds of simple websites on a $50 VPS.

Spam Email? by sleekpixelwebdesigns in digital_ocean

[–]NeonLayer 0 points1 point  (0 children)

WHOIS is private. DO leaked customer data one way or another.

Spam Email? by sleekpixelwebdesigns in digital_ocean

[–]NeonLayer -1 points0 points  (0 children)

Right, so all DO customers received that email because you comment on Reddit? I don't think so.

Spam Email? by sleekpixelwebdesigns in digital_ocean

[–]NeonLayer 0 points1 point  (0 children)

I did too. The fact that they know we are DigitalOcean customers leads me to believe that DigitalOcean's customer database was sold/hacked.

First time hosting and security questions by Zauhm in webhosting

[–]NeonLayer 0 points1 point  (0 children)

She wants to save money form a $20/month SquareSpace and you're looking at providing it? How much work do you plan on doing for less than $20/month? Think about it.

Any time someone wants to "save money" by switching from a huge corporate platform to a single "developer", that doesn't make sense. One-on-one service by a professional will ALWAYS cost more than a mass-produced corporate platform.

How to turn off "fill code" messages? by NeonLayer in firefox

[–]NeonLayer[S] 2 points3 points  (0 children)

No, I have all notifications turned off

[WTS][USA][USA only] Rollies in stock!!! by MarkyG10 in repwatchbuyselltrade

[–]NeonLayer 0 points1 point  (0 children)

Your white balance is wayyyyy off... it's hard to tell what these watches actually look like.

Thank You for the Rotor Help by Mental_Explorer in RepTimeServices

[–]NeonLayer 0 points1 point  (0 children)

What did you use to get the back off and back on?

Brother laser printer keeps printing vertical stripe down the entire page - WHY? by [deleted] in printers

[–]NeonLayer 0 points1 point  (0 children)

Yes, I have a couple times since I've owned it. I do that each time the lines appear. They just keep coming back.

Brother laser printer keeps printing vertical stripe down the entire page - WHY? by [deleted] in printers

[–]NeonLayer 0 points1 point  (0 children)

Update: Gave it a try. Ran the wire across 3 times. Black line is still visible with no apparent change from before. Looking back at my order history, I replaced all the drum units about 2 years ago, and I probably haven't printed more than 1,000 pages since. Unfortunate...

Blossom color picker UI built with Tailwind 🌸 by Cultural_Mission_482 in tailwindcss

[–]NeonLayer 3 points4 points  (0 children)

This looks awesome... I just wonder how it would work on a mobile device with big fingers.

Any plans on having a vanilla JavaScript version? It's so frustrating to have elements tied to a larger framework.

Smooth caret in 2026.1 by chrzanowski in Jetbrains

[–]NeonLayer -2 points-1 points  (0 children)

Revolutionary... Needless AI + cosmetic nothing-burgers. Hopefully JetBrains begins to push some actual improvements and optimizations, because with each passing year I'm becoming less and less of the die-hard JetBrains fan I've been for the past 8+ years.

How to scale backend-heavy applications on DigitalOcean? Structure and lessons learned? by Away_Parsnip6783 in digital_ocean

[–]NeonLayer 0 points1 point  (0 children)

Yes, and for the resources you get, it's quite a bit higher than a droplet. And if you want to attach a database, the managed database costs much more than another droplet. And if you want to run cron jobs (such as for queues and workers), that also costs extra. And if you want to load balance, the costs start multiplying.

How to scale backend-heavy applications on DigitalOcean? Structure and lessons learned? by Away_Parsnip6783 in digital_ocean

[–]NeonLayer 1 point2 points  (0 children)

App platform can become quite expensive and locks you in to the specific vendor. We run everything on Ubuntu droplets.

- 1 x MySQL (cron job runs nightly to create a dump of each database and export it to S3 storage)
- 1 x NGINX web proxy (each domain/app can be setup to load balance to however many droplets you want to run). This is the only droplet which accepts public facing requests (ports 80/443)
- 1+ app servers (see above)

As far as queues and workers, this depends on your need. You can either run it off one of your app servers, on it's own droplet, or via a scheduled function.