360 Panorama McHugh Peak Trail

Making Money on the Internet

There is no free lunch but if you think ahead you can save some money.

There are many different ways to make money on the Internet. Many of them require you to purchase something to get started, but not all of them. Here are some of the website that I've been using for the last several years that do not require any initial investment.

SEO Optimization Tips

Many times people want to know how to get widen the influence of their website.
First you need to understand how a search engines work. A search engine attempts to operate just like a user on the Internet. Once the search engine finds a link "click's" on it or follows the link to see where it goes and then follows any links that it finds on that page and just keeps going. As it goes from page to page it keeps track of the keywords on each page.

Initially search engines were relatively simple but once people realized

Simple ColdBox Model Unit Tester

I just started using ColdBox and wanted to use the unit testing features but it wasn't working with MXUnit so I developed the following set of conventions and components to help me test my models.

For each model that you want to test create a component with the name test in front of it. For example the a user model you would create testuser. In that component create methods that will be responsible for testing each of the model methods. You could choose otherwise but I find this the most intuitive.

Buttons to links

The following jquery snippet can turn your buttons into links.

$("button[href]").on("click", function() {
  window.location = $(this).attr("href");
});
Syndicate content