|
This page contains all of the posts and discussion on MemeStreams referencing the following web page: Help a kid play hockey. You can find discussions on MemeStreams as you surf the web, even if you aren't a MemeStreams member, using the Threads Bookmarklet.
|
Help a kid play hockey by Dr. Nanochick at 12:12 am EST, Jan 14, 2003 |
Marie, should we do this::: As some of you know I coach a youth ice hockey team in Nashville. The Pedators have agreed to graciously allow my team to play one game at the Gaylord Entertainment Center. As you can imagine, the kids are really exited. Imagine playing football at the Titans stadium or baseball at Yankee Stadium. Well for them this is it ... Each player get's announced on the ice, they play the national anthem, they announce the goals, etc. - they get all the bells and whistles as the Preds game. Yes there is a catch - the team has to sell 150 tickets to the Predators game on March 1 at 1:00 pm. (Chicago Blackhawks). The tickets are in the cheap seats and only cost $17.00 each. The kids are selling them as best they can, but based on last nights inventory, it appears they would be well short. They looked very dejected when I broke the news, until I told them I would help out if I could. That's where each of you step in. If each of you could buy just one ticket, that would sell 30 tickets and I think we would close. If you bring your spouse or a date and buy two tickets, that would sell 60 tickets and we would be in for sure. Please let me know ASAP if you would be interested. (I need to turn the money in this weekend). Your help would be greatly appreciated by these fine young men as well as myself. Thanks, Dan Bartholemew DEBartholomew@bwsc.net [We should all buy tickets to this game, even if we can't make it. $17.00 isn't asking alot...and its hockey for crying out loud. I am definitly in! - Nanochick] |
Who the hell is moon pie, and why the hell do I like him/her so much? by flynn23 at 1:49 am EST, Jan 21, 2003 |
Just curious |
|
RE: Who the hell is moon pie, and why the hell do I like him/her so much? by Reknamorken at 12:36 am EST, Jan 22, 2003 |
flynn23 wrote: ] Just curious My friend... |
|
|
RE: Who the hell is moon pie, and why the hell do I like him/her so much? by Moon Pie at 3:46 pm EST, Jan 22, 2003 |
flynn23 wrote: ] Just curious I'm Rekna's friend. I can not explain why you - or anyone - would like me. The National Academy of Sciences is currently funding research into the matter. Who the hell are you, and why do I like your post so much? |
|
| |
RE: Who the hell is moon pie, and why the hell do I like him/her so much? by flynn23 at 4:56 am EST, Jan 23, 2003 |
Moon Pie wrote: ] flynn23 wrote: ] ] Just curious ] ] I'm Rekna's friend. I can not explain why you - or anyone - ] would like me. The National Academy of Sciences is currently ] funding research into the matter. Who the hell are you, and ] why do I like your post so much? I'm just diggin your posts a lot. Keep em coming. (and yes, I actually do talk like that) |
|
| | |
RE: Who the hell is moon pie, and why the hell do I like him/her so much? by Moon Pie at 3:14 pm EST, Jan 23, 2003 |
flynn23 wrote: ] Moon Pie wrote: ] ] flynn23 wrote: ] ] ] Just curious ] ] ] ] I'm Rekna's friend. I can not explain why you - or anyone - ] ] ] would like me. The National Academy of Sciences is ] currently ] ] funding research into the matter. Who the hell are you, and ] ] ] why do I like your post so much? ] ] I'm just diggin your posts a lot. Keep em coming. ] ] (and yes, I actually do talk like that) Well thanks so much, I'm glad you dig em. You're in my circle. |
|
Those moments by Catonic at 7:12 am EDT, Jul 24, 2007 |
There are those moments when you look at something, try a few different solutions and watch them fail, then think of something truly perverted to solve the problem. Like using xcopy in a DOS window on Windows XP under Parallels on a Mac to copy files from an NTFS USB hard drive to a Samba share mounted in Finder to a UNIX mount point by Mac OSX... and it works. And doesn't crash after five seconds. And I say to myself: "My god, I am a pervert." |
How to do AHAH without a freakin framework by Lost at 12:54 am EDT, Apr 13, 2008 |
// Returns a new XMLHttpRequest for IE and others function createXMLHttpRequest() { if (window.ActiveXObject) { return new ActiveXObject("Microsoft.XMLHTTP"); } else if (window.XMLHttpRequest) { return new XMLHttpRequest(); } } // Insert content from a url to a div AJAX style using a GET function doAJAXGet(divId, url) { if(document.getElementById(divId)) { // Until the div's content loads, assign a 'loading' image. document.getElementById(divId).innerHTML = " "; var xmlHttp = createXMLHttpRequest(); xmlHttp.onreadystatechange = function() { if(xmlHttp.readyState == 4) { if(xmlHttp.status == 200) { document.getElementById(divId).innerHTML = xmlHttp.responseText; } } }; xmlHttp.open("GET", url, true); xmlHttp.setRequestHeader("Content-Type", "application/x-www-form-urlencoded"); xmlHttp.send(null); } }// Insert content from a url to a div AJAX style using a POST function doAJAXPost(divId, url, args) { if(document.getElementById(divId)) { // Until the grid loads, assign a 'loading' image. document.getElementById(divId).innerHTML = " "; var grid_xmlHttp = createXMLHttpRequest(); grid_xmlHttp.onreadystatechange = function() { if(grid_xmlHttp.readyState == 4) { if(grid_xmlHttp.status == 200) { document.getElementById(divId).innerHTML = xmlHttp.responseText; } } }; grid_xmlHttp.open("POST", url, true); grid_xmlHttp.setRequestHeader("Content-Type", "application/x-www-form-urlencoded"); grid_xmlHttp.send(args); } } |
There is a redundant post from Swater not displayed in this view.
|
|