Mastodon Feed: Posts

Mastodon Feed

fromjason ("fromjason.xyz ❤️ 💻") wrote:

Babe, just delete your Instagram already - by katie morley:

"And it was at this very moment, on that disgustingly warm day in July, as I panicked about what some random ass gal from a previous life may or may not think of me, that I realised how toxic my relationship with Instagram had become."

All the A E S T H E T I C girlies from 2012 IG are Substack writers now and honestly a lot of it is very engaging ... https://micro.fromjason.xyz/2024/12/14/babe-just-delete.html

Mastodon Feed

fromjason ("fromjason.xyz ❤️ 💻") wrote:

I’m finishing a write-up on how Bluesky is a libertarian ecosystem based on libertarian ideals, and I’m fighting for my life not to title it “Don’t Skeet on Me Bro.”

Mastodon Feed

Reblogged by fromjason ("fromjason.xyz ❤️ 💻"):

cwebber@social.coop ("Christine Lemmer-Webber") wrote:

Things are NOT good, if I'm correct above, as we make things more decentralized in the atproto-public-shared-heap model. The more self-hosting and indeed the more "full nodes" join, the more it gets expensive for each of the nodes and the network EXPLODES!

Truly self-hosted atproto is NOT POSSIBLE!

Mastodon Feed

fromjason ("fromjason.xyz ❤️ 💻") wrote:

Florida Woman Charged With Terrorism:

"Class warfare against working people is when billion dollar insurance corporations can live by “Delay, Deny, Depose” for decades—even as their policies actually and knowingly enable tens of thousands of annual deaths—but when a working person denied healthcare merely says that exact phrase—it’s terrorism."

Free Briana Boston. https://www.qasimrashid.com/p/florida-woman-charged-with-terrorism

Mastodon Feed

Reblogged by fromjason ("fromjason.xyz ❤️ 💻"):

QasimRashid ("Qasim Rashid, Esq.") wrote:

Why charge Briana Boston with terrorism? A Bug’s Life told us why:

“You let 1 ant stand up to us & they all might stand up. Those puny little ants outnumber us a 100 to 1, and if they ever figure that out there goes our way of life!! It's not about food! It's about keeping those ants in line.”
https://www.qasimrashid.com/p/florida-woman-charged-with-terrorism

Mastodon Feed

Reblogged by kornel ("Kornel"):

dale_price@mastodon.online ("Dale Price") wrote:

This is what the iOS contact permission prompt should be

Attachments:

Mastodon Feed

fromjason ("fromjason.xyz ❤️ 💻") wrote:

I miss the mountains so bad. I’ve been lucky enough to travel parts of the world but nothing has called me back as strong as Glacier National Park.

Here’s me being very classy:

Attachments:

Mastodon Feed

jsonstein@masto.deoan.org ("Jeff Sonstein") wrote:

consider also pandoc for a generalized solution: https://pandoc.org/

https://mastodon.social/@kepano/113647375997842213

Mastodon Feed

Reblogged by jwz:

mcmullin@musicians.today ("David McMullin") wrote:

Almost everyone has decided that they would rather suffer permanent brain damage than the social stigma of being the only one around who doesn’t want brain damage. I don’t get it.

Please be that one masked weirdo who still cares. It will give the second, third and fourth weirdos permission to care too.

#CovidIsNotOver

Mastodon Feed

Reblogged by jwz:

workingclasshistory ("Working Class History") wrote:

#OtD 14 Dec 2008 journalist @muntazer_zaidi threw his shoes at President George W Bush in protest at the US occupation of Iraq, shouting "This is from the widows, the orphans, and those who were killed in Iraq." He resumed his activism after 6 months jail https://stories.workingclasshistory.com/article/8557/muntadhar-throws-shoes-at-gwb

Attachments:

Mastodon Feed

jwz wrote:

Medieval Dick Pics Calendar.

This is a real thing that you can buy. I can't tell who made it, but it is available from your favorite sweatshop retailers.
https://jwz.org/b/ykev

Attachments:

Mastodon Feed

Reblogged by kornel ("Kornel"):

graste@vivaldi.net wrote:

„Mutation XSS: Explained, CVE and Challenge“
https://jorianwoltjer.com/blog/p/hacking/mutation-xss

Mastodon Feed

slightlyoff@toot.cafe ("Alex Russell") wrote:

At the top of your document, you'd have something like:

``

Or it could be done via feature/document policy, as in the NSM proposal [1]:

`Feature-Policy: allow-slow-dom 'none'; ...`

As for the programming model...

[1]: https://github.com/slightlyoff/never_slow_mode

Mastodon Feed

slightlyoff@toot.cafe ("Alex Russell") wrote:

The obvious solution is separate, single, read and write phases per frame. Saw it in action recently in a web-experience-inspired system:

https://learn.microsoft.com/en-us/minecraft/creator/documents/systemrunguide?view=minecraft-bedrock-stable#the-script-tick

The browser's problem is compatibility. We can't begin to enforce this model without developer opt-in as it would lead to tons of obviously broken content. And even if developers opt in, their libraries will have been written for the earlier era of non-pipelined execution.

This has killed many previous attempts.

Mastodon Feed

slightlyoff@toot.cafe ("Alex Russell") wrote:

A tricky thing for DOM events is providing nominally backwards compatible callback surface area for the right phases. I'm not sure how much of a problem this will be in practice. We'd need to live with it to find out.

The tricky thing for developers will be all the silent breakage of code that expects synchronous readback by side effect. But maybe breaking a bunch of bad 3rd-party scripts isn't such a bad thing? IDK.

Mastodon Feed

slightlyoff@toot.cafe ("Alex Russell") wrote:

So there's a bug a the core of the web event lifecycle: we allow reads and writes of UI state to be interleaved. This is, in part, why React's over-abstraction sounded like it could plausibly help[1]. This is something @arv and I noodled on when designing the nu-DOM for Dart...we still need to fix it.

[1]: The ideas was that only the framework would be allowed to do the expensive parts, but that wasn't true; as witnessed by every forced-layout infested React app I trace...which is all of them.

Mastodon Feed

slightlyoff@toot.cafe ("Alex Russell") wrote:

The middle points on the spectrum that enable partial opt-in are a muddle that don't do much to discourage continuing expansion of bad behaviour. But perhaps we could use it as a forcing function to increase use of islands of isolation (e.g. `contain` + Shadow DOM)?

How would all of that work? First, we need page-level opt-in (as the effects of readback are global, rather than local to the script doing the reading). This would *silently* change the behaviour of expensive style readbacks...

Mastodon Feed

slightlyoff@toot.cafe ("Alex Russell") wrote:

In code, that might look like:

```js
// Instead of rAF and double-rAF dances...

let width;
let foo = document.getElementById("foo");
// New read-only phase
window.requestAfterLayout(() => {
// Writing styles throws, but reads are cheap
width = foo.innerWidth; // Never forces layout!
});
window.requestBeforeLayout(() => {
// Like today, but writes don't take effect until later
foo.attributeStylMap.set("width", CSS.px(width * 2));
assert(width == foo.innerWidth); // true!
});
```

Mastodon Feed

slightlyoff@toot.cafe ("Alex Russell") wrote:

Needing new versions of all style read/write APIs seems daunting (would bloat the DOM interface...but maybe on Typed OM? Needs exploration), so one option might be to introduce new phased callbacks in which the existing APIs all exist, but work differently than today. In the read-only phase (conceptually "on-after-paint" in today's event loop), writing to styles would either throw or be silently ignored (or queued?). In the write phase, reading styles would never trigger layout.

Mastodon Feed

fromjason ("fromjason.xyz ❤️ 💻") wrote:

UnitedHealth’s New “I Feel Your Pain” PR Blitz:

"The idea that Witty, who earned $23.5 million last year alone and is a Brit literally knighted by the UK, would “understand” the struggle of any ordinary person is of course laughable. But the kinder, gentler tone they’re adopting is interesting and maybe even hopeful because it suggests that even they cannot ignore how angry the public is."

Maybe I’m a cynic, but this sounds ... https://micro.fromjason.xyz/2024/12/14/unitedhealths-new-i.html

Mastodon Feed

Reblogged by jwz:

luckytran@med-mastodon.com ("Dr. Lucky Tran :verified:") wrote:

you know you're a 90s kid when your vaccinations were mandatory and no one in your class got measles

Mastodon Feed

slightlyoff@toot.cafe ("Alex Russell") wrote:

Missed this by Joeri Sebrechts when it was posted a couple of months ago in response to Ryan's WC screed; *wow*:

*"I hold this truth to be self-evident: the larger the abstraction layer a web developer uses on top of web standards, the shorter the shelf life of their codebase becomes, and the more they will feel the churn."*

https://plainvanillaweb.com/blog/articles/2024-09-30-lived-experience/

Mastodon Feed

fromjason ("fromjason.xyz ❤️ 💻") wrote:

Is there a noun for decentralized social media that isn't so clumsy or not affiliated with a particular protocol (Fediverse)?

When I write I keep wanting to use the word "platform" though I know that's incorrect. But there isn't a simple equivalent term.

Or even something more generic. Network? Ecosystem? "Protocol" isn't all encompassing.

Mastodon Feed

fromjason ("fromjason.xyz ❤️ 💻") wrote:

Bluesky CEO Jay Graber isn’t ruling out advertising | TechCrunch:

"“I think the ways we would explore advertising, if we did, would be much more user intent-driven,” said Graber on stage Wednesday at TechCrunch’s StrictlyVC event in San Francisco. “We want to keep our incentives aligned with users and make sure that we’re not turning into a model where the user’s attention is the product.”"

I think we’re shift into magical ... https://micro.fromjason.xyz/2024/12/14/bluesky-ceo-jay.html

Mastodon Feed

Reblogged by jsonstein@masto.deoan.org ("Jeff Sonstein"):

BryanW@mstdn.social ("Bryan Williams") wrote:

🤔

Attachments:

Mastodon Feed

Reblogged by jsonstein@masto.deoan.org ("Jeff Sonstein"):

tomwellborn3@threads.net ("Tom L. Wellborn") wrote:

Donald Trump has stirred controversy again by selling signed Bibles for $1,000 each at Mar-a-Lago, branding them as "45th President Signature Edition." Critics argue this commodifies a sacred text, aligning faith with transactional politics. Despite backlash, 1,000 copies sold out, raising $1M.
https://meidasnews.com/news/photo-of-autographed-trump-bible-surfaces-at-mar-a-lago

Mastodon Feed

Reblogged by jsonstein@masto.deoan.org ("Jeff Sonstein"):

RIDDLES@c.im ("No Ain’t it awful thinkin 2025") wrote:

Attachments:

Mastodon Feed

jsonstein@masto.deoan.org ("Jeff Sonstein") wrote:

useful

https://www.perplexity.ai/page/harvard-releases-ai-training-d-iDxkgfrfQZO79hEZ_5Ogdg#d81acc92-d2cb-46ee-b162-cd75419340e4

Mastodon Feed

Reblogged by fromjason ("fromjason.xyz ❤️ 💻"):

jglypt@social.lol ("jack") wrote:

resharing this again.

if you are a frequent user of both #Bluesky and #Mastodon, Sill is a useful website which collects all the links from people you follow and allow you to filter it!

https://sill.social/links

Attachments:

Mastodon Feed

kornel ("Kornel") wrote:

There are some user-friendly shells that do some of these things. There are some clever terminals that have some of these features. But they're still both fighting the typewriter protocol dividing them.