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

Block or report robinverona

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

  1. Sonolithe Sonolithe Public

    A sound-based puzzle game prototype made with Unity in two weeks

    C#

  2. websockets-canvas-2d websockets-canvas-2d Public

    Node.js server managing the connection, movement and disconnection of multiple users in a 2d canvas

    JavaScript

  3. Sass function change text color base... Sass function change text color based on background color
    1
    /* This snippet NEED HSL values to work correctly */
    2
    /* Sass variables with HSL values */
    3
    $orange: hsl(30, 91, 58, 1);
    4
    $blue: hsl(229, 100, 65, 1);
    5
    $purple: hsl(251, 54, 49, 1);
  4. Hijack keyboard layout in input Hijack keyboard layout in input
    1
    const azertyKeys = ['a', 'z', 'e', 'r', 't', 'y', 'u', 'i', 'o', 'p', 'q', 's', 'd', 'f', 'g', 'h', 'j', 'k', 'l', 'm', 'w', 'x', 'c', 'v', 'b', 'n']
    2
    const abcdKeys = ['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z']
    3
    const textarea = document.getElementById('textarea') // just add example textarea in html file
    4
    
                  
    5
    azertyKeys.forEach((key, index) => {