Skip to content
View Louis-7's full-sized avatar
πŸ•ΉοΈ
πŸ•ΉοΈ

Block or report Louis-7

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 250 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. angular-monaco-languageclient angular-monaco-languageclient Public

    An Angular based Monaco editor & language client example

    TypeScript 19 2

  2. electron-colorpicker electron-colorpicker Public

    An Electron color picker

    TypeScript 2

  3. ai-code-review ai-code-review Public

    Let AI do code review.

    JavaScript 25 4

  4. Snap-Mind/snap-mind Snap-Mind/snap-mind Public

    A cross-platform desktop AI assistant that lets you translate, rewrite, summarize, and brainstorm with just a hotkey.

    TypeScript 9

  5. Determine font color based on the ba... Determine font color based on the background color
    1
    // suppose background color is: rbg(0, 23, 255)
    2
    function textColorBasedOnBackground(backgroundColor) {
    3
      backgroundColor = backgroundColor.substring(1);
    4
      const r = parseInt(backgroundColor.substring(0,2), 16); // 0 ~ 255
    5
      const g = parseInt(backgroundColor.substring(2,4), 16);