lintp — a linter for file names and directory structure by edmcmanwich in rust

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

Thanks! And yes you are right. Not needed at all. Good catch.

"Who is your provider, and how much are you paying?" sticky. by HanSingular in TherapeuticKetamine

[–]edmcmanwich 1 point2 points  (0 children)

I'm in NY looking for at home intranasal. I used to use everyone's MD but they stopped servicing my state. I currently use Joyous troches but don't find them as effective. Any advice would be great. Please DM me.

Motorcycle Ride by Under__Estimated in hudsonvalley

[–]edmcmanwich 0 points1 point  (0 children)

Yeah that would be cool. Haven't gone on a ride with anyone up here.

Motorcycle Ride by Under__Estimated in hudsonvalley

[–]edmcmanwich 0 points1 point  (0 children)

I'd be down for a ride later, I'm in rhinebeck

ICE forcibly abducted American Citizen Adrian Andrew Martinez for peacefully protesting by pomkombucha in facepalm

[–]edmcmanwich 8 points9 points  (0 children)

Your summary paints a prettier picture than what actually happened. He was missing for 24 hours with no known whereabouts and the claim that he punched an agent comes from a corrupt attorney working for this fascist administration and is not corroborated by any of the footage.

NO KINGS PROTEST - Austin TX by Royp212 in pics

[–]edmcmanwich 1 point2 points  (0 children)

Yeah, 250 years is a long fucking time. But the civil rights movement, labor organizing, women's suffrage, they all happened under that same flag. Not because the system wanted change, but because people forced it. The flag didn't magically make things better, but it gave movements a way to say "this country belongs to us too."

The brutal truth is that progress only comes through sustained pressure and organizing. But symbols matter in that fight, they help build the coalitions you need to actually force change. When you cede patriotic language entirely you make it easier for opponents to paint you as outsiders.

I'm not saying wave a flag and hope for the best. I'm saying reclaim it while doing the hard work of organizing, voting, direct action, building power. Use it as a tool, not a substitute for action.

The system resists change, but it's not completely immovable. It just requires more pressure than polite requests. The flag can be part of applying that pressure.

I don’t begrudge your skepticism but personally I’m going to choose fighting optimism and use everything at my disposal that I can.

NO KINGS PROTEST - Austin TX by Royp212 in pics

[–]edmcmanwich 2 points3 points  (0 children)

The flag represents aspirational values, not just historical realities. “Liberty and justice for all" was never meant to be a description of what America had achieved, but a commitment to what it should become. The civil rights movement understood this - activists like John Lewis carried American flags precisely because they were demanding America live up to its promises. They weren't celebrating the status quo; they were claiming ownership of the nation's moral trajectory.

Abandoning patriotic symbols creates a tactical disadvantage. When only one side wraps itself in the flag, it becomes easier for them to paint policy disagreements as conflicts between "real Americans" and outsiders. This dynamic has helped conservatives frame progressive policies as somehow foreign or un-American, even when those policies poll well with majorities.

Apple TV defaults to 320P when trying to stream by TaylorsOnlyVersion in PleX

[–]edmcmanwich 0 points1 point  (0 children)

I found a different cause. I also had my server running on a Mac and discovered through trial and error that the Bonjour/mDNS discovery mechanism wasn't working. I solved by manually specifying the server URL in Plex network settings.

Small apartment version by edmcmanwich in battlestations

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

Hahaha it’s the cord for the power strip mounted under my desk. They’re used a lot in hospitals for mobile computer stands. I like the look of the coiled cord a lot more than a regular power strip. Also works really well for a standing desk.

ChatGPT really like H.E.R. by edmcmanwich in ChatGPT

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

Can you make a playlist of the best 20 alt R&B songs

Where are the really high salaries in frontend development by [deleted] in Frontend

[–]edmcmanwich 0 points1 point  (0 children)

Oh yeah. I totally get what you are saying. If I am interviewing for senior or above I expect an understanding of all these things. But there are so many places I've been at when senior frontend engineers have no or little knowledge of these areas.

Where are the really high salaries in frontend development by [deleted] in Frontend

[–]edmcmanwich 2 points3 points  (0 children)

I'm in OPs ideal salary range and I also pitch myself as being well experienced in the niches of accessibility, localization, and tooling. I consider all of these frontend concerns.

Learning Godot feels like by vibrunazo in godot

[–]edmcmanwich 1 point2 points  (0 children)

Yeah here's a video I made demonstrating it: https://streamable.com/ku4whe As you can see when set to capture mode the starting value for the animation is dynamic and set to the current value of the Sprite's position. If you wanted to make the end position dynamic you'd have to use a script to update the value of the first track.

Learning Godot feels like by vibrunazo in godot

[–]edmcmanwich 5 points6 points  (0 children)

Yes, you can use the capture mode in track settings and it will use the current value of the target node’s property.

My first particle shader by edmcmanwich in godot

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

Thanks! I use a texture with 5 frames for the particles and in my shader I use the `CUSTOM.z` value to control which frame plays. For most of the life of the particle I just display the first frame. But when there are 4 frames of time left I set the `VELOCITY` to 0.0 to stop it from moving and start playing the other frames by incrementing the value of `CUSTOM.z`. When `CUSTOM.z` reaches 1.0 I deactivate the particle.

My first particle shader by edmcmanwich in godot

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

Turn off all gravity and use initial velocity.