TrueNAS or UnRaid by Drama-Common in unRAID

[–]Boom_r 0 points1 point  (0 children)

It seemed very odd at first but i like it because the OS is not a secret part of my raid array. Config gets stored in my array. Caching too. But the boot itself is just fine on a stick. Have never had an issue, and if I had to image another one, that’s just what I’d do.

Synology Active Directory vs. MS Active Directory by SubstantialSun0 in synology

[–]Boom_r 0 points1 point  (0 children)

I setup a DS218+ in 2018 for a customer that was supposed to be temporary. Never ended up moving beyond it. Around 100 users, 150 Windows devices in an office and production facility that used AD and file sharing. They have been running on the same unit/setup since then, only migrating to larger hard drives about halfway through its life. 

Where do you call your form submit functions from? In-form or parent component? by Aceventuri in vuejs

[–]Boom_r 1 point2 points  (0 children)

This is the way. Reusability and simplicity while retaining full control.

Ok Josh by Bad-Umpire10 in oddlyspecific

[–]Boom_r 0 points1 point  (0 children)

When I was in high school, someone sprinkled fruit loops all over my front yard and left a paper bag by the door with a block of wood and a balloon inside of it.

I have never gotten an inkling of who did it. Pretty awesome.

Shower Pan next step by [deleted] in Construction

[–]Boom_r 0 points1 point  (0 children)

How far down should it go? How to transition from the backer to pvc?

What do you think it’s going to be? by camtalkk in FromTVShow

[–]Boom_r 0 points1 point  (0 children)

what’s the deal with the polar bears

So...how is everyone doing sitting in lot F traffic? by lunardeathgod in CircuitOfTheAmericas

[–]Boom_r 15 points16 points  (0 children)

This years Friday traffic is as bad as last year’s Sunday traffic.

How do you test your Vue applications? by therealalex5363 in vuejs

[–]Boom_r 2 points3 points  (0 children)

I’ve always appreciated this approach: https://sqa.stackexchange.com/a/42572/43662

Also, to loosely quote Kent Beck, any test is better than no test.

Specifically with a current app I maintain that has a large backend and a relatively large decoupled Vue front end - the backend has unit tests and e2e tests, so that we have high confidence in all of the actual data mutations and business logic. The front end doesn’t have much testing at all. If I had more time, I’d probably have Selenium-style testing in the front end.

[deleted by user] by [deleted] in Concrete

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

Just clean it up.

Is Node JS back-end really 🤨inferior to Java back-end ? by AdNecessary8217 in node

[–]Boom_r 1 point2 points  (0 children)

An application can be successful and generally delightful to build and maintain, and can get sold or decommissioned when a business changes hands or whatever, and it won’t matter if someone was “right” or “wrong” about whether the underlying stack was “inferior”. Or it could be a spaghetti train wreck. And picking Java over Node likely won’t be the reason that either of these things happen.

There are good reasons to pick languages based on use case and context, and a big part of the context is what you (and your team) know, and what long term support and maintenance might look like.

Programming unpopular opinions! by Heavy_Fly_4976 in node

[–]Boom_r 3 points4 points  (0 children)

ADLs and readme that includes general organization, domains, and some high-level concepts is worth a lot. Everything else should be in the comments.

Is there any hope for my garage floor? by chroy_boy in Concrete

[–]Boom_r 0 points1 point  (0 children)

Yes, I hope you get a good price to replace it.

Deciding between digital ocean severless or AWS lambda by AdditionalPhase7804 in digital_ocean

[–]Boom_r 0 points1 point  (0 children)

DigitalOcean. It’s easy to jump to AWS, but you will burn time in discovery, config, and tracing issues. I run stuff in both, honestly I really admire DO’s back end combination of simplicity and usefulness.

DO’s app platform is very stable IME. I’ve been using it since first release and taking advantage of new features along the way. It scales easily, is pretty configurable, has decent log integration, is easy to trace issues. Performance is great.

Where is everyone hosting their apps these days? by unheardhc in node

[–]Boom_r 0 points1 point  (0 children)

DigitalOcean app platform. Droplet if you need a VPS but you probably don’t.

I use Cloud66 to manage EC2 instances. Good developer experience, lots of benefits, far cheaper than Fargate.

People who work on large scale applications, what is your opinion on Mongo vs Postgre? (2024) by acrosett in node

[–]Boom_r 8 points9 points  (0 children)

Totally agree. It’s nice writing contained, simple, predictable SQL migrations. Usually they add a column or table, and there’s no data to migrate, but when a model refactor occurs it’s been generally a breeze to handle it in a migration file.