Skip to content
View Nick390's full-sized avatar
😃
I learned a lot this year
😃
I learned a lot this year

Organizations

@the-circle-organization
Block or Report

Block or report Nick390

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. regulation.md regulation.md Public

    This system was created to organize the flow of files and folders and the way to name them, and its goal is to facilitate knowledge of the history of each file and folder where every amendment is b…

    1

  2. CMD CMD Public

    Full List of Command Prompt Commands

    HTML 1

  3. CVSS-Calculator CVSS-Calculator Public

    This CVSS Calculator made using Chat GPT 3.5

    HTML

  4. generate unique id generate unique id
    1
    function generate_unique_id(length) {
    2
      const characters = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789-_';
    3
      let result = '';
    4
      
    5
      for (let i = 0; i < length; i++) {