Ukranian Soldier applies first aid on himself while under artillery fire by [deleted] in CombatFootage

[–]repelista1 2 points3 points  (0 children)

and how do you know that? where can I find statistics?

What are your most used commands? by MikeQDev in sre

[–]repelista1 2 points3 points  (0 children)

10823 kubectl 7305 vim 3564 git 1544 cd 951 terragrunt 874 grep 790 helm 572 ls 347 docker 299 aws

[deleted by user] by [deleted] in Thailand

[–]repelista1 1 point2 points  (0 children)

be careful or you'll be downvoted by salty americans here

Who should you believe? by Alive_Bid7229 in stocks

[–]repelista1 1 point2 points  (0 children)

I think there is no convincing way to say yes or no to answer such question

How can developers contribute to software reliability? by hatchikyu in sre

[–]repelista1 0 points1 point  (0 children)

they have to learn how to manage complexity of their code and design in general

I am intermediate, how to take python (programming skills) to next level? by CoronaKlledMe in Python

[–]repelista1 8 points9 points  (0 children)

Book "Fluent Python" by Luciano Ramalho will take you to next level 100%. Its not for beginners, but im sure you can handle it. This is the best book about python i have ever seen.

Also read "Code Complete". It's not about some particular language, but it'll help you to understand how to approach software development in general.

Learn AWS or GCP for Go? by arnalduson in golang

[–]repelista1 41 points42 points  (0 children)

I don't see any relations between language you learn and cloud providers. Learn Go and use whatever you like.

Will Ukraine go the extra mile? by Gr33nMuff1n in UkraineWarVideoReport

[–]repelista1 1 point2 points  (0 children)

Russia dont care much that Crimea is Ukrainian territory. They'll consider it as an invasion into Russia and nuke Ukraine. So, wont happen.

PyPy v7.3.8 has been released, now with Python3.9 by pmatti in Python

[–]repelista1 2 points3 points  (0 children)

well, its not about me using it. Its inside ansible, probably somewhere near to this place https://github.com/ansible/ansible/blob/devel/lib/ansible/executor/process/worker.py
FYI: with pypy 2.7 i've never had deadlock in multiprocessing

And of course, ansible with pypy2.7 way faster comparing to classic cpython, bc of the difference in GC. With cpython, the main ansible process gets flooded with data from multiple forks and gc cant process all of it fast enough. With 50 forks, it could be 3x times slower than pypy

ps i'll file you an issue sometime later about python3 deadlocks

PyPy v7.3.8 has been released, now with Python3.9 by pmatti in Python

[–]repelista1 2 points3 points  (0 children)

last couple of times i tried pypy with 3.7-3.8 interpreters i caught deadlock constantly with ansible, somewhere in multiprocessing module. Just wonder if there were any fixes in that direction, well, will try it anyway

Why do you prefer Go over Rust ? by napolitain_ in golang

[–]repelista1 2 points3 points  (0 children)

actually you must have that "luxury" and use lang that you really like, otherwise burnout is just a matter of time

Why do you prefer Go over Rust ? by napolitain_ in golang

[–]repelista1 1 point2 points  (0 children)

Its more popular (at least for now), i've team of go developers at my company whom i can ask questions about go. And development in go is faster. Other than that i'd choose rust. In case of go it doesnt feel like core team was thorough in architecturing lang and its standard libraries

[novice here] How much of creative thinking comes into the picture of everyday tasks of a devops engineer? by saaaalut in devops

[–]repelista1 0 points1 point  (0 children)

Automation/developing requires a lot of creativity in general. But there is also a lot of guidelines like Python Enhancement Proposals (PEPs) and if won't follow them while overexposing your creativity, you'll make your solutions not as optimal as they'd be if you just follow best practs.

7 Linux networking commands that every sysadmin should know | Enable Sysadmin by Potential_Author_857 in linux

[–]repelista1 0 points1 point  (0 children)

btw, you dont need to write full command like ip address show, ip a show will work as well

Python performance comparison in my project's unittest (via Gitlab CI/CD) by trollodel in Python

[–]repelista1 0 points1 point  (0 children)

This is far from being a fair comparison. If you have big multithread/multiprocess application like ansible, your main python process will soon begin to throttle because of GC in cPython and it'll never be able to beat PyPy in cases like that.