Skip to content
View rocapp's full-sized avatar
😶‍🌫️
😶‍🌫️

Block or report rocapp

Report abuse

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

Report abuse

Pinned Loading

  1. gradschool-archive gradschool-archive Public

    A collection of my coding projects from when I was a grad student.

    1

  2. ai-zotero-search ai-zotero-search Public

    OpenAI-backed CLI search tool for zotero, written in python.

    Python 1

  3. rockybranches/dexcom-openapi-schema rockybranches/dexcom-openapi-schema Public

    OpenAPI schema for the Dexcom Developer API (https://developer.dexcom.com/home).

    Nix 4

  4. haiku.py haiku.py
    1
    def haiku(sdict):
    2
        sdict = dict([(sk, sv) for sk, sv in sdict.items() if len(sk) >= 3])
    3
        first_5 = choose_words(sdict, 5, 0)
    4
        seven = choose_words(sdict, 7, 1)
    5
        sec_5 = choose_words(sdict, 5, 2)