How To Improve Your Productivity With The Pavlok Chrome Extension

Happy Wednesday Shockers!

First up:  I’m blown away by how successful our users have been with Pavlok. From Waking up early, to quitting smoking, to getting over negative thoughts, and more — it’s crazy how effective a little positive and negative reinforcement can be.

But it always surprises me how few people know all of the capabilities of Pavlok.

We’ve been building APPS, HABITS, INTEGRATIONS, even GAMES, all utilizing the Pavlok hardware, to bring information into the physical real.

All with the mindset of  — we don’t just help you achieve your goals — we get you to achieve your goals.

And one of the most fundamental goals that Pavlok users have is to BE MORE PRODUCTIVE.

Did you know that Pavlok has a Chrome Extension that helps you stop wasting time online?

It’s one of our most popular integrations (>4 stars) with thousands of users — AND YOU DON’T EVEN NEED A PAVLOK TO USE IT.

(Although it’s way cooler if you have one 🙂

So today, I wanted to showcase the Pavlok Productivity Chrome Extension.

You can try it out yourself at https://wp.pavlok.com/productivity

(If you need a pavlok account, sign up here)

Watch The Video – How To Use Our Pavlok Google Chrome Extension
Last week we shared the incredible story of how Pavlok user Chris N, used Pavlok to improve his productivity and write more on a consistent basis.

Many of you reached out asking about all the ways you can use the Pavlok Chrome extension to get more done and stay on track automatically.

Today we wanted to share some of the key features briefly and why they are so powerful.

  • Create A To-Do List That Actually Gets Done 

There are literally dozens of to-do list applications out there today, but none of them ensures that you actually complete your list! Add your todos and look out for a zap if you don’t get them done! (You can sync your tasks from the Todoist app, as well!)

  • FocusTime Pomodoros for your Tasks

The secret to actually get tasks done is simple: DO THEM. The best way? Through something known as the Pomodoro Technique. In this method, you focus on one task, exclusively for 25 mins. With the Chrome Extension, you can associate your tasks with a Pomodoro, so for a period of 25 mins you’ll be reminded, vibrated, and buzzed to stay on task for one task! The task hovers over all your browser windows to make sure you don’t forget.

 

I’m doing a Pomodoro as we speak to write this email. Notice the reminder at the top left. If I leave this tab, I’ll get a zap! (Thanks to ‘Lock me in this page‘)
 

  • Blacklist Unproductive Site

Add your typical list of most distracting sites and have your Pavlok keep you in check. You’ll think twice about checking Twitter if you know zap is on its way.

  • Stay Focused With A Tab Limit 

It’s virtually impossible to get things done when you have more tabs open than you can count. Get close to your tab limit? Vibration warning. Reach the limit? Beep. Go over? ZAP. Now I never open more than my limit, ever.

  • Plenty More

RescueTime integration, Todoist integration, Whitelisting, etc etc — there’s plenty more.

The extension has a ton of additional customizations and tweaks depending on your specific goals, and we’re always adding more!

If you haven’t yet installed the Chrome Extension, download it today and give it a try!

-Team Pavlok

P.S. You can use the extension without a Pavlok, but you’ll need the device if you want to feel the vibrations, beeps, and zaps. Click Here to order your Pavlok 2. Don’t wait — we are already out of stock for November, and we only have 3000 in stock for December. Order Now if you want it before Xmas!

How To Write Every Day

This is a guest post by Pavlok friend Steve from Startup Black Belt

I’m a busy guy.

A startup CTO, startup consultant, father, husband, and homeowner… There are a lot of things demanding my time. Employees, clients, writing code, exercising, family time and more. It all adds up.

As business keeps growing, the one thing that’s consistently been falling by the wayside is my writing. And that kind of sucks.

I like writing. It helps clear my head.

It keeps me mindful of different aspects of my different businesses, and I find it generally boosts my productivity for whatever reason. Plus, it helps boost my consulting business and builds up my tribe.

It’s important, and I have to make the time for it consistently.

I’ve already used my Pavlok to create an extra hour or so in my day by helping me actually wake up early. It also reminds me every day to switch to my standing desk — helping me stay a bit more active.

But how can it remind you to write?

It’s a technically challenging thing to do. There’s no physical gesture that makes writing at a MacBook look differently from screwing around on Facebook.

It’s not easy to know when I don’t do something every day unless I physically check in saying I did it, and that’s not my style. It’s another task to do in an already stacked day.

So how can we make this work? How can I shock myself into writing every day without actually doing some boring admin work every day?

After some trial and error, I’ve found the solution.

Before the system is revealed, let me explain how I write as it may be different from how you write.

First off, I use Pages on my MacBook.

I don’t really like Google Docs to write since it’s in the browser, and that can lead to distraction. Yes, I’m aware that I can blacklist sites when I go to write, but again, more admin work than I’d like to deal with. Pages works for me.

Second, I use Dropbox to store it and share it with the team that will help edit and share everything to the world on my blog, my Entrepreneur column, or anywhere else. Yes, I realize that I can use Google Docs for this, and I personally don’t want to. See above.

With that 2 step approach, I can write anywhere at any time without any excuses. As soon as I get some internet and my Dropbox syncs up, it’ll check in with my system and not shock me.

Here’s how to do it.

Keep A Record Of All Writing With IFTTT And Google Sheets
Since I put my articles into Dropbox, I can use IFTTT to write a row to a spreadsheet on Google Sheets. It’s essentially a log book that updates every time a new file is created in one of my writing folders.

There are two specific folders that I care about: Drafts (everything I’m working on that’s unfinished) and Unpublished (all finished work that needs to be published somewhere.) If a new file shows up anywhere in these folders, it means I did some writing for the day. Log it in Google Sheets.

(Here’s my unpublished trigger.)

 

(And the detail.)

(Here’s my drafts trigger.)

 

(And the detail.)

(Here’s IFTTT running to create the sheet)

(Here’s what the sheet looks like. 100% created and maintained by IFTTT)

 

NOTE: For this to work, there has to be at least one row in the sheet. It won’t work without a row to check, so add one in manually if you want it to start on day 1.

2. Alert Me If There Wasn’t An Update For Today Using Google Scripts

This is a fairly straight forward process: Check the latest row every day and send me an email if there was no new row added. That means I didn’t write.

My goal is to write every weekday by 4 pm EST, so that’s when I check.

For this part, you need to use Google Scripts on the sheet.

(Here’s how to get to the script editor)

You have a script that checks the last row of the sheet and looks at the day. If that date isn’t today’s date, it means you didn’t write today. In that case, it sends an email.

function myFunction() {
var now = new Date();
var day = now.getDay();
var hours = now.getHours();

if ((day < 6) && (hours >= 16) && (hours <= 17)) {
// Get the dates.
var ss = SpreadsheetApp.getActiveSpreadsheet();
var sheet = ss.getSheets()[0];
var lastRow = sheet.getLastRow();
var formatDate = sheet.getRange(lastRow, 1).getValue().replace(‘at ‘, ”).replace(‘AM’, ”).replace(‘PM’,”) + ” GMT-0400″;
var lastWrite = new Date(formatDate);

var lastWriteDate = lastWrite.getFullYear() + “-” + lastWrite.getMonth() + “-” + lastWrite.getDate();
var nowDate = now.getFullYear() + “-” + now.getMonth() + “-” + now.getDate();

if (nowDate > lastWriteDate) {
// Email out.
MailApp.sendEmail(“YOUR@EMAIL.COM”, “You didn’t write today.”, “Get on that.”);
}
}
}

For this part to work, you have to schedule it to run. I have it running every weekday between 4 pm and 5 pm, so it will zap me at the end of the day if I forgot to write.

(This is how you create the trigger.)


(This is what you set the trigger to.)

3. Zap If I Didn’t Write Today

The last step is to get back into IFTTT with a script that checks for that “You didn’t write today…” email and use it as a trigger for Pavlok to zap.

(Here’s my Pavlok trigger.)

(And the detail.)

(Here’s IFTTT triggering a zap.)

And that, my friend, is how I’m forcing myself to write. After a few 70% shocks to the wrist, this will be yet another positive habit that sticks.

This can be used for more than traditional writing too.

Want to write code every day? Sync up a folder that stores your code.

Want to post on Instagram every day? Use Instagram posts to log to Sheets instead of Dropbox.

Want to work out every day? Use your chosen fitness tracker to log to Sheets instead of Dropbox.

I can think of about a hundred others. You’re only limited by your imagination and desire to build a new habit.

It might seem like a lot of steps to go through to make sure I write consistently, but if you think about the one-time setup cost vs. the ongoing benefits of building such a productive habit, it’s a no-brainer.

Want to make writing a habit? Get your Pavlok today.