Showing results for September 2018 - Developer Support

Sep 27, 2018
0
0

Uncovering The Details Of Hosting a Node Application On Azure

Developer Support
Developer Support

I was recently working on a Node JS application and I decided that Azure was the right place for me to host my application as it made it extremely easy to deploy it to production. But shortly after deploying the application I started to have questions about some of the magic that Azure was doing to make everything “just work”. This post summarizes my journey in attempting to uncover some of the magic involved in hosting a Node application on Azure.

TeamAzureNode.js
Sep 27, 2018
0
0

Cosmos DB Emulators can also run in the Cloud

Developer Support
Developer Support

Dev Consultant Julien Oudot demonstrates how to automate the testing of a data layer in ASP.NET Core WEB API with Cosmos DB.

Team.NET CoreCosmosDB
Sep 21, 2018
0
0

DevOps and Waste

Developer Support
Developer Support

One of the great things we’ve learned from applying Lean to software development and operations is the notion of eliminating waste is our processes. In this article I’ll provide some background on why this is important and how to find and eliminate waste in your daily activities.

TeamDevOps
Sep 20, 2018
0
0

DevOps and Business Strategy

Developer Support
Developer Support

When I engage with customers I often work with developers, business analysts, managers, Operations, etc. and the discussions are invariably about tools whether they are Microsoft’s or Open Source tools. These are great topics and open up conversations around many other topics. However, most folks aren’t really talking about the reason we are trying to use these tools. All too often the tools become the shiny objects in the room which divert us from even more important topics.

TeamDevOps
Sep 10, 2018
0
0

DevOps Stories – An Interview with Brian Blackman of Microsoft Premier

Developer Support
Developer Support

App Dev Manager Dave Harrison talks with Brian Blackman, a Senior Consultant for Microsoft Premier. As an Azure development and DevOps consultant, he works with Independent Software Vendors (ISV), Enterprises, and Partners where his specialty is DevOps. Brian’s focus is assisting customers in establishing a vision for DevOps, assessing where they currently stand, and then working with them to develop a roadmap to attain their vision. MCTP, MCSD-C++, CSM, CSP, SAFe Agilist.

TeamDevOpsALM
Sep 10, 2018
0
0

Open Source Virtual Conference

Developer Support
Developer Support

Join us in the morning for a keynote featuring John Gossman and Gabe Monroy providing insights into how Microsoft has embraced Open Source both with its own technology and our commitment to the Open Source Community. Following the keynote, we will be focused on ensuring you are set up on Azure for the remainder of the day to be able to follow along with demos throughout the 14 sessions available.

Events
Sep 7, 2018
0
0

Kanban Board Tools Extension for VSTS

Developer Support
Developer Support

The Kanban Tools extension for VSTS is now available on the marketplace. This is our first public release of the extension and includes the ability to copy to and from a team’s Kanban board.

TeamVSTSKanban
Sep 7, 2018
0
0

Raw threads and async lambdas

Developer Support
Developer Support

Using async methods/lambdas where they are not expected causes unexpected problems. The typical example I discuss with people is TaskFactory.StartNew() because its an easy way to create Tasks and some people reach for that instead of Task.Run(), but I recently came across some code hitting the same problem while creating threads the traditional way.

Team.NETasynchronous
Sep 5, 2018
0
0

Combining iterator blocks and async methods in C#

Sergey Tepliakov
Sergey Tepliakov

One of the best traits of a well-designed system is composability. Large systems are complex and hierarchical and one of the best ways to fight accidental complexity is to compose a system from smaller components. You write and test each component independently then you glue them together to achieve a higher-level behavior. Programming languages...

seteplia