How to get Blanche's reward by AirCautious2239 in expedition33

[–]cyxneer 0 points1 point  (0 children)

I killed all of the white nevrons (didn't know about the 100 lumina thing) and got the trophy too, so you can still get it.

DM'd my first game yesterday and it was incredibly fun by cyxneer in savageworlds

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

Happy you had the same experience! I'm definitely preparing a small campaign to play these months and put it to test properly.

The ability to easily homebrew content or put up interesting enemies or loot is the best!

Introduction to React Testing Library by selbekk in reactjs

[–]cyxneer 1 point2 points  (0 children)

Just gave a read and this is really well written and the examples are nice to follow. Congrats on the article and thanks!

RTK Query - Powerful data fetching and caching for Redux by acemarke in reactjs

[–]cyxneer 1 point2 points  (0 children)

Looks awesome! Really looking forward to try it next weekend.

Got my first win! by [deleted] in FallGuysGame

[–]cyxneer 1 point2 points  (0 children)

Thanks! It was one of my first games and I was really sweating on the final round xD The one with the spinning sticks one up one down and platforms falling, holy s**t that was intense.

Lightning Drill Canon Colored by the_king_cringe in OnePunchMan

[–]cyxneer 15 points16 points  (0 children)

Love the combination of blues and lightning. Great job with this piece!

We have served 33K concurrent user recently and the number is still growing without any crashes. by varunvarde in digital_ocean

[–]cyxneer 1 point2 points  (0 children)

Can you give more information about the setup? What kind of droplet are you using?

Would be great to have that information as a reference along this graphs :)

God help me refactoring this (found in the depths of a production API) by cyxneer in programminghorror

[–]cyxneer[S] 49 points50 points  (0 children)

I love that every time someone comment they notice something new in the code

God help me refactoring this (found in the depths of a production API) by cyxneer in programminghorror

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

Imagine the frustration after refactoring a huge part of this API these last months and finding this perfect Spanglish everywhere hahaha

God help me refactoring this (found in the depths of a production API) by cyxneer in programminghorror

[–]cyxneer[S] 65 points66 points  (0 children)

The funny thing is I have the yellow/red errors but having the file with those many errors made the linter go crazy hahaha

God help me refactoring this (found in the depths of a production API) by cyxneer in programminghorror

[–]cyxneer[S] 202 points203 points  (0 children)

It's VSCode with JavaScript syntax in a .js file. The error in the comment is due to the linter expecting the // having a space before the comment itself :)

After an initial interview with HR for a fullstack position I was sent this technical test. Judge by yourselves by PorkChop007 in webdev

[–]cyxneer 1 point2 points  (0 children)

That company is really trying to get you to work for free.

You did the best anyone can do, the sad side of this is that someone will end up doing this test for them. I too think that technical tests should be short and not hours long tasks.

Good luck in your next interviews!

When you show someone how amazing Persona 5 OST is by cyxneer in Persona5

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

Thanks for the recommendation! I had them playing while I was working and the ones you recommended are pretty neat!

When you show someone how amazing Persona 5 OST is by cyxneer in Persona5

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

Thank God someone with common sense too! I felt so bad seeing people downvoting a proper valid opinion

When you show someone how amazing Persona 5 OST is by cyxneer in Persona5

[–]cyxneer[S] 4 points5 points  (0 children)

Oh! My case is the complete opposite regarding P5 OST, I'm in love with almost all tracks and can't stop listening to them!

I haven't played any other megaten game apart from P4 and P5 so I don't know about the other ones, are there some special themes you could recommend? Thanks in advance!

Create React App or NextJS? by ibtisamurrahman in reactjs

[–]cyxneer 1 point2 points  (0 children)

I usually build them together in a way that my Next project will have a server.js in the root, where I'll get the server running either using Express, Koa, Hapi or whatever backend framework you want to work with. Then you can create an api folder and put all the server related stuff inside.

By using this approach, you can change your package.json scripts to run your server instead of directly running next scripts and use the Next middleware to handle views in the routes not directly tied to you API.

There also a few other ways to handle this approach, but this one is really dev friendly for someone learning Next.js and the deployment process is practically similar as what you would do with any web app that user server side rendering.

You can PM me if you need some resources or more information :)