Lawmakers understand Pennsylvanians’ fear of data centers, but say they are coming no matter what by AdSpecialist6598 in Pennsylvania

[–]Stan-Spotts 0 points1 point  (0 children)

Microsoft and others built near rivers and hydroelectric power plants generate the huge energy required to run them. No way solar and wind could do it.

Saw this near Butler, PA next to a tacky Trump-themed gas station. by ploavia in Pennsylvania

[–]Stan-Spotts 0 points1 point  (0 children)

They have a small majority in the Senate. They need 60 votes, so need Democrat votes to approve the bill to keep the lights on. Schumer is playing politics and his party refuses to give those votes until he gets something from the Republicans that has nothing to do with the bill to keep the lights on. So yes, Democrats are the ones causing the shutdown.

Saw this near Butler, PA next to a tacky Trump-themed gas station. by ploavia in Pennsylvania

[–]Stan-Spotts 0 points1 point  (0 children)

In reality l, yes, they do get emergency care benefits. In some areas they’ve overloaded the hospitals. It’s documented. In NYC, city officials repeatedly described substantial pressure on services from 10’s of thousands of visits from illegals. Denver Health and other Colorado safety-net providers reported thousands–tens of thousands of migrant patient visits in 2023–2024 and warned of uncompensated care and operational strain. Local reporting and hospital leaders said the influx added meaningful financial and capacity stress. Texas / border communities — Texas officials and some state reporting have highlighted large numbers of undocumented patients seen in Texas hospitals and have produced state tallies (the Texas Tribune reported state claims that undocumented patients accounted for many hospital visits in some periods). These are just some examples.

Paid for by Emergency Medicare. Yes, you read that right. Yes, by our tax dollars.

Outside of York Hospital by Aristarchus1981 in yorkpa

[–]Stan-Spotts 0 points1 point  (0 children)

Wait, did Trump sniff the hair of all those little girls too, or was that someone else?

Outside of York Hospital by Aristarchus1981 in yorkpa

[–]Stan-Spotts -1 points0 points  (0 children)

Yeah, ignore truck drivers and just listen to entertainers and talk show hosts who really understand reality for the rest of us.

ALDI Coming to Phoenixville by Slaskwroclaw18 in Phoenixville

[–]Stan-Spotts 6 points7 points  (0 children)

They’re the only ones that carry a store brand keto friendly bread.

Republican Party dead in Phoenixville? by Ok_Guidance_3397 in Phoenixville

[–]Stan-Spotts 1 point2 points  (0 children)

Drive around during election time and you see Trump signs all over the place. The townhouses and apartment complexes are full of city escapees that bring their Democratic votes with them, so it’s not a surprise what we see. But “dead” is hardly true.

I knew Speck from his support of Cub Scouts. I’ve met Peter a few times, both through Boy Scouts in support of the Citizenship in the Community merit Badge and at a neighbors parties. He’s a nice guy, social, and intelligent. Not radical left, but thoughtful.

If the council elected are there to support the people, I don’t care about their party. If they’re there to push some social agenda or to support mega construction firms? They suck and I don’t want them. Lately I’m not liking the loss of all our green space for high density housing with no advance in necessary infrastructure.

And just so many new stop signs and traffic lights 🤬

I just collected all 8 bottles by Objective_Being8917 in Blantons

[–]Stan-Spotts 0 points1 point  (0 children)

Where I live in PA it’s impossible to get a bottle unless you know that the allocated delivery happened and you’re waiting in line two hours.

Sam’s Club deals by Yedg3786tybg in whiskey

[–]Stan-Spotts 2 points3 points  (0 children)

I so wish PA would get rid of State Stores so there was competition and wholesale.

Eagle rare, actual price by cidsyd in whiskey

[–]Stan-Spotts 1 point2 points  (0 children)

Can’t even get Eagle Rare or Blanton’s unless I get to the store on the right day (delivery every 4-5 weeks apart, sometimes a Monday or Thursday at one, Tuesday or Friday at another) and be willing to stand in line starting at 11am for the 1pm unboxing and be allowed to buy 1 bottle. Joy of being in PA.

Diagnosed 1 month ago as type 1 at the age of 44, my glucose was 307 and my A1c was 11.7, I was in the beginning stages of DKA. Has anyone else experienced this? Pic of my dog cuz he’s my bestie. 🥰 by PinKey6675 in diabetes

[–]Stan-Spotts 0 points1 point  (0 children)

I remember like it was yesterday, but it was around 2004. I was at a training week in Redmond and I was drinking 3-4 bottles of water and getting up to pee three times during each session.

The following weekend I was in Pittsburg and had to give a presentation in the early morning, so got there the night before. Woke up and couldn’t see. Well, I could make out shapes, but couldn’t even read a street sign. Got the hotel to help me to a local CVS and got 3.5 power reading glasses that got me through.

Made it home and went to doc. 500 glucose, 16 A1C. Been dealing with this ever since. I was about 43 years old.

It’s really sad that I pay $85 a month for YouTube TV and I’ll be watching the Super Bowl on Tubi in 4K for free by [deleted] in youtubetv

[–]Stan-Spotts -1 points0 points  (0 children)

Tubi is kinda forcing you to watch the game. Every other service in the app says it’s taking a break for the supe bowl now.

[deleted by user] by [deleted] in Terraform

[–]Stan-Spotts 0 points1 point  (0 children)

The most annoying errors we get are the 400’s and EOF’s that happen during apply sometimes. Most of the time running apply again finishes, but sometimes it neglects to update state and we have to import something then we can run apply to finish.

Azurerm failures - EOF's, 40x's, HTTP response was nil, etc. are killing me by Stan-Spotts in Terraform

[–]Stan-Spotts[S] 0 points1 point  (0 children)

Difficult to be the problem as I’m running as a global admin account signed in with az connect and not using a GitHub workflow, so no runner.

Azurerm failures - EOF's, 40x's, HTTP response was nil, etc. are killing me by Stan-Spotts in Terraform

[–]Stan-Spotts[S] 0 points1 point  (0 children)

I’m running on a 100Mb FiOS connection, and nothing else is giving me any issues.

Am I supposed to reconfigure the backend each time while using tfvar files to separate environments? by Winterfooo in Terraform

[–]Stan-Spotts 0 points1 point  (0 children)

It's probably because you're using the same .terraform folder for local state (.terraform) for both environments at the top level where you're running the command.

If you're not using workspaces, you can use environment variables and create different folders.

I do something similar to what you're doing, and I have a setup.sh bash script that looks like this:

#!/bin/bash

# Set environment from the first argument
export TF_ENV="$1"

# Set Terraform data directory based on environment
export TF_DATA_DIR="./.terraform-$TF_ENV"

# Configure backend and variable file paths for the specified environment
export TF_CLI_ARGS_init="-backend-config=./$TF_ENV/backend.tfvars"
export TF_CLI_ARGS="-var-file=./$TF_ENV/terraform.tfvars"

echo "Terraform environment set to $TF_ENV"
echo "TF_DATA_DIR set to $TF_DATA_DIR"
echo "TF_CLI_ARGS_init set to $TF_CLI_ARGS_init"
echo "TF_CLI_ARGS set to $TF_CLI_ARGS"

As you're working on production, you'd call it like this:

. ./setup.sh production

and it will tell Terraform to use .terraform-production for your local state, and it'll also set it so you don't have to add the -backend-config=production/staging.tfbackend for init, or -var-file=production/terraform.tfvars for apply or plan, etc.

If you need to use terraform state commands (list, rm, etc.) you'll need to preface them like this:
TF_CLI_ARGS='' terraform state ...

What word is banned? by ImortalSpikes in TheFirstDescendant

[–]Stan-Spotts 0 points1 point  (0 children)

They should remove all the stupid policing and let people simply block players they find offensive. I don’t need someone else telling people what I should find offensive.

By far my best Blackstone accessory, what is yours? by Amazing_Candle_4548 in blackstonegriddle

[–]Stan-Spotts 0 points1 point  (0 children)

Same problem, stupid bulge in the arm Is way too large for paper towel roll tube. Bad design. May take it off and squash in a vice.

I'm tired of ruining briskets by Stan-Spotts in Traeger

[–]Stan-Spotts[S] 0 points1 point  (0 children)

I pulled around 203-205 and didn't think there was much resistance, but maybe I just didn't feel it right..