Skip to content
View tonyjurg's full-sized avatar

Highlights

  • Pro

Block or report tonyjurg

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
tonyjurg/README.md

Some of the current projects

Project Status / DOI Description
CenterBLC/N1904 Project Status: Active – The project has reached a stable, usable state and is being actively developed. DOI License: MIT Comprehensive Text-Fabric dataset for the Greek New Testament (Nestle 1904, seventh edition: reprint 1913), enabling linguistic and textual analytics.
Doc4TF Project Status: Active – The project has reached a stable, usable state and is being actively developed. DOI License: CC BY 4.0 Jupyter Notebook based Python tool to automaticaly generate Text-Fabric feature documentation from an exising dataset
Parashot Project Status: Active – The project has reached a stable, usable state and is being actively developed. Digital Humanies tools used for the weekly Parasha (Torah portion of the week)
BHSaddons Project Status: Active – The project has reached a stable, usable state and is being actively developed. DOI License: CC BY 4.0 Additional Text-Fabric features for use with the BHSA to handle parasha textual portions
TasmotaTimer Project Status: Active – The project has reached a stable, usable state and is being actively developed. License: CC BY 4.0 User friendly timer app using node.js to control Tasmota powered smartplugs

Pinned Loading

  1. Sandborg-Petersen-decoder Sandborg-Petersen-decoder Public

    The morphological decoder provided here is a lightweight decoder for the Sandborg-Petersen Morphology which is primarily tailored for Koine Greek, especially as it appears in New Testament studies …

    HTML

  2. Creating a dictionary to map Louw-Ni... Creating a dictionary to map Louw-Nida top-level domains to descriptions
    1
    # The Greek words in the New Testament are classified semantically according to a two-tier system developed by Louw and Nida. 
    2
    # This Python script maps the top-level codes (the part of the Louw-Nida code preceding the dot) to their human-readable descriptions.
    3
    # The structure of the dictionary is:
    4
    #    louwNidaMapping = {
    5
    #         numeric (key): "description"
  3. Python functions for interfacing wi... Python functions for interfacing with the SHEBANQ REST API
    1
    # SHEBANQ REST API - https://github.com/ETCBC/shebanq/wiki/REST-Api
    2
    
                  
    3
    # https://github.com/ETCBC/shebanq/wiki/REST-Api#deep-linking-to-shebanq
    4
    # Define the transliteration substitution function
    5
    def substituteTranslit(translit):
  4. Recursive traversing in Text-Fabric Recursive traversing in Text-Fabric
    1
    # This code traverses the hierarchical structure of a Text-Fabric corpus, 
    2
    # starting from books and drilling down through chapters, verses, and words. 
    3
    # At each level, it allows for processing or extracting specific data 
    4
    # related to the respective nodes (book, chapter, verse, or word).
    5