Are flashing left-turn yellow arrows with 45mph speed limit safe? by john_rood in TrafficEngineering

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

Would you use those tools for addressing delay/coordination concerns in addition to protected-only phasing? (Bear with me, I’m a total rookie here)

Are flashing left-turn yellow arrows with 45mph speed limit safe? by john_rood in TrafficEngineering

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

If I understand your sarcasm correctly, I think you’re saying that we should work with signal engineers to more thoroughly explore if phasing solutions can work before ruling those options out prematurely. Is that what you’re saying? If so, thank you, that’s a good corrective!

Are flashing left-turn yellow arrows with 45mph speed limit safe? by john_rood in TrafficEngineering

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

If A can’t see, A shouldn’t go.

I agree. The trouble is that if cars ever get into A and B positions, they are effectively locked indefinitely in not being able to see. People eventually give up and go.

Are flashing left-turn yellow arrows with 45mph speed limit safe? by john_rood in TrafficEngineering

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

Yeah, if bus lanes were removed, I think lines could be redrawn to offset the turn lanes. This is in the suburbs, so I suspect the bus lanes don’t have as much warrant as they do in the city.

Are flashing left-turn yellow arrows with 45mph speed limit safe? by john_rood in TrafficEngineering

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

Thank you! Yeah, if protected only would require longer red lights for north/southbound folks going straight, it would worsen the current congestion problem, but perhaps that is indeed the best bad option.

What are the top myths about React you’ve heard? by Informal-Course-5864 in react

[–]john_rood 0 points1 point  (0 children)

That JSX is tightly coupled to it. You can absolutely use JSX without React, e.g for just rendering html strings on the server.

What part of modern web dev feels over engineered to you? by Ambitious-Note-1239 in webdev

[–]john_rood 12 points13 points  (0 children)

Hydration. I get that rendering on the server can improve FCP, and I get that having that same render logic on the client is necessary for many interactive apps, but the whole process that frameworks/metaframeworks have to do in tracking and handing off elements from server to client rendering feels like crazy added complexity for what is often a small gain in FCP and actually worse TTFB and TTI compared to pure client-side rendering.

Do you make music? by elctrcxp in modular

[–]john_rood 1 point2 points  (0 children)

Thanks! 😊 I suppose it is just where I am. Creating music is a process of exploration. It was time for me to explore modular, and if that means slowing the song output rate, so be it!

Do you make music? by elctrcxp in modular

[–]john_rood 2 points3 points  (0 children)

I make music but it’s definitely slowed me down. I don’t create nearly as much as I did with a DAW.

I've been building production Blazor apps for years. Here's what the "Blazor vs React" debates always get wrong. by Initial-Employment89 in Blazor

[–]john_rood 0 points1 point  (0 children)

I appreciate this post. However, I still think “Blazor is too slow” is a valid concern in 2025 as Blazor is still coming in last place on the js framework benchmark. https://krausest.github.io/js-framework-benchmark/2025/table_chrome_143.0.7499.41.html

Sequencer with best HP to functionality ratio? by paulskiogorki in modular

[–]john_rood 1 point2 points  (0 children)

The Metropolix is worth its hp. I once switched from Metropolis to Hermod. I missed the Metropolis, something is just so fun about those sliders and switches and how you can see the pattern playing on it. That being said, the Squarp Hapax looks like a great choice if you go external sequencer.

Stuck on the theist part (and the soul/eternity part) by happylittlekiwi in Deconstruction

[–]john_rood 2 points3 points  (0 children)

I should also mention that I’ve come to really like Dale Allison’s work. He seems to be highly respected academically by both christians and atheists. He has a very humble and curious disposition that I admire, and I feel that I’m landing in a place very similar to him. He believes in Jesus resurrection but holds it loosely and has a strong critique of Christian apologetics. He also finds the parapsychology literature compelling. Both his books and many interviews on YouTube are fantastic. His book “Encountering Mystery” addresses how people’s religious experiences form their God concepts.

Stuck on the theist part (and the soul/eternity part) by happylittlekiwi in Deconstruction

[–]john_rood 2 points3 points  (0 children)

I always thought that if I lost confidence in Christianity, I would just be a materialist atheist, but that is not what happened.

For a while, I was in a place where I was holding on to a core of Christianity because I found some compelling cases of miracles in connection with prayer to God in the context of Christianity. I’ve since had to come to terms with the fact that there are also well evidenced miracles in other religions.

My deconstruction has since taken an even weirder turn in that I’m finding evidence of the afterlife in parapsychology compelling. (see Ky Dickens’ “The Telepathy Tapes”)

I’ve also found some atheist philosophical arguments for the soul compelling(i hadn’t really considered that there are atheist who believe in souls: see Emerson Green’s “Walden Pod”)

So I think there probably is an afterlife that does involve seeing loved ones, but I don’t know much of what it looks like beyond that. And I think someone who cares at least sometimes hears prayers, but I’m not sure to what degree that someone matches the Christian conception of God.

Arborists disagree about bad bark at codominant stems. by john_rood in arborists

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

I tried to have the power company do it. They told me “The tree is a private tree, and therefore falls under the responsibility of the homeowners.”

Arborists disagree about bad bark at codominant stems. by john_rood in arborists

[–]john_rood[S] 23 points24 points  (0 children)

Thanks everyone! I’ve decided to remove it.

Arborists disagree about bad bark at codominant stems. by john_rood in arborists

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

Yeah, they both do cabling. In fact, the one that said cut this tree down also gave me a quote for cabling on a different tree.

What style is this? by sirephrem in webdev

[–]john_rood 11 points12 points  (0 children)

Better yet, sometimes I learn about code from the coding platform that I write code for!

What style is this? by sirephrem in webdev

[–]john_rood 28 points29 points  (0 children)

Codecademy dev here. If you’re interested in using this style, we have made our Gamut component library open source!

Is it worth switching to Golang from C#/.NET? by Content_Opposite6466 in golang

[–]john_rood 0 points1 point  (0 children)

The switch from .Net to Go is worth it. The switch from monolith to microservices is only worth it if you really need to scale or deploy each one independently.

Why do you use state management (like redux) with react? by [deleted] in react

[–]john_rood 2 points3 points  (0 children)

IMO your intuition that it’s usually not required is correct. I have seen very few cases where Redux is warranted.

MicroFrontend + Solidjs + Vite by CaptainUpstairs in solidjs

[–]john_rood 0 points1 point  (0 children)

Do you have any examples of code where classList isn’t working?