<?xml version="1.0" encoding="UTF-8"?>
<feed xml:lang="en-US" xmlns="http://www.w3.org/2005/Atom" xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd">
  <id>tag:adamgreenfield.com,2013:/posts</id>
  <link rel="alternate" type="text/html" href="https://adamgreenfield.com"/>
  <link rel="self" type="application/atom+xml" href="https://adamgreenfield.com/posts.atom"/>
  <title>AdamGreenfield.com</title>
  <updated>2020-11-26T07:27:03Z</updated>
  <entry>
    <id>tag:adamgreenfield.com,2013:Post/1621306</id>
    <published>2020-11-25T23:09:57Z</published>
    <updated>2020-11-26T07:27:03Z</updated>
    <link rel="alternate" type="text/html" href="https://adamgreenfield.com/thoughts-on-service-provider-rooted-identities"/>
    <title>Thoughts on service provider rooted identities</title>
    <content type="html">
      <![CDATA[<div class="posthaven-post-body"><p>When I started in datacenters, we had places where we used network
addressing and layer 3/layer 4 firewalls as the primary way to manage service
identity for internal services where we needed it. Even at that time, there were
some annoying attack scenarios you had to deal with in multitenant environments
and compromise scenarios attacking your layer 2 and 3 infrastructure (MAC
spoofing, ARP poisoning, etc.) that meant even then it wasn’t a totally reliable
source for identity information. Luckily, for those reasons and other trends, people
have largely moved away from source IP as a source of workload identity.</p>

<h2>Network Service</h2>

<p>With the advent of high automated infrastructure systems and
the birth of “cloud” infrastructure we saw other approaches to providing identity
to compute workloads emerge. The most well known this is probably the <a href="https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-instance-metadata.html">AWS EC2
metadata service</a>. Fundamentally this method boils down to using a link-local
address to allow the workload to access an API to get information about itself
over the network. This include operational characteristics and user data used
to power cloud-config. Cloud-config powers a lot of the run time first boot features
like executing arbitrary scripts, or configuring the system based on data
provided by the metadata service.</p>

<p>However, if configured with an IAM role and instance
profile, this service also provides a set of <a href="https://docs.amazonaws.cn/en_us/IAM/latest/UserGuide/introduction.html">AWS IAM</a> credentials that can be
used to call permitted AWS services (based on the access configuration of that
role) that are effectively accessible to any process that can source network
traffic from the system by default. Another endpoint this metadata service
provides is an identity document. This is a cryptographically signed document
containing configuration information about the instance. Because this identity
document is made available only to the workload itself this link local address
people also use possession of this identity document as proof of workload
identity.</p>

<p>This approach has some short comings, many of which these <a href="https://blog.appsecco.com/getting-started-with-version-2-of-aws-ec2-instance-metadata-service-imdsv2-2ad03a1f3650">service
providers have worked on strategies to mitigate</a>. AWS on its documentation page
for the metadata service (at the time of writing) calls out one of the largest
ones. Any workload that can communicate over the network to that link local
address can see all that data and those credentials. Outside of obvious attacks
resulting in system compromise, there are a surprising number of attack vectors
that allow you to make a vulnerable workload or systems perform a web request
on behalf of the attacker – and with this network metadata approach all of them
potentially expose your service identity/credential data.</p>

<p>It is easy to build broad API support for this credential
discovery approach. Both the service provider themselves can do this in their
libraries and SDKs as AWS does and others can do this using presigned URLs with
instance role credentials or validating the instance identity document. </p>

<h2>Application Environment</h2>

<p>Another approach we see is folks providing credentials to
applications, particularly beyond the IaaS level, is injecting data in the
processes running environment. This broadly comes in two flavors, actual
process environment variables or a file/filesystem provided within the
filesystem presented process. I feel like the dangers of storing credentials
and secrets in your processes environment variables has been documented
extensively, but in summary both infrastructure systems and often times
applications themselves (or their dependent libraries or frameworks) don’t
protect the process environment as if they contain secret data in many cases.
It is still common to find logs that freely log environment variables or send
them as part of exception reports or debug error messages/screens. It is more rare
to find applications that allow attackers to read arbitrary files from the file
system, but they do exist – generally by honest developer mistake or misconfiguration
rather than by design as many of the environment variable exposures appear to
be. </p>

<p>These patterns are commonly used with <a href="https://kubernetes.io/docs/tasks/inject-data-application/distribute-credentials-secure/">Kubernetes secrets</a> or
config maps, and container PaaS/function as a service platform like Lambda. Particularly
with the filesystem approach this feels like the most prudent path at this
point as a service provider to me.</p>

<p>It is noteworthy that these Application Environment methods require
more awareness and integration between the scheduler and the workload. In high
level cases like function or container as a service, this probably feels
natural. However, it gets more complex if you want to support many operating
systems and depends heavily on the features available in your scheduler/hypervisor
layer.</p>

<h2>Why bother?</h2>

<p>Very few workloads we deploy today are an island. Most
communicate with service providers we leverage consuming PaaS services or other
services we write and deploy separately in a modern microservice environment.
Traditionally we dealt with long lived credentials that we stored treated as
secrets used in the production configuration management or deployment
processes.</p>

<p>There are other solutions to machine identity out here.
Enterprise organizations have been dealing with Active Directory and their
related machine account dynamics with Windows for decades. Even earlier than that
systems like Kerberos had solutions to this problem. Most of the solutions that
solve this do not fare well when applied to the Service Provider use case. I do
not know any service providers today that operate with multiple customers
sharing an Active Directory environment for instance. I think many customers
would be uncomfortable with this scenario if they did. </p>

<p>As technology and security practices have evolved, the
benefits of moving to short lived credentials have been wildly discussed. It
caps the duration of risk related to someone getting access to credentials
that have been used in your production environment. This includes attack
vectors like someone compromising a production backup, snapshot, or set of log
files that inadvertently included credentials for your environment.</p>

<p></p><p>Many of the advancements people think of as cloud are highly
automated infrastructure and modern deployment practices. Giving customers a secure
root of identity solution can encourage them to adopt other useful
infrastructure automation patterns, like treating servers as short lived and replaceable
rather than long lived and maintained. This sort of identity can be
foundational to first boot scripts interacting with other services from your
provider or reaching out to your centralized identity provider to get other
credentials it needs to access other systems. Getting people to think about their
infrastructure differently, rather than any technical capability is the most
impactful improvement most organizations make during a cloud transformation.<br></p></div>]]>
    </content>
    <author>
      <name/>
    </author>
    <category scheme="https://adamgreenfield.com/tags/all" term="tools"/>
    <category scheme="https://adamgreenfield.com/tags/all" term="infrastructure"/>
  </entry>
  <entry>
    <id>tag:adamgreenfield.com,2013:Post/1589927</id>
    <published>2020-09-02T15:55:20Z</published>
    <updated>2020-09-02T15:55:20Z</updated>
    <link rel="alternate" type="text/html" href="https://adamgreenfield.com/infrastructure-for-side-projects"/>
    <title>Infrastructure for side projects</title>
    <content type="html">
      <![CDATA[<div class="posthaven-post-body"><p></p><p>Today’s cloud landscape has no shortage of options when it
comes to deploying HTTP-based applications. For small ideas and side
projects I still have a hard time justifying running an entire container
cluster, so I find myself reaching for options like <a href="https://cloud.google.com/run">Google Cloud Run</a> or <a href="https://aws.amazon.com/fargate/">AWS
Fargate</a> because it provides me with a  clear path towards something like <a href="https://knative.dev">Knative</a> if my
small idea starts to grow into something more substantial. At some point if you
have enough of these small workloads running it will start to create cost drivers
toward building a cluster multiple workloads could share.</p>

<p>The minimum footprint for a side project is a small amount
of CI/CD configuration in <a href="https://about.gitlab.com/">Gitlab</a>, <a href="https://github.com">GitHub</a>, <a href="https://cloud.google.com/cloud-build">Google Cloud Build</a> or <a href="https://aws.amazon.com/codebuild/">AWS CodeBuild</a>,
a deployment target (or several if you run a proper multi stage deployment
process including dev, staging, and production). This makes it quick and inexpensive
to get things up and running quickly so you can iterate on your idea. </p><p></p>My toolchain of choice continues to change often because the
technology landscape around PaaS and Serverless deployment options is evolving rapidly.
AWS Lambda, Google Cloud Functions and similar offerings do not feel like the
right fit and the tradeoff between ease of use and vendor gravity doesn’t seem
worth it to me at this moment. I have built many solutions using these services
and for many use cases they are a better fit than something container based,
but I have committed technology sins by using serverless functions in places I
should not have. That scar tissue is still fresh.<br><p></p></div>]]>
    </content>
    <author>
      <name/>
    </author>
    <category scheme="https://adamgreenfield.com/tags/all" term="infrastructure"/>
    <category scheme="https://adamgreenfield.com/tags/all" term="tools"/>
    <category scheme="https://adamgreenfield.com/tags/all" term="work"/>
  </entry>
  <entry>
    <id>tag:adamgreenfield.com,2013:Post/600829</id>
    <published>2013-09-11T18:15:04Z</published>
    <updated>2013-10-08T17:29:49Z</updated>
    <link rel="alternate" type="text/html" href="https://adamgreenfield.com/close-to-home"/>
    <title>Close to home</title>
    <content type="html">
      <![CDATA[<div class="posthaven-post-body"><p>Several years
ago, I was living just outside New York City. This particular morning I
happened to be at my girlfriend's place in central Pennsylvania and we weren't
even completely awake when her brother in law came to the door almost panicked.
I didn't know him very well and didn't know what to make of it at first when he
came running in. We turned on the television just in time to see the second
plane crash into the towers.</p><p>
I'll never forget the feeling I had trying to
take a mental inventory of where my friends and colleagues were likely to be
that morning. I started calling, texting, emailing (like everyone else at that
moment) trying to make sure my friends were safe. Only a few were in Manhattan
that morning and luckily they were all OK.<br><br>
I will never forget</p></div>]]>
    </content>
    <author>
      <name/>
    </author>
  </entry>
  <entry>
    <id>tag:adamgreenfield.com,2013:Post/578658</id>
    <published>2013-05-12T22:17:22Z</published>
    <updated>2013-10-08T17:25:18Z</updated>
    <link rel="alternate" type="text/html" href="https://adamgreenfield.com/reflections-on-mothers-day"/>
    <title>Reflections on Mother's Day</title>
    <content type="html">
      <![CDATA[<div class="posthaven-post-body"><p>        <div class="posthaven-gallery" id="posthaven_gallery[546274]">
                  <p class="posthaven-file posthaven-file-image posthaven-file-state-processed">
          <img class="posthaven-gallery-image" src="https://phaven-prod.s3.amazonaws.com/files/image_part/asset/926078/rEkf91zdPT6bWT06SqOiDOwKdss/medium_MomAndGram.png" data-posthaven-state='processed'
data-medium-src='https://phaven-prod.s3.amazonaws.com/files/image_part/asset/926078/rEkf91zdPT6bWT06SqOiDOwKdss/medium_MomAndGram.png'
data-medium-width='688'
data-medium-height='523'
data-large-src='https://phaven-prod.s3.amazonaws.com/files/image_part/asset/926078/rEkf91zdPT6bWT06SqOiDOwKdss/large_MomAndGram.png'
data-large-width='688'
data-large-height='523'
data-thumb-src='https://phaven-prod.s3.amazonaws.com/files/image_part/asset/926078/rEkf91zdPT6bWT06SqOiDOwKdss/thumb_MomAndGram.png'
data-thumb-width='200'
data-thumb-height='200'
data-xlarge-src='https://phaven-prod.s3.amazonaws.com/files/image_part/asset/926078/rEkf91zdPT6bWT06SqOiDOwKdss/xlarge_MomAndGram.png'
data-xlarge-width=''
data-xlarge-height=''
data-orig-src='https://phaven-prod.s3.amazonaws.com/files/image_part/asset/926078/rEkf91zdPT6bWT06SqOiDOwKdss/MomAndGram.png'
data-orig-width='688'
data-orig-height='523'
data-posthaven-id='926078'/>
        </p>

        </div>
</p><p>I was raised by my mother and my grandmother. Throughout my life they have provided me with the love, caring and support to make it through even my toughest days. Anything good that I have or will accomplish is in no small part because of them. They both broke their backs to provide their children and grandchildren with opportunities and experiences that surpassed the ones they had growing up. They taught me right from wrong, strength during hardship, compassion and empathy, how to improve yourself, and countless other things that one could easily overlook. I carry these things with me for all the days of my life and even in times I lose my way it is these tools that I use to find it again. There is no gift, no card and no flowers that will ever truly express how much I appreciate what they’ve done and continue to do for both me and my son.</p></div>]]>
    </content>
    <author>
      <name/>
    </author>
  </entry>
  <entry>
    <id>tag:adamgreenfield.com,2013:Post/344277</id>
    <published>2011-12-06T15:42:02Z</published>
    <updated>2013-10-08T16:35:20Z</updated>
    <link rel="alternate" type="text/html" href="https://adamgreenfield.com/your-words-have-power-use-them-wisely"/>
    <title>Your words have power use them wisely</title>
    <content type="html">
      <![CDATA[<div class="posthaven-post-body">        <div class="posthaven-gallery" id="posthaven_gallery[349424]">
                  <p class="posthaven-file posthaven-file-image posthaven-file-state-processed">
          <img class="posthaven-gallery-image" src="https://phaven-prod.s3.amazonaws.com/files/image_part/asset/624287/fXaRPYmpahIwWzwCmzCGSOD-ngY/medium_YourWords.jpg" data-posthaven-state='processed'
data-medium-src='https://phaven-prod.s3.amazonaws.com/files/image_part/asset/624287/fXaRPYmpahIwWzwCmzCGSOD-ngY/medium_YourWords.jpg'
data-medium-width='500'
data-medium-height='363'
data-large-src='https://phaven-prod.s3.amazonaws.com/files/image_part/asset/624287/fXaRPYmpahIwWzwCmzCGSOD-ngY/large_YourWords.jpg'
data-large-width='500'
data-large-height='363'
data-thumb-src='https://phaven-prod.s3.amazonaws.com/files/image_part/asset/624287/fXaRPYmpahIwWzwCmzCGSOD-ngY/thumb_YourWords.jpg'
data-thumb-width='200'
data-thumb-height='200'
data-xlarge-src='https://phaven-prod.s3.amazonaws.com/files/image_part/asset/624287/fXaRPYmpahIwWzwCmzCGSOD-ngY/xlarge_YourWords.jpg'
data-xlarge-width=''
data-xlarge-height=''
data-orig-src='https://phaven-prod.s3.amazonaws.com/files/image_part/asset/624287/fXaRPYmpahIwWzwCmzCGSOD-ngY/YourWords.jpg'
data-orig-width='500'
data-orig-height='363'
data-posthaven-id='624287'/>
        </p>

        </div>
</div>]]>
    </content>
    <author>
      <name/>
    </author>
  </entry>
  <entry>
    <id>tag:adamgreenfield.com,2013:Post/344281</id>
    <published>2011-10-17T03:45:19Z</published>
    <updated>2020-09-02T16:45:37Z</updated>
    <link rel="alternate" type="text/html" href="https://adamgreenfield.com/the-good-life"/>
    <title>The Good Life</title>
    <content type="html">
      <![CDATA[<div class="posthaven-post-body"><a href="https://www.flickr.com/photos/admgre/6252219675/in/dateposted-public/"><img width="373" alt="The Good Life" src="https://live.staticflickr.com/6156/6252219675_553680b9cd.jpg" height="500"></a></div>]]>
    </content>
    <author>
      <name/>
    </author>
    <category scheme="https://adamgreenfield.com/tags/all" term="good life"/>
    <category scheme="https://adamgreenfield.com/tags/all" term="fatherhood"/>
    <category scheme="https://adamgreenfield.com/tags/all" term="priorities"/>
  </entry>
  <entry>
    <id>tag:adamgreenfield.com,2013:Post/344282</id>
    <published>2011-10-11T04:50:00Z</published>
    <updated>2020-09-02T16:01:48Z</updated>
    <link rel="alternate" type="text/html" href="https://adamgreenfield.com/forks-in-the-road"/>
    <title>Forks in the road</title>
    <content type="html">
      <![CDATA[<div class="posthaven-post-body"><p>Tonight I found out that another co-worker is taking the next step in their career and leaving our company. Selfishly I’m sad I won’t be working with them anymore, but honestly I’m happy for them and know they have a very bright future ahead.<br></p><div>
<div>
<p>What really got me thinking was the conversation we had after covered the basics (e.g. sorry to see you go, where are you heading, etc.). The reality is that most careers don’t follow the clean-cut path they have in the past. Not very long ago it was common to work for the same company for decades, leave with a gold watch, benefits and a pension. That definitely isn’t the reality I live in, and I often think about the going on five years I’ve invested in my current organization. Granted my career path has been pretty interesting over those years – but I’ve been at the same place.</p>
<p>Today you are responsible more than ever before for your own retirement, your own career and your success. My friend made the comment that loyalty doesn’t exist anymore, I responded that I don’t think it is gone but I think it has changed. Today’s loyalty is a bond between humans, not between a human and an organization. I think I like it that way</p>
<p>When giving me advice at one point a few months ago a senior executive whom I’ve grown to trust said to me that the only way to build the kind of bond he and I were talking about at the time, where near frictionless disagreement and collaboration are possible, was to go through “battle” with someone. He didn’t mean this strictly in the military sense however I can only imagine the result is even stronger in that case. He was referring to the absolute certainty to the guy standing next to you will still be there, fighting right along with you, even when things get ugly. In some jobs, that might be an everyday event or an extraordinary circumstance. Either way the result is the same, you learn who you can trust. You learn who you can count on and you learn whom you can’t.</p>
<p>I’ve lost another one of the people who fit solidly in former category. The good news for me is that you never really lose those people; you just might not know how or when your paths will cross again. In fact, I got a call from another one of the people I’d put in that category earlier today asking me to speak at a User Group his organization is hosting next month.</p>
</div>
</div></div>]]>
    </content>
    <author>
      <name/>
    </author>
    <category scheme="https://adamgreenfield.com/tags/all" term="friends"/>
    <category scheme="https://adamgreenfield.com/tags/all" term="work"/>
    <category scheme="https://adamgreenfield.com/tags/all" term="career"/>
  </entry>
  <entry>
    <id>tag:adamgreenfield.com,2013:Post/344283</id>
    <published>2011-10-08T20:37:00Z</published>
    <updated>2013-10-08T16:35:20Z</updated>
    <link rel="alternate" type="text/html" href="https://adamgreenfield.com/360-feedback"/>
    <title>360 Feedback</title>
    <content type="html">
      <![CDATA[<div class="posthaven-post-body"><p>        <div class="posthaven-gallery" id="posthaven_gallery[349426]">
                  <p class="posthaven-file posthaven-file-image posthaven-file-state-processed">
          <img class="posthaven-gallery-image" src="https://phaven-prod.s3.amazonaws.com/files/image_part/asset/624288/4XCeOWkeOMCv2R4T0mxs8pv8IrI/medium_MyFeedbackImage.png" data-posthaven-state='processed'
data-medium-src='https://phaven-prod.s3.amazonaws.com/files/image_part/asset/624288/4XCeOWkeOMCv2R4T0mxs8pv8IrI/medium_MyFeedbackImage.png'
data-medium-width='800'
data-medium-height='600'
data-large-src='https://phaven-prod.s3.amazonaws.com/files/image_part/asset/624288/4XCeOWkeOMCv2R4T0mxs8pv8IrI/large_MyFeedbackImage.png'
data-large-width='800'
data-large-height='600'
data-thumb-src='https://phaven-prod.s3.amazonaws.com/files/image_part/asset/624288/4XCeOWkeOMCv2R4T0mxs8pv8IrI/thumb_MyFeedbackImage.png'
data-thumb-width='200'
data-thumb-height='200'
data-xlarge-src='https://phaven-prod.s3.amazonaws.com/files/image_part/asset/624288/4XCeOWkeOMCv2R4T0mxs8pv8IrI/xlarge_MyFeedbackImage.png'
data-xlarge-width=''
data-xlarge-height=''
data-orig-src='https://phaven-prod.s3.amazonaws.com/files/image_part/asset/624288/4XCeOWkeOMCv2R4T0mxs8pv8IrI/MyFeedbackImage.png'
data-orig-width='800'
data-orig-height='600'
data-posthaven-id='624288'/>
        </p>

        </div>
</p>
<p>One of the Operations Directors at work developed an application we have started to use to gather 360 feedback from the other people in the organization you interact with frequently. This tool basically asks for a number of objective criteria to be evaluated on a 1 to 10 scale and then provides the ability to give you some structured (but largely free form) data on things you are doing well and things you should consider changing.</p>
<p></p>
<div>I like this application and the idea behind it. When it is presented to you (and your manager) it shows you all the feedback but keeps the people providing it anonymous. I will say that I wish there was a way for me to ask questions (anonymously would be fine) about some of the feedback so I can really understand of it but most of it is pretty interesting.</div>
<p></p>
<div>One of the outputs it gives you is the graphic I'm showing here, it maps your certain traits based on the objective feedback. The other most interesting part is looking at the delta between your average rating from peers and how you rate yourself.</div></div>]]>
    </content>
    <author>
      <name/>
    </author>
    <category scheme="https://adamgreenfield.com/tags/all" term="feedback"/>
    <category scheme="https://adamgreenfield.com/tags/all" term="360"/>
    <category scheme="https://adamgreenfield.com/tags/all" term="work"/>
  </entry>
  <entry>
    <id>tag:adamgreenfield.com,2013:Post/344284</id>
    <published>2011-10-06T03:11:37Z</published>
    <updated>2020-09-02T16:26:06Z</updated>
    <link rel="alternate" type="text/html" href="https://adamgreenfield.com/steve-jobs-on-death"/>
    <title>Steve Jobs on Death</title>
    <content type="html">
      <![CDATA[<div class="posthaven-post-body"><p>I hope most people have watched this amazing speach, but it is worth watching today. Steve Jobs had an incredible impact on the world in his years.</p>
<p><iframe width="667" height="500" src="https://www.youtube.com/embed/UF8uR6Z6KLc?feature=oembed" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe></p></div>]]>
    </content>
    <author>
      <name/>
    </author>
  </entry>
  <entry>
    <id>tag:adamgreenfield.com,2013:Post/344285</id>
    <published>2011-08-10T18:01:29Z</published>
    <updated>2013-10-08T16:35:20Z</updated>
    <link rel="alternate" type="text/html" href="https://adamgreenfield.com/the-only-reason-people-listen-to-me-is-becaus"/>
    <title>The only reason people listen to me is because of my f-ing sweet hat</title>
    <content type="html">
      <![CDATA[<div class="posthaven-post-body"><p>        <div class="posthaven-file posthaven-file-video posthaven-file-state-processed" id="posthaven_video_624289" >
                    <video id="posthaven_video_624289" class="video-js " controls
                 width="500" height="374"
                 preload="none" poster="https://phaven-prod.s3.amazonaws.com/files/video_part/video_thumb/624289/RZoNy7vvT7gkezJXsH3GdzR9s4A/frame_0000.png"
                 data-setup='{"fluid":true,"aspectRatio":"250:187"}'>
            <source src="https://phaven-prod.s3.amazonaws.com/files/video_part/encoded/624289/UGYSKfcXMZD4g9KTSBOTHeAIH_g/Andy_n_Adam_Pligirm_Movie.mp4" type='video/mp4'>
          </video>
 <a class="posthaven-file-download" download href="https://phaven-prod.s3.amazonaws.com/files/video_part/asset/624289/PmTT3mps8AJmMyARwWsCULnH4rs/Andy_n_Adam_Pligirm_Movie.avi">Download Andy_n_Adam_Pligirm_Movie.avi</a>
        </div>
</p></div>]]>
    </content>
    <author>
      <name/>
    </author>
    <link rel="enclosure" href="https://phaven-prod.s3.amazonaws.com/files/video_part/encoded/624289/UGYSKfcXMZD4g9KTSBOTHeAIH_g/Andy_n_Adam_Pligirm_Movie.mp4" type="video/mp4" length="1720536"/>
  </entry>
  <entry>
    <id>tag:adamgreenfield.com,2013:Post/344286</id>
    <published>2011-04-17T18:58:39Z</published>
    <updated>2013-10-08T16:35:20Z</updated>
    <link rel="alternate" type="text/html" href="https://adamgreenfield.com/achievement-unlocked-workaholic"/>
    <title>Achievement Unlocked: Workaholic</title>
    <content type="html">
      <![CDATA[<div class="posthaven-post-body">      <p class="p1">This was originally a pearl of wisdom I sent to a co-worker who told me I'd have something "by the end of the day" on a Sunday:</p><p class="p1"><br></p><blockquote class="webkit-indent-blockquote"> <p class="p1">After 10 years in different roles I've stopped wearing "workaholic" like it is a badge of honor. I work weekends if I can't avoid it - but it leaves me regretting the time I missed with my son and my friends. I work nights if I have to, because I need to carry my weight and not create undue stress on my colleagues (most of whom I also count among my friends).</p>
</blockquote></div>]]>
    </content>
    <author>
      <name/>
    </author>
  </entry>
  <entry>
    <id>tag:adamgreenfield.com,2013:Post/344288</id>
    <published>2011-01-12T17:06:00Z</published>
    <updated>2020-09-02T16:32:26Z</updated>
    <link rel="alternate" type="text/html" href="https://adamgreenfield.com/a-little-stuff-penguin"/>
    <title>A little stuffed penguin</title>
    <content type="html">
      <![CDATA[<div class="posthaven-post-body"><p>        <div class="posthaven-gallery" id="posthaven_gallery[349429]">
                  <p class="posthaven-file posthaven-file-image posthaven-file-state-processed">
          <img class="posthaven-gallery-image" src="https://phaven-prod.s3.amazonaws.com/files/image_part/asset/624290/GpKFlIUg6sS49wnpRIbOnwMDh_Y/medium_DeanPenguin.jpg" data-posthaven-state='processed'
data-medium-src='https://phaven-prod.s3.amazonaws.com/files/image_part/asset/624290/GpKFlIUg6sS49wnpRIbOnwMDh_Y/medium_DeanPenguin.jpg'
data-medium-width='800'
data-medium-height='600'
data-large-src='https://phaven-prod.s3.amazonaws.com/files/image_part/asset/624290/GpKFlIUg6sS49wnpRIbOnwMDh_Y/large_DeanPenguin.jpg'
data-large-width='1200'
data-large-height='900'
data-thumb-src='https://phaven-prod.s3.amazonaws.com/files/image_part/asset/624290/GpKFlIUg6sS49wnpRIbOnwMDh_Y/thumb_DeanPenguin.jpg'
data-thumb-width='200'
data-thumb-height='200'
data-xlarge-src='https://phaven-prod.s3.amazonaws.com/files/image_part/asset/624290/GpKFlIUg6sS49wnpRIbOnwMDh_Y/xlarge_DeanPenguin.jpg'
data-xlarge-width=''
data-xlarge-height=''
data-orig-src='https://phaven-prod.s3.amazonaws.com/files/image_part/asset/624290/GpKFlIUg6sS49wnpRIbOnwMDh_Y/DeanPenguin.jpg'
data-orig-width='3264'
data-orig-height='2448'
data-posthaven-id='624290'/>
        </p>

        </div>
</p>
<p>When I started traveling all the time, my son gave me one of his stuffed animals to bring with me. I carry it in my bag and wherever I go I try to take a few pictures of this little stuffed penguin in various locations. I was touched because it is one of his favorite stuffed animals and I smile every time I see it in my bag.</p></div>]]>
    </content>
    <author>
      <name/>
    </author>
  </entry>
  <entry>
    <id>tag:adamgreenfield.com,2013:Post/344289</id>
    <published>2010-12-17T22:28:06Z</published>
    <updated>2013-10-08T16:35:20Z</updated>
    <link rel="alternate" type="text/html" href="https://adamgreenfield.com/angrybirds-deans-favorite-game"/>
    <title>Angrybirds: Dean's Favorite Game!</title>
    <content type="html">
      <![CDATA[<div class="posthaven-post-body">        <div class="posthaven-gallery" id="posthaven_gallery[349430]">
                  <p class="posthaven-file posthaven-file-image posthaven-file-state-processed">
          <img class="posthaven-gallery-image" src="https://phaven-prod.s3.amazonaws.com/files/image_part/asset/624291/7G-tez5cU7EdnvqLJ0g8ijat8fU/medium_DeanAngryBirds.jpg" data-posthaven-state='processed'
data-medium-src='https://phaven-prod.s3.amazonaws.com/files/image_part/asset/624291/7G-tez5cU7EdnvqLJ0g8ijat8fU/medium_DeanAngryBirds.jpg'
data-medium-width='640'
data-medium-height='480'
data-large-src='https://phaven-prod.s3.amazonaws.com/files/image_part/asset/624291/7G-tez5cU7EdnvqLJ0g8ijat8fU/large_DeanAngryBirds.jpg'
data-large-width='640'
data-large-height='480'
data-thumb-src='https://phaven-prod.s3.amazonaws.com/files/image_part/asset/624291/7G-tez5cU7EdnvqLJ0g8ijat8fU/thumb_DeanAngryBirds.jpg'
data-thumb-width='200'
data-thumb-height='200'
data-xlarge-src='https://phaven-prod.s3.amazonaws.com/files/image_part/asset/624291/7G-tez5cU7EdnvqLJ0g8ijat8fU/xlarge_DeanAngryBirds.jpg'
data-xlarge-width=''
data-xlarge-height=''
data-orig-src='https://phaven-prod.s3.amazonaws.com/files/image_part/asset/624291/7G-tez5cU7EdnvqLJ0g8ijat8fU/DeanAngryBirds.jpg'
data-orig-width='640'
data-orig-height='480'
data-posthaven-id='624291'/>
        </p>

        </div>
</div>]]>
    </content>
    <author>
      <name/>
    </author>
  </entry>
  <entry>
    <id>tag:adamgreenfield.com,2013:Post/344293</id>
    <published>2010-06-08T02:42:37Z</published>
    <updated>2013-10-08T16:35:20Z</updated>
    <link rel="alternate" type="text/html" href="https://adamgreenfield.com/nostalgia"/>
    <title>Nostalgia</title>
    <content type="html">
      <![CDATA[<div class="posthaven-post-body">        <div class="posthaven-gallery" id="posthaven_gallery[349433]">
                  <p class="posthaven-file posthaven-file-image posthaven-file-state-processed">
          <img class="posthaven-gallery-image" src="https://phaven-prod.s3.amazonaws.com/files/image_part/asset/624292/Zq2kLNKvJBpf19XOsuRoviUdcBU/medium_DSCN0921.jpg" data-posthaven-state='processed'
data-medium-src='https://phaven-prod.s3.amazonaws.com/files/image_part/asset/624292/Zq2kLNKvJBpf19XOsuRoviUdcBU/medium_DSCN0921.jpg'
data-medium-width='800'
data-medium-height='1067'
data-large-src='https://phaven-prod.s3.amazonaws.com/files/image_part/asset/624292/Zq2kLNKvJBpf19XOsuRoviUdcBU/large_DSCN0921.jpg'
data-large-width='1200'
data-large-height='1600'
data-thumb-src='https://phaven-prod.s3.amazonaws.com/files/image_part/asset/624292/Zq2kLNKvJBpf19XOsuRoviUdcBU/thumb_DSCN0921.jpg'
data-thumb-width='200'
data-thumb-height='200'
data-xlarge-src='https://phaven-prod.s3.amazonaws.com/files/image_part/asset/624292/Zq2kLNKvJBpf19XOsuRoviUdcBU/xlarge_DSCN0921.jpg'
data-xlarge-width=''
data-xlarge-height=''
data-orig-src='https://phaven-prod.s3.amazonaws.com/files/image_part/asset/624292/Zq2kLNKvJBpf19XOsuRoviUdcBU/DSCN0921.jpg'
data-orig-width='1536'
data-orig-height='2048'
data-posthaven-id='624292'/>
        </p>

        </div>
</div>]]>
    </content>
    <author>
      <name/>
    </author>
  </entry>
  <entry>
    <id>tag:adamgreenfield.com,2013:Post/344297</id>
    <published>2010-04-13T15:04:28Z</published>
    <updated>2013-10-08T16:35:20Z</updated>
    <link rel="alternate" type="text/html" href="https://adamgreenfield.com/stop-selling-used-cars"/>
    <title>Stop selling used cars</title>
    <content type="html">
      <![CDATA[<div class="posthaven-post-body"><p>Today, I had a rare insight into the customer experience of someone trying to purchase a moderately sized managed hosting installation. Somehow in the many years that have passed since I first entered this space I've never stopped to think about how grueling the sales experience must be to have to do that shopping. Most every organization I've worked at that had a sales staff incentives them on the amount of hosting they sell. This makes sense because you want to reward sales people that generate revenue. However many of the sales compensation structures I've seen place little or no emphasis on the long term customer satisfaction and deep relationship developed by selling a customer the RIGHT solution.</p> <p>People purchasing managed hosting often do so because they want to offload some of the responsibility of building, maintaining or managing their infrastructure. This is the way that many hosting vendors try to position themselves to fill for customers. So why does the initial experience so often begin with someone who doesn't have your long-term best interest as his or her primary motivator?</p> <p>In many times where I've filled a pre-sales capacity for a customer I've built a deep relationship with that customer that spanned several roles in the company for me and the entire lifetime of their account. As an industry, we need to figure out how we can make that the normal experience, rather than a situation where people sometimes suffer through the sales process in the hopes that the operations experience and the technology they come out with are worth the headache.</p> <p> </p> </div>]]>
    </content>
    <author>
      <name/>
    </author>
  </entry>
  <entry>
    <id>tag:adamgreenfield.com,2013:Post/344273</id>
    <published>2010-04-12T07:16:57Z</published>
    <updated>2013-10-08T16:35:20Z</updated>
    <link rel="alternate" type="text/html" href="https://adamgreenfield.com/i-wonder-how-much-money"/>
    <title>I wonder how much money...</title>
    <content type="html">
      <![CDATA[<div class="posthaven-post-body">        <div class="posthaven-gallery" id="posthaven_gallery[349421]">
                  <p class="posthaven-file posthaven-file-image posthaven-file-state-processed">
          <img class="posthaven-gallery-image" src="https://phaven-prod.s3.amazonaws.com/files/image_part/asset/624285/iY4qKQW5RJzGDcgciZCT-kLA8Hs/medium_mac_screenshot.png" data-posthaven-state='processed'
data-medium-src='https://phaven-prod.s3.amazonaws.com/files/image_part/asset/624285/iY4qKQW5RJzGDcgciZCT-kLA8Hs/medium_mac_screenshot.png'
data-medium-width='272'
data-medium-height='223'
data-large-src='https://phaven-prod.s3.amazonaws.com/files/image_part/asset/624285/iY4qKQW5RJzGDcgciZCT-kLA8Hs/large_mac_screenshot.png'
data-large-width='272'
data-large-height='223'
data-thumb-src='https://phaven-prod.s3.amazonaws.com/files/image_part/asset/624285/iY4qKQW5RJzGDcgciZCT-kLA8Hs/thumb_mac_screenshot.png'
data-thumb-width='200'
data-thumb-height='200'
data-xlarge-src='https://phaven-prod.s3.amazonaws.com/files/image_part/asset/624285/iY4qKQW5RJzGDcgciZCT-kLA8Hs/xlarge_mac_screenshot.png'
data-xlarge-width=''
data-xlarge-height=''
data-orig-src='https://phaven-prod.s3.amazonaws.com/files/image_part/asset/624285/iY4qKQW5RJzGDcgciZCT-kLA8Hs/mac_screenshot.png'
data-orig-width='272'
data-orig-height='223'
data-posthaven-id='624285'/>
        </p>

        </div>
<p>we spend just advertising to get people to fill out the census. If the 3 post cards including the actual form containing the census and TV ads were not enough.... BOOM! Facebook Ads :)</p></div>]]>
    </content>
    <author>
      <name/>
    </author>
  </entry>
  <entry>
    <id>tag:adamgreenfield.com,2013:Post/344275</id>
    <published>2010-04-06T02:54:01Z</published>
    <updated>2013-10-08T16:35:20Z</updated>
    <link rel="alternate" type="text/html" href="https://adamgreenfield.com/what-it-is-all-about"/>
    <title>What it is all about</title>
    <content type="html">
      <![CDATA[<div class="posthaven-post-body">        <div class="posthaven-gallery" id="posthaven_gallery[349423]">
                  <p class="posthaven-file posthaven-file-image posthaven-file-state-processed">
          <img class="posthaven-gallery-image" src="https://phaven-prod.s3.amazonaws.com/files/image_part/asset/624286/s4uibKHDPM8v6REJ2kMudHoKiow/medium_4495213077_edd2d5833d_o.jpg" data-posthaven-state='processed'
data-medium-src='https://phaven-prod.s3.amazonaws.com/files/image_part/asset/624286/s4uibKHDPM8v6REJ2kMudHoKiow/medium_4495213077_edd2d5833d_o.jpg'
data-medium-width='800'
data-medium-height='600'
data-large-src='https://phaven-prod.s3.amazonaws.com/files/image_part/asset/624286/s4uibKHDPM8v6REJ2kMudHoKiow/large_4495213077_edd2d5833d_o.jpg'
data-large-width='1200'
data-large-height='900'
data-thumb-src='https://phaven-prod.s3.amazonaws.com/files/image_part/asset/624286/s4uibKHDPM8v6REJ2kMudHoKiow/thumb_4495213077_edd2d5833d_o.jpg'
data-thumb-width='200'
data-thumb-height='200'
data-xlarge-src='https://phaven-prod.s3.amazonaws.com/files/image_part/asset/624286/s4uibKHDPM8v6REJ2kMudHoKiow/xlarge_4495213077_edd2d5833d_o.jpg'
data-xlarge-width=''
data-xlarge-height=''
data-orig-src='https://phaven-prod.s3.amazonaws.com/files/image_part/asset/624286/s4uibKHDPM8v6REJ2kMudHoKiow/4495213077_edd2d5833d_o.jpg'
data-orig-width='1280'
data-orig-height='960'
data-posthaven-id='624286'/>
        </p>

        </div>
</div>]]>
    </content>
    <author>
      <name/>
    </author>
  </entry>
  <entry>
    <id>tag:adamgreenfield.com,2013:Post/344278</id>
    <published>2010-04-04T19:05:04Z</published>
    <updated>2013-10-08T16:35:20Z</updated>
    <link rel="alternate" type="text/html" href="https://adamgreenfield.com/improving-my-password-security"/>
    <title>Improving my password security</title>
    <content type="html">
      <![CDATA[<div class="posthaven-post-body">We all have *that* password. The one you try first when you are presented with a login form that you don't know your login for off the top of your head. Maybe if your a little more security minded you have a few of those passwords.<p></p> In the last few weeks I've been trying to force myself to adopt <a href="http://agilewebsolutions.com/products/1Password">1Password</a> for improved security. So far so good. The idea is that you store your randomly generated unique passwords in a system that you trust and don't use the same password everywhere.<p></p><div>I'll let you know how the experiment ends up, but it is worth trying yourself as well. If you can get use to it - you'll be in a better situation when a malicious person discovers your password to some forum you registered for to make one post three years ago.</div></div>]]>
    </content>
    <author>
      <name/>
    </author>
  </entry>
  <entry>
    <id>tag:adamgreenfield.com,2013:Post/344280</id>
    <published>2010-04-04T08:56:00Z</published>
    <updated>2020-09-02T16:08:57Z</updated>
    <link rel="alternate" type="text/html" href="https://adamgreenfield.com/to-learn-a-new-language"/>
    <title>To learn a new language</title>
    <content type="html">
      <![CDATA[<div class="posthaven-post-body"><p>I've accepted a position at work that has me spending the majority of my time acting as Product Owner in our Software Engineering organization (which has adopted a mostly agile development process). The primary team I serve as product owner for (our customer portal team) has some of our most seasoned developers and is more or less self sufficient. My day to day oversight of their efforts is minimal if at all. I set priorities every two weeks, check is periodically and answer questions as they come up - but that is pretty much it. </p><p></p> Having a background in software engineering is it my inclination to learn the language we develop in (C#). I'm confident I could do it in short span of time, but I am worried the result will end up in me becoming too involved in our project for the team's comfort. I'm happy to let them drive technical direction and don't want to meddle in a team that is clearly producing, but I'm also someone who enjoys discussing software architecture. <p></p> I recently spoke with our CTO about my progress in my new role - and one of the things he left me with was that too often I go out of my way to "seem like the smartest person in the room." While this isn't something I realized outright, I do understand where he is coming from. He suggested in places where I might be inclined to make a declarative statement, I instead restructure my thought as a question to drive discussion. My gut tells me his advice here is solid, but I've always thrived in highly technical environments where challenging one another on ideas is the norm. <p></p> I wonder how his advice would be applied to my current situation, where learning the language might result in my inclination to start throwing out ideas for the team to challenge.</div>]]>
    </content>
    <author>
      <name/>
    </author>
  </entry>
</feed>
