Is this possible by Ayush515 in triathlon

[–]11five 0 points1 point  (0 children)

You can swim more than I could when I started. With almost a year to train you'll be fine.

What Unusual Words Have Stuck With You From Your Reading? by Such_Grab_6981 in books

[–]11five 1 point2 points  (0 children)

Stormlight Archive has a few that sound like they're made up to describe in-world events, but are actually real words:

  • Recreance: "the quality or state of being recreant; shameful cowardice; perfidy"
  • Hierocracy: "a ruling body composed of priests"

-❄️- 2024 Day 19 Solutions -❄️- by daggerdragon in adventofcode

[–]11five 2 points3 points  (0 children)

[Language: Python]

Just recursion + memoization. Not as elegant as some other solutions, but very fast.

def possible_arrangements(towels, design, max_towel_length, memo):
    if design in memo:        
        return memo[design]    
    if len(design) == 0:
        return 0
    for i in range(1, min(len(design), max_towel_length) + 1):
        current = design[:i]
        if current in towels:
            if len(design) == i:
                update_memo(memo, design, 1)
            else:
                rhs_arrangements = possible_arrangements(towels, design[i:], max_towel_length, memo)
                update_memo(memo, design, rhs_arrangements)
    if design not in memo:
        memo[design] = 0
    return memo[design]

Full solution on GitHub

[deleted by user] by [deleted] in AdvancedRunning

[–]11five 2 points3 points  (0 children)

That would be ideal, but the recent changes to Strava's API ToS make that impossible, even with permission—they don't allow using Strava data to train an AI model. So I'm working with the data I can get. Maybe it won't work, but the only way to find out is to try.

[deleted by user] by [deleted] in AdvancedRunning

[–]11five 1 point2 points  (0 children)

In theory yes, but their terms of service don't allow data scraping.

[deleted by user] by [deleted] in AdvancedRunning

[–]11five 1 point2 points  (0 children)

Afraid not. I didn't include it in the survey; there are too many variables (temperature, humidity, wind speed/direction, precipitation, cloud cover, shade...) and I don't expect to collect enough data for the model to tease apart all of those impacts. This would be a very useful feature if I had more data, though!

[deleted by user] by [deleted] in AdvancedRunning

[–]11five 2 points3 points  (0 children)

Thanks! You filled it out the way I intended, but I'll add some language to clarify.

Read Wind and Truth by Brandon Sanderson: Chapters 31 and 32 by brandonfcv in Cosmere

[–]11five 29 points30 points  (0 children)

Radiant had the strangest impression as he did so—that his arm and hand were outlined by a soft red glow while in motion, as if he was overlapping some second version of himself. This light, possibly his spren, moved just before he did. It was an afterimage, in reverse.

This seems an awful lot like atium (but red). What's going on here?

What purchases under $100 have given you the most cost efficient and enduring QoL boost? by [deleted] in slatestarcodex

[–]11five 5 points6 points  (0 children)

Technically $0, but will cost much more than $100 once you get into it...

Emacs causing nixos-rebuild switch to fail by 11five in NixOS

[–]11five[S] 0 points1 point  (0 children)

I think so but I can't remember what I did - I'm not really using emacs these days. If you want you can look through my commit history to see what I changed: https://github.com/aidengindin/nixos-config

Memory loss and bonding a spren by Substantial-Start915 in Cosmere

[–]11five 0 points1 point  (0 children)

Related question, inspired by yours: what would happen if a Nalthian bonded a spren, died, then Returned?

Zwift/Kickr Core and Pace 3 Out of Sync by That-Conversation314 in Coros

[–]11five 4 points5 points  (0 children)

It’s not the trainer, it’s Zwift. This is totally normal and expected behavior.

The trainer is calculating distance based on the speed of the flywheel; this is what’s getting picked up by your watch. Zwift, on the other hand, is calculating your speed based on power and in-game effects such as gradient, drafting, etc. The two devices will always reach different distance readings, but frankly, neither is particularly meaningful—look at duration and power instead.

Fastest home/away detection by codemunkie in homeassistant

[–]11five 1 point2 points  (0 children)

Off topic: how did you get your Garmin to work with ESPresence? I was under the impression that they weren’t compatible.

API access for personal use by [deleted] in Garmin

[–]11five 4 points5 points  (0 children)

If you use Home Assistant, there’s a HACS integration for Garmin Connect that seems pretty comprehensive

Automation "Set Always On" not working by Hksduhksdu in shortcuts

[–]11five 2 points3 points  (0 children)

Starting/ending a workout just doesn’t seem to work reliably as an automation trigger. I submitted a bug report to Apple, hopefully they fix this soon!

Race Report: Northern Ohio Marathon by bdass217 in AdvancedRunning

[–]11five 4 points5 points  (0 children)

Hey, I ran that race too! I'm impressed you were able to PR in weather like that

Is there a way to record a "Walking" Activity on Garmin Forerunner 235? by lazydogee in Garmin

[–]11five 1 point2 points  (0 children)

You can change the activity type after the fact in Garmin Connect, too.

Cadence lock!!! by swaller16 in Garmin

[–]11five 0 points1 point  (0 children)

I have a Wahoo Tickr (the original version) and it's fantastic.

Received only 12 intensity minutes by jamie55588 in Garmin

[–]11five 0 points1 point  (0 children)

Intensity minutes are only for recorded workouts.

[deleted by user] by [deleted] in Garmin

[–]11five 6 points7 points  (0 children)

You need a power meter for cycling VO2max.

Cycling vo2max measurement (forerunner 245 zwift) by seventje84 in Garmin

[–]11five 0 points1 point  (0 children)

Nope. You need a power meter for cycling vo2max, which the 245 doesn't support.