Saturday, 29 August 2009

The Key to Real Estate Investing Success Revealed!

The Key to Real Estate Investing Success Revealed!

How did you get into real estate investing? Did you read a book on it? Was it a seminar? A meeting of some sort with speakers dispensing real estate investing information, but really selling courses? Did you get really, really jazzed and pumped up by these simple ("not easy") concepts that were delivered to you in parable form from the stage by a charismatic speaker?

18 Easy Steps to Buy a Bargain House

What is a "distressed" property? What is "bargain" real estate?

A distressed property is one with a distressed seller. Job loss or transfer, divorce, death, pending foreclosure, and lack of money cause sellers to sell fast for less. Discovering the seller's problem and finding a solution is the key to buying a bargain property. A distressed property may also be a "doghouse," a dump, or a fixer. Owners of "doghouses" are not always distressed sellers.

18 Easy Steps to Buy a Bargain House

Thursday, 6 August 2009

How To Buy Vacation Homes As Real Estate Investment Property

Vacation homes are popular with people for lots of reasons, one of which is to be able to enjoy a favorite vacation getaway spot in style. But increasingly, vacation homes are also being seen as possible real estate investment opportunities. But before rushing out to invest in a vacation home, here are some important considerations to keep in mind.

First of all, not all vacation homes are equal. Some will be located in more popular areas of the country than others, and this will have a direct impact on their property value as well. So just as with most other kinds of real estate, location will be one of the most important ingredients for success in choosing a vacation home as an investment vehicle.

Investors Who Missed The Recent Real Estate Boom Should Look Here

If you are a real estate investor and missed the housing boom, you may get another chance. Overheated in the eastern and western markets are cooling off, but there are new opportunities out there. Some of the cities that sat out the boom of the last few years are now showing stronger appreciation gains. Cities such as Dallas, Houston and Atlanta are showing signs of a strengthening real estate market.

Real Estate in hot markets like the San Francisco Bay area market is showing signs of s a slowdown. Prices are rising slowly, however inventory is up. Another sign of slowdown in this hot market is the time it takes to sell a property. Last year some were getting nervous because there were only three multiple offers on a property instead of nine. In one year we have seen quite a change. Now homes that would have sold in one or two weekends are sitting on the market longer. It is not uncommon to see homes sitting on the market thirty to sixty days. This is more like a normal market.

Meanwhile in Texas the demand for housing is increasing. With the new boom in the oil market aiding the job market, workers are coming to Texas from the US and abroad. This is putting upward pressure on the housing market. There are no signs of this slowing down anytime soon. While home prices in Dallas and Texas may not appreciate at the high rates of 20% + seen in some areas in the last few years, the appreciation rates should still be healthy. Real Estate Investors have been aware of this and are investing in these markets that have previously been very slow.

The Atlanta market is benefiting from a healthy job market. Unlike the Texas markets, the Atlanta market is also seeing a rise in inventory. This rise in inventory should restrain the appreciation in Atlanta.

A number of cities in the southwest which have seen high appreciation rates are seeing a strong increase in inventory. Cities such a Phoenix and Las Vegas are also showing a strong job market. Inventories of homes in these cities will need to be watched. If inventories continue to rise sharply, prices will tend to stay flat or fall slightly.

Meanwhile the California market is looking vastly different from a year ago. In Sacramento and San Diego the market is cooling rapidly. In California it now takes an average of six months to sell a home. I was not that long ago that in some California markets, homes were selling in one weekend.
In California the average home now costs over $500000. This is out of reach for many families. The pressure is now on housing prices to come down in some areas. Higher interest rates, slower sales, home prices beyond the reach of the average family all point to falling prices in some areas.

Another scenario is that home prices will remain flat until wages catch up.

As the market changes, more and more homeowners are getting caught in foreclosure. As prices appreciated quickly, homeowners who could not meet their mortgage obligations benefitted from an increase in equity. That will not be the case in the coming years. There are a number of sites dedicated to homeowners wanting to sell their homes without a Realtor, investors looking for deals, and agents looking for new business. RealtyTrac is one such site. Here you can find home bargains, sell a home without an agent, and discover your homes value.

Article Source: http://www.europe-property.org/articles

Andrew Goldman is president of Metal Rabbit media services, the operator of www.Exchangetradedfundinvesting.com and carealestateinvest.com He has written a number of articles on finance and investment over the last ten years.

What is the best strategy for loading property and configuration files in Java?

When you think about how to load an external resource in Java, several options immediately come to mind: files, classpath resources, and URLs. Although all of them eventually get the job done, experience shows that classpath resources and URLs are by far the most flexible and user-friendly options.

In general, a configuration file can have an arbitrarily complex structure (e.g., an XML schema definition file). But for simplicity, I assume below that we're dealing with a flat list of name-value pairs (the familiar .properties format). There's no reason, however, why you can't apply the ideas shown below in other situations, as long as the resource in question is constructed from an InputStream.
Evil java.io.File

Using good old files (via FileInputStream, FileReader, and RandomAccessFile) is simple enough and certainly the obvious route to consider for anyone without a Java background. But it is the worst option in terms of ease of Java application deployment. Using absolute filenames in your code is not the way to write portable and disk position-independent code. Using relative filenames seems like a better alternative, but remember that they are resolved relative to the JVM's current directory. This directory setting depends on the details of the JVM's launch process, which can be obfuscated by startup shell scripts, etc. Determining the setting places an unfair amount of configuration burden on the eventual user (and in some cases, an unjustified amount of trust in the user's abilities). And in other contexts (such an Enterprise JavaBeans (EJB)/Web application server), neither you nor the user has much control over the JVM's current directory in the first place.

An ideal Java module is something you add to the classpath, and it's ready to go. Think EJB jars, Web applications packaged in .war files, and other similarly convenient deployment strategies. java.io.File is the least platform-independent area of Java. Unless you absolutely must use them, just say no to files.
Classpath resources

Having dispensed with the above diatribe, let's talk about a better option: loading resources through classloaders. This is much better because classloaders essentially act as a layer of abstraction between a resource name and its actual location on disk (or elsewhere).

Let's say you need to load a classpath resource that corresponds to a some/pkg/resource.properties file. I use classpath resource to mean something that's packaged in one of the application jars or added to the classpath before the application launches. You can add to the classpath via the -classpath JVM option each time the application starts or by placing the file in the \classes directory once and for all. The key point is that deploying a classpath resource is similar to deploying a compiled Java class, and therein lies the convenience.