Skip to main content

Certificate of Good Standing SCAM

Yes! SCAM! Their notice is clearly intended to confuse and give the impression of being part of the official government, in the hopes of swindling you out of your hard earned money. Lucky my spidey sense kicked in (helped by the fact that I used a CPA to register my business) and a quick google search provided confirmation of my suspicion. Happy to post this so I can help spread the word about this sleazy tactic. Good luck follow newbie business owners.


Comments

Popular posts from this blog

Creating my logo

First I have to say. Thank Science. For the great resource that is the internet. After a few google searches and a few very helpful you tube videos. I was able to use a free resource to create my logo for my business. I am sure this achievement is probably trivial to many but it was a small but important step towards hopefully a realized dream. Good luck follow newbie business owners. Resources: https://www.youtube.com/watch?v=wVrEeImyg_E&feature=youtu.be https://logomaker.thehoth.com/

The CRASH course into a fraction of containerization

The world of containerization is massive with lots of learning. This workshop hopes to remove the intimidation factor by letting you work through a meaningful number of pieces but thinly sliced. The pieces: Getting an application into Docker and seeing it work Using a handful of Docker commands Getting an application into Kubernetes and seeing it work Using a handful of Kubernetes commands Utilize Helm to deploy into Kubernetes Using a handful of Helm commands You are inspired to learn all there is about containerization !!! Prerequisites Install  Visual Studio   (You will need to create a simple test web application) Install  Docker Desktop Install  Visual Studio Code Install  Docker extension for VS Code Install  Kubernetes extension for VS Code Create a simple test web application Launch Visual Studio and create an ASP.NET Core Web Application named  MyWebApp 2. Add some code and run the application from Visual Studio 3. Publish the application via ...

Publish .NET Core Code Coverage in Azure DevOps

  Publishing .NET Core code coverage in Azure Devops with .Net 6 gives very insightful information and does not require a lot of effort. Add the extension for Report Generator from the market place. Add the coverlet.collector NuGet package to (each of) the test project(s) that you run dotnet test against.  For example: <PackageReference Include=”coverlet.collector” Version=”3.1.0"> <IncludeAssets>      runtime;build;native;contentfiles;analyzers;buildtransitive; </IncludeAssets> <PrivateAssets>all</PrivateAssets> </PackageReference> 3. Next, update the pipeline yaml to ensure your dotnet test command looks like below along with the report generator task to combine the generated coverage reports for all the test projects and then publish the report. # This sets the variable to disable automatic generation of default coverage report and will allow us to use the new report that we are generating via Report Generator - task:...