Skip to content
View jeystaats's full-sized avatar
🏠
Working from home
🏠
Working from home

Block or report jeystaats

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

Frontend Engineer | Creative Technologist | UI Systems Architect

πŸš€ About Me

  • πŸ„β€β™‚οΈ Based in Barcelona, working globally
  • πŸ› οΈ I build exceptional digital experiences for agencies, startups, and SaaS companies
  • 🎨 I love creative coding, design systems, and AI-powered products
  • πŸ§‘β€πŸ’» Currently focused on React, Next.js, TypeScript, and data visualization

✨ What I Love Building

  • Design Systems: Scalable, beautiful, and accessible component libraries
  • Creative Coding: Generative art, data viz, and interactive web experiences
  • AI Integrations: GPT, Midjourney, Claude, and more
  • Technical Leadership: Mentoring, enabling teams, and driving frontend excellence

πŸ“« Let's Connect


πŸš€ Throw some code at me!

Pinned Loading

  1. Turn a string ( username e.g ) into ... Turn a string ( username e.g ) into a RGB ( 15e5de ) . Only put the hashtag in front of it.
    1
    // Turn a string ( like a username , into a RGB code (15e5de) , you can use this for styling purposes per user in chat examples
    2
    hashCode(str) { // java String#hashCode
    3
                    var hash = 0;
    4
                    for (var i = 0; i < str.length; i++) {
    5
                       hash = str.charCodeAt(i) + ((hash << 5) - hash);