This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env ruby | |
# Script to get callsign data | |
# usage: gcs callsign | |
# | |
# this ruby script uses nokogiri | |
# which must be installed: | |
# sudo gem install nokogiri | |
# | |
# prerequisite for nokogiri is ruby-dev |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
#A script to help locate winlink gateways | |
#ARDOP files must be download first using getardoplist | |
#getardoplist should be a daily cron job | |
#so the lists stay current. | |
#See notes at top of getardoplist | |
#This script is provided AS IS | |
#Feel free to mod to suit your needs | |
#20181217 km4ack |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
#This script will download the ardop list to the path set below | |
#It is intended to be run by cron daily | |
#to keep the list current. km4ack 20181214 | |
#Hint: create a cron job that reads | |
#30 23 * * * /usr/local/bin/getardoplist | |
#This script is provided AS IS | |
#Feel free to mod for your use |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
#this script will read the js8 message database | |
#and send a text message via JS8 to alert you that | |
#you have messages waiting in JS8 | |
#This script should be run by cron every 30-60 minutes | |
#This script will continue to alert you until the message | |
#flag has been cleared in JS8 | |
#Hint: Enter line below in crontab to run every 30 minutes | |
# */30 * * * * /usr/local/bin/js8alert |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
#original script written by Jerry, K7AZJ | |
#modded by KM4ACK 20190212 | |
################################################### | |
# Start Original Script # | |
################################################### | |
#if [ "$#" == "0" ]; then | |
# echo "usage: js8sendsms phone_number message" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
#script to list available SSID and mod wpa-supplicant | |
#file to connect to new wifi hotspot | |
#this script works in conjuction with autohotspot | |
#http://www.raspberryconnect.com/network/item/330-raspberry-pi-auto-wifi-hotspot-switch-internet | |
#km4ack 20190401 | |
#edited 20190402 | |
#check to make sure running as root |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'gpsd_client' | |
require 'maidenhead' | |
require 'socket' | |
require 'json' | |
ft8call_port = 2237 | |
gpsd = GpsdClient::Gpsd.new() | |
gpsd.start() | |
apicmd = {} |