Always remain updated about current software development trends

Articles having tag: INTERMEDIATE

How to encrypt or decrypt your application's password

Using this code, you can encrypt the plain text and stored into database and again decrypt the password.

How to ensure proper dynamic library boundary crossing for objects using smart pointers' custom deleters

Ensuring that objects allocated in one dynamic library are deleted by the same library has always been a challenge. Solutions prior to the advent of C++11 often make the usage of the library cumbersome. This is a solution using smart pointers' custom deleters.

Enterprise SPA (Single Page Applications)

How do you write cross-platform line-of-business apps without hiring an army of developers to rewrite your code for multiple clients? This sample app shows a solution\u2014in JavaScript.

fastJSON

Smallest, fastest polymorphic JSON serializer (with Silverlight4 and MonoDroid support)

Implementation of Delegates in C++11

This is an alternative for "Member Function Pointers and the Fastest Possible C++ Delegates"

hOOt - full text search engine

Smallest full text search engine (lucene replacement) built from scratch using inverted WAH bitmap index, highly compact storage, operating in database and document modes

C#: Optional arguments and named arguments and a caution while using interfaces with optional arguments

.Net framework 4 came with \xa0new feature of Optional\xa0arguments\xa0and Named parameters. First I will tell in brief what these features are before I go to their use in interface which i want to highlight.In fact it is not .NET 4 but C# 4.0 has come with...