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.

Maximum 250 characters. Please don’t include any personal information such as legal names or email addresses. Markdown is supported. This note will only be visible to you.
Report abuse

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

Report abuse

Pinned Loading

  1. planning-pokerplanning-pokerPublic

    JavaScript

  2. ThreesACrowdThreesACrowdPublic

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

    JavaScript

  3. WeatherHueWeatherHuePublic

    Make your Hue lights reflect the outside temperature

    Python

  4. How to make and keep promisesHow 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 =newPromise((resolve, reject) => {
    5
    // do things in a separate thread