The mortgage settlement being worked on between nearly all state attorney generals and the five largest mortgage services is coming to the close. As pointed out on Naked Capitalism here, here, and here this settlement is looking like a slap on the wrist for the servicers with an extra helping of moral hazard. The state is absolving them of further liability and prosecution. This stinks of more state shielding of [bankers, bond holders, unions] with large bailouts, little consumer relief and no criminal investigations.
How many prosecutions have there been during this entire crisis? Subpoenas?
Most interesting is the timing of the settlement - before Christmas. The best way to give bad news is to do it before a holiday when it will get forgotten. That is Public Relations 101 - give the bad news when nobody will notice it.
I expect to see the settlement next Wednesday or Thursday of next week.
Further Reading:
Calculated Risk
Mish's Global Economic Trends Analysis
Conspicuous Musings
Wednesday, December 14, 2011
Saturday, September 10, 2011
Obama Failed Math
Obama proposes to spend 3% of GDP to get a 2% boost - no thank you.
Obama's big jobs plan, according to economists at Goldman, Moody's, and JPMorgan, will boost GDP 2%. What happened to the 1.5 multiplier in the 2009 mega stimulus, which never materialized. The 2009 plan projected further that unemployment would not go over 8% with the ARRA. Notice the bold claims from the administration are not quite so specific. Expect to hear the stories of roads to nowhere, pet projects, programs that cost $400,000 per job, and an unemployment rate that does not go down to the claimed 7%. This program will NOT create 1.9 million jobs and unemployment will go up when labor force participation is factored in.
Government jobs plans don't materially create jobs on net. This plan spends over 3% of GDP to get a hoped for 2% GDP boost – there is no money back guarantee. We are borrowing the economy toward insolvency. The ability to print money does not change this.
References:
Bloomberg Article
Obama's big jobs plan, according to economists at Goldman, Moody's, and JPMorgan, will boost GDP 2%. What happened to the 1.5 multiplier in the 2009 mega stimulus, which never materialized. The 2009 plan projected further that unemployment would not go over 8% with the ARRA. Notice the bold claims from the administration are not quite so specific. Expect to hear the stories of roads to nowhere, pet projects, programs that cost $400,000 per job, and an unemployment rate that does not go down to the claimed 7%. This program will NOT create 1.9 million jobs and unemployment will go up when labor force participation is factored in.
Government jobs plans don't materially create jobs on net. This plan spends over 3% of GDP to get a hoped for 2% GDP boost – there is no money back guarantee. We are borrowing the economy toward insolvency. The ability to print money does not change this.
References:
Bloomberg Article
Thursday, September 8, 2011
Greek Bonds
Greek bonds are priced in expected recovery - not a borrowing rate.
Here is a 3 year chart of 1yr Greek Government Bonds:
Whither thy Euro?
Here is a 3 year chart of 1yr Greek Government Bonds:
Whither thy Euro?
Tuesday, September 6, 2011
Wednesday, August 24, 2011
State Insurance Subsidies for the Wealthy
North Carolina and other states create a situation where private insurance are disallowed to charge rates commensurate with coastal property risk. With the rate restrictions, the insurance companies stop issuing policies since it is a huge liability. To supplant private insurance, NC and other states step in as the insurance provider of last (only) resort. The state provides below cost risk, backed by taxpayers, to coastal property owners. The state, being the rule maker, creates reserves that will likely prove inadequate in a bad year.
The outcome is to subsidize risk by lowering the cost of ownership thus creating moral hazard. With the artificially reduced rates, more people are encouraged to develop coastal properties. This means the taxpayers are on the hook for ever bigger payouts. According to the Wall Street Journal article below, these taxpayer backed policies are up 82% since 2005. Homeowners and taxpayers far from the coast and damage pay to rebuild, generally wealthy property owners, beachfront vacation homes.
Here is a quote from this article
The outcome is to subsidize risk by lowering the cost of ownership thus creating moral hazard. With the artificially reduced rates, more people are encouraged to develop coastal properties. This means the taxpayers are on the hook for ever bigger payouts. According to the Wall Street Journal article below, these taxpayer backed policies are up 82% since 2005. Homeowners and taxpayers far from the coast and damage pay to rebuild, generally wealthy property owners, beachfront vacation homes.
Here is a quote from this article
Homeowners insured through companies other than the Beach Plan would have to bail out the Beach Plan only if a "one-in-134-year" storm hits, officials estimate.
Still, critics say the worst-case scenarios underscore deeper problems with insurers of last resort. Many of the pools are in the same uncomfortable spot as North Carolina, with capital cushions that could be wiped out by one mega-storm, or several midsize ones.
In addition, by trying to keep rates affordable for homeowners, the last-resort insurers help fuel coastal development that puts homeowners across the state at financial risk, some critics say.
Sunday, July 31, 2011
Recoveryless Recovery
Last week's Q2 and Q1 GDP were, in a word, ugly. We appear to be in a recoveryless recovery. Below a chart from Calculated Risk highlighting unemployment compared to other recessions going back to 1948.
David Rosenberg of Gluskin Sheff & Associates, predicts a 99% chance of recession by 2012. He left the 1% margin for wiggle room. This is a balance sheet recession and he views this more of a continuation of the recession absent the massive fiscal stimulus covering up the downturn. Watch David here.
David Rosenberg of Gluskin Sheff & Associates, predicts a 99% chance of recession by 2012. He left the 1% margin for wiggle room. This is a balance sheet recession and he views this more of a continuation of the recession absent the massive fiscal stimulus covering up the downturn. Watch David here.
Sunday, July 24, 2011
Linux to Mac Using AFP
I needed to move many files from my Fedora 14 Linux machine to my iMac. Samba, also known as SMB or Windows File Sharing, was being difficult trying to connect from Fedora to my iMac. The solution it seemed was to use AFP (Apple Filing Protocol). By default Fedora does not appear to have this enabled. So off to Google to find the answers.
First, I found that Linux supports AFP. On Fedora 14, it involves three utilities/services, netatalk, avahi, and afpd. To install these services, perform the following commands. I expect you have sudo or su access and know how yum works.
Once yum installs those packages you must configure the services.
Add the following to the end of your /etc/netatalk/afpd.conf file:
Next, edit /etc/netatalk/netatalk.conf to ensure proper configuration. The following values need to be set:
To configure sharing of folders edit the AppleVolumes.default file. For example to configure the sharing of a folder named "Pictures" in the user Tom's home directory (/home/tom/Pictures) add the following line to AppleVolumes.default:
The AppleVolumes.default, as well as the other files mentioned, is well documented regarding options and settings.
Apple's Bonjour service is called mDNS on Fedora. To configure mDNS by defining a service for Avahi by creating the file /etc/avahi/services/afpd.service:
Then add mDNS to the hosts: line:
Configure the services for system startup with the following:
Start the services:
If either was already running change "start" above to "restart".
Open firewall ports 548 tcp to allow connections. Run "nbplkup" to ensure the Netatalk service is running. For me it displayed nothing although others have gotten the following:
First, I found that Linux supports AFP. On Fedora 14, it involves three utilities/services, netatalk, avahi, and afpd. To install these services, perform the following commands. I expect you have sudo or su access and know how yum works.
sudo yum install avahi netatalkOnce yum installs those packages you must configure the services.
Add the following to the end of your /etc/netatalk/afpd.conf file:
- -tcp -noddp -uamlist uams_randnum.so,uams_dhx.so,uams_dhx2.so -nosavepassword -advertise_sshNext, edit /etc/netatalk/netatalk.conf to ensure proper configuration. The following values need to be set:
ATALKD_RUN=no
PAPD_RUN=no
TIMELORD_RUN=no
A2BOOT_RUN=no
CNID_METAD_RUN=yes
AFPD_RUN=yes
To configure sharing of folders edit the AppleVolumes.default file. For example to configure the sharing of a folder named "Pictures" in the user Tom's home directory (/home/tom/Pictures) add the following line to AppleVolumes.default:
/home/tom/Pictures allow:tom rwlist:tom options:usedots,upriv
The AppleVolumes.default, as well as the other files mentioned, is well documented regarding options and settings.
Apple's Bonjour service is called mDNS on Fedora. To configure mDNS by defining a service for Avahi by creating the file /etc/avahi/services/afpd.service:
<?xml version="1.0" standalone='no'?>
<!DOCTYPE service-group SYSTEM "avahi-service.dtd">
<service-group>
<name replace-wildcards="yes">%h Xserve</name>
<service>
<type>_afpovertcp._tcp</type>
<port>548</port>
</service>
<service>
<type>_device-info._tcp</type>
<port>0</port>
<txt-record>model=Xserve</txt-record>
</service>
</service-group>
Then add mDNS to the hosts: line:
hosts: files mdns mdns4_minimal [NOTFOUND=return] dnsConfigure the services for system startup with the following:
#chkconfig netatalk on
#chkconfig avahi-daemon on
Start the services:
#service netatalk start
#service avahi-daemon start
If either was already running change "start" above to "restart".
Open firewall ports 548 tcp to allow connections. Run "nbplkup" to ensure the Netatalk service is running. For me it displayed nothing although others have gotten the following:
"localhost:AFPServer" 65280.31:128
"localhost:netatalk" 65280.31:4
"localhost:Workstation" 65280.31:4
References
Subscribe to:
Posts (Atom)

