Skip to main content


#lisp y #gopher Wed000UTC
#aNONradio #SDF
#climate
@kentpitman #haiku
I yell (toot) at an NZ Climate justice thinktank
LLM suggests we encrypt everything and "honeypot" it with junk content

#gopher #gemini #OldComputerChallenge final phosts
(ironically) https://occ.deadnet.se
Anyone remember who did old computer synth #music ?

#lisp
@nutilius #occ followup #PlusTwoHoursLispPerDay
@surabax is launching https://lisp.ie
@pkw , me, sort've @jackdaniel #McCLIM #ECL projects !

art @prahou
Color Lispy gopher show banner by @prahou@merveilles.town
The lisp alien and a cybernetic gopher and lots of the cast are in a tangle of old computers and wires

@prahou
aNONradio: https://aNONradio.net by #sdf @SDF public access #unix
Previous shows this year:
https://archives.aNONradio.net/#screwtape
Chat as always in https://sdf.org 's COMmode chat service. ssh in !

gopher lemmy thread for GOPHER topic mentions: https://lemmy.sdf.org/post/989698

This entry was edited (1 year ago)
@prahou @SDF
#climate
@chris clarified for me that
green hydrogen
refers to storing energy from clean energy by electrolysis of water instead of using batteries,
and @simon_brooke further clarified that hydrogen from cracking hydrocarbons gets called
blue hydrogen
(and is a scam)
Kent's recent climate weblog. wlog?
http://netsettlement.blogspot.com/2023/07/lying-to-ourselves.html

@nutilius @surabax @pkw @kentpitman @prahou @SDF @chris @simon_brooke

@prahou @SDF @chris @simon_brooke

@fstateaudio I notice Noise Therapy: Session 58 is out! May I continue to depend on you for emergency show audio underground original synth?

https://diode.zone/w/7jiEDLW1tCTQyYtHiZDnQv

https://mastodon.sdf.org/@fstateaudio/110736138692072581

(including fuguestateaudio's instructions for the building of.)

This entry was edited (1 year ago)
@prahou @SDF @chris @simon_brooke Absolutely! I'm glad you enjoy them. Btw, I've also been posting a bunch of stuff to Funkwhale, feel free to use any of that for your projects as well.

https://funkwhale.our-space.xyz/@fstateaudio/
@fstateaudio
I felt like you put in a lot of written insights and information about the synth schematics and your music/audio - was more of that new in episode 58, or did I only just notice it?

@nutilius @surabax @pkw @kentpitman @prahou @SDF @chris @simon_brooke
@fstateaudio @prahou @SDF @chris @simon_brooke @lispi314 @rml @strypey @happy

As a final action I have managed to get Medley Interlisp up and running on the Sharp Netwalker PC-Z1. I built the X11 variant of the maiko VM.
@alexshendi @fstateaudio @prahou @SDF @chris @simon_brooke @lispi314 @rml @strypey @happy

Congratulations on getting that going - were there any issues in building the maiko VM that I should know about?
@nhbriggs @fstateaudio @prahou @SDF @chris @simon_brooke @lispi314 @rml @strypey @happy

The usual incantation of "./makeright x" mostly worked. I had to change 2 things in the 32bit ARM Makefile:
1. The C compiler from clang to gcc.
2. Add "-std=gnu99" to GCC_CFLAGS (the installed ubuntu & C compiler is rather old, gcc 4.x) to get C99 constructs accepted.

I'd say these are cosmetic changes. Maybe I could have done it w/o touching the Makefile.
@alexshendi That was the makefile-linux.armv7l-x ? I thought I switched the default to gcc in 2020 and the GCC_CFLAGS in makefile-header has included -std=gnu99 for years too.
I have remembered it wrong.
Here's the diff between the two Makefiles:
````
--- bin/makefile-linux.armv7l-x 2023-06-08 07:15:11.000000000 +0200
+++ ../../sources/packages/maiko-maiko-230607-d1f4653b/bin/makefile-linux.armv7l-x 2023-07-19 14:06:33.000000000 +0200
@@ -1,4 +1,5 @@
# Options for Linux, ARMv7 and X-Window
+GCC_CFLAGS=-D__LITTLE_ENDIAN__=1 -fsigned-char -std=gnu99

CC = gcc $(GCC_CFLAGS)
#CC = clang $(CLANG_CFLAGS)
````

Somehow it couldn't figure out the endianess.

screwlisp reshared this.

@nhbriggs

BTW: Thank you for your work on Interlisp.
by the way (will check myself when I'm free) did they incorporate my patch for an openbsd maiko makeright? It's just the freebsd one with the correct X11 path for openbsd xenocara.
@alexshendi I did include a makefile slice for OpenBSD (x86_64, for X) with /usr/X11R6/lib instead of /usr/local/lib - is that the path you need?