UBB.Dev
Posted By: Halobreak Post your clipboard! - 12/24/2001 4:25 PM
That's right, just press ctrl+v!

Heres mine:

pzYkopathiK: I wish i were you :-(
LK UBB: yeah right
pzYkopathiK: So I could understand the physics of UBB :-(
pzYkopathiK: Or the 'LK' fairy could pop up and sprinkle me with ted o neill dust :-(
Posted By: LK Re: Post your clipboard! - 12/24/2001 4:30 PM
a
Posted By: Sally Re: Post your clipboard! - 12/24/2001 5:08 PM
quote:

http://www.dynalink.com/asp/category.asp?Site=3&Page=270



lol
Posted By: Jamin Re: Post your clipboard! - 12/24/2001 6:12 PM
https://www.ubbdev.com/ubb/ultimatebb.php?ubb=get_topic&f=10&t=001402

---Jamin
Posted By: v0id emotion Re: Post your clipboard! - 12/24/2001 7:04 PM
POINT OF VIEW
The main thing to remember about Hamlet, as about any play, is that it is not a novel, in which the story is seen through the eyes of the author or the character who narrates. A play is told by having the characters present their opposing points of view in conflict with each other. We call the sum total of what these represent, when the action is completed, the author's vision. The great challenge of writing a play, which Shakespeare met more brilliantly than any writer who ever lived, is to make each character seem to take on an independent existence, with his own motives and his own approach to life, and yet have all these independent entities add up to one thing.

Because Shakespeare's sense of life was so broad and inclusive, many people have complained over the centuries that he does not tell his readers how to view the characters: Is Hamlet mad or sane, good or evil? Is it right for him to keep postponing his revenge? Are Claudius' tactics justified? Do Rosencrantz and Guildenstern deserve to be put to death? In a general sense, Shakespeare answers all these questions for the audience of his own time by never directly attacking the standard beliefs of an ordinary Elizabethan theatergoer. Because his artistry is so great, however, his characters are so strongly individualized that their actions can be interpreted many different ways, like the actions of real people, whose motives we can never fully understand. As a result, there is no one interpretation, no permanently fixed point of view to a play like Hamlet; its beauty is bound up with the fact that it can mean so many different things to people and be understood in so many different ways.
Posted By: RANCH4x4 Re: Post your clipboard! - 12/24/2001 7:51 PM
Wide Tracs Spacers
Posted By: AllenAyres Re: Post your clipboard! - 12/24/2001 8:02 PM
440
Posted By: Charles Capps Re: Post your clipboard! - 12/24/2001 8:18 PM
http://forums.3drealms.com/images/navatar.jpg
Posted By: AllenAyres Re: Post your clipboard! - 12/24/2001 8:50 PM
Did Nav finally buy the Sox?
Posted By: BloggerMan Re: Post your clipboard! - 12/24/2001 9:14 PM
$variable =~ s/n/
/ig;

Copied that from the post LK made in my topic in the programming forum.
Posted By: bryan868 Re: Post your clipboard! - 12/24/2001 11:39 PM
http://web.archive.org/web/19990826223330/http://www.nightly.net/cgi-bin/Ultimate.cgi

An old and...ugly sight.

[ 12-24-2001 03:41 PM: Message edited by: bryan868 ]
Posted By: Stilgar Re: Post your clipboard! - 12/25/2001 12:06 AM
EeQt0
Posted By: v0id emotion Re: Post your clipboard! - 12/25/2001 1:15 AM
aha! its stilgar's pw somewhere
Posted By: Halobreak Re: Post your clipboard! - 12/25/2001 1:24 AM
BGColor => q~#FFFFFF~,
CP_BGColor => q~#5d7790,
CP_TextColor => q~#000000,
CP_BordColor => q~#000000,
CP_ActiveLinkColor => q~#0000FF,
CP_LinkColor => q~#5d7790,
CP_VisitedLinkColor => q~#330099,
CP_TableHeader => q~#C0C800
CP_TableMiddle => q~#C9C9C9


Lol, i was making my Custom CP Colors hack
Posted By: Bookie Re: Post your clipboard! - 12/25/2001 3:03 AM
[Linked Image]

Even had the [img] tags in there.
Posted By: BloggerMan Re: Post your clipboard! - 12/25/2001 7:05 AM
Seven Seven Seven Seven Seven Seven Seven Seven Seven Seven Seven Seven Seven Seven Seven Seven Seven Seven Seven Seven Seven Seven Seven Seven Seven Seven Seven Seven Seven Seven Seven Seven Seven Seven Seven Seven Seven Seven Seven Seven

... don't ask.

[ 12-24-2001 11:05 PM: Message edited by: BloggerMan ]
Posted By: trunkx Re: Post your clipboard! - 12/25/2001 7:11 AM
b O ardkIng 84: SANTA'S HERE!!!!
*edit*: ok....
b O ardkIng 84: but i shot him
b O ardkIng 84: so no presents for you
*edit*: ok...
b O ardkIng 84: just thought you'd like to know
*edit*: ok...

she doesn't need her sn posted
Posted By: vir Re: Post your clipboard! - 12/25/2001 8:25 AM
include("./includes/config.php");

// Randomize gateway values: change every 10seconds
mt_srand((intval(time()/10)*10));
$accept_test = md5(mt_rand(10000,9999999999));
$gate_test = md5(mt_rand(10000,9999999999));

// If no referer, or vote cookie already set: exit
if (!$HTTP_REFERER || $phptlin[$ID] || !$ID) {
suspicious();
goto_page("1");

// If gateway is not set: check to see if the client accepts cookies
} elseif ($gateway != $gate_test) {
header("Set-Cookie: cookie_test=$accept_test");

// Detect calling via img tags & set gateway check values
unset($oldID);
echo "







";

// If gateway is set and the client accepts cookies:
// Check his ip and that the vote comes from his site.
} elseif (($gateway == $gate_test) && ($cookie_test == $accept_test)) {

$query=mysql_query("SELECT URL, Category, SubCategory, LastVoteIP from $accounts_table WHERE ID='$ID'");
$result=mysql_fetch_array($query);
$site_url=$result[URL];

if (($result[LastVoteIP] == $REMOTE_ADDR) || !check_referer($site_url)) {
suspicious();
goto_page("2");

// If his ip is not logged: count the vote, set a cookie, and log his ip
} else {
$name="phptlin[$ID]";
$expire=date("D, d M Y H:i:s", time()+$vote_time);

// header("Set-Cookie: $name=phptlin; EXPIRES=$expire");

$now=time();
cleansites($now);
// Redirect to cat/subcat if admin has set so.
if ($Set_Category) {$whereto = "Category=$result[Category]";}
if ($Set_SubCategory) {$whereto .= "&SubCategory=$result[SubCategory]";}

// mysql_query("UPDATE $accounts_table SET VotesToday=VotesToday+1, LastHit='$now', LastVoteREF='$referer', LastVoteIP='$REMOTE_ADDR' WHERE ID='$ID'");
mysql_query("UPDATE $accounts_table SET VotesToday=VotesToday+1, LastHit='$now' WHERE ID='$ID'");


// If we only track valid votes, increment counter
if ($vote_method == "1") {mysql_query("UPDATE $counter_table SET Count=Count+1");}
goto_page("3");
}

// The client doesn't accept cookies: exit
} else {
suspicious();
goto_page("4");
}

function goto_page($status) {
global $counter_table, $vote_method, $base_url, $index_file, $whereto;
// If we track all votes, increment counter
if ($vote_method == "0") {mysql_query("UPDATE $counter_table SET Count=Count+1");}
// We bust out of eventual frames, maximize the window, and redirect to the site.
echo "
";
exit();
}

function check_referer($site_url) {
global $check_referer, $referer;
if ($check_referer == "0" || eregi("^$site_url", $referer)){
return(true);
} else {
return(false);
}}

function cleansites($now) {
global $counter_table, $accounts_table, $reset_time;
// Rest daily hits to 0 if needed
$query = mysql_query("SELECT LastReset, MonthlyReset FROM $counter_table");
$do_reset = mysql_fetch_array($query);

if (($do_reset[LastReset]+$reset_time) < $now) {
mysql_query("UPDATE $counter_table SET LastReset='$now'");
mysql_query("UPDATE $accounts_table SET VotesToday='0', VisitsToday='0', LastVoteIP='', LastVisitIP='', LastRateIP=''");
}

// Rest monthly hits to 0 if needed
$today=getdate($now);
if (($do_reset[MonthlyReset] == "1") && ($today[mday] == "1")) {
mysql_query("UPDATE $accounts_table SET VisitsMonth='0', Suspicious='0'");
mysql_query("UPDATE $counter_table SET MonthlyReset='0'");

} elseif (($do_reset[MonthlyReset] == "0") && ($today[mday] > "27")) {
mysql_query("UPDATE $counter_table SET MonthlyReset='1'");
}
}

function suspicious() {
global $accounts_table, $ID, $oldID;
if ($ID || $oldID) {mysql_query("UPDATE $accounts_table SET Suspicious=Suspicious+1 WHERE ID='$ID' OR ID='$oldID'");}
}
?>
Posted By: Brad.loo Re: Post your clipboard! - 12/25/2001 9:53 AM
Laughing Out Loud im ganna scan a pic of me hi for my site bio laugh
lol
Posted By: Matt Jacob Re: Post your clipboard! - 12/25/2001 10:05 AM
QKFP-WLDR-VOIR-WQFO-OGES-KUDX
Posted By: BloggerMan Re: Post your clipboard! - 12/25/2001 10:43 PM
Oops! There's some problems with this file, probably my fault!

This is probably a CGI file with problems that I'm fixing, or haven't noticed. Either way, Contact Me and tell me! Thanks!

I was doing my custom error pages. :-p
Posted By: Matt Jacob Re: Post your clipboard! - 12/25/2001 11:26 PM
You should really use the alt attribute and define the height and width of images for faster browser rendering.
Posted By: Jamin Re: Post your clipboard! - 12/26/2001 1:55 AM
quote:
Originally posted by Matt Jacob:
QKFP-WLDR-VOIR-WQFO-OGES-KUDX



Now to figure out what program/game that CD key goes to........

---Jamin
Posted By: BloggerMan Re: Post your clipboard! - 12/26/2001 6:39 AM
haha :whips out copy of flash he found in a parking lot :

Oh, and thanks Matt, I had no clue that made a site load faster :goes through site and puts w/h and alt attributes on every image:

Oh, and... Clipboard...
----
"You can truly say you have a good website when someone tells you there's something wrong with it."
----
A quote...
Posted By: trunkx Re: Post your clipboard! - 12/26/2001 6:53 AM
"I'll die drowned by your standards... I'm honored by your hatred."

just finished listening to some 30 afi songs. i was picking out great lyrics to put in my aim profile
Posted By: Matt Jacob Re: Post your clipboard! - 12/26/2001 6:54 AM
quote:
Originally posted by Jamin:
Now to figure out what program/game that CD key goes to........ laugh I could've made that up myself for all you know...
Posted By: Dave2 Re: Post your clipboard! - 12/26/2001 5:57 PM
Mine:

---------------------

Hello Dave,

This is the registration codes for our new games:

VMCoolumns V3.02
http://www.axysoft.com/vmcoolumns/
Reg.Name: allaboutgames.co.uk
Reg.Code: **edited**

SkyMaze V1.15
http://www.axysoft.com/skymaze/
Reg.Name: allaboutgames.co.uk
Reg.Code: **edited**


We all from AxySoft wish you and your colleagues a happy and
peaceful Christmas time and all the best for the year 2002!

--
Best regards,
Vladimir Savin
AxySoft.
http://www.axysoft.com

---------------------

My current clipboard:

---------------------

**edited**

---------------------

Posted By: LK Re: Post your clipboard! - 12/26/2001 6:06 PM
http://community.infopop.net/2/OpenTopic?a=tpc&s=729094322&f=1863088313&m=4083004573
Posted By: usr bin geek Re: Post your clipboard! - 12/26/2001 10:11 PM
http://www.amazon.com/exec/obidos/wishlist/2Q7XPPJGR7CK/
Posted By: John Round Re: Post your clipboard! - 12/26/2001 11:01 PM
http://computers.users3.50megs.com/img/win2k.jpg

God, those "Post Your Desktop" topics can be addictive!
Posted By: Wando™ Re: Post your clipboard! - 12/27/2001 3:55 AM





border=0>
Main
Register
>Search
Contact us
Members Gallery
Links
How to use UBB

target=mainFrame>border=0>







Help us
find a
cure for cancer.

href="http://members.ud.com/services/teams/team.htm?id=DDE39155-B626-4A01-A104-817F561929DF">
src="http://audi.digitarus.com/media/haxxors/team_ubbdev.gif" border=0 width="91" height="99">


Blue
(1+ results)
blue src="http://audi.digitarus.com/media/haxxors/u-haxorsblue.GIF" width=98 border=0>


Bronze
(10K+ points)
bronze src="http://audi.digitarus.com/media/haxxors/u-haxorsbronze.GIF" width=98 border=0>


Silver
(25K+ points)
silver src="http://audi.digitarus.com/media/haxxors/u-haxorssilver.GIF" width=98 border=0>


Gold
(50K+ points)
gold src="http://audi.digitarus.com/media/haxxors/u-haxorsgold.GIF" width=98 border=0>


Platinum
(100K+ points)
platinum src="http://audi.digitarus.com/media/haxxors/u-haxorsplatinum.GIF" width=98 border=0>


Diamond
(250K+ points)
diamond src="http://audi.digitarus.com/media/haxxors/u-haxorsdiamond.GIF" width=98 border=0>


Coffee
(500K+ points)
coffee src="http://audi.digitarus.com/media/haxxors/u-haxorscoffee.GIF" width=98 border=0>


HREF="http://www.strictlycars.com/cgi-bin/lsproaudi/lspro.cgi?click=998524020"target=new>
SRC="http://audi.digitarus.com/topaudibanner.gif" HEIGHT="70" WIDTH="100"
BORDER="0">



see how bad my html is!
Posted By: v0id emotion Re: Post your clipboard! - 12/28/2001 7:41 PM
Click here to find out what size you really are
Posted By: AllenAyres Re: Post your clipboard! - 08/31/2002 7:34 PM
Can anything ever separate us from Christ's love? Does it mean he no longer loves us if we have trouble or calamity, or are persecuted, or are hungry or cold or in danger or threatened with death? (Even the Scriptures say, "For your sake we are killed every day; we are being slaughtered like sheep.") No, despite all these things, overwhelming victory is ours through Christ, who loved us.
And I am convinced that nothing can ever separate us from his love. Death can't, and life can't. The angels can't, and the demons can't. Our fears for today, our worries about tomorrow, and even the powers of hell can't keep God's love away. Whether we are high above the sky or in the deepest ocean, nothing in all creation will ever be able to separate us from the love of God that is revealed in Christ Jesus our Lord.
Posted By: LK Re: Post your clipboard! - 08/31/2002 7:48 PM
Code
	if ($in{s} eq 'ssi') {
$js = qq~<script type="text/javascript" language="JavaScript">
<!--
document.write('<input type="hidden" name="refer" value="'+document.location+'" />');
// -->
</script>~;
$js2 = qq~<script type="text/javascript" language="JavaScript">
<!--
document.write('<a href="$vars_config{CGIURL}/ubb_shoutbox.cgi?d=delete;post=$key"><img src="$vars_config{NonCGIURL}/delshout.gif" alt="Delete" border="0" /></a>');
// -->
</script>~;
} elsif ($in{s} eq 'javascript') {
$js = "<!--script-->";
$js2 = "<!--script2-->";
} else {
$js = qq~<input type="hidden" name="refer" value="$vars_config{CGIURL}/ubb_shoutbox.cgi?s=iframe" />~;
$js2 = qq~<a href="$vars_config{CGIURL}/ubb_shoutbox.cgi?d=delete;post=$key;refer=$vars_config{CGIURL}/ubb_shoutbox.cgi?s=iframe"><img src="$vars_config{NonCGIURL}/delshout.gif" alt="Delete" border="0" /></a>~;
}
Posted By: CTM Re: Post your clipboard! - 08/31/2002 8:53 PM
(19:44:10) (@artismarti) thats your aim
(19:44:12) (@Chris) i'm changing it soon
(19:44:47) (@LK) thanks to me
(19:44:50) (@LK) now everybody knows it tipsy
(19:44:59) (@Chris) bah
(19:45:20) (@Chris) if i get ubbdevers coming up to me saying "yo yo yo chris da masta" i'm gonna kill you
Posted By: dende Re: Post your clipboard! - 08/31/2002 11:40 PM
Now its time to wrap our fears in the night
And on the first day we'll dress this city in flames
After all the things you say
You hate me for being this way

Still you won't let go of old ideals
There is no headline to read at night
When the record slips and you're not holding the needle

We all sing the songs of separation
And we watch our lives bleed out through our hands
Thats how it was on the first day
We saw Paris in Flames

I think it's going to rain, rain down

Here in this collapsed lung of a borough
There is no sunlight
The sunlight is manufactured in a windowless room
Distant and incoherent
Businessmen hang themselves

The lower cast side is a jukebox playing the deadman's crescendo
The needle is a vector
An intersection that well all must cross
A dimly lit hallway where shadows of moths decorate the walls
Discard this message
Burn this city down

Discard this message
Throw this bottle back in the ocean
Rip this page from the history books
Smash all the street signs
Erase all the maps
Forget my name
Forget my face
Because it's going to rain
And it never ends
Posted By: Charles Capps Re: Post your clipboard! - 09/03/2002 5:15 PM
It is difficult, if not completely impossible to properly diagnose most UBB problems without knowing which version of the UBB you are using, as well as the FULL URL to your ultimatebb.cgi file, (NOT a link to your webpage). Please provide this information. Thanks. smile
Posted By: Ron M Re: Post your clipboard! - 09/03/2002 9:44 PM
Private Sub cmdBackup_Click()
On Error GoTo Err_cmdBackup_Click

Dim stDocName As String

stDocName = "macBackup"
DoCmd.RunMacro stDocName

stDocName = "qryAuditAddB"
DoCmd.OpenQuery stDocName, acNormal, acEdit

Exit_cmdBackup_Click:
Exit Sub

Nothing like a little VBA in access 2000
Posted By: Idle Re: Post your clipboard! - 09/04/2002 6:44 AM
# My brand new link
push(@items, qq(my 7th link));
-----------------

Woah, didn't know that was still there... reply to someone at UBBDesign.com. :rolleyes:
Posted By: usr bin geek Re: Post your clipboard! - 09/04/2002 5:41 PM
http://www.gladdy.co.uk/xpsp1/xpsp1issues.html
Posted By: Chrimera Re: Post your clipboard! - 09/06/2002 6:26 PM
With the recent advances in nano, and biotechnology you can bet your last dollar things are gonna change, militarily and civilian-tarily. Though I don’t believe the 'look and feel' will alter all that much.

Case in point, to pardon the pun, computers get faster and components smaller, but Compaq, dell and Gateway only JUST started altering the footprint of their machine this past year. And the move to the Black/Gray color wasn’t motivated by MACs but because the beige turns yellow. People mostly hate (READ: fear) change, even if they understand the why's and how's.

They'll figure out how to mass-produce the silicone cube as a data storage device. (1 inch square silicon cube that can hold the contents other the New York Public Library. Lasers write in the volume of the cube not just the surface)

Engineering truism, you can plan for 10 years out, but only design for 5.
Posted By: Dave2 Re: Post your clipboard! - 09/07/2002 6:19 PM
Code
[dave@tc4 gabber-0.8.7]$ vi INSTALL
[dave@tc4 gabber-0.8.7]$ ./configure
checking for a BSD compatible install... /usr/bin/ginstall -c
checking whether build environment is sane... yes
/home/dave/gabber-0.8.7/missing: Unknown `--run' option
Try `/home/dave/gabber-0.8.7/missing --help' for more information
configure: WARNING: `missing' script is too old or missing
checking for gawk... gawk
checking whether make sets ${MAKE}... yes
checking whether to enable maintainer-specific portions of Makefiles... no
checking for perl... /usr/bin/perl
checking for gnome-config... no
checking for gnomeConf.sh file in /usr/local/lib... not found
configure: error: Could not find the gnomeConf.sh file that is generated by gnome-libs install
[dave@tc4 gabber-0.8.7]$
Posted By: Durango Re: Post your clipboard! - 09/08/2002 7:36 PM
http://www.bestbuy.com/detail.asp?b=0&e=11150552&m=58&cat=60&scat=247
Posted By: Hank Re: Post your clipboard! - 09/09/2002 12:44 AM
Your a dead man, I swear your a dead man.

^ Don't ask.
Posted By: Lord Dexter Re: Post your clipboard! - 09/09/2002 9:40 AM
"Ding dong dell, kitty's in the well"

"who threw her in..

[edit: just to make the perverts shut up wink ]
Posted By: Laura_ubb Re: Post your clipboard! - 09/09/2002 11:30 PM
198.154.145.34
Posted By: navaho Re: Post your clipboard! - 09/10/2002 2:20 AM
Monday night, Sept. 9, Wh03 is being replaced with new server hardware. At the same time we will also be updating the Ensim system from 3.0 to 3.1.1.

Sometime between 10 and 10:30 PM Pacific Time tonight, we will shut down all sites on that server. The total downtime is expected to be up to 4 hours. Only Wh03 will be effected by this move.

More information is available in our web hosting News forum ( http://community.infopop.net/2/OpenTopic?a=frm&s=729094322&f=3983010105 ). Don't forget to Pop It if you have not already.

[edit= whew! I thought there was a couple hundred email addresses in there too]
Posted By: Lord Dexter Re: Post your clipboard! - 09/10/2002 10:00 AM
https://ubbdev.com/ubb/ultimatebb.php?ubb=get_topic;f=10;t=001613;p=4
Posted By: catcherman Re: Post your clipboard! - 09/10/2002 7:44 PM
http://www.amazon.com/exec/obidos/ASIN/0809235110/catchermancom-20
Posted By: Dave2 Re: Post your clipboard! - 09/10/2002 8:33 PM
Code
cpan> i /fast/
Author GREGFAST ("Greg Fast" <[email protected]>)
Distribution B/BO/BOZZIO/Text-FastTemplate-0.95.tar.gz
Distribution D/DR/DRUOSO/Server-FastPL-1.0.1.tar.gz
Distribution D/DR/DRUOSO/Server-FastPL-1.0.2.tar.gz
Distribution G/GR/GREGFAST/Lingua-EN-Syllable-0.251.tar.gz
Distribution J/JM/JMOORE/CGI-FastTemplate-1.09.tar.gz
Distribution M/MA/MAKLER/MIME-Fast-0.1.tar.gz
Distribution M/ME/MENGEL/FastGlob-1.3.tar.gz
Distribution R/RO/ROBIN/Algorithm-FastPermute-0.05.tar.gz
Distribution S/ST/STBEY/Math-BigIntFast-6.0.tar.gz
Distribution T/TE/TELS/math/Math-BigInt-FastCalc-0.06.tar.gz
Distribution T/TR/TRIPIE/CzFast-0.10.tar.gz
Module Algorithm::FastPermute (R/RO/ROBIN/Algorithm-FastPermute-0.05.tar.gz)
Module Bio::AlignIO::fasta (B/BI/BIRNEY/bioperl-1.0.2.tar.gz)
Module Bio::DB::Fasta (B/BI/BIRNEY/bioperl-1.0.2.tar.gz)
Module Bio::DB::Flat::BDB::fasta (B/BI/BIRNEY/bioperl-1.0.2.tar.gz)
Module Bio::Index::Fasta (B/BI/BIRNEY/bioperl-1.0.2.tar.gz)
Module Bio::Index::Fastq (B/BI/BIRNEY/bioperl-1.0.2.tar.gz)
Module Bio::PrimarySeq::Fasta (B/BI/BIRNEY/bioperl-1.0.2.tar.gz)
Module Bio::Search::Hit::Fasta (B/BI/BIRNEY/bioperl-1.0.2.tar.gz)
Module Bio::Search::Processor::Fasta (B/BI/BIRNEY/bioperl-0.6.2.tar.gz)
Module Bio::Search::Result::Fasta (B/BI/BIRNEY/bioperl-0.6.2.tar.gz)
Module Bio::SearchIO::fasta (B/BI/BIRNEY/bioperl-1.0.2.tar.gz)
Module Bio::SeqIO::Fasta (B/BI/BIRNEY/bioperl-0.05.1.tar.gz)
Module Bio::SeqIO::fasta (B/BI/BIRNEY/bioperl-1.0.2.tar.gz)
Module Bio::SeqIO::fastq (B/BI/BIRNEY/bioperl-1.0.2.tar.gz)
Module Bio::SeqIO::largefasta (B/BI/BIRNEY/bioperl-1.0.2.tar.gz)
Module Bio::Tools::Fasta (B/BI/BIRNEY/bioperl-0.7.0.tar.gz)
Module Business::BancaSella::Ric::FileFast (E/EB/EBRUNI/Business-BancaSella-0.11.tar.gz)
Module Business::BancaSella::Ris::FileFast (E/EB/EBRUNI/Business-BancaSella-0.11.tar.gz)
Module CGI::Fast (L/LD/LDS/CGI.pm-2.81.tar.gz)
Module CGI::FastTemplate (J/JM/JMOORE/CGI-FastTemplate-1.09.tar.gz)
Module Class::Accessor::Fast (M/MS/MSCHWERN/Class-Accessor-0.17.tar.gz)
Module Class::MakeMethods::Emulator::AccessorFast (E/EV/EVO/Class-MakeMethods-Emulator-1.003.tar.gz)
Module CzFast (T/TR/TRIPIE/CzFast-0.10.tar.gz)
Module DBIx::FullTextSearch::BlobFast (T/TJ/TJMATHER/DBIx-FullTextSearch-0.70.tar.gz)
Module FastGlob (M/ME/MENGEL/FastGlob-1.3.tar.gz)
Module LWP::FastRobot (M/MI/MIKEDLR/Link_Controller-0.037.tar.gz)
Module MIME::Fast (M/MA/MAKLER/MIME-Fast-0.1.tar.gz)
Module Mail::Folder::FastReader (D/DC/DCOPPIT/grepmail-4.72.tar.gz)
Module Mail::Message::Field::Fast (M/MA/MARKOV/Mail-Box-2.021.tar.gz)
Module Math::BigInt::FastCalc (T/TE/TELS/math/Math-BigInt-FastCalc-0.06.tar.gz)
Module Math::BigIntFast (S/ST/STBEY/Math-BigIntFast-6.0.tar.gz)
Module PDL::IO::FastRaw (K/KG/KGB/PDL-2.004.tar.gz)
Module Server::FastPL (D/DR/DRUOSO/Server-FastPL-1.0.2.tar.gz)
Module Server::FastPL::Client (D/DR/DRUOSO/Server-FastPL-1.0.1.tar.gz)
Module Server::FastPL::Server (D/DR/DRUOSO/Server-FastPL-1.0.1.tar.gz)
Module Text::FastTemplate (B/BO/BOZZIO/Text-FastTemplate-0.95.tar.gz)
Module Wx::Perl::SplashFast (M/MB/MBARBON/Wx-0.11.tar.gz)
49 items found

cpan>
Umm... Was looking for CPAN modules tipsy
Posted By: AllenAyres Re: Post your clipboard! - 12/17/2002 3:15 AM
Every who down in Whoville liked Christmas a lot,
But the Grinch, who lived just north of Whoville did not!

The Grinch hated Christmas! The whole Christmas season!
Now, please don't ask why. Noone quite knows the reason.
It could be his head wasn't screwed on just right.
It could be, perhaps,that his shoes were too tight.
But I think that the most likely reason of all
May have been that his heart was two sizes too small.

But, whatever the reason, His heart or his shoes,
He stood there on Christmas Eve, hating the Whos,
Staring down from his cave with a sour, Grinchy frown
At the warm lighted windows below in their town.
For he knew every who down in Whoville beneath
Was busy now, hanging a mistletoe wreath.
"And they're hanging their stockings!" he snarled with a sneer.
"Tomorrow is Christmas! It's practically here!"
Then he growled, with his Grinch fingers nervously drumming,
"I MUST find some way to stop Christmas from coming!"
For tomorrow, he knew, all the who girls and boys
Would wake bright and early. They'd rush for their toys!
And then! Oh, the noise! Oh, the Noise! Noise! Noise! Noise!
That's the one thing he hated! The NOISE! NOISE! NOISE! NOISE!
Then the Whos, young and old, would sit down to a feast.
And they'd feast! And they'd feast!
And they'd FEAST! FEAST! FEAST! FEAST!
They would feast on who-pudding, and rare who-roast-beast,
Which was something the Grinch couldn't stand in the least!
And THEN they'd do something he liked least of all!
Every who down in Whoville, the tall and the small,
Would stand close together, with Christmas bells ringing.
They'd stand hand in hand, and the Whos would start singing!
They'd sing! And they'd sing! And they'd SING SING SING SING!
And the more the Grinch thought of this who-Christmas-sing,
The more the Grinch thought, "I must stop this whole thing!
Why, for fifty three years I've put up with it now!
I must stop this Christmas from coming! But how?"

Then he got an idea! An awful idea!
The Grinch got a wonderful, awful idea!
"I know just what to do!" the Grinch laughed in his throat.
And he made a quick Santy Claus hat and a coat.
And he chuckled, and clucked, "What a great Grinchy trick!
With this coat and this hat, I look just like Saint Nick!"
"All I need is a reindeer..." The Grinch looked around.
But, since reindeer are scarce, there was none to be found.
Did that stop the old Grinch? No, the Grinch simply said,
"If I can't find a reindeer, I'll make one instead!"
So he called his dog, Max. Then he took some red thread
And he tied a big horn on the top of his head.
Then he loaded some bags and some old empty sacks
On a ramshackle sleigh and he hitched up old Max.
Then the Grinch said, "Giddap!" And the sleigh started down
Toward the homes where the Whos lay asnooze in their town.

All the windows were dark. Quiet snow filled the air.
All the Whos were all dreaming sweet dreams without care
When he came to the first little house on the square.
"This is stop number one," the old Grinchy Claus hissed,
And he climbed to the roof, empty bags in his fist.
Then he slid down the chimney, a rather tight pinch,
But if Santa could do it, then so could the Grinch.
He got stuck only once, for a moment or two.
Then he stuck his head out of the fireplace flue
Where the little who stockings all hung in a row.
"These stockings," he grinned, "are the first things to go!"
Then he slithered and slunk, with a smile most unpleasant,
Around the whole room, and he took every present!
Pop guns! And bicycles! Roller skates! Drums!
Checkerboards! Tricycles! Popcorn! And plums!
And he stuffed them in bags. Then the Grinch, very nimbly,
Stuffed all the bags, one by one, up the chimbly!
Then he slunk to the icebox. He took the Whos' feast!
He took the who-pudding! He took the roast beast!
He cleaned out that icebox as quick as a flash.
Why, that Grinch even took their last can of who-hash!
Then he stuffed all the food up the chimney with glee.
"And NOW!" grinned the Grinch, "I will stuff up the tree!"
And the Grinch grabbed the tree, and he started to shove
When he heard a small sound like the coo of a dove.
He turned around fast, and he saw a small who!
Little Cindy-Lou Who, who was not more than two.
The Grinch had been caught by this tiny who daughter
Who'd got out of bed for a cup of cold water.
She stared at the Grinch and said, "Santy Claus, why,
Why are you taking our Christmas tree? Why?"
But, you know, that old Grinch was so smart and so slick,
He thought up a lie, and he thought it up quick!
"Why, my sweet little tot," the fake Santy Claus lied,
"There's a light on this tree that won't light on one side.
So I'm taking it home to my workshop, my dear.
I'll fix it up there. Then I'll bring it back here."
And his fib fooled the child. Then he patted her head
And he got her a drink and he sent her to bed.
And when Cindy-Lou Who went to bed with her cup,
He went to the chimney and stuffed the tree up!
Then the last thing he took was the log for the fire!
Then he went up the chimney himself, the old liar.
On their walls he left nothing but hooks and some wire.
And the one speck of food that he left in the house
Was a crumb that was even too small for a mouse.

Then he did the same thing to the other Whos' houses
Leaving crumbs much too small for the other Whos' mouses!
It was quarter past dawn, all the Whos, still a-bed,
all the Whos still a-snooze when he packed up his sled,
Packed it up with their presents! The ribbons! The wrappings!
The tags! And the tinsel! The trimmings! The trappings!
Three thousand feet up! Up the side of Mt. Crumpit,
He rode with his load to the tip top to dump it!
"Pooh-Pooh to the Whos!" he was grinchishly humming.
"They're finding out now that no Christmas is coming!
They're just waking up! I know just what they'll do!
Their mouths will hang open a minute or two
Then the Whos down in Whoville will all cry boo-hoo!

"That's a noise," grinned the Grinch, "that I simply must hear!"
So he paused. And the Grinch put his hand to his ear.
And he did hear a sound rising over the snow.
It started in low. Then it started to grow...
But the sound wasn't sad! Why, this sound sounded merry!
It couldn't be so! But it WAS merry! VERY!
He stared down at Whoville! The Grinch popped his eyes!
Then he shook! What he saw was a shocking surprise!

Every who down in Whoville, the tall and the small,
Was singing! Without any presents at all!
He HADN'T stopped Christmas from coming! IT CAME!
Somehow or other, it came just the same!
And the Grinch, with his Grinch feet ice-cold in the snow,
Stood puzzling and puzzling: "How could it be so?
It came without ribbons! It came without tags!
It came without packages, boxes or bags!"
And he puzzled three hours, till his puzzler was sore.
Then the Grinch thought of something he hadn't before!
"Maybe Christmas," he thought, "doesn't come from a store.
Maybe Christmas... perhaps... means a little bit more!"

And what happened then? Well, in Whoville they say
That the Grinch's small heart grew three sizes that day!
And the minute his heart didn't feel quite so tight,
He whizzed with his load through the bright morning light
And he brought back the toys! And the food for the feast!
And he, HE HIMSELF! The Grinch carved the roast beast!
Posted By: Dave_L Re: Post your clipboard! - 12/17/2002 7:14 AM
$dst_column_length
Posted By: Lord Dexter Re: Post your clipboard! - 12/17/2002 9:44 AM
tonytop.gif
Posted By: Dave2 Re: Post your clipboard! - 12/17/2002 11:43 AM
https://ubbdev.com/ubb/ultimatebb.php?ubb=get_topic;f=10;t=001613;p=4

laugh
Posted By: Lord Dexter Re: Post your clipboard! - 12/18/2002 9:56 AM
https://ubbdev.com/ubb/ultimatebb.php?ubb=get_topic;f=10;t=001613;p=4

Had to open in a new browser. wink
Posted By: Ron M Re: Post your clipboard! - 12/18/2002 11:55 PM
// Hello McFly...Anyone Home?
$user = getenv("REMOTE_USER");
Posted By: CTM Re: Post your clipboard! - 12/19/2002 12:09 AM
[10:10:25] [@Chris] -teamiphq editpoints chris 65376
[10:10:25] • [Notice From Chris] Thank you, chris, your points have been added to the Team IPHQ total. The new Team IPHQ total is: 226613

^_^;;
Posted By: AllenAyres Re: Post your clipboard! - 12/24/2002 9:12 PM
been away from this pc for a few days, let's see what's here:

Quote
quote:

http://www.foxnews.com/story/0,2933,73598,00.html
not sure what that was about smile The war I think smile
Posted By: Ron M Re: Post your clipboard! - 12/24/2002 9:29 PM
if ($bug == "FIXED")
$topic = "CLOSED";
Posted By: Badger Re: Post your clipboard! - 12/26/2002 9:02 PM
Database error in Creature World:
Invalid SQL - Query: INSERT INTO pagelog (userid,ipaddress,url,pagetime,queries) VALUES (,,'/forum.php?',0.003124,0)
mySQL error: You have an error in your SQL syntax near ','/forum.php?',0.003124,0)' at line 1
Time of error: Dec 15, 2002 8:59:28
Scriptk: /forum.php?
Debug messages
Posted By: ScottRoberts Re: Post your clipboard! - 12/29/2002 8:30 PM
Let's see:

Shields UP!
https://grc.com/x/ne.dll?bh0bkyd2

A great way to test open "back doors" on your computer through your internet connection's IP address. Click on both the "Test My Shields!" and "Probe My Ports!" buttons down towards the middle of the page. A good, solid firewall program should protect you from every single one of the test attacks (along with using the above UnPnP).
Posted By: AllenAyres Re: Post your clipboard! - 01/14/2003 10:05 AM
https://www.ubbdev.com/u-haxorsj.gif
Posted By: CTM Re: Post your clipboard! - 01/14/2003 11:49 PM
I wonder why that was on your clipboard, Allen tipsy wink

Quote
quote:

$ip = getenv('REMOTE_HOST');
Hmm. Forgotten why that was there... shocked
Posted By: Ron M Re: Post your clipboard! - 03/21/2003 6:39 PM
/* ****** HEADER ROUTINES ********** */
include("header.inc");

// Well, this ain't Wal-Mart so we have to close from time to time
$result = mysql_query("SELECT * FROM status_x")
or DIE("unable to read status $statusx");
Posted By: ChiKen ScraTch Re: Post your clipboard! - 03/21/2003 7:43 PM
[code][/code]shocked
Posted By: Dave2 Re: Post your clipboard! - 03/23/2003 6:27 PM
[code][/code]
Posted By: Gizmo Re: Post your clipboard! - 03/23/2003 10:57 PM
awwe, it appears I'm all stealth lol... although i could have coded the same page in PHP and it would have been faster :x...

My lil clipboard...
[code][/code]
Posted By: CTM Re: Post your clipboard! - 03/23/2003 11:06 PM
http://www.psycopsy.com/gtavicecity/uniquejump25.JPG

[EDIT: Just thought, that's from a few days ago... eek ]
Posted By: AllenAyres Re: Post your clipboard! - 04/07/2003 11:14 PM
D:Allenresume and other stuff related
Posted By: navaho Re: Post your clipboard! - 04/08/2003 3:28 AM
[code][/code]
Posted By: Bookie Re: Post your clipboard! - 04/08/2003 3:43 AM
You had best fix that. wink
Posted By: navaho Re: Post your clipboard! - 04/08/2003 4:47 AM
Not me man, that was a bug report. I don't do the fixin', just the complainin'.
Posted By: Bookie Re: Post your clipboard! - 04/08/2003 6:20 AM
Interesting. May I have your job? laugh
Posted By: Gizmo Re: Post your clipboard! - 04/08/2003 8:24 AM
Agreed, does it pay well? :x...
Posted By: navaho Re: Post your clipboard! - 04/08/2003 8:32 AM
Nah, thanks for the offer, but I think I'll keep it for a while longer.
Posted By: Dave2 Re: Post your clipboard! - 04/08/2003 9:46 PM
[code][/code]Hmmmm...