React & Web Development
136.6K views | +0 today
Follow
React & Web Development
Ressources about React, Typescript, and awesome JavaScript libraries that help us every day.   https://www.linkedin.com/in/williamdelmas/
Curated by William delmas
Your new post is loading...
Your new post is loading...
Scooped by William delmas
June 2, 2015 8:52 AM
Scoop.it!

Distributed Caching using Redis Server with .NET/C# Client

Distributed Caching using Redis Server with .NET/C# Client | React & Web Development | Scoop.it

In this article, I would like to describe my experience with installing and configuring Redis server in most compact way. Also, I would like to do a brief overview of usage Redis hashes and lists in .NET/C# client.

In this article:

  • Install Redis server (complete application files set is attached)
  • Protecting the server (configure authentication)
  • Configuring server replication
  • Access cache from C# application
  • Using ASP.NET session state with redis
  • Sample usage of the Redis Sets, Lists and transactions
  • Description of the attached sources (Redis with Funq IoC in MVC project : example)
  • Caching optimization ideas



No comment yet.
Scooped by William delmas
October 4, 2014 8:47 AM
Scoop.it!

Design Patterns Training

In software engineering, a design pattern is a general reusable solution to a commonly occurring problem within a given context in software design 
Patterns are formalized best practices that the programmer must implement in the application.

No comment yet.
Scooped by William delmas
April 21, 2013 2:31 PM
Scoop.it!

Class-free persistence and multiple inheritance in C# with MongoDB

Class-free persistence and multiple inheritance in C# with MongoDB | React & Web Development | Scoop.it

Much as I appreciate Object Relational Mappers and the C# type system there’s a lot of work to do if you just want create and persist a few objects. MongoDB alleviates a lot of that work with its Bson serialization code that converts almost any object into a binary serialized object notation and provides easy round tripping with JSON.

No comment yet.
Scooped by William delmas
March 28, 2013 9:09 AM
Scoop.it!

MongoDB with C#

MongoDB with C# | React & Web Development | Scoop.it

In my previous article, "Getting Started with MongoDB," I provided a brief overview about some of the most important things to consider when making the move from relational databases to the NoSQL world of MongoDB. I provided a sample conversion of a relational database schema to a document-oriented schema, suitable for MongoDB. In this second article in the three-part series, I develop an application that uses a C# driver to interact with a MongoDB database.

No comment yet.
Scooped by William delmas
January 8, 2013 2:03 PM
Scoop.it!

MongoDB Aggregation Framework Examples in C#

William delmas's insight:

MongoDB version 2.2 was released in late August and the biggest change it brought was the addition of theAggregation Framework. Previously the aggregations required the usage of map/reduce, which in MongoDBdoesn’t perform that well, mainly because of the single-threaded Javascript-based execution.  The aggregation framework steps away from the Javascript and is implemented in C++, with an aim to accelerate performance of analytics and reporting up to 80 percent compared to using MapReduce.

 
No comment yet.
Rescooped by William delmas from Web Apps
December 31, 2012 7:33 AM
Scoop.it!

Tutorial: Getting Started with SignalR (C#) : The Official Microsoft ASP.NET Site

Tutorial: Getting Started with SignalR (C#) : The Official Microsoft ASP.NET Site | React & Web Development | Scoop.it

Via Srdjan Strbanovic
No comment yet.
Rescooped by William delmas from AspNet MVC
December 19, 2012 5:24 AM
Scoop.it!

Programming HTML5 Web Sockets in ASP.NET 4.5

Programming HTML5 Web Sockets in ASP.NET 4.5 | React & Web Development | Scoop.it
HTML5 WebSockets allow you to perform two-way (duplex) communication between the client browser and the server. ASP.NET 4.5 and IIS 8 provide support for WebSocket protocol so that you can program WebSockets in your ASP.NET web forms and ASP.NET MVC applications. This article discusses what WebSockets are and how to develop web applications that take advantage of HTML5 WebSockets.
Via Marc Chouteau
No comment yet.
Scooped by William delmas
October 7, 2014 4:27 AM
Scoop.it!

Token Based Authentication using ASP.NET Web API 2, Owin, and Identity

Token Based Authentication using ASP.NET Web API 2, Owin, and Identity | React & Web Development | Scoop.it

So I decided to compile mini tutorial of three five posts which covers and connects those topics. In this tutorial we’ll build SPA using AngularJS for the front-end, and ASP.NET Web API 2, Owin middleware, and ASP.NET Identity for the back-end.

No comment yet.
Scooped by William delmas
May 31, 2013 4:42 AM
Scoop.it!

Toastr & SignalR – A Match Made in Heaven

Toastr & SignalR – A Match Made in Heaven | React & Web Development | Scoop.it

After creating my toastr post, a friend suggested marrying toastr and signalR and I thought that was a brilliant idea so I wired up a quick example. Clicking the ‘broadcast’ button will send a toast message to anybody who has the web page open!

Scooped by William delmas
April 4, 2013 2:35 PM
Scoop.it!

Create CoffeeScript using Visual Studio and the Web Essentials Add-On

Create CoffeeScript using Visual Studio and the Web Essentials Add-On | React & Web Development | Scoop.it

CoffeeScript is a little language that compiles into JavaScript. Underneath all those awkward braces and semicolons, JavaScript has always had a gorgeous object model at its heart. CoffeeScript is...

No comment yet.
Scooped by William delmas
February 1, 2013 5:25 AM
Scoop.it!

Real-Time Chart using HTML5 Push Notification (SSE) and ASP.NET Web API

Real-Time Chart using HTML5 Push Notification (SSE) and ASP.NET Web API | React & Web Development | Scoop.it
Creating a chart to display real-time updates using native HTML5 push notification (Server-Sent event) and ASP.NET Web API.
No comment yet.
Scooped by William delmas
January 2, 2013 1:03 PM
Scoop.it!

Log4Net basics with a Console Application (c#)

Log4Net basics with a Console Application (c#) | React & Web Development | Scoop.it

If you are looking for a great introductory article on Log4Net, I would recommend reading the Log4Net tutorial by Tim Corey.

Tim goes through quite a bit, I just want to cover the very bare minimum for getting log4net to work in a console application.

 
No comment yet.
Scooped by William delmas
December 24, 2012 6:23 AM
Scoop.it!

A MongoDB Tutorial using C# and ASP.NET MVC

A MongoDB Tutorial using C# and ASP.NET MVC | React & Web Development | Scoop.it
In this post I'm going to create a simple ASP.NET MVC website for a simple blog that uses MongoDB and the offical 10gen C# driver. MongoDB is no NOSQL