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) occ.deadnet.se
Anyone remember who did old computer synth #music ?

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

art @prahou

in reply to screwlisp

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

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

This entry was edited (1 year ago)
in reply to screwlisp

@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)
in reply to screwlisp

Kent's recent climate weblog. wlog?
netsettlement.blogspot.com/202…

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

in reply to screwlisp

@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?

diode.zone/w/7jiEDLW1tCTQyYtHi…

mastodon.sdf.org/@fstateaudio/…

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

This entry was edited (1 year ago)
in reply to screwlisp

@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.

funkwhale.our-space.xyz/@fstat…

in reply to Fugue State Audio

@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

in reply to screwlisp

@prahou
anonradio.net:8443/anonradio
#livenow (pretty much)
I'm adding @lispi314 's thread with @rml @strypey on unions
mastodon.top/@lispi314/1107336…

and @alexshendi 's I think yet unlisted #OldComputerChallenge series of Mastodon toots.
rollenspiel.social/@alexshendi…
; also @happy about hydrogen cars
mastodon.sdf.org/@happy/110737…

#OCC23 otherwise:
occ.deadnet.se

Attached: @prahou 's surrealism is quite realistic, isn't it?

in reply to screwlisp

@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.

in reply to Nick Briggs

@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.

in reply to Alexander Shendi

@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.
in reply to Nick Briggs

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.

in reply to Alexander Shendi

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.
in reply to screwlisp

@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?