12 Matching Annotations
- Apr 2024
-
arxiv.org arxiv.org
-
according to my entire history
-
-
arxiv.org arxiv.org
-
In particular, adeep-fake payload that is not attributed to its source can be promptly filtered as spam
^
-
- Mar 2024
-
www.theguardian.com www.theguardian.com
-
Eine neue Studie ergibt, das Bestandteile von Plastik sogenannte EDCs eine Ursache für die Zunahme von Krebs und anderen Krankheiten vor allem bei Menschen unter 50 Jahren sind. Die EDCs sind nur ein Teil der chemischen Umweltbelastung durch Produkte und Abfälle aus fossilen Brennstoffen, die für mindestens 1,8 Millionen vorzeitige Todesfälle im Jahr verantwortlich ist. https://www.theguardian.com/us-news/2024/mar/06/increase-fossil-fuel-pollution-health-risk-report
-
- Jan 2022
-
-
I ended up writing a custom store that "buffers" sets for both a small time interval and ensuring only one async action is in flight (and triggering an extra round of async processing if a set was seen after the last async action was launched).
-
-
github.com github.com
-
You declare a reactive variable and it's dependencies ("recipe").
-
-
github.com github.com
-
My mental model has always been that a reactive declaration like $: b = a * 2 defines b in it's entirety ("Here's my recipe for b and all the ingredients, please Svelte make b always up to date"). And outside of this declaration b is immutable.
-
First of all, here is what I meant by updating reactive declared variable
-
The intention of the issue #2444 was to propagate the changes of the reactive declared variables back to its dependencies. in the context of this example, would meant, updating b should update a as well.
-
- Aug 2021
-
stackoverflow.com stackoverflow.com
-
The best way to do this is to derive the type Format from a value like an array which contains all of the Format literals.
-
- Oct 2020
-
-
Here's a proxy store I wrote to derive the value of a store nested within other stores, it plays nice with typescript and can go infinitely deep
-
-
svelte.dev svelte.dev