[47°09′00″S, 126°43′58″W] Carrier too weak
@prologic@twtxt.net fuck yeah!!!
I am now fully off Cloudflare 🥳
[47°09′00″S, 126°43′14″W] Bad satellite signal – switching to analog communication
So Go lang is at a funny version huh’ v1.23.4
will there ever be a v1.23.45678? 🫠🤡
@prologic@twtxt.net <333 ty
@aelaraji@aelaraji.com i might give it a try soon!
@lyse@lyse.isobeef.org ahhh thank you so so much!!!! i’ve heard of shellcheck but haven’t checked it out properly - will try it for my scripts :D i really appreciate it
@shreyan@twtxt.net Yeah the guy seems quite mad and hell bent on destroying his reputation and his project 🤦♂️
@shreyan@twtxt.net Hello! 👋 Welcome back! 🤗
@prologic@twtxt.net Extremely, this whole episode has been insane
Hello again, spent a long time inactive!
@slashdot@feeds.twtxt.net Matt really is a fucking idiot 🤦♂️ Right? 🤔
@slashdot@feeds.twtxt.net Are these guys for realz? 🤔
Enron.com Announces Pre-Orders for Egg-Shaped Home Nuclear Reactor
“Nuclear you can trust,” reads the web page promoting “The Egg, an at home nuclear reactor.”
Yes, Enron.com is now announcing “a micro-nuclear reactor made to power your home.” (A quick reminder from CNN in December. “A company that makes T-shirts bought the Enron trademark and appears to be trying to sell some merch on behalf of the g … ⌘ Read more
Stop Trying to Schedule a Call with Me
Article URL: https://matduggan.com/stop-trying-to-schedule-a-call-with-me/
Comments URL: https://news.ycombinator.com/item?id=42669754
Points: 501
# Comments: 174 ⌘ Read more
Upcoming JF35 MTU1 Low Profile 3.5″ Motherboard with Intel 14th Gen Core Ultra Processors and Dual 2.5GbE LAN
The JF35-MTU1 is an upcoming 3.5-inch form factor motherboard designed for industrial applications, including control systems, robotics, and digital signage. Built around Intel’s 14th Gen Core Ultra processors, this board is expected to offer a balance of performance, connectivity, and durability for challenging operat … ⌘ Read more
That’s a well done mapping of computer time scale to human time scale: https://youtu.be/PpaQrzoDW2I Matt Godbolt is also a guy that I just enjoy listening to.
@movq@www.uninformativ.de Hmm yeah, you’re right. I should have checked for our location prior to getting too excited.
@aelaraji@aelaraji.com Yeah, a sore neck is always a win. :-P Here’s nothing really to see, all cloudy. And also a bit cold at -2°C. I don’t feel like standing still all that long outside at the moment. :-D
Couldn’t see shi_, but enjoyed observing the moon light slipping trough the fast moving clouds! I’ll take that as a win 👍
/Me came back with a soar neck …
WordPress.org Accounts Deactivated for Contributors Said to Be Planning a Fork - by Automattic CEO
WordPress co-creator (and Automattic CEO) Matt Mullenweg “has deactivated the accounts of several WordPress.org community members,” reports TechCrunch, “some of whom have been spearheading a push to create a new fork of the open source WordPress project.”
Joost de Valk — creator … ⌘ Read more
@lyse@lyse.isobeef.org /Me throws his keyboard off to the side, grabs his camera just in case and runs upstairs screaming “Yeah! Science B_ !”
[47°09′52″S, 126°43′11″W] –bad checksum–
Heck yeah, that’s really cool! Let’s hope for a clear sky: “On the evening of 28 February 2025, all seven of the other planets in the Solar System will appear in the night sky at the same time, with Saturn, Mercury, Neptune, Venus, Uranus, Jupiter, and Mars all lining up in a neat row – a magnificent sky feast for the eyes known as a great planetary alignment.” https://www.sciencealert.com/a-rare-alignment-of-7-planets-is-about-to-take-place-in-the-sky
Cost-Efficient PICO2-XL and PICO2-XXL OSHW Boards Now Available for Pre-Order
Olimex has announced that the highly anticipated PICO2-XL and PICO2-XXL open-source hardware boards are now available for pre-order, with shipments starting on January 17, 2025. These boards expand on the Raspberry Pi PICO2, offering increased GPIO availability and improved memory configurations for enhanced development flexibility. First introduced in November 2024, the PICO2-XXL features … ⌘ Read more
Your code apparently works just fine. Until it @doesnm@doesnm.p.psf.lt’t. ;-) The shell languages are weird and having some strange properties that one is just not used to when coming from other languages.
shellcheck
: https://github.com/koalaman/shellcheck It points out common errors and gives some suggestions on how to improve the code. Some details in shell scripting are very tricky to get right at first. Even after decades of shell programming, I run into "corner cases" every now and then.
Checked my posthook… looks like my bash skills at zero: https://doesnm.cc/huh.txt
code { white-space: pre }
in their CSS themes to render things as they're supposed to look like.
Well, I stand corrected, pre-wrap
even! https://git.mills.io/yarnsocial/yarn/pulls/1186
Magical.Fish
shellcheck
: https://github.com/koalaman/shellcheck It points out common errors and gives some suggestions on how to improve the code. Some details in shell scripting are very tricky to get right at first. Even after decades of shell programming, I run into "corner cases" every now and then.
PSA: Yarnd operators might want to define code { white-space: pre }
in their CSS themes to render things as they’re supposed to look like.
@andros@twtxt.andros.dev I love how this is coming together! :-)
Pine64 Starts 2025 with January Community Updates on PineVox and More
As 2025 begins, Pine64 has provided a community update for January. This month’s updates include progress on the PineVox, ongoing developments for the PineNote, and the release of InfiniTime 1.15. PineVox Progress Development of the PineVox firmware has seen significant advancements. The device can now connect to Home Assistant, detect wake-up commands, and process inputs. […] ⌘ Read more
@kat@yarn.girlonthemoon.xyz To improve you shell programming skills, I highly recommend to check out shellcheck
: https://github.com/koalaman/shellcheck It points out common errors and gives some suggestions on how to improve the code. Some details in shell scripting are very tricky to get right at first. Even after decades of shell programming, I run into “corner cases” every now and then.
E.g. in getlyr
’s line 7 it warns:
echo -e $(gum style --italic --foreground "#f4b8e4" "'$artist', '$song'")
^-- SC2046: Quote this to prevent word splitting.
For more information:
https://www.shellcheck.net/wiki/SC2046 -- Quote this to prevent word splitt...
Most likely not all that problematic in this application, but it’s good to know about this underlying concept. Word splitting is basically splitting tokens on whitespace, this can lead to interesting consequences as illustrated by this little code:
$ echo $(echo "Hello World")
Hello World
$ echo "$(echo "Hello World")"
Hello World
In the first case the shells sees two whitespace-separated tokens or arguments for the echo
command. This basically becomes echo Hello World
. So, echo
joins them by a single space. In the second one it sees one argument for the echo
command, so echo
simply echos this single argument that contains three spaces.
[47°09′45″S, 126°43′34″W] Saalmi, retransmit, please
@prologic@twtxt.net Oh yeah, that’s terrible, yuck! Let’s not do it then. :-)
@prologic@twtxt.net As written in IRC, several things turned me off. I don’t have the energy at the moment to wrestle through. :-(
After I stripped off my clothes and turned around, I came to the conclusion that the plan to shower was cancelled at this moment. The faucet had broken right off and was laying in the tub. I noticed that the diameters of the hot and cold water pipes were surprisingly small, didn’t expect that. Since the pipes were broken flush with the wall, I couldn’t even determine if I had to remove the inner our outer threads, well, remains thereof, in order to attempt to repair this mess. Luckily, I was going to see a plumber mate at the christmas tree collection later anyway.
The first thing that came to mind when I woke up was that I didn’t catch the logical flaw in my dream: absolutely no water was coming out of the burst pipes. The whole scenario took place in summer, so the water couldn’t be frozen either.
Finally my (web/txt)mention sender ready. Receiver i’m borrow from sorenpeter’s timeline
@slashdot@feeds.twtxt.net And this is why I block all subnets of known “Ai Crawlers” 🤦♂️🤦♂️
OpenAI’s Bot Crushes Seven-Person Company’s Website ‘Like a DDoS Attack’
An anonymous reader quotes a report from TechCrunch: On Saturday, Triplegangers CEO Oleksandr Tomchuk was alerted that his company’s e-commerce site was down. It looked to be some kind of distributed denial-of-service attack. He soon discovered the culprit was a bot from OpenAI that was relentlessly attempting to scrape his entire, en … ⌘ Read more
I’m sharing new developments on the client. I now have a more stable timeline. The first version will appear in the next few weeks.
#emacs #twtxt@kat@yarn.girlonthemoon.xyz That sounds interesting, good luck!
On my blog: Free Culture Book Club — Blood of the Ancient Star, part 1 https://john.colagioia.net/blog/2025/01/11/bloodstar-1.html #freeculture #bookclub
Test reply for webmention tester!
[47°09′05″S, 126°43′48″W] –interrupted–
There have been many changes to oh.mg https://mmn.ca/s/1fahcfvu
Hello world
Need to summary all of these logic. So:\u2028 1. If file named twtxt.txt then grab parent directory name or hostname if file in root (and maybe delete ~?) \u2028 2. If file named nick.txt then grab filename
[47°09′14″S, 126°43′58″W] Resetting transponder
[47°09′35″S, 126°43′51″W] 4285 days without news from Herve
@kat@yarn.girlonthemoon.xyz Thinking maybe you’d like to alpha teat EdgeGuard too? 🤔 – My own alternative solution to Clownflare 🤣
@kat@yarn.girlonthemoon.xyz This is so cool!
@kat@yarn.girlonthemoon.xyz definitely a fun way to get better at bash scripting by hand (AKA learn how it works besides the extreme basics i know) and use gum to make them cute too
@kat@yarn.girlonthemoon.xyz both scripts are here under the names ‘getlyr’ and ‘now playing’ if you wanna try them out yourself, just make sure you have gum installed (also curl and jq but most people have those i think) https://git.sr.ht/~chasinglightning/dotfiles/tree/main/item/home/.local/bin
been playing with making fun scripts using charm CLI’s gum library :P
one that gets lyrics from an open lyrics database’s API and accepts input for artist & song names: https://asciinema.org/a/697860
and one that uses a user-provided last.fm API key to pull what’s currently playing or what last played on your account :) https://asciinema.org/a/697874
@prologic@twtxt.net ah that’s good lol! i once pulled from main for a huge web app that i deployed and it haunts me because it will make upgrading so much harder lol
@slashdot@feeds.twtxt.net Have to agree with the comments on this one 😆 Zuck hasn’t invented shit. Period.
Zuckerberg: Apple ‘Hasn’t Invented Anything Great in a While’
Meta CEO Mark Zuckerberg criticized Apple’s innovation record and business practices in a Joe Rogan podcast interview on January 10, claiming the iPhone maker has not “invented anything great in a while” and is “just sitting” on its flagship product 20 years after Steve Jobs created it.
Zuckerberg accused Apple of using arbitrary App Store rules and 30% … ⌘ Read more
Nooooooooi 😅
@<url>
form of mentions. Strictly require that all mentions include a nickname/name; i.e: @<name url>
.
@bender@twtxt.net Hahahahah 🤣🤣
@bender@twtxt.net That could work aactually…
@kat@yarn.girlonthemoon.xyz pretty much 🤣🤣
@ocdtrekkie@twtxt.net Do you have a copy of his feed in your archive? 🤔🤔
Anyway… Sounds like there is a bug with the version logic. I’ll see if I can fix it.
@kat@yarn.girlonthemoon.xyz Building from source and from the main
branch is totally fine. In fact encouraged. I have a philosophy of main
being stable anyway and making sure backwards compatibility is kept in mind when changing things. i.e: No database migrations to run by hand or what not.
On my blog: Toots 🦣 from 01/06 to 01/10 https://john.colagioia.net/blog/2025/01/10/week.html #linkdump #socialmedia #quotes #week
Ugh! Not @david@collantes.us, but this one. I am going nuts. Well, I am nuts!
I am letting this domain go at the end of this year. Another of my alter ego feeds will be gone then. Oh, the humanity! 😅
Yes, error on my side. All of the sudden jenny refused to show me my own posts. Had to recreate mailbox (got rid of cache too) to make it work.
@movq@www.uninformativ.de I think it was user error. Testing again.
twtxt.txt
, following your recommendation, there could be many "twtxt" nicks. 😀
If feed are named twtxt or tw then grab parent directory name!
Testing … (yeah!)
@bender@twtxt.net (secret received!).
example.com/x/bananas/yo.txt
, and the feed has no nick. What is the nick?
nick is yo? Btw say me which method you choiced. I want to make mention fixer like @bender -> @bender@twtxt.net in my post-hook
@prologic@twtxt.net so i did a mistake that i’ve done before and i think i just pulled from the main branch which is STUPID i KNOW and i don’t LEARN but whatever. i was having trouble with my go version and the makefile so i think i literally just ran it as my user with go in the path and redirected the binaries to go to a temporary directory i made and then moved them to /usr/bin lol. i’m not sure what could’ve caused this! probably something in the pipeline of weirdness i just wrote out
@prologic@twtxt.net thank you so much!
[47°09′56″S, 126°43′34″W] Transponder fixed
@prologic@twtxt.net LMAO thats so funny i need to try jenny i was trying it but i couldn’t figure out my twtxt sync script for it
@prologic@twtxt.net wait thats so cute re: the yarn name! i had no idea! we’re all just keeping the yarn ball rolling…
@kingdomcome@yarn.girlonthemoon.xyz love this for you
@kingdomcome@yarn.girlonthemoon.xyz trueee! good point
Let’s return to previous conversation: what if detect nick from url: pubnix.com/~nick/twtxt.txt is nick, domain.com/anick.txt is anick and etc
I’m so hot when I do things with fabric no sensible person would do
Deadline TODAY:
Call for Co-Creation Bootcamp: Improving civic participation with emerging technologies - Observatory of Public Sector Innovation
“We are looking for developers, designers, researchers, or technologists to join public sector teams to jointly create solutions to civic participation challenges in our co-creation bootcamp in Lisbon from 26 to 27 February 2025.”
happy friday.
Happy friday.
although I agree that it helps, I don’t see completely correct to leave the nick definition to the source .txt. It could be wrong from the start or outdated with the time.
I’d rather prefer to get it from the mentioned .txt nick metadata (could be cached for performance).
So my vote would to make it mandatory to follow @<name url>
but only using that name/nick if the URL doesn’t contain another nick.
A main advantage is that when the destination URL changes the nick, it’ll be automagically updated in the thread view (as happens with some other microblogging platforms, following the Jakob’s Law)
@<url>
form of mentions. Strictly require that all mentions include a nickname/name; i.e: @<name url>
.
word of the thay, prosoal
Is it a typo of Proposal right? =P (Genuinely asking)
@lyse@lyse.isobeef.org Hmmmm the smell of burning cotton 🤣
@<url>
form of mentions. Strictly require that all mentions include a nickname/name; i.e: @<name url>
.
@lyse@lyse.isobeef.org Hmm you ate right 😆 Also did you volunteer to fix this 🤔🤣
@<url>
form of mentions. Strictly require that all mentions include a nickname/name; i.e: @<name url>
.
@prologic@twtxt.net If you’ve got the feed URL in yarnd’s cache, you can easily look up a missing nick. If you can’t find it, just show the URL (or maybe just the domain name to be halfway consistent with this @nick@domain
thing that yarnd invented) and be done. It’s really that simple.
When yarnds peer with each other, the odds of actually having come across that feed URL in the past are higher than with traditional clients that only have their local set of subscribed feeds. One additional improvment would be to also look at all the mentions and see if somebody used a nick for that URL and go with that.
Yeah, yarnd currently renders some really weird shit when the mention contains just a URL, but I’d call that a bug for sure.
Personally, I do not like the @nick@domain
syntax at all. It looks silly to my eyes. What might have also contributed is the fact of this mentions syntax gotten screwed up so many times by yarnd in the past. But that’s a totally different topic.
@kat@yarn.girlonthemoon.xyz @prologic@twtxt.net So, a burning roll of yarn…? :-D
[47°09′09″S, 126°43′46″W] Transponder jammed
I’ve acquired a new superpower
Article URL: https://danielwirtz.com/blog/spot-the-difference-superpower
Comments URL: https://news.ycombinator.com/item?id=42655870
Points: 507
# Comments: 230 ⌘ Read more
@prologic@twtxt.net Since I live in Germany, I do believe the media here is generally reputable. It really depends where you live of course. Source I look at are Reuters, NPR, The Guardian, Die Zeit, NY Times, CNN, Tagesschau, Spiegel Online, RP Online (for local news), … I would never just trust what I see in my social media feeds.
@gallowsgryph@prismdragon.net Sorry to hear that dude 😢 Hope things improve for you! 👌👌