NancyFX - Revisiting Content Negotiation & APIs (Part 3)
In this last part I want to show you creating your own media type, so far we have gone over a really basic example of returning a... more »
Tweet 0 Comments Save Tags: c-and-cpp , web services
Bezier Curves Part 1 [Linear Algebra Series]
Starting off, what is a Bezier Curve? It is a curve defined by 2 or more control points which determine how the curve looks. The first... more »
Tweet 0 Comments Save Tags: c-and-cpp , flash-flex , how-to , methodology
ZeroMQ in Grizzly
From the OpenStack summit comes a lightning talk presentation on an implementation within the OpenStack IaaS software using the ZeroMQ... more »
Tweet 0 Comments Save Tags: c-and-cpp , open source , reviews , tools
Serializing in C++ leveraging template metaprogramming
An approach to object serialization using C++ typing information. When the type of an object is known both at sender and receiver side... more »
Tweet 0 Comments Save Tags: c-and-cpp , methodology , research
Objective-C Literals
Three new features were introduced into clang at the same time: NSNumber Literals provide a syntax for creating NSNumber from scalar... more »
Tweet 0 Comments Save Tags: apple , c-and-cpp , mobile , reviews
Curried Functions in C
A curried function is a function which takes only one parameter and returns a function defined according to that parameter. This is a... more »
Tweet 0 Comments Save Tags: c-and-cpp
Common Logical Questions Asked in a Technical Interview
Well, if you are going for a technical interview in any programming language, in any stream, irrespective of your expertise and... more »
Tweet 0 Comments Save Tags: c-and-cpp , humor , methodology , opinion
Binding C++ with Lua, Squirrel, Game Monkey and Ocaml
This isn’t anything new I did recently but I thought it’s worth putting up on my blog anyway. I was once interested how easy it is to... more »
Tweet 0 Comments Save Tags: c-and-cpp , frameworks , other languages
Understand how C stores variables in memory
In embedded designs, memory, especially RAM, is a precious resource. Understanding how C allocates variables in memory is crucial... more »
Tweet 0 Comments Save Tags: c-and-cpp , how-to , methodology , tools
Circumventing C#'s Type Constraint Limitations
It's well known that C# doesn't permit certain types to appear as constraints, like System.Enum or System.Delegate, and that C# further... more »
Tweet 0 Comments Save Tags: .net , c-and-cpp , how-to , methodology
Unreal Engine in JavaScript/HTML5 – Citadel demo
Mozilla is working on a new way to bring content to the Web and have it run at near native speeds. Using Emscripten to cross-compile C... more »
Tweet 0 Comments Save Tags: c-and-cpp , open source
Difference between generics in C#, Java and C++
Article describing the difference between generics in C#, generics in Java and templates in C++.
Tweet 0 Comments Save Tags: .net , c-and-cpp , java
Roundup of accepted C++2014 language & library additions
A number of changes have just been accepted into the draft 2014 C++ standard update; this article gives an overview of the changes and their benefits.
Tweet 0 Comments Save Tags: c-and-cpp
A Fast, Type-safe & Minimal String Formatting Library, miniformat
he inspiration for this came from tinyformat. Unfortunately it relies on the C++ iostream, basically std::cout, which is somewhat slow... more »
Tweet 0 Comments Save Tags: c-and-cpp
Why C++ Is Not “Back”
Now don’t get me wrong. C++11 is fantastic! I am in just about 100% agreement with all of the changes that have been made. There is one... more »
Tweet 4 Comments Save Tags: c-and-cpp
Genetic Algorithm Library
Genetic Algorithm Library is a set of C++ classes that allows easy implementation of basic genetic algorithms. It contains many... more »
Tweet 0 Comments Save Tags: c-and-cpp , frameworks , reviews
Use C++11 Inheritance Control Keywords to Prevent Inconsistencies in Class Hierarchies
For more than 30 years, C++ got along without inheritance control keywords. It wasn’t easy, to say the least. Disabling further... more »
Tweet 0 Comments Save Tags: c-and-cpp
Old Java can learn new tricks from C, Android
Experts say the language should crib app isolation, locality, and automated parallelism from more modern sources
Tweet 0 Comments Save Tags: c-and-cpp , java , opinion
Determining Process Architecture at Runtime
Even though this capability does not exist in WinRT directly, it is possible to determine the processor architecture at runtime through... more »
Tweet 0 Comments Save Tags: c-and-cpp
Linux Group Tests - Part 4
This article includes a large selection of programming books.
Tweet 0 Comments Save Tags: c-and-cpp , java , javascript , php
Stop using strncpy already!
I keep running into code that uses strcpy, sprintf, strncpy, _snprintf (Microsoft only), wcsncpy, swprintf, and morally equivalent... more »
Tweet 1 Comments Save Tags: c-and-cpp , security
Ten C++11 Features Every C++ Developer Should Use
This article discusses a series of features new to C++11 that all developers should learn and use. There are lots of new additions to the... more »
Tweet 1 Comments Save Tags: c-and-cpp
C++/CX : How to Fix the “Precompiled Header File is From a Previous Version of the Compiler” Error
This is just a quick post about this error I sometime have when I change the targeted platform of my C++/Cx project: “precompiled header... more »
Tweet 0 Comments Save Tags: c-and-cpp , how-to , microsoft , tools
Templates in C Language is possible.
Using the facilities available in C, it is possible to have the Templates feature enjoyed by C++, Java & C# programmers. Even if not... more »
Tweet 0 Comments Save Tags: c-and-cpp , java