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

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

[-] bizdelnick@lemmy.ml 49 points 3 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 26 points 4 months ago

In Debian and, probably, Ubuntu you may install the wine-binfmt package to get all *.exes running with wine automatically. However I don't recommend doing so because it is very easy to run some windows trojan with this.

[-] bizdelnick@lemmy.ml 33 points 4 months ago* (last edited 4 months ago)

104 contributions in last year on codeberg, 52 contributions on github (some are duplicated from codeberg due to mirroring), some more in other places.

[-] bizdelnick@lemmy.ml 28 points 5 months ago* (last edited 5 months ago)

I wonder if Matt calculated CVSS score before calling this vulnerability "critical".

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

Any distro you are comfortable with.

[-] bizdelnick@lemmy.ml 34 points 6 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 7 months ago by bizdelnick@lemmy.ml to c/golang@lemmy.ml
16
submitted 7 months ago by bizdelnick@lemmy.ml to c/linux@lemmy.ml
3
submitted 7 months ago by bizdelnick@lemmy.ml to c/golang@lemmy.ml
[-] bizdelnick@lemmy.ml 167 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 32 points 7 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 42 points 8 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.

23
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