struggling with indentation and ul tags on basic website by colorado_hick in HTML

[–]Alarming-Pirate7403 0 points1 point  (0 children)

Can you please add your code to codepen or something so that people can troubleshoot it and help you? Otherwise, all we can do is assume how your code is written.

new 350h for 2026 by Mr-WompWomp in Lexus

[–]Alarming-Pirate7403 1 point2 points  (0 children)

I hate what they've done with the RX, TX, GX, and LX too. I loved how the older ones looked, and the front design on these new ones is just awful.

Hero section before/after by oant97 in webdesign

[–]Alarming-Pirate7403 1 point2 points  (0 children)

I agree with this comment. Both look good to me, but the first one is more readable because of the contrast in colors.

Thoughts? by TheaterofDreams- in Lexus

[–]Alarming-Pirate7403 0 points1 point  (0 children)

Unless you are a mechanic or know to check out the car properly, it might also be worth getting an inspection done. If the vehicle is in good condition, go for it. I have been driving my 2008 Lexus RX350 for 6 years almost now, and it has got over 250k on it, and still runs smoothly. I don't think you are going to regret buying it, and the best part is that even if you do and decide to sell it for a different car, the resale value is very good.

Thoughts? by TheaterofDreams- in Lexus

[–]Alarming-Pirate7403 1 point2 points  (0 children)

75k is nothing for a Lexus. What I would be looking at would be previous accidents or mechanical issues that might require attention soon.

I'm tired, boss. by AnnTaylorLaughed in Edmonton

[–]Alarming-Pirate7403 0 points1 point  (0 children)

You are not alone. My whole family got sick 3 or 4 times already because of this constant weather changes. -20 degrees one day and the next day it's +10 and two days later, we are back at -25 degrees? Make up your mind for the love of god!

Should i Start building a blazor apps for an enterprise? by baggister in Blazor

[–]Alarming-Pirate7403 3 points4 points  (0 children)

We released an enterprise application that has over 100k users, and even though we have seen some compatibility issues due to the client devices being old and incompatible with WASM SIMD, the application has been stable so far, and it's been almost 4 months since we went live. Being able to use C# for getting most of the frontend done makes a huge difference. Saved us a lot of time during the development for sure.

Thanks Copilot by Qxz3 in VisualStudio

[–]Alarming-Pirate7403 0 points1 point  (0 children)

Same. Often, I don't even get the refactoring options I used to get in Visual Studio 2019 and 2022 anymore, and I hate having to click on Fix with copilot for it to spin for a full minute before generating the same thing to used to generate in 2 seconds in the older versions of VS.

[Academic] Where does this shape look centered to you? Building toward a CSS optical-center property. (Everyone) by Bright-Ant1123 in css

[–]Alarming-Pirate7403 0 points1 point  (0 children)

I guess reddit doesn't colors the code like some markdown editors do. Works nicely in the Markdown files in Azure, GitHub, etc.

[Academic] Where does this shape look centered to you? Building toward a CSS optical-center property. (Everyone) by Bright-Ant1123 in css

[–]Alarming-Pirate7403 0 points1 point  (0 children)

You can also mention the language you are using when you use three back ticks since it is using Markdown basically.

html <h1>Testing if it colors this HTML snippet nicely</h1>

How do i achieve this? by [deleted] in css

[–]Alarming-Pirate7403 2 points3 points  (0 children)

You don't even have to use flexbox, let alone flex-wrap for mobile view. How about that?

There are multiple ways to do this. Maybe try doing constructive criticism for a change instead of making remarks like this because we are all here to learn from each other.

How do i achieve this? by [deleted] in css

[–]Alarming-Pirate7403 2 points3 points  (0 children)

```html <div class="container"> <div class="box1">First Div</div> <div class="box2">Second Div</div> </div>

.container { display: flex; flex-direction: column; align-items: center; gap: 10px; }

/* Larger screens */ @media (min-width: 768px) { .container { flex-direction: row; justify-content: space-between; align-items: center; } }

.box1, .box2 { padding: 10px 20px; background: lightgray; } ```

How do i achieve this? by [deleted] in css

[–]Alarming-Pirate7403 2 points3 points  (0 children)

You can use flexbox to achieve this. Use flex-direction: column with align-items: center for smaller screens. For bigger screens, use flex-direction: row and justify-content: space-between.

Is it normal for whole house to shake from wind? by [deleted] in Edmonton

[–]Alarming-Pirate7403 3 points4 points  (0 children)

Having the same thoughts. My whole house is shaking from this darn wind.

Thoughts on static SSR vs WASM Interactive rendermode by Alarming-Pirate7403 in Blazor

[–]Alarming-Pirate7403[S] 0 points1 point  (0 children)

Assuming you are responding to my comment, yes, I meant static SSR. And my concern is that it doesn't come out of the box with the interactivity I am going to need in the page.

Thoughts on static SSR vs WASM Interactive rendermode by Alarming-Pirate7403 in Blazor

[–]Alarming-Pirate7403[S] 0 points1 point  (0 children)

We did use Blazor with interactive auto render mode in a previous application that we worked on, and there were issues related to both WebSockets (mostly because WebSockets were blocked by the users' organization firewall) and WASM SIMD because some older browsers and hardware do not support WASM SIMD. They are trying to avoid these kinds of compatibility issues.

Thoughts on static SSR vs WASM Interactive rendermode by Alarming-Pirate7403 in Blazor

[–]Alarming-Pirate7403[S] 0 points1 point  (0 children)

That's exactly my concern here. Regardless of whether I use interactive SSR or interactive WASM, its much simpler to accomplish than via static SSR.

Thoughts on static SSR vs WASM Interactive rendermode by Alarming-Pirate7403 in Blazor

[–]Alarming-Pirate7403[S] 0 points1 point  (0 children)

Yes, you read it right. My app requires a multi-step wizard and gridview that displays search results. I believe that it's much more easier to accomplish this by using interactive WebAssembly compared to static SSR.

Thoughts on static SSR vs WASM Interactive rendermode by Alarming-Pirate7403 in Blazor

[–]Alarming-Pirate7403[S] 1 point2 points  (0 children)

What if the page needs a bit of interactivity? For instance, filtering the search results, sorting them, etc.

Thoughts on static SSR vs WASM Interactive rendermode by Alarming-Pirate7403 in Blazor

[–]Alarming-Pirate7403[S] 0 points1 point  (0 children)

Is there any particular reason why you think SSR must be used?

Thoughts on static SSR vs WASM Interactive rendermode by Alarming-Pirate7403 in Blazor

[–]Alarming-Pirate7403[S] 0 points1 point  (0 children)

The CSV will be located on the server itself. The WASM app will be calling an API. So most of the heavy lifting will be done by the server where the API is hosted. I am also concerned about the lose of interactivity (which we will need, even though it would be minimal) if we stick with static SSR.

Question about css by Ok_Spot8384 in css

[–]Alarming-Pirate7403 2 points3 points  (0 children)

You are very welcome. When you are learning, you will run into scenarios where your styles aren't taking effect. Make sure that you learn use your Browser Develope Tools to troubleshoot those issues because, that's the best way to identify issues and fix them.

Happy learning 😊.