HP P420i POST Error 1719-A



In the Radio-Wide settings – for TinyTrak, Kantronics, NinoTNC, possibly more…
My new call sign is AD8G.
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)"
|
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…
If you’d like to run aprx as a service on Debian Jessie, use this systemd script (in ):
|
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
|
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…
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…