Skip to content
View schonarth's full-sized avatar
  • Porto Alegre, Brazil

Block or report schonarth

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. html5-qrcode-scanner-poc html5-qrcode-scanner-poc Public

    This POC demonstrates how to open a scanner, read a QR code, extract information from it, and decide what to do with that information. It's React, web-based, using your computer's webcam, both your…

    TypeScript 1

  2. react-qrcode-deep-link react-qrcode-deep-link Public

    JavaScript 1

  3. react-native-qrcode-scanner-poc react-native-qrcode-scanner-poc Public

    This POC demonstrates how to open a scanner, read a QR code, extract information from it, and decide what to do with that information.

    Java 2

  4. SlowLogger is a small utility to slo... SlowLogger is a small utility to slow down those processes that spit out the same piece of log over and over, making it difficult to analyse its contents (especially on the terminal). It will only write out the log once every timeout.
    1
    export default function makeSlowLogger(timeout = 60 * 1000) {
    2
      const keys: string[] = []
    3
    
                  
    4
      function putInTempLogKeys(key: string) {
    5
        if (keys.find(v => v === key)) return false