Searching txt.sour.is

Twts matching #42:
Sort by: Newest, Oldest, Most Relevant

‘Vertical Morality’ Might Describe Why MAGA Christians Seem So Unchristian
Caroline Bologna,    -  HuffPost

Stephan: Evangelical MAGAT Christianity is actually pseudo-Christianity, as I have been telling you for years. It has nothing to do with Jesus’ teachings. Here is a good explanation of what I mean, and why I mean it.

Image

_Vertical morality has led … ⌘ Read more

⤋ Read More
In-reply-to » @itsericwoodward @bender this is vaguely concerning...does yarn refresh feeds every minute or two? or is there some special "notify twtxt.net to refresh my feed" that i don't know about

@zvava@twtxt.net yarnd fetches the feeds roughly every ten minutes:

grep twtxt.net www/logs/twtxt.log | cut -d ' ' -f1 | tail -n 20
2025-10-04T07:00:45+02:00
2025-10-04T07:10:26+02:00
2025-10-04T07:22:43+02:00
2025-10-04T07:30:45+02:00
2025-10-04T07:40:48+02:00
2025-10-04T07:52:59+02:00
2025-10-04T08:00:07+02:00
2025-10-04T08:13:33+02:00
2025-10-04T08:23:13+02:00
2025-10-04T08:31:22+02:00
2025-10-04T08:41:29+02:00
2025-10-04T08:53:25+02:00
2025-10-04T09:03:31+02:00
2025-10-04T09:11:42+02:00
2025-10-04T09:23:11+02:00
2025-10-04T09:29:49+02:00
2025-10-04T09:36:17+02:00
2025-10-04T09:46:33+02:00
2025-10-04T09:58:40+02:00
2025-10-04T10:06:54+02:00

I suspect that the timing was just right. Or wrong, depending on how you’re looking at it. ;-)

⤋ Read More
In-reply-to » TNO Threading (draft):
Each origin feed numbers new threads (tno:N). Replies carry both (tno:N) and (ofeed:<origin-url>). Thread identity = (ofeed, tno).

Example:

Alice starts thread href=”https://txt.sour.is/search?q=%2342:”>#42:**

2025-09-25T12:00:00Z (tno:42) Launching storage design review.

Bob replies:

2025-09-25T12:05:00Z (tno:42) (ofeed:https://alice.example/twtxt.txt
) I think compaction stalls under load.

Carol replies to Bob:

2025-09-25T12:08:00Z (tno:42) (ofeed:https://alice.example/twtxt.txt
) Token bucket sounds good.

⤋ Read More

Mother and son charged over break-in spree targeting Sydney businesses
A 42-year-old woman is accused of coordinating dozens of break-ins targeting businesses across Western Sydney, with her 18-year-old son also charged over the alleged spree. ⌘ Read more

⤋ Read More
In-reply-to » @kat I don’t like Golang much either, but I am not a programmer. This little site, Go by example might explain a thing or two.

One of the nicest things about Go is the language itself, comparing Go to other popular languages in terms of the complexity to learn to be proficient in:

⤋ Read More

M0SS-101 Synth with BL616 RISC-V Delivers Classic Controls in a Compact DIY Kit
The M0SS-101 is a compact virtual analog monosynth designed for hands-on subtractive synthesis. It features 42 editable parameters accessible through 26 buttons and a rotary encoder, with RGB LEDs providing visual feedback for signal flow and modulation. The synth includes dual oscillators, a multi-mode filter, envelope and LFO control, delay effects, and 17 preset slots […] ⌘ Read more

⤋ Read More

Trump says he’s fighting antisemitism — and accepting a $400 million gift from a government that funded Hamas
Anthony L. Fisher,  Senior Editor and Writer  -  MSNBC

_Stephan: The corruption of multi-felon, convicted sex abuser Donald Trump and his family is unlike anything ever seen before in the United States 250-year history. Do you remember when Hillary Clinton could not accept a necklace valued at something like $42 … ⌘ Read more

⤋ Read More

42% of Americans under 30 say they’re ‘barely getting by’ financially, Harvard survey finds
Mike Winters,  Money Reporter  -  CNBC

_Stephan: When I was a boy, the social consensus was that each generation would do better than the one before. Despot Trump has reversed all of that and, as you can see in this report, it is particularly affecting young people who didn’t go to college. We are moving into a recession, maybe even a depression, a … ⌘ Read more

⤋ Read More

[$] LWN.net Weekly Edition for April 17, 2025
Inside this week’s LWN.net Weekly Edition:

  • Front: APT 3.0; Fedora 42; Lots more LSFMM+BPF coverage.

  • Briefs: CVE funding; Yelp vulnerability; Fedora 42; Manjaro 25.0; GCC 15; Pinta 3.0; Quotes; …

  • Announcements: Newsletters, conferences, security updates, patches, and more. ⌘ Read more

⤋ Read More

Trump approval rating now? What polls say of president today amid tariffs pause, China trade war
Chris Sims,   Digital Content Producer for Midwest Connect Gannett  -  IndyStar

_Stephan: We are experiencing a coup created by a man who sees himself as above the law, basically the self-appraisal of every aspiring dictator, and yet if you look at the polls reported today you see that between 42 to 47% of Americans still approve what … ⌘ Read more

⤋ Read More

Yet another Trump-loving creep is arrested for alleged sex crimes
Emily Singer,  Contributing Writer  -  Daily Kos

Stephan: The characteristic of the Republican MAGAt political world that really stands out to me, is the sexual perversion and dysfunction that defines so many of these White men. Particularly, their interest in pubescent underage girls.

Image

_Repu … ⌘ Read more

⤋ Read More
In-reply-to » i really wanna learn golang it looks fun and capable and i can read it kind of but every time i try it i'm immediately stuck on basic concepts like "what the fuck is a pointer" (this has been explained to me and i still don't get it). i did have types explained to me as like notes on code which makes sense a bit but i'm mostly lost on basic code concepts

@kat@yarn.girlonthemoon.xyz Pointers can be a bit tricky. I know it took me also quite some time to wrap my head around them. Let my try to explain. It’s a pretty simple, yet very powerful concept with many facets to it.

A pointer is an indirection. At a lower level, when you have some chunk of memory, you can have some actual values sitting in there, ready for direct use. A pointer, on the other hand, points to some other location where to look for the values one’s actually after. Following that pointer is also called dereferencing the pointer.

I can’t come up with a good real-world example, so this poor comparison has to do. It’s a bit like you have a book (the real value that is being pointed to) and an ISBN referencing that book (the pointer). So, instead of sending you all these many pages from that book, I could give you just a small tag containing the ISBN. With that small piece of information, you’re able to locate the book. Probably a copy of that book and that’s where this analogy falls apart.

In contrast to that flawed comparision, it’s actually the other way around. Many different pointers can point to the same value. But there are many books (values) and just one ISBN (pointer).

The pointer’s target might actually be another pointer. You typically then would follow both of them. There are no limits on how long your pointer chains can become.

One important property of pointers is that they can also point into nothingness, signalling a dead end. This is typically called a null pointer. Following such a null pointer calls for big trouble, it typically crashes your program. Hence, you must never follow any null pointer.

Pointers are important for example in linked lists, trees or graphs. Let’s look at a doubly linked list. One entry could be a triple consisting of (actual value, pointer to next entry, pointer to previous entry).

  _______________________
 /               ________\_______________
↓               ↓         |              \
+---+---+---+   +---+---+-|-+   +---+---+-|-+
| 7 | n | x |   | 23| n | p |   | 42| x | p |
+---+-|-+---+   +---+-|-+---+   +---+---+---+
      |         ↑     |         ↑
       \_______/       \_______/

The “x” indicates a null pointer. So, the first element of the doubly linked list with value 7 does not have any reference to a previous element. The same is true for the next element pointer in the last element with value 42.

In the middle element with value 23, both pointers to the next (labeled “n”) and previous (labeled “p”) elements are pointing to the respective elements.

You can also see that the middle element is pointed to by two pointers. By the “next” pointer in the first element and the “previous” pointer in the last element.

That’s it for now. There are heaps ;-) more things to tell about pointers. But it might help you a tiny bit.

⤋ Read More
In-reply-to » @lyse Where? 🧐

@prologic@twtxt.net Of course you don’t notice it when yarnd only shows at most the last n messages of a feed. As an example, check out mckinley’s message from 2023-01-09T22:42:37Z. It has “[Scheduled][Scheduled][Scheduled]“… in it. This text in square brackets is repeated numerous times. If you search his feed for closing square bracket followed by an opening square bracket (][) you will find a bunch more of these. It goes without question he never typed that in his feed. My client saves each twt hash I’ve explicitly marked read. A few days ago, I got plenty of apparently years old, yet suddenly unread messages. Each and every single one of them containing this repeated bracketed text thing. The only conclusion is that something messed up the feed again.

⤋ Read More

Celebrating 42 successful CNCF mentees who graduated from the LFX Program Term 3 2024
By Nate Waddington, Head of Mentorship & Documentation, CNCF CNCF congratulates the 42 mentees who have graduated from the latest LFX mentorship program funded by CNCF! 21 CNCF Graduated, Incubating, and Sandbox projects, as well as… ⌘ Read more

⤋ Read More

‘Ironic’: climate-driven sea level rise will overwhelm major oil ports, study shows
Damian Carrington,  Environment Editor  -  The Guardian (U.K.)

Stephan: Humanity’s dangerous poor behavior as part of the matrix of life on Earth may, as this report describes, become a major factor in pushing us out of our carbon era. As the title says how “Ironic”.

![](https://www.schwartzreport.net/wp-content/uploads/2025/01/Screenshot-2025-01-07-at-8.42.07 … ⌘ Read more

⤋ Read More

** Please clap **
Look. I promise I won’t always post so many rss only things, but I gotta exercise my new thing.

I am an incredibly unhandy person, yet today I accomplished two household projects — I re-hung a door that needed a hinge replaced, and I replaced a broken overhead light in our bathroom. I even navigated Lowe’s. ⌘ Read more

⤋ Read More

College enrollment is falling at a ‘concerning’ rate, new data reveals
Erum Salam,  Staff Writer  -  The Guardian (U.K.)

Stephan: The United States population is becoming a notably less educated, and I mean from kindergarten to college. Here is the latest on this trend.

Image

_The University of Maryland campus in College Park, Maryland. Credit: The Washington … ⌘ Read more

⤋ Read More

只改變一個字符就能使 Golang 程序提速 42-
虎哥來聊聊怎麼用一個小小的改動,給你的 Golang 代碼提速 42%!很多時候,程序性能優化就是這樣:只要動一個字符,就可能帶來出人意料的提升。今天咱們就從切片傳遞優化、變量聲明優化和字符串拼接優化入手,看看怎麼改動這麼一個字符能讓 Golang 飛起來!🚀切片傳遞優化先來說說切片。切片在 Go 語言中用得特別多,因爲它們既靈活又方便。然而,切片的傳遞會帶來性能問題,尤其是當切片非常大時。原始代 ⌘ Read more

⤋ Read More

Monero Dev Activity Report - Week 42 2024: 27 PRs, 14 Issues
This weekly report aims to provide a big picture view of Monero development activity, increase community support for existing devs and, hopefully, encourage new contributions.

1 - PRs (27, 8:4:15)

Opened (8)

monero-project/monero:

  • #95231 build: bump minimum macos version to 10.15 (tobtoht)
  • #95222 blockchain_utilities: add tool to track running counts of locked outputs (jeffro256)
  • #95253 te … ⌘ Read more

⤋ Read More

Monero Observer Artistic Saturday Top 5 - Week 42, 2024
Previous Artistic Saturday weekly reports can be found in the [art] 1 section.

5 - ‘Monero Pepe’ meme (by Anonymous2)

Image

4 - ‘Bitcoin is Monero’s testnet’ illustration (by cypherpunk313373)

Image

3 - ‘Crypto world vs Monero world’ comic (by gnuteardrops[4 … ⌘ Read more

⤋ Read More

Hmm:

42 75 69 6C 64 20 77 68 61 74 20 6D 61 6B 65 73 20 79 6F 75 20 68 61 70 70 79 2E 20 4C 65 74 20 6D 69 73 65 72 61 62 6C 65 20 70 65 6F 70 6C 65 20 62 75 69 6C 64 20 74 68 65 20 72 65 73 74 2E

⤋ Read More

Something @anth@a.9srv.net said on ITC

17:42 I should also note in there that it doesn’t address the two things i really want it to: mandate utf-8 (which should be easy to fit in) and something for better @ mentions.

I actually agree with in both counts and it got me thinking…

⤋ Read More