#include <stdio.h>
#include <string.h>
int
main() {
string email[];
string address;
email[0] = "mike";
email[1] = "@";
email[2] = "blamires.co.uk";
address = email[0] + email[1] + email[2];
printf("email: %s\n", address);
printf("more to come as its is developed.\n");
printf("for now though ... ... ...\n");
printf("\n");
printf("Some Javatm Applications, nothing impressive but possibly handy\n");
printf("\n");
printf("This app will identify the codec required to play an avi\n");
printf("get it here: http://www.blamires.co.uk/bin/CodecFinder.jar\n");
printf("This other app will show & upload to the web pics from your webcam,\n");
printf("note this is a 0.1 alpha & proof of concept application.\n");
printf("This requires the Java Media Framework (JMF) from http://java.sun.com/products/java-media/\n");
printf("get it here: http://www.blamires.co.uk/bin/Webcam-0.1.zip\n");
printf("\n");
printf("CompactFlash Recovery - chronicals of my succesfull Compact Flash card recovery project: Compact Flash Recovery\n");
printf("\n");
printf("I joined a band recently, they were looking for a singer so the manager called me up, think i am going to enjoy it. Band Photo\n");
return 0;
}
|