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

Block or report fpirsch

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. vptree.js vptree.js Public

    Javascript implementation of the Vantage-Point Tree nearest neighbor search algorithm

    JavaScript 151 20

  2. twin-bcrypt twin-bcrypt Public

    asm.js JavaScript implementation of the bcrypt algorithm for Node and the browser.

    JavaScript 58 5

  3. neural-network-race neural-network-race Public

    JavaScript 2

  4. adventofcode2022 adventofcode2022 Public

    JavaScript

  5. ponystream ponystream Public

    A small library to free lots of ponies at the bottom of any element of your web page.

    JavaScript 1

  6. The smallest test framework The smallest test framework
    1
    const test = exports.test = (label, cb) => (test.$list || (test.$list = [])).push({ label, cb })
    2
    exports.beforeEach = cb => test.$beforeEach = cb
    3
    setImmediate(() => test.$list.forEach(async ({ label, cb }) => console.log(label, await cb(test.$beforeEach?.()) || '\u001B[32m✔\u001B[39m')))
    4
    test.skip = (label, cb) => console.log(label, '\u001B[91m✗ SKIPPED\u001B[39m')
    5
    test.todo = (label, cb) => console.log(label, '\u001B[91m✗ TODO\u001B[39m')