Skip to content
View mwinel's full-sized avatar
💻
let us build sth together
💻
let us build sth together
Block or Report

Block or report mwinel

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 Loading

  1. pet-appointments-app pet-appointments-app Public

    A simple pet appointments app built with NextJS.

    JavaScript

  2. pumpkin pumpkin Public

    Pumpkin CN is a step-by-step and practical hands-on guide to the Cloud Native ecosystem.

    JavaScript

  3. ticketing-app ticketing-app Public

    A simple but scalable ticketing app built based on the Microservices Architecture and deployed to the Google Cloud Platform.

    TypeScript

  4. ezziepos.com ezziepos.com Public

    TypeScript

  5. nasa-image-search nasa-image-search Public

    Search NASA images.

    TypeScript

  6. This gist implements a Trie (prefix ... This gist implements a Trie (prefix tree) structure and integrates it into a React component to provide autocomplete functionality. The Trie structure efficiently stores and retrieves words, making it ideal for autocomplete and search applications. The React component uses the Trie to suggest completions for user input in real time.
    1
    'use client';
    2
    
                  
    3
    import React from 'react';
    4
    
                  
    5
    import { cn } from './utils';