Baofeng bf-t1 default frequency
Channel | Frequency | DCS /CTCSS |
---|---|---|
ch1 | 437.150 | ct 69.3 |
ch2 | 439.250 | ct 100.0 |
ch3 | 441.750 | ct 151.4 |
ch4 | 443.450 | ct 203.5 |
ch5 | 445.550 | ct 241.8 |
Baofeng bf-t1 default frequency
Channel | Frequency | DCS /CTCSS |
---|---|---|
ch1 | 437.150 | ct 69.3 |
ch2 | 439.250 | ct 100.0 |
ch3 | 441.750 | ct 151.4 |
ch4 | 443.450 | ct 203.5 |
ch5 | 445.550 | ct 241.8 |
[Unit] | |
Description=RTL-SDR Server | |
Wants=network-online.target | |
After=network-online.target | |
[Service] | |
ExecStartPre=/bin/sleep 15 | |
ExecStart=/bin/sh -c '/usr/bin/rtl_tcp -a 0.0.0.0 -s 1024000' |
#!/bin/sh | |
# File: /usr/local/etc/rc.d/tler.sh | |
# Enable TLER for drives on boot of Synology | |
case $1 in | |
start) | |
smartctl -d sat -l scterc,70,70 /dev/sda | |
smartctl -d sat -l scterc,70,70 /dev/sdb | |
;; | |
stop) |
### Keybase proof | |
I hereby claim: | |
* I am symm on github. | |
* I am gaz (https://keybase.io/gaz) on keybase. | |
* I have a public key ASCLjhHAu4nSDCuNGpl4HQZGWKvYbJWHXlUj0jr8U1Imrgo | |
To claim this, I am signing this object: |
from fractions import gcd | |
from Crypto.PublicKey import RSA | |
from Crypto.Signature import PKCS1_v1_5 | |
from Crypto.Hash import SHA | |
def egcd(a, b): | |
if a == 0: | |
return (b, 0, 1) |
MD5 (NessusAgent-6.10.2-es7.x86_64.rpm) = 0a42d5838aac2e468663463e1133a6e3 | |
9cd362cd591eda8626ef96bdf9ece2220ee8a5c4 NessusAgent-6.10.2-es7.x86_64.rpm |
# Hey Emacs, this is a -*- makefile -*- | |
# AVR-GCC Makefile template, derived from the WinAVR template (which | |
# is public domain), believed to be neutral to any flavor of "make" | |
# (GNU make, BSD make, SysV make) | |
MCU = attiny85 | |
FORMAT = ihex | |
TARGET = avrfid |
diff --git a/utils/nfc-mfclassic.c b/utils/nfc-mfclassic.c | |
index 1242886..8d9c6f0 100644 | |
--- a/utils/nfc-mfclassic.c | |
+++ b/utils/nfc-mfclassic.c | |
@@ -431,8 +431,8 @@ write_card(int write_block_zero) | |
} | |
} else { | |
// The first block 0x00 is read only, skip this | |
- if (uiBlock == 0 && ! write_block_zero && ! magic2) | |
- continue; |
[38;5;255m,_ ,_==▄▂[0m | |
[38;5;255m, ▂▃▄▄▅▅[48;5;240m▅[48;5;20m▂[48;5;240m▅¾[0m. [38;5;199m/ [38;5;20m/[0m | |
[38;5;255m[48;5;20m▄[0m[38;5;255m[48;5;199m▆[38;5;16m[48;5;255m<´ [38;5;32m"[38;5;34m»[38;5;255m▓▓[48;5;32m▓[48;5;240m%[0m\ [38;5;199m/ [38;5;20m/ [38;5;45m/ [38;5;118m/[0m | |
[38;5;255m,[38;5;255m[48;5;240m▅[38;5;16m[48;5;255m7" [38;5;160m´[38;5;34m>[38;5;255m[48;5;39m▓▓[38;5;199m[48;5;255m▓[0m[38;5;255m% [38;5;20m/ [38;5;118m/ [38;5;199m> [38;5;118m/ [38;5;199m>[38;5;255m/[38;5;45m%[0m | |
[38;5;255m▐[48;5;240m[38;5;255m¶[48;5;240m[38;5;255m▓[48;5;255m [38;5;196m,[38;5;34m»[48;5;201m[38;5;255m▓▓[0m[38;5;255m¾´[0m [38;5;199m/[38;5;255m> %[38;5;199m/[38;5;118m%[38;5;255m/[38;5;199m/ [38;5;45m/ [38;5;199m/[0m | |
[38;5;255m[48;5;240m▓[48;5;255m[38;5;16m▃[48;5;16m[38;5;255m▅▅[38;5;16m[48;5;255m |
#!/usr/bin/env ruby | |
require 'mechanize' | |
require 'filecache' | |
cache = FileCache.new("data-usage", "/tmp", 60 * 30, 3) | |
unless cache.get('usage').nil? | |
puts cache.get('usage') | |
exit 0 |