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

Block or report Sporium

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

    JavaScript Drum kit for javascript30.com

    HTML

  2. ThreeJSHollowHornet ThreeJSHollowHornet Public

    Hornet form Hollow Knight model in browser using ThreeJS

    JavaScript 1

  3. javascript-codewars javascript-codewars Public

    Forked from encinafr/javascript-codewars

    ⚔️ This the my repository for my codewars solutions in JavaScript.

    JavaScript

  4. Typescript json file as types/ useT... Typescript json file as types/ useTranslation
    1
    import { useTranslation as useIntl } from 'react-i18next';
    2
    
                  
    3
    import font from '../../public/static/locales/en/front.json';
    4
    
                  
    5
    type DeepKeysOf<T, Key extends keyof T = keyof T> = Key extends string
  5. TS_conditional_type.ts TS_conditional_type.ts
    1
    export type Event = 
    2
    | {
    3
        type: "LOG_IN";
    4
        payload: {
    5
          userId: string;