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
kenneth@shell:~$ for I in `seq 1 223`; do host $I.$I.$I.$I | grep -Ev '(^;;|NXDOMAIN|SERVFAIL)'; done | |
1.1.1.1.in-addr.arpa domain name pointer 1dot1dot1dot1.cloudflare-dns.com. | |
8.8.8.8.in-addr.arpa domain name pointer google-public-dns-a.google.com. | |
9.9.9.9.in-addr.arpa domain name pointer dns.quad9.net. | |
14.14.14.14.in-addr.arpa domain name pointer host14-14-14-14.tvm.ne.jp. | |
16.16.16.16.in-addr.arpa domain name pointer ldtools.gre.hp.com. | |
23.23.23.23.in-addr.arpa domain name pointer select.zone. | |
31.31.31.31.in-addr.arpa domain name pointer 31.31.31.31.dyn.idknet.com. | |
41.41.41.41.in-addr.arpa domain name pointer host-41.41.41.41.tedata.net. | |
45.45.45.45.in-addr.arpa domain name pointer modemcable045.45-45-45.mc.videotron.ca. |
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
diff --git a/dedupe.py b/dedupe.py | |
index 26230a6..1e346ff 100644 | |
--- a/dedupe.py | |
+++ b/dedupe.py | |
@@ -11,6 +11,10 @@ import warcio | |
from warcio.archiveiterator import ArchiveIterator | |
from warcio.warcwriter import WARCWriter | |
+proxies = { | |
+ 'http': 'http://127.0.0.1:8080', |
We can make this file beautiful and searchable if this error is corrected: It looks like row 2 should actually have 3 columns, instead of 2 in line 1.
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
Designing Distributed Systems Brendan Burns http://amzn.to/2FUZr57 | |
BASIC IBM | |
Computer Design Development: Principal Papers Earl Swartzlander Jr http://amzn.to/2D27VUX | |
Compiler Construction Indecipherable | |
Assembly Language Subroutines for MS-DOS Computers Leo Scanlon http://amzn.to/2FkbPL7 | |
Principles of Compiler Design (Dragon Book) Aho, Ullman http://amzn.to/2FWnwsg | |
Linear System Theory: The State Space Approach Zadeh, Desoer http://amzn.to/2FW3HBq | |
The Anatomy of a Compiler Lee http://amzn.to/2G0mtru | |
Computer Dictionary and Handbook Sippl http://amzn.to/2Fj1iiW | |
His Life Work Knuth http://amzn.to/2FWTGE5 |
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 | |
# | |
# | |
## Setting variables with explanations. | |
# Set root working directory for where you want to store your mirrors | |
MIRRORBASE=/home/kenneth/mirror | |
mkdir -p $MIRRORBASE | |
# |
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
# /etc/dnsmasq.conf | |
# Specify what the local domain is | |
local=/eventlan.net/ | |
domain=eventlan.net | |
# Hardcode the LAN domain to point at the CAD server | |
address=/eventlan.net/10.44.4.1 | |
# Bind to the wlan0 interface specifically |
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
// YouTube Channel View Counter | |
// Kenneth Finnegan, 2017 | |
// | |
// Given a WiFi SSID + password, and YouTube API key + channel ID, displays the | |
// current total views count on an attached MAX7219 eight digit display | |
#include <YoutubeApi.h> | |
#include <ESP8266WiFi.h> | |
#include <WiFiClientSecure.h> |
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
10 APRX | |
1 APRX08 | |
1 APRX16 | |
4 APRX18 | |
1 APRX1C | |
1 APRX1D | |
2 APRX1E | |
3 APRX1L | |
3 APRX1M | |
5 APRX2 |
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
mycall KD0YUJ #This is my call sign | |
myloc lat 3927.93N lon 09418.34W #Location of my digi-gate | |
<aprsis> | |
passcode ***** #passcode for APRS-IS | |
server rotate.aprs.net 14580 #APRS-IS Server and Port | |
filter r/39.46550/-94.30566/80.4672 #grab within 50 mile radius of station from APRS-IS | |
filter b/EAX* #grab WX bulletins-objects NWS Pleasant Hill office | |
</aprsis> | |
<logging> | |
pidfile /var/run/aprx.pid #default |
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
#include <stdio.h> | |
#include <time.h> | |
// Calculate the current day of the week as an integer | |
// now - Unix timestamp like that from time(NULL) | |
// tz_offset - Number of hours off from UTC; i.e. PST = -8 | |
// Return value: Sunday=0, Monday=1, ... Saturday=6 | |
int dayofweek(time_t now, int tz_offset) { | |
// Calculate number of seconds since midnight 1 Jan 1970 local time | |
time_t localtime = now + (tz_offset * 60 * 60); |
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 python | |
import paho.mqtt.client as mqtt | |
import RPi.GPIO as GPIO | |
def on_connect(client, userdata, rc): | |
#print ("Connected with rc: " + str(rc)) | |
client.subscribe("kwf/demo/led") | |
def on_message(client, userdata, msg): |