Skip to content
View andremury's full-sized avatar

Organizations

@simplifreela

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 is supported. This note will only be visible to you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. Mury12/mm-wsMury12/mm-wsPublic

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

    PHP 3 1

  2. Mury12/mmws-coreMury12/mmws-corePublic

    The core of mm-ws

    PHP 1

  3. tools.andremurytools.andremuryPublic

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

    Vue

  4. Mury12/ts-job-runnerMury12/ts-job-runnerPublic

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

    TypeScript 1

  5. loop-styles-benchmarkloop-styles-benchmarkPublic

    JavaScript

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