Click here to Skip to main content
Blog Articles | Add your Blog | FAQ

Technical Blogs


RSS feed icon

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!

Page 1 of 520
1 2 3 4 5 6 7 8 9 10


1. What’s New in SharePoint 2013 for End User
In one of my previous post on SharePoint Interview Questions for Dummies, we talked about New features of SharePoint 2013 at high level for all type of users including End User, Administrators and Developers. In this post, we will try to explore End User specific new and exciting features in SharePo
(The Code Project Open License (CPOL))
Web Development » User Controls » General
Imran Abdul Ghani Updated: 27 Aug 2014
Rating: (No votes for this Article)
2. ZeroMQ #4 : Multiple Sockets Polling
Multiple sockets polling
(The Code Project Open License (CPOL))
General Reading » Uncategorised Technical Blogs » General
Sacha Barber Updated: 27 Aug 2014
Rating: (No votes for this Article)
3. Java Script Facts for great JS coding 1
Introduction Java script is an interesting and popular programming language. Its syntax is easy, features are cool and its role is becoming more and more important every day in web development. Usually it is easy to get started with JavaScript because a lot of resources and community help is availab
(The Code Project Open License (CPOL))
Languages » Java » Beginners
YawerIqbal Updated: 26 Aug 2014
Rating: (No votes for this Article)
4. Capturing unhandled exceptions in a mixed native/CLR environment
Observing Unhandled Exceptions In .NET unhandled exceptions can be observed via AppDomain.UnhandledException event: AppDomain.CurrentDomain.UnhandledException += myHandler; // C# In Win32 unhandled exceptions are observed via SetUnhandledExceptionFilter call: SetUnhandledExceptionFilter(myfilter); /
(The Apache License, Version 2.0)
Third Party Products » Reviews on Third Party Products and Tools » General
Ivan Krivyakov Updated: 26 Aug 2014
Rating: (No votes for this Article)
5. Loading indicator for content controls
With C# 5 (.NET 4.5) it became a lot easier to create asynchronous methods. There’s also a great MSDN article on how to leverage this using MVVM so that you can have properties update the view when they’ve finished loading. What I wanted was a simple control that would indicate to the us
(The Code Project Open License (CPOL))
Desktop Development » Grid & Data Controls » Grid controls
Samuel Cragg Updated: 26 Aug 2014
Rating: (No votes for this Article)
6. Monitoring long operation progress via SignalR
codeproject There are many cases when you want to start a long operation and watch its progress. In my Chpokk project (a C# and VB.Net IDE), you can see it when you create a project (primarily when adding NuGet packages, which can be long), compiling, executing, and automated testing. The proble
(The Code Project Open License (CPOL))
Desktop Development » Progress Controls » General
Artem Smirnov Updated: 26 Aug 2014
Rating: (No votes for this Article)
7. JAXB – A Newcomer’s Perspective, Part 2
In Part 1 of this series, I discussed the basics of loading data from an XML file into a database using JAXB and JPA. (If JSON is called for instead of XML, then the same idea should translate to a tool like Jackson.) The approach is to use shared domain objects – i.e. a single […]
(The Code Project Open License (CPOL))
General Reading » Uncategorised Technical Blogs » General
Keyhole Software Updated: 26 Aug 2014
Rating: 5.00/5 (1 vote)
8. ZeroMq # 1: Hello World
What Is ZeroMQ ZeroMq is a C library that contains a bunch of insane sockets, that provide a very very cool abstraction over the typical socket code you would find yourself writing. It provides building blocks by way of a standard set of sockets that have been built with certain scenarios in mind. T
(The Code Project Open License (CPOL))
General Programming » Internet / Network » General
Sacha Barber Updated: 26 Aug 2014
Rating: 4.83/5 (4 votes)
9. ZeroMq #3 : Socket Options/Identity And SendMore
Last time we looked at the different socket types within ZeroMq, and I also told you their equivalent in NetMq (which is what I use for these posts). This time we will look at 3 small areas of ZeroMq, which are none the less very important areas, and should not be overlooked. These areas are […
(The Code Project Open License (CPOL))
General Programming » Internet / Network » Client/Server Development
Sacha Barber Updated: 26 Aug 2014
Rating: (No votes for this Article)
10. ASP.Net Web Services – How to overload a web method?
CodeProject In the last blog post, we have discussed about different attribute properties of a WebMethod. In this article we will go over WebMethod overloading in ASP.Net Web Services. This is continuation of the previous article. So please go through that before proceeding this article to get a cle
(The Code Project Open License (CPOL))
Web Development » Web Services » ATL Web Services
Arun Ramachandran India Updated: 24 Aug 2014
Rating: 5.00/5 (3 votes)
11. Row_Number() function for providing sequence number as per your wish TIP #35
  Sometimes we require sequence column or we can a row number column so we have ROW_NUMBER() function in SQL SERVER. Lets understand this by following example In this example we have  person table which have firstname, last name, middlename  columns. Now we want to fetch records  with a extra column
(The Code Project Open License (CPOL))
General Reading » Uncategorised Technical Blogs » General
Rajat-Indiandotnet Updated: 24 Aug 2014
Rating: (No votes for this Article)
12. FTPoverEmail Alpha
Overview Ever find yourself on a computer where you only have access to e-mail? That’s where FTPoverEmail shines. I frequently find myself in situations where I only have access to e-mail, but I still want to interact with my home server in an FTP-like fashion. You may be in a hotel business c
(The GNU General Public License (GPLv3))
General Reading » Uncategorised Technical Blogs » General
Grant Curell Updated: 24 Aug 2014
Rating: (No votes for this Article)
13. Setting the Standard and Practice Makes Perfect
Hello all, and I'm back again with another update, and honestly, this is a pretty timely topic for me.  We've all heard the term Coding Standards, and at many firms I've deal with they tend to be just some document sitting in a directory on the intranet collecting virtual dust.  But I want to discus
(The Code Project Open License (CPOL))
Third Party Products » Reviews on Third Party Products and Tools » General
Kevin Mack Updated: 24 Aug 2014
Rating: (No votes for this Article)
14. .NET just keeps getting more annoying
It seems like the little design flaws of .NET get on my nerves more and more every week.Today I realized that I wanted to do a binary search. No problem--I put a binary search method in Loyc.Essentials; four independent implementations, in fact, one for IList, one for T[], and two for more obscure s
(The GNU Lesser General Public License (LGPLv3))
Languages » Other .NET Languages » General
Qwertie Updated: 23 Aug 2014
Rating: 3.89/5 (4 votes)
15. Dart ray tracer benchmark (compared to C#)
As an exercise in Dart programming, this morning I've ported this Raytracer demo from C# to Dart.You can get it from Github.Two years ago, I've used the same raytracer program to compare the performances of two C#-to-JavaScript compilers, JSIL and Saltarelle (see my blogpost).Now I use the same prog
(The Code Project Open License (CPOL))
General Reading » Uncategorised Technical Blogs » General
Antonino Porcino Updated: 22 Aug 2014
Rating: (No votes for this Article)
16. Windows Phone 8, Family Safety, and your kids
Amazon recently had a sale on the Lumia 520 “GoPhone” from AT&T.; It was down to only $40 out the door, and I also had $10 in Amazon gift card credit in my account. So why not. Free shipping, to my door, and I have a new test device for my Windows Phone app development. […]CodeProject-->
(The Code Project Open License (CPOL))
Mobile Development » Windows Phone 7/8 » Windows CE
BC3Tech Updated: 22 Aug 2014
Rating: (No votes for this Article)
17. Run Grunt task in Visual Studio Release Build with a bat file
Originally posted on: http://geekswithblogs.net/Aligned/archive/2014/08/19/run-grunt-task-in-visual-studio-release-build-with-a.aspx1. Add a BeforeBuild in your csproj file. Edit the xml with a text editor.  2. Create the script-optimize.batREM "%~dp0" maps to the directory where this file ex
(The Code Project Open License (CPOL))
General Reading » Uncategorised Technical Blogs » General
Aligned Updated: 21 Aug 2014
Rating: (No votes for this Article)
18. Mock the window.setTimeout in a Jasmine test to avoid waiting
Originally posted on: http://geekswithblogs.net/Aligned/archive/2014/08/21/mock-the-window.settimeout-in-a-jasmine-test-to-avoid-waiting.aspxJasmine has a clock mocking feature, but I was unable to make it work in a function that I’m calling and want to test. The example only shows using clock for a
(The Code Project Open License (CPOL))
General Reading » Uncategorised Technical Blogs » General
Aligned Updated: 21 Aug 2014
Rating: (No votes for this Article)
19. ZeroMq #2 : The Socket Types
Last time we introduced ZeroMq and also talked about the fact that there was a native C# port by way of the NetMq library, which as I  said we will be using from here on out. I also mentioned that the power of ZeroMq comes from a bunch of pre-canned sockets, which you can use […]
(The Code Project Open License (CPOL))
General Reading » Uncategorised Technical Blogs » General
Sacha Barber Updated: 21 Aug 2014
Rating: (No votes for this Article)
20. Creating an Azure Cloud Service
CodeProjectAzure is Microsoft’s application platform for the cloud. We can use Azure to build web applications, store data in Azure data centers, create virtual machines for development and test or to run massively scalable applications with lots and lots of users. You … Continue reading
(The Code Project Open License (CPOL))
Cloud Computing » Azure » Windows Azure Developer Contest
Bibhu Dutta Updated: 21 Aug 2014
Rating: (No votes for this Article)

Page 1 of 520
1 2 3 4 5 6 7 8 9 10


Advertise | Privacy | Mobile
Web03 | 2.8.140827.1 | Last Updated 28 Aug 2014
Copyright © CodeProject, 1999-2014
All Rights Reserved. Terms of Service
Layout: fixed | fluid