By tag: net
0
kicks
C# Performance Benchmark Mistakes: Pt 1
In this series of articles, I'm going to go through some of the mistakes I frequently see people making who are attempting to write benchmarks in C#. But before we get into the mistakes, I suppose I should introduce myself and define the term...
0
kicks
Filter Collections Automatically With Entity Framework Code First
How to filter entity collections automatically in Entity Framework Code First
0
kicks
Setting the Foreground Window
Occasionally it is necessary for a .NET program to activate a window that belongs to a separate application. The facility to set the foreground window is not available through the .NET base class library but is possible using Platform Invocation Services.
0
kicks
Using Signlar To Publish Server Side Dashboard Data
Quick article on some dabbling I've been doing with the latest version of Signlar. Very cool tech and provides an easy to follow github solution to get you up and running with a basic publishing hub
0
kicks
Deeper Dive into ScriptCS
In this article, we will be exploring the newish REPL interactive mode, script packs, and many other cool features of ScriptCS.
0
kicks
Building REST API with MVC 4 Web API - Part 1
While building a REST API in .NET has always been possible, simply due to the fact that .NET has always supported HTTP, there hasn't been any out-of-the-box way to easily do so. But REST assured (pun intended) .NET continuously evolves, and as of ASP .NET MVC 4 there is a built-in way to easily crea...
0
kicks
Getting started with ScriptCS
ScriptCS allows you to use C# as a scripting language. It harnesses the power of Roslyn and NuGet to enable you to write .NET applications with your favorite editor.
0
kicks
.NET String Extensions: Split Qualified
Split a string and take qualified and escaped values into account. For example, split on commas outside of quoted substrings.
0
kicks
Creating Fixed-Width Data Files
Fixed-width data files are an alternative to comma-separated values (CSV) for storing and sharing tabular data. The information in a fixed-width data set tends to use more storage or bandwidth than CSV but is more readable to humans.
0
kicks
Blacksmith - IronMQ Client Library (Fun with Queues)
I have been on a queueing kick lately, and have been looking for a software as a service provider that offers a queuing system in the cloud. The first obvious choices were: Windows Azure Service Bus and Amazon Simple Queue Service. I would most likely choose Windows Azure, just due to the fact that ...
0
kicks
Manage folders & files in your ASP.NET MVC app with elFinder.Net
Recently I had to evaluate what were my options when it comes to managing folders and files in an ASP.NET MVC project – a file manager somewhat like what a Content Management System does but I needed something way simpler and intuitive and principally of easy integration. Read on to discover the ext...
0
kicks
Implementing a finite-state machine using async/await
The article shows how to utilize async/await feature which comes with .NET 4.5, to easily implement finite-state machine pattern.
0
kicks
10 tips on submitting a conference session proposal
I have been seeing a lot of calls for speakers to submit their abstracts to various conferences lately. This got me wondering what it takes to get a session proposal accepted.
0
kicks
Put the Cloud to Work, pt 1: Create a Background Worker Using Quartz.NET
In this article, you'll learn how to use Quartz.NET to create a robust and easy to manage background worker that sends you an email once a day. We'll cover several topics including:
How to use GitHub for Windows
How to set up a Quartz scheduled job
How to pass parameters to our job
How to use Mailg...