NOTE: This blog has been moved to http://www.looksgoodworkswell.com

Monday, September 03, 2012

Why You Should Work with Me at PayPal

I have blogged a little in the past as to why I came to PayPal. Today I want to talk about why you should come to PayPal to work with me.

To start with let's be frank. Last year when I contemplated joining PayPal it was clear PayPal had long lost its luster as the darling innovator of Silicon Valley. PayPal had changed the face of payments when it came on the scene. And the innovators DNA is evidenced by one of its founders going on to create the first viable electric car and the successor to the Space Shuttle program. To get a fuller look at the innovator DNA of early PayPal, check out the wikipedia article on the PayPal Mafia.

But what I sensed when I joined PayPal last October was a desire to get back to its innovation roots. Back to a desire to innovate again. This desire coupled with a very healthy financial position seemed to me to be a no brainer. I decided to take the chance. So what has happened in the past 10 months? From my perspective three things: New leadership, new way of working and new talent.

New Leadership

How often do companies the size and age of PayPal get a complete makeover? Not often. But that is just what has been underway here. Take a look at just some of the new leadership in the company:

  • David Marcus. President. David came into PayPal a year ago as part of the Zong (mobile payments) acquisition. David is a product, user experience, social & mobile guy at heart. He is passionate about innovation and his motto is GSD (Get sh*t done!). Before PayPal I believe the largest organization he led was 200 people (Zong). He believes in small teams empowered with really smart people working with great business context. I could not be happier than I am working at PayPal with David at the helm.
  • James Barrese. James became the CTO of PayPal earlier this year. James brings the challenge to think differently to the technology organization. James also brings a wealth of experience leading technology at eBay with lessons learned from what worked and what didn't. 
  • Hill Ferguson. Head of Product & Mobile. Hill also joined PayPal through the Zong acquisition. Hill has strong mobile & financial roots and is a passionate leader bringing together all of our product & mobile teams together in a single team.
  • Hendrik Kleinsmiede. VP of Global Design (UED). Hendrik joined in January and brings with him a passion to create great experiences by attracting top talent and collaborating deeply with product & engineering. Hendrik & I have a very close working relationship and in our short time have collaborated on bringing LeanUX and Mobile First thinking in as first class citizens of PayPal.
  • Kirsten Wolberg. VP Technical Business Office (Project Management). Kirsten believes in Agile approach through & through having led the Salesforce IT org to become agile there. I am working in a team with Kirsten to make working in small teams a reality across PayPal.
  • Allen Olivo. Head of Global Marketing. Allen is a luminary in the industry having led Apple during the Steve Jobs transition back in the fold. He has places like Amazon & Yahoo in his past as well. Like the new fresh PayPal look? That is Allen & his team.
  • Doug Crockford. JavaScript Architect & Industry Luminary! Need I say more?
This is not an exhaustive list. I am sure I am forgetting to mention someone. I could also make a much longer list of VPs, Sr. Directors and Directors that have joined in the last year bringing fresh perspectives into the company. But I should mention that there are many existing leaders (like my former boss who recruited me) that also have this DNA of change.

New Way of Working

I have mentioned before that PayPal is in the midst of a transformation from working in silos in a slow waterfall manner to a lean, startup approach. Earlier in the year I had the privilege of helping to kick off a new way of working on a core part of our business. We took lessons from startups and decided that going forward (this was with David's total blessing as well as mandate) we would not work the way we had in the past.

We gathered our designers, our product folks and our engineers and took over a few conference rooms and began to operate like a startup. Design was done on whiteboards and coded in real time. Usability tests were weekly so the pace was fast and furious. But we were able to try dozens of experiences across desktop, tablet and mobile in the time that would have taken years at PayPal before. Build/Test/Learn became our mantra.

To date we have trained several hundred designers, engineers, product, QA, and other employees in Lean UX methodologies. In addition, we are in a huge transformation project bringing more and more of PayPal into this mode of working every day. Currently I am involved in at least 6 new innovation projects all operating like a startup within the company.

You can read about this approach in my presentation on the Lean UI Stack as well as see my cautions for what can go wrong in the presentation Anti-Patterns for LeanUX.

New Technology Stack 

I am really excited about this part of the transformation. For years PayPal's UI has been built on top of XML/XSLT technologies. If you know me you will no doubt have heard me rant violently about how this technology is the bane of good UI engineering. I won't go into it here, but suffice it to say that the only thing worse than XML/XSLT is a proprietary form of XML/XSLT -- which of course is what PayPal was built on (C++ on the backend).

In the last year the company has moved to Java for all new projects. I am very comfortable with Java. In fact since 1996 I have personally built 4 UI frameworks on top of the Java stack. However, I long ago lost my excitement for using Java in any way, shape or form for the experience layer. Typically Java Server Pages (JSP) is the standard Java solution for UIs. And not very surprisingly this is exactly what was in flight when I joined PayPal.

Knowing that Java was an improvement over C++ and JSP was an improvement over XML/XSLT wasn't enough to satisfy my requirement that UI Engineering (UIE) needed to be able to "Bring great design to life quickly". Elsewhere I have written about how the UI layer is actually the experimentation layer. And that you must design for build/test/learn. Which means designing for volatility and throwaway-ability. Iterating in Java and JSPs just didn't cut it based on my experience.

So with the launch of the new "startup" for one of our core businesses we began to experiment with nodejs. Node is an extremely powerful development environment for applications. Many node modules exist to bootstrap an application. And coupled with the right stack on the UI layer we saw it as a winning combination.

We wanted to be able to iterate faster than we could with the JSP stack and we wanted to be able to bring new talent in the door and have them checking in code within the first few days of hiring. In our mind this was only possible by using open source software as much as possible. Here are some of the choices we made at the UI layer:
  • Dust JS for our templating. We are partnering with LinkedIn as well as contributing to their fork of the Dust JS code on github. Dust is great because it compiles down to JS and so the same templates can be run in the server as well as in the client (page-oriented vs applications).
  • Backbone JS for eventing/model/structure to our applications. Of course underscore JS comes along for the ride.
  • Twitter Bootstrap. For our components. Very nice.
  • jQuery. Naturally.
  • For mobile: jQMobi. Although we are continually re-evaluating choices here.
  • Less. For CSS pre-processing. 
  • Require JS. For module discipline, dependency management, packaging and minification.

However, we were faced with a dilemma. PayPal had invested significantly in the Java layer. It was easy enough to develop with these UI technologies on top of node. But what about the Java/Spring foundation below?

What we did was a rather elegant hack. We added a new ViewResolver in Spring to handle running Dust templates within the Java server stack. We use RhinoScript as the resolver since it is the JS execution engine for the Java VM world.

On the node side, we continued to use it for all of our mockup/prototyping of the actual product. The UI stack sits nicely on top of this node stack. And at anytime we just push the UI portion of the app over to the production Java stack and it runs the same as it did in node. In effect we have made our UI prototyping code be the same as our UI production code.

We continue to investigate the feasibility of using Node in production and working with our PayPal infrastructure team are continuously adding modules to Node to have it operate as a first class citizen in the PayPal environment. In addition, the team has built a node bootstrap that allows you to gen up applications, views, controllers for our node apps -- a lot like the Rails scaffolding.

Another great change internally has been the addition of GitHub to our full enterprise. Nothing like having GitHub as your blessed code repository. All of our node code lives there so the whole org is can make it better.

What has been the result?

  • New UI Engineer hired and within 4 hours was checking in code! PayPal record as far as I know.
  • "Coding is fun again" -- quote from UIE after working in our new  tech stack.
  • Spun up half-dozen new projects behaving like startups using the new technology stack with very little training (if you can google it you don't need a week-long class to teach it).
  • Innovation is happening. We are seeing high levels of collaboration and continuous build/test/learn cycles happening in multiple teams.

New Talent

Last but not least is the talent. I was pleasantly pleased to find good to great talent within PayPal when I joined. Two top engineers at Netflix joined my team and are leading out on a lot of the innovation. The existing members are actually folks I sought out to work for me before and are doing excellent work. I have hired great talent from Yahoo! as well as other places and am looking to deepen the talent further. But I don't want to stop there. I am looking for talent density within my organization and across PayPal.

What about you? If you are a top-flight UIE (frontend engineer, web developer, etc) and it jazzes you to imagine the change we can bring with the resources of PayPal focused correctly, then why not drop me a line. I always have room for top talent. Come help be part of the new PayPal mafia :-)

Contact me now at bill.scott _AT_ paypal.com.


.

8 comments:

Patrick Steele-Idem said...

As a developer on the Presentation Platform on the eBay Marketplaces side (not PayPal), I can confirm that it is a great time to be part of the eBay family. In addition to the reasons that Bill mentioned, here are some more:

- Management and leaders with roots in software development (Bill is definitely no exception here)

- Efforts to be a leader in the open source community by contributing back new technologies and starting new platform projects as open source (ql.io is one example, but more are soon to follow)

- A commitment from management to bring in the latest technologies from the open source community

- Great developer workstation setup (MacBook Pros plus powerful desktops)

- Internal adoption of newer open source technologies (e.g., Node, MongoDB, Hadoop, etc.)

- Internal adoption of great tools to ease development (e.g., Github, JIRA, etc.)

- And, it doesn't hurt that the company has had great performance (reflected in the stock price)

I'll try to refrain from recruiting developers to be part of my team :)

Patrick Steele-Idem said...

As a developer on the Presentation Platform on the eBay Marketplaces side (not PayPal), I can confirm that it is a great time to be part of the eBay family. In addition to the reasons that Bill mentioned, here are some more:
- Management and leaders with roots in software development (Bill is definitely no exception here)
- Efforts to be a leader in the open source community by contributing back new technologies and starting new platform projects as open source (ql.io is one example, but more are soon to follow)
- A commitment from management to bring in the latest technologies from the open source community
- Great developer workstation setup (MacBook Pros plus powerful desktops)
- Internal adoption of newer open source technologies (e.g., Node, MongoDB, Hadoop, etc.)
- Internal adoption of great tools to ease development (e.g., Github, JIRA, etc.)
- And, it doesn't hurt that the company has had great performance (reflected in the stock price)

I'll try to refrain from recruiting developers to be part of my team :)

SalvoG said...

Bill,
I share your enthusiasm and your views on why it's "cool" to work at PayPal!
Innovation, new leadership team with the right startup mentality and working on highly scalable solutions are some of the reasons.
I am at my 4th week, leading the Localization org, and I am more excited than ever to be part of the PayPal family!
Salvo

Mark Stuart said...

Hey Bill -

Nice post! I haven't had the chance to meet any of our top leadership, so it was nice to hear about where they came from. It's surprising to see so many of them have led small startups.

I also wanted to point out that many UIEs that I talk to keep mentioning that this is such a great time to be at PayPal because the "get shit done" mentality. Oh yeah... and the new web stack (node, less, dust, etc) allows for insane boosts in productivity where you can make UI tweaks in SECONDS, not minutes. (like on a typical Java stack).

Thanks for your commitment to making PayPal a really great place to work for UIEs and Web Devs!

Mark said...

My biggest problem with PayPal is the atrocious customer service and their "take it or leave it" attitude towards their customers. Amazingly, no one has come to knock you off of your high horse as of yet...but believe me, their are tens of thousands of customers who simply cannot wait for that day. What we all are hoping for is to see you become the MySpace of Facebook. That you and all of your horrible employees are without jobs and paychecks for the way you have treated us customers for the past several years.

Bill Scott said...

Hi Mark. I totally understand your feeling. And obviously PayPal has screwed you royally in the past. I can't change the past. Having arrived here only 10 months ago I am doing everything in my power (along with lots of other people in the organization -- both new & old) to change the now & the future.

Realize that PayPal is somewhat a victim of its own success. It got big really fast. And it is easy to lose touch with the customer. Policies meant to protect us from fraud and some really bad characters when tuned the wrong way hurt our good customers. And our help pages and resolution tracks haven't been easy to use.

All I can say is that I have 25 years in the industry and what I see inside PayPal is a passion to get it right. Time will tell.

Thank you for being candid.

Anonymous said...

Would love, love, love it...

If a fix for the cookie issue could somehow make it into this wave of corporate change.

See:

https://www.paypal-community.com/t5/My-Feedback-for-PayPal-Archive/Paypal-Please-fix-the-cookie-problem-it-s-been-years/td-p/462983

Anonymous said...

I started at PP last week to work on Hadoop. I worked there for 5 years previously.

Night and day - then and now. I love the new PayPal. New leaders. No more cruft.

I can't wait to bring game changing technologies to PP like Hadoop and Openstack.


This is PayPal reborn.


Ed