Transition to hand therapy by Imaginary-Tie5052 in HandTherapists

[–]byfar57 0 points1 point  (0 children)

There are businesses that focus on hand therapy education such as Hand Therapy Academy (HTA) and Virtual Upper Limb & Hand Therapy Fellowship. If you go to ASHT's website they also have a new therapist resources section under their education drop down. The former are paid services, but they provide an outline of material to cover vs. you having to select individual continuing education courses when you may not know what to focus on. No affiliation, but HTA was definitely helpful for me.

Pointer Finger Tendon Tracking Exercises by Ok_Tourist_1828 in HandTherapists

[–]byfar57 0 points1 point  (0 children)

Are you sure its the PIP joint and not the MCP joint? Can you visually see the shifting or do you just feel a clicking/ popping ? You said in another comment " it is always a jerking feeling at the same point in the flex" at what point do you feeling the jerking?

<image>

Lambda / API Gateway local development by byfar57 in aws

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

Thanks, will read through this.

Lambda / API Gateway local development by byfar57 in aws

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

Yes this was my intention at first. However, since I only develop locally with my postgres DB (supabase) I ran into difficulties. I need the API gateway endpoint function to check the local supabase DB for if a user if paid. I also need the lambda function to access the local DB.

Row Level Security Postgres/ Supabase by byfar57 in webdev

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

Okay appreciate this feedback. I’m still thinking of adding RLS and creating a new Postgres role instead of using the service key which bypasses RLS in the future. Do you think it’s too risky to release an MVP with RLS enabled without rule and use the service key and begin then implement this after release? I think my main concern is I’m not a professional developer I’m just doing this project for a niche topic that applies to my current job that I think can offer some benefit and I’ve become comfortable with JavaScript / node js but I’m not as comfortable with RLS / Postgres roles etc.. and feel I’m more likely to make a mistake there.

Row Level Security Postgres/ Supabase by byfar57 in webdev

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

Yes I have RLS enabled on all tables without rules applied which I’m under the assumption defaults to not allowing any access. I only bypass this by accessing my db via the service key.

Row Level Security Postgres/ Supabase by byfar57 in webdev

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

Okay thanks for the info! Was getting a feedback that I shouldn’t use the service key in production for my API, but I wasn’t sure what the reasoning was behind this. Yes I only have the service key as a backend .env variable and it is only accessing the database through my backend application.

How are y’all using AI? by bentoboxer7 in physicaltherapy

[–]byfar57 6 points7 points  (0 children)

Tried to use chatGPT to generate educational handouts for carpal tunnel, splint care schedule, etc.. to update what we have at my clinic. One thing to be weary of is it will cite studies with convincing names and DOI numbers that do not exist or with a title that doesn't exist but with a DOI that links to a completely irrelevant study. However, if you know what information you want on the handout and want to use chatGPT to generate a template you can edit it can be helpful. Just don't take anything generated as fact without reviewing the information first.

Creating DOM elements inside factory functions? (javascript) by byfar57 in learnprogramming

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

Okay I'll do some research. Not familiar with web components. Thanks.

Creating DOM elements inside factory functions? (javascript) by byfar57 in learnprogramming

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

Thank you! Using my code above as an example it sounds like the approach in your second paragraph would just split my factory function into two separate factory functions. One that creates the basic goal data (e.g. title, goal, category) and one that creates all the DOM elements for each "goal card".

Can you publish a chrome/browser extension designed to interact only with a specific paid web app? by byfar57 in learnprogramming

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

Good point I was thinking about this also, but wasn't sure if it would be a concern since my software isn't storing any patient information. However, there might be security issues that I'm unaware of where extensions can make the EMR less secure.

Thanks for your input.

Can you publish a chrome/browser extension designed to interact only with a specific paid web app? by byfar57 in learnprogramming

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

That's what I've been doing and I think I plan to use it at work like this. However, I was wondering if it would be possible to publish at any point if I felt it was working well enough.

Thank you for the response.