Articles submitted by members via their Technical Blog feed. Want to have the blog entries from
your Technical Blog automatically posted as articles on CodeProject? It's
easy!
1.
ASP.NET MVC 5 Identity: Extending and Modifying Roles
In a recent article I took a rather long look at extending the ASP.NET 5 Identity model, adding some custom properties to the basic IdentityUser class, and also some basic role-based identity management. We did not discuss modifying, extending, or working directly with Roles, beyond seeding the d
(The Code Project Open License (CPOL))
Languages »
Other .NET Languages »
Forth .NET
|
John Atten
|
Updated: 13 Feb 2014
Rating:
(No votes for this Article)
|
|
2.
When MVC5, SignalR and NuGet Just Won’t Get Along
Sometimes things just blow up. If you have recently attempted to create a new ASP.NET MVC5 project (or any new Web Project within Visual Studio 2013) and decided that you wanted some of that sweet SignalR magic in your application, then you may have encountered the following error : An exception of
(The Code Project Open License (CPOL))
General Reading »
Uncategorised Technical Blogs »
General
|
Rion Williams
|
Updated: 13 Feb 2014
Rating:
(No votes for this Article)
|
|
3.
The Purpose of a Unit Test
I would like to clarify the purpose and intention of a unit test for every role even tangentially related to the development of software. I have observed a steady upward trend, over the last 15 years, for the importance and value of automating the software validation process. I think this is fantast
(The Code Project Open License (CPOL))
General Reading »
Uncategorised Technical Blogs »
General
|
Paul Watt
|
Updated: 13 Feb 2014
Rating:
(No votes for this Article)
|
|
4.
70-513 WCF Certification Exam
Here I have tried to create a collection of Notes which helped me pass my WCF certification exam with good marks. Hope it helps you guys as well. Happy Certification :) Creating Services (20%) Create service and operation contracts.This objective may include but is not limited to: one-way, duplex,
(The Code Project Open License (CPOL))
Platforms, Frameworks & Libraries »
Windows Communication Foundation »
General
|
Adarsh Kumar Chaurasia
|
Updated: 13 Feb 2014
Rating:
(No votes for this Article)
|
|
5.
How to implement custom role based authorization for my WCF service operations
You can use custom attributes to implement it. Create a new custom attribute as below: CustomMembershipAuthorization.cs public class CustomMembershipAuthorization : Attribute, IOperationBehavior, IParameterInspector { public string AllowedRole { get; set; } public CustomMembe
(The Code Project Open License (CPOL))
Web Development »
Custom Controls »
General
|
Adarsh Kumar Chaurasia
|
Updated: 13 Feb 2014
Rating:
(No votes for this Article)
|
|
6.
Decorators in Python
Today I’ll turn you into a decorator. Let’s build a house and decorated it.First things first… the house. In my world it’s very simple to build a house, just call the function build_house().After the “construction”, in order to live there, we need to turn it cozier. For this effect we can call a dec
(The Code Project Open License (CPOL))
General Reading »
Uncategorised Technical Blogs »
General
|
Member 10549383
|
Updated: 13 Feb 2014
Rating:
(No votes for this Article)
|
|
7.
Help Yourself in Debugging (Part-3) StackTrace and Caller Information attribute
Help yourself in Debugging by using Call Stack and Immediate Window Help Yourself in Debugging (Part-2) using Breakpoint/Tracepoint This post is about two feature in C# Caller Information Attribute and StackTrac class , which are helpful to get information at
(The Code Project Open License (CPOL))
Development Lifecycle »
Testing and QA »
General
|
Pranay Rana
|
Updated: 13 Feb 2014
Rating:
(No votes for this Article)
|
|
8.
Smaller, Faster, with Windows programming
With mobile computing taking hold, programmers are looking for ways to produce smaller and faster applications. Soon with the so called “Internet of Things” concept bringing possibly even smaller mobile devices into all areas of life, the need for smaller and faster software capable of r
(The Code Project Open License (CPOL))
|
Chris Boss
|
Updated: 12 Feb 2014
Rating: 5.00/5
(1 vote)
|
|
9.
Unity Multiplayer Games – A Review
It seems the strength of Unity holds no bounds of late going from strength to strength, yet for all the books and tutorials I’ve seen to date, none have gone beyond the editor itself, so it’s nice to see a title address a key factor in modern games, networking. Unity …
(The Code Project Open License (CPOL))
General Reading »
Book Reviews »
General
|
Simon Jackson
|
Updated: 12 Feb 2014
Rating:
(No votes for this Article)
|
|
10.
.NET Code Dependency Graph Visualization using Force Field Simulation
Dependency graph is great visual way to examine code and understand the code base without having to look through it. There are number of powerful tools like Visual Studio Ultimate […]
(The Code Project Open License (CPOL))
Development Lifecycle »
Code Generation »
General
|
George Mamaladze
|
Updated: 11 Feb 2014
Rating: 4.50/5
(3 votes)
|
|
11.
ASP.NET CheckBoxList Client Side Validation using JavaScript
In this Blog, we will explore a Trick to validate whether any CheckBox inside one CheckBoxList is checked or not.
(The Code Project Open License (CPOL))
Web Development »
ASP.NET »
Howto
|
Tadit Dash
|
Updated: 11 Feb 2014
Rating: 5.00/5
(4 votes)
|
|
12.
Directory Size Utility - Version 2
This is the second version of my previous directory size utility. If you haven't seen it, you can take a look here. Although it is the second version, it uses an older version of the .NET Framework - version 2.0. It improves on the first ve
(The Code Project Open License (CPOL))
|
Indivara
|
Updated: 11 Feb 2014
Rating:
(No votes for this Article)
|
|
13.
Arduino: How to wire a relay
Here's my quick tutorial on how to hook up a relay to an Arduino; specifically a electromagnet switch relay from Omron, the G5SB-14.You can use the relay that's referred to with AC voltage, i.e. to turn on and off mains-powered applications such as lamps and such, BUT DO THIS ONLY ONLY ONLY if you'r
(The Code Project Open License (CPOL))
General Reading »
Hardware & System »
General
|
harleydk
|
Updated: 11 Feb 2014
Rating:
(No votes for this Article)
|
|
14.
Advanced Debugging Techniques in JavaScript – Part 2
Introduction Writing Part 2 of this series has been really exciting. I’ve gotten a lot of positive feedback from people who’ve read Part 1. This post will be more hands-on than the previous, so be ready for screenshots and real case scenarios I’ve come across while working with Jav
(The Code Project Open License (CPOL))
Development Lifecycle »
Testing and QA »
General
|
Keyhole Software
|
Updated: 11 Feb 2014
Rating:
(No votes for this Article)
|
|
15.
Simple jquery stacked bar chart
One way of doing an easy and simple stacked bar chart is to style a DIV to a desired length, then have its left-border represent the second data range. If you need more ranges you can always stack several DIVs on top of each other.Here's example HTML for the graph itself...:How are we doing? Exchang
(The Code Project Open License (CPOL))
Desktop Development »
Status Bar »
General
|
harleydk
|
Updated: 11 Feb 2014
Rating:
(No votes for this Article)
|
|
16.
Mocking Session State in an ASP.NET MVC4 Unit Test using Moq
I recently spent more time than I'd liked to figure out how to mock session state within an ASP.NET MVC test project. So here's the solution to that one, so hopefully you won't spend as much time as I.
(The Code Project Open License (CPOL))
Web Development »
Session State »
Sessions and Session State
|
harleydk
|
Updated: 11 Feb 2014
Rating:
(No votes for this Article)
|
|
17.
JavaScript "static" class - make JavaScript code more readable
I usually use static classes for my C# helper-functions, when there're no properties to expose, nor any need to inherit from them. So this increases code readability. Javascript, however, doesn't have that feature, so how to immitate it?
(The Code Project Open License (CPOL))
Web Development »
Client side scripting »
JavaScript
|
harleydk
|
Updated: 11 Feb 2014
Rating: 1.00/5
(1 vote)
|
|
18.
How Developers Gain Perspective: The Forgotten Approach
How Developers Gain Perspective: The Forgotten Approach
(The Code Project Open License (CPOL))
General Reading »
Uncategorised Technical Blogs »
General
|
Zac Gery
|
Updated: 11 Feb 2014
Rating:
(No votes for this Article)
|
|
19.
Five tips on how to prepare for an IT job interview. Some general, some practical.
Having just dealt with a number of job interviews, from the job-seeker's point of view, I can testify with some certainty as to how to prepare for one such interview. I made use of myself, will prove helpful to you, too.
(The Code Project Open License (CPOL))
Development Lifecycle »
Work Issues »
Recruiting and Job hunting
|
harleydk
|
Updated: 11 Feb 2014
Rating: 5.00/5
(1 vote)
|
|
20.
Prevent browser caching of css and javascript files
A modern browser will attempt to cache content as best it can, to make for a better end-user experience. This works well, but we may run into issues when we deploy a set of different files to the server, yet the client browser insists on serving up the old ones out of its cache.So here's a tip on ho
(The Code Project Open License (CPOL))
Desktop Development »
Files and Folders »
Configuration Files
|
harleydk
|
Updated: 11 Feb 2014
Rating: 4.00/5
(2 votes)
|