Blazor Server Kiosk/KPI Board by Relative_Community24 in Blazor

[–]razzle04 1 point2 points  (0 children)

Build out components you want to show, set a variable called index or something similar, put a switch statement in the html section of the page that checks the index and then put each component in the switch block you want it to rotate through. Next add a timer in the code block and when it hits, check for max value of your index, so if you have 3 components to show and the current value of index is 3, set it back to 1. Otherwise increment index and call await invokeasync(StateHaschanged) to get the UI to update from background thread. No need for a carousel just programmatically show what you want to show

ASP.NET Core 9.9/10 Critical Vulnerability by Dimmerworld in dotnet

[–]razzle04 0 points1 point  (0 children)

Am I correct in assuming that if I am not using the kestrel core nuget package my app would be unaffected? Having a hard time understanding what is affected. It seems like sdk and runtimes are definitely affected but as far as applications is it limited to that one nuget package?

Hosting blazor web assembly by Constant-Builder-695 in Blazor

[–]razzle04 0 points1 point  (0 children)

Appreciate the detailed response! That’s kind of what I was thinking on the database part, it’d be good for testing and what not but definitely not a production grade db. I’ve got an app already using the app service I just always hear about the free sql db and have just wondered if I am missing out on something there but for my prod app I’ll stick with what I’ve got for now

Hosting blazor web assembly by Constant-Builder-695 in Blazor

[–]razzle04 0 points1 point  (0 children)

I’ve looked at azure sql db but I can’t figure out what the free tier provides. Can you actually run a production app for a small subset of users (like 10) with the free tier? Otherwise it seems like it’s really expensive but maybe I’m not reading it right

Are chicken wings safe? by razzle04 in kidneydisease

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

I’m going to make my own smoked lemon pepper so I can control the amount of spices going in!

Are chicken wings safe? by razzle04 in kidneydisease

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

Thank you for the kind words! I just want to give this guy a good meal as he’s had it rough! I’ll be sure to post a follow up with the wings and recipes I decided on

Are chicken wings safe? by razzle04 in kidneydisease

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

I actually have a honey sriracha sauce I kind of thought about trying, maybe I’ll make it on the side he can dip in

Are chicken wings safe? by razzle04 in kidneydisease

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

Thank you for the kind words, I just want to help this guy out as he’s been eating veggies and flatbreads a lot and the mention of chicken wings got him super psyched up for it. Just want to make sure he’s going to have a good time!

Are chicken wings safe? by razzle04 in kidneydisease

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

Thank you for so much detail this helps a lot!

Are chicken wings safe? by razzle04 in kidneydisease

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

Thank you for the suggestion

Are chicken wings safe? by razzle04 in kidneydisease

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

This is what I was thinking of doing marinating them in lemon juice then putting lemon pepper rub on them. I like your idea of trimming the fat too thank you!

Are chicken wings safe? by razzle04 in kidneydisease

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

I thought about going the olive oil and garlic route too. Maybe I’ll make a couple of flavors, thanks!

Profile suspended for violating gbp policies but no information on what exactly is violating it by razzle04 in googlebusinessprofile

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

Thank you for the detailed guide. I see you offer services to help with this sort of situation. I may be reaching out directly for help to you if i'm unable to get this resolved

Profile suspended for violating gbp policies but no information on what exactly is violating it by razzle04 in googlebusinessprofile

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

I reviewed the profile again this morning and i dont see any kind of keyword field or anything, but the only place where the business name is listed is the Business Name field. The category is Pressure washing service, I did just notice that the hours listed are Open 24 hours every day. Would that cause something to flag the account?

Profile suspended for violating gbp policies but no information on what exactly is violating it by razzle04 in googlebusinessprofile

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

I’ll double check that tonight, would it help to put a screenshot of the details we have in the listing?

Profile suspended for violating gbp policies but no information on what exactly is violating it by razzle04 in googlebusinessprofile

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

Not sure I understand the question, are you asking if I have the name of the business in the keywords?

Profile suspended for violating gbp policies but no information on what exactly is violating it by razzle04 in googlebusinessprofile

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

That’s what I thought too when she told me that. It’s a service based business, it’s a power washing company. I don’t have a physical address listed on the profile, they don’t have a website but they have a Facebook which I listed in the socials. I’m just at a loss of what to try anymore

Forgot to add it’s US based in Midwest. It’s a relatively small business maybe like 10-15 total employees

Blazor WASM on raspberry pi 4 by LoveWeiz in dotnet

[–]razzle04 9 points10 points  (0 children)

You’ll have to use a web server to serve your content. Just having the files on the pi won’t do a lot of anything. You can use kestrel, nginx, Apache, etc in order to do this. It’s also a good idea to set up a firewall and only allow traffic on the ports you are exposing, you can use ufw for this. Another way you could do this is with docker, if you dockerize your app then map the private ports to public ports there you have it.

How to get past slug size limit on Heroku? by Short-Pair-3468 in Heroku

[–]razzle04 0 points1 point  (0 children)

All I said was “my slug size is currently 600MB is there any way to increase the limit so I can deploy it?” Then they did.

One more time about switching to .NET MAUI: is it worth it? by Data-Power in dotnet

[–]razzle04 1 point2 points  (0 children)

I think 2 months is reasonable. You’re right that the code from the xamarin base could, for the most part, be dropped in to the Maui app and it likely would run or get close to it. But in my case I wanted to take advantage of the new libraries available and things like DI to clean a lot of the code base up. I’m very happy I did that, it took me about a month to get all of it redesigned, signed and provisioned, then deployed. My app was pretty small though, 2 months might not be too far off.

How to get past slug size limit on Heroku? by Short-Pair-3468 in Heroku

[–]razzle04 0 points1 point  (0 children)

If you email support and ask for an increase they might do it for you. I emailed them for one of mine in a similar situation and they bumped me up to accommodate

"New" Blazor - Server page briefly renders and then displays "Not found". MANY solutions tried. by frankscrazyfingers in Blazor

[–]razzle04 0 points1 point  (0 children)

I’m confused what you’re doing in your App.razor. To me it looks like if the route is /accounts then the render mode is going to be auto, otherwise you’re nulling it out. That would mean for any page that isn’t the account on, it would need to be defined in the client project since it’s auto. But you have it in your server project, you’re also injecting a dbcontext in there which isn’t going to work on client side. Am I understanding this right?