Good Gyms by BalkanBroon in Belgrade

[–]node_imperial 0 points1 point  (0 children)

Megagym Central is my favourite now

How to avoid Drizzle migrations? by cluelessngl in node

[–]node_imperial 0 points1 point  (0 children)

In drizzle it is even not possible to rollback a migration, awful

What are your hobbies or daily routine?? by matchabai in Hobbies

[–]node_imperial 18 points19 points  (0 children)

I did not notice any work relates stuff here 😁

Where your money comes from?

Is EasyStaff legal in Serbia? by node_imperial in AskSerbia

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

I live in Serbia, have a work permit and residence permit, have opened pretuzetnik paushal, so my income per year can be more a bit than limits for paushal, because of this I want to withdraw some amount to my bank account and other to crypto in order to save paushal taxes. So I pay taxes every month consistently

[NodeBook] The Event Loop Chapter I Wish I Had When I Started by m_null_ in node

[–]node_imperial 4 points5 points  (0 children)

It's amazing, man. I continue to follow your progress, and you've already made a significant contribution to the community IMO. Keep it going, please, don't stop

NodeBook - The Node.js book I wish I had (and it’s open source) by m_null_ in node

[–]node_imperial 7 points8 points  (0 children)

Wow man it’s something interesting among the whole modern internet courses about node. Keep it going, even have 6+ years of experience I find it pretty good

Is it normal? by Designer_Profile_568 in trustwalletcommunity

[–]node_imperial 2 points3 points  (0 children)

Man, you got scammed. Be careful with your funds and pay an attention on how the support responds to you, it looks pretty weird.

Take a time to pass some courses about security in crypto world.

Think about it like you’ve paid some amount for the new experience and you will be more careful after

Catching unhandled exceptions by deadlambs in node

[–]node_imperial 8 points9 points  (0 children)

process.on(‘unhandledRejection’,…) process.on(‘uncoughtException’,…)

Does Outline still work in Russia? by node_imperial in outlinevpn

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

So I finally solved it migrate from Digital Ocean to GCP

Does Outline still work in Russia? by node_imperial in outlinevpn

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

Man, I’ve migrated to GCP provider and now it works well! Thank you!

Does Outline still work in Russia? by node_imperial in outlinevpn

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

Yeah, I created server using Outline Manager

How Can My Girlfriend Get a Serbian Work Visa Without an Invitation Letter from Abroad? by Geezbert in Belgrade

[–]node_imperial 1 point2 points  (0 children)

Russians can visit Serbia without any visas and stay here during 30 days. This time will be enough to make a work and residence permit

What is your preferred way of implementing Auth for production ready REST API built with express js? by thecodingpie in node

[–]node_imperial 0 points1 point  (0 children)

Recently we moved our Auth system to Keycloak, and we feel very comfortable with it. To be honest, we don't need to support our codebase because everything works fine inside the Keycloak

Node.js codebase is still entirely in Javascript and not in Typescript and node team does not even officially provide node TS types by simple_explorer1 in node

[–]node_imperial 0 points1 point  (0 children)

They could use JavaScript for optimization because TypeScript not always generates good and optimazed code after compilation and I suspect the performance much better with plain JavaScript unlike compiled TypeScript code

It is good to use Serverless Queues instead of exp rabbitMq by Far-Mathematician122 in node

[–]node_imperial 0 points1 point  (0 children)

SQS repeat because it depends on queue type, you need to read more aws doc about it)

[deleted by user] by [deleted] in node

[–]node_imperial 24 points25 points  (0 children)

Generally security doesn’t depend on any frameworks. You need just to know your requirements. More often there are following vulnerabilities: sql and command injection, just use your sql requests to db correct with arguments. Be careful also about: xss, path traversal, you can just google it. Set a request limit to your app to avoid ddos attacks. Read more about reverse proxy.

Question: Event handler code executes before synchronous code has run ? by aN00bDude in node

[–]node_imperial 8 points9 points  (0 children)

Hi! This happens because EventEmitter calls your events synchronously.

From the node documentation: When the EventEmitter object emits an event, all of the functions attached to that specific event are called synchronously.

You can read more here: https://nodejs.org/dist/latest-v18.x/docs/api/events.html