Skip to content
View clarkbw's full-sized avatar
🐯
Hiring Product Managers!
🐯
Hiring Product Managers!

Highlights

  • Pro

Organizations

@wavysandbox
Block or Report

Block or report clarkbw

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
clarkbw/README.md

Hello there, I'm Bryan πŸ‘‹

I am a product manager, developer, and designer; seriously I studied computer science, started my career as a designer and now combine all that into my product management work.

I've been a tinkerer my whole life, I'm obsessed with how things work. My first computer was a Tandy Sensation which I hacked away at to make it play the latest games. My second computer I built by myself from parts. I grew up taking things apart, putting them back together and asking endless "why questions". Why is this this way? Why can't it be this way? This curiosity is my super power, I don't stop asking why until I understand things. I love the how and why of things.

I've worked on the Linux Kernel, GNOME Desktop, client side applications (Thunderbird and Firefox) as well as cloud based services (Mozilla Services, GitHub, Timescale) and am looking forward to learning even more.

I view my product work as a craft and am constantly trying to improve my processes and output. Happy to connect with others who want to talk about product process, technology, oh and cycling 🚴

  • πŸ‘‰ Check out where I work now Neon
  • πŸ‘‰ Connect with me on πŸ”— LinkedIn
  • πŸ‘‰ Follow me on 🐦 Twitter
  • πŸ‘‰ Reach out over πŸ“¨ Email (slower to respond)

Pinned

  1. jest-localstorage-mock jest-localstorage-mock Public

    A module to mock window.localStorage and window.sessionStorage in Jest

    JavaScript 320 33

  2. jest-webextension-mock jest-webextension-mock Public

    A module to mock WebExtensions in Jest

    JavaScript 91 36

  3. loopback-ds-timestamp-mixin loopback-ds-timestamp-mixin Public archive

    A mixin to automatically generate createdAt and updatedAt Date attributes for loopback Models

    JavaScript 115 50

  4. A User Timing middleware for redux t... A User Timing middleware for redux to create performance markers for dispatched actions
    1
    const timing = store => next => action => {
    2
      performance.mark(`${action.type}_start`);
    3
      let result = next(action);
    4
      performance.mark(`${action.type}_end`);
    5
      performance.measure(