Skip to content
View con-cat's full-sized avatar
🐈
🐈
  • Melbourne, Australia

Organizations

@octoenergy @visual2000
Block or Report

Block or report con-cat

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. advent-of-code advent-of-code Public

    🎄

    Scheme

  2. picture-poster picture-poster Public

    A Django API for posting pictures.

    Python

  3. up-bank-gnucash-csv up-bank-gnucash-csv Public

    A simple CLI to fetch data from the Up Bank API and output CSVs for GnuCash.

    Python

  4. Emacs lisp function to return an imp... Emacs lisp function to return an import statement for a Python file or object
    1
    (defun con-cat/get-python-import-statement (root-in-project)
    2
      "Return an import statement for a Python file or object.
    3
    root-in-project is the optional path to a directory inside the project that the path should be relative to,
    4
    e.g. 'src' if your project is in ~/myproject and your Python files are in ~/myproject/src"
    5
      (unless (and (projectile-project-root) buffer-file-name (string= "py" (file-name-extension buffer-file-name)))