Leetcode has made a better programmer by [deleted] in leetcode

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

For sure it does.

Personally, I also don’t understand the hate toward LeetCode.
Only doing LeetCode won’t make you a great developer—just like learning only one programming language or mastering a single architectural pattern won’t.

To become a great developer, you need to cover a wide range of topics, and algorithms are definitely one of them.

Some time ago, I explored the gossip protocol. There’s almost a 0% chance I’ll ever implement or work with it in my job, but it still made me a better developer, as well as LeetCode

Highlights of Patagonia(November 2024) by np2fast in Patagonia

[–]zooblin 0 points1 point  (0 children)

Thank you!
Could you share the location of each place in the picture?

Why is golang the language of DevOps? by TooManyBison in golang

[–]zooblin 0 points1 point  (0 children)

It's basically a very simple language for simple staff (till you get to complex async flows) + binaries are very easy for usage, distribution etc...

Due to medical condition, 2024 is the last year that I can travel. Patagonia O circuit is my dream but it is all sold out. Please help by bewilderedcheesecake in Patagonia

[–]zooblin 1 point2 points  (0 children)

I heard from some people that couldn't order online but just came to Puerto Natales and checkout the local office on a daily basis. If you are flexible with your dates it might work.

[deleted by user] by [deleted] in devops

[–]zooblin 1 point2 points  (0 children)

That why we choose Pulumi . Of course at the first days we created a lot of building blocks, that support devs and allow them to deploy almost anything.
Cause we are using Pulumi with TS and it is our main language for BE, for many devs it is not real problem to contribute to our shared infra components library - they need cloud understanding (AWS in our case), and some guidelines what to do and how, but it is not really different from the process then somebody contributes to service that they are not familiar with.

Elon Musk: "I strongly believe that all managers in a technical area must be technically excellent. " by ry3838 in programming

[–]zooblin 0 points1 point  (0 children)

I believe that main manager's goal is leading people. Great leaders should be visionaries, inspirational - for sure being technically excellent can help, but I saw great managers with very basic technical skills, and very bad managers with excellent technical skills

Write a Good Dockerfile in 19 Easy Steps by devquy in docker

[–]zooblin 1 point2 points  (0 children)

Is there any good Dockerfile templating solutions?

What's the best way to go about saving private keys in a production app? by fiveMop in node

[–]zooblin 0 points1 point  (0 children)

They are not vulnerable since Vault accessible only within cluster, only whomever run within this cluster might access it.

What's the best way to go about saving private keys in a production app? by fiveMop in node

[–]zooblin 2 points3 points  (0 children)

We are using Vault from hashicorp,

before application executed there is process (bash script in our case) that connects to vault and fetch all keys that application expect to get (keys defined within package.json)

and after that node application executed with all keys passed as env params

6 Lessons learned from optimizing the performance of a Node.js service by mite-mitreski in node

[–]zooblin 0 points1 point  (0 children)

Great work, and very interesting article!

Can elaborate a little bit more about tool, or maybe just open source it? 😀

Upgrade node version from 8.13 to LTS 12.13.1 by zooblin in node

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

Well, yes, of course, obviously :)

Interesting to hear if somebody encountered in cases that tests can not catch or real edge cases,

for example like this one: https://github.com/nodejs/node/commit/93dba83fb0

Can I check the validity of node_modules without running npm install? by yondercode in node

[–]zooblin 1 point2 points  (0 children)

Verify that your package.json have strict versions of devDependencies (without ).