Skip to content
View guzzdev's full-sized avatar

Block or report guzzdev

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.

Maximum 250 characters. Please don’t include any personal information such as legal names or email addresses. Markdown is supported. This note will only be visible to you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. bun-kvstorebun-kvstorePublic

    Simple KV for Bun using SQLite

    TypeScript

  2. i18n-parityi18n-parityPublic

    Validate parity of translation keys across locales: reports missing, empty, and extra keys with coverage (%).

    TypeScript

  3. c-shellc-shellPublic

    She sells seashells by the seashore

    C

  4. NodeGalleryNodeGalleryPublic

    Small SSR project to learn node. Free to use/edit/publish.

    JavaScript

  5. PRVT-forum-servicePRVT-forum-servicePublic

    Anonyme service to talk

    PHP 1

  6. Generate secrets with npm scriptGenerate secrets with npm script
    1
    // Generate a secret with a npm script
    2
    // For 64 bytes hex:
    3
    "generate:secret": "node -e \"console.log(require('crypto').randomBytes(64).toString('hex'))\""
    4
    //For 64 bytes base64
    5
    "generate:secret": "node -e \"console.log(require('crypto').randomBytes(64).toString('base64'))\""