User-agent: * Disallow: User-agent: GPTBot Allow: / User-agent: CCBot Allow: / User-agent: Google-Extended Allow: / $w.onReady(() => { // Preload data (you can replace this with an external database for scalability) const data = [ { location: "Bozeman", secondLocation: "Tetons", cost: 950 }, { location: "Bozeman", secondLocation: "Jackson", cost: 900 }, { location: "Bozeman", secondLocation: "Idaho Falls", cost: 450 }, { location: "Bozeman", secondLocation: "Island Park", cost: 400 }, { location: "Bozeman", secondLocation: "West", cost: 300 } // Add more rows as needed ]; // Populate dropdowns const locations = [...new Set(data.map(item => item.location))]; const secondLocations = [...new Set(data.map(item => item.secondLocation))]; $w("#dropdownA").options = locations.map(loc => ({ label: loc, value: loc })); $w("#dropdownB").options = secondLocations.map(loc => ({ label: loc, value: loc })); // Handle selection and cost calculation $w("#calculateButton").onClick(() => { const selectedA = $w("#dropdownA").value; const selectedB = $w("#dropdownB").value; if (!selectedA || !selectedB) { $w("#output").text = "Please select both options."; return; } const result = data.find( item => item.location === selectedA && item.secondLocation === selectedB ); if (result) { $w("#output").text = `The cost is $${result.cost}.`; $w("#checkoutButton").show(); } else { $w("#output").text = "No matching result found. Please try different options."; $w("#checkoutButton").hide(); } }); // Hide checkout button initially $w("#checkoutButton").hide(); });
top of page

We Took Out the Trash—Yellowstone Edition

Updated: May 24

Well, we did it again. Armed with gloves, grabbers, and an irrational amount of optimism, the Old Faithful and Friends crew hit Highway 191 like a band of eco-friendly superheroes (minus the capes, plus a lot of bug spray).

Our mission? Clean up the western border of Yellowstone National Park before the local elk start giving us side-eye for trashing their front yard.

After hours of crawling through sagebrush, dodging suspiciously bold squirrels, and questioning our life choices every time we picked up a mystery object—we emerged victorious.


yellowstone clean up


Here’s the haul:

🗑️ 16 bags of trash (yes, sixteen!)

🛞 3 whole tires

🐍 1 near heart attack caused by a stick that looked like a snake

We’re not saying we deserve a medal, but if someone wanted to name a geyser after us, we wouldn’t say no.

yellowstone clean up

This cleanup wasn’t just about picking up junk. It was about giving Yellowstone’s edge a little love, and making the world a slightly less trashy place—literally.

Huge shoutout to everyone who joined in, whether you hauled bags, cracked jokes, or bravely fished a soda can out of a swampy ditch. You’re the real MVPs.


trash clean up yellowstone

P.S. Need a Ride That Doesn’t Involve Hitchhiking With a Bison?

The Old Faithful and Friends transportation is up and running! Skip the stress, park the car, and let us do the driving



. It’s the chill, smart way to get around Yellowstone.


Comments


OLD FAITHFUL AND FRIENDS

bottom of page