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

⤋ Read More
In-reply-to » (#buulkxq) @kat 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.

Checked my posthook… looks like my bash skills at zero: https://doesnm.cc/huh.txt

⤋ Read More
In-reply-to » (#buulkxq) @kat 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.

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.

⤋ Read More

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
In-reply-to » been playing with making fun scripts using charm CLI's gum library :P

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

⤋ Read More
In-reply-to » good morning yarn friends. we need a funny name for yarn posters. what's something that fits the yarn theme.... i mean we quite literally have threads here. yarn threads. how epic is that. now us posters need a funny name too.

@prologic@twtxt.net Oh yeah, that’s terrible, yuck! Let’s not do it then. :-)

⤋ Read More

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.

⤋ Read More
In-reply-to » 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

@slashdot@feeds.twtxt.net And this is why I block all subnets of known “Ai Crawlers” 🤦‍♂️🤦‍♂️

⤋ Read More

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

⤋ Read More
In-reply-to » 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.

@slashdot@feeds.twtxt.net Have to agree with the comments on this one 😆 Zuck hasn’t invented shit. Period.

⤋ Read More

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

⤋ Read More
In-reply-to » Hmm, I just noticed that the feed template seems to be broken on your yarnd instance, @kat. Looking at your raw feed file (and your mates as well), line 6 reads:

Anyway… Sounds like there is a bug with the version logic. I’ll see if I can fix it.

⤋ Read More
In-reply-to » Hmm, I just noticed that the feed template seems to be broken on your yarnd instance, @kat. Looking at your raw feed file (and your mates as well), line 6 reads:

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

⤋ Read More
In-reply-to » Hmm, I just noticed that the feed template seems to be broken on your yarnd instance, @kat. Looking at your raw feed file (and your mates as well), line 6 reads:

@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

⤋ Read More
In-reply-to » good morning yarn friends. we need a funny name for yarn posters. what's something that fits the yarn theme.... i mean we quite literally have threads here. yarn threads. how epic is that. now us posters need a funny name too.

@prologic@twtxt.net wait thats so cute re: the yarn name! i had no idea! we’re all just keeping the yarn ball rolling…

⤋ Read More

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

https://oecd-opsi.org/blog/call-for-co-creation-bootcamp/

⤋ Read More
In-reply-to » (#ot56hla) What say you @movq @lyse @eapl.mx / @darch @andros (new client author)? 🤔 Shall I PR this up?

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)

⤋ Read More
In-reply-to » 🤔 Prosoal: Disallowed the @<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)

⤋ Read More
In-reply-to » 🤔 Prosoal: Disallowed the @<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.

⤋ Read More
In-reply-to » (#yrem2zq) @johanbove But which one(s)? 🤔🤔 Serious question; my neighbor next door swears by the BBC and ABC (I'm Australian); but honestly even those news sources are full of political rhetoric and non-facts (opinions, etc) -- I have yet to see a single news source of actual facts and nothing 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.

⤋ Read More

DEEPX iMX8M Mini AI Kit Delivers 25 TOPS for Edge AI Performance
Virtium, in collaboration with Embedded Artists, has introduced the DEEPX iMX8M Mini AI Kit, integrating the DEEPX DX-M1 AI Booster with the NXP iMX8M Mini processor and a carrier board. The kit is designed for evaluating and deploying Edge AI technologies across various applications. The DEEPX DX-M1 AI Booster delivers 25 TOPS of AI performance

⤋ Read More

(Updated) Upcoming I-Pi SMARC Embedded Prototype Kit Adopts Intel Amston Lake CPU
The I-Pi SMARC Amston Lake is a prototyping kit built on Intel’s Amston Lake architecture, designed to accelerate embedded system development. Key features include dual 2.5GbE LAN ports with Time-Sensitive Networking support and CAN interfaces for industrial applications. This kit includes the I-Pi SMARC Plus carrier and the LEC-ASL SMARC module, which features an Intel

⤋ Read More

Pandora Compact AI Computer Powered by NVIDIA Jetson Orin NX Super
Palit Microsystems has introduced Pandora, a compact AI computer designed for high-performance edge AI applications. Powered by the NVIDIA Jetson Orin NX Super module, Pandora is available in 8GB and 16GB configurations, providing 117 TOPS and 157 TOPS, respectively, for demanding computational tasks. Pandora offers a variety of connectivity options for diverse use cases. It

⤋ Read More

AAEON Unveils $556 GAR-A750E Graphics Card with Intel Arc GPU Architecture.
AAEON has introduced its first advanced graphics card, the GAR-A750E, powered by Intel Arc A750E GPU architecture. Designed for applications requiring significant AI and graphics capabilities, the card is built in a compact form factor of 236mm x 109mm x 42mm. The GAR-A750E features 28 Xe-Cores, a graphics turbo frequency of 2400MHz, and 448 Intel

⤋ Read More
In-reply-to » @prologic i thought i was going insane when i saw blank posts on my TL i was like is noscript fucking with me again but no it's you guys fucking around LOLLLL

@kat@yarn.girlonthemoon.xyz It most certainly was us fucking around 🤣🤣 Turns out to be a side-effect of the way the Twt Subject extension is implemented in yarnd and now apparently jenny 🤣🤣 Where it strips out the subject from the displayed/rendered content. Which is what you want… But oh well haha 😆

⤋ Read More
In-reply-to » good morning yarn friends. we need a funny name for yarn posters. what's something that fits the yarn theme.... i mean we quite literally have threads here. yarn threads. how epic is that. now us posters need a funny name too.

@kat@yarn.girlonthemoon.xyz Haha, that’s why we came up with the name “yarn” and “yarn social”. A yarn is an Australian and Canadian (and a few other places) term that means “to have a friendly conversation”, “to have a chat”. Usually around a campfire 🔥

⤋ Read More
In-reply-to » 🤔 Prosoal: Disallowed the @<url> form of mentions. Strictly require that all mentions include a nickname/name; i.e: @<name url>.

@movq@www.uninformativ.de

Was there ever a reason to do that? 🤔

I’m not sure to be honest. I have no idea why you’d ever want to do a “nameless” @-mention@twtxt.net.

As an aside, if we could all agree, I’d personally just say we scrap this whole fragile broken shit and bring out WebMentions and be done with it. And then mentions are always @nick@domain and looked up, cached and can never be screwed up haha 🤣

⤋ Read More
In-reply-to » 🤔 Prosoal: Disallowed the @<url> form of mentions. Strictly require that all mentions include a nickname/name; i.e: @<name url>.

@lyse@lyse.isobeef.org

What’s the motivation for deprecation?

Namely that without the mention having a label (as such) it becomes very hard to render it in any sane/nice way. I think we should just stick to @<label url> personally. It makes implementations have to worry about far less edge cases.

⤋ Read More
In-reply-to » Shit in my life has been spiraling out of control at an unbelievable rate. And just when you think life can't get shittier it dumps an even bigger N° 2 on yO face.

Thanks, I’m trying my best. Also, nice to meet you (and welcome back?) @oevl@twtxt.net, never seen you around before. 🙌

⤋ Read More

Hmm, I just noticed that the feed template seems to be broken on your yarnd instance, @kat@yarn.girlonthemoon.xyz. Looking at your raw feed file (and your mates as well), line 6 reads:

# This is hosted by a Yarn.social pod yarn running yarnd ERSION@OMMIT  go1.23.4
                                                         ^^^^^^^^^^^^

Looks like the first letters of the version and commit got somehow chopped off. I’ve no idea what happened here, maybe @prologic@twtxt.net knows something. :-? I’m not familiar with the templating, I just recall @xuu@txt.sour.is reporting in IRC the other day that he’s also having great fun with his custom preamble from time to time.

That “broken” comment doesn’t hurt anything, it’s still a proper comment and hence ignored by clients. It’s just odd, that’s all.

⤋ Read More
In-reply-to » 🤔 Prosoal: Disallowed the @<url> form of mentions. Strictly require that all mentions include a nickname/name; i.e: @<name url>.

tt currently supports all three forms: @<nick url>, @<url> and even the illegal @<nick>. The difference between the last two is whether the token in angle brackets looks like a URL or not. Whenever a nick is available, the nick is rendered. In case there is just a URL, it tries to resolve the nick from the subscriptions. If that also does not work, it displays the URL.

⤋ Read More