Skip to content
View andremury's full-sized avatar

Block or report andremury

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 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. Mury12/mm-ws Mury12/mm-ws Public

    This is a tiny and simple PHP webservice model for a fast creation of APIs.

    PHP 3 1

  2. Mury12/mmws-core Mury12/mmws-core Public

    The core of mm-ws

    PHP 1

  3. tools.andremury tools.andremury Public

    A set of tools that I develop for my personal use, not only related to programming.

    Vue

  4. Mury12/ts-job-runner Mury12/ts-job-runner Public

    Simple NodeJS job executor in Typescript with hooks and composable task queue

    TypeScript 1

  5. loop-styles-benchmark loop-styles-benchmark Public

    JavaScript

  6. filter-map.ts filter-map.ts
    1
    export const filterMap = <T = unknown, U = unknown>(
    2
        arr: U[],
    3
        condition: (item: U, index: number) => boolean,
    4
        mapTo: (item: U, index: number) => T,
    5
    ): T[] => {