Skip to content
View eriklindebratt's full-sized avatar

Highlights

  • Pro
Block or Report

Block or report eriklindebratt

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

  1. flic-chromecast-playback-trigger flic-chromecast-playback-trigger Public archive

    Trigger playback on Chromecast device(s) using Flic (v1) interface

    Python

  2. dotfiles dotfiles Public

    My personal work env, scripted.

    Shell 2

  3. batch-process-with-generators batch-process-with-generators
    1
    import { default as _ } from "lodash";
    2
    
                  
    3
    async function* processInBatches(data, batchSize) {
    4
      const batches = _.chunk(data, batchSize);
    5