Skip to content
View dylarcher's full-sized avatar
💭
Much foo... Such bar.
💭
Much foo... Such bar.

Highlights

  • Pro

Block or report dylarcher

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. Namespace model template for style d... Namespace model template for style design tokens.
    1
    {
    2
        "unc": {
    3
            "$description": "The root namespace for the Unified Naming Convention (UNC), providing a single, cohesive system for all frontend assets.",
    4
            "tokens": {
    5
                "$description": "Namespace for all design tokens, which act as the single source of truth for all stylistic properties like colors, spacing, and typography.",
  2. Regex: captures javascript comments ... Regex: captures javascript comments and any whitespace before/above. (includes jsdocs comments for now)
    1
    export const captureJavascriptComments = new RegExp("(?:^|[\s\n]+)(?!\S*[`'\"])(?:\/\/.*?(?=\n|$)|(?:\/\*\*?[\s\S]*?\*\/))", "g");
    2
    export const captureLimitedComments = new RegExp("(?:^|[\s\n]+)(?!\S*[`'\"])(?:\/\/(?!\s*(?:eslint|prettier|ts-ignore|ts-expect-error|@ts-|markdownlint|stylelint|@\w)).*?(?=\n|$)|\/\*\*?(?:(?!\*\/|@\w)[\s\S])*\*\/)", "g");
    3
    export default {
    4
      captureJavascriptComments,
    5
      captureLimitedComments,
  3. Simple tests via window.console in t... Simple tests via window.console in the browser
    1
    /**
    2
     * @fileoverview A utility to test functions with console methods for debugging and inspection.
    3
     * @author Dylan Archer
    4
     */
    5
    
                  
  4. Accessibility contrast rating utility. Accessibility contrast rating utility.
    1
    
                  
    2
    /**
    3
     * Defines a color scheme with a text color and a backdrop color.
    4
     * @type {Object}
    5
     * @property {string} textColor - The hexadecimal color value for the text.
  5. A list of `git` default configuratio... A list of `git` default configurations and alias shortcut commands.
    1
    **Personal Git Aliases***
    2
    
                  
    3
    ```sh
    4
    # Reindex commit history associated with a remote branch (default: main)
    5
    git reset $(git merge-base origin/${1:-main} $(git branch --show-current))
  6. media-variant-encoder media-variant-encoder Public

    JavaScript