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

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. moola.js moola.js Public

    A TypeScript library for handling monetary values and currency conversions, inspired by Martin Fowler's Money pattern.

    TypeScript

  2. pet-appointments-app pet-appointments-app Public

    A simple pet appointments app built with NextJS.

    JavaScript

  3. ip-address-tracker-master ip-address-tracker-master Public

    This is a solution to the IP address tracker challenge on Frontend Mentor. Frontend Mentor challenges help you improve your coding skills by building realistic projects.

    TypeScript

  4. 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';