This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
Show posts MenuQuoteThe Tennessee Center for Policy Research says today that Al Gore, who won an Academy Award last night for his film about global warming and the importance of energy conservation, uses 20 times the national average to power his Nashville mansion. What's more, his use has increased since the release of "An Inconvenient Truth". The Center says:
"Gore's mansion consumes more electricity every month than the average American household uses in an entire year, according to the Nashville Electric Service (NES). The average household in America consumes 10,656 kilowatt-hours (kWh) per year, according to the Department of Energy. In 2006, Gore devoured nearly 221,000 kWh—more than 20 times the national average. Last August alone, Gore burned through 22,619 kWh—guzzling more than twice the electricity in one month than an average American family uses in an entire year. As a result of his energy consumption, Gore's average monthly electric bill topped $1,359. Since the release of An Inconvenient Truth, Gore's energy consumption has increased from an average of 16,200 kWh per month in 2005, to 18,400 kWh per month in 2006. Gore's extravagant energy use does not stop at his electric bill. Natural gas bills for Gore's mansion and guest house averaged $1,080 per month last year ... In total, Gore paid nearly $30,000 in combined electricity and natural gas bills for his Nashville estate in 2006."
So I'm supposed to live like a raccoon while this tubby fuck drives a go-cart from room to room on his fabulous estate. These dirty god-damn hippies all tell me how awful America is and how great everyone else is, and we should all roll around in the mud like these third world nightmares whose number one export is alien like diseases, meanwhile he's flying back and forth to Caligula-like parties in Beverly Hills on his 20 million-dollar Gulfstream jet. I'm supposed to power my shower with a treadmill, but according to this editorial in the USA Today, Gore can't even be bothered to sign up for "earth friendly" power sources like wind energy, even though the utility companies that service his homes (he has three) in Tennessee and Washington DC offer it as an alternative. I think Ed Begley Jr. is a damn retard, but when he shakes his malnourished fingers at me and says we can all live "green", I at least know that he's speaking from experience, because he truly lives that life. Al Gore is not a scientist or an expert on weather and he's sure as hell not an environmentalist. He might as well tell me he's a Japanese super train that transforms into a tiger.
QuoteFailing to go high in Cotton reveals Raiders' limitations
By JOHN P. LOPEZ
Copyright 2006 Houston Chronicle
DALLAS - Alabama kicker Jamie Christensen's toe took a divot out of the Cotton Bowl turf, appropriately enough, considering Christensen snap-hooked the winning field goal low but through the uprights.
"I had high hopes he would miss that kick," Texas Tech coach Mike Leach would say later, deadpanning his way through talking about a 13-10 Cotton Bowl defeat.
It was a result that Leach lamented while admitting Alabama played the better all-around game. He felt the Red Raiders could have won, should have won and perhaps with a break here or there would have won.
But in reality, the Tide's third-quarter seven-point lead seemed insurmountable. The strangling, pressing defense the Tide played against Leach's often-unstoppable offense was that good.
The Raiders' only touchdown came on a short field after a short punt and led to the final-play dramatics. But the big story there was that it was the Raiders' only TD.
This offense helped Tech become a feared threat in the Big 12 and nationally, ranking first in Division I football in passing each of the past four seasons. This offense has scored 50 or more points 16 times under the creative hand of Leach.
This team, because of Leach's offensive vision and ability to bring the best out of slightly better-than-average quarterbacking talent, can score 40, 50, even 80 points almost by accident.
But this is January.
The question of just how far this transformation of Texas Tech football can go was never more clear than in the frustration the Raiders felt on this warm, sunny day.
Is that all you've got?
In January, when championships and big-time bowl games are won, more often than not defenses are put together much like the one that shut down and overwhelmed the Raiders offense.
Not always do defenses rank second nationally in scoring like Alabama's. But if you've ever wondered if Leach's quirky spread-and-read offense is good enough to win at the BCS level, or just good enough to put up big numbers and win, Monday's effort did nothing to convince you otherwise.
Tech's offense can be astounding against most teams and many Big 12 opponents. But teams don't get to January bowl games and the biggest stages without quality, athletic defenses. Witness Tech's defense helping the Raiders get to the Cotton Bowl by ranking 25th nationally coming into Monday's game.
Leach bristled only once after Monday's loss, when he was asked about his calling frequent fade routes for receivers down the sidelines.
"The defender was right here," Leach said, gesturing. "There's a huge amount of grass (behind the cornerback), and our thought was that if we would whip this guy's (backside) and throw the ball here, we would get some yards."
Over and over, the Tide cornerbacks were up to the task, but what would you expect in January?
Leach kept trying to loosen the Tide defense with fade routes and slants. The Tide secondary kept making plays.
"Everybody was talking about if we can hold them to 29 or 30 points, we'd have a chance to win," Tide safety Charlie Peprah said. "We didn't see it that way."
Numbers don't lie
What Leach has done for the Raiders has been remarkable. And when asked about facing a defense like Alabama's, he said it was nothing new, citing the top defenses the Raiders have played in the Big 12.
But counting Monday, Tech faced four defenses ranked in the top 20 nationally. And against those four defenses, the Raiders averaged 18.5 points. Against everyone else, they averaged 57.
Even if you take away the three laughable gimmes in non-conference play, the Raiders averaged nearly 20 points more against other opponents (38. than against the top-20 defenses they faced.
Leach has long said that he never worries about the opponent so much as his team's ability to get the job done offensively. It's a philosophy and approach that has served the Raiders well. After all, they have become a consistent winner and they did get here. They can put on spectacular scoring shows.
But in January, there are no gimme defenses. You'd better worry about the opponent.
You'd better tweak the usual fare thrown at the other guys. In January, it's about playing in big-time BCS games, facing the most athletic opponents and taking the next step.
Leach has brought this program close. But Monday didn't answer a lot of questions about how far this offense can carry a team.
[email protected]
QuoteBut in reality, the Tide's third-quarter seven-point lead seemed insurmountable. The strangling, pressing defense the Tide played against Leach's often-unstoppable offense was that good.
QuoteThis team, because of Leach's offensive vision and ability to bring the best out of slightly better-than-average quarterbacking talent, can score 40, 50, even 80 points almost by accident.
QuoteNot always do defenses rank second nationally in scoring like Alabama's
QuoteOver and over, the Tide cornerbacks were up to the task, but what would you expect in January?
Leach kept trying to loosen the Tide defense with fade routes and slants. The Tide secondary kept making plays.
#ifndef DYNBUFFER_H_INCLUDED
#define DYNBUFFER_H_INCLUDED
#pragma once
class DynBuffer {
private:
unsigned long dwLen;
unsigned long dwPos;
char *lpszBuffer;
public:
DynBuffer() { lpszBuffer = 0; dwLen = 0; dwPos = 0; }
~DynBuffer() { delete [] lpszBuffer; lpszBuffer = 0; }
void add(const char *lpszData);
void add(const void *lpData, unsigned long dwLength);
void add(unsigned long dwData);
void add(int iData) { add((unsigned long)iData); }
void add(unsigned short uData);
void add(char bData);
void add(unsigned char bData);
void get(void *lpDest, unsigned long dwLength);
void shift(unsigned long dwDest);
void insert(const void *lpData, unsigned long dwPos, unsigned long dwLength);
unsigned long length() { return dwLen; }
void clear();
operator char *(void) { return lpszBuffer + dwPos; }
operator unsigned long(void) { return *(unsigned long *)(lpszBuffer + dwPos); }
operator unsigned short(void) { return *(unsigned short *)(lpszBuffer + dwPos); }
operator char(void) { return lpszBuffer[dwPos]; }
// PROBLEM LINES
operator ++(int) { dwPos++; if(dwPos > dwLen) dwPos = dwLen; }
operator --(int) { dwPos--; if(dwPos < 0) dwPos = 0; }
operator +=(int size) { dwPos += size; if(dwPos > dwLen) dwPos = dwLen; }
operator -=(int size) { dwPos -= size; if(dwPos < 0) dwPos = 0; }
// END PROBLEM LINES
};
#endif
Quote1>c:\projects\dmbot\DynBuffer.h(31) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
Page created in 0.076 seconds with 13 queries.