note the helpful indenting in the prompt
zsh% A=$(
cmdsubst> cat <<EOF
cmdsubst heredoc> boep boewp
cmdsubst heredoc> dootles
cmdsubst heredoc> EOF
#!/usr/bin/env python3 | |
from xml.etree import ElementTree as ET | |
from os.path import abspath | |
from os import getenv | |
import subprocess | |
import textwrap | |
import zlib | |
import sys |
#!/bin/sh | |
# ** NOTE: probably requires that SIP is disabled ** | |
# To show all entries, remove "limit 10" from the queries. | |
echo "Recent user TCC entries:" | |
sqlite3 -line ~/Library/Application\ Support/com.apple.TCC/TCC.db "SELECT service, client, allowed, prompt_count, Datetime(last_modified, 'unixepoch') as modified FROM access order by modified desc limit 10;" | |
echo "\n-----------------------------------------\n" |
sqlite3 -line "$(getconf DARWIN_USER_DIR)/com.apple.notificationcenter/db2/db" "SELECT Datetime(delivered_date + 978328800, 'unixepoch', 'localtime') as delivered_at, | |
app.identifier, | |
record.presented, | |
record.style | |
FROM record | |
JOIN app | |
ON app.app_id = record.app_id | |
ORDER BY delivered_at DESC limit 10;" |
#!define TICKS A | |
#!define COUNTING B | |
#!define NOW C | |
#!define STARTLAG D | |
#!define DROPPED E | |
#!define EXPECTED F | |
@Rule "fast assemble" | |
@Event global | |
if isAssemblingHeroes(): |
#!define maxEffects N | |
#!define spawnEffects A | |
#!define effectDelay D | |
#!define effectScale S | |
#!define lastPosition Q | |
#!define editMode M | |
#!define editMutex J | |
#!define trails E | |
@Rule "fast setup" |
import Cocoa | |
// https://cocoa-dev.apple.narkive.com/Ciy40e20/is-cloning-the-same-as-copying-in-apfs#post8 | |
func unclonedSize(of url: URL) throws -> off_t { | |
var list = attrlist(bitmapcount: UInt16(ATTR_BIT_MAP_COUNT), | |
reserved: 0, | |
commonattr: 0, | |
volattr: 0, | |
dirattr: 0, | |
fileattr: 0, |
#!/usr/bin/env python3 | |
# make some barcodes, then use ffmpeg to make a video from the individual frames, | |
# to see how fast FirebaseML can recognize barcodes through the camera. | |
# https://github.com/azamsharp/FirebaseML.git | |
# barcode types | |
# code128 code39 ean ean13 ean14 ean8 gs1 | |
# gtin isbn isbn10 isbn13 issn itf jan pzn upc upca |
#!/usr/bin/env python3 | |
import json | |
from beautifulscraper import BeautifulScraper | |
from pprint import pprint as pp | |
URL = "http://southpark.cc.com/feeds/carousel/video/08f60a6f-24a8-4d88-88a3-eb5588494cbc/30/1/json/views/season-" | |
# a sample item: | |
''' |
Question: is there ever a reason to ARP for an IP outside of any local subnets? | |
Update: I like @bmastenbrook's answer: https://twitter.com/bmastenbrook/status/1069415501296586752 | |
# my subnet is a /24, and 10.0.10.10 is totally not on the same /24 as 10.0.0.42. | |
xomg% netstat -rn -f inet | |
Routing tables | |
Internet: | |
Destination Gateway Flags Refs Use Netif Expire | |
default 10.0.10.10 UGScI 3 0 en0 |