Add yourself to the list below and give a short blurb about the topic. Go wild!
about something interesting
#!/usr/bin/awk -f | |
# Create variables containing counts of the number of different incident types within each area, | |
# where an area is defined as a unique longitude/latitude pair to the nearest 2 decimal places | |
BEGIN { | |
# Define csv fields | |
FPAT="\"[^\"]*\"|[^\",]*"; | |
PROCINFO["sorted_in"] = "@ind_str_asc"; | |
} |
# stubby - a local DNS Privacy stub resolver | |
# | |
# stubby acts as a local DNS Privacy stub resolver, using DNS-over-TLS. | |
# Stubby encrypts DNS queries sent from the local machine to a DNS Privacy resolver, increasing end user privacy. | |
# | |
description "stubby server" | |
start on runlevel [2345] | |
stop on runlevel [!2345] |
(defun mapcar@ (fun seq) | |
(let (result) | |
(loop for elem in (reverse seq) | |
for newelem = (funcall fun elem) | |
if (and (listp newelem) | |
(eq (car newelem) '@)) | |
do (loop for newelem2 in (cdr newelem) | |
do (setq result (cons newelem2 result))) | |
else do (setq result (cons newelem result))) | |
result)) |