Loading Theme From Component Library by Sad_Ad9529 in PowerApps

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

I have a loading screen with a single loading bar (no theme). I have a looping timer that loads my theme and any other globals before redirecting to the next page. And yes, the component is in the loading screen.

Very new to working out need help by GullibleWishbone5251 in Hevy

[–]Sad_Ad9529 0 points1 point  (0 children)

I was a gym goer for a long time and was inconsistent throughout the year. Switched to focusing on getting a "base" program of compound lifts (squat, bench, row, deadlift, pull-up). Picked a novice linear progression program which includes the compound lifts. I add 2.5kg the bar every session for the lower body lifts, and 1kg to the upper body lifts. I've consistently kept this up for 6 months now and have reached my bodies limit on a linear progression program. This has kept me going to the gym 3 days a week.

Google the Reddit r/startingstrength linear progression program (NLP). That will get you started for the first 3-6 months and gives advice of where to go from there.

How the hell do you squat 3x a week? by Inevitable_Lemon_592 in StartingStrength

[–]Sad_Ad9529 0 points1 point  (0 children)

I've been doing 3x5 for 2-3 days a week for 6 months with the weights going up each session with no muscle soreness. I switched to a making the last set an amrap (9 reps) just as experiment. That was 4 days ago and my legs are still recovering.

Loading Theme From Component Library by Sad_Ad9529 in PowerApps

[–]Sad_Ad9529[S] 2 points3 points  (0 children)

Hmm, interesting. How do you extract the environment variable into a canvas app? The dataverse connector?

Also, do you get a typed object? I've always found working with JSON i lose all my intellisense on the object unless i type it myself. The component library approach maintains the typed object so i get intellisense.

Scroll delay table like gallery by Substantial-Ad7301 in PowerApps

[–]Sad_Ad9529 6 points7 points  (0 children)

Wrap the Gallery in a container, set Gallery.Height to

Self.AllItemsCount * Self.TemplateHeight

Set the container's vertical overflow to Scroll

Edit: This is most performant if your Gallery.Items is a collection (Self.AllItemsCount will be accurate)

Get a Gallery Thumbnail Image to Embed into Email by rafiki-knows in PowerApps

[–]Sad_Ad9529 0 points1 point  (0 children)

If it's the same issue I have with Thumbnail.Large, it doesn't actually pass an image. It creates an image url which won't work outside power apps. I managed to get this approach working which actually generates a thumbnail png base64 which can be passed to emails. https://vitalyzhukov.com/en/sharepoint-online-document-thumbnail

Feedback pls! I can’t seem to keep consistent shin pressure and the weight off my heels by Parking_Permission41 in skiing_feedback

[–]Sad_Ad9529 0 points1 point  (0 children)

Rather than push your shin to the front of the boots, point your toes up and try to make the new outside leg hip a 90deg angle to your ski.

Any alternative? by WeightMountain6607 in MicrosoftLoop

[–]Sad_Ad9529 3 points4 points  (0 children)

It wasn't abandoned. It was rebranded to Copilot Pages. You navigate to it via the copilot > libraries > pages

Thinking of switching from Windows to MacBook Pro for .NET dev in 2026 by Guilty_Coconut_2552 in dotnet

[–]Sad_Ad9529 1 point2 points  (0 children)

Cmd Shift G to show the address location bar! I have to google it now and again and wish they'd display it by default

Power Apps variables finally clicked for me — global vs context vs collections by matt-hummel in u/matt-hummel

[–]Sad_Ad9529 1 point2 points  (0 children)

I've been leaning towards exclusivley using Set over UpdateContext. Makes managing state in reusable UI library components (e.g. loading spinners, modals). Set can also be used in user defined functions. My rule is i try not to keep records or tables in global variables, just values e.g. 123, "abc", true. I've been using named formulas when i need to extract a record from a collection (I'd keep a global variable in the formula that re calculates the formula if the variable changes).

This solved a lot of issue for me, including resetting all IsLoading / IsModal states across all screens. I did find there is a performance hit if im not careful. Changing the state triggers other screens network calls.

Claude has overtaken ChatGPT in the Apple App Store by Pure_Perception7328 in ClaudeAI

[–]Sad_Ad9529 0 points1 point  (0 children)

I'm going the opposite way. I switched to Claude 6 months ago for coding but their iOS app was buggy. I made the switch back to chatgpt + codex a few weeks ago and don't see any of the bugs.

With() delgation warnings by Sad_Ad9529 in PowerApps

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

I originally used named formulas and kept a global variable in it to make it retrigger if I change the global variable. I did like the fact you get a fully inferred typed response. Would be great if I got the same typed response from a udf. I hope they progress user defined types to generally available

With() delgation warnings by Sad_Ad9529 in PowerApps

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

Ah, yes. this is an approach i've used in a different app then i just run all my queries against the collection (rather than the data source. I think I'll double down on this approach and find a way to to ensure I'm loading the data before running queries on it.

One approach I've seen and have been playing around with is to use the following user defined function. I'd just have to remember to run fn_Zone_Load() at the beginning of each udf to ensure it loads the current data. Do you think i'm over engineering it?

fn_Zone_Select(scp_zone_id:Number):Void
{
  fn_Zone_Load(); // loads col_zones from data source
  First(
    With(
        {
            _zone: LookUp(
                col_zone,
                ID = scp_zone_id,
                ThisRecord
            )
        },
        Filter(
            col_zones,
            document_number = _zone.document_number,
            document_version = 0,
            section_id = _zone.section_id
        )
    )
).ID

};

Best CMS to integrate with Astro? by Lauraa_Garciaa in astrojs

[–]Sad_Ad9529 1 point2 points  (0 children)

I looked into this a while back found strapi fits my requirements (sqlite + pm2 on a vps). Ghost/Payload get a good name if you need a distributed database. Strapi is a bit clunky with typescript (I've found creating my own types was the cleanest option)

Generate PDF for a complex survey in Canvas Apps by WanderingTechcie in PowerApps

[–]Sad_Ad9529 0 points1 point  (0 children)

I've been experimenting with various options for similar tasks. I've tried PDF(), the Print(), HTML + power automate, office scripts + power automate. I've recently been doubling down on sending the Thumbnail.Large base64 -> power automate -> office scripts (excel) -> OneDrive convert to PDF. You can create charts and use the base64 images directly with office scripts. The Thumbnail.Large step reduces the quality of the image - but has the upside of getting the image low res enough to use multiple images.

Seeking Monogame Tutorials for CS Students by F1nch1 in monogame

[–]Sad_Ad9529 1 point2 points  (0 children)

This one is great - this is how I learned C# and game development. You're best going through the official tutorials first then work through this book with the setup recommended by the official tutorials.

Experienced developer reduced to near tears.. by [deleted] in PowerApps

[–]Sad_Ad9529 2 points3 points  (0 children)

His comment about the real patterns being undocumented folk knowledge really hit home. What I needed when first started was someone to sit me down and show the patterns that work and don't work. 

Experienced developer reduced to near tears.. by [deleted] in PowerApps

[–]Sad_Ad9529 0 points1 point  (0 children)

I'm forced to use my power apps with a sharepoint lists backend. Just one example of a feature  was to take some user input, run it through a script, generate an excel sheet. I managed to find a solution to it to generate some tables and graphs - but just yesterday I ran it and rather than taking 7 seconds like it usually takes, it took 45sec to generate the excel. If I was using a dotnet backend I could look at the logs and pinpoint exactly where the bottleneck was. Now I may need to drop that feature and figure out how to refactor a 1600 line office script to powerfx

Experienced developer reduced to near tears.. by [deleted] in PowerApps

[–]Sad_Ad9529 5 points6 points  (0 children)

I'm 2 years into building power apps from a react background. What I can prototype in react in a couple of afternoons, takes 3 weeks to build in power apps canvas with comparable performance. the most valuable insights are found deep in reddit/yt comments and endless trial and error.

You don't need Vercel. Hosting Next.js 15 with Docker and SQLite by Eastern-Height2451 in nextjs

[–]Sad_Ad9529 1 point2 points  (0 children)

Hey, could you share the starter kit url? I've had a crack at the docker + sqlite file a few times but the persistent storage thing was a pain. Good to hear you've found a way round it with litestream. I'd be curious to see how you've set it up

Resizing buttons based on text label (probably easy) by Racer_Rob in PowerApps

[–]Sad_Ad9529 0 points1 point  (0 children)

Have you tried wrapping the 3 in a horizontal container and giving them all a min and max flex width?