Skip to content
View codeinthehole's full-sized avatar
🌏
The main difference between dinosaurs and us is we're building our own meteor.
🌏
The main difference between dinosaurs and us is we're building our own meteor.
Block or Report

Block or report codeinthehole

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
codeinthehole/README.md

About me

I'm the Head of Software Engineering at Octopus Energy.

I used to maintain several open-source projects but I do less open-source work these days. I'm the original author of django-oscar although I'm not active in the project any more.

Latest blog posts

Browse all blog posts

Latest TIL posts

I learnt...

Browse all TIL posts

Latest Gists

Browse all public Gists

Pinned

  1. django-cacheback django-cacheback Public

    Smart caching for Django using Celery to refresh cached items asynchronously.

    Python 374 78

  2. purl purl Public

    A simple, immutable URL class with a clean API for interrogation and manipulation.

    Python 295 39

  3. Git config Git config
    1
    [user]
    2
        name = David Winterbottom
    3
        email = david.winterbottom@gmail.com
    4
    
                  
    5
    [alias]
  4. Python start-up file Python start-up file
    1
    # Python start-up file
    2
    # --------------------
    3
    # Ensure a PYTHONSTARTUP environment variable points to the location of this file.
    4
    # See https://docs.python.org/3/using/cmdline.html#envvar-PYTHONSTARTUP
    5
    
                  
  5. Python testing reference Python testing reference
    1
    # Python testing reference
    2
    
                  
    3
    This document is a reference for common testing patterns in a Django/Python
    4
    project using Pytest.
    5