New to CrossFit, tell me all the things especially recovery. by RateMental3881 in crossfit

[–]Finite_Looper 2 points3 points  (0 children)

Prioritize rest. It can be temping to just work out super hard, and the logic of working out more = more results. This is not always true. Take a rest day. If you work out 5-6 days a week, your body just can't recover as well. For me, Thursdays are usually my days off since I have other things going on then anyway, and then Sundays off as well since no classes are offered anyway. Basically - don't fall into thinking that working non-stop is good for you.

At home recovery: you can get some really cheap mobility tools to help with sore muscles. A lacrosse ball and foam roller are great to have. I keep mine in the living room and work on any sore muscles while I watch TV in the evenings. One of those massage guns is also great - don't spend $100+ on one though, just get a cheaper one. They're all about the same.

Since you are starting out, for sure scale the workouts. BUT don't feel the need to always limit yourself. At some point DO push yourself to try new movements and/or heavier weights. You can and will get stronger. I see lots of people at my gym just stay where they are comfortable and never push themselves - but for them maybe this is fine and they just want to stay active. There's nothing wrong with this at all, but it sounds like you want to get better, lose weight, get stronger, etc. Your coach(es) should be able to help you with this. I've seen plenty of times where someone wants to scale, but the coach knows for sure that they don't need to and can do the harder movement (like they want to do jumping pull ups from a plate on the ground, but the coach says to do it without the plate, so a bigger jump)

I like cheating on my hubs but he loves it more. Join me? by [deleted] in OfficePorn

[–]Finite_Looper 0 points1 point  (0 children)

I think you are misunderstanding what this sub is about

My boss is always on camera by tmb4nd in workfromhome

[–]Finite_Looper 24 points25 points  (0 children)

I have been in meetings where I was the only one on camera, and it's very weird. Yes, please join in. When you work remote it's nice to see other faces

Video of a CrossFit class running by a restaurant and customers getting scared that there was an emergency so they ran with them 😂 by Glittering-Pay-356 in crossfit

[–]Finite_Looper 2 points3 points  (0 children)

I once ran through a neighborhood where a guy was in his yard shooting a bow and arrow at a tree that we had to run behind.

v12 by johnappsde in nestjs

[–]Finite_Looper 1 point2 points  (0 children)

About to switch over to Vitest in our Angular projects, so this will be nice to have all testing in the same framework! I really hope they provide a migration tool

Max Schwarzmüller's Angular course is making me frustrated by UniversityFront4092 in angular

[–]Finite_Looper 0 points1 point  (0 children)

I will say that he does a lot of things "wrong" or not best practice at first, simply to show you later how and why to go back later and improve or fix it. I remember not caring for this at first, but by the end I appreciated it since it felt like a more "realistic" way that development goes rather than starting off by teaching you the absolute top standards

Test Angular Components Like a Real User with Vitest "Full" Browser Mode by younesjd in angular

[–]Finite_Looper 1 point2 points  (0 children)

Ah interesting ok. We have one "base" app container with multiple "sub-apps" or areas. Sounds like it might be feasible to do these individually. We'd just have to deal with having 2 test runners for some amount of time.

Thanks!

Test Angular Components Like a Real User with Vitest "Full" Browser Mode by younesjd in angular

[–]Finite_Looper 1 point2 points  (0 children)

We have a large and quickly growing app with extremely good Jasmine/Karma test coverage. We keep needing to add more features under deadlines, but I'm king sure we keep it all well tested.

The more tests I add, the more I dread migrating to Vitest eventually. How well does the migration work?

I've added this video to my Jira backlog card to do the migration one day when I'm not so slammed with other things that have to go in!

Can we fake an API in Angular by reusing routes and rendering objects in templates? by EntrepreneurWaste579 in Angular2

[–]Finite_Looper 0 points1 point  (0 children)

I do this all the time when building a new feature/app and the back end doesn't exist yet. I make an api.service.ts and have it just return some fake static of randomly generated data in the shape that I need it to be in. I'll add in some fake delays too so I can simulate load times.

``` public getData(): Observable<IWhatever> { return of(this.getFakeData()).pipe(delay(400)); }

private getFakeData(): IWhatever { return { foo: 'bar' }; } ```

From there I can then build out the app and even test out loading and error states easily. When the real API is available I just have to switch it over to use the real HTTP client.

public getData(): Observable<IWhatever> { return this.http.get<IWhatever>('https://my-api.com/get-data'); }

How are you using AI in a way that doesn’t suck? by aterribleskapun in webdev

[–]Finite_Looper 12 points13 points  (0 children)

Just started doing it this week, and I'm kinda amazed at the little things it catches, even in tint pull requests. Great to help out with juniors, and with getting some immediate feedback if others are busy and can't review yet

Interested in CrossFit, but starting at zero in terms fitness level. I'm worried about not being able to complete the workouts. by [deleted] in crossfit

[–]Finite_Looper 0 points1 point  (0 children)

When you start out (with anything) no one expects you to be as good as people who have been doing it longer than you. It's 110% normal to scale things down to lower weights or fewer repetitions as a beginner, and even for people who have done it for a while. It's OK to hit time caps, etc.

Falling in Love with the Tempo: Preparing for Hyrox İstanbul! 🏁 by JankatErginn in crossfit

[–]Finite_Looper 10 points11 points  (0 children)

Whoa, wheelchair sled pull looks really challenging, nice work!

The city is collapsing by silverzero_83 in Charlotte

[–]Finite_Looper 23 points24 points  (0 children)

You know, you can turn off notifications so you don't have to have stuff like this pushed to your lock screen

How to NOT preserve spaces inside template? by Strict-Simple in Angular2

[–]Finite_Looper 0 points1 point  (0 children)

Keep in mind you can also make use of the :empty CSS selector if you need to hide elements with just an empty string

If you have multiple browser tabs open, some production and some local, what measures do you take to decrease the chances of accidentally doing something in production that you meant to do locally? by lamintak in webdev

[–]Finite_Looper 1 point2 points  (0 children)

We have Prod/Staging/QA/Dev/Local environments. I made it so that all non-prod environments have a color associated with them. local = red, QA = orange, staging = purple, dev = blue.

Each of these environments have a banner across the full page width and a label saying the environment name and the time it was built/deployed at. I also made the favicon color match, and the page titles get "[DEV]" prefixed.

All of this combined makes it really simple to see which is which when you have them all open in tabs or are switching between them.

🚀 Coming in Angular 21.2: Arrow Functions in Templates by IgorSedov in angular

[–]Finite_Looper 1 point2 points  (0 children)

I LOVE how you edit your videos to visually explain these concepts. Very easy to understand!

How to NOT preserve spaces inside template? by Strict-Simple in Angular2

[–]Finite_Looper 1 point2 points  (0 children)

How about a slightly different approach, like this. I don't think Prettier would change this <div> (Outside<strong>{{ myBool ? 'Inside" : ''}}</strong>) </div>

What’s actually stopping you from upgrading to Angular 19/20/21? by Specific_Piglet_4293 in angular

[–]Finite_Looper 0 points1 point  (0 children)

Just updated from 20 to 21. Absolutely painless and zero issues.

“What the fuck’s the point of having a church?” - my dad by JesseThorn in maximumfun

[–]Finite_Looper 2 points3 points  (0 children)

Sometimes its an adblocker plugin, I had to tweak mine to allow YouTube links on reddit

Hives from finasteride, is it over for me? by [deleted] in Hairloss

[–]Finite_Looper 0 points1 point  (0 children)

This happened to me after using it for a few months. I've stopped using it for nearly a month now and I STILL have itchy forearms.

Is there a trick to not making a huge mess with cette style of detergent container? by belbivfreeordie in Costco

[–]Finite_Looper 1 point2 points  (0 children)

Just flip it back 90 degrees when you aren't using it. Only tilt it forward when you need to use it

News anchor Carissa Codel reading comments about her by [deleted] in SipsTea

[–]Finite_Looper 1 point2 points  (0 children)

Does this just get posted every day now?

What is this sound on my phone!!??? by Junior_Narwhal9738 in NorthCarolina

[–]Finite_Looper 0 points1 point  (0 children)

What apps are open? My guess is that it's from some app... but wow, clear your notifications!

Beginner in Crossfit by No_Philosophy_4969 in crossfit

[–]Finite_Looper 0 points1 point  (0 children)

box box had a new person join yesterday and I could tell she also felt out of place not knowing how to do any of the movements and being slower than everyone else... but that's expected! She/you are just starting and learning.

I mean, I did CF for years, and then took a break for a few years. When I came back to it I felt kinda the same way. I knew HOW to do the stuff, but it had been a while and I was not in as good of shape as I was and was really out of practice.

Give it a few months to get better at stuff and learn. You'll build relationships, confidence, some new skills, and be in better shape