InfoQ Homepage Microsoft Content on InfoQ
-
How Composite C1 Found Success by Becoming Open Source
In today’s environment it is difficult to offer commercial products, especially in highly competitive fields such as content management systems. Finding themselves being squeezed out of the market, Composite C1 found a way to thrive by releasing their core product under an open source license with cloud based hosting.
-
Oleg Shilo on CS-Script and Notepad++
When you just want to try out some code, Visual Studio can feel like overkill. So some developers turn to lightweight editors such as Notepad++ for their scripting needs. Oleg Shilo talks about his project to add better CS-Script plugin for Notepad++.
-
Introduction to Graph Visualization with Alexander Smirnov
To help the user understand what they are seeing, developers often turn to bar and pie charts. But that only works for discrete data; when at the links between data other tools come into play. We asked Alexander Smirnov, creator of GraphX, to explain what graph visualization is and how it can be used.
-
Exposing CQRS Through a RESTful API
Command Query Responsibility Segregation (CQRS) is an architectural pattern that segregates reads and writes of a system into two separate models. We propose and demonstrate an approach for building a RESTful API on top of CQRS systems. This approach joins HTTP semantics and resource-based style of REST APIs with distributed computing concerns such as eventual consistency and concurrency.
-
What to Use on the Microsoft Stack
With Microsoft’s unwillingness to officially deprecate technologies such as Silverlight, figuring out which technologies on the .NET stack have a future and which should be avoided can be challenging. To help you out, we have summarized what we know of Microsoft’s intentions when it comes to business applications.
-
Deploying it right with AppVeyor CI and PowerShell
Deploying real applications is hard. Questions arise when there are configuration settings in the Registry, custom folders structure, or you have to deploy to a web cluster. In this article we look at setting up continuous delivery for a solution consisting of ASP.NET web application and Windows service to a staging and production environments using PowerShell remoting and AppVeyor CI.
-
Creating a sales dashboard for ASP.NET and MVC with ShieldUI Chart
In this article David Johnson demonstrates the differences between ASP.NET Web Forms and MVC by integrating the same charting control in each.
-
JSIL: Challenges Met Compiling CIL into JavaScript
This article introduces JSIL, a .NET to JavaScript compiler, and contains details on the difficulties encountered while compiling CIL code into cross-browsers JavaScript.
-
Interview with Mary Delamater, Author of Murach's ASP.NET 4.5 Web Programming with C# 2012
Murach Publishing continues to provide quality content for programmers by updating their titles regularly. Murach ASP.NET 4.5 Web Programming with C# 2012 by Mary Delamater and Anne Boehm attempts to provide a comprehensive coverage of ASP.NET 4.5 using C# language with plenty of screenshots and source codes to help developers to code in real world situations.
-
C++/CX Performance Pitfalls
Writing applications in C++/CX is not like writing normal C++ applications. The interoperability between pure C++ code and the Windows Runtime (WinRT) can be surprisingly expensive. In this article based on Sridhar Madhugiri’s video, C++/CX Best Practices, we look at some of the ways to avoid performance problems in Windows 8 development.
-
Building Scalable Applications in .NET: Introducing the FatDB Distributed Computing Platform
Justin Weiler introduces FatDB, a NoSQL DB and a distributed platform built on Mission Oriented Architecture meant to abstract and generalize the essential characteristics of enterprise applications.
-
Correctly Building Asynchronous Libraries in .NET
Building an asynchronous library requires very specific design patterns that can be quite different from the patterns used when consuming an asynchronous library. But if you follow some basic rules you can greatly improve the experience for the consumers of your libraries.