Copying a project file to a known location

Within a Visual Studio C++ solution, you can copy a file to a known location as part of the build process. To do that, you have so set the “Custom Build Step” parameters found in the Visual Studio project’s property page: Command line: copy “$(InputPath)” “$(TargetDir)” > nul Description: Copying $(InputFileName) Outputs: $(TargetDir)$(InputFileName) Note, the … Read more

Extending a partition in FreeBSD

This is something that is really easy to do in Important: FreeBSD features the growfs(8) command, which makes it possible to increase the size of file system on the fly, removing this limitation. Reference http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/disk-organization.html