Skip to main content




Trump says he has commuted sentence of George Santos in federal fraud case


Well, how delightful.

Donald Trump announced on Friday he had commuted the sentence of George Santos, the disgraced former New York representative and serial fabulist who had been sentenced to more than seven years in prison after a short-lived political career marked by outlandish fabrications and fraudulent scheming.

The New York Republican was sentenced in April after pleading guilty last year to wire fraud and aggravated identity theft.

“I just signed a Commutation, releasing George Santos from prison, IMMEDIATELY,” Trump posted on his social media platform.

In July, Santos reported to a federal prison in New Jersey, where he began serving an 87-month sentence for charges that ultimately led to his expulsion from Congress in 2023.


I do like that The Guardian goes out of its way not to give him a title on first reference. Must be nice not to be encumbered by AP Style.



Key US nuclear agency to send 80% of workforce home as shutdown drags on




Faculty at Texas university fear entire liberal arts departments will be slashed


in reply to Powderhorn

something something violent hordes coveting the products of a civilization they could not understand, invading to take control of it, just to realize they destroyed it in the process and don't know how it worked or why it mattered


Prince Andrew to give up all his titles and honours, including Duke of York


#news


Mangga Teal Tide Salad


Blueberry Mango Spinach Salad

with
Walnuts, Feta/Vegan-feta Cheese, and Lemon Honey
Mustard Dressing Ingredients: 4 cups fresh spinach
leaves (washed and dried)
- 1 ripe mango, peeled and diced
- 1/2 cup fresh blueberries
- 1/3 cup feta/vegan-feta cheese crumbled
- 1/4 cup walnuts, chopped
- 1 tbsp olive oil
(optional, for extra richness)

For the Lemon Honey Mustard Dressing:

  • 2 tbsp Dijon mustard
  • 1 tbsp honey
  • lemon juice 1 tbsp
  • olive oil 1 tsp
    apple cider vinegar and pepper, to taste

Directions: Prepare the
Dressing: In a small bowl, whisk together the Dijon
mustard, honey, lemon juice, olive oil, apple cider
vinegar, and pepper until smooth. Taste and
adjust sweetness or acidity as needed

This entry was edited (3 weeks ago)


California to sell affordable state-branded insulin beginning next year [$11 per dose]




NodeBB Lemmy federation issue (re: nullable image/icon)


nutomic@lemmy.ml reported a federation issue with a NodeBB instance and we debugged it. It turns out Lemmy is unable to handle actors who have image or icon set to null.

Lemmy is taking steps to handle this (source, source), and NodeBB will update its actor logic to omit properties without an avatar or cover photo set.

in reply to infinite love ⴳ

Re: NodeBB Lemmy federation issue (re: nullable image/icon)


trwnh@mastodon.social said in NodeBB <> Lemmy federation issue (re: nullable image/icon):
> using null is equivalent to just leaving out the statement in the first place.

That's not true, there are specific scenarios where having an explicit "no value" is significant vs "missing value"...

in reply to julian

if you give me any specific examples of when you would want to use null, i can recommend better alternatives. generally, it's always possible that there is missing information.
in reply to infinite love ⴳ

Re: NodeBB Lemmy federation issue (re: nullable image/icon)


trwnh@mastodon.social found one.

NodeBB uses audience to denote which audience an object (or context) belongs to.

Posts and Topics in NodeBB can belong to no context at all. null would be the way to communicate this, since omission might mean one isn't specified.

Likewise, a Move(Context) where a topic is moved out of a category but not into another. You probably shouldnt omit target there.

This entry was edited (2 weeks ago)
in reply to julian

no, null is the same as nothing. what you want is more like [] (the empty set). in the case where you Move something without a target, you should be sending an Update (or Remove) instead. just like a Move without an origin would instead be an Add.
This entry was edited (2 weeks ago)
in reply to infinite love ⴳ

but more generally my question is, what practical application would you need to make use of an empty set []? like, a consumer encountering a value should do A, encountering a null or missing property should do B, encountering an empty set should do C... what is the difference between B and C?
in reply to infinite love ⴳ

Re: NodeBB Lemmy federation issue (re: nullable image/icon)


trwnh@mastodon.social receiving a Move(Context) where target is null would tell NodeBB to move the topic to -1, uncategorized.

For those not supporting the catch-all bucket, deleting the context is ok too.

in reply to julian

so this is still in effect a Remove or Update, not a Move. if you wanted it to be a Move, you would instead have an "uncategorized" category whose id is /categories/-1 or something like that.
in reply to infinite love ⴳ

Re: NodeBB Lemmy federation issue (re: nullable image/icon)


trwnh@mastodon.social oh, another one.

Glitch-soc apparently lets you hide follower counts, and federates a -1. That works but null would be a more explicit statement that the follower collection is hidden/not accessible.

in reply to julian

leaving out the totalItems statement entirely would do the same thing. the problem is when you ignore the (lack of) information presented and synthesize your own.

you could also define a vocab term for "hidden" or "unavailable", although this isn't much better than leaving it out in the first place

in reply to infinite love ⴳ

Re: NodeBB Lemmy federation issue (re: nullable image/icon)


trwnh@mastodon.social leaving out totalitems is absolutely not the same as explicitly declaring a null value. You don't know whether the implementation just didn't send totalItems or whether it was omitted on purpose.
in reply to julian

what's the difference between "not sending" vs "omitting"? those are synonyms
in reply to julian

there's no difference on the consuming side (and in many programming languages you can check for truthiness with something like `if x.get("totalItems")` which defaults to returning null if missing anyway)

functionally, you either have the information, or you don't

in reply to infinite love ⴳ

Re: NodeBB Lemmy federation issue (re: nullable image/icon)


trwnh@mastodon.social as someone working on the consuming side, that is not correct.

If my AP lib automatically assumed null when requesting an object property that didn't exist I'd consider that a bug.

in reply to julian

this wouldn't be your AP lib, it would be your programming language itself
in reply to infinite love ⴳ

Re: NodeBB Lemmy federation issue (re: nullable image/icon)


trwnh@mastodon.social I'm coding in js, which has all sorts of footguns, but even that won't return null when I attempt to access the non-existent property of an object... 😛
in reply to julian

what does js return instead? in most cases i'm familiar with, programming languages use null or nil or None for anything that doesn't have a value, or any reference which doesn't point anywhere. hence a null pointer exception when you try to dereference a null. if you try to get a value for a key that isn't in the dictionary, you get null by default because there is no value for a missing key. how would you consume a null value? if you have nothing to say, why say anything?
in reply to infinite love ⴳ

Re: NodeBB Lemmy federation issue (re: nullable image/icon)


trwnh@mastodon.social undefined and perhaps that's why we're disagreeing on our interpretations of how these values should be handled.

null in JavaScript is very explicitly a declaration that there is no value or "intentionally empty".

null and undefined are two separate things here at least.

in reply to julian

that might be it, yeah. languages outside of javascript generally don't make a distinction between null and undefined, and even in javascript these are used inconsistently. for example localStorage.getItem will return null for a missing key. practically speaking, the "intentionally" distinction is a distinction without a difference in most processing contexts.

in reply to TheImpressiveX

While I didn't really like it (and I gave it an honest shot), I think that it's probably something that the average non obsessed movie goer would've been more interested in seeing, in a timeline where Ezra Miller wasn't in the news every other day for all the wrong reasons and where there wasn't this lunatic Snyder civil war going on within the DC fandom.

If there wasn't that other whole circus surrounding it, I think the general audience would've probably had fun with the crossovers and cameos and shit, whether it's a mid movie or not.

But by the time this movie came out, the DCEU had been begging to be put out of its misery for a few years already.



My humble philosophy-The Three Aspects of Truth





California's insurer of last resort seeks 36% rate hike







Indiana University orders school paper to cease print edition and fires director of student media


in reply to Powderhorn

It'll be interesting to see how this develops. I expect this to backfire magnificently.



More reliably federating microblog responses


I encountered an odd federation issue where microblog responses do not get [em]reliably[/em] federated to threadiverse instances. Example: [ol] [li]A user on [code]threadiA instance[/code] makes a new post to a category/community on [code]threadiB insta

I encountered an odd federation issue where microblog responses do not get reliably federated to threadiverse instances.

Example:

  1. A user on threadiA.instance makes a new post to a category/community on threadiB.instance.
  2. threadiB.instance federates out the post to all followers per FEP 1b12 (so far so good.)
  3. A second user on microblog.instance replies to that post and tags the user on threadiA.instance (the category/community is omitted — this is how microblogs address content)

In this scenario, only the post on threadiA.instance shows the microblog response. threadiB.instance, the party responsible for federating content to followers, is not aware of the new content. Likewise, any followers of threadiB.instance do not receive the content.

How do Piefed and Lemmy handle this scenario? I attempted to address this by having NodeBB federate out Announce(Create(Object)) directly to the group actor, and tested this against crust.piefed.social. Alas, while the activity was accepted, the activity seems to have been ignored.

cc rimu@piefed.social nutomic@lemmy.ml

This entry was edited (4 weeks ago)
in reply to infinite love ⴳ

Re: More reliably federating microblog responses


trwnh@mastodon.social mm so in that case would you say that Mastodon is practicing salmention?

(Gosh, what part of speech is salmention anyway)

in reply to julian

no, mastodon doesn't use salmon anymore, not since a long time ago. they switched to websub then activitypub direct delivery.

on the indieweb side, salmention is an extension to webmention, where upon receiving a webmention where someone replied to you, you add that reply to your html then send a webmention up the reply chain to whoever you replied to, and they will fetch your html and find the new downstream reply, add it to *their* html, send a webmention upstream, and so on.



Users vow to boycott Spotify after streamer runs ICE recruitment ad


The ads urge listeners to “join the mission to protect America” by becoming U.S. Immigration and Customs Enforcement (ICE) agents, but users of the music streaming giant have taken to social media and Spotify’s website to complain, and announce their withdrawal from the audio platform.
#news
in reply to technocrit

Have never used Spotify because it does not treat artists fairly. ICE advertising is disgusting. Please reconsider your subscription if you care about such things.


User identity and Activitypub


Greetings to the Activitypub.space community. I have a question. Is it possible to use Activitypub protocol to define a unique identity on a single account across the various federated platforms, valid for the entire Fediverse?
in reply to phi

Re: User identity and Activitypub


in reply to evan

> We have some ad hoc ways to move from one to the other, but they aren't built into the SMTP or IMAP specs

yes they are, though? in IMAP, you can just copy your messages and folders from one inbox to another. in SMTP, we have email forwarding.

using your own DNS name can make things easier, but the main challenge in fedi is that we don't have a common storage/access abstraction (equivalent to IMAP folders), and we don't recognize HTTP redirects (equivalent to SMTP forwarding).



Toward cleaner, safer Philadelphia waterways


Climate change and ancient infrastructure make Philadelphia vulnerable to potentially catastrophic flooding, but federal, state, and local efforts are meeting the moment.


I figure they just haven't gotten around to yanking federal support for this kind of adaptation measure



‘The city that draws the line’: one Arizona community’s fight against a huge datacenter




CW ‘Prince Andrew believed having sex with me was his birthright’: Virginia Giuffre on her abuse at the hands of Epstein, Maxwell and the king’s brother


I'm not going to excerpt this. It's pretty much what you expect, but perhaps not who.


US Capitol police investigating flag with swastika in Republican representative’s office – report


This entry was edited (4 weeks ago)
in reply to Megaman_EXE

What do they even need to investigate? Fucking Clouseau would have needed only a couple of minutes!

"Do you know what sort of a flag it was?"

"The Nazi kind."



Chicago ‘Splatatouille’ was probably a squirrel, say researchers


Our long national nightmare is finally over.

With a front paw outstretched and its tail at an angle, the creature that fell on to wet concrete in Chicago left quite the memento mori.

Now, researchers say they have unmasked the identity of the victim, revealing the famous “rat hole” was most probably made by a squirrel.

The unusual imprint, which was labelled “Splatatouille” in a public naming contest, is thought to have been made on West Roscoe Street decades ago, but gained a new wave of attention after a comedian shared a photo of it on social media in early 2024. The imprint was removed later that year when city officials decided sections of the pavement needed to be replaced because of damage.





US airports refuse to air Kristi Noem video blaming Democrats for shutdown


Several major international US airports, including Phoenix Sky Harbor , Harry Reid international in Las Vegas, Seattle–Tacoma and Charlotte Douglas airport in North Carolina, are opting to block a video from the homeland security secretary, Kristi Noem, that blames Democrats for the ongoing federal government shutdown from airing at their checkpoints.

Airport authorities in Phoenix, Las Vegas, Seattle, Portland, Oregon, Charlotte and Westchester county, New York, have refused to display the footage at security checkpoints, saying the overtly political messaging potentially violates state and federal law, including the Hatch Act, which bars federal employees from partisan political activity.

In the video, obtained first by Fox News, Noem tells travelers: “Democrats in Congress refuse to fund the federal government, and because of this, many of our operations are impacted, and most of our TSA [Transportation Security Administration] employees are working without pay.”


That we're even having this problem is, well, a problem.



Panic as US federal workers scramble to find out if they’ve been fired: ‘I don’t have email access’


Federal workers are scrambling to figure out if they still have a job after the Trump administration launched a fresh wave of layoffs amid a federal government shutdown, prompting widespread confusion and panic.

A hearing is scheduled to take place on Wednesday after labor unions sued to block the latest firings, setting the stage for another legal battle over Donald Trump’s efforts to drastically cut back the federal workforce.

About 4,200 federal employees across seven agencies were laid off on Friday, the administration has said, although 700 firings at the US Centers for Disease Control and Prevention (CDC) were swiftly reversed over the weekend.

It remains unclear if Trump, who told reporters that “a lot” of government workers would be fired, plans to go further. The federal workforce has already shed hundreds of thousands of staff on his watch this year.


in reply to PhilipTheBucket

in reply to spit_evil_olive_tips

Yes.

Don't eat venison if you don't know it's been checked. There's no telling where it was sourced from and quite frankly it's so widespread you don't need the risk for some slightly leaner red meat.




Laurence Fishburne wants to play Charles Xavier in MCU's version of X-Men


in reply to TheImpressiveX

he's a great actor. Will do fine.

I'm mostly wondering how they'll handle Magneto, the whole holocaust backstory won't fit anymore unless they set the movie in the past, or some magic bs.

in reply to 🍉 Albert 🍉

Just say he has magically magnetic regenerative powers which make him age "slower than a regular human". Don't specify any more.

Done and done.

Just like handsome Deadpool conveniently lacked regenerative powers.

This entry was edited (4 weeks ago)
in reply to Dasus

i have no real arguments against that,

it just gives me the ick, that's all. I just don't like it.

And now, like an idiot, came up with the idea of setting the X-Men in the early 90s. and now I really want that. and am. very sad that it won't happen.

My imagination hurt my feelings

in reply to 🍉 Albert 🍉

My imagination hurt my feelings



Oh boy, I know that feeling only too well. Hang in there buddy. Haha.

in reply to Dasus

I need a support group for "imagined something that doesn't exist and am sad"
in reply to 🍉 Albert 🍉

~~Ba Dum Tss~~

Edit I didn't mean to put this here, my bad. Wrong reply.

This entry was edited (4 weeks ago)
in reply to Dasus

FUCK, JUST REALISED I DID THAT AGAIN WITH THAT STATEMENT

I swear I didn't mean it

in reply to 🍉 Albert 🍉

Yeah I'm with the other guy you have to keep the Magneto backstory. It's so wonderfully perfect for the character and for the current times. Just do timey whimey shit, I don't care. The store is way too important to risk for something so trivial is it was a while ago. For that matter I don't know why these kind of projects bother setting definitive dates.
in reply to njm1314

there already so little Jewish characters in the media, I think growing up magneto was the only jew I saw on tv.

and representation matters.

I want kids to grow up knowing they can be whatever they want, maybe even extinct the human race.

in reply to 🍉 Albert 🍉

Lucky for Hollywood, we have a fresh new batch of Nazis to pull stories from!
in reply to TheImpressiveX

I like Fishburn, and I think he has the energy for a teacher and a leader. He might be a bit bulky for a wheelchair bound psychic, but you could certainly make worse casting choices.


My thoughts right now.


I've gone to the edges. I sincerely cringe when I choose to tell others I'm wise. My time here put the answers in reach. I know whatever, dude. You wouldn't believe it l, so why would I say it?

I will ask you to consider the value of mental freedom. Just consider tossed away all the biases. Look at everything fresh. Try and simplify things first. Before you think of anything complicated. Bring it down to what is the only possible solution. One is looked over. Intelligence cannot arise without intelligent design. I have checked the boxes in the seemingly impossible data sets. Do you believe it? Nah. It's unfair. I want people to see my honesty. Thanks. Just my thoughts.


in reply to TheImpressiveX

PM season 2 finale took the momentum the Superman and Creature Commandos built up, and just pushed it off a cliff

Most disappointed I've been since the original Suicide Squad

in reply to TheImpressiveX

I've seen a few crazy quotes online of people asking Gunn ridiculous questions, people wanting wild cameos and reveals that don't make sense, but this this one is the most reasonable.

I hope Gunn looks at the more sane responses and understands why the finale didn't work.

Look at the Earth X reveal. It was a little dragged out, but we had two very similar scenes with Peacemaker and Harcourt in a large park in both universes. They had a clear parallel. They had the obvious Harcourt differences, and the surprise populace differences.

But then look at the "Checkmate" reveal. Why is it called "Checkmate"? No character has anything to do with chess. Sure it's a logical next step in Ads story, but other than a failed newspaper ad we don't see her actually do anything. For a character driven show, she should have actually tried and failed.

Look at Eagly. He has magic powers and killed Red Saint Wild. It was neat... But why? No one even cares that Red is dead. Eagly didn't even save the day later on.



[Barcelona - Catalonia - Spain] 🍉 General Strike for Palestine: Unitary demonstration - 6pm Sants station


cross-post from: lemmy.ml/post/37526838

This Wednesday, October 15, 2025, there is a general strike in Catalonia, and in the Spanish state, against the Zionist genocide against the Palestinian people, in solidarity with our fellow Palestinian workers, for the defense of human rights, so that the Palestinian people can decide their political future, for the suspension of the trade agreement between the European Union and the genocidal state of Israel...

Participate!!!!!

To find out more:
- Palestinian Community in Catalonia (has not updated the website yet, search on social networks).
- Enough Complicity with Israel (has not updated the website yet, search on social networks).
- Your union (the two major unions, CCOO and UGT have called a 2-hour strike, but you can join the strike of any other union that has called a 24-hour strike).

Good Strike!!!! #FreePalestine


Note: Auto-translated from Catalan.


in reply to TheImpressiveX

Ugh. First Peacemaker ends horribly and now the next thing we have to look forward to is a space superhero movie? And it's not even a Lantern movie?

eyeroll

in reply to Impulse

Lanterns do get a TV show and it's coming up next. Although not technically a space show AFAIK.
in reply to MimicJar

From what I know, Lanterns will be a cop drama set on Earth. What I’m worried about is limited use of powers. They are space cops and comics don’t really focus on space detective stuff, but they sometimes lightly sprinkle it in.
in reply to TheImpressiveX

Guardians was my favourite of all the Marvel movies. So.... Lucky me??

in reply to along_the_road

"Police ask kids to stop doing things" has a stellar success ratio.
in reply to along_the_road

Separately, would someone please hand The Verge a stylebook?

Round Rock Police Patrol Division Commander Andy McKinney told NBC that it could even “cause a SWAT response.”

The Salem, MA police department summed it up best in a statement saying, “this prank dehumanizes the homeless, causes the distressed recipient to panic and wastes police resources.


With no dateline or prior reference to Texas, apparently Round Rock has been elevated to dateline-city status. Meanwhile, in Salem, Mass., they're slumming it with USPS abbreviations that aren't used in any style I've encountered.




Tenacity 1.4 Alpha 1 Released!




To Know Is To Not Know