Contacts

Health Reform Now - Money saving tips for everyone

There's 3 things I have learned about saving money through the school of hard knocks.


  1. If you have health insurance... ask how much the prescription you are buying is without insurance. Some drugs cost less to buy with cash than your copay. I learned this lesson the hard way when I called my local pharmacy to check on the price of a prescription for a friend who got hurt. I was expecting an $80-90 cost. For 100 Vicodin, it was $10. My copay is $20 on ALL prescriptions. That's some shenanigans. The same goes for doctors visits. Ask them if they offer you a discount for paying in cash.
  2. Sign up for a United Networks of America Prescription card. It's free, you don't even have to give them your email address, and if paying cash for your prescriptions, it can save you up to 70%. If you don't have insurance, this could save you a lot of money. United Networks of America
  3. If you smoke, quit. At 5 dollars a pack, if you smoke a pack a day, that's $150/month on cigarettes. How much do you pay for your prescriptions for your seasonal bronchitis or allergy medications?
Filed under:

Vacationing Off the Grid: No electricity, no water....

Backstory

This is the first part of a series of posts I'm going to write about my experiences vacationing off the grid. I'll be sure to take pictures and video of the experience and post them here.

 

My wife and I have been spending some time vacationing up in northern Michigan. This is a 10 acre wooded property, with a collective family owned property of about 100 acres. Soon, I hope to buy a couple acres in the collective, so I can be less of a drain, but for right now, we've been given permission to setup on our friend's land.

 

For this process, most of my concepts come from trial and error work done on their Amish built cabin, so I know they work.

 

Now let me say that my wife, god love her, needs her water, and her electricity; she needs a toilet, a sink, and a shower. That being said, this property has no running power, and no source of water. There is power and water approximately 1 mile down the road at an uncle's camp, and the plan is to run power to the rest of the properties, but that's not likely to happen this year.

 

My friend and his wife @psynosis, who own the property, had a cabin built by the Amish, and is wonderfully constructed. They have a propane heater, windows, a kitchen, a bathroom (with shower) and a loft with beds. This is fine for 3-5 people, but it can easily get crowded. Additionally, this solution is a little cost prohibitive and permanent for what we're looking for.

 

Begin the Research

Our first order of business was to find or construct a living space. After weeks of searching craigslist, we contacted someone regarding a 1986 Jayco 35' camper. The deal fell through quickly, and it was for the best. The last thing we need to do is take out more credit for this investment.

 

The following weekend, we took the four hour drive to the property for a weekend of fun. While up there, we assisted with some construction, and met "The Hippie Logger".

 

A Deal Is Found, A Friendship Is Formed

"The Hippie Logger" is a lumberjack. I can see the word "Tree Killer" forming in your mind, and stay with me a second. "The Hippie Logger" himself owns property in the collective, and next door, is property that has been clear cut. He hates that. He is a laid back man who enjoys the forest, and some other plants... *cough*. He doesn't cut trees to make a gross and disgusting profit. He cuts trees to make a living, and provide a service.

 

Well "The Hippie Logger" says he has a Jayco 30' Camper for sale... for $500. You heard that correctly... $500. The story goes, he did some logging for a nearby property owner, who received this camper as a bonus when he purchased his property. It's in decent shape... for $500. The front door has been pried open, a window shot with a BB Gun, both by thieves. The roof leaks, and the floor was destroyed. A tarp over the roof is preventing further leaks and "The Hippie Logger" replaced the flooring. I will fix the door, the window, and the roof.

 

I Must Be A Winner

Now that a camper is found, a plan is beginning to form. The next purchase I need, a generator... The friends and family had planned a trip to the Mio flea market. Approximately, 50 miles away...

 


View Larger Map

 

We arrive at the flea market, 20 minutes after it's supposed to close. I leap out of the truck, and what's the first thing I see? A 4400 watt Homelite generator... Low hours... the guy has a sticker on it for $300 firm. I talk to him a moment, and walk away. I come back shortly there after and leave with the generator for $250.

Filed under:

Link Addresses to Google Maps with JQuery (Part 1)

First, you need JQuery. I'm not going to go into the basics of JQuery, but you should be using it.

Second, We use this to create a global class, usable throughout the website to signify an address, and provide links to Google Maps. The stripHTML function is only required if you wish to markup your addresses for formatting. From then on, you just do a

  1. <span class="address">1600 Amphitheatre Parkway<br />Mountain View, CA 94043

Now for the code:

  1. function stripHTML(oldString) {
  2.    var newString = "";
  3.    var inTag = false;
  4.    for(var i = 0; i < oldString.length; i++) {
  5.         if(oldString.charAt(i) == '<') inTag = true;
  6.         if(oldString.charAt(i) == '>') {
  7.               inTag = false;
  8.               i++;
  9.         }
  10.         if(!inTag) newString += oldString.charAt(i);
  11.          }
  12.    return newString;
  13. }
  14.  
  15.  
  16. /* <span class="address">Address</span> will auto create link to Google Maps */
  17. $(function() {
  18.         $(".address").each(
  19.                 function() {
  20.                         var address = this.innerHTML
  21.                         this.innerHTML = '<a href="http://maps.google.com/maps?q=' + stripHTML(address) + 'class="map">' + address + '</a>';
  22.                 }
  23.         );
  24. });

Keep in mind, we only want to wrap the address inside the tags.

In part 2, we'll use JQuery with Google Maps to allow the user to view the map on the website, or jump off to Google Maps.

Filed under:

XHTML strict compliant Google Map embedding - with JQuery!

Google Maps

 

It seems that every time I go to embed a Google map into a site I'm working on, I forget about Google's IFRAME failure. In this particular case, I wasn't up for running through the API, and I just wanted to embed the map on the page, and have it validate. First, let me say you need to be using JQuery (if you're not, you should be). Second, a document.write is not the solution to your issue, if you're not putting the Javascript code in a separate file. As this code is only run on one page, I'm not going to bother. First, you're going to create your div wherer you'd like your map:


  1. <div id="#map"></div>

Next, you're going to wrap your JQuery calls in script tags, and escape the CDATA tags with:

  1. <script type="text/javascript">
  2. //<![CDATA[
  3. $(document).ready(function() { $("#map").append('<iframe width="425" height="350" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="http://maps.google.com/maps?f=q&amp;amp;source=s_q&amp;amp;hl=en&amp;amp;geocode=&amp;amp;q=Google,+Mountain+View,+CA&amp;amp;sll=39.774769,-72.949219&amp;amp;sspn=56.795811,135.351563&amp;amp;ie=UTF8&amp;amp;ll=37.432477,-122.079906&amp;amp;spn=0.029142,0.06609&amp;amp;z=14&amp;amp;iwloc=A&amp;amp;cid=11972054812773967638&amp;amp;output=embed"></iframe>
  4. <br /><small><a href="http://maps.google.com/maps?f=q&amp;amp;source=embed&amp;amp;hl=en&amp;amp;geocode=&amp;amp;q=Google,+Mountain+View,+CA&amp;amp;sll=39.774769,-72.949219&amp;amp;sspn=56.795811,135.351563&amp;amp;ie=UTF8&amp;amp;ll=37.432477,-122.079906&amp;amp;spn=0.029142,0.06609&amp;amp;z=14&amp;amp;iwloc=A&amp;amp;cid=11972054812773967638" style="color:#0000FF;text-align:left">View Larger Map</a></small>'); });
  5. //]]>
  6. </script>

This will place the map inside your div, AND validate!

Filed under: