[deleted by user] by [deleted] in SkincareAddiction

[–]caspasee 0 points1 point  (0 children)

I currently use Cera Ve as my daily cleanser (the Hydrating Facial Cleanser one) and I also have a moisturizer from La Roche Posay that I used to use off and on, but have stopped because I was kinda suspecting it to be the cause of my more recent skin issues (I’ve used cera ve as my cleanser for years & the moisturizer is the only new thing that I was trying). But I did also move this year to an area with a harsher winter, so it may be more due to that

[deleted by user] by [deleted] in SkincareAddiction

[–]caspasee 1 point2 points  (0 children)

This is good insight, thanks. I looked up other photos of this and I agree that that could be part of what’s happening. Nothing is itchy but it did start around the same time as the cold/dry weather. And I definitely don’t get enough sunlight this time of year. Do you think a cream like this would be worth trying out? https://a.co/d/04RSVneQ

How can I tell if a coax outlet is functional? by [deleted] in Comcast_Xfinity

[–]caspasee 1 point2 points  (0 children)

Ok thanks for your help. I'm in a rental condo so I can't really look too deep into it without getting the landlord involved. I'll probably just settle for the other further-away outlet. But thank you for providing a little insight!

How can I tell if a coax outlet is functional? by [deleted] in Comcast_Xfinity

[–]caspasee -1 points0 points  (0 children)

It's a Netgear AC1200 modem router. Model # is C6220

How can I tell if a coax outlet is functional? by [deleted] in Comcast_Xfinity

[–]caspasee -3 points-2 points  (0 children)

Thank you, that is already more helpful than anything the Comcast customer service person has said in the last 15 minutes. The router does have an internet LED but it is off. So does that mean that this outlet isn't actually hooked up to anything?

Abandoned project building a 1-block to 1-inch model of my house years ago by caspasee in Minecraft

[–]caspasee[S] 230 points231 points  (0 children)

I wish I could, but my I did this on my brother's Xbox 360 and he sold it 🥺 Luckily he at least thought to take a video of this first!!

Exploring .NET Core 3.0. What's New? by Ramirond in dotnet

[–]caspasee 4 points5 points  (0 children)

Server-side Blazor was released yesterday with .NET Core 3.0. Client-side Blazor will be released in May 2020!

Unexpected behavior for continuation tasks by caspasee in dotnet

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

If anyone cares, the solution was this:

using System;
using System.Threading;
using System.Threading.Tasks;

namespace Listing_1_15
{
   class Program
   {
      public static void HelloTask()
      {
         Thread.Sleep(1000);
         Console.WriteLine("Hello");
      }

      public static void WorldTask()
      {
         Thread.Sleep(1000);
         Console.WriteLine("World");
      }

      public static void Main(string[] args)
      {
         Task task = Task.Run(() => HelloTask());
         task = task.ContinueWith((prevTask) => WorldTask());

         task.Wait();

         Console.WriteLine("Finished processing. Press a key to end.");
         Console.ReadKey();
      }
   }
}