I’ve been playing around with POSIX Shared Memory and I decided that I should write a bit on the different options when it comes to shared memory. So this is going to be a bit of a comparison between shared memory with POSIX Threads, POSIX Shared Memory objects but also a random collection of facts.
Also I guess I should begin stating my main source of information: The Linux Programming Interface by Michael Kerrisk.
I was approached by Packt Publishing to checkout a new book they published called Learning Game AI Programming with Lua by David Young. They gave me a copy of the ebook and I agreed on taking a look.
I should say that when I read the title I though it will be a book about Game AI in the sense of finding your way in a maze, and stuff like that.
When I googled on how to perform the AES CMAC calculation using OpenSSL/libcrypto I couldn’t find any code example. I was no even sure that there was support for it of libcrypto so I downloaded the OpenSSL sources and dig into them until I found [crypto/cmac/cmac.c](/cmac/cmac.c]( https://github.com/openssl/openssl/blob/master/crypto/cmac/cmac.c). From there it was obvious that there is support for CMAC and that it follow the *{Init,Update,Final} pattern found in EVP api. So I give it I try and I’m sharing the basic source code here for later reference:
I’ve been playing lately with virtualization technology and was struggling to understand how the hypervisors like QEMU/KVM , LXC and Docker related. So once I figured it out I decided I should write it down.
Anybody that have to work with lab at work knows the pain of connecting to them. Usually labs don’t have direct connectivity to the “regular” network and to connect to them involves a series of jumps though different machines. Just SSH connectivity is painful in those scenarios let alone port forwarding. Fortunately you can setup your ~/.ssh/config
in such a way that will automate most of it, if not all.
So you tried rvm install 1.9.3
and that fails with a cryptic ANSI C-conforming const and volatile are mandatory
… Well, here is how I solved it:
Continuing the post about
lua integration with C++. Now to more serious stuff. Let’s try to write a wrapper for a std::list<int>
. Imagine that you have a std::list<int>
in your C++ that you want to share with the Lua enviroment. So both C++ and Lua can access the list.
EDIT:
Part 2
Long time without posting, busy at work, family, etc.
Today I decided to write a bit on
Lua and how to integrate it with C++.
EDIT This post is obsolete. It has been superseeded by
this newer post
OBSOLETE
OBSOLETE
OBSOLETE
I was surprised when I searched in Google for ways of running a custom TestRunner in a Rake::TestTask
and I couldn’t find anything directly.
So after figuring out myself how it’s done I decided to share it here: