[-] bizdelnick@lemmy.ml 70 points 3 weeks ago

no functional programming languages like Rust

What?

[-] bizdelnick@lemmy.ml 35 points 3 weeks ago* (last edited 3 weeks ago)

What does an ordinary RHEL admin do when something does not work?

answersetenforce 0

[-] bizdelnick@lemmy.ml 34 points 3 weeks ago

Vim (or emacs, or any other advanced text editor) is much easier to use than nano when you need to do something more complex than type couple of lines.

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

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

[-] bizdelnick@lemmy.ml 49 points 5 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 7 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 8 months ago

Any distro you are comfortable with.

[-] bizdelnick@lemmy.ml 35 points 9 months ago

You don't have to do everything through terminal. You can use synaptic for example. What you have to do is to learn new concepts. If you want to do everything like in windows, use windows.

2
submitted 9 months ago by bizdelnick@lemmy.ml to c/golang@lemmy.ml
16
submitted 9 months ago by bizdelnick@lemmy.ml to c/linux@lemmy.ml
3
submitted 9 months ago by bizdelnick@lemmy.ml to c/golang@lemmy.ml
[-] bizdelnick@lemmy.ml 165 points 9 months ago* (last edited 9 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 32 points 10 months ago

Reinstall? Why?

Create a separate partition for /home and don't format it when reinstalling, so you will keep all your stuff.

[-] bizdelnick@lemmy.ml 41 points 10 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 11 months ago

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

21
submitted 11 months ago* (last edited 11 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