// 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!
-
Recent Posts
- Toto Has Moved!
- Cooling Nuuk
- Escape The Heat At Your Local Movie Theater
- Charles Butler Interview – May 2, 2016
- Massive Greenland Fraud Is Rapidly Growing
- More Detail On The NSIDC Disappearing Ice
- 1995 IPCC Report Showed No Troposphere Warming From 1958 To 1995
- More On The NSIDC Disappearing Ice
- Climate Hustle Today
- On The Air Monday
- NOAA Quadrupling Radiosonde Temperatures By Data Tampering
- Skiing Is A Thing Of The Past
- Alarmist Brains Depleted Of Oxygen
- Climate Scam Being Driven By Politicians/Actors/Journalists
- 1905 : Valdez, Alaska Relocated Due To Glacial Melting
- Today’s Climate Fraud Winners – Science News
- Most Influential Climate Denier On Twitter
- SCIENCE : 230 Years Of Blaming White Men For Climate Change
- Battling Climate Misinformation In Santa Fe
- 1906 : Belief In Climate Change Is Due To Defective Memories
- Oswald’s Rifle?
- The Arctic Is Ice Free – How Can Sea Ice Be Declining?
- Climate Hustle Next Monday – One Night Only
- The Surface Temperature Record Is A Farce
- NASA – Doubling Sea Level Rise By Data Tampering
Recent Comments
daveburton on Gallup Poll Shows That Very Fe… daveburton on Will Yale Censor My Comme… daveburton on Gallup Poll Shows That Very Fe… John on The Price Of Telling The Truth… Don Gaddes on Seven Year Drought Killed 40%… Bill Sokeland on NSIDC : Arctic Was Ice Free In… Notes To Ponder on 45 Years Since Paul Ehrlich Wa… gator69 on A Proof That Greenhouse Gas Dr… gator69 on Toto Has Moved! Menicholas on Toto Has Moved!
LOL!
Me to literally. Thanks Steve you mad my morning.
Do I compile with the BULLSHIT flag on or off?
e.g.
#define BULLSHIT True
That flag is already set by default in the CAGW compiler.
Oh, sorry, you’re right! 😉
It will only half compile until you insert another 40 cents more. for the next 3 minutes.
… shades of batch processing on corporate’s (CIC’s) mainframe circa 1980’s; prerequeiste was a valid ‘EO’ (engineering charge number or ‘Engineering Order’ number) on the first JCL ‘Job’ card in the ACCNTINFO columns.
http://www.simotime.com/jclone01.htm#JobCard
.
The rand number sub is hilarious.
Only in “climate science”.
(Mosh will probably copy.)
Willis Eschenbach demands that everyone doing science releases their code. Send this to him to show that you are doing science …
Excellent!!
Steve
I note that in this updated code, the variable ‘ClimateNormal’ is never used.
Is that correct?
Fortran.
Why?
Watfor?
Because it is basically the computer equivalent of ancient Sanskrit…something no sane person can possibly EVER comprehend…therefore it makes checking the code and debugging pointless.
Actually Fortran is used because it is very well optimized and parallelizable on the computing farms used in large scale modelling.
That doesn’t make the results of the models any better, because the assumptions are already wrong, but yeah, it would be the right tool for the job.
Google WATFOR and you might get Fred’s joke…
I am not a C+++ weenie but I think you need some define statements before this will compile.
And you left out Global_Temp_Actual = BTSOOM.
This needs a Harry_Readme.txt
You should really put a break after your delete this or you may get unexpected results (something may overwrite the contents of m_global_warming_scam before the loop condition is re-evaluated).
In practice, you need to define a new scam.
I think you have left lots of scope for your current model to be enhanced, simply adding functions such as missingHeatInTheOceans() and hideTheDecline() should easily keep it going till the next round of funding with mininmal changes. 🙂
Cute … don’t care much for the coding format (we now call it “common core coding”) .. but cute.
I think a more applicable language would be common LISP or Clojure.
Additionally, I think dataTamper() should be static since you have shown data tampering to be a constant and hence not a virtual method (one that can be overridden by inherited classes). Until you can actually break this model, I don’t see any inheritance overriding dataTamper(). Once the model is broken, then dataTamper() would be moot and shouldn’t be called again.
Will the destructor ever be called? In the model above, funding never dries up 😦
virtual bool fundingDriesUp() { return WISHFUL_THINKING; }
if ( rand(10000) == 0
&& noWarmingFor18years()
&& fundingDriesUp() ) // <<<<<<<
{
// Destructor automatically switches back to global
// cooling scam;
delete this;
}
You’re. Catching. On.
// Note that method fundingDriesUp() is virtual
// and can be overridden by an educated Congress
oxymoron : educated Congress
The destructor should also be made virtual. Otherwise you could have a memory leak.
Like Climategate?