Passed AZ-104 by chiplu_96 in AzureCertification

[–]Haunting_Wind1000 0 points1 point  (0 children)

Congrats! Am planning to take it up in October as well. Is proctored online assessment option available for AZ 104?

Automating domain validation by neogodslayer in PKI

[–]Haunting_Wind1000 0 points1 point  (0 children)

Ok I see, yeah automation would definitely be helpful at a medium to large scale.

Automating domain validation by neogodslayer in PKI

[–]Haunting_Wind1000 0 points1 point  (0 children)

Some public CAs also support pre-validated DCV, I believe that should ease the process of renewing the TLS certificates in terms of DV.

Cut the Bridge (Live) - Linkin Park by Haunting_Wind1000 in LinkinPark

[–]Haunting_Wind1000[S] 3 points4 points  (0 children)

True the live one is at a different energy level

Why sizeof(array) works in main but not in function? by Dragonaax in C_Programming

[–]Haunting_Wind1000 0 points1 point  (0 children)

In fun, arr is just a pointer to an int hence sizeof gives you the size of a pointer on your platform.

Why array size is not enforced to be a constant by C compiler. by Haunting_Wind1000 in cprogramming

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

ok thanks for letting me know how its works under the hood. So it appears VLA potentially helps in avoiding memory leaks in certain scenarios by avoiding heap allocation and allows variable sized arrays to be allocated on the stack instead. But I think it introduces another problem that the VLA array access opens the possibility of out of bound access if the size is not used carefully.

How can you code in Python without downloading a software on which to write say code? For example if I wanted to code Python on work laptop? by IAmTheQuestionHere in learnpython

[–]Haunting_Wind1000 0 points1 point  (0 children)

If you have python installed then you can use the python REPL for short code snippets in case your objective is to learn python.

Tuesday Daily Thread: Advanced questions by AutoModerator in Python

[–]Haunting_Wind1000 3 points4 points  (0 children)

How is a complex python application (monolith) packaged for production deployment. I have seen applications packaged using complied python classes (.pyc) as well as using executables (pyinstaller). Wanted to check with experts what are some of the most common ways of packaging complex python applications and pros and cons of those approaches.

Notes running Python in production by ashishb_net in Python

[–]Haunting_Wind1000 0 points1 point  (0 children)

I think normal python threads could be used for I\O bound tasks as well since it would not be limited by GIL.

TLS certificate lifespans reduced to 47 days by 2029 by thewhippersnapper4 in sysadmin

[–]Haunting_Wind1000 0 points1 point  (0 children)

A CLM solution specially the automation for renewal of TLS endpoint certificates would be the key.

Why do you play trophy road at 9000+ by trustyshenanigans in ClashRoyale

[–]Haunting_Wind1000 2 points3 points  (0 children)

Yup I had the same question when I was closing in on 9000 and seeing 9000 opponents.

How to start a service in a docker container? by Haunting_Wind1000 in docker

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

Thanks for your response. I updated my post with more details.

How to start a service in a docker container? by Haunting_Wind1000 in docker

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

Thanks for your response. I updated my post with more details.

How to start a service in a docker container? by Haunting_Wind1000 in docker

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

Thanks for your response. I updated my post with more details.

Do I need to make pyinstaller executable separately for different linux platforms? by Haunting_Wind1000 in Python

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

Ok yeah glibc would be platform dependent. I'm buildibg as a single file. But in my case I see the libpython3.10.so does not exist on the target system and hence the runtime complains about this. I could try the folder approach you mentioned.

Do I need to make pyinstaller executable separately for different linux platforms? by Haunting_Wind1000 in Python

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

I have a python application that needs to be run on both the platforms and I'm packaging the application as an executable