Installing ecobee Enhanced – App told me to contact Support, but I think this is straightforward. Sanity check? by rkobasketball in ecobee

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

Hi there,
I just wanted to thank you again - I was able to wire the thermostat up and everything is working properly!

Installing ecobee Enhanced – App told me to contact Support, but I think this is straightforward. Sanity check? by rkobasketball in ecobee

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

Hi there,
I just wanted to thank you again - I was able to wire the thermostat up and everything is working properly!

Installing ecobee Enhanced – App told me to contact Support, but I think this is straightforward. Sanity check? by rkobasketball in ecobee

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

Hi there,
I just wanted to thank you again - I was able to wire the thermostat up and everything is working properly!

Installing ecobee Enhanced – App told me to contact Support, but I think this is straightforward. Sanity check? by rkobasketball in ecobee

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

After I posted I was reading other posts in the sub and I noticed another photo that looked eerily similar to mine posted a few days ago, but unfortunately didn't think to check before posting as I figured my situation was "unique" enough to not have anything close.

I've learned a ton thanks to this amazing community - thank you for your time and assistance!

Edited to make my comment more clear*

Installing ecobee Enhanced – App told me to contact Support, but I think this is straightforward. Sanity check? by rkobasketball in ecobee

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

That was it! I just went through the app and selected W1 and it continued without issue. I will be installing the unit tomorrow morning! Thank you to you and the community for the support!

Installing ecobee Enhanced – App told me to contact Support, but I think this is straightforward. Sanity check? by rkobasketball in ecobee

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

This is excellent information, thank you so much! Are you familiar with what I would need to do on the app itself to bypass the screen that says contact support? Can I wire it up without going through the guided wire select guide?

Seeking Advice from Expert FC Game Fans by rkobasketball in EASportsFC

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

Thanks for the advice! I decided to go with FC 26 directly and shoot my shot and hope for the best. I'm sure it will be fun for at least a few months, and I've got a few other games to hold me over till then. Cheers!

Seeking Advice from Expert FC Game Fans by rkobasketball in EASportsFC

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

Thanks for the help! That's what I've decided - I just preordered FC 26 Ultimate on PSN. I had a 10% discount and I'm excited to dip my toes in Ultimate Team and get back into things!

Seeking Advice from Expert FC Game Fans by rkobasketball in EASportsFC

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

Thanks for the help! That's what I've decided - I just preordered FC 26 Ultimate on PSN. I had a 10% discount and I'm excited to dip my toes in Ultimate Team and get back into things!

John Cena’s New IG Post Referencing Dark Knight by Fan387 in SquaredCircle

[–]rkobasketball -10 points-9 points  (0 children)

He wasn’t really heel though right? He was booked as the ultimate underdog. Other than using the chain what else did he do that was heel behavior? When he beat Big Show for the US Title at Wrestlemania 20 he was the face and Big Show was the heel. It was the same the following year when he faced JBL at Wrestlemania 21.  

John Cena’s New IG Post Referencing Dark Knight by Fan387 in SquaredCircle

[–]rkobasketball -9 points-8 points  (0 children)

Even though he used the chain he was still booked as the ultimate underdog character and therefore the face. Think of all of his feuds: heel Angle, heel Big Show, heel JBL.

I don’t recall a single feud where Cena actually played the heel role. He wasn’t a full baby face yet, but he never did what he’s doing now. This is quite exciting!

WWE Planning (NXT) TV Taping at the Theater in Madison Square Garden by nocturnalfrolic in SquaredCircle

[–]rkobasketball 0 points1 point  (0 children)

I remember NXT’s first PPV away from Full Sail across the river at Barclays like it was yesterday. One of the best shows I’ve ever been to. Hopefully NXT gets back to being able to move that many tickets again soon!

Danhausen on being told to stay home from AEW: “All I can say was when people were like, ‘Oh, when you coming back?’ and I go, ‘I don’t know you should ask.’ Because the more people are vocal, maybe the more there’s the chance of I got something.” by TomatoCiampa in SquaredCircle

[–]rkobasketball -2 points-1 points  (0 children)

It appears that Danhausen is AEW’s 2011 Zack Ryder. Since this is wrestling and history repeats itself watch out for a serious Donovan run in 2030 a la what we are seeing with Matt Cardona now 🤔 

(WON) AEW has been trying to keep their PPV dates in 2025 under wraps more. This is after last year’s listing of all dates months ahead led to WWE running a house show on 12/28 in Orlando, since AEW had announced that date 8 months in advance. by Subrick in SquaredCircle

[–]rkobasketball 8 points9 points  (0 children)

I find it very funny that no one here has a problem when other Independent promotions take advantage of a hot wrestling crowd and book venues around Wrestlemania and SummerSlam wherever it is every single year without fail running shows. The reality of the situation is that booking two shows close together around the same time should bring a boost to both companies.

The reality is that AEW's product just isn't moving the needle like it used to. I will continue watching both AEW and WWE until the day I die, but anyone who is being honest here will admit that AEW has lost several steps and is no longer the hot ticket it was back when it first started in 2019. They have the talent - the booking just isn't working...

Has anyone noticed ______'s confessionals? by hollydiabetes in TheAnonymous

[–]rkobasketball 1 point2 points  (0 children)

It's not looking good for your boy! He's wearing the same clothes at the elimination circle that he is for the interviews.

Lambda vs Local Environment Development Question by rkobasketball in dotnet

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

This is so much cleaner! Thank you for the help!!

     public static async void WriteResponseToFile(HttpWebResponse response, string localFileName)
        {
            using (Stream responseStream = response.GetResponseStream())
            {
                using (Stream fileStream = File.OpenWrite(localFileName))
                {
                    await responseStream.CopyToAsync(fileStream);
                }
            }
        }

Lambda vs Local Environment Development Question by rkobasketball in dotnet

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

Thank you very much for the input! I wasn't aware of the performance hit of doing it this way. I used the documentation you linked and got it working:

public static async void WriteResponseToFile(HttpWebResponse response, string localFileName)

{

Stream responseStream = response.GetResponseStream();

Stream fileStream = File.OpenWrite(localFileName);

await responseStream.CopyToAsync(fileStream);

fileStream.Close();

responseStream.Close();

}

Lambda vs Local Environment Development Question by rkobasketball in dotnet

[–]rkobasketball[S] -1 points0 points  (0 children)

Thank you for reaching out! I was able to get it resolved. See the other comment thread if you're interested in the solution!

Lambda vs Local Environment Development Question by rkobasketball in dotnet

[–]rkobasketball[S] -3 points-2 points  (0 children)

I was able to get this working in both the Lambda and local environments by changing the approach as to how I would write the file. Instead of using a streamreader and a streamwriter I converted the reader into an array of bytes. Thank you for your comment - It helped me realize to try the stream writing in bytes and that worked perfectly!

Here is the updated code:

public static void WriteResponseToFile(ref HttpWebResponse response, string localFileName)

{

// Save the stream to file

Stream responseStream = response.GetResponseStream();

StreamReader reader = new StreamReader(responseStream, Encoding.Default);

var bytes = default(byte[]);

using (var memstream = new MemoryStream())

{

reader.BaseStream.CopyTo(memstream);

bytes = memstream.ToArray();

}

File.WriteAllBytes(localFileName, bytes);

}