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

Block or report itzjonas

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

    Forked from storybookjs/storybook

    📓 UI component dev & test: React, Vue, Angular, React Native, Ember, Web Components & more!

    TypeScript

  2. nikola nikola Public

    Forked from geraldoramos/nikola

    ⚡Unofficial cross-platform desktop app to monitor and control Tesla vehicles, powered by Electron & React

    JavaScript

  3. psproxy psproxy Public

    Forked from majgis/psproxy

    Executable for enablling or disabling proxy settings for Junos Pulse Secure VPN

    Shell

  4. Useful One-Liners (JavaScript) Useful One-Liners (JavaScript)
    1
    // Remove any duplicates from an array of primitives
    2
    const unique = [...new Set(arr)];
    3
    
                  
    4
    // Sleep in async functions.  Use: await sleep(2000)
    5
    const sleep = (ms) => (new Promise(resolve => setTimeout(resolve, ms)));