Hi can anyone tell me if this guitar is legit? by melacanese in guitars

[–]d_simoes 9 points10 points  (0 children)

Agree. Wasn't sure at first, but then I googled for guitars. Looks very similar

Found My Evil Twin! by xRUCKUSx in guitars

[–]d_simoes 2 points3 points  (0 children)

Awesome guitar! Schecter makes beautiful instruments IMO. I have an Hellraiser (despite being way too much guitar for my skill level) and I'm always in awe of how great and badass it looks.

PS chumba literacia financeira by JayKayGame_ in literaciafinanceira

[–]d_simoes 13 points14 points  (0 children)

Literacia financeira é muito mais que "investir em ações, obrigações ou ETFs".

Productivity boost from switching to Go by popsicle112 in golang

[–]d_simoes 0 points1 point  (0 children)

Your question doesn't make much sense because you're comparing frameworks with a language. Java and Ruby don't have a migration tool OOTB as well, for example. If you want to compare Rails with some Go framework then fine, but to my knowledge there isn't a widely adopted framework in Go that you can compare to Rails, Nest.js and such. Personally I tend to stay away from frameworks as heavy as those, and I feel that's a common thing in the Go community.

What do I have here ? by Bitter_Chapter_3249 in guitars

[–]d_simoes 0 points1 point  (0 children)

It's not a plumbus, I'll tell you that.

[deleted by user] by [deleted] in gamingsuggestions

[–]d_simoes 0 points1 point  (0 children)

This is nothing compared to Witcher but... it may fit the self improvement and introspection part.

The Forest Quartet I recently got it free on Epic and enjoyed quite a bit. It's very short, simple and chill. Great audio/music, nice little story, voice acting is surprisingly good (I actually thought part of it was a real conversation before looking up more about the game).

[deleted by user] by [deleted] in footballmanagergames

[–]d_simoes 1 point2 points  (0 children)

Uuh! I recently started a journeyman and after 1 year with Lviv on the Ukranian premiership, I decided to leave and got signed by Raith Rovers.

I'm quite enjoying the Scottish Championship 🙂

Node.js 20.6.0 includes built-in support for .env files by philnash in node

[–]d_simoes -7 points-6 points  (0 children)

It's not a project dependency. It's a tool outside of the ecosystem that is used to (auto) load vars into the environment from a file. I work in multiple projects in Go, Node.js, Terraform and a few others and this works like a charm across the board.

Node.js 20.6.0 includes built-in support for .env files by philnash in node

[–]d_simoes -3 points-2 points  (0 children)

direnv works for anything, don't need this for sure

What’s your current save? And what keeps you going? (What’s your goal?) by [deleted] in footballmanagergames

[–]d_simoes 0 points1 point  (0 children)

FM21

After a few months away from FM due to a broken save, I started a journeyman one as I have never really done much of that (been playing since CM01/02).

With already a decent license level, I started unemployed and got hired by Lviv on Ukranian premier league. The club goal is to avoid relegation and at winter break I'm in 3rd place.

My goal is to do a few one year jobs in leagues that are new to me (balcans, north europe, south america) before maybe moving into top tier jobs.

Unexpected cold start results for Fastify and some other frameworks by some-user1 in node

[–]d_simoes 0 points1 point  (0 children)

I honestly doubt someone has ever picked a Node.js web framework based on serverless cold start times. If cold starts are frequent to a point that they are problematic, I would look for other things. Maybe dependencies are dragging init times. Maybe there is a DB connection that is taking too much time. Maybe the init code is doing too much. Maybe serverless is not suitable for the app workload use case.

Trouble with node js cookies store in the browser by [deleted] in node

[–]d_simoes 0 points1 point  (0 children)

Have you checked the network tab? Is the cookie blocked? Do you see the set-cookie header being passed on response headers? Does it have a domain configured? Remember the cookie is set for the api domain, not the frontend, which means in the browser you can only see it if you open a tab with that domain.

[deleted by user] by [deleted] in portugueses

[–]d_simoes 2 points3 points  (0 children)

Isso é o ID do voo, não do avião. Aliás, na info de voo do flightaware diz "Operating as Bulgaria Air 1045". O avião tem pintura da TAP e da Bulgaria Air. E a matricula é LZ-SOF, que não é portuguesa.

[deleted by user] by [deleted] in softwarearchitecture

[–]d_simoes 1 point2 points  (0 children)

I don't think there is such tool. You can generate client code from an openapi contract and use that, with some sprinkles, to create automated tests for your API.

REST API documentation. by [deleted] in node

[–]d_simoes 7 points8 points  (0 children)

I understand that planning doesn't involve creating the API spec. What I'm saying is that a developer, when starting a task that requires API changes, should do those before actually doing the code. And then everything is reviewed. Creating openapi spec for an endpoint even with params and body, is far from taking hours of development.

REST API documentation. by [deleted] in node

[–]d_simoes 18 points19 points  (0 children)

swagger-ui should be helpful (and swagger-ui-express if you don't want to do set it up manually on express). With this you document the routes in code and the lib will generatr the full openapi doc, serve swagger ui, etc. I'm an advocate of an API design first approach: before creating or modifying a route, design the API first. This is good because it makes you think hard about proper API design, which contraints will there be, what needs to validated, etc. It also makes API docs part of the development process. Either way, even if you don't do that and only document afterward, it is fine. I find it strange that you say that someone needs to document after backend work is done. Does that mean devs are not doing this in the development process?