Thanks to visit codestin.com
Credit goes to github.com

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.

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

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

    TypeScript 1

  2. autoflow autoflow Public

    A visual drag-and-drop workflow designer for parking automation. Inspired by tools like n8n, this project lets users create and customize parking and vehicle workflows with an intuitive interface. …

    TypeScript

  3. pet-appointments-app pet-appointments-app Public

    A simple pet appointments app built with NextJS.

    JavaScript

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

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