Skip to content
View rocapp's full-sized avatar

Block or report rocapp

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 Loading

  1. ai-zotero-search ai-zotero-search Public

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

    Python

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

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

    1

  3. 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)
  4. count_syll.py count_syll.py
    1
    from nltk.corpus import cmudict
    2
    d = cmudict.dict()
    3
    
                  
    4
    def nsyl(word):
    5
      return [len(list(y for y in x if y[-1].isdigit())) for x in d[word.lower()]]
  5. get_best.py get_best.py
    1
    def get_best(file):
    2
        words = list()
    3
        with open(file, 'r') as f:
    4
            bf = json.load(f)
    5
        sbf = sorted(bf.items(), key=itemgetter(1), reverse=True)
  6. choose_words.py choose_words.py
    1
    import numpy as np
    2
    from nltk.tokenize import word_tokenize
    3
    from nltk import pos_tag
    4
    
                  
    5
    def pick_syl(target):