Skip to content
View cyberfly999's full-sized avatar
😎
playing the blues
😎
playing the blues
  • Zurich, Switzerland
  • 20:36 (UTC +02:00)

Block or report cyberfly999

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

Pinned Loading

  1. Easing Equations in JavaScript Easing Equations in JavaScript
    1
    // quadratic -----------------------------------------------------------------------------------------
    2
    
                  
    3
    easeInQuad(t, b, c, d) {
    4
    	t /= d;
    5
    	return c * t * t + b;
  2. isaced/CubicBezier isaced/CubicBezier Public

    CubicBezier Generator for macOS

    Objective-C 163 18