Skip to content
View sgoggins's full-sized avatar
🧨
Engines pumping and thumping in time The green light flashes, the flags go up
🧨
Engines pumping and thumping in time The green light flashes, the flags go up

Highlights

  • Pro

Organizations

@SociallyCompute @MALIBUSPIRIT @OCDX @ComputationalMystics @OCHealth @chaoss @angrynarwhal @Mission-Hydro-Sci

Block or report sgoggins

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. chaoss/augur chaoss/augur Public

    Python library and web service for Open Source Software Health and Sustainability metrics & data collection. You can find our documentation and new contributor information easily here: https://oss-…

    Python 614 870

  2. oss-aspen/8Knot oss-aspen/8Knot Public

    Dash app in development to serve open source community visualizations using GitHub data from Augur. Hosted app: https://eightknot.osci.io

    Python 53 62

  3. todogroup/ospology todogroup/ospology Public

    📖 OSPOlogy - The Study of OSPOs

    HTML 199 98

  4. github-org.md github-org.md
    1
    # SQL to extract the GitHub organization from a repository URL
    2
    ```sql
    3
    SELECT distinct 
    4
        substring(repo_git from 'github.com/([^/]+)/') as org_name
    5
    FROM
  5. Pandoc: Word to Markdown Pandoc: Word to Markdown
    1
    # Convert a Word Document to Markdown
    2
    
                  
    3
    ```bash
    4
     pandoc -s CS3050SP2024-A2.docx -t markdown -o CS3050a2.md 
    5