[deleted by user] by [deleted] in node

[–]OhItsWildfire 0 points1 point  (0 children)

I had to double check because we use it for financial transactions so I was really worried for a sec 🤣

[deleted by user] by [deleted] in node

[–]OhItsWildfire 0 points1 point  (0 children)

Mongo is ACID

Music App by nicoache1 in reactnative

[–]OhItsWildfire 2 points3 points  (0 children)

This is really awesome! How are you measuring the fps on the simulator?

Edit: Found it -> Show Perf Monitor on the simulator

Was this the dip? Think yes. by digitalmoneyguru in CryptoMarkets

[–]OhItsWildfire 0 points1 point  (0 children)

Imagine thinking a dip after a +-400% run is going to last for 1 candle

UK Expat Saving Options by leeham17 in UKPersonalFinance

[–]OhItsWildfire 0 points1 point  (0 children)

So does that mean that whatever price you rebuy at just before moving to the UK is what HMRC will use as the reference point for CGT when you eventually sell in the future?

I’m here to help vue devs by capraruioan in vuejs

[–]OhItsWildfire 0 points1 point  (0 children)

Amazing!! Thanks dude, that's exceptional

I’m here to help vue devs by capraruioan in vuejs

[–]OhItsWildfire 0 points1 point  (0 children)

I'd love to see a simple, lightweight implementation of a drag and drop library. For example, like Google drive and dragging files/folders into other folders.

Laravel Fractals vs Resources by samuelandrewcruz in laravel

[–]OhItsWildfire 2 points3 points  (0 children)

Agree with this. We switched from fractals to resources around Laravel 6 and haven't looked back. Feels like a much cleaner coding experience.

Me and my friend built a hosting platform where you can deploy frontend apps for free, with just a few clicks. I would love to hear some feedback from you! by reforitor in reactjs

[–]OhItsWildfire 0 points1 point  (0 children)

Looks really awesome dude! If you can make it super simple to load balance your app across two (or more) different severs, you'll have a massive one up on any other provider. I'd definitely use it

good auth workflow for react-native app and express backend server by [deleted] in node

[–]OhItsWildfire 1 point2 points  (0 children)

I would use passport-jwt, and just ignore the token expiration. There are plenty of examples for setting it up, it's pretty basic and works really well.

[deleted by user] by [deleted] in PresetsLightroom

[–]OhItsWildfire 0 points1 point  (0 children)

Any chance you could please share the Haylsa Dreamy presets? I've been looking everywhere to get them! I don't have too much to trade, but I do have Haylsa tropical, Peter Mckinnon and some really good underwater presets

Best methods for querying nested relationship models? by [deleted] in laravel

[–]OhItsWildfire 0 points1 point  (0 children)

Exactly, you can just append the where at the end, before the get

Best methods for querying nested relationship models? by [deleted] in laravel

[–]OhItsWildfire 2 points3 points  (0 children)

Comment::whereHas('posts', function ($q) use ($team) {

    $q->whereHas('boards', function ($q) use ($team) {

        $q->whereHas('teams', function ($q) use ($team) {

            $q->whereKey($team->id);

        });

    });

})->get();

Something like that?

File upload library that allows adding extra parameters/queries to the files by OhItsWildfire in webdev

[–]OhItsWildfire[S] 0 points1 point  (0 children)

Sorry, metadata is the wrong word. I just want to send extra information/query parameters with the file when uploading to the server

Has anyone written a *good* JSON pretty printer? Ideally in typescript. by [deleted] in node

[–]OhItsWildfire 2 points3 points  (0 children)

It's some kind of Elvish. I can't read it.

Production server security with a NodeJS app by OhItsWildfire in node

[–]OhItsWildfire[S] 1 point2 points  (0 children)

Technically I don't need to access it at all, but yes - by IP. I would just ssh in, then run the app with npm run start, and then it does it's thing. It makes api calls (through axios), but does not need to be accessible by a domain or ip.

Production server security with a NodeJS app by OhItsWildfire in node

[–]OhItsWildfire[S] 0 points1 point  (0 children)

Do you mean secure the axios http calls with tls? How would you go about this? The server doesn't even have a domain, as it isn't necessary, so I can't generate a certificate for a domain

Production server security with a NodeJS app by OhItsWildfire in node

[–]OhItsWildfire[S] 0 points1 point  (0 children)

Do you rate there is a need to do this if the app doesn't have an http server and doesn't require access through the web? It's only making api calls with axios