// Most climate models are written in Fortran,
// but I have developed a more accurate one in C++
// Note that method fundingDriesUp() is virtual
// and can be overridden by an educated Congress
class ClimateScam
{
public:
static const bool WISHFUL_THINKING = false;
ClimateScam()
{
m_global_warming_scam = true;
m_global_cooling_scam = false;
}
~ClimateScam()
{
switchBackToGlobalCoolingScam();
}
void model();
virtual void dataTamper() = 0;
virtual void getCaughtDataTampering() = 0;
virtual void makeBSPublicRelationsStatement() = 0;
bool noWarmingFor18years() { return true; }
virtual bool fundingDriesUp() { return WISHFUL_THINKING; }
void switchBackToGlobalCoolingScam()
{
m_global_warming_scam = false;
m_global_cooling_scam = true;
}
private:
bool m_global_cooling_scam;
bool m_global_warming_scam;
};
void ClimateScam::model()
{
while(m_global_warming_scam)
{
dataTamper();
sleep( rand(10000) );
getCaughtDataTampering();
sleep( rand(10000) );
makeBSPublicRelationsStatement();
std::cout << "Goddard may have been right about this"
<< "one but was wrong about everything else"
<< std::endl;
sleep( rand(10000) );
if ( rand(10000) == 0
&& noWarmingFor18years()
&& fundingDriesUp() )
{
// Destructor automatically switches back to global
// cooling scam;
delete this;
}
}
}
int main()
{
ClimateScam* global_warming_scam = new ClimateScam();
global_warming_scam.model();
}
Disrupting the Borg is expensive and time consuming!
Google Search
-
Recent Posts
- Arctic Report card Summer 2026
- Elon Pushing Pushing Geoengineering
- Earth, Wind And Fire
- On The Road Again
- Vandalism At The Reflecting Pool
- Fifty Years Ago Today
- Truth Or Consequences
- US Climate Trend Maps
- Declining Spring Snow Cover In Northern New Mexico
- You Can’t Fool Mother Nature
- Cattle And The Climate
- One Atomic Bomb Per Hour
- New Video : Analyzing Oil And Gas
- Is Antarctica Melting?
- High Speed Analysis And Visualization
- El Nino To The Rescue?
- Fake News Update
- Growth Of Antarctic Sea Ice
- 65 Years Of Progress!
- El Nino To The Rescue?
- Worst March Drought On Record
- ChartGL Process Control Demo
- The Biggest Money Laundering Scam
- Drought In The Headwaters Of Lake Powell
- Unrealistic Expectations Of Water Availability
September 2026 M T W T F S S 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 Recent Comments
- D. Boss on Arctic Report card Summer 2026
- Bob G on Elon Pushing Pushing Geoengineering
- Dave A on US Climate Trend Maps
- John Francis on Elon Pushing Pushing Geoengineering
- John Francis on Elon Pushing Pushing Geoengineering
- conrad ziefle on Elon Pushing Pushing Geoengineering
- conrad ziefle on Elon Pushing Pushing Geoengineering
- Lonnie on Elon Pushing Pushing Geoengineering
- arn on Elon Pushing Pushing Geoengineering
- arn on Elon Pushing Pushing Geoengineering


















