This document was created to help Tomesh members get their amateur radio license, but its information should be helpful to anyone in Canada trying to do the same.
How can we all take this exam?
filetype: uxntal | |
detect: | |
filename: "\\.(tal|uxn|uxntal|inc)$" | |
rules: | |
- identifier: "[@,;.&][^\ \n\r]+" | |
- constant: "[\"#'|$][^\ \n\r]+" | |
- statement: "\\b(BRK|LIT|INC|POP|DUP|NIP|SWP|OVR|ROT|EQU|NEQ|GTH|LTH|JMP|JCN|JSR|STH|LDZ|STZ|LDR|STR|LDA|STA|DEI|DEO|ADD|SUB|MUL|DIV|AND|ORA|EOR|SFT)[2rk]{0,3}\\b" | |
- comment: |
# This file is now living in a repo: | |
# https://github.com/tomeshnet/toronto-community-network/tree/master/network/scripts/unms_exporter | |
# See the file revisions for history. |
#!/usr/bin/env bash | |
# Based on https://gist.github.com/eduncan911/68775dba9d3c028181e4 | |
# but improved to use the `go` command so it never goes out of date. | |
type setopt >/dev/null 2>&1 | |
contains() { | |
# Source: https://stackoverflow.com/a/8063398/7361270 | |
[[ $1 =~ (^|[[:space:]])$2($|[[:space:]]) ]] |
# Algorithm from: http://citeseerx.ist.psu.edu/viewdoc/download?doi=10.1.1.718.1964&rep=rep1&type=pdf | |
# Archived version: https://archive.org/download/10.1.1.718.1964/10.1.1.718.1964.pdf | |
# Very similar (a copy?) of https://arxiv.org/pdf/1708.02694.pdf | |
import cv2 | |
import numpy as np | |
/*! (C) Copyright 2010, Hewlett Packard. All Rights Reserved. */ ; | |
if (typeof frameWorkObj === "undefined") { | |
frameWorkObj = {} | |
} | |
frameWorkObj.loadCss = function(a) { | |
document.writeln("<link href='" + a + "' rel='stylesheet' type='text/css' />") | |
}; | |
frameWorkObj.loadScript = function(a) { | |
document.writeln("<script src='" + a + "' type='text/javascript'><\/script>") | |
}; |
This document was created to help Tomesh members get their amateur radio license, but its information should be helpful to anyone in Canada trying to do the same.
How can we all take this exam?