Skip to content
View IanDavey's full-sized avatar
🆔
🆔

Block or report IanDavey

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

Pinned Loading

  1. planning-poker planning-poker Public

    JavaScript

  2. ThreesACrowd ThreesACrowd Public

    Three's A Crowd - the browser extension that blocks all troublesome first-party content!

    JavaScript

  3. WeatherHue WeatherHue Public

    Make your Hue lights reflect the outside temperature

    Python

  4. How to make and keep promises How to make and keep promises
    1
    # Promises
    2
    To make a brand-new promise to run code in parallel, simply use the `Promise` constructor:
    3
    ```js
    4
    let myPromise = new Promise((resolve, reject) => {
    5
      // do things in a separate thread