PHP: Upload Files to the Server
Category PHP programming
Scheme – exponents
This Scheme code example shows how to implement exponents by raising a given base by a given exponent through succesive squaring.
Category Computer programming
Scheme – cons
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.
Category Computer programming
Scheme – using cdr
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.
Category Computer programming
Scheme – use car to display the first element of list
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.
Category Computer programming
PHP: Password Protect Your Pages
This tutorial contains a simple PHP implementation which will prevent unwanted access to certain pages.
Category PHP programming
PHP: Generate Dynamic Images from Text
The following Tech-Recipes tutorial explains how to create images from text dynamically (quote generator).
Category PHP programming
C/C++ Doubly Linked List
This tutorial demonstrates the implementation of a doubly linked list and the removal of the prev pointer for a singly linked list.
Category C programming

