Skip to content
View MGough's full-sized avatar

Block or report MGough

Report abuse

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

Report abuse
MGough/README.md

I spend most of my time making systems work together, and trying to improve the developer experience & workflow.

Working with me

  • Send me questions whenever you have them! It's not spamming me. I'll get back to you when I can, asynchronous communication is great.
  • If I'm pointing out something obvious that you already know it's because someone else might be reading it, or will in the future and might not know that key piece of information.
  • Challenge me even if I seem certain or set in my way - It helps all of us improve.

Ask me about

  • Devops, Infra, Deployments
  • NestJS, NextJS, Typescript
  • Skiing, Climbing, Hiking

Pinned Loading

  1. sensorhub sensorhub Public

    A simple library to use with the DockerPi SensorHub (EP-0106)

    Python 8 1

  2. flask-microservice-sqlalchemy-marshmallow flask-microservice-sqlalchemy-marshmallow Public template

    A starter flask microservice using the application factory pattern with SQLAlchemy, Marshmallow, and Dynaconf

    Python 7

  3. Mocking using autospeccing. Mocking using autospeccing.
    1
    from unittest.mock import patch, Mock, create_autospec
    2
    from pytest import fixture
    3
    from service.example import SomeObjectToTest
    4
    from service.imported_class import SomeClassOutOfOurControl
    5