Skip Navigation
fourwd 4wd @programming.dev
Posts 0
Comments 27
Telegram Removes Z-Library Posts 'Due to Copyright Infringement' * TorrentFreak
  • Matrix sucks, it always loses some chat messages when the client is closed and sometimes it says something like "hey dude something is wrong with your session, log out and use your security key to get access again and don't lose everything".

  • Install updates for Repacks on Linux
  • Heroic user here. You can use this feature to apply .exe patches:

  • What are the advantages of using a private tracker?
  • In my case, I didn't see any advantages compared to public trackers. Users of private trackers are supposedly all so elite, but in reality they pay for seedboxes and try to be the first to download literally every new release to at least somehow support the ratio around 1.0.

    Guys, while you seed all sorts of junk for the sake of who knows what, I seed really useful content on public trackers and have a ratio of 99.3, which in fact does not affect anything.

    There are normal private trackers, of course, such as Milkie, but there are a lot of dead torrents there.

  • Easy
  • DaVinci is kind of broken on GNU/Linux, it has audio lags and is missing some codecs.

  • In defence of swap: common misconceptions
  • I've never understood why GNU/Linux actually needs swap. Okay, I created a 4G partition for it, having 32G of RAM. I never used all that RAM, but even so, stuff regularly ends up in swap. Why does the OS waste write cycles on my SSD if it doesn't have to?

    However, if I artificially fill up all 32G of RAM, the system almost completely freezes faster than switching to using swap as a "lifeline". And it only comes back to life when OOM Killer finally remembers its existence and kills some f__ing important process.

  • Please stop
  • Have you tried Debian?

  • How do I learn to optimize my code better?
  • When I started learning programming, I was like "tf is a map function?" and I always forgot about it. Then I tried the functional programming language Erlang and understood all these functions very well. But there is a downside, now most for-loops in C++ look terrible to me :)

  • What is the best way to store data for exceptional cases among nested objects in arrays in JSON?
  • What about using enums? In this case you will have to specify them for all records, but this ensures that the field will always be present.

    enum license_owner {
        regular_citizen = 0,
        embassy,
        government,
        ...
    }
    
  • Why Do You Pirate Music?
  • You can use tools like spotdl and yt-dlp to download songs from YouTube music and Spotify

    To get quality like this https://youtu.be/cX4KA-AFS9M ? Nah thanks.

  • How could one implement a linux installer that runs on windows?
  • It would be better for your nerves to just do a normal GNU/Linux installation. There are too many ways the installation can go wrong:

    replace swap partition with ISO contents

    For example, Ubuntu ISO has a size of 5.7G. But my swap, which you previously deactivated, was 4G. Either 2G, or it didn't exist at all.

    move user data from C:/ to other partition

    The other partition may not exist or may have capacity smaller than C:/.

    replace C:/ with linux

    The installed Linux must also be stored somewhere. And there is also a copy partition for C. The same problem of lack of space.

    move user data to /home/$username

    From %APPDATA%? You would have to be a know-it-all to resolve the location paths and configuration names of literally every existing program.

    reboot into linux

    And it is at this moment that Windows will completely randomly decide to update and rewrite the bootloader :)

  • new preference war just dropped
  • In Elixir, we mark statuses by using a question mark at the end of the variable name. Something like this:

    authorized? = user |> get_something() |> ensure_authorized?()
    

    I like this better than the is_ prefix

  • It's so obvious when someone has a JavaScript background
  • console.log() is really easy to learn, but what happens after that is a complete "wtf"

  • Viable Alternative for ZSH as the interactive shell?
  • Why don't you just remove all plugins and use standard zsh? All sorts of oh-my-soy are not really needed.

  • Amber - the programming language compiled to Bash
  • The language idea is good, but: THREE.WebGLRenderer: A WebGL context could not be created. Reason: WebGL is currently disabled.

    Seriously? Why do I need WebGL to read TEXT in docs? :/

  • What search engine do you use?
  • I used DuckDuckGo a couple of years ago, but they added their own blacklist of sites (pretty stupid), and for my language it started returning crappy generated spam sites instead of relevant results. They shouted at the top of their lungs that for my language they simply index the results from Yandex, but this is a lie, they are different.

    StartPage gave the best results, but they introduced a captcha that I got every damn request.

    I'm currently using SearXNG, which collects results from Google. And these are damn normal results, unlike other search engines that consider themselves the smartest and edit the results.

  • How to find out what bootloader I'm using and then disable the 5 seconds delay?
  • EndeavorOS offers a choice of systemd-boot and GRUB. So, if you don't have GRUB, you probably have systemd-boot.

  • What projects should I do to gain applied development skills?
  • Some "pro" guys on YT will probably point you to https://github.com/codecrafters-io/build-your-own-x and https://github.com/practical-tutorials/project-based-learning. But...

    I don't recommend reinventing the wheel if you want to gain REAL development skills. Development is really about achieving your goal using existing (and preferably popular) solutions.

    It makes no sense to write any system-level projects from scratch in 2024 if projects with a similar purpose already exist. Try using them as a regular user. Maybe you will find features that you would like to fix or add.

  • Systemd wants to expand to include a sudo replacement
  • This way we will have multiple sudo-tools on one system without the ability to remove all but one. Like now with all this crap like systemd-resolved, systemd-networkd, systemd-anothershitd and a bunch of tools that do the same thing, but are all required.