Notes on using and tuning a Buddipole in nontypical deployments
-
14.074 20m FT8:
- Black coil: 5 whip sections out, Blue tap 15
- Red coil: 4 1/3 whips out, Green tap 10
-
7.212 40m SSB (narrow, still requires tuner):
-
Black coil: 5 whips, no tap
User-agent: ChatGPT-User | |
Disallow: / | |
User-agent: CCBot | |
Disallow: / | |
User-agent: GPTBot | |
Disallow: / | |
User-agent: Google-Extended |
#!/usr/bin/env bash | |
# Check for file changes in internal libraries local to a monorepo, increment | |
# the lib's minor version number, and auto-update them before running the | |
# current project/service's dev app/server. Assumes usage of poetry's | |
# pyproject.toml and a repository structure similar to that described in this | |
# Opendoor article: https://medium.com/opendoor-labs/our-python-monorepo-d34028f2b6fa | |
REPONAME=myproject | |
LIBSPATH=~/dev/$REPONAME/lib |
import axios from 'axios'; | |
const instance = axios.create({ | |
baseURL: 'http://localhost:5000' | |
}); | |
const sleepRequest = (milliseconds, originalRequest) => { | |
return new Promise((resolve, reject) => { | |
setTimeout(() => resolve(instance(originalRequest)), milliseconds); | |
}); |
#!/usr/bin/python | |
import sys | |
import re | |
port_regex = re.compile(r':8082') | |
def rewrite_url(line): | |
""" If the input URL contains a port number, strip it out """ | |
url_list = line.split(' ') |
This document has been modified from its [original format][m1], which was written by Ning Shang ([email protected]). It has been updated and reformatted into a [Markdown][m2] document by [Woody Gilk][m3] and [republished][m4].
When working with a remote git repository which is hosted on a third-party storage server, data confidentiality sometimes becomes
#!/usr/bin/env python | |
# post-receive hook for git-based deployments | |
import sys | |
import os | |
from subprocess import call | |
# configuration | |
deploy_to_path = '/path/to/deploy/directory/' | |
deploy_branch = 'master' |