Skip to content
View jeystaats's full-sized avatar

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.

Maximum 250 characters. Please don’t include any personal information such as legal names or email addresses. Markdown is supported. This note will only be visible to you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
jeystaats/README.md

Jasper Staats — Head of Tech & Lead Engineer at Like A Human

likeahuman.ai   ·   LinkedIn   ·   Barcelona, working globally


   


Like A Human

We run hands-on AI workshops — teaching engineering teams and brands to actually build with AI: Claude Code, agentic workflows, and AI-image campaigns. Less demo, more craft.

Built and led by Stefan, Tim, and Jasper.


Focus & stack: React, Next.js, TypeScript, Convex, Claude Code / Agentic AI, Design Systems


What I'm building

As Head of Tech and Lead Engineer, I build the platform behind the workshops and the agentic tooling we teach with — production React, Next.js, and TypeScript on a Convex backend, wrapped in a real design system. The throughline: making AI a tool teams can actually wield, not a party trick.


 


Want to teach your team to build with AI?
likeahuman.ai · Let's talk

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);