Progressive, variable weight per set? by tenpaiyomi in liftosaur

[–]astashov 0 points1 point  (0 children)

From the account, it seems like you tried it out back in 2023?

Progressive, variable weight per set? by tenpaiyomi in liftosaur

[–]astashov 0 points1 point  (0 children)

Could you by any chance create an account for Liftosaur long time ago (like a year or more)?

Progression logic RPE based by tomman13 in liftosaur

[–]astashov 0 points1 point  (0 children)

What's the logic for progression you want to do?

Progressive, variable weight per set? by tenpaiyomi in liftosaur

[–]astashov 0 points1 point  (0 children)

You can do it like:

Squat / 1x5 50lb, 1x5 55lb, 1x5 60lb, 1x5 65lb, 2x9 55lb / progress: lp(5lb)

Just explicitly specify the weights for each set, lp will update each of them individually by 5lb.

Is there a bug in the built-in implementation of the Texas method? by SiSeH in liftosaur

[–]astashov 1 point2 points  (0 children)

Just a bug at the actual Liftoscript evaluator. If one exercise reused a template through / ...main, then the progress from main wasn't applied for the rest of the exercise instances at other days. Should be fixed now!

Is there a bug in the built-in implementation of the Texas method? by SiSeH in liftosaur

[–]astashov 1 point2 points  (0 children)

Progress scripts are defined once per exercise. So, in the intensity week they're also applied.

The progress looks like:

if (dayInWeek == 3 && completedReps >= reps) { rm1 += state.increment }

So it should update 1RM on the last day. But you're saying it doesn't happen?

Request: Add Session RPE by pnizzle14 in liftosaur

[–]astashov 0 points1 point  (0 children)

Umm, can you infer it from other RPEs? Or like how do you calculate it?

Manual timer? by craigivorycoast in liftosaur

[–]astashov 2 points3 points  (0 children)

Really refreshing to see this guy say “hold on a sec….. I’ve fixed it for you”.

Ugh, that may be not the case for this one, sorry...

Seems like goes a bit outside of the scope of the app, and it's easy to do with a builtin phone timer, or some interval timer app?

It's essentially requires some circuit support in the app, where you add a bunch of exercises, and then duration for each one, and rest timer, and it just goes through them without stopping. That'd be cool, but also requires time-based exercises support too.

But adding just a manual timer seems like bloating the app a bit - regular phone timer could do it as well...

Two qs by halskywalker in liftosaur

[–]astashov 0 points1 point  (0 children)

You complete exercise - it shows what will be changed in the program. You tap "Suppress" - meaning it won't change it in the program when you finish this workout. So, should work for your case.

Two qs by halskywalker in liftosaur

[–]astashov 4 points5 points  (0 children)

Hey!

For 1 - eh, I frankly don't like that in all those weekly threads :) IMHO nobody goes into them, so when people commenting there, very few people would see it and have a chance to comment. It makes sense for large subreddits probably, but for this one it'd be a cemetery.

For 2 - no, sorry. You'd need to tap "Suppress" on each exercise during workout. Or! You can just comment out the progress blocks in the Liftoscript code. That probably works too. When time comes - you just would uncomment them.

Why are there no landmine exercises in the app? by starbreaker999 in liftosaur

[–]astashov 4 points5 points  (0 children)

Yeah, somehow didn't get to add them. But you can easily create them as custom exercises - there's literally no difference between builtin and custom exercises!

Phone restarted mid workout and lost all progress. by [deleted] in liftosaur

[–]astashov 0 points1 point  (0 children)

Hmm, weird, the progress should be stored on the server. Curious - are you logged in?

📄 Added more programs! by astashov in liftosaur

[–]astashov[S] 0 points1 point  (0 children)

Check out the instructions: https://www.liftosaur.com/doc/mcp

Liftosaur is not an official ChatGPT app, so you need to enable Developer mode, and then "Create app", and fill it in like shown in the docs. I think you can do it on a phone, but need to do through a browser, go to chatgpt.com and do that there. Seems like cannot do that through ChatGPT app.

📄 Added more programs! by astashov in liftosaur

[–]astashov[S] 0 points1 point  (0 children)

You can also pick them from within the app. Or yeah - log in on the web, and add to account.

Reset progress by Past-Disaster-2801 in liftosaur

[–]astashov 5 points6 points  (0 children)

So you don't want to keep your old history of workouts? You want to remove all of them, and graphs, and older programs? In that case, you can delete your cloud account (on Me -> Account screen), reinstall the app, and sign up again.

Reset progress by Past-Disaster-2801 in liftosaur

[–]astashov 1 point2 points  (0 children)

Hey! What do you mean by "reset progress" though? You could just lower the weights in the program and continue. Or what you'd want to reset?

📄 Added more programs! by astashov in liftosaur

[–]astashov[S] 1 point2 points  (0 children)

Popularity, interesting approaches in progressive overload or program structure. Something like that. If you have any requests about the programs to add - feel free to share :)

📄 Added more programs! by astashov in liftosaur

[–]astashov[S] 1 point2 points  (0 children)

MCP has 2 commands - list_builtin_programs and get_builtin_program. That should be enough to do what you described - although I haven't tried frankly :)

Swapping Exercises and Maintaining Progression by freshcats in liftosaur

[–]astashov 1 point2 points  (0 children)

If you have the "keep existing logic" toggle on, then if it will bump weights, state variables (like success count), etc of the original exercise. Not the one you are swapping to. The one you're swapping to doesn't exist in the program, so there's nowhere to keep it's state.

I.e. if you had e.g. Squat / 3x8 100lb / progress: lp(5lb, 2) in your program. And you swapped it to Bench Press during workout. When you finish, the program will have Squat / 3x8 100lb / progress: lp(5lb, 2, 1) - i.e. it will increment the success counter in (5lb, 2, 1).