Skip to content
View ubarbaxor's full-sized avatar
🎯
Focusing
🎯
Focusing
Block or Report

Block or report ubarbaxor

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. potato3D potato3D Public

    "Weekend" (6 hours or less challenge) tinkering w/ Three.js

    JavaScript 1

  2. cv cv Public

    CV / resume

    JavaScript

  3. Base 10 to shadok converter Base 10 to shadok converter
    1
    const shadok = n => parseInt(n)
    2
      .toString(4)
    3
      .split('')
    4
      .map(e => ['ga', 'bu', 'zo', 'meu'][e])
    5
      .join(' ')