Skip to content
View Jach's full-sized avatar

Organizations

@LucidDB
Block or Report

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.

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

  1. radar_sar_rma radar_sar_rma Public

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

    Python 49 16

  2. elastic-etl elastic-etl Public

    Forked from greatvines/elastic-etl

    Elastic ETL

    PHP

  3. lgame lgame Public

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

    Common Lisp 2

  4. cl-catmull-rom-spline cl-catmull-rom-spline Public

    CR Spline in Common Lisp

    Common Lisp 2

  5. voronoi_base voronoi_base Public

    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