Skip to content
View tobz-nz's full-sized avatar
💥
Boom!
💥
Boom!

Organizations

@Techful-nz

Block or report tobz-nz

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. laravel/framework laravel/framework Public

    The Laravel Framework.

    PHP 34.3k 11.7k

  2. meili-ui meili-ui Public

    A super lightweight UI for Meilisearch

    JavaScript

  3. autoform autoform Public

    A rebuild of my original codeigniter library.

  4. keyboard-control keyboard-control Public

    A HTML Custom Element to add keyboard navigation support to its children. Type-ahead search results for example.

    JavaScript

  5. A super simple pair of tab custom el... A super simple pair of tab custom elements
    1
    customElements.define('tab-control', class extends HTMLElement {
    2
    
                  
    3
        #tabWindows = []
    4
    
                  
    5
        connectedCallback() {
  6. A simple input character count custo... A simple input character count custom element
    1
    customElements.define('character-count', class extends HTMLElement {
    2
        #target = null;
    3
    
                  
    4
        connectedCallback() {
    5
            this.#target = document.getElementById(this.getAttribute('for'));