Paul M. Jones

Don't listen to the crowd, they say "jump."

Trying Terrorists

When appellate courts decide questions of law, they set precedents for future cases. If they make allowances for the exigencies of the war on terror in order to uphold convictions of [Khalid Sheikh Mohammed] and his associates, it could end up diminishing the rights of ordinary criminal defendants. That’s why the smart civil-libertarian position is to oppose trying terrorists as civilians.

Maybe reducing rights is part of the point. Via Instapundit » Blog Archive » JAMES TARANTO: “You have to wonder if the Obama administration and its supporters bothered to think….



Experimental Economics in EVE

This is via my brother, Ben Jones, who is a molecular biologist by training and a PHP programmer in practice.

When large external events like these happen they of course impact relative prices within EVE but the robustness of the market quickly allows prices to reflect these changes or shocks to the market. This might be a good lesson regarding our real life economies, showing that if we allow markets to adjust without intervention from governments they correct much quicker than when we try to steer prices to the "correct" level - given that the rules of the market are clear and that information flows relatively freely between agents on the market.

from http://www.eveonline.com/devblog.asp?a=blog&bid=707

A brilliant example of free markets in action. (Incidentally, from a conversation with someone else entirely, you need to realize that "markets" does not mean "businesses" or "companies". It means "the interactions that arise between buyers and sellers" -- business is one part of it, consumers are another.)


The Future of Zend Framework is Solar

I have said it before and I'll say it again now: If you want to see the future of Zend Framework, look at the Solar Framework for PHP 5.

FYI: This is a cheerleading post. Some will be annoyed by it or find it "unfair". Others may find it informative and enlightening. I make no apology for advocating what I think are the good things about Solar, especially when other projects appear to be mimicking those things.

I noticed that Matthew posted the ZF 2.0 roadmap yesterday:

http://framework.zend.com/wiki/display/ZFDEV2/Zend+Framework+2.0+Roadmap

Solar is already doing most of what is described as the future for Zend. Let's go over this, shall we?

Unified constructor. All constructors will (optionally) accept an array of options or Zend_Config object as the first argument. This allows for more flexibility to add new arguments to the constructor, have variable numbers of arguments, and allow "named" arguments. Additionally, it's a good technique for allowing Dependency Injection.

Solar has had a framework-wide unified constructor for years now. As far as I know, Solar is the first PHP framework to demonstrate this design pattern and give it a name. You can have a unified constructor right now with Solar.

In addition, we already have a unified dependency injection and service locator implementation, via the unified configuration mechanism and a lazy-loading registry. You can have DI/SL right now with Solar.

Options. In ZF 1.X, the various components which accept options accept a variety of formats: some expect underscore_separated keys, others expect camelCasedKeys, others expect UPPERCASEDKEYS, and some expect lowercasedkeys. This leads to confusion for many, and also leads to difficulties debugging. Our goal in ZF 2.0 is to standardize option keys to correct this situation.

Currently, we are leaning towards all_lowercase_underscore_keys.

Solar has already standardized on its config keys as lowercase-underscore. You can have standard config keys right now with Solar.

Exceptions. Each component will have an Exception marker interface, with exceptions defined for discrete exception types thrown by the component. The concrete exceptions will either extend the global Exception class or an SPL Exception, and also implement the component Exception interface.

Solar provides a unified exception mechanism already. This is not quite the same thing as described in the ZF2.0 document, but if the idea is to have a unified way of throwing and recognizing exceptions, Solar is already doing it.

Design By Contract.

OK, we don't really do this. Solar tends to use adapters, plugins, class stacks, and duck typing, not interfaces.

Elimination of most singletons.

Solar doesn't use singletons. We use the registry and, occasionally, unified static-method-collection classes. You want two or more database connections? Mark them for lazy-load in the registry, and set your config file to use the appropriate service locator keys for whatever objects may need them. You can have this right now with Solar.

Creation of components for general-purpose, cross-functional actions. A number of components duplicate code, and we want to push the duplication areas into discrete components that the original components may then consume. Some of these include:

  • Plugins/Helpers/Strategies (seen currently in Zend_Controller_Front, Zend_Controller_Action_Helper, Zend_View (helpers and filters), Zend_Form (validators, filters, and decorators), etc.). Plugin discovery and loading could benefit from a common API.
  • Decorators (seen currently in Zend_Form; other areas could benefit from the pattern)
  • Factories (seen currently in Zend_Db, Zend_Navigation_Page, Zend_Auth, Zend_Translate, Zend_Cache, etc.)
  • Caching (seen currently in Zend_Translate, Zend_Locale, Zend_Queue, Zend_Paginator, Zend_Feed_Reader, Zend_Db_Table, etc.)

Solar already has a standardized factory mechanism and a standardized adapter approach. With the lazy-loading registry and DI/SL mechanism we can inject a cache object into any other object that's ready to receive it. You can have these right now with Solar.

(In fairness, we don't use decorators much, and the plugin systems are more a standard approach using class stacks than an encapsulated system.)

Usage of new language features within plugin architectures.

Solar isn't on 5.3 yet, but then, neither is Zend Framework.

Autoload-only. We will move to using autoloading throughout the framework. This solves a number of performance issues, as well as simplifies coding dependencies (particularly exceptions).

Solar is already autoload-only. You can be autoload-only too right now with Solar.

Namespaces. PHP namespaces benefit frameworks and libraries more than any other code bases, and ZF can benefit from it greatly, particularly with components such as Zend_Search_Lucene and Zend_Controller.

Solar already has first-class support for PHP 4/5 style namespaces (i.e., pseudo-namespaces) and supports mixing of multiple "vendor" prefixes in projects (and supports cross-vendor fallbacks across library hierarchies). Solar expects that you will be working within your own pseudo-namespace already, and so is poised to use 5.3 namespaces proper with little effort. You can have namespace-like support right now with Solar.

goto

As with "new language features" above, Solar isn't on 5.3 yet, but then, neither is Zend Framework.

MVC Implementation: Our current MVC implementation is increasingly adding overhead to the dispatch cycle, slowing down the request cycle. While you can squeeze additional performance out of it via stripping require_once calls and using autoloading, the fastest requests are still far short of other, slimmer frameworks ...

Solar's dynamic dispatch cycle is much faster than the one in Zend Framework, and has been for years; see these benchmarking posts:

You can have a much faster dispatch cycle right now by using Solar.

Models and Master-Slave

One more thing that Zend Framework doesn't have, that Solar does, is an integrated model system. Zend Framework recently dropped the idea of having their own, and expect to depend on an external system for reasonable model/record/collection support. Solar has an integrated model system right now with support for single table inheritance, various relationships, unified saving of object graphs, automatic data filtering, automatic form generation, calculated columns, collection methods, automatic data caching and clearing, and much more.

Yet another thing: we also provide support out-of-the-box for master-slave MySQL replication, with no changes needed to the codebase. Change your config file from the single-server connection to the master-slave connection, and you are done. (Well, you might have to wrap some parts in transactions, but after that, it will work on both single-server and master-slave setups.)

You can have robust models and master-slave support right now with Solar.

Modesty

There is one significant thing that Zend has that Solar doesn't: narrative documentation. Our API docs are second to none, but the tutorials are lacking. We've been spending our time making the framework great, not writing about the framework. You can help with that if you like by adding to the wiki.

Conclusion

The point of all this is not to belittle Zend, Zend Framework, its developers, or its contributors. The point is to ask Zend Framework adopters: why wait for ZF 2.0 when you can have all those features and more, right now, by using Solar?

(Let the ZF apologists begin their comments right now. ;-)


Camille Paglia Against The Health Care Bill?

I can't say she's all right, but she does get a hell of a lot right.

As for the actual content of the House healthcare bill, horrors! Where to begin? That there are serious deficiencies and injustices in the U.S. healthcare system has been obvious for decades. To bring the poor and vulnerable into the fold has been a high ideal and an urgent goal for most Democrats. But this rigid, intrusive and grotesquely expensive bill is a nightmare. Holy Hygeia, why can't my fellow Democrats see that the creation of another huge, inefficient federal bureaucracy would slow and disrupt the delivery of basic healthcare and subject us all to a labyrinthine mass of incompetent, unaccountable petty dictators? Massively expanding the number of healthcare consumers without making due provision for the production of more healthcare providers means that we're hurtling toward a staggering logjam of de facto rationing. ...

A second issue souring me on this bill is its failure to include the most common-sense clause to increase competition and drive down prices: portability of health insurance across state lines. What covert business interests is the Democratic leadership protecting by stopping consumers from shopping for policies nationwide? Finally, no healthcare bill is worth the paper it's printed on when the authors ostentatiously exempt themselves from its rules. The solipsistic members of Congress want us peons to be ground up in the communal machine, while they themselves gambol on in the flowering meadow of their own lavish federal health plan. Hypocrites!

...

International models of socialized medicine have been developed for nations and populations that are usually vastly smaller than our own. There are positives and negatives in their system as in ours. So what's the point of this trade? The plight of the uninsured (whose number is far less than claimed) should be directly addressed without co-opting and destroying the entire U.S. medical infrastructure. Limited, targeted reforms can ban gouging and unfair practices and can streamline communications now wastefully encumbered by red tape. But insurance companies and the pharmaceutical industry are not the sole cause of mounting healthcare costs, and constantly demonizing them is a demagogic evasion.

All emphasis mine, via Salon.com | Pelosi's victory for women.


20 Years Ago Today

The Berlin Wall came down. Via 20 Years Ago Tomorrow - The Austrian Economists.

Here's another piece:

Today, Berlin celebrates the 20th anniversary of the fall of The Wall. Sadly, much of Europe is already beginning to forget the atrocities wrought by communism. We libertarians regularly make the point that while Nazism is still regularly and justifiably vilified, communism periodically enjoys rebirths of chic. The point can’t be made enough. Not to diminish the horrors of Nazism, but to confront the cultural whitewashing of the horrors of Stalin, Mao, Pol Pot, Il, and the others.

via http://www.theagitator.com/2009/11/09/fall-of-the-wall/.



The Road From Serfdom

In spite of its monumental failure to bring social peace and material abundance, socialism is enjoying something of a renaissance. From Venezuela to Bolivia to South Africa, government ministers espouse the supposed virtues of socialism. Even in the West, some policies are taking government intervention in the economy to levels unseen in decades. Given the renewed interest in alternatives to capitalism, it is perhaps appropriate to recall the last time that socialism was tried with real gusto.

...

As the Austrian philosopher Friedrich von Hayek explained in his 1944 classic, The Road to Serfdom, central planning leads to massive inefficiencies and long queues outside empty shops. A state of perpetual economic crisis then leads to calls for more planning. But economic planning is inimical to freedom. As there can be no agreement on a single plan in a free society, the centralization of economic decision-making has to be accompanied by centralization of political power in the hands of a small elite. When, in the end, the failure of central planning becomes undeniable, totalitarian regimes tend to silence the dissenters--sometimes through mass murder.

via The Road From Serfdom -- The American, A Magazine of Ideas.


This is What Happens When You Drop the Ball

While DHS was busy putting tea parties and anyone who dares fly the official military Gadsen flag on the domestic terrorist watch list, a real terrorist was spouting off online, glorifying suicide bombings and our mission in Iraq. I mean, I’m sure if I drink enough I might be able to understand the perception that a bunch of middle-class people peacefully dissenting with certain Washington policies are way more dangerous than a dude who talked about terrorist stuff on social sites and had gotten authorities’ attention six months ago.

via This is What Happens When You Drop the Ball «.


How Animals Decide Things

When scientists put roaches into a dish containing identical shelters, they thought the roaches would fill one shelter and then use others for spillover. But the gregarious bugs defied expectations.

When more than half the bugs could fit into one shelter, they divided into two equal groups: For instance, when 50 had a choice of three shelters, each with a capacity of 40, 25 cockroaches gathered in one, 25 in another, and none in the third, biologist José Halloy of the Free University of Brussels and colleagues reported last month in Proceedings of the National Academy of Sciences.

Dividing up evenly, he says, "spreads benefits and risks among all individuals," rather than having 40 bugs safe and happy while the 10 for whom there was no room at the inn suffer. But when each of three shelters could hold 70, all 50 cockroaches packed into one. Each outcome was optimal, producing the greatest safety in numbers without crowding.

Yet no leader assigns lodging. Roaches just check out shelters, with later arrivals deciding that a crowd signifies "this is the place to be." Overcrowding means "find somewhere else." A group decision that perfectly balances protection and crowding emerges from dozens of such individual decisions.

via Tales of How Animals Decide Things - WSJ.com.