Skip to content
View Jach's full-sized avatar

Organizations

@LucidDB

Block or report Jach

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.

Maximum 250 characters. Please don’t include any personal information such as legal names or email addresses. Markdown is supported. This note will only be visible to you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. radar_sar_rmaradar_sar_rmaPublic

    A Python implementation of the Range Migration Algorithm (RMA) to generate Synthetic Aperture Radar (SAR) images.

    Python 65 16

  2. elastic-etlelastic-etlPublic

    Forked from greatvines/elastic-etl

    Elastic ETL

    PHP

  3. lgamelgamePublic

    lgame is a pygame-inspired library for making simple games in Common Lisp using cl-sdl2

    Common Lisp 4

  4. cl-catmull-rom-splinecl-catmull-rom-splinePublic

    CR Spline in Common Lisp

    Common Lisp 2

  5. voronoi_basevoronoi_basePublic

    JavaScript

  6. Union-Find Algorithm. See https://ww...Union-Find Algorithm. See https://www.thejach.com/view/2018/9/jump_game_as_interview_problem_domain_solutions
    1
    ;; A generic solution for connected components. "I have some number of graphs. Is this element connected to
    2
    ;; this other element? Or are the graphs/sets each element belongs to disjoint?"
    3
    ;;
    4
    ;; a 'backwards' tree with pointers from a node to its parent, which lets you union two separate trees together by
    5
    ;; just taking the shorter one's root and pointing it at the taller one's (or vice versa, but this way preserves log