Skip to content
View atesztoth's full-sized avatar
🚀
Always decides to sleep enough, but never manages.
🚀
Always decides to sleep enough, but never manages.
  • Budapest, Hungary
  • 03:05 (UTC +01:00)
  • X @atesztoth

Block or report atesztoth

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. js-binary-tree js-binary-tree Public

    This is an implementation of a binary tree in ts and js (with flow)

    TypeScript 2

  2. openalpr-swift-wrapper openalpr-swift-wrapper Public

    openalpr, linux, mac, swift

    Swift

  3. TS type for finding string terminate... TS type for finding string terminated key-paths in objects
    1
    // Note: this code was originally written for objects containing translations, that is why 
    2
    // at some places type argument names have references to language related things.
    3
    
                  
    4
    export type ObjectKeyPaths<ObjectType extends object, Separator extends string = "."> = {
    5
        [Key in keyof ObjectType & (string | number)]: ObjectType[Key] extends object