pavelbr's comments

pavelbr | 3 years ago | on: Java record pattern matching in JDK 19

C# has been adding new major language features all the time since its inception, including pretty much everything we are seeing being added to Java these days.

pavelbr | 7 years ago | on: GitHub publishes DMCA deletion notifications sent by Bilibili

I'm a new developer (an intern, actually). I just started writing a system that requires a couple secret strings. Currently I just have them as constants with my code, with the idea that I'll figure out something to do with them once I make sure everything is working.

What should I do with those secrets though? I'm not sure how to store them securely. So far I've been considering putting them in the server configuration so they can be read from environment variables, but that seems inconvenient for me and other developers and also not that much more secure.

pavelbr | 7 years ago | on: Kdenlive: an open-source video editor

Maybe software for specifically Linux is kinda KDE's whole thing. I'm just happy they go out of their way to package and test their code against other OSs in the first place.

pavelbr | 7 years ago | on: The Legend of Nintendo

Ubisoft's Tom Clancy games are still generally Gameplay.

Rainbow Six Siege is still one of my favorites.

pavelbr | 7 years ago | on: Hello, GitHub

GitHub owns and maintains Atom, and it's biggest competitor is VS Code.

pavelbr | 8 years ago | on: Improving performance with Stackless Python

I don't know about gevent, but stackless will work with any libraries in the same way CPython does, which makes sense given it's just a fork. Native extensions obviously won't benefit from stackless but still work with it.

Exceptions and threads don't mix well however, so using Stackless' microthreads with code that relies on exceptions will likely lead to slowdown, so there are a few things to be aware of.

page 1