#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>

#if 0
	Karl Amrhein
	Unix Systems Engineer
	Scientific Computing Services
	SLAC National Accelerator Laboratory

	OpenStack
	Chef
	Docker
	LXC
	systemd-nspawn
	KVM
	Unix Systems Programming
	Linux namespaces
	sVirt
	Open vSwitch
	mininet
#endif

int main (int argc, char **argv)
{

	/*  confluence blog -- webinars and technical documentation  */
	printf("confluence blog\n"); 

	/*  my bitbucket repositories*/
	printf("bitbucket\n"); 

	/*  my github repositories*/
	printf("github\n"); 
	printf("github ghpages\n"); 

	/*  my cloud9 development environment  */
	printf("cloud9\n"); 

	/*  my openshift development environment  */
	printf("openshift\n"); 

	/*  my blogger page*/
	printf("karlamrhein.blogspot.com\n"); 

	/*  my google docs web page published/updated every 5 minutes  */
	printf("google doc\n"); 

	/*  amazon web services management console*/
	printf("aws\n"); 

	/*  my domainname*/
	/*  wisdom stored in txt RR*/
	printf("http://karlamrhein.com\n"); 


	/*  a large prime number  */
	printf("prime.txt\n"); 

	/*  child core dump */
	if(fork() == 0) 
	  abort();

	sleep(10); 
	exit(0);
}