ScottGeek Technology

No Widgets found in the Sidebar Alt!

  • Microsoft

    The Azure Vault, PGP, and other matters Part 1

    April 16, 2019 / No Comments

    Let’s step back into cloud space for a moment. I had this challenge to see if I could do some decrypting of partner files. A simple matter, well yes and no (it does have some interesting parts to deal with). First off, the files encrypted here are with PGP. Now this type of file protecting is not hard once you’ve gained an understanding of how to create and use keys. I’m not going to go into the deep end around PGP. There’s plenty of that for you to find on the internet. But I will need to mention a matter or two about how PGP key files are formatted and…

    Read More
    ScottGeek

    You May Also Like

    .net Core 2.1 and SQL via EF Core 2.1 -The revisit

    July 3, 2018

    Did you say Free Pipelines?

    September 10, 2018

    AS2 and the Mysterious Certificate

    July 20, 2018
  • .Net Core,  Article,  Microsoft

    Port Desk Top UI App

    March 3, 2019 / No Comments

    Not really ready for prime time , but here’s an article stepping through the how-to and the workaround for the fact that Core has yet to add the visual designer for, ya you guessed the actual Windows Form- that seems to be a rather glaring miss if we are talking about porting and doing traditional windows UI forms development going forward. .NET Blog | How to port desktop applications to .NET Core 3.0 In this post, I will describe how to port a desktop application from .NET Framework to .NET Core. I picked a WinForms application as an example. Steps for WPF application are similar and I?ll describe what needs…

    Read More
    ScottGeek

    You May Also Like

    .net Core 2.1 and SQL via EF Core 2.1 -The revisit

    July 3, 2018

    Hello world!

    July 8, 2017

    AS2 and the Mysterious Certificate

    July 20, 2018
  • ASP.NET Core,  Microsoft

    Using Kestrel for ASP Core Apps

    March 3, 2019 / No Comments

    As I was looking about with some of the Core 2.2 notes, I came across some interesting notes on how to tweak about with Kestrel settings…. I’m not sure I like putting Kestrel options up the in the Main Program builder. I tend to prefer these to collect in the startup class, but I get point of why Kestrel needs to be handled close to the Builder (it is after all the html service handling web calls). Shall we begin… So up in program.cs we do our normal Web Host Builder: public class Program { public static void Main(string[] args) { var host = CreateWebHostBuilder(args).Build(); MigrateDatabase(host); host.Run(); //CreateWebHostBuilder(args).Build().Run(); } private…

    Read More
    ScottGeek

    You May Also Like

    .net Core 2.1 and SQL via EF Core 2.1 -The revisit

    July 3, 2018

    Did you say Free Pipelines?

    September 10, 2018

    Hello world!

    July 8, 2017
  • ASP.NET Core,  Microsoft,  Security

    App Registration Link

    February 3, 2019 / No Comments

    This seems to want to move me off to Azure… But for now the link still works… https://apps.dev.microsoft.com

    Read More
    ScottGeek

    You May Also Like

    Hello world!

    July 8, 2017

    AS2 and the Mysterious Certificate

    July 20, 2018

    .net Core 2.1 and SQL via EF Core 2.1 -The revisit

    July 3, 2018
  • .Net Core,  Microsoft

    Play with dotnet tool and a BOT

    February 1, 2019 / No Comments

    I was poking about with cleaning up my DotNet Core sdks and in my travels a found this thing call dotnet tools… Let the experiment begin… To credit the source of an article on Microsoft go here: dotnet tool  Do a console project with dotnet: dotnet new console -o botsay Then, of course, cd into the botsay directory… and edit the Program.cs (yeap you can do this in VS 2017) Here’s the main method: using System.Reflection; static void Main(string[] args) { if (args.Length == 0) { var versionString = Assembly.GetEntryAssembly() .GetCustomAttribute<AssemblyInformationalVersionAttribute>() .InformationalVersion .ToString(); Console.WriteLine($"botsay v{versionString}"); Console.WriteLine("-------------"); Console.WriteLine("\nUsage:"); Console.WriteLine(" botsay <message>"); return; } ShowBot(string.Join(' ', args)); } The ShowBot method is this:…

    Read More
    ScottGeek

    You May Also Like

    Hello world!

    July 8, 2017

    Did you say Free Pipelines?

    September 10, 2018

    .net Core 2.1 and SQL via EF Core 2.1 -The revisit

    July 3, 2018
  • Microsoft,  Visual Studio 2019

    Getting Ready for Visual Studio 2019? We are at Preview 2

    January 27, 2019 / No Comments

    Looking at what is coming for Visual Studio 2019… It’s time to start looking and trying…. Visual Studio 2019 Preview 2 is now available The official source of product insight from the Visual Studio Engineering Team blogs.msdn.microsoft.com    

    Read More
    ScottGeek

    You May Also Like

    Hello world!

    July 8, 2017

    AS2 and the Mysterious Certificate

    July 20, 2018

    .net Core 2.1 and SQL via EF Core 2.1 -The revisit

    July 3, 2018
  • Microsoft,  Visual Studio 2019

    Studio 2019 Preview 2 and Xamarin

    January 27, 2019 / No Comments

    Looking over the preview and I see some nice UI tweaks a coming.  Check it out: What’s New in Visual Studio 2019 Preview 2 for Xamarin    

    Read More
    ScottGeek

    You May Also Like

    .net Core 2.1 and SQL via EF Core 2.1 -The revisit

    July 3, 2018

    AS2 and the Mysterious Certificate

    July 20, 2018

    Did you say Free Pipelines?

    September 10, 2018
  • .Net Core,  Microsoft

    .Net Core 3 the next version

    December 29, 2018 / No Comments

    I still have not gone down the full .Net Core 3 path- but soon yes… Meanwhile MSDN mag has good preview on the topic: .NET Core – What’s Coming in .NET Core 3.0 msdn.microsoft.com  

    Read More
    ScottGeek

    You May Also Like

    AS2 and the Mysterious Certificate

    July 20, 2018

    .net Core 2.1 and SQL via EF Core 2.1 -The revisit

    July 3, 2018

    Hello world!

    July 8, 2017
  • Article,  Microsoft

    Azure: Static Web Pages Article

    December 21, 2018 / No Comments

    I’m not really into “Static” web pages, but an interesting read popped up on the Azure Blog. Static websites on Azure Storage now generally available Today we are excited to announce the general availability of static websites on Azure Storage, which is now available in all public cloud regions. .microsoft.com  

    Read More
    ScottGeek

    You May Also Like

    AS2 and the Mysterious Certificate

    July 20, 2018

    Hello world!

    July 8, 2017

    .net Core 2.1 and SQL via EF Core 2.1 -The revisit

    July 3, 2018
  • Microsoft

    Azure Deep Dive Class Completed.

    November 8, 2018 / No Comments

    Finished up a week of deep dive into Azure Logic Apps, Service Bus, and Integration accounts. I need to write up some conversations…. and of course, some setup walk-throughs.

    Read More
    ScottGeek

    You May Also Like

    AS2 and the Mysterious Certificate

    July 20, 2018

    Hello world!

    July 8, 2017

    .net Core 2.1 and SQL via EF Core 2.1 -The revisit

    July 3, 2018
34567

Recent Posts

  • Glitch task 1 – Permalinks and Azure Custom Domain for Word Press
  • Azure here we come with WordPress
  • The Massive Server down thing
  • Plex Install on Raspberry PI 5
  • “OPS” in the life of a Tech Geek.

Recent Comments

No comments to show.
ScottGeek - 2026 ©