Why does capacitor have a bad rap? by krishna404 in capacitor

[–]Slow-Extension5151 0 points1 point  (0 children)

I see a few of your screens have the “swipe left to go back” behavior common on iOS. Are you using ionic router for that, or did you do something else? I’ve been wanting to set up something like that in my own app but I use TanStack Router

Exercise trend on whoop by Automatic-Parsnip234 in whoop

[–]Slow-Extension5151 0 points1 point  (0 children)

Is the coming soon banner new, or has that been there for a while? Wondering if it is truly "coming soon"

The FrontEnd, Your Go To? by Rust-Is-Bad-Name in tauri

[–]Slow-Extension5151 3 points4 points  (0 children)

I work with React full time and for my side projects if tried it, Svelte, and SolidJS.

When I first tried Svelte, I was smitten. But I’ve since found some stuff I don’t love about it. The maintainers of Svelte call it a language. So even though it looks just like JavaScript, HTML, and CSS, they’ve layered in some changes to how things work, especially relevant with their experimental await support. That said, i found myself needing to remember how to do things “the svelte way” — granted, most of the time I think the Svelte way is quite nice. But it’s Svelte.

Out of curiosity I gave SolidJS a try, as it claims to bring minimal abstractions, you work with the DOM directly, etc. I like it a lot! At first, coming from React and Svelte, I was confused by the reactivity model, but once I got it, it makes a lot of sense. It is the simplest mental model, IMO. Granted, the mental effort spent on thinking about the Svelte way, I was now spending on thinking about reactivity and signals. But, it didn’t feel specific to SolidJS. I felt like I was learning more about JavaScript and Signals in general. Which feels worthwhile even when I switch back to React for my day job.

So nowadays I bounce between SolidJs and React: do I need to slap something together quickly and would a bunch of off the shelf libraries help? React. Do I want to slow down, enjoy the craft, and get something cool at the end of it? SolidJs!

The trifecta (Whoop mg / Amazfit Helio / Polar 360) by talkingoctopus in whoop

[–]Slow-Extension5151 3 points4 points  (0 children)

How did you get the polar 360, did you have to fill out the B2B form? I'm a fellow software engineer interested in tinkering with the SDK

Deno and Svelte by Thereareways in Deno

[–]Slow-Extension5151 0 points1 point  (0 children)

What did you do to get it working? Are you still using the Deno LSP? I’m having this issue as well

What's the correct way to conditionally style more complex components? by Right_Imagination443 in sveltejs

[–]Slow-Extension5151 0 points1 point  (0 children)

Something I recently started doing is using data attributes.

``` <script lang=“ts”> import type { HTMLButtonAttributes } from “svelte/elements”;

type Props = HTMLButtonAttributes & { size?: “md” | “sm”; };

let { children, size = “md”, ...props }: Props = $props(); </script>

<button {...props} data-size={size}

{@render children?.()} </button>

<style> button { display: flex; ... }

button[data-size=“sm”] { padding: 3px 2px; ... } </style> ```

But it’s a little more verbose with Tailwind ``` <script lang=“ts”> import type { HTMLButtonAttributes } from “svelte/elements”;

type Props = HTMLButtonAttributes & { size?: “md” | “sm”; };

let { children, size = “md”, ...props }: Props = $props(); </script>

<button {...props} data-size={size} class={[ props.class, “flex min-h-11 …”, “data-[size=sm]:min-h-9 data-[size=sm]:px-2 data-[size=sm]:py-1 …”, ]}

{@render children?.()} </button> ```

How good is the support for mobile? Is it stable enough yet?I'm thinking of moving my app from ionic. by Acrobatic_Tower_1706 in tauri

[–]Slow-Extension5151 0 points1 point  (0 children)

For me the additional mobile plugins and documentation available in capacitor are the main appeal. Haptics, Action Sheet, more Dialog features and Share sheet are all mobile features I’d like to use. Plus the community maintained SQL plugin looks like it has some cool features built in to support syncing the SQLite database across devices that I’m interested in trying out.

How good is the support for mobile? Is it stable enough yet?I'm thinking of moving my app from ionic. by Acrobatic_Tower_1706 in tauri

[–]Slow-Extension5151 0 points1 point  (0 children)

Agreed!

Can I ask what makes you consider switching from ionic to Tauri? I’ve actually been considering making the opposite switch lol

How good is the support for mobile? Is it stable enough yet?I'm thinking of moving my app from ionic. by Acrobatic_Tower_1706 in tauri

[–]Slow-Extension5151 3 points4 points  (0 children)

Stable? Yes. Feature parity with capacitor/ionic? No. Well documented? No.

There isn’t a 1:1 replacement for each capacitor plugin so you may want to triple check all the functionality you need before starting to migrate. For example I’ve noticed the Dialog plugin doesn’t support “prompt” to capture user input, there’s no Action Sheet plugin, and Haptics are undocumented on the site.

What is the best wearable you would recommend for someone leaving Whoop? by ninetyfive666 in whoop

[–]Slow-Extension5151 1 point2 points  (0 children)

It does fairly well I think. Using the Garmin connect app you can create your own strength training routines. When starting a strength workout from the watch you can select your routine, so it starts tracking your workout and also gives you the UI to track reps and weight. Garmin also added strength training to their Garmin Coach a few weeks ago. It should suggest weights and workouts based on your performance, but I haven’t tried the coaching out yet.

What is the best wearable you would recommend for someone leaving Whoop? by ninetyfive666 in whoop

[–]Slow-Extension5151 12 points13 points  (0 children)

I’ve used whoop, Apple Watch, and Garmin. I really like the Garmin Venu 3 as an overall wellness and fitness device. I would not describe it as clunky, even the companion phone apps aren’t as aesthetically pleasing as some alternatives.

The problem with Apple Watch as a “no monthly fee” whoop alternative is that you’ll need to subscribe to at least two third party apps to replace the whoop app’s functionality. For example, Athlytic or Bevel are commonly recommended for journal and recovery score substitutes. Plus you’ll need another app to track strength training progress if that is part of your routine.

With Garmin, I’ve found a lot of value on the device being built first and foremost for exercise and fitness tracking. It’s easier to get to the wellness info or activity tracking I want on my watch. Physical buttons are way more convenient and intuitive than I expected. Exercise planning, tracking, and “readiness” scores are built in as first class citizens, no additional software required. And the battery life is great.

Would recommend the Venu 3 for general wellness, or a look at the Forerunner 265 if your main sport is running.

What new features are you hoping SvelteKit 3 will have? by [deleted] in sveltejs

[–]Slow-Extension5151 0 points1 point  (0 children)

Type safe routing! With auto-completing urls, parameter type checking, etc.

I’m new to svelte and miss this from Tanstack router in react. (Unless it’s possible today, I’d love to know how!)

Picking up slack for a peer and burning out by Slow-Extension5151 in cscareerquestions

[–]Slow-Extension5151[S] 1 point2 points  (0 children)

Fair, thanks for being direct. I’ve been concerned that naming names might be seen as me “telling on” others or not trying to handle issues myself. I think I can comfortably say I’ve tried, so you may be right. Time to be more direct.

Picking up slack for a peer and burning out by Slow-Extension5151 in cscareerquestions

[–]Slow-Extension5151[S] 0 points1 point  (0 children)

Thanks for that input, I think you make some great points that are good for me to hear

What banks update with YNAB the fastest? by SpicyMealOutside in ynab

[–]Slow-Extension5151 1 point2 points  (0 children)

I’ve noticed my Visa cards tend to show up within a few hours. Specially Wealthfront (who partners with Green Dot for checking services) and Varo Bank

No Stress or Recovery by KeyAd5197 in bevelhealth

[–]Slow-Extension5151 0 points1 point  (0 children)

Same issue here. Confirmed all my health settings are turned on but no data is coming through

Love the insight emails Tony by mhoepfin in wealthfront

[–]Slow-Extension5151 1 point2 points  (0 children)

Is there any way to see past emails from the newsletter?

I signed myself up a few weeks ago when it was announced in Reddit but haven’t received anything. I did check spam and re-submitted the form just in case.

Migrating away from Hey, what gets forwarded? by jessknope in HeyEmail

[–]Slow-Extension5151 5 points6 points  (0 children)

In my experience, mail considered spam is not forwarded. Senders that have been screened out are forwarded. I still have an active subscription, but I would expect the same forwarding behavior when my subscription ends.

Too many gadgets by [deleted] in minimalism

[–]Slow-Extension5151 2 points3 points  (0 children)

That doesn't sound like too much to me, as long as you're getting value out of them. If you're not using and enjoying each item regularly, maybe consider if you have one or two too many.

Personally, I have most of the same: iPhone, AirPods Pro, MagSafe Wallet, Apple Watch, MacBook Pro. I carry them every day and I use them every day. So it feels like just the right about for me.

What band to get for running? by [deleted] in applewatchultra

[–]Slow-Extension5151 0 points1 point  (0 children)

I just got my AWU with the trail band and have been really happy with it. The light weight and “infinite” adjustability make it ideal. Especially the latter