ffuent.es is a Fediverse instance that uses the ActivityPub protocol. In other words, users at this host can communicate with people that use software like Mastodon, Pleroma, Friendica, etc. all around the world.
This server runs the snac software and there is no automatic sign-up process.
I think it's time for some #OpenBSD #79HYPE

After ~21 years, gcc 3.x has left the building, with the last remaining platform (OpenBSD/luna88k) ported to gcc4.
https://bsd.network/@brynet/115425313813361816
Jonathan Gray (jsg@) has updated the drm graphics drivers (inteldrm/radeondrm/amdgpu) in #OpenBSD 7.9 to Linux 6.18.y/6.18.22 from the 6.12.y longterm support version.
https://bsd.network/@brynet/116201960048161449
https://freshbsd.org/openbsd/src?q=drm&committer[]=jsg
OpenBSD now supports "Delayed hibernation" on amd64: After waiting a number of seconds (up to 24 hrs) the machine will wake from S0ix/S3 idle sleep/suspend and hibernate to disk.
https://bsd.network/@brynet/116217813921273057
The OpenBSD kernel gains a new "parking mutex".. inspired by WebKit.
https://bsd.network/@brynet/115503876824188865
A long standing ACPI issue (boot delay) that has plagued several Intel Mac models has been fixed by jcs@
https://bsd.network/@brynet/115602160298028722
OpenBSD's EFI bootloader now supports loading files from the ESP, making it easier to e.g: copy & bootstrap a ramdisk kernel.
https://bsd.network/@brynet/115630978565153559
Improved support for running OpenBSD as a guest VM on Apple Silicon machines under macOS.
https://bsd.network/@brynet/115899206016337373
OpenBSD/amd64 now supports SMP on up to 255 CPUs, such as on AMD Threadripper/EYPC.
https://bsd.network/@brynet/115899248487624689
OpenBSD iwx(4) now supports additional Intel AX211 WiFi 6/6E models, as well as 160MHz channel support!
https://bsd.network/@brynet/116210371257002339
https://bsd.network/@brynet/116319563256899912
Important security refinements to both pledge(2) and unveil(2), fixing several early design issues.
https://bsd.network/@brynet/116136000669207850
https://bsd.network/@brynet/116197240853794609
https://bsd.network/@brynet/116217472157803716
Plus lots more to see in 7.9! Stay tuned!
Oh, wait.
#Xedit for #x11 always had a #Lisp interpreter and even
if it's damn cool to have (much lighter than Emacs and comes
with #NetBSD and #OpenBSD base) it never got updated
for XFT support.
https://mirrors.mit.edu/pub/NetBSD/NetBSD-release-10/xsrc/external/mit/xedit/dist/lisp/README
This runs straight:
(defun factorial (n)
(fact-iter 1 1 n))
(defun fact-iter (a b n)
(cond
((> b n) a)
('t
(fact-iter (* a b) (+ b 1) n ))))
(factorial 10)
Press Ctrl-x e to evaluate at the end
of every '()' function.
It will evaluate to 3628800.
As #tmux began to accept #LLM pushed code, #OpenBSD
might kick it from base in a near future.
If Abduco+Dvtm stay 'pure', they might even
enter both as an alternative.
More cumbersome, maybe, but often you don't need
to multiplex terminals but just a way to keep
a remote session detached.
In #openbsd what is called #vi is actually #nvi, and when you install #nvi from ports, it is #nvi2.
To danes with our national characters æøå we need the latter because #vi prints two byte hex sequences for æ, ø, or å. #vi handles them correctly except for the printing of them.
#vi and #nvi use the same #man page.
Update:
On #netbsd #vi is also #nvi. Here you must install #nvi2 to get #nvi if you need æ, ø, and å support.
Best wishes from T. R. Dane (The Real Dane ;)
Aficionados will remember /vmunix for #Unix with demand paged virtual memory.
To this day, the #OpenBSD and #NetBSD kernels likewise live in single files in the root directory.