Onno (VK6FLAB)

Anything and everything Amateur Radio and beyond. Heavily into Open Source and SDR, working on a multi band monitor and transmitter.

#geek #nerd #hamradio VK6FLAB #podcaster #australia #ITProfessional #voiceover #opentowork

  • 2 Posts
  • 78 Comments
Joined 9 months ago
cake
Cake day: March 4th, 2024

help-circle

  • I use Debian for anything that matters. The release cadence means that stuff just works and keeps working. You cannot beat the documentation and I’ve been using it for 25 years.

    I’m not touching anything Redhat / Fedora with a barge pole.

    Not sure what the attraction to Mint is.

    Never used OpenSUSE.


  • Black Friday is a marketing exercise to get you all riled up about the massive savings you will receive if you buy something RIGHT NOW.

    Suffice to say that the actual bargains on the day are far and few between.

    If you actively track pricing you’ll discover that the price goes up before the event, then drops to the same or slightly lower pricing on the day. The “bargain” is notional at best.

    Then there are the “pre Black Friday” sales, and the “Cyber Monday” ones afterwards. It’s all just marketing.

    If you want an actual bargain, find what you’re looking for, set a price watch on it and track it for as long as you have patience. When you’re ready, buy it from your preferred supplier and get them to price match the amazing price.

    As far as refurbished goes, ask yourself what is the upside for the supplier to give away any bit of return on their spend to refurbish the item in the first place?





  • Seriously? From the README:

    I would like to first fix the kernel headers issues that break the UAPI for C++ compilers (because they use C++ keywords that break C++ code) and the Windows filesystem (Windows filesystem is case-insensitive, so some headers cannot be stored on Windows filesystems).

    I can’t wait to see this kernel become dependent on .NET

    If you’re wondering, this is what embrace, extend and extinguish looks like.








  • I read that you’re manually tagging them, so your process can be whatever you want to do.

    For example, you can leave the images in their current folder structure and create a separate folder structure with symbolic links to an image, so in the character folder would be symbolic links to all the images like that. They also don’t have to be unique, an image can be in multiple categories.

    Alternatively you can use a spreadsheet and generate lists there.

    Finally there are plenty of photo album applications that allow you to tag images.








  • Onno (VK6FLAB)@lemmy.radiotoLinux@lemmy.mlBeginners Guides
    link
    fedilink
    arrow-up
    4
    arrow-down
    1
    ·
    edit-2
    3 months ago

    My first recommendation is to become familiar with one flavour of Linux. Debian is a solid choice and it will give you a good understanding of how a great many derivatives operate.

    The command line is a tool to get things done, it’s not an end to itself. Some things are easier to do with a GUI, many things are easier to do with the command line interface or CLI.

    Many Linux tools are tiny things that take an input, process it and produce an output. You can string these commands together to achieve things that are complex with a GUI.

    Manipulation of text is a big part of this. Converting things, extracting or filtering data, counting words

    For example, how many times do you use the words “just” and “simply” in the articles you write?

    grep -oiwE "just|simple" *.txt | sort | uniq -c

    That checks all the text files in a directory for the occurrence of either word and shows you how many occurred and what capitalisation they used.

    In other words, learning to use the CLI is about solving problems, one by one, until you don’t have to look things up before you understand why or how it works.