Alexanderson-Day 2021

Today, another transmission by SAQ took place, celebrating this year’s Alexanderson Day:

Alexanderson Day 2021

Like many radio amateurs I too tried to receive the old lady once again, and was -somewhat- successful.

My portable setup was as following:

  • RX: Winradio G313e
  • high impendance preamp
  • 15m wire, about 1,5m over ground
  • Locator: JO42SI24

The preamp I built basically follows this schematic by DJ1WF, just that it doesn’t do any demodulation itself. Instead it has an output to the SDR where pin 7 of the TDA4100 would be connected. I was hoping to improve the sensitivity when using (too) short antennas, and while it doesn’t work as superbly as I was hoping for, it does improve the reception below 100 kHz by a good bit. Maybe it can be further optimised.

The reception wasn’t as good as I was hoping it to be, but a quick chat over the local UHF repeater unveiled that others had subpar reception as well, or didn’t hear SAQ at all when they could usually receive it. This, plus the fact that other stations in the VLF band were quite strong with my setup, indicates that it seems to work well enough and we just didn’t have much luck with the condx today.

I was using a 300 Hz filter, R was somewhere between 3 and 4. With a little patience and a good ear one could probably decode most of the message; I didn’t try yet.
As usual in the summer, there was a lot of QRN as well which didn’t make things easier. A noise blanker might have improved the audio quality, however I decided against it since I had no time left to tweak its settings and was afraid to actually worsen the outcome.

Here’s a losless recording of my reception. The actual message sent by SAQ starts around 1 minute in:

 

All in all I was happy with how it worked out even under the given conditions and had a nice afternoon. Here are some impressions from the reception site:

Hope to hear you again soon, dear SAQ!

Easily upgrading all OpenWRT packages

For some reason, opkg, the package manager of OpenWRT, has a function to list all upgradable packages, but none to upgrade them all – you need to type each one in by hand.

Or you do it like this:

#!/bin/ash
opkg update
opkg list-upgradable | cut -d " " -f 1 | xargs opkg upgrade

As usual, just paste the three lines of script above into a plain text file and make it executable with chmod u+x <filename>.

Hope this can help some people out there! 🙂

How to get rid off the Ubuntu font completely in the Linux Mint 19 Cinnamon panel

With Linux Mint 19.2, the Noto font-family has been abandoned in favour of the Ubuntu one. While it does look decent (and likely has the better licensing status – didn’t research that), I’m personally not a particular fan of it and preferred Noto.

Of course it can be changed back rather easily, but the Cinnamon panel stuck with Ubuntu when using the default Linux Mint theme. No problem however, since Cinnamon uses CSS for configuration stuff like this.

The responsible file is /usr/share/themes/Linux Mint/cinnamon/cinnamon.css. Simply replace Ubuntu in line 6 with "Noto Sans"  (or whatever font you prefer) so it looks like this:
font-family: Ubuntu, sans-serif;
You can also change the font-size in the line below, if you desire.

I’d recommend to do this on a copy of the original theme, just to be safe. Simply follow these steps in a terminal:
1. sudo cp -r /usr/share/themes/Linux\ Mint /usr/share/themes/Linux\ Mint\ Noto
2. sudo nano /usr/share/themes/Linux\ Mint\ Noto/cinnamon.css
3. change the line as described above, save the file
4. in the GUI, go to the theme menu, select „Linux Mint Noto“