- A lot of UI work is needed
- Web design
- Hank?
- Existing technology needs to be improved to work in a mesh environment
- IPFS, SSB, etc
- Either hacks on our side or us submitting PRs to their repo
- Deployment and outreach needs to happen above all else
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?
This file has been truncated, but you can view the full file.
This file contains 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
/*! (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 file contains 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
# 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 | |
This file contains 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 | |
# 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:]]) ]] |
This file contains 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
# 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. |
This file contains 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
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: |