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.
Stumped by a Problem? Try Coding Less
Running into challenging situations or problems is a fact of life in software development. From complex coding constructs to tricky phantom bugs, programmers spend many hours traversing their own minds in search of the right answer. Unfortunately, this brain spelunking doesn't always yield consisten
(The Code Project Open License (CPOL))
General Reading »
Uncategorised Technical Blogs »
General
|
Zac Gery
|
Updated: 8 May 2014
Rating:
(No votes for this Article)
|
|
2.
F#25 : Active Patterns
Ok so we just wrapped up the final dedicated chunk of the main F# areas, where we looked at OO Programming in F#. These last couple of articles will be miscellaneous ones that I could no really find a home for. This one in particular will be on Active Patterns. Active pattern allow you to […]
(The Code Project Open License (CPOL))
General Reading »
Uncategorised Technical Blogs »
General
|
Sacha Barber
|
Updated: 7 May 2014
Rating:
(No votes for this Article)
|
|
3.
AngularJS Promises - The Definitive Guide
Promises are a core feature of AngularJS - whether you understand them or not, if you use AngularJS you've almost certainly been using them for a while.In this post I'm going to explain what promises are, how they work, where they're used and finally how to use them effectively.Once we've got the co
(The Code Project Open License (CPOL))
General Reading »
Uncategorised Technical Blogs »
General
|
Dave Kerr
|
Updated: 7 May 2014
Rating:
(No votes for this Article)
|
|
4.
How to Convert a Date Time to “X minutes ago” in C#
How to Convert a Date Time to “X minutes ago” in C#
(The Code Project Open License (CPOL))
General Programming »
Date and Time »
Algorithms
|
Nitesh Luharuka
|
Updated: 7 May 2014
Rating: 5.00/5
(4 votes)
|
|
5.
New Features in WCF 4.5 - Part 6
New features in WCF 4.5
(The Code Project Open License (CPOL))
Platforms, Frameworks & Libraries »
Windows Communication Foundation »
Security
|
Imran Abdul Ghani
|
Updated: 7 May 2014
Rating:
(No votes for this Article)
|
|
6.
Losing Precision After Multiplication in SQL Server
Losing precision after multiplication in SQL Server
(The Code Project Open License (CPOL))
Enterprise Systems »
Microsoft BizTalk Server »
General
|
Karthik Chintala
|
Updated: 7 May 2014
Rating:
(No votes for this Article)
|
|
7.
F#24 : Reflection
This time we will wrap up the OO leg of our F# journey, by looking into using reflection. Before we start, I just want to point out that some of the examples that I will use here are either modified versions of some examples, or are actual examples by the fabulous Chris Sells, from his […]
(The Code Project Open License (CPOL))
Languages »
Other .NET Languages »
F#
|
Sacha Barber
|
Updated: 7 May 2014
Rating: 3.00/5
(2 votes)
|
|
8.
test5
open System open System.IO open System open System.Linq open System.Collections.Generic open ConsoleApplication1.CustomTypes open System.IO open Microsoft.FSharp.Reflection open System.Reflection type ContactCard = { Name : string; Phone : string; } /// Represents the suit of
(The Code Project Open License (CPOL))
General Reading »
Uncategorised Technical Blogs »
General
|
Sacha Barber
|
Updated: 6 May 2014
Rating:
(No votes for this Article)
|
|
9.
TEst3
1: open System 2: open System.IO 3: open System 4: open System.Linq 5: open System.Collections.Generic 6: open ConsoleApplication1.CustomTypes 7: open System.IO 8: 9: open Microsoft.FSharp.Reflection 10: open System.Reflection 11: 12: type ContactCard = 13: { Name : string; 14: Phone : string; }
(The Code Project Open License (CPOL))
General Reading »
Uncategorised Technical Blogs »
General
|
Sacha Barber
|
Updated: 6 May 2014
Rating:
(No votes for this Article)
|
|
10.
test4
open System open System.IO open System open System.Linq open System.Collections.Generic open ConsoleApplication1.CustomTypes open System.IO open Microsoft.FSharp.Reflection open System.Reflection type ContactCard = { Name : string; Phone : string; } /// Represents the suit of a playing card ty
(The Code Project Open License (CPOL))
General Reading »
Uncategorised Technical Blogs »
General
|
Sacha Barber
|
Updated: 6 May 2014
Rating:
(No votes for this Article)
|
|
11.
How To Implement Back To Top Feature in Html/Asp.Net/PhP
Friends, In many websites having long contents we have seen a “Back To Top” or “Scroll To Top” button when clicked takes you to the top of the webpage. We see this kind of feature normally on the product listing pages of e-commerce websites. Today in this post we will impleme
(The Code Project Open License (CPOL))
Web Development »
HTML / CSS »
HTML
|
Nitesh Luharuka
|
Updated: 6 May 2014
Rating: 4.71/5
(3 votes)
|
|
12.
Understanding Kinect Coordinate Mapping
This is another post I publish after getting some good feedback from my blog subscribers. Seems that a lot of people have a problem in common when creating Kinect projects: how they can properly project data on top of the color and depth streams. As you probably know, Kinect integrates a few sensors
(The Code Project Open License (CPOL))
General Programming »
Game Development »
General
|
Vangos Pterneas
|
Updated: 6 May 2014
Rating: 4.67/5
(2 votes)
|
|
13.
Introduction: How to Save Data in your Android Application
How to save data in your Android application
(The Code Project Open License (CPOL))
Mobile Development »
Android »
General
|
Cindy Potvin
|
Updated: 6 May 2014
Rating: 5.00/5
(2 votes)
|
|
14.
Getting Unit Testing to fail
How to avoid the benefits of unit testing and continue to code as a decade ago ! I don’t consider myself as a software craftsman, nor a good programmer but there are a number of good practices that I try…Read more ›
(The Code Project Open License (CPOL))
Development Lifecycle »
Testing and QA »
UI Testing
|
Betclic Tech
|
Updated: 6 May 2014
Rating: 5.00/5
(3 votes)
|
|
15.
Better Specifications
Specifications are absolutely key to the success of a project.I'm not going to talk about how different teams do specs, what works and what doesn't work. I'm going to make the statement that the better that specifications are handled, understood and controlled, the better for everyone - PMs, devs, Q
(The Code Project Open License (CPOL))
General Reading »
Uncategorised Technical Blogs »
General
|
Dave Kerr
|
Updated: 5 May 2014
Rating: 4.60/5
(3 votes)
|
|
16.
PostSharpin’ Part 2 – Actor
In Part 1 I looked at PostSharp’s support for INotifyPropertyChanged, and several handy aspects to help with threading: Background, Dispatch, ThreadUnsafe and ReaderWriterSynchronized. In part 2 I’d planned to look at PostSharp’s Actor support and new features for undo/redo, but li
(The Code Project Open License (CPOL))
Languages »
Other .NET Languages »
General
|
A Round Tuit
|
Updated: 5 May 2014
Rating:
(No votes for this Article)
|
|
17.
Top 10 ASP.NET Web API Interview Questions
In this ASP.NET Interview Questions Series, so far we have covered questions related to the core of ASP.NET technology. In this part-6 of ASP.NET Tutorial series, we will cover top 10 interview questions related to ASP.NET Web API framework.What we have covered so far can be summarized as follows:Pa
(The Code Project Open License (CPOL))
Web Development »
ASP.NET Controls »
General
|
Imran Abdul Ghani
|
Updated: 5 May 2014
Rating: 5.00/5
(1 vote)
|
|
18.
Add User Profiles in SharePoint 2013 using PowerShell Script
Setting up a SharePoint 2013 development environment is essentially a lengthy process. Apart from installation and configuring SharePoint 2013, you need to install SQL Server, Visual Studio etc. to get you started before developing your first SharePoint 2013 App....The post Add User Profiles in Shar
(The Code Project Open License (CPOL))
|
Manas Bhardwaj
|
Updated: 5 May 2014
Rating: 5.00/5
(2 votes)
|
|
19.
How To Convert Date Time to “X minutes ago” in jQuery
Friends, Today I found a nice plugin with the help of which you can convert any date time on your HTML page to something similar to Gmail/Facebook updates – “5 minutes ago” or “a day ago”. The best part of this plugin is it auto updates the minutes as you’re on th
(The Code Project Open License (CPOL))
Web Development »
Client side scripting »
JavaScript
|
Nitesh Luharuka
|
Updated: 5 May 2014
Rating: 5.00/5
(6 votes)
|
|
20.
Tutorial for Building SPA using AngularJS
Recently I’ve been working on and evaluating different JavaScript frameworks for the next big project I’ll be involved in, we want to build Single Page Application (SPA) while depending on a solid JavaScript framework, so I decided to get my hands dirty and try to build a demo application usin
(The Code Project Open License (CPOL))
Web Development »
Client side scripting »
Beginners
|
Taiseer Joudeh
|
Updated: 5 May 2014
Rating: 5.00/5
(7 votes)
|