NT 3.50 Build 782 (RC2) source code has been leaked.

The source code for the NT 3.50 Build 782 (RC2) source code has been leaked. This is a complete archive of source code for the operating system, a very old version of Windows NT. Here is some sample source code from the CMD utility, this is CMD.C. \PRIVATE\WINDOWS\CMD\CMD.C1 2 3…

Read More

Very evil and cool Arma 3 script snippets.

Spawn a bomb wherever the player clicks on the map. onMapSingleClick "’Bomb_03_F’ createVehicle _pos,TRUE";onMapSingleClick "’Bomb_03_F’ createVehicle _pos,TRUE"; Attach a KAB-250 bomb to every bullet you fire, this also gives you unlimited ammo. Very destructive script for any malicious Arma 3 player. player addEventHandler ["Fired", { ("Bomb_03_F" createVehicle [0,0,1e9]) attachTo [_this…

Read More

Some very interesting programming code snippets.

This perl script is an old piece of code that will create a Windows version text string. I am sure someone might find this useful. #!/usr/bin/perl   use warnings;   @t = localtime(time());   $yr = ($t[5] + 1900) -1; $sr = int(( $t [4]/4) + 1); $v = int("$t[7]$t[2]$t[1]$t[0]"*((rand(rand(10)…

Read More