Google Docs – How to Find Documents Shared With Someone

Google DocsIn the old version of Google Docs, you could search for documents shared with someone. In the new version you can not. After much searching, I finally found a list of search codes you can use to search Google Docs and voila, you can indeed search for documents shared with people by using the “to:” prefix, i.e. to:bob@somewhere.com. Continue reading

Posted in Answers, Tech | Tagged , , | 1 Comment

Integrating Infusionsoft Links with WordPress

Wouldn’t it be cool if your landing pages that Infusionsoft tracking links and web form thank you page redirects go to could be personalized?

Until now, there wasn’t a WordPress plugin that let you do such a thing.

Infusionsoft allows you to create tracking links and include customer information such as their name and email address in the query string of the URL. Infusionsoft also allows your web forms to redirect to a thank you page on your site and include the web form data in the redirect link.

The challenge is that WordPress sites can SEE this data at the end of the URL , but can’t DO anything with it. So I wrote a plugin that can. Continue reading

Posted in Coding, Infusionsoft | Leave a comment

Migrating from Movable Type to WordPress

Switching your blog from Moivable Type to WordPress can be a real challenge, especially if your URL structure has changed.

In my case, our blog posts were previously /blog/year/month/post_name_with_underscores.html and under WordPress were going to be simply /post-with-hyphens/

While there are many a fancy regex one can setup in their .htaccess file for 301 redirects, they often involve looping through a recursive regex to replace each individual underscore with a hypen, and then other regexes to do the rest of the work before finally redirecting.

There had to be a better way… Continue reading

Posted in Coding, Tech | Leave a comment

ClickBank Instant Notification Service in Perl

ClickBank is generous to provide code examples for many implementations of their Instant Notification Service, but… they don’t include Perl for some reason.

Here’s my Perl implementation.

use CGI;
use Digest::SHA1 qw(sha1_hex);
use Encode;

$q = new CGI;

sub ipnVerification() {
  my $secretkey = 'YOUR SECRET KEY';
  my $pop = "";

  foreach $field (sort($q->param))
  {
   unless ($field eq "cverify") {
      $pop .=  $q->param($field) . "|";
    }
  }
  $pop .= $secretkey;
  my $calcedVerify = sha1_hex(encode("utf8", $pop));
  $calcedVerify = uc(substr($calcedVerify,0,8));
  return ($calcedVerify eq $q->param("cverify"));
}

Enjoy!

Posted in Coding, Tech | Tagged , , , , | 4 Comments

Hiking Camelback in Phoenix

Summit of Camelback at InfusionCon 2011

Summit of Camelback at InfusionCon 2011

Last year at InfusionCon, Jon Goldman asked if I wanted to climb Camelback the next morning in time to catch the sun rise from the head.

I blurted out YES before he could finish giving me the details and the next morning we found ourselves heading out of the resort around 5am.

This year at InfusionCon, a group of us planned a Sunset climb up to the hump of the camel and got together quite a group for what proved to be a challenging, fun and gorgeous ascent. Continue reading

Posted in Climbing, Infusionsoft, Travel, Trip Reports | Leave a comment

Disney’s Secret Vegan Friendly Menu

Vegan Popcorn in Disney

Jeremy Shapiro Enjoying Vegan Popcorn in Disney World's Magic Kingdom!

Disneyland and Disney World have tons of food to keep the whole family happy, but I recently discovered they also have food to keep us vegan folk fat, happy, fed and loving Disney.

What follows are far from healthy options, but they are vegan options. On second thought, Disney doesn’t have much for healthy food, no matter what you eat.

Any place that serves food also has a small binder with all ingredients, allergen warnings and more. Even the popcorn cart has a binder and YES the popcorn IS vegan! (win!) Continue reading

Posted in Travel, Vegan | Tagged , , , , , , , , | 3 Comments

How To Attach an Ice Axe to Your Pack

Ice Axe attached to an Ospey PackWhen you bought your pack, it may have had a loop (or two!) on the bottom to hold your ice axe(s), but… how do you attach the axe to your pack?

I never knew how myself, but on a recent snowshoeing and backpacking trip, George showed my how and the solution rocks!

First, drop the ice axe down through the loop, so the head is above the loop and the shaft is through and below the loop with the pick side facing the middle of the pack.

Now fold it up and secure it to your pack using whatever the manufacturer put in line with the folded up shaft. Continue reading

Posted in Answers, Climbing | Tagged , , , , , , | Leave a comment

[Errno 32] Broken pipe in s3cmd

Broken Pipe in s3cmdI’ve been looking for a fast and easy way to deal with Amazon S3 from a Unix command line prompt, and came across s3cmd which seemed great, until it didn’t work.

After running s3cmd --configure to configure it and then running a test successfully, I tried to upload a file usingĀ  s3cmd put filename s3://bucket/filename and got an error, specifically [Errno 32] Broken pipe.

The program would continually throttle the upload speed and retry until it couldn’t get the file up at any speed, no matter how slow. Continue reading

Posted in Answers, Tech | Tagged , , , , | 15 Comments

Fun Pyramid Set Math

Push Up PyramidsIf you’re doing work out sets with a pyramid, i.e. 1, 2, 3, 4, 3, 2, 1 , there is some really cool math to figure out your totals, or work backwards from a total to get your max count in the pyramid.

Pyramids are a great way to increase your max rep in a given set, for example in pushups, pullups, and situps. For example, with a maximum number of reps at 5, you can knock out a total count of 25.

Now, for the fun math. Continue reading

Posted in Answers, Climbing | Tagged , , , | 2 Comments

Building a Snow Cave

Building a Snow Cave

The view from inside our snow cave

So you wanna build a Snow Cave? Thankfully it’s a lot easier than I thought – easy as in not complicated, that is. Building a snow cave takes a lot of hard physical labor, but is well worth it in the end as you have a comfy, flat, dry, above freezing home for the night.

This weekend, George, Greg and I ventured off to into the great outdoors for two days of snowshoeing and winter backpacking with some big ideas of how we could spend the night.

On Friday afternoon, I had read about the IceBox which unfortunately is only available online from REI and occasionally at their flagship store in Seattle. The IceBox is a brilliant invention which allows for the creation of perfect igloos, even with less than ideal snow. As I would not be able to acquire this in time for our trip, we had to make do with building a snow cave, and hauling in a 3 person tent and tarps in case that didn’t work out.

So where do you learn how to build a snow cave? Continue reading

Posted in Trip Reports | Tagged , , , , , , , | 2 Comments