Command line program to upload or change/update github gists. In order to work this program needs an authorization token.
Go to https://github.com/settings/tokens to create a token. The token can then
be stored into the file ~/.local/gist_token
.
#! /usr/bin/env python | |
# vim:fenc=utf-8 | |
# | |
# Copyright © 2024 fred <github-fred@hidzz.com> | |
# | |
# Distributed under terms of the BSD 3-Clause license. | |
""" | |
Send my GPS traces on a map. | |
Examples: https://bsdworld.org/misc/ |
#! /usr/bin/env python | |
# vim:fenc=utf-8 | |
# | |
# Copyright © 2024 fred <github-fred@hidzz.com> | |
# | |
# Distributed under terms of the BSD 3-Clause license. | |
""" | |
Rename all the DXCC image with the new date format | |
""" |
#!/usr/bin/env python | |
# | |
# BSD 3-Clause License | |
# | |
# Copyright (c) 2023-2024 Fred W6BSD | |
# All rights reserved. | |
# | |
__doc__ = """ | |
Read the CSV file from the iHealth heart rate monitor and generate a graph. |
" | |
" First install vim-plug using the following command | |
" curl -fLo ~/.vim/autoload/plug.vim --create-dirs \ | |
" https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim | |
" | |
" | |
filetype plugin indent on | |
autocmd! bufwritepost .vimrc source ~/.vimrc |
#!/usr/bin/env python | |
# | |
# BSD 3-Clause License | |
# Copyright (c) 2023 Fred W6BSD All rights reserved. | |
# | |
""" | |
`sendcard` is a companion program for e-qsl (https://pypi.org/project/e-qsl/) | |
This program monitors a directory for an ADIF file and then calls `eqsl` | |
with the file as an argument. |
Command line program to upload or change/update github gists. In order to work this program needs an authorization token.
Go to https://github.com/settings/tokens to create a token. The token can then
be stored into the file ~/.local/gist_token
.
This tool has been moved to its own python package. to get the latest version please go to https://github.com/0x9900/RigExpert
RigExpert is a tool designed to analyze and visualize antenna performance. It takes measurement data from devices like the RigExpert antenna analyzer or NanoVNA and generates detailed charts that help users understand their antenna's behavior. These charts include impedance plots, VSWR (Voltage Standing Wave Ratio) graphs, and Smith charts, which are essential for fine-tuning and optimizing antenna systems.
#!/usr/bin/env python | |
import os | |
import sys | |
from collections import namedtuple | |
from datetime import datetime | |
from tqdm import tqdm | |
start_date = datetime(2023, 6, 15, 20, 55, 0) |
#!/usr/bin/env python3 | |
# | |
# BSD 3-Clause License | |
# Copyright (c) 2022 Fred W6BSD All rights reserved. | |
# | |
# This program reads Touchstone files (.s1p) coming from any good | |
# antenna analyzer or VNA. The the type of the data is limited to the | |
# format S,RI. | |
# | |
# You can go to https://0x9900.com/hustler-4btv-cleanup-tuning/ to see |
#!/usr/bin/env python3 | |
# | |
# BSD 3-Clause License | |
# | |
# Copyright (c) 2022 Fred W6BSD | |
# All rights reserved. | |
# | |
# | |
import argparse |