inicio mail me! sindicaci;ón

Archive for September, 2008

Ron Paul predicted it all in 2002

Congressional Speech

Congressman Ron Paul
U.S. House of Representatives
July 16, 2002

Mr. Speaker, I rise to introduce the Free Housing Market Enhancement Act. This legislation restores a free market in housing by repealing special privileges for housing-related government sponsored enterprises (GSEs). These entities are the Federal National Mortgage Association (Fannie), the Federal Home Loan Mortgage Corporation (Freddie), and the National Home Loan Bank Board (HLBB). According to the Congressional Budget Office, the housing-related GSEs received $13.6 billion worth of indirect federal subsidies in fiscal year 2000 alone.

One of the major government privileges granted these GSEs is a line of credit to the United States Treasury. According to some estimates, the line of credit may be worth over $2 billion. This explicit promise by the Treasury to bail out these GSEs in times of economic difficulty helps them attract investors who are willing to settle for lower yields than they would demand in the absence of the subsidy. Thus, the line of credit distorts the allocation of capital. More importantly, the line of credit is a promise on behalf of the government to engage in a massive unconstitutional and immoral income transfer from working Americans to holders of GSE debt.

The Free Housing Market Enhancement Act also repeals the explicit grant of legal authority given to the Federal Reserve to purchase the debt of housing-related GSEs. GSEs are the only institutions besides the United States Treasury granted explicit statutory authority to monetize their debt through the Federal Reserve. This provision gives the GSEs a source of liquidity unavailable to their competitors.

Ironically, by transferring the risk of a widespread mortgage default, the government increases the likelihood of a painful crash in the housing market. This is because the special privileges of Fannie, Freddie, and HLBB have distorted the housing market by allowing them to attract capital they could not attract under pure market conditions. As a result, capital is diverted from its most productive use into housing. This reduces the efficacy of the entire market and thus reduces the standard of living of all Americans.

However, despite the long-term damage to the economy inflicted by the government’s interference in the housing market, the government’s policies of diverting capital to other uses creates a short-term boom in housing. Like all artificially-created bubbles, the boom in housing prices cannot last forever. When housing prices fall, homeowners will experience difficulty as their equity is wiped out. Furthermore, the holders of the mortgage debt will also have a loss. These losses will be greater than they would have otherwise been had government policy not actively encouraged over-investment in housing.

Perhaps the Federal Reserve can stave off the day of reckoning by purchasing GSE debt and pumping liquidity into the housing market, but this cannot hold off the inevitable drop in the housing market forever. In fact, postponing the necessary but painful market corrections will only deepen the inevitable fall. The more people invested in the market, the greater the effects across the economy when the bubble bursts.

No less an authority than Federal Reserve Chairman Alan Greenspan has expressed concern that government subsidies provided to the GSEs make investors underestimate the risk of investing in Fannie Mae and Freddie Mac.

Mr. Speaker, it is time for Congress to act to remove taxpayer support from the housing GSEs before the bubble bursts and taxpayers are once again forced to bail out investors misled by foolish government interference in the market. I therefore hope my colleagues will stand up for American taxpayers and investors by cosponsoring the Free Housing Market Enhancement Act.

Time to write Mr. Paul in this November…

McAfee buys Secure Computing

The most beautiful firewall I have ever come into contact with is Sidewinder. The first day I learned about Blurbs in the military was the day I began to jump with joy inside. Sidewinder has a very unique product that allows for an ultra-secure configuration. As with all things, McAfee will screw them up. I am sad inside now.

McAfee buys Secure Computing

So true

Everyone makes fun of me because my phones have the classic ringer. You know, like Grandma’s old phone that could take down a robber. As always XKCD hits it spot on :) Even included a Frank Sinatra reference to top it off

Multipath and Redhat Linux 5

As many of you know, multipath was finally integrated into Redhat Linux with the 5 series. This is great when you have multipath enabled during an install as you will see /dev/mapper/mpath0, but what happens post install when you attach new LUN? Here is the howto for what happens behind the scenes during a RHEL install:

  1. After the filer has attached and presented the new LUN reboot the machine allowing for the HBA card to recognize them
  2. Post-reboot login and verify with the drivers are present with the correct capacity: dmesg | grep sd
  3. Next we need the WWID for the new path. For this example assume that sdh is one of our newly presented multipath drives: scsi_id -gus /block/sdh
  4. Copy this output down and have it ready to input into a config file. I recommend pipping or copying down the results withing GNOME/vim
  5. Edit the /etc/multipath.conf with your editor of choice and look for the blacklist exception list. You will see a WWID “923847089123908u2389″ already listed. Copy that line and replace the “218934708912374″ with the output of command #3
  6. Reboot the box
  7. After the reboot login and cd /dev/mapper and verify that there is a newly listed mpath1. If this is not the case stop what you are doing and wash-rinse-repeat steps 1-6
  8. If there is a mpath1 we need to create a new partition. Since Linux sees the device as a new block, use fdisk as you would with any other drive: fdisk /dev/mapper/mpath1
  9. Since the drive is freshly paritioned you will need to reboot to allow the kernel to recognize the new parition table.
  10. Post reboot we can create a filesystem. I am going to assume you created one parition and are going to use ext3: mkfs.ext3 /dev/mapper/mpath1p1
  11. Next edit your /etc/fstab and point the new drive to a path you want the new mapping mounted to: /dev/mapper/mpath1p1 /storage ext3 defaults 1 1
  12. For the next portion I will operate under the assumption you are attaching more storage to your /opt directory for a new commercial install. As root drop to run level 2: init 2 This is the lowest run level where the / filesystem is mounted r/w and multipathd is running
  13. We will move /opt as it is current substatianted to /opt2: mv /opt /opt2
  14. Create the mount for the SAN LUN: mkdir /opt
  15. Mount the LUN: mount /opt <–read from the /etc/fstab entry
  16. Now we sync the directories with rsync: rsync -avh /opt2/* /opt I recommend holding onto the /opt2 until everything is tested after a reboot
  17. Done!

bin2iso for Leopard 10.5

I compiled bin2iso from source for all the mac users out there. For some reason bin2iso is not in macports. Link below:

bin2iso

Unzip into a directory and chmod +x bin2iso

Recommend moving to /usr/local/bin

Next entries »