MyAdviceWriter ...

I’m pleased to say that I’ve been included in a list of the top MVPs to follow on Twitter!

Following my renewal as a Microsoft MVP earlier this month, I’ve been given a shout out on Nigel Frank’s Microsoft MVP Class of 2019 roundup, which shines a light on MVPs from across the community who’re doing great things online. 

I feature alongside some fantastic fellow MVPs, so check out the post and check out some of the fine people working to make the Microsoft ecosystem a smarter, more exciting place!

https://www.nigelfrank.com/blog/class-of-2019-25-microsoft-mvps-you-should-be-following/ 

Since Visual Studio launched 22 years ago it has evolved to become a favorite IDE of the casual to professional developer. With the launch of Visual Studio 2019 Microsoft again steps up their game with improvements to make it easier to work and debug Cloud, Mobile and Web, as well as bring the developer a number of productivity improvements.

Join us for a chance to participate in the launch with a live viewing party at the Microsoft Office in Edina. It's a chance to be a part of the next generation of developer tools and you get to see all the compelling new features and capabilities of Visual Studio! Join us in Edina on April 2 - http://bit.ly/vs19msp - to join the live streamed event and share the fun!

Do you ever have “unexpected time” on your hands? Need to brush up your job interviewing skills? Want to know more about the technical talent market in the Twin Cities? TechMasters After Dark – Job Interviewing Skills, is a free workshop delivering job interviewing strategies, interviewing tips, and Q&A with a panel of recruiters. The audience has the opportunity to practice with group exercises called Table Topics. Join us Thursday, Feb 21, doors open at 5:30 pm at Improving's MN office at 3600 American Blvd, #115. We have a slate of experts and a panel of recruiters who will answer your questions about how they ask questions.

More info at http://bit.ly/tmad1901. See you there!

 

At this year's Microsoft BUILD Conference I was able to get a couple sessions to talk about the Enterprise Developer's journey to the Cloud. The sessions will be on Monday at 5:00 pm and Tuesday at 5:00 pm in Theater 4 on the Expo Hall Theater 4.

In it I'm going to share some exciting advancements in the tools we use every day to create great software, but especially the features that make those applications cloud aware! Not only can you create an publish to Azure but now you can also work with the settings and create templates to use for future deployments as well. The new Resource Group project enables the creation of complex infrastructure deployments that include not just the web hosting services but also analytics and monitoring capabilities as well as alerts when things go wrong.

If you're at Build stop by and let's chat about how you can make your team not just cloud aware, but Ready for the Enterprise Cloud! If you can't make it, I'm basing the talk on some course I'm developing for LinkedIn Learning called Azure for the Enterprise Developer. You can check those out online, they include:

Outside of that, I'll be hanging out at Build and tweeting about what's new and getting ready for the next roadshow. See you on the road!

Getting an application operational depends on making sure that it can run after the developer has left the room. In the enterprise we have teams of people of focus on that and will go to great lengths to make sure the team that runs the application that was built is solid and predictable. One of the challenges with the cloud is getting an operations team that has been trained to be cloud experts.

To alleviate that problem, Azure supports the dashboard you see in http://portal.azure.com as a shareable resource just like any other service you provision. You can create and customize dashboards by using the portal and pinning tiles that are relevant to your application. When you publish the dashboard you can share it with other teams that have access to Azure, including the operations team.

That is why I created a starter dashboard ARM template you can use to make your deployments more operational. It includes a couple tiles, including a resource group tile and a markdown tile with some instructions on how to customize and share the dashboard with others on your team.

Click the link below to provision it from the Azure portal. I’ve got a pull request to add it to the azure starter template library but until then you can get it from a storage account I’ve uploaded it to. Click the link below to deploy a starter dashboard to your Azure subscription for resource group.

Technorati Tags: ,,,

A picture is worth a thousand words and in the same way deploying a complex infrastructure with a thousand words takes a special skill to be able to do that. Wouldn’t it be great if we could deploy the picture instead? In the time I’ve been working with and evangelizing Azure since before it was publicly released, I’ve seen a lot of changes and ten years is a long time in the cloud! In 2014 Microsoft introduced the Azure Resource Manager (ARM) which provides a powerful way to orchestrate the creation of services in the cloud. They also introduced ARM templates, which is like a markup language that provides a picture instead of code. I’m working on a series of courses with LinkedIn Learning that share the journey of going to the cloud for the modern enterprise. We explore the path and the tools for going from being just cloud aware (it runs in the cloud) to being optimized, invested and finally ready for the enterprise.

This is a work in progress, but links to the first few courses are below. I’ll update the list as more are ready!

I had a question today about how the recorder works for with the Xamarin Tools in Visual Studio 2017. I’ve had mixed success with getting it to work, so I thought I’d document the steps that make it work. The trick is you need to be running a version of the APK that is not using the shared runtime (a default when you do a debug build). For that reason I use the release build to record the test. Here’s the basic flow:

1. Create new cross platform project with the blank template
2. Build & run it on my device (first in debug but then again in release)
3. add the UI Test project to the solution
4. In the Android project show all files and navigate to the bin/release folder and copy the path
5. In the Test.cs file at the top of the class near the [TestFixture(Platform.Android)] line click on record new test and then select the APK - make sure to put in the path of the signed release version of the apk
6. Wait until you notice the app running on the device
7. When you tap the screen, swipe left or right you'll see the [Test] method NewTest() gets new code added to it.

        [Test]
        public void NewTest()
        {
            app.SwipeLeftToRight();
            app.Tap(x => x.Class("PageRenderer"));
            app.SwipeLeftToRight();
            app.SwipeLeftToRight();
            app.ScrollDown();
            app.ScrollUp();
            app.SwipeLeftToRight();
            app.SwipeRightToLeft();
            app.Screenshot("Swiped left");
        }

 

As promised last week I updated the slides with the session that the content was drawn from. Here is the consolidated list of sessions with deeper dives into the topics from Build:

  • B8020 - Cognitive Services & Computer Vision Made Easy
  • B8049 - Enable intelligence with Azure IoT Edge
  • B8096 - Windows Template Studio
  • B8100 - What's New and Coming in Windows UI Platform
  • B8001 - Three Runtimes One Standard .NET Standard
  • B8048 - Introducing .NET Core 2.0
  • B8027 - Azure Debugging & Snappoints
  • B8039 - Design for Serverless Success
  • B8061 - How to build serverless business applications
  • B8099 - Xamarin Tools
  • B8103 - The Future of Xamarin Development
  • B8072 - Overview of Mobile Center

My GitHub repo for the event - http://github.com/mbenko/rebuild17. Other links from the event include:

Re-BUILD 2017 Roadshow

The “re-BUILD 2017 Roadshow” brings the best of the Build conference to cities across the US. A half day developer focused event in partnership with User Groups and Microsoft Partners will deliver a half day msdn-event style experience. There will be 3  sessions on Build Highlights, Going Serverless with Azure Functions, and Mobile Center, the next generation of HockeyApp. A HackFest over lunch will cover ad-hoc topics by community leaders and MVP’s to share their favorite thing from Build.

The schedule typically includes:

  • Build 2017 Productivity Features you never knew you had
  • Going Serverless with Azure Functions
  • Exploring Mobile Center
  • Pizza and Hackfest

The scheduled cities are listed below with more coming soon!

We'll see you on the road with re-BUILD 2017 Roadshow!

This is a temporary post that was not deleted. Please delete this manually. (42e1c3dc-cd74-44a1-88fd-505014887ad1 - 3bfe001a-32de-4114-a6b4-4005b770f6d7)

Load more...