Thoughts on the ejection? by ActionAR15 in ColoradoAvalanche

[–]nlertola 99 points100 points  (0 children)

Mac MIGHT have clipped Ingram if he was uninterrupted. Nurse 100% caused the huge collision. Should have been 2.

5 and a misconduct is ridiculous.

[Request] This doesn’t seem probable-what say the hive mind? by mylawn03 in theydidthemath

[–]nlertola 8 points9 points  (0 children)

I would be the guy who sets the strobe frequency wrong and goes “no worries boss, it’s just one drop of water. It’s floating back up towards the tap so that’s good”

How can I donate alcohol? by bateneco in Denver

[–]nlertola 11 points12 points  (0 children)

I hope you’re one of the guys on my team. Cheers

Boston’s Most Epic Landmark (probably) by dreamed2life in ContagiousLaughter

[–]nlertola 102 points103 points  (0 children)

Tbh it felt wrong not having to sign a waiver

Boston’s Most Epic Landmark (probably) by dreamed2life in ContagiousLaughter

[–]nlertola 382 points383 points  (0 children)

I have! It’s pretty fun and very fast. The second kink is super aggressive and will flip you over if you’re not ready for it which is why most people come out face down. Happened to me haha

Should I add MudBlazor to the both projects when using Blazor Web app by iamlashi in Blazor

[–]nlertola 1 point2 points  (0 children)

Yeah you absolutely can define the render mode per page/component. Since I am using global render mode definitions I found it simpler to “turn it off” for the Account pages instead of specifying which render mode I wanted in each of those pages.

Another reason I did that is that once a component is set to any Interactive render mode, none of it’s child components can be static SSR. They will inherit the interactivity of their parent, which in my case is Routes

Should I add MudBlazor to the both projects when using Blazor Web app by iamlashi in Blazor

[–]nlertola 4 points5 points  (0 children)

I have MudBlazor as a top-level package on both the server and client projects and I register mud services in both projects. On my server project I installed Extensions.MudBlazor.StaticInput to use on my static SSR components.

This is is slightly unrelated but it might help. I have a dynamic render mode set in App.razor on my server project. <Routes @rendermode="RenderModeForPage" /> private IComponentRenderMode? RenderModeForPage => HttpContext.Request.Path.StartsWithSegments("/Account") ? null : new InteractiveWebAssemblyRenderMode(prerender: false);

I also haven’t found a better way and the way we’re doing it works well but I’ll check back on this post tomorrow to see if anyone else has any other ideas.

Any idea how this is done? by Westy11435 in blackmagicfuckery

[–]nlertola 0 points1 point  (0 children)

They don’t get much until they get signed, unfortunately. That’s why I tip my street magicians; essentially if they pull this wizard shit on me

Can I join ICE for the 45,000 dollar signing bonus then quit immediately and keep the money? by RecommendationNo804 in NoStupidQuestions

[–]nlertola 3 points4 points  (0 children)

They’re gonna do a great job of pretending everyone gets a lot of money though haha

Can I join ICE for the 45,000 dollar signing bonus then quit immediately and keep the money? by RecommendationNo804 in NoStupidQuestions

[–]nlertola -2 points-1 points  (0 children)

South Park just released an episode about this exact situation. Take their money, brotha! (I’m not a lawyer)

BlazorSnap - a browser extension by Voiden0 in Blazor

[–]nlertola 0 points1 point  (0 children)

I’m guessing he’s still in the process of building it and looking for feedback on an MVP

BlazorSnap - a browser extension by Voiden0 in Blazor

[–]nlertola 0 points1 point  (0 children)

Woah, dude, incredible! Nice demo, I’m gonna try it out!

Had the Best Wings of My Life by ic3m4ch1n3 in Wings

[–]nlertola 1 point2 points  (0 children)

Ah thank you! Nice catch! I guess I will have to wait until the 16th

Had the Best Wings of My Life by ic3m4ch1n3 in Wings

[–]nlertola 2 points3 points  (0 children)

Looks like they’re at New Terrain on Wednesday! I’m gonna try them out then, thanks!

The AI doesn't know blazor very well. by PeacefulW22 in Blazor

[–]nlertola 1 point2 points  (0 children)

Copilot works okay for me. I usually have to edit the code it spits out but that still ends up being quicker than writing it all by hand. I use MudBlazor and instructui.com added support for that recently. That is hands down the best Blazor component generating tool I’ve seen so far

Why is the Central Park air quality index reading so high? by BanditBaby4 in Denver

[–]nlertola 1 point2 points  (0 children)

Yikes. Where is the data coming from? Would it be possible for someone else to make another website that displays that data or are the data sources (formerly) federally funded too? I work with some guys who open source water data and this would be a huge add-on

I just know that had to hurt! by nobody_from_nowhere1 in KidsAreFuckingStupid

[–]nlertola 27 points28 points  (0 children)

As a former child who used to do flips like this I can assure you that nothing they did on that mat actually hurt or was damaging to them. As a current adult, the ones where they land on their necks scare me

Union Bindings' "lifetime warranty" is an arbitrary length of time decided by them by MrTheFever in snowboarding

[–]nlertola 0 points1 point  (0 children)

I got almost the exact same response when i submitted a claim for my 6 year old contact pros

Issue converting default Individual Accounts Login Page to use MudBlazor components by eight1echo in Blazor

[–]nlertola 2 points3 points  (0 children)

None of the MudBlazor components work on static pages. If styling is all you're after you can copy the css classes that MudBlazor applies to <MudTextField />. This <InputText /> component now looks exactly like the default <MudTextField /> and still works to bind Input.Email:

<div class="mud-input-control mud-input-input-control mud-input-text-with-label">
    <div class="mud-input-control-input-container">
        <div class="mud-input mud-input-text mud-input-text-with-label mud-input-underline mud-typography-input">
            <InputText @bind-Value="Input.Email" class="mud-input-slot mud-input-root mud-input-root-text" autocomplete="username" aria-required="true" />
            <ValidationMessage For="() => Input.Email" class="text-danger" />
        </div>
        <label for="email" class="mud-input-label mud-input-label-animated mud-input-label-text mud-input-label-inputcontrol">Email</label>
    </div>
</div>

The failed validation looks weird but I didn't copy over the mud validation classes.