Skip to content
View michowski's full-sized avatar
Block or Report

Block or report michowski

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. jsn jsn Public

    An absolutely simple & terse CLI app to manipulate JSON data

    Haskell 111 2

  2. ts-init ts-init Public

    Minimalist TypeScript package initializer - like `npm init`, but for TS.

    JavaScript 29

  3. exercism-haskell exercism-haskell Public

    My solutions to Exercism tasks for Haskell.

    Haskell

  4. Like Redux, but without any boilerpl... Like Redux, but without any boilerplate.
    1
    import { Component, ComponentType } from 'react';
    2
    import getKeys from 'lib/getKeys';
    3
    import mapValues from 'lodash/mapValues';
    4
    
    
    5
    export type Update<S> = (s: S) => S;