Simple C++ Bean machine program @KTSI
This is a simple Bean machine program done in C++ for KTSI. This is how it works, you drop 100...
Activate SSH on ESXi 4.1 via vSphere Client
Some months ago I wrote a post about how to activate SSH on a ESXi 4.1 via console. But you can also activate SSH with the vSphere Client....
Pagefile size limits on Windows Server 2003
Some moths ago I posted a Blogpost called “Pagefile size bigger than 4095MB on Windows Server 2003“. In this post I wrote about...
Create Cisco VLAN Config with Powershell
Small Script for creating a simple CISCO VLAN config. # Create Cisco VLANs Config # #...
How to use Adium on every Mac OS X Space
Since Mac OS X Leopard I use Spaces a lot. In the System Preferences, Expose & Spaces you can configure Spaces. You can also configure...
Powershell: Create a new Sharepoint 2010 WebApplication and Site collection
Microsoft Sharepoint 2010 is one of the new products which supports Windows Powershell commands. Its really easy to do the most tasks you...
Simple C++ rect2polar program @KTSI
This is another simple C++ program done for KTSI. This one converts rectangular to polar...
Simple C++ dec2bin program @KTSI
This is a very simple dec2bin program done for KTSI. #include #include #include using namespace std; string dec2bin (int...
Simple C++ Takeway Game @KTSI
This is a simple C++ Takeway Game done for KTSI. #include using namespace std; int main (int argc, char * const...
Simple C++ lottery program @KTSI
Here is a simple C++ lottery program done for the KTSI. #include <iostream> #include...