Skip to content
View TimCargan's full-sized avatar
Block or Report

Block or report TimCargan

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. chemise chemise Public

    A lightweight wrapper with standard boiler plate code to train flax models

    Python 1

  2. hemera hemera Public

    My personal base dependency and utils for code to run on multiple hosts and SLURM clusters

    Python

  3. eumetsat-downloader eumetsat-downloader Public

    A tool to bulk download and process satellite imagery from EUMETSAT

    Python

  4. Spark delta table merger Spark delta table merger
    1
    @dataclass
    2
    class Database:
    3
      """
    4
      Data representation of a database. 
    5
      This builds up all the paths needed to access data stored in DL
  5. Make python threads throw exceptions Make python threads throw exceptions
    1
    def patch_threading_excepthook():
    2
        """Installs our exception handler into the threading modules Thread object
    3
        Inspired by https://bugs.python.org/issue1230540
    4
        """
    5
        old_init = threading.Thread.__init__