[-] bizdelnick@lemmy.ml -5 points 4 days ago

It is easy to get hacked if you make stupid mistakes. Just don't make them.

[-] bizdelnick@lemmy.ml 6 points 4 days ago

That's why I wrote this. There's a chance that the developer will read my comment and improve animations.

[-] bizdelnick@lemmy.ml 5 points 4 days ago

Wolves move very unrealistically.

[-] bizdelnick@lemmy.ml 12 points 5 days ago

And not only did everything “just work” flawlessly, but it’s so much faster and more polished than I ever knew Linux to be!

Congrats, you are very lucky. But try to survive couple of version upgrades before recommending it to noobs.

[-] bizdelnick@lemmy.ml 6 points 5 days ago

You have to replace these lines with something similar to this (change libaacs to libgcrypt everywhere). Then run autoreconf -iv (you must have autoconf installed). It will create a new ./configure script which will work if you did everything correctly.

Refer to documentation.

[-] bizdelnick@lemmy.ml 81 points 2 months ago

Don't search tasks for a tool. Search a tool for your tasks.

[-] bizdelnick@lemmy.ml 49 points 2 months ago

Jenkins is not a modern CI. It is a historical milestone, but if you read an article you should see that it was replaced by other tools. Now I don't recommend considering Jenkins for new projects. It it fast to set up but extremely hard to support and full of old bugs and legacy code. Writing Groovy pipelines is much harder than pipelines in gitlab/github/forgejo/etc. Tens of plugins you have to use even for simple tasks have inconsistent syntax, many of them are buggy, they often become unsupported or deprecated. This all consumes lot of resourses: I maintain an instance that eats ~4G of RAM being idle.

[-] bizdelnick@lemmy.ml 41 points 4 months ago

Premature optimization is the root of all evil. Implement algorithm the easiest way possible, profile your application, determine if this implementation a bottleneck or no. If yes, try other implementations, benchmark them and find the fastest one. Note that optimized go code can be faster than non-optimal code in rust, C, assembly or any other language.

[-] bizdelnick@lemmy.ml 49 points 5 months ago

Any distro you are comfortable with.

16
submitted 6 months ago by bizdelnick@lemmy.ml to c/linux@lemmy.ml
[-] bizdelnick@lemmy.ml 166 points 7 months ago* (last edited 7 months ago)

You don't have to clean your ~/.cache every now and then. You have to figure out which program eats so much space there, ensure that it is not misconfigured and file a bugreport.

[-] bizdelnick@lemmy.ml 41 points 7 months ago

I totally disagree. Git is not hard. The way people learn git is hard. Most developers learn a couple of commands and believe they know git, but they don't. Most teachers teach to use those commands and some more advanced commands, but this does not help to understand git. Learning commands sucks. It is like a cargo cult: you just do something similar to what others do and expect the same result, but you don't understand how it works and why sometimes it does not do what you expect.

To understand git, you don't need to learn commands. Commands are simple and you can always consult a man page to know how to do something if you understand how it should work. You only need to learn core concepts first, but nobody does. The reference git book is "Pro Git" and it perfectly explains how git works, but you need to start reading from the last chapter, 10 Git Internals. The concepts described there are very simple, but nobody starts learning git with them, almost nobody teaches them in the beginning of classes. That's why git seems so hard.

[-] bizdelnick@lemmy.ml 38 points 8 months ago

I usually use something like du -sh * | sort -hr | less, so you don't need to install anything on your machine.

22
submitted 8 months ago* (last edited 8 months ago) by bizdelnick@lemmy.ml to c/lemmy@lemmy.ml

What a hell is going on? I expect to see everything inside backticks exactly as I typed, but something happens to ''>" and "<" characters. In the preview everything is fine, but after submitting the post it breaks:

  • "<" → &lt;
  • ">" → >
  • "<<" → &lt;&lt;
  • ">>" → >>
  • "<a>" → ``
  • "</a>" → ``
view more: next ›

bizdelnick

joined 1 year ago