Linux Fu: USB Everywhere

It is a common problem: I have a USB device on a computer out in the shop, and I want to use it from the comfort of my office. What to do? Well, you could remote desktop into the distant machine. But, honestly, I always find any remote desktop more than ssh clunky and somewhat undesirable.

Implementing Bluetooth on embedded Linux: Open source BlueZ vs proprietary stacks

Bluetooth connectivity is a key feature in many embedded Linux systems. When it comes to implementing Bluetooth support, you can choose between using the open source BlueZ stack or a proprietary Bluetooth stack. If you are considering deploying BlueZ on your embedded Linux device, the benefits in terms of flexibility, community support, and long-term maintainability make it a worthwhile investment.

Bash Script to Convert JSON to CSV

In today’s data-driven world, converting data between formats is a common task. One such conversion that many developers face is changing JSON data into the more spreadsheet-friendly CSV format. This article provides a straightforward Bash script to perform this conversion efficiently. We will also explore a sample JSON data structure for clarity.