Canonical will provide free Ubuntu Pro on up to 5 machines for personal and small business uses. This provides additional security and support to extend the life of LTS releases. Details at https://9to5linux.com/canonical-launches-free-ubuntu-pro-subscriptions-for-everyone
Spiral Framework for PHP
High-Performance Long-Living PHP Framework for modern enterprise application development — https://github.com/spiral/framework
The prompt says “Start writing” so, sure, I’ll just start writing. I’m on my phone at the moment so writing is me like swiping but it does have a certain cursive feel to it once you get going. Of course proof reading to avoid bad autocorrect is essential. It also helps to have something to say and that’s a bit subjective I think.
What I’m really looking for is whether or not I can post without a title. Sometimes I have an idea but get stuck staring at the “Add title” and lose my inspiration. Not having to think of a title is nice.
Control your home automation remotely with Raspberry Pi and Traefik Hub | Opensource.com
Employ open source networking to facilitate cloud-native apps.
Source: Control your home automation remotely with Raspberry Pi and Traefik Hub | Opensource.com
From opensource.com: Building the metaverse with open source
From opensource.com: A Drupal developer’s guide to Progressive Web Apps
Here is an outlined approach to PWA implementation for a Drupal site, but other options are certainly available with similar designs.
From RaceDepartment: Automobilista 2 | The Ultimate Formula 1 Season Guide
When it comes to retro content in sim racing, it is hard to ignore Automobilista 2 – the selection is overwhelming, especially for Formula 1 fans. The sim currently offers no less than 14 Formula 1 seasons, spanning six decades – which exact years are represented is only undoubtedly made clear in very few cases. To give you a better overview of the historic F1 content, we have assembled a guide to the different classes for you.
No less than 32 cars from six decades – the amount of choice is a sight to behold and cannot be found anywhere else, except with mods. The best part: All of the F1 cars in Automobilista 2 are free and already in the sim – you do not need to buy them as DLC.
Source: Automobilista 2 | The Ultimate Formula 1 Season Guide
Pretty cool that you can run all of these historic cars as part of the base game.
Scraping the Teknoids Mailman PiperMail Archive
Putting this here in case anyone finds themselves in need of something to scrape a Pipermail web archive of a Mailman mailing list. This bit of Python 3 is based on a a bit of Python 2 I found at Scraping GNU Mailman Pipermail Email List Archives. The only changes I made from the original are to update somethings to work in Python 3. It works well for my purposes, generating a single text file of the teknoids list archive from 2005 to today.
#!/usr/bin/env python
import requests
from lxml import html
import gzip
from io import BytesIO
listname = 'teknoids'
url = 'https://lists.teknoids.net/pipermail/' + listname + '/'
response = requests.get(url)
tree = html.fromstring(response.text)
filenames = tree.xpath('//table/tr/td[3]/a/@href')
def emails_from_filename(filename):
print (filename)
response = requests.get(url + filename)
if filename[-3:] == '.gz':
contents = gzip.GzipFile(fileobj=BytesIO(response.content)).read()
else:
contents = response.content
return contents
contents = [emails_from_filename(filename) for filename in filenames]
contents.reverse()
contents = b"\n\n\n\n".join(contents)
with open(listname + '.txt', 'wb') as filehandle:
filehandle.write(contents)
The best new free music-making software: essential freeware for April 2022 | MusicRadar
“The best new free music-making software: essential freeware for April 2022 | MusicRadar” https://www.musicradar.com/news/best-new-free-music-software-april-2022
My last post to teknoids: He’s dead, Jim. This list is getting a reboot
I just posted to the teknoids list letting everyone know I’m shutting down the list and replacing it with a Discourse forum at https://discourse.teknoids.net/. here’s the text of the post:
As a few of you may have noticed things have been amiss with the list since late last year when Microsoft decided to put the list on some sort of irrevocable ban list. As a result messages are not being delivered to over half of the subscribers at law schools around the country. That’s nearly 300 people. More troubling to me is that virtually no one who stopped receiving messages even appears to have noticed that they aren’t getting messages anymore.
After trying many, many approaches to getting the ban lifted and staring at the apparent ambivalence of the list itself I’ve decided to shut down the list effective immediately. The mailing list has been around for 30 years and I’ve been the admin for many of those, so it wasn’t an easy decision to make. The list will no longer function after 5:00 PM ET today, Monday April 4, 2022.
Of course on the Internet nothing ever really goes away. The list archives will continue to be available. For those of you interested in continuing the conversation, growing the community, or just generally keeping in touch I’m launching a new website called The Teknoids List at https://discourse.teknoids.net/. The new Teknoids List is a Discourse-based discussion forum that is up and running now. I’d like to invite everyone on the list to head on over and create an account. Tell your friends, tell your neighbors, tell your colleagues! With some luck I hope we can grow the new site into the go to place to discuss and discover that latest in tech + legal education.
If you have any questions or concerns please reply to me directly or, better, head on over to https://discourse.teknoids.net/ and we’ll talk them through.
Thanks,
Elmer
Chief Teknoid
https://discourse.teknoids.net/