Skip to content
View parrfolio's full-sized avatar
My God, It's Full of Stars
My God, It's Full of Stars

Highlights

  • Pro

Block or report parrfolio

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

As the former VP of Design at Sprinklr, I’ve had the privilege of building and leading global design and engineering teams to deliver large-scale, enterprise-grade experiences—driven by a passion for usability, innovation, and the future of human–computer interaction.

I’ve always sat at the intersection of systems thinking, design craft, and code. I started my career as a passionate web standards advocate, and that foundation still informs how I build today: accessibility-first, performance-minded, and human-centered by default.

Most recently, I founded UselyAI, a platform I built to close the gap between usability theory and product execution. It helps teams score, monitor, and improve UX in real-time—bringing design QA and usability scoring into the development process, not just after it. It's a passion project of mine that keeps my dev skill sharp!

I'm especially passionate about the evolving frontier of Agentic AI UX—moving beyond click-based UI toward intent-driven and intelligence-centered interfaces. In this work, I’ve prototyped and shipped co-pilot experiences that blend agent autonomy, contextual assistance, and generative UI patterns. These systems reimagine interaction by anticipating need, simplifying decision-making, and executing tasks on behalf of the user—with clarity and care. It’s a new design paradigm, and one that demands ethical, intuitive systems design.

🎸 To combine two passions, music and front-end development, I built a mobile remote jukebox UI for my 1954 AMi F-120—pairing React, Firebase, and CSS3 with Raspberry Pi hardware and Python-based stepper/LED controls. This project is open-source, so other enthusiasts can bring their analog systems into the modern age.

Pinned Loading

  1. Font Smoothing Font Smoothing
    1
    /* ref http://maxvoltar.com/archive/-webkit-font-smoothing */
    2
    
                  
    3
    -webkit-font-smoothing: none;
    4
    
                  
    5
    -webkit-font-smoothing: subpixel-antialiased; /* best for small sizes */
  2. flip, shake, fade CSS3 Animations flip, shake, fade CSS3 Animations
    1
    @-webkit-keyframes shake {
    2
    	0%, 100% {-webkit-transform: translateX(0);}
    3
    	10%, 30%, 50%, 70%, 90% {-webkit-transform: translateX(-10px);}
    4
    	20%, 40%, 60%, 80% {-webkit-transform: translateX(10px);}
    5
    }
  3. CSS Media Queries v2 CSS Media Queries v2
    1
    /* Smartphones (portrait and landscape) ----------- */
    2
    @media only screen
    3
    and (min-width : 320px)
    4
    and (max-width : 480px) {
    5
    /* Styles */
  4. CSS Transparency (Cross Browser) CSS Transparency (Cross Browser)
    1
    .transparent {
    2
            /* Required for IE 5, 6, 7 */
    3
            /* ...or something to trigger hasLayout, like zoom: 1; */
    4
            width: 100%; 
    5
    
                  
  5. Hardware Acceleration iOS Hardware Acceleration iOS
    1
    #foo {
    2
    -webkit-transform: translate3d(x,y,z);
    3
    }
  6. Enable Webgl Meta Enable Webgl Meta
    1
    <meta content="html.renderer=webgl" name="gwt:property">