Skip to content

Instantly share code, notes, and snippets.

diff --git a/include/balloc.h b/include/balloc.h
index 41fee0d..dfb205c 100755
--- a/include/balloc.h
+++ b/include/balloc.h
@@ -64,7 +64,7 @@ struct BlockHeap
};
typedef struct BlockHeap BlockHeap;
-struct _dlink_list heap_lists;
+extern struct _dlink_list heap_lists;
diff --git a/sbin/ifconfig/Makefile b/sbin/ifconfig/Makefile
index ce778ad4848..f6145755917 100644
--- a/sbin/ifconfig/Makefile
+++ b/sbin/ifconfig/Makefile
@@ -35,7 +35,7 @@ SRCS+= ifgif.c # GIF reversed header workaround
SRCS+= ifipsec.c # IPsec VTI
SRCS+= sfp.c # SFP/SFP+ information
-LIBADD+= ifconfig m util xo
+LIBADD+= ifconfig m util xo bsdxml
diff --git a/share/man/man4/Makefile b/share/man/man4/Makefile
index 65e59368a8e..e0129373093 100644
--- a/share/man/man4/Makefile
+++ b/share/man/man4/Makefile
@@ -398,6 +398,12 @@ MAN= aac.4 \
ng_l2tp.4 \
ng_lmi.4 \
ng_macfilter.4 \
+ ng_mpls.4 \
+ ng_mpls_fec.4 \
diff --git a/sbin/ifconfig/Makefile b/sbin/ifconfig/Makefile
index 2553e61b5e9..ce778ad4848 100644
--- a/sbin/ifconfig/Makefile
+++ b/sbin/ifconfig/Makefile
@@ -35,7 +35,7 @@ SRCS+= ifgif.c # GIF reversed header workaround
SRCS+= ifipsec.c # IPsec VTI
SRCS+= sfp.c # SFP/SFP+ information
-LIBADD+= ifconfig m util
+LIBADD+= ifconfig m util xo

Greek history spans millennia, evolving from ancient tribal migrations and Bronze Age civilizations into a complex mosaic of ethnic, cultural, and linguistic groups. Throughout antiquity, the Byzantine period, and modern times, the definition of "Greek" has been shaped by shared language, religion, and culture rather than a single racial or genetic stock. Ancient and Classical Periods During antiquity, the Greek world (Hellas) was characterized by a common language and religion, divided among distinct tribal and regional groups:

  • Hellenic Tribes (The Major Dialect Groups):
    • Ionians: Traditionally associated with Attica, Euboea, and the Aegean islands, later settling the coast of Asia Minor (Ionia). They spoke the Ionic dialect, which later evolved into Attic Greek (the basis of Koine).
  • Dorians: Originating from northern/northwestern Greece, Dorians migrated into the Peloponnese, Crete, and parts of southern Italy and Sicily. They spoke the Doric dialect, famous for its broad vowels and martial cult
@paigeadelethompson
paigeadelethompson / routes.sh
Last active July 16, 2026 05:10
Dump FreeBSD route state to `route add' commands
#!/usr/bin/env bash
for x in $(ifconfig | grep fib | awk '{print $NF}' | sort | uniq); do
netstat -nr -F $x --libxo json | jq -r --arg fib "$x" '
.statistics."route-information"."route-table"."rt-family"[]? as $fam
| $fam."rt-entry"[]? as $entry
# Grab the layout flags as a single string to safely compare
| ($entry.flags_pretty | join(",")) as $flags
# if you're running cursor or really anything agentic on freebsd, you will
# probably waht this:
#
# sudo pkg install gsed gawk grep coreutils findutils gnugrep
#
if [ -d /usr/local/bin ]; then
alias sed='gsed'
alias awk='gawk'
alias date='gdate'
alias grep='ggrep'
Word groups by Currier (min length: 3)
Folios are classified as Currier A or Currier B based on physical layout.
Each group shows which folios contain the seed word.
======================================================================
CURRIER A
======================================================================
aii(1): (word length: 3 / group items: 292)
folios: f99v
length: min=4, max=15, avg=7.5
#!/usr/bin/env python3
"""
Group words by similarity - finds all words containing each other as substrings.
Usage: python group_words.py [min_length]
Example:
python group_words.py # min_length=2 (default)
python group_words.py 5 # only group words with length >= 5
"""
#!/usr/bin/env python3
"""
Group words by similarity - finds all words containing each other as substrings.
Usage: python group_words.py [min_length]
Example:
python group_words.py # min_length=2 (default)
python group_words.py 5 # only group words with length >= 5
"""