William_Wilson's tutorials

PHP: Upload Files to the Server

Contributed by William_Wilson on September 30, 2008 under PHP programming

With PHP, it is simple to upload any file to your server.

Comments Continue reading... 
 

Scheme - exponents

Contributed by William_Wilson on October 14, 2006 under Computer programming

This Scheme code example shows how to implement exponents by raising a given base by a given exponent through succesive squaring.

Comments Continue reading... 
 

Scheme - cons

Contributed by William_Wilson on under Computer programming

In Scheme, cons adds the first item supplied into the first position of the list supplied in the second position, no matter what it may be. This will be useful for streams later on.

This Tech-Recipe provides a simple demostration of the cons feature in scheme.

Comments Continue reading... 
 

Scheme - using cdr

Contributed by William_Wilson on under Computer programming

In Scheme, cdr simply displays all but the first element of a list, no matter what it is, be it a character, symbol, int, or even several lists or any combination. This is also useful for streams later on. This Tech-Recipe shows a simple demostration of the cdr feature in scheme.

Comments Continue reading... 
 

Scheme - use car to display the first element of list

Contributed by William_Wilson on under Computer programming

This is a simple demonstration of the car feature in scheme. The car command simply displays the first element of a list, no matter what it is, be it a character, symbol, int, or even another list. This is useful for streams later on.

Comments Continue reading... 
 

PHP: Password Protect Your pages.

Contributed by William_Wilson on June 25, 2006 under PHP programming

A simple PHP implementation which will prevent unwanted access to certain pages.

Comments Continue reading... 
 

PHP: Upload Files to the server

Contributed by William_Wilson on under PHP programming

With PHP, it is simple to upload any file to your server.

Comments Continue reading... 
 

PHP: Generate Dynamic Images from Text

Contributed by William_Wilson on under PHP programming

How to create images from text dynamically (quote generator)

Comments Continue reading...