Skip to content
View dmdez's full-sized avatar
Block or Report

Block or report dmdez

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
dmdez/README.md

Hi there, I'm Deric Mendez 👋

https://dmdez.github.io/

Instagram LinkedIn

I'm currently working as a Sr. Developer at Crema, an awesome company based out of Kansas City.

I've been working in the tech industry since 2000 after earning an Associates Degree in a unique Web Applications Program at Kansas City Kansas Community College. In that time period, I learned a ton of tech including:

Perl MySQL PHP Adobe Photoshop


Recently, I've been focusing writing web-based applications with the following tools:

React TypeScript JavaScript CSS3

Pinned Loading

  1. calisthenics-workout calisthenics-workout Public

    Created with CodeSandbox

    TypeScript

  2. d3-react-demo d3-react-demo Public

    Demo how to use D3 in react

    TypeScript

  3. docker-devchat docker-devchat Public

    TypeScript

  4. cremalab/kcdc-planner cremalab/kcdc-planner Public

    Created with CodeSandbox

    TypeScript

  5. React Hook Keypress Callback React Hook Keypress Callback
    1
    import { useEffect, useRef } from 'react';
    2
    
    
    3
    type KeyboardRef = (event: KeyboardEvent) => void;
    4
    
    
    5
    const useKeypress = (keys: string[], handler?: (e: KeyboardEvent) => void) => {