Uncategorized
Motorola Radius M1225 Settings for TNCs
In the Radio-Wide settings – for TinyTrak, Kantronics, NinoTNC, possibly more…
New Call Sign, Who Dis?
My new call sign is AD8G.
Subversion: Revert Previous Commit
To revert to your previous commit in Subversion, you’ll need the current revision number and the previous revision number, then:
1 2 3 |
svn update svn merge -r 756:742 . svn commit -m "Rolled back to previous commit (r742)" |
Kenwood TM-D710/TH-D72 APRS Queries
One feature of many APRS-capable applications and radios is that they support specially-formatted APRS messages called queries or QRU. When the radio receives this message, the text “Q? ” will flash on the top of the screen. Here are the message you can send. ?APRSM – Re-queues any pending messages. ?APRSP – Triggers immediate position …
Debian Jessie: Run aprx as a service
If you’d like to run aprx as a service on Debian Jessie, use this systemd script (in /lib/systemd/system/aprx.service):
1 2 3 4 5 6 7 8 9 10 11 |
[Unit] Description=Amateur Radio APRS Gateway & Digipeater Documentation=man:aprx(8) [Service] Type=simple ExecStart=/sbin/aprx -i # doesn't do any internal reload # [Install] WantedBy=multi-user.target |
Mountain Lion Installation Does Not Start in Parallels 7
I’ve been trying to install Mountain Lion in as a guest in Parallels 7, and I kept getting stuck at the initial grey Apple logo. To fix it, I just changed the number of CPUs to 2, and it booted right up. Other documents I’ve seen have indicated that you need to increase the video …
Mountain Lion Installation Does Not Start in Parallels 7 Read More »
Python’s Default Argument Values are Sticky
I can’t believe it’s taken me this long to learn this: Python’s default argument values are only evaluated once during runtime. I’ve never encountered this before because I don’t use default arguments very often, and when I do, it’s often to set something to a static value. Today, I encountered a function definition where I …