Does anyone know of an organization that is actively trying to Push Buckeye's ideas? Or are there a number of different ones? I strongly believe the premise that we could easily take care of everyone in the world with a minimum of effort if we worked together. And when I say "we", I mean the 10-20 percent of us who have been gifted with the ability to do science and engineering beyond the grade school level. Let the rest of the people play.
I would say the Long Now Foundation [0] is influenced by Fuller and his ideas, carrying forward the values of planetary systems engineering and long-term thinking. It's a little farther afield (or crackpot depending who you ask), but The Venus Project [1] covers similar ground. And of course, while Fuller never explicitly advocated UBI, Yang and COVID have recently conspired to move the idea into the Overton Window.
Worth noting that the time frame this was published (1975) was just at the point in history that some (such as Peter Thiel) argue was the end of the rapid technological progress of the 20th century. It might be easy to conceive of a society supported by a technocratic few when looking back at a period of uninterrupted innovation and growth, but I wonder if Fuller would feel the same today when looking back on roughly 50 years of (relative) scientific stagnation (at least in some fields).
For anybody else irritated by watching all of the short segments stitched together by the video player at the Internet Archive, I wrote this script to concatenate the mp4 segments and re-encode as a single mp4 file.
#!/bin/sh
DIR=$1
BASE=$(basename $DIR)
echo copying from $DIR to create $BASE.mp4
# copy the files over
mkdir $BASE
cp -v $DIR/*.xml .
cp -v $DIR/*.mp4 $BASE/
echo done copying
echo convert segments to ts files
# convert all the mp4 files to intermediate transport stream format
for f in $BASE/?????.mp4; do
echo "$f -> $f.ts"
ffmpeg -i $f -c copy -bsf:v h264_mp4toannexb -f mpegts $f.ts > /dev/null 2>&1
done
# concatenate all the ts files and then re-encode them to mp4
echo concatenate ts files and re-encode as mp4
(cd $BASE;
ffmpeg -i $(echo -n "concat:"; for f in *.ts; do echo -n "$f|"; done) -c copy -bsf:a aa c_adtstoasc ../$BASE.mp4
)
# clean up
echo clean up
rm -rf $BASE
echo done
I too got exposed to him via the Venus project and Robert Steele's "open source everything manifesto"[1]. Having read Jacque Fresco [2] and found it clear and easy to follow, I tried to read Bucky's book "ideas and integrities" [3], but his almost stream-of-conciousness kind of writing style is so opaque and non approachable (to me at least) that I had to give up.
Can you recommend anything from him that is more readable?
Back in the 1990s, I saw an old video of Buckminster Fuller talking about a hyperloop-like transit system that would connect the entire world using the ocean floor, amongst other things. To this day, I always thought Elon Musk got his idea from this video, yet I’ve never heard anyone mention it.
It was a fairly common trope in "golden age" sci fi iirc, along with moving people roads, and people tubes (like the Futurama opening credits). Elon is straight out of a Robert Heinlein book - the crazy billionaire building rocket ships to mars, he's even made them stainless steel so they shine like on the old astounding adventures covers.