Skip to content
View LeZuse's full-sized avatar
πŸš€
Scaling productboard.com
πŸš€
Scaling productboard.com

Organizations

@panels @ioshat @productboard @productboardlabs
Block or Report

Block or report LeZuse

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. photoshop-scripts photoshop-scripts Public

    Various Photoshop scripts

    44 46

  2. minimal-win32-app minimal-win32-app Public

    Minimal footstep codebase for Win32 app

    C++ 14 1

  3. node-flatten-deps node-flatten-deps Public

    Moves node depedencies up the tree to prevent long paths (Windows limits length to 260)

    CoffeeScript 7

  4. angular-timezone-js angular-timezone-js Public

    https://github.com/mde/timezone-js wrapped for AngularJS framework

    JavaScript 4 30

  5. Install node on Apple Silicon M1 bot... Install node on Apple Silicon M1 both ARM and x86 (Rosetta)
    1
    # Node.js on Apple Silicon
    2
    Node Version Manager (https://github.com/nvm-sh/nvm) works perfectly across native node installations as well as emulated Rosetta installations.
    3
    The trick I am using here is to install one LTS version of node under Rosetta and another stable version as native binary.
    4
    
                  
    5
    ## TODO
  6. Flask browser detection Flask browser detection
    1
    	browser = request.user_agent.browser
    2
    	version = request.user_agent.version and int(request.user_agent.version.split('.')[0])
    3
    	platform = request.user_agent.platform
    4
    	uas = request.user_agent.string
    5