Skip to content
View Deityhub's full-sized avatar
🌍
Making everyday life better
🌍
Making everyday life better

Block or report Deityhub

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 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. lienzo lienzo Public template

    A versatile document builder for creating resumes, invoices, letters, and more. Build beautiful, professional documents in minutes with our intuitive drag-and-drop canvas.

    Svelte

  2. react-webpack-starter-kit react-webpack-starter-kit Public

    JavaScript 8 5

  3. markdown-previewer markdown-previewer Public

    A markdown previewer web app built with reactjs

    JavaScript 1

  4. kanboard kanboard Public

    A simple mini-task manager for your day to day activities

    JavaScript 1

  5. hmsConverter.js hmsConverter.js
    1
    const secondsToHms = value => {
    2
      value = Number(value);
    3
      let hr = Math.floor(value / 3600),
    4
        min = Math.floor((value % 3600) / 60),
    5
        sec = Math.floor((value % 3600) % 60);
  6. copyToClipboard.js copyToClipboard.js
    1
    /**
    2
     * @param {string} text the content to copy to clipboard
    3
     * @description copies text to clipboard
    4
     */
    5