Skip to content
View linkinmedo's full-sized avatar

Organizations

@alphateam-sa

Block or report linkinmedo

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. validatorjs/validator.js validatorjs/validator.js Public

    String validation

    JavaScript 23.1k 2.3k

  2. steam-roulette steam-roulette Public

    A web app that select a random game from your steam library for you to play

    JavaScript 1

  3. ws-counter ws-counter Public

    Websocket Counter Button ⚡️

    Vue 2

  4. Decode Facebook signed_request with ... Decode Facebook signed_request with NodeJS 8+
    1
    function parse_signed_request(signed_request, secret) {
    2
        const encoded_data = signed_request.split(".",2);
    3
        // decode the data
    4
        const sig = encoded_data[0];
    5
        let buffer = new Buffer(encoded_data[1], "base64");