If we are to believe what we learned in history class then our forefathers reached a point of revolution over the taxation of tea. Certainly there were many more issues, but this tea tax was the proverbial straw. Tea was a basic commodity of the day that was consumed by most colonialists and the tax had a direct impact on them all. When you consider what the colonial leaders had to put at risk and what their chances were, is the idea of revolting against our government today even a possibility any more? Surely today we are subject to much greater taxes, and some would say these taxes have a greater impact on our lives than the tea tax did on colonial life. With tis healthcare law we are looking at the prospect of such an increase in taxation that it will truly have a greater impact on our lives.
Archive | January 2013
Second Amendment under assault
The question of the second amendment rights seems to always point to a couple of areas; that of hunting and protecting oneself from would be assailants. There is also an undertone along the idea that weapons of today could not be foreseen and that our forefathers would have done things differently had they known.
With respect to the technological advances in weaponry, it is often mentioned that the only weapons at the time were muskets which were very limited in their ability to do harm. This is not a true statement. There were a number of other weapons available during that era.[1] The blunderbuss, a shotgun of sorts, capable of placing a swath of projectiles into a target area up to 50 yards away. Mortars and cannons were used to deliverĀ bombs that were powder filled projectiles that exploded on delivery. The cannon was also used with a number of other types of “shot”. Case, container, grape and pineapple shot, which were essentially a way of placing many lead or iron balls into one projectile resulting in a spread much like the blunderbuss but with a range up to 600 yards. Split shot was simply a cannonball split in halve so that it took two paths upon firing. Chain and rod shot was the use of split shot (or two separate cannonballs) joined together by either a chain or a rod, resulting in a device that rotated around its center of mass used to target the mast and rigging of ships or the legs of horses and/or men. Hot shot was iron shot that was heated red hot in a fire and used to deliver fire-causing attacks. In addition to the blunderbuss, mortar and cannon, there were also pistols, and though they were limited in range and accuracy, they were something that could be concealed. And finally, in addition to other weapons being available, though limited in availability, the advent of grooved barrels improved both accuracy and range of the musket and could be considered the technological advancement in weaponry of the time.
Some AJAX Zend style with JQUERY
I recently had the opportunity to work on a piece of code that was to accept a couple of values based on a couple of drop-down selectors. The second of the selectors needed to be relative to the value selected in the first one. This was part of a project that uses the Zend Framework. In order to not compromise my NDA, I am changing the particulars, but the nature of the task remains true. To that end, I will start by setting the environment. As stated, I am using the Zend Framework and implementing the MVC design pattern that ZF is known for. I am using the Zend_Layout extension and have the standard application/layouts/scripts folder with a “layout.phtml” file containing my overall layout. I am using just the Controller/Action setup rather than the Module/Controller/Action one, so if you are utilizing modules, then you will need to adjust this to your environment. I also use Zend_Form to create my form input and you will see some example code based on this a little later that will show two drop-down selectors defined on a form. The first drop-down selector will be called Category and the second drop-down selector will be called SubCategory. I know, how original! So, now that the background is laid out, lets start by defining the solution I am setting out to accomplish here.