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

Block or report jLouzado

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

Hi there 👋

Pinned

  1. patchcording.com patchcording.com Public

    Blog of Joel Louzado

    JavaScript

  2. whiteboard-clone whiteboard-clone Public

    My spin on the whiteboard. Inspired by Excalidraw and ExplainEverything

    TypeScript 2

  3. jlouzado.github.io jlouzado.github.io Public

    Personal, Public Zettlekasten as a Digital Garden

    HTML

  4. wardley-doctrine-survey wardley-doctrine-survey Public

    Spec for a Survey to evaluate a Company according to the Wardley Doctrine https://twitter.com/swardley/status/993517588113186817

    3 1

  5. action-land/action-land action-land/action-land Public

    Suite of action based libraries and utilities

    TypeScript 3 10

  6. Virtual DOM library in 500bytes Virtual DOM library in 500bytes
    1
    const typeOf = ob => ob.toString()
    2
    
                  
    3
    const forEach = (fn, l) => typeOf(l) === '[object Object]'
    4
      ? forEach(k => fn(l[k], k), Object.keys(l))
    5
      : Array.from(l).forEach(fn)