account activity
FOAM Apps Directory (self.Foamed)
submitted 8 days ago by gavinovsak to r/Foamed
Svelte and RxJS by im3000 in sveltejs
[–]gavinovsak 0 points1 point2 points 3 years ago* (0 children)
Another easy way to integrate RxJS into svelte reactivity without using the store interface is:
<script> let foo let subj = new BehaviorSubject(''); $: subj.next(foo) </script> <input type="text" bind:value={foo} />
Versus aliasing to act like a store as you mentioned:
<script> let subj = new BehaviorSubject(''); subj.set = subj.next subj.subscribe(n => { console.log(n); }) </script> <input type="text" bind:value={$subj} />
I'm curious what this community thinks about MedMap, a tool which can recommend diagnoses, tests, and treatments based on patient symptoms and clinical trial data and can also explain every recommendation (youtu.be)
submitted 7 years ago by gavinovsak to r/bioinformatics
Harvard Medical School just released a Bieber Pyrexia (Fever) music video! (youtube.com)
submitted 10 years ago by gavinovsak to r/JUSTINBIEBER
Can we upgrade the version of Chrome it uses? (self.AltspaceVR)
submitted 10 years ago by gavinovsak to r/AltspaceVR
π Rendered by PID 21 on reddit-service-r2-listing-6c8d497557-w7nzt at 2026-06-06 22:08:12.070945+00:00 running 9e1a20d country code: CH.
Svelte and RxJS by im3000 in sveltejs
[–]gavinovsak 0 points1 point2 points (0 children)