“The sky is falling! The sky is falling! Computers won’t get any faster unless programmers learn to write parallel code!” squawked Chicken Licken.
Henny Penny clucked in agreement: “Worse, there is Cloud Computing on the horizon, and it requires programmers to write parallel AND distributed code!”
Swamp Fox Analyst
Musing on business intelligence, particularly using Pentaho. Also interests in software design, particularly in the open source community.
Sunday, June 13, 2010
Children of Prolog
Saturday, June 5, 2010
Trends in programming and Amdal's Law
Wednesday, June 2, 2010
Trends in programming
- isolation (the probability of isolated systems failing is independent. So processes need to be isolated.)
- concurrency (do you need to worry about how many concurrent processes can you support? You need at least two systems to make a non-stop system. Even a two computer system is concurrent. You can't avoid concurrency)
- failure detection (if you can't detect a failure, you can't fix it. the thing that crashed can be the thing that detects failures.)
- fault identification (You need to figure out why there was a failure if you want to fix it.)
- live code upgrade (Systems that should never stop, need live code upgrade)
- stable storage (no backups, implies multiple copies. must keep crash logs)
In short, the article is a progress report on a valid effort but suffers badly from agressive overselling of its significance, long before convincing results have been reached.
Monday, May 10, 2010
Gaelyk again
Saturday, March 20, 2010
Jeffrey Zeldman vs. Ed Bott
In one breath he said, “I’m not challenging the quality of the hardware and software improvements,” and then, in the very next breath, he criticized Microsoft’s “brilliant browser engineers” for “torturing the IE rendering engine every couple of years instead of putting it out of its misery.”This certainly seems damning. But it isn't quite true. Each of the quotes can be pulled from Zeldman's blog, IE9 Preview, but Bott's juxtaposition of Zeldman's words are downright deceptive. The two statements were separated by four paragraphs, so perhaps Bott quite understands what 'very next breath' means. Or more likely, Bott is being intentionally being misleading.
- html5
- SVG 1.1
- GPU rendering using Direct2D
- CSS3
- new JavaScript engine
- improving Acid3 (which did improve from 32 to 55)
- support for CSS3 selectors (which improved from passing 574/578 tests to a perfect 578/578)
Thursday, March 4, 2010
Making the case for Scala
Monday, March 1, 2010
David Pollak's Web Framework Manifesto
The best part of blogs is that is makes it possible for people with clear ideas, not just fame or access to money, to be published. David Pollak certainly falls within the category of clear thinking people, and his Web Framework Manifesto, from November 2006, is a great technical summary of what we all should expect of a web framework. It is fascinating to see the breadth of frameworks that he has examined.
Security figures predominantly in this manifesto. He states:
There should exist an orthogonal security layer such that objects that are not accessible to a user should never be returned in a query for the user and fields on an object that are not accessible should not be visible. The security and access control rules should be algebraic and demonstrable during a security audit. This means that neither the view nor the controller should have to test for access control. Objects and requests should be sanitized before they get to the “controller.”At first, this seems like Spring Security, but the algebraic caught my eye. I don't know what this means. A Google search found Beyond Separation of Duty: An Algebra for Specifying High-level Security Policies, but this seems quite theoretical at this point. In the IEEE Security & Privacy Journal, the article, A Metrics Framework to Drive Application Security Improvement, describes a more pragmatic, but still quantitative approach to security.
David then went on to create and act as benevolent dictator for life of the Liftweb framework, or just Lift. As a benevolent dictator, it is no surprise that the key ideas of the Web Framework Manifesto are all present in Lift.