-
Build 2019 Session: .Net Goodness
Yes, I know I’m a little behind on picking out my favorite Build 2019 Session… So here the first one… Microsoft Build 2019 Developer Conference May 6-8 Seattle, WA Microsoft Build 2019 Developer Conference May 6-8 Seattle, WA Join developers and industry experts at Microsoft Build to explore the latest developer tools and technologies. #MSBuild Source: .NET Platform Overview and Roadmap
-
Azure Logic App Development in Portal vs Visual Studio
A funny thing happens when you move away from doing Prototype Azure Logic App all in the Portal to doing them in Visual Studio (where you are supposed to do Production develop). What’s funny… or is it annoying? Well, development life turns out is not the same. In the next few days I will be adding a small trip thought some things I notice between the two modes of development.
-
Powershell 6.x Profiles
Because I can never remember this: All Users, All Hosts $PsHome\Profile.ps1 All Users, Current Host $PsHome\Microsoft.PowerShell_profile.ps1 Current User, All Hosts $Home\Documents\PowerShell\Profile.ps1 Current user, Current Host $Home\Documents\PowerShell\Microsoft.PowerShell_profile.ps $Profile Current User, Current Host $Profile.CurrentUserCurrentHost Current User, Current Host (Yeah the same as above) $Profile.CurrentUserAllHosts Current User, All Hosts $Profile.AllUsersCurrentHost All Users, Current Host $Profile.AllUsersAllHosts All Users, All Hosts
-
Powershell 6 Core Like Install
As I re-tool (or is it update) my Powershell, I came across the simple one liner to do the install… nice: iex "& { $(irm https://aka.ms/install-powershell.ps1) } -UseMSI" Btw some neat changes in 6.2 PS… Some interesting settings: Enable-ExperimentalFeature -Name PSCommandNotFoundSuggestion Enable-ExperimentalFeature -Name PSTempDrive Enable-ExperimentalFeature -Name PSUseAbbreviationExpansion Read More: What’s New in PowerShell Core 6.2 What’s New in PowerShell Core 6.2 New features and changes released in PowerShell Core 6.2 Source: docs.microsoft.com/en-us/powershell/scripting/whats-new/what-s-new-in-powershell-core-62?view=powershell-6
-
Earth Day 2019
Happy Earth Day – remember, In the vast Universe… There be only one Earth! Earth Day | Earth Day Network Earth Day | Earth Day Network Visit the official Earth Day site to learn about the world’s largest environmental movement and what you can do to make every day Earth Day. Together, we can end pollution, fight climate change, reforest the planet, build sustainable communities, green our schools, educate, advocate and take action to protect Earth. Source: www.earthday.org/
-
build 2019 is soon.
It’s that time of year… where May the 4th is around the corning… and yeah… Build 2019. Microsoft Build 2019 Developer Conference May 6-8 Seattle, WA Join developers and industry experts at Microsoft Build to explore the latest developer tools and technologies. #MSBuild microsoft.com
-
The Azure Vault, PGP, and other matters Part 3
Well if you are still hanging on… thanks and good job. We only have a bit more to go…. (you can go back to Part 1 or Part 2) Time to regroup as to where we are in the Big Picture: This is the flow of the Logic App. In Part 2 we just finished up the GetKeys block… so onto the Decryptor…. Some more code of course as this is another Azure Function…. public static class MHKPGPDecryptor { [FunctionName("MHKPGPDecryptor")] public static async Task<IActionResult> Run( [HttpTrigger(AuthorizationLevel.Function, "get", "post", Route = null)] HttpRequest req, ILogger log) { log.LogInformation($"C# HTTP trigger function {nameof(MHKPGPDecryptor)} processed a request."); string vaultKey = req.Query["privatekeysecretid"]; string useVault =…
-
The Azure Vault, PGP, and other matters Part 2
Ok, where were we (Back to Part 1) … Ah, we are down to the PGP content in the Azure Vault getting ready to use it…. At this point I gather you have created your vault and placed the middle contents of the PGP Key file into the secrets value…. Drilling into my Secret: We are going to use parts of this detail to pass along to the Get Keys Azure function – as a reminder we are here: My Azure function takes three values: SecretName, SecretVersion, and VaultPath. These values come from the URL that you find on the Secret Detail shown above. https://<VaultPath>.vault..net/secrets/<SecretName>/<SecretVersion> From the Overview of your…
-
The Azure Vault, PGP, and other matters Part 1
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…
-
Visual Studio 2019 Launch Event
Looking forward to the newest version: Visual Studio 2019 Launch Event Visual StudioLaunch eventLocal eventsSponsorsDownload Visual Studio 2019 RC Visual Studio 2019 Launch Event Tuesday April 2, 2019 | 9:00am PT until the Visual Studio 2019 launch Calendar.AddEvent(); Your ideas deserve great tools visualstudio.microsoft.com



