A number of Windows-based Boost libraries are not “header-only” and require that you must get them compiled. One way is to compile them yourself. A possibly easier way is to do this via the prebuilt installer packages from BoostPro.
Say for example you wish to use the Boost serialize facilities in your program:
Continue reading
Category Archives: Installers
How to Create an Installer with Microsoft Visual Studio
Introduction
Visual Studio 2010 contains a package that enables you to create Windows installer files for your applications. Follow these simple steps to build your own setup package for the Visual Studio application you are working on.
Continue reading
Getting Started with the NSIS Install System
Download and install the NSIS (Nullsoft Scriptable Install System) package
From here.
Converting IEEE 754 Floating Point into Binary
This post explains how to convert floating point numbers to binary numbers in the IEEE 754 format. A good link on the subject of IEEE 754 conversion exists at Thomas Finleys website. For this post I will stick with the IEEE 754 single precision binary floating-point format: binary32. See this other posting for C++, Java and Python implementations for converting between the binary and decimal formats.
Continue reading
How To Re-Direct Old URLs to New URLs
When transferring your old website to a new one, you will probably want to re-direct your visitors so that links pointing to outdated URLs are sent to the correct new ones. Continue reading
