vim
- 0 Posts
- 59 Comments
bizdelnick@lemmy.mlto
Programming@programming.dev•How do i extract encrypted video blobs?
6·9 months agoTry to disable EME in your browser. Would such videos become unencrypted or just stop working at all?
In Firefox it is the
media.eme.enabledsetting inabout:config.
bizdelnick@lemmy.mlto
Programming@programming.dev•Introducing OnlyNv: Your one-stop solution for managing environment variables.
11·10 months agoI’d rather prefer CI-level variables (macros?) that are not exported to the environment. Unfortunately, most CI developers don’t care about security.
bizdelnick@lemmy.mlto
Programming@programming.dev•Introducing OnlyNv: Your one-stop solution for managing environment variables.
62·11 months agoThe best way to manage environment variables: don’t use environment variables.
bizdelnick@lemmy.mlto
Programming@programming.dev•Mistakes and cool things to do with arena allocators
71·11 months agoCool, but what is Odin? If there’s no Wikipedia article about something, it doesn’t exist.
Camel book is the best technical book I ever read. It’s unlikely that you’ll program Perl, but it’s really fun to read.
The Practice of Programming is the must.
bizdelnick@lemmy.mlto
Programming@programming.dev•Where can I find a debugger with a GUI for Linux?
32·1 year agoNot built-in. It uses
gdborlldbor another standalone debugger.
bizdelnick@lemmy.mlto
Programming@programming.dev•Where can I find a debugger with a GUI for Linux?
11·1 year agodeleted by creator
bizdelnick@lemmy.mlto
Programming@programming.dev•Where can I find a debugger with a GUI for Linux?
7·1 year agoTry
ddd. Also IDEs usually can be integrated withgdband other popular debuggers.
bizdelnick@lemmy.mlto
Programming@programming.dev•Falsehoods programmers believe about languages
4·1 year agoThere are perfect guidelines on preparing translatable strings in the GNU gettext documentation.
bizdelnick@lemmy.mlto
Programming@programming.dev•Looking for a system/application language that is better than C/C++
691·1 year agono functional programming languages like Rust
What?
bizdelnick@lemmy.mlto
Programming@programming.dev•What to do if I accidentally commit an API key or other sensitive information to the git repo?
8·2 years agoIf you didn’t push your changes yet, you can use
git filter-branchto remove it from all your commits. If you already pushed (or figured out that someone committed and pushed a key), you can do the same with force-push, but also revoke the key.
A bit too late. 20 years ago this would be great. (I started 12 years ago, used it for couple of hobby projects.)
bizdelnick@lemmy.mlto
Programming@programming.dev•I spent a 2+ years and all my personal savings making this game (alone). I love survival games, but I also like cooking... so how about survival game with realistic cooking & eating animations?
6·2 years agoThat’s why I wrote this. There’s a chance that the developer will read my comment and improve animations.
shis for shell.
bizdelnick@lemmy.mlto
Programming@programming.dev•What programming language ruby, python og javascript?
116·2 years agoTake a look at Dart+Flutter.
Python would be OK. Ruby is nearly dead nowadays. JS itself is used rarely, better consider using TS (however I don’t recommend using them for anything other than web frontend). Go is a great language but it’s unpopular in GUI development.
Ask AI to do this for you.