<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
	<channel>
		<title></title>
		<description>Author of Dutch bestseller GRIP. Working on bringing it to English.</description>
		<link>https://rickpastoor.com</link>
		<atom:link href="https://rickpastoor.com/feed.xml" rel="self" type="application/rss+xml" />
		
			<item>
				<title>New newsletter announcement – Work in Progress</title>
				
				<description>&lt;p&gt;It is finally here: what was DailyPM now turned into a new newsletter called
&lt;a href=&quot;https://www.getrevue.co/profile/workinprogress&quot;&gt;Work in Progress&lt;/a&gt;. Weekly notes
on productivity and work, to help you get your week started and make progress on
your biggest plans.&lt;/p&gt;

&lt;p&gt;The newsletter is not just a newsletter. It is also a way for me to keep you
posted on the progress of the international version of my Dutch bestselling book
&lt;em&gt;GRIP&lt;/em&gt;. Can’t wait to share that with you.&lt;/p&gt;

&lt;p&gt;If you’re interested, sign up below!&lt;/p&gt;
</description>
				<pubDate>Tue, 24 Sep 2019 00:00:00 +0000</pubDate>
				<link>https://rickpastoor.com/2019/09/24/work-in-progress.html</link>
				<guid isPermaLink="true">https://rickpastoor.com/2019/09/24/work-in-progress.html</guid>
			</item>
		
			<item>
				<title>Automatically Color Coding Google Calendar</title>
				
				<description>&lt;p&gt;&lt;em&gt;Update: &lt;a href=&quot;https://twitter.com/bigal123&quot;&gt;@bigal123&lt;/a&gt; sent me a link to &lt;a href=&quot;https://coda.io/t/Shishirs-Color-What-Matters-Calendar-Guide_tk_cwQbrjMx&quot;&gt;this Coda doc&lt;/a&gt; which can do even more than I’m describing below. One caveat: you have to give another party access to your calendar. That is not necessary when you’re using the script below.&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href=&quot;https://twitter.com/koenit&quot;&gt;Koen Bollen&lt;/a&gt; wrote a little script for me to automatically color-code my
calendar based on the first character of the event. It is super handy. More people asked me how I do this so this is a short guide how to set it up.&lt;/p&gt;

&lt;p&gt;Here’s how you set it up:&lt;/p&gt;

&lt;ol&gt;
  &lt;li&gt;Go to &lt;a href=&quot;https://script.google.com/home&quot;&gt;https://script.google.com/home&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;Click ‘New script’&lt;/li&gt;
  &lt;li&gt;Paste the following script:&lt;/li&gt;
&lt;/ol&gt;

&lt;div class=&quot;highlighter-rouge&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;function ColorEvents() {

  var today = new Date();
  var nextweek = new Date();
  nextweek.setDate(nextweek.getDate() + 7);
  Logger.log(today + &quot; &quot; + nextweek);

  var calendars = CalendarApp.getAllOwnedCalendars();
  Logger.log(&quot;found number of calendars: &quot; + calendars.length);

  for (var i=0; i&amp;lt;calendars.length; i++) {
    var calendar = calendars[i];
    var events = calendar.getEvents(today, nextweek);
    for (var j=0; j&amp;lt;events.length; j++) {
      var e = events[j];
      var title = e.getTitle();
      if (title[0] == &quot;[&quot;) {
        e.setColor(CalendarApp.EventColor.CYAN);
      }
      if (title[0] == &quot;!&quot;) {
        e.setColor(CalendarApp.EventColor.RED);
      }
      if (title[0] == '#') {
        e.setColor(CalendarApp.EventColor.GREEN);
      }
    }
  }
}
&lt;/code&gt;&lt;/pre&gt;
&lt;/div&gt;

&lt;ol&gt;
  &lt;li&gt;Save the project and give it a nice name&lt;/li&gt;
  &lt;li&gt;Click the ‘Play’ button to execute the script. A dialog will open to ask for additional permissions. Allow access to your calendar.&lt;/li&gt;
  &lt;li&gt;Click the button with an icon of a pin with a clock in it (Triggers)&lt;/li&gt;
  &lt;li&gt;Click ‘Add trigger’&lt;/li&gt;
  &lt;li&gt;Select ‘ColorEvents’ in the list of functions to trigger&lt;/li&gt;
  &lt;li&gt;Change the type to ‘Minutes’ and have the trigger run every 15 minutes. Save the trigger.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;This script now automatically colors events that start with a &lt;code class=&quot;highlighter-rouge&quot;&gt;[&lt;/code&gt; cyan, with a &lt;code class=&quot;highlighter-rouge&quot;&gt;!&lt;/code&gt; red and &lt;code class=&quot;highlighter-rouge&quot;&gt;#&lt;/code&gt; green. Adjusting the character and/or colors in the script should not be too difficult.&lt;/p&gt;

&lt;p&gt;Done!&lt;/p&gt;
</description>
				<pubDate>Thu, 30 May 2019 00:00:00 +0000</pubDate>
				<link>https://rickpastoor.com/2019/05/30/google-calendar-color-coder.html</link>
				<guid isPermaLink="true">https://rickpastoor.com/2019/05/30/google-calendar-color-coder.html</guid>
			</item>
		
			<item>
				<title>Doing a quarterly review</title>
				
				<description>&lt;p&gt;I just did my quarterly review this Saturday, and wanted to share how I do that. It will take around one hour to do it, and a little longer if you’re sharing it with someone else (which I recommend, I love that part).&lt;/p&gt;

&lt;p&gt;Why you’d do this? Well, we’re running out of time for this year: just three months on the clock. If we want to live intentionally, we need a plan. And to make sure our plan is right, we need to evaluate how the last three months went so we know what to change.&lt;/p&gt;

&lt;p&gt;Alright, let’s dive in.&lt;/p&gt;

&lt;p&gt;There are two important components to review, when looking back over the past three months:&lt;/p&gt;

&lt;h3 id=&quot;1-your-goals&quot;&gt;1. Your goals&lt;/h3&gt;
&lt;p&gt;If you did set goals, you’ll want to review them. Be as honest as possible, because that’s the only way you’ll become better at setting them.&lt;/p&gt;

&lt;h3 id=&quot;2-your-process&quot;&gt;2. Your process&lt;/h3&gt;
&lt;p&gt;Regardless if you did actually set goals, you can review &lt;em&gt;how&lt;/em&gt; you lived the past three months. Are you happy with the way you work? How your day is structured? How you fill your evenings and weekends? Again, whether you set goals or not, this is something you can review at any time.&lt;/p&gt;

&lt;p&gt;Onto the review itself, it’s actually quite simple:&lt;/p&gt;

&lt;ol&gt;
  &lt;li&gt;Review your calendar for the past three months and make a list of things that catch your eye: accomplishments, but it can also be other things you think off that had a big impact on how you feel.&lt;/li&gt;
  &lt;li&gt;Review your goals. Get your list of goals out and go over each of them: did you make it? Did you not make it? What went well? What did not went according to plan?&lt;/li&gt;
  &lt;li&gt;Summarize how you feel about the past quarter: now you have the results of your goals, and created a list of things that jump to mind, are you happy with the past three months? Are you happy with your goals? How do you feel about the different processes in your life?&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;This is a great kickoff for compiling your goals for the next three months, and there is no better time than right now! You know how things go: December will be busy with family and friends, so plan now to make the most of October and November.&lt;/p&gt;
</description>
				<pubDate>Mon, 02 Oct 2017 00:00:00 +0000</pubDate>
				<link>https://rickpastoor.com/2017/10/02/doing-a-quarterly-review.html</link>
				<guid isPermaLink="true">https://rickpastoor.com/2017/10/02/doing-a-quarterly-review.html</guid>
			</item>
		
			<item>
				<title>Quitting Internet</title>
				
				<description>&lt;p&gt;Great interview with &lt;a href=&quot;https://www.gq.com/story/aziz-ansari-gq-style-cover-story&quot;&gt;Aziz Ansari on Quitting the Internet&lt;/a&gt; in GQ magazine, where he shares why he deleted almost every app from his phone:&lt;/p&gt;

&lt;blockquote&gt;
  &lt;p&gt;Whenever you check for a new post on Instagram or whenever you go on The New York Times to see if there’s a new thing, it’s not even about the content. It’s just about seeing a new thing. You get addicted to that feeling. You’re not going to be able to control yourself. So the only way to fight that is to take yourself out of the equation and remove all these things.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;I very much agree and unfortunately I’m prone to this as well.&lt;/p&gt;

&lt;blockquote&gt;
  &lt;p&gt;I wanted to stop that thing where I get home and look at websites for an hour and a half, checking to see if there’s a new thing. And read a book instead. I’ve been doing it for a couple months, and it’s worked. I’m reading, like, three books right now. I’m putting something in my mind. It feels so much better than just reading the Internet and not remembering anything.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;blockquote&gt;
  &lt;p&gt;I’m trying to get mature and evolve as a person. Even cutting out the Internet and social-media stuff, and reading more, is a good step in the right direction.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;This is an approach I really like: you don’t have to swap a habit with something that’s perfect, you only have to swap it for something that is a little bit better. This is gradual improvement, and if you do that every day, it will add up quickly.&lt;/p&gt;
</description>
				<pubDate>Thu, 17 Aug 2017 00:00:00 +0000</pubDate>
				<link>https://rickpastoor.com/2017/08/17/quitting-internet.html</link>
				<guid isPermaLink="true">https://rickpastoor.com/2017/08/17/quitting-internet.html</guid>
			</item>
		
			<item>
				<title>Social Media Productivity</title>
				
				<description>&lt;p&gt;Jeff Nagle wrote &lt;a href=&quot;https://theroamingmind.com/2017/03/06/social-media-is-the-new-smoking/&quot;&gt;a short post&lt;/a&gt; where he describes a possible future where people consuming social media will be looked at the same way as we are all looking at people who smoke right now. He sounds a little cynical though and it seems like Jeff mostly has bad experiences online:&lt;/p&gt;

&lt;blockquote&gt;
  &lt;p&gt;By and large, social media is not good for you. There are a few instances where it works well but for every 1 nugget of goodness that there is, there are 4 nuggets of bad. I know I am sounding negative here, but it is the truth. I almost never feel good after my experiences with social media.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;I have a mostly positive experience. Jeff continues by describing &lt;em&gt;why&lt;/em&gt; social media is bad for you:&lt;/p&gt;

&lt;blockquote&gt;
  &lt;p&gt;Like smoking, social media is just another addiction to distract our brains from what it is lacking. We smoke to reduce stress, aid in social situations, attain social status and to kill time. Isn’t that what we do when we consume social media streams? Instead of blowing smoke, we simply stare at our phones and blow off our nearby friends.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;This is an interesting and highly relevant topic to research.&lt;/p&gt;

&lt;p&gt;I recently finished &lt;a href=&quot;https://www.goodreads.com/book/show/30962055-irresistible&quot;&gt;Irresistible&lt;/a&gt;, where Adam Alter makes a similar point (he compares our devices to cocaine, talking about picking your examples): the way we’re using our devices and social platforms might not be as innocent as we think. The book is a bit long, but in general I think I agree with his writing: we’re still very unaware of the long term, structural effects of social media on our life, work and relationships.&lt;/p&gt;

&lt;p&gt;The fundamental, obvious difference is that social media does not kill you in the sense that smoking or using cocaine does. Or, I should say, our devices and social media have not been around long enough to either prove or falsify these claims.&lt;/p&gt;

&lt;p&gt;But let’s take a look at this from a productivity perspective.&lt;/p&gt;

&lt;p&gt;I’m a huge fan of &lt;a href=&quot;http://calnewport.com/&quot;&gt;Cal Newport&lt;/a&gt;, who does not use social media (among other things, he also has a really strict email policy) in order to have more time to think and to do what he calls “deep work”. Newport knows how he can do his best work, and that is by making sure he does not waste his time on things that do not bring him the value he needs.&lt;/p&gt;

&lt;p&gt;Social media by definition is distracting, because it is built for exactly this: pulling you back to the different platforms and keeping you there for as long as possible. And not for a good reason: the only motive Twitter and Facebook have is showing as many ads as they possibly can within the time you’re spending on their product. They don’t have your best interest at heart.&lt;/p&gt;

&lt;p&gt;When thinking about this, I keep returning to this nuclear strategy as probably the best possible option. On the other end of the spectrum, I believe there are simple things we can do to minimize and optimize the time we spend on social media.&lt;/p&gt;

&lt;p&gt;Let’s start with the goals I have for using social media:&lt;/p&gt;

&lt;ul&gt;
  &lt;li&gt;I want to be inspired&lt;/li&gt;
  &lt;li&gt;I want to learn stuff&lt;/li&gt;
  &lt;li&gt;I want to keep up to date with what is happening within the industry and with my friends&lt;/li&gt;
  &lt;li&gt;I want to see things that make me happy&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;I’m adding this one as well, to be completely honest:&lt;/p&gt;

&lt;ul&gt;
  &lt;li&gt;I want to have a place where I can be distracted for a short while for moments when I’m switching tasks or when I have a couple of minutes to kill&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Fleshing out these goals makes it easier to make decisions on exactly which things I’m reading and which things I’m avoiding. I have two main strategies:&lt;/p&gt;

&lt;h3 id=&quot;strategy-one-add-barriers&quot;&gt;Strategy one: add barriers&lt;/h3&gt;

&lt;p&gt;In order to spend less time on social media, I’m making sure it is harder to reach it. Just like I make it harder to snooze by locating my alarm clock at the other end of the room, I’m using &lt;a href=&quot;https://chrome.google.com/webstore/detail/blokker/nfbccglabkpcibhpnjlodhncnlggpkka&quot;&gt;a plugin I built&lt;/a&gt; for Chrome which makes Twitter, Facebook and YouTube way less appealing to look at on my Mac. This one extra step is a huge help in using it less.&lt;/p&gt;

&lt;p&gt;Removing the apps from your phone or using &lt;a href=&quot;https://chrome.google.com/webstore/detail/stayfocusd/laankejkbhbdhmipfmgcngdelahlfoji&quot;&gt;a tool that completely blocks access to certain websites&lt;/a&gt; can also be a huge help.&lt;/p&gt;

&lt;p&gt;There is also the app &lt;a href=&quot;https://www.forestapp.cc/&quot;&gt;Forest&lt;/a&gt;, which helps you to keep your hands off your phone by rewarding instead of punishment: as long as you’re not touching it, you’ll grow your forest.&lt;/p&gt;

&lt;h3 id=&quot;strategy-two-curate-regularly&quot;&gt;Strategy two: curate regularly&lt;/h3&gt;

&lt;p&gt;To get more value out of the networks you do use, make time to regularly curate what you’re seeing.&lt;/p&gt;

&lt;p&gt;This starts by picking the networks you want to invest in. I’m using Instagram for it’s positivity (if you disregard the comments – you should never read comments anyway) and Twitter for news.&lt;/p&gt;

&lt;p&gt;Facebook has good tools for curation which really helps to define what you’ll see. You should get into the habit of actually dismissing things you don’t like whenever you see something.&lt;/p&gt;

&lt;p&gt;On Twitter and Instagram, the value of your visits largely depend on who you are following. Purging this selection really pays off as well.&lt;/p&gt;

&lt;p&gt;You could also let someone else do your curation. &lt;a href=&quot;http://nuzzel.com/&quot;&gt;Nuzzel&lt;/a&gt; is a great app that takes your Twitterfeed and sends you an email with the stuff you shouldn’t miss. This is a great way of leveraging the value of social media, without actually using it.&lt;/p&gt;

&lt;p&gt;I agree with Jeff: it is very well possible to have mostly negative experiences with social media, if you don’t do it right. We need a solid strategy, and with that there is a way to not only eliminate the negativity, but even get a lot of value out of using social networks.&lt;/p&gt;
</description>
				<pubDate>Sun, 30 Jul 2017 00:00:00 +0000</pubDate>
				<link>https://rickpastoor.com/2017/07/30/social-media-productivity.html</link>
				<guid isPermaLink="true">https://rickpastoor.com/2017/07/30/social-media-productivity.html</guid>
			</item>
		
			<item>
				<title>Focus as a lifestyle</title>
				
				<description>&lt;p&gt;As some of you know, for the last 10 months I've been shooting an almost daily vlog. Some a little better than others, but I have to admit, especially the first couple of videos are actually quite bad. I've been learning a lot around shooting video, editing and talking to a camera, which has been great (and necessary too).&lt;/p&gt;

&lt;p&gt;One of the recurring themes in the vlog was focus. However, if there is one thing my YouTube channel actually lacked, it was just that. So it was something that really needed to change. Even while focus is something that is on my mind a lot, I still don't do it as well as I would like to.&lt;/p&gt;

&lt;p&gt;Focus is not something that you do for a day and you tick off after that. It should be a state of mind you're in continuously. Like a radar that scans the environment, we should be checking in with our focus every single day.&lt;/p&gt;

&lt;p&gt;This is why I'm refocussing &lt;a href=&quot;https://www.youtube.com/rickpastoor&quot;&gt;my channel&lt;/a&gt;. I'm focussing on creating content around productivity. I'm switching from Dutch to English. I'm no longer aiming for daily but committing to a weekly video. This feels refreshing, it feels like a new challenge and it really renewed my energy for the project.&lt;/p&gt;

&lt;p&gt;All I needed to do was to take the time to reflect and to really figure out what I wanted to do.&lt;/p&gt;

&lt;p&gt;So the question is: where do you really need to rethink your focus?&lt;/p&gt;

&lt;p&gt;PS. On the channel I've launched a Productivity Bootcamp series. In the &lt;a href=&quot;https://www.youtube.com/watch?v=VEwQekvz040&quot;&gt;first episode&lt;/a&gt; I'm talking about remembering less. If you're interested, subscribe!&lt;/p&gt;
</description>
				<pubDate>Wed, 21 Jun 2017 06:00:13 +0000</pubDate>
				<link>https://rickpastoor.com/2017/06/21/focus-as-a-lifestyle.html</link>
				<guid isPermaLink="true">https://rickpastoor.com/2017/06/21/focus-as-a-lifestyle.html</guid>
			</item>
		
			<item>
				<title>What kind of leadership does your team need in order to grow?</title>
				
				<description>&lt;p&gt;When you're thinking about leadership and how to develop yourself as as leader, we often start with asking ourselves: what kind of leader do I want to be? Directive and forceful? Visionary? Someone who leads from behind?&lt;/p&gt;

&lt;p&gt;An interesting question, which can lead to all kinds of insights that will help you to do better. I would like to grow in understanding others better, because I want to be a thoughtful, helpful and supporting leader. Thinking about how I envision a great leader helps me to set better goals.&lt;/p&gt;

&lt;p&gt;However, this might not be what the people you're leading actually need. In order to be a better leader, the question &amp;ldquo;what kind of leadership does my team need in order to grow&amp;rdquo; can completely flip your actions. Don't confuse this with &amp;ldquo;what kind of leadership does my team &lt;em&gt;wants&lt;/em&gt;&amp;rdquo; though. Those two are often very different things.&lt;/p&gt;

&lt;p&gt;What kind of leadership does your team need in order to grow?&lt;/p&gt;
</description>
				<pubDate>Wed, 10 May 2017 06:00:04 +0000</pubDate>
				<link>https://rickpastoor.com/2017/05/10/what-kind-of-leadership-does-your-team-need-in.html</link>
				<guid isPermaLink="true">https://rickpastoor.com/2017/05/10/what-kind-of-leadership-does-your-team-need-in.html</guid>
			</item>
		
			<item>
				<title>The read/act ratio</title>
				
				<description>&lt;p&gt;I was thinking and writing about email this week. It is a quite fascinating topic and it is not the first time I'm covering it. Especially since it is something that we are all dealing with on a daily basis, and frankly most of us don't really enjoy.&lt;/p&gt;

&lt;p&gt;Still, while we loathe processing all the boring and complicated requests we have to deal with via email, we keep checking our mailbox. In a US study conducted a while ago, they found out that on average, a work related email is read &lt;em&gt;within 6 seconds&lt;/em&gt;. For something we dread, we check it an awful lot.&lt;/p&gt;

&lt;p&gt;There is a perfect explanation for that. As Nir Eyal describes in his great book Hooked, email contains all ingredients to be highly addictive: there are plenty of external triggers available (notifications), it is full of surprises (you never know what you'll get until you look) and it is super easy to access (which makes it the ultimate escape for your lazy brain when you should be working on something difficult).&lt;/p&gt;

&lt;p&gt;When I was thinking about my own behavior, I noticed one recurring datapoint: my read/act ratio is completely off. Meaning: until the moment I'm actually processing my email, I have already read it multiple times.&lt;/p&gt;

&lt;p&gt;Zooming in on this problem, I found that this mostly happens om my mobile phone. So to tackle that, I'm launching a new experiment where I have removed my email access from my iPhone. I'm interested how that changes my effectiveness when it comes to email and the added peace of mind that this might give me.&lt;/p&gt;

&lt;p&gt;Here are some other ideas around email that might be helpful:&lt;/p&gt;

&lt;ul&gt;&lt;li&gt;This is an absolute must and you probably already have done this: turn off notifications. I'd suggest switching them off for almost any service, but especially for email.&lt;/li&gt;
&lt;li&gt;Don't spend time archiving email into folders. Search is really powerful these days, and be honest: how many times do you actually access your carefully curated folders with old email?&lt;/li&gt;
&lt;li&gt;Spend some time learning a couple of details about your mailclient: what are pro-features you don't know? Are there keyboard shortcuts that could help you improve your flow?&lt;/li&gt;
&lt;li&gt;Schedule a couple blocks of time where you handle email, during your day. Before you feel the urge to check, take a 10 second break to rethink if you really should be doing this right now.&lt;/li&gt;
&lt;/ul&gt;&lt;p&gt;I'm curious how you're dealing with email. Do you have found your magic bullet? Let me know!&lt;/p&gt;
</description>
				<pubDate>Mon, 10 Apr 2017 06:00:22 +0000</pubDate>
				<link>https://rickpastoor.com/2017/04/10/the-readact-ratio.html</link>
				<guid isPermaLink="true">https://rickpastoor.com/2017/04/10/the-readact-ratio.html</guid>
			</item>
		
			<item>
				<title>Serendipity</title>
				
				<description>&lt;p&gt;In the fairy tale &amp;ldquo;The Three Princes of Serendip&amp;rdquo;, three sons of a great and powerful king are going through tough times. SPOILER ALERT: it ends well. The main storyline is about a missing camel, and by stumbling on pieces of what seems to be unrelated data while on the road, the brothers successfully recover the animal. With that, their lives are spared and all is good again.&lt;/p&gt;

&lt;p&gt;Horace Walpole derived the word &amp;ldquo;serendipity&amp;rdquo; from this story. Making discoveries of things &lt;em&gt;you were not looking for&lt;/em&gt;.&lt;/p&gt;

&lt;p&gt;Quite big inventions are attributed to have been discovered by serendipity instead of a focussed search: penicillin, the post-it note, the microwave, to name a few.&lt;/p&gt;

&lt;p&gt;Take penicillin for example: this antibacterial was discovered by Alexander Fleming while cleaning out his laboratory, because he noticed that something had contaminated one of his experiments. This failure resulted in an idea that saved millions of lives.&lt;/p&gt;

&lt;p&gt;You can write a book about this topic, but let's limit it to two characteristics of serendipity in this post.&lt;/p&gt;

&lt;h3&gt;Serendipity is about broadening your perspective&lt;/h3&gt;

&lt;p&gt;If Fleming would not have been paying attention to his cleaning efforts, he would never have spotted this weird effect that was going on. At any given moment, there are things going on around us that could spark new ideas and new inventions. But, in order to see them, we need to have a broader perspective. You can't make new connections if you're not moving the parts around. We need to play with our building blocks, throw them together and break them apart, and then closely monitor what happens.&lt;/p&gt;

&lt;p&gt;You definitely need to get rid of your tunnel vision to come up with a groundbreaking purpose of a failing type of glue (the post-it).&lt;/p&gt;

&lt;h3&gt;Serendipity is about appreciating the unexpected&lt;/h3&gt;

&lt;p&gt;I find this one really conflicting with things I like very much: structure and predictability. By eliminating randomness, there is less room for the unexpected. If we accept the fact that often the best ideas appear when we are not looking for them, we need to spend more time &lt;em&gt;not looking&lt;/em&gt;.&lt;/p&gt;

&lt;p&gt;This is why I think serendipity is, in a way, a skill: you need to be tuned in, all eyes, all ears, in the right position. To be ready to discover what you are not expecting.&lt;/p&gt;

&lt;h3&gt;Ok, now what?&lt;/h3&gt;

&lt;p&gt;I do think that there are a couple of things we can start doing to &amp;ldquo;tune in more&amp;rdquo; and to accelerate serendipity.&lt;/p&gt;

&lt;ul&gt;&lt;li&gt;&lt;strong&gt;Change your location&lt;/strong&gt;. One of the ways to get new ideas is to be confronted with input from the outside. Changing your location will accelerate that. Move to another city. Sit at another desk.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Show up&lt;/strong&gt;. Invites to anything are basically tickets to a lottery of ideas.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Ask more questions&lt;/strong&gt;. At the core: the more you're open to learn something, the higher the chance that you'll discover something new.&lt;/li&gt;
&lt;/ul&gt;
</description>
				<pubDate>Sun, 26 Mar 2017 06:00:27 +0000</pubDate>
				<link>https://rickpastoor.com/2017/03/26/serendipity.html</link>
				<guid isPermaLink="true">https://rickpastoor.com/2017/03/26/serendipity.html</guid>
			</item>
		
			<item>
				<title>Don’t overcomplicate prioritization</title>
				
				<description>&lt;p&gt;Companies are built on the principle that money must be made. In order to do that, problems need to be addressed and new features need to be launched. And by definition, there will always be more problems and ideas than that there is time to address them: we need to choose.&lt;/p&gt;

&lt;p&gt;Don't fall into the trap to overcomplicate this prioritization process. The goal of defining priorities is to prevent big mistakes and to make sure you're not missing out on big opportunities. A lot of companies are defining complex algorithms that produce precise priorities based on very imprecise input data. Focus on eliminating the big mistakes instead over controlling the tiny details.&lt;/p&gt;

&lt;p&gt;At Blendle, we're trying to get better with priorities by using a value/complexity matrix. A simple spreadsheet which allows you to enter things like customer benefit, opportunity size and development effort. For each feature, a score between 1 and 5 is entered. The end result is a score for each feature. While helpful, the input is quite imprecise and often subjective. This is by design, but that also means that you should not treat the output as a perfect way to sort things out. It is just as imprecise. The way to get to the list, by filling each column, is what is actually important.&lt;/p&gt;
</description>
				<pubDate>Sun, 19 Feb 2017 07:00:19 +0000</pubDate>
				<link>https://rickpastoor.com/2017/02/19/dont-overcomplicate-prioritization.html</link>
				<guid isPermaLink="true">https://rickpastoor.com/2017/02/19/dont-overcomplicate-prioritization.html</guid>
			</item>
		
	</channel>
</rss>
