lev_lafayette's blog

An introduction to strategic management

Strategic management may be defined as:

The process of identifying, choosing and implementing activities that will enhance
the long term performance of an organisation by setting direction, utilising
technology and innovation and by creating ongoing compatibility between the
internal skills, resources and capabilities of an organisation and the changing
external environment within which it operates. (Viljoen & Dann 2003: 5)

Installing and Testing Valgrind on Linux

Valgrind is an instrumentation framework for building dynamic analysis tools. Which is a fancy way of saying that it's a debugging suite that automatically detects many memory management and threading bugs, which is a very good thing. Valgrind can handle dynamically generated code, so long as none of the generated code is later overwritten by other generated code. It can also perform detailed profiling to help speed up your programs. It comes with extensive documentation.

Installing MATLAB DCS/PCT on a Linux Cluster with PBS and TORQUE

MATLAB is a numerical computing environment allowing matrix manipulation, plotting of functions and data, implementation of algorithms, and high-level programming language. Typically it is run on desktop installs, which is quite problematic if one is doing a large computational problem.

Minor Issues in Installing the NCDF Libary Package for R

It seemed a trivial request, and once you've realised a couple of minor issues it is; install the NCDF library, a common scientific data format, for R, the well-known statistics software.

There is a usual way to install a package in R. Simply load the program and run the install.packages function; but this didn't quite work.


R
>chooseCRANmirror()
>install.packages(c("ncdf"))

Forking Mandriva and OpenOffice.org: Poor Management versus Competent Technology

There have been two fairly significant forks in the Linux world in the past few weeks; one is a large number of the developers of Mandriva now concentrating on on that technology under the new title Mageia. As advocates of that this new Linux distribution state: People working on it just do not want to be dependent on the economic fluctuations and erratic, unexplained strategic moves of the company..

Installing CGAL on a 64-bit AMD Opteron Cluster running CentOS 5 Linux

CGAL (Computational Geometry Algorithms Library) provides efficient and reliable geometric algorithms in the form of a C++ library data structures and algorithms for triangulations, Voronoi diagrams, polygons and polyhedra, arrangements of curves and their applications, mesh generation, geometry processing, subdivision and parameterization, as well as estimation of local differential properties, and approximation of ridges and umbilics, alpha shapes, convex hull algorithms, search structures , interpolation, shape analysis, fitting, and distances, and kine

Installing Mono on a 64-bit AMD Opteron Cluster running CentOS 5 Linux

Mono is used to develop an Ecma standard compliant, .NET-compatible set of tools, including a C# compiler and a Common Language Runtime.

To install change to the appropriate directory. Download from Novell. Extract in the sensible place. Change to the extracted directory, check then run the sample config and run make, make install and make check. After this create a module for the environment variables and logout.


cd /usr/local/src/MONO/
wget http://ftp.novell.com/pub/mono/sources/mono/mono-2.8.tar.bz2
tar xvf mono-2.8.tar.bz2
../config
make
make install
make check

Pages