Search results for 'aiab.top[How to get the pages indexed by Google fast'

Processing a Single Azure Cosmos DB Document at a Time With Azure Functions This is the fifth part in a series of articles. In previous parts of this series the Azure Function Type: Post
Tags : c#, .net, .net core, Azure, azure functions, cosmosdb, cosmosfuncseries
http://dontcodetired.com/blog/post/Processing-a-Single-Azure-Cosmos-DB-Document-at-a-Time-With-Azure-Functions
Understanding Azure Durable Functions - Part 4: Passing Input To Orchestrations and Activities This is the fourth part in a series of articles. In the first part of the series we learned that Dur Type: Post
Tags : C#, azure, azure functions, durable functions, serverless, .net, durfuncseries
http://dontcodetired.com/blog/post/Understanding-Azure-Durable-Functions-Part-4-Passing-Input-To-Orchestrations-and-Activities
Understanding Azure Durable Functions - Part 6: Activity Functions with Additional Input Bindings This is the sixth part in a series of articles. Up until this point in this series, the activity fun Type: Post
Tags : C#, azure, azure functions, durable functions, serverless, .net, durfuncseries
http://dontcodetired.com/blog/post/Understanding-Azure-Durable-Functions-Part-6-Activity-Functions-with-Additional-Input-Bindings
How to Schedule Cosmos DB Data Processing With Azure Functions This is the seventh part in a series of articles. You can perform scheduled/batch processing of Azur Type: Post
Tags : c#, .net, .net core, Azure, azure functions, cosmosdb, cosmosfuncseries
http://dontcodetired.com/blog/post/How-to-Schedule-Cosmos-DB-Data-Processing-With-Azure-Functions
Using FeatureToggle In Your Windows 8 WinRT App "I just released an update to my open source feature toggling library FeatureToggle. Version 1.2.0 add support for using feature toggles in your Windows 8 WinRT .Net (C#) app. For this initial release, ..." Type: Post
Tags : open source, featuretoggle
http://dontcodetired.com/blog/post/Using-FeatureToggle-In-Your-Windows-8-WinRT-App
Screen Scraping As A Service with Azure Functions in 5 Mins If you have some data in a web page but there is no API to get the same data, it’s possible to Type: Post
Tags : azure functions, azure, serverless, c#
http://dontcodetired.com/blog/post/Screen-Scraping-As-A-Service-with-Azure-Functions-in-5-Mins
Executing Multiple Azure Functions When Azure Cosmos DB Documents Are Created or Modified This is the sixth part in a series of articles. Sometimes you may want more than one Azure Function Type: Post
Tags : c#, .net, .net core, Azure, azure functions, cosmosdb, cosmosfuncseries
http://dontcodetired.com/blog/post/Executing-Multiple-Azure-Functions-When-Azure-Cosmos-DB-Documents-Are-Created-or-Modified
Using Server Side Timers and SignalR in ASP.NET MVC Applications "I thought it would be fun to create an “Internet uptime” page that you can see live here on Azure Websites. It shows how long the Internet (since ARPANET) has been around for. Creating a Class that c ..." Type: Post
Tags : web, signalr, html, c#, asp.net
http://dontcodetired.com/blog/post/Using-Server-Side-Timers-and-SignalR-in-ASPNET-MVC-Applications
ICYMI C# 8 New Features: Simplify Array Access and Range Code This is part 5 in a series of articles. One of the new features that C# 8 introduced was the ability Type: Post
Tags : icymcs8series, C#, .net, .net core, C#8
http://dontcodetired.com/blog/post/ICYMI-C-8-New-Features-Simplify-Array-Access-and-Range-Code
ICYMI C# 9 New Features: Create Immutable Objects with Records "This is part of a series of articles on new features introduced in C# 9. C# 9 introduced a new type of object that is neither a class or a struct. This new type is called a  record. In C# 9 a rec ..." Type: Post
Tags : icymcs9series, c#, .net, .net core, C#9
http://dontcodetired.com/blog/post/ICYMI-C-9-New-Features-Create-Immutable-Objects-with-Records
Designing Mobile Apps "I've authored three Windows Phone 7 mobile apps. This is not a huge number I know but I would like to share how I think about mobile app design. The workflow below is not limited to any particular pla ..." Type: Post
Tags : mobile, design, ui, ux, user experience, apps, ui design
http://dontcodetired.com/blog/post/Designing-Mobile-Apps
Adding Tuple Support to .NET Classes in C# Edit: Updated to improve clarity (thanks to Paulo in the comments for helping to improve his article Type: Post
Tags : C#, .net, .net core
http://dontcodetired.com/blog/post/Adding-Tuple-Support-to-NET-Classes-in-C
Using the Xbox Music API in Universal Windows Apps "The Xbox Music API can be used by third party developers (i.e. you and me) to search for artists, songs, albums, etc and also get access to actually play songs. There are two flavours at present: “una ..." Type: Post
Tags : windows store, windows phone, universal apps, c#, xbox
http://dontcodetired.com/blog/post/Using-the-Xbox-Music-API-in-Universal-Windows-Apps
Creating Inline Data Driven Tests in xUnit xUnit.net allows the creation of data-driven tests. These kind of tests get their test data from out Type: Post
Tags : xunit, .net, c#, testing, tdd, quality
http://dontcodetired.com/blog/post/Creating-Inline-Data-Driven-Tests-in-xUnit
Atomically Copying One Array to Another Array If we’re copying arrays where the types may be different, sometimes we may want to do an atomi Type: Post
Tags : c# tips, c#, .net
http://dontcodetired.com/blog/post/Atomically-Copying-One-Array-to-Another-Array
.NET Document Databases with Marten Document databases are a form of NoSQL database that store items (objects) as single documents rathe Type: Post
Tags : c#, .net, data, marten, nosql
http://dontcodetired.com/blog/post/NET-Document-Databases-with-Marten
Terms of Use and Disclaimer DisclaimerThe information contained in this website is for general information purposes only. While Type: Page http://dontcodetired.com/blog/page/terms-of-use-and-disclaimer
C# Source Generators: Less Boilerplate Code, More Productivity One exciting feature of the upcoming .NET 5 are Source Generators. Source Generators as the name sug Type: Post http://dontcodetired.com/blog/post/C-Source-Generators-Less-Boilerplate-Code-More-Productivity
Preventing Inconsistent Feature Flag Values During a Single Request (Microsoft.FeatureManagement) This is part six in a series of articles. EDIT: my Feature Management Pluralsight training course is Type: Post
Tags : .net, .net core, c#, featuretoggle, msftseries, FeatureManagement
http://dontcodetired.com/blog/post/Preventing-Inconsistent-Feature-Flag-Values-During-a-Single-Request-(MicrosoftFeatureManagement)
Using C# Source Generators with Microsoft Feature Management Feature Flags C# Source Generators allow you to generate and compile source code dynamically. You can read more ab Type: Post
Tags : .net, .net core, c#, code generation, FeatureManagement, featuretoggle
http://dontcodetired.com/blog/post/Using-C-Source-Generators-with-Microsoft-Feature-Management-Feature-Flags