@yosh@toot.yosh.is
@yosh@toot.yosh.is avatar

yosh

@yosh@toot.yosh.is

Better things are not only possible; they're within reach.

Concurrent Computing ←
Programming Language Design ←
Rust and WebAssembly at Microsoft ←

u(๑╹ᆺ╹)

This profile is from a federated server and may be incomplete. Browse more on the original instance.

yosh, to random
@yosh@toot.yosh.is avatar

LRT: Async in WASI 0.3 externalizes the runtime entirely, making it possible to provide first-class async at the ABI level.

This means there is no runtime to thread through the program: the host responsible for running the Wasm program is the reactor.

All you do at the boundaries of your program is say things like: "this is a stream of values" or "this is a future", and the host + bindings generator will handle it correctly. This enables compositions of programs to share one runtime.

yosh,
@yosh@toot.yosh.is avatar

What's also neat is that for API abstractions on top of 0.3 syscalls, supporting sync and async requires roughly the same amount of work.

All you have to do is tell the bindings generator you want the async/.await version of the API, and the host just has support for that. Wrapping that in e.g. the Rust stdlib should be no extra work at all, given we had a place to expose the types from.

yosh, to random
@yosh@toot.yosh.is avatar

Legit question: why do data centers use vast amounts of water? It’s for cooling right?

I’m wondering why it isn’t possible to use heat pumps — potentially even at scale, to achieve cooling? I’m legitimately interested in why water is being used, and why alternatives are hard to deploy.

yosh,
@yosh@toot.yosh.is avatar

Huh, yeah — according to this article data centers indeed use water primarily for cooling:

https://dgtlinfra.com/data-center-water-usage/

I know “heat” as a resource has a bunch of useful applications. Can be stored for later use, etc. Here in Copenhagen my home is heated by municipal heating. I’m wondering what makes this hard to apply to data centers?

yosh, to random
@yosh@toot.yosh.is avatar

made garlic confit for the first time today — slightly too toasty, forgot to add aromatics, but still delicious!

yosh, to random
@yosh@toot.yosh.is avatar

Yay! The in-progress wasi:i2c proposal (WASI spec for embedded devices) just moved to phase 2!

This means it's not just something promising anymore, but it seems ready to be implemented in host systems and begin gathering implementation and user feedback from.

I'm legit very excited about this! — But this seems like it has a real shot at improving the embedded development experience. Virtual platform layering, local platform emulation, standard APIs, etc. etc. I'm into it!

yosh,
@yosh@toot.yosh.is avatar

@whitequark That was voted on in the WASI W3C sub-group meeting today! If you’re interested in attending those meetings — I believe they’re open, though I think you might need to sign up somewhere?

@ricochetcode knows this better than I do 😅

yosh, to random
@yosh@toot.yosh.is avatar

Never ceases to stump me that we have the technology to kill 99.95% of airborne viruses, proven to work, non-invasive, cheap to deploy and install, and is produced at scale already and we just like - collectively - kind of just don't really use it.

HEPA-grade air filtration is proven, cheap, and makes everyone's lives strictly better. It, like, makes zero fiscal sense for governments not to mandate its use in all covered public spaces ASAP.

yosh,
@yosh@toot.yosh.is avatar

@WagesOf ah right, yeah I agree that perfect should be the enemy of good.

Perfect filtration sure takes effort, but the point is not perfection — it’s reduction. Like, I can go to IKEA today and buy a HEPA-grade filter for $6. Not best in class, but certainly affordable. Why? Because they’re produced at scale.

“To make any dent at all” is unsubstantiated by evidence. It’s clear that any amount of ventilation is better than none. Any amount of filtration is better than none.

yosh, to random
@yosh@toot.yosh.is avatar

I love that we have a word for turning things into rats. For all its flaws, English including the word “ratification” isn’t one.

yosh, to random
@yosh@toot.yosh.is avatar

Updated my bio last weekend. It feels nice; self-affirming, etc.

yosh, to random
@yosh@toot.yosh.is avatar

Yesssssss!!!! It’s now possible to write VS Code extensions using WASI 0.2 and Wasm Components!

https://code.visualstudio.com/blogs/2024/05/08/wasm

It doesn’t yet eliminate the need for TypeScript in extensions, but it certainly provides a more compelling experience than managing sub-processes and bespoke RPC calls - as is common in extensions using languages other than JS/TS.

yosh, to random
@yosh@toot.yosh.is avatar

I disagree with a lot in this article, but hey it's good that four years into the pandemic the WHO finally recognizes that SARS-CoV-2 is airborne:

https://www.scientificamerican.com/article/a-fight-about-viruses-in-the-air-is-finally-over-now-its-time-for-healthy/

Now that that's out of the way, hopefully we'll start seeing governments act on implementing clean air protocols. More research is nice (hi Far-UVC), but the focus of governments worldwide really ought to be to roll out mechanical ventilation where possible, and HEPA filtration everywhere else. This should be standard.

yosh, to random
@yosh@toot.yosh.is avatar

Im sad most conferences are inaccessible to people with compromised immune systems. Or even just folks who choose not to put themselves at risk.

I really miss seeing the folks I work with in person. Hang out. Chat. Geek away. I wish it was possible for me to attend, but unfortunately it isn’t.

yosh, to random
@yosh@toot.yosh.is avatar

The American Society of Heating, Refrigerating and Air-Conditioning Engineers (ASHRAE) has published standards for Indoor Air Quality (ASHRAE 62.1 & 62.2) and Control of Infectious Aerosols (ASHRAE 241).

I've done a first pass over the numbers published in ASHRAE 241, converting the cited numbers for various scenarios to cubic meters of clean air per person per hour. Then compared that to some of the air filters I've been looking at recently:

https://gist.github.com/yoshuawuyts/0ad5847069965230307c05f417ebc9b8

yosh,
@yosh@toot.yosh.is avatar

I'm looking into this because a number of pals are trying to create safer community spaces. The information on how to do that is available, but unevenly distributed - so I figured that I might as well read up (:

I now know that one group will probably be happy with a Mini Mk.2 purifier as part of their fixed deployment. With additional mitigations needed for when they run events.

jacob, to random
@jacob@jacobian.org avatar

Hi friends, I'm looking for tooling recommendations for doing property testing and fuzz testing in: Ruby, JavaScript/TypeScript, Go, Rust.

In Python, I'd use Hypothesis and Atheris but what are the good tools in those other languages?

I know that AFL++ can be used with targets written in any language, and that's great, but I'm also interested in language-specific tooling, if/where it exists.

Especially interested in personal success — I can Google too but want to know what worked for you.

yosh,
@yosh@toot.yosh.is avatar

@jacob oh, I wrote something which might be helpful for you not too long ago (Rust): https://blog.yoshuawuyts.com/bridging-fuzzing-and-property-testing/

Of anything, it should provide enough jumping off points to decide what is the best fit for your own work.

yosh, to random
@yosh@toot.yosh.is avatar

imo the best part of the UK are the power plugs. they're so sturdy with a fuse built in. I love them.

xgranade, to Seattle
@xgranade@wandering.shop avatar

Wanted: a small, finite number of RSS feeds I can follow to make sure I don't miss new concert announcements in . So far, The Stranger's / EverOut's feed has been quite good, but there's still a lot of stuff at Nectar, Neumos, et al. that doesn't get listed there.

yosh,
@yosh@toot.yosh.is avatar

@whitequark @xgranade

As someone who is about to fly with a 3M elastomeric tomorrow:; I’m looking at the MSA900 with the speaking diaphragm like 👀

yosh,
@yosh@toot.yosh.is avatar

@whitequark @xgranade

Oh that’s amazing! Whenever I’m in mass transit with my partner, wearing the 3M basically means we can’t hold a conversation.

Not like we enjoy lengthy conversations while in transit anyway; but the option to would be nice. I’m going to try and get one I think. Thanks for the info!

yosh, to random
@yosh@toot.yosh.is avatar

,,,,,,,,,
,,,,,,
,,
,,,

yosh, to random
@yosh@toot.yosh.is avatar

Looked at maybe doing some coding today. Realized I’m still too sick to do coding.

Day 7 of this cold today. Not bad enough to actually be a hindrance. But not good enough that I can do the work I should be doing.

yosh,
@yosh@toot.yosh.is avatar

@indutny yaaa; I’m sorry! I hope you feel better soon!

yosh, to random
@yosh@toot.yosh.is avatar

I’ve written maybe 60.000 word in the last eight months, and published maybe 1/10th of that.

Definitely not been feeling motivated to share much of my writing anymore recently. Maybe I’ll do a publishing week in a few months time where I just hit the publish button on all of it in a single sitting or something.

yosh, to random
@yosh@toot.yosh.is avatar

I learned about the first/second-hand account feature of the Cherokee language, and I really like it. My understanding is that verbs take a different suffix depending on whether you yourself observed something, or you got that information from someone else.

Would happily trade, say, gendered nouns in Latin languages for clearer provenance by default.

  • All
  • Subscribed
  • Moderated
  • Favorites
  • JUstTest
  • kavyap
  • DreamBathrooms
  • thenastyranch
  • magazineikmin
  • tacticalgear
  • cubers
  • Youngstown
  • mdbf
  • slotface
  • rosin
  • osvaldo12
  • ngwrru68w68
  • GTA5RPClips
  • provamag3
  • InstantRegret
  • everett
  • Durango
  • cisconetworking
  • khanakhh
  • ethstaker
  • tester
  • anitta
  • Leos
  • normalnudes
  • modclub
  • megavids
  • lostlight
  • All magazines