dummy code example

  • Thread starter Thread starter Zen Masta
  • Start date Start date
Z

Zen Masta

I'm designing a website for a company and I want to put a catchy little
thing in there to help sell the design. I once saw a comic a while back that
had some code that looked like a person waking up and having coffee and I
would like to put some kind of dummy code that pretends to be their business
and it is executing functions to help customers.

anybody able to whip up something for me?

public class MyCompany
{
function AnalyzeCustomerNeeds(newcustomer);
{
impliment SolutionsIntegration();
impliment Increased Security();
}
}

Maybe something liek that but more realistic lookign becuase I dont know
what I'm doing.

Thanks :)
 
Hi,

Sounds like a good idea, are you doing it in Flash? How about
something like this?

public class MyCompany
{
public void AnalyzeCustomerNeeds(Customer newCustomer)
{
IntegrateSolutions();
IncreaseSecurity();
}
}
 
Flash would be pretty cool but I haven't done any flash animation in a few
years and I don't think I could produce something quality enough that I
would feel comfortable presenting. I was just thinking of a box with the
code in it.
 
Back
Top