And when he uttered the poem, no one; not a single, solitary, individual, whether or not, if he or she, at the moment of utterance, was happy, sad, indifferent, lost in their own self-absorbed thoughts, considering their next move, hungry, angry, squirming in their seat or asleep; was known to the poet. But the rumor of the declaration of the poem was based on memory; memory of someone else's recollection of the event. No one can say for sure if their memory was perfect, nor correct, regarding the enunciation, let alone the correct reiteration of the poem. It was known there was a large gathering of people the day, at the precise moment of the statement. But perforce, the people gathered, somehow, instinctively, to hear the poem for the first time, was uncertain. What was more certain: their circumstances were driven by other means. A meaning, heretofore, forgotten, or not recollected correctly. But the communication happened, that is certain, in fact it is known the poem has, merely, two words.
To some, the 12th of July 2006 may seem like a long time ago. Let me assure you, using any reasonable measure of time, that this date IS recent history. The following research and subsequent article was developed during July, August & September of 2006. I am just getting around to placing this detail on the web.
I am not the first to make this statement; I will not be the last. I aim to add my own voice to the growing numbers that have already made their position known. This senseless loss of life that continues in the "Middle East", each loss, meaning each and every loss of human life, regardless of age, sex, race, language or religion, is, in fact, an infinite loss.
<?php
/*
=============================================================================================
Script Name: watermark.php4
Verion: 1.0
Author: Ryan Doutt
Date: April 2007
Acknowledge: Brock Ferguson - See original article at http://www.sitepoint.com/article/watermark-images-php
which this script is based.
This is a PHP scripted, watermarking system for graphics files to be used with .htaccess on
an Apache web server. It should be called as follows from within your root .htaccess file:
RewriteEngine on
RewriteCond %{REQUEST_URI} uploads(.*) [NC]
RewriteRule ^(.*)$ http://www.yourdomain.com/path/to/watermark.php4?src=$1 [NC]
To see this script in action please point your favorite browser in the general direction of
one of the following images:
http://www.1800getryan.com/uploads/certaldo/P6180228.JPG
http://www.1800getryan.com/uploads/ireland/P8230023.JPG
http://www.1800getryan.com/uploads/broumov/P5240187.JPG
This script is available for use as freeware subject to the retention of the preceding
information and acknowledgements in any copy or modification that is made to this code.
=============================================================================================
*/
<?php
/*
=============================================================================================
Script Name: thumbnail.php
Version: 2.0
Author: Ian Anderson
Date: January 2007
Acknowledge: Teekai - http://www.teekai.info/v8/home.php (see the original script at
http://www.hotscripts.com/Detailed/18727.html on which this script is based).
This script is a self-contained Thumbnail Image Generator that can apply a watermark on the fly.
To modify for your own use, create your own watermark and update the following code throughout
this script: $logoImage = ImageCreateFrompng('logo_1800getryan_thumb.PNG');
It should be called as follows ...
<img src="/path/to/thumbnail.php?gd=N&src=/path/to/image.EXT&maxw=NNN" />
where N = the GD library version (supported values are 1 and 2)
EXT = the file extension of the image file
(supported values are gif (if gd = 2), jpg and png)
NNN = the desired maximum width of the thumbnail
If the actual image is narrower than the desired maximum width then the original image size
is used for the thumbnail copy.
This script checks for the following errors and generates an error JPEG image accordingly ...
GD version selected neither 1 nor 2;
Image create functions not supported;
Image file not found at the selected location;
GD version 2 functions not supported on the running version of PHP.
This script is available for use as freeware subject to the retention of the preceding
information and acknowledgements in any copy or modification that is made to this code.
v2.0 includes the addition of function fastimagecopyresampled
Acknowledge: Tim Eckel - Date: 12/17/04 - Project: FreeRingers.net - Freely distributable.
=============================================================================================
*/
<?php
/*
=============================================================================================
Script Name: randomimage.php4
Verion: 2.0
Author: Ryan Doutt
Date: January 2007
Acknowledge: Ian Anderson - See modification at http://www.hotscripts.com/Detailed/18800.html
which this script is based.
Matthew Dingley - See the original script at
http://www.hotscripts.com/Detailed/22466.html on which this script is based.
This script is a self-contained, random, thumbnail, image generator. It should be called as
follows:
<img SRC="/path/to/randomimage.php4?gd=N&src=path/to/image/dir/&maxw=NNN">
or simply:
<?php include "randomimage.php4"; ?>
where N = the GD library version (supported values are 1 and 2)
NNN = the desired maximum width of the thumbnail
src = path to your image directory where you'd like to select a random image, keep
the trailing /
If the actual image is narrower than the desired maximum width then the original image size
is used for the thumbnail copy.
This script checks for the following errors and generates an error JPEG image accordingly ...
GD version selected neither 1 nor 2;
Image create functions not supported;
Image file not found at the selected location;
GD version 2 functions not supported on the running version of PHP.
To see this script in action please point your favorite browser in the general direction of
one of the following pages:
http://www.1800getryan.com/News_From_Home.html
http://www.1800getryan.com/Overview.html
http://www.1800getryan.com/Travel_and_Adventure.html
This script is available for use as freeware subject to the retention of the preceding
information and acknowledgements in any copy or modification that is made to this code.
v2.0 includes the addition of function fastimagecopyresampled
Acknowledge: Tim Eckel - Date: 12/17/04 - Project: FreeRingers.net - Freely distributable.
=============================================================================================
*/