Giter Club home page Giter Club logo

justingosses / awesome-list-visual-explorer-template Goto Github PK

View Code? Open in Web Editor NEW
2.0 2.0 0.0 4.29 MB

Change single config file & then run scripts that will build a website that visualizes the implicit community of a list of related GitHub repos, especially Awesome Lists

Home Page: https://justingosses.github.io/awesome-list-visual-explorer-template/

License: MIT License

Ruby 0.05% Makefile 0.06% Shell 0.92% Python 9.62% HTML 9.59% CSS 10.94% JavaScript 68.82%
awesome awesome-list open-source visual-explorer visualization

awesome-list-visual-explorer-template's Introduction

http://justingosses.com/ banesullivan | Twitter codeSTACKr | LinkedIn codeSTACKr | Medium



hi πŸ‘‹, I'm Justin!

I have professional interests across πŸ“Š data visualization, πŸ“ natural language processing, πŸ—£οΈ speech-to-text, βš’ geoscience, πŸ“‚ open data, πŸ’» open source, and 🏒inner source. Previously, I've worked Data Scientist, Software Engineer, and Technical Program Manager roles as a NASA contractor and before that as Geoscientist for BP. Currently, I work for Microsoft as a Senior Program Manager focused on Inner Source.

Most of the repos on here are side projects. Geoscience is a dominant trend in these repos, because it is an area where I have a lot of domain knowledge. However, I don't use it in my day job, so it makes for a nice dividing line between work & side projects.

Currently, I’m working on updates to the side projects below that πŸ”­ fill a missing gap in working with a certain kind of scientific data on the web:

  • wellio β€” library for converting well logs in LAS 2.0 format to JSON
  • wellioviz β€” library for visualizing well logs on the web

I'm also working on awesome-list-visual-explorer-template, a template repository that can be pointed at any Awsome List via a config file and generate visualizations that help visualize the implicit πŸ•ΈοΈ community of developers in the Awesome List.

πŸ’¬ Ask me for side projects ideas. I have way too many and love for things to suddenly exist that I think should exist.

More information at justingossses.com



awesome-list-visual-explorer-template's People

Contributors

justingosses avatar

Stargazers

 avatar  avatar

Watchers

 avatar  avatar  avatar

awesome-list-visual-explorer-template's Issues

Description too dense

The current description is too dense:

A way to automatically build websites with visualizations that help explore the implicit community of an Awesome List or other list of GitHub repos

Problem with GitHub Actions that used to run fine

Describe the bug
GitHub Actions fails but hard to tell exactly where or what. Gives non-descript error below

To Reproduce
Steps to reproduce the behavior:

  1. Go tot Actions.
  2. Click on the python action.
  3. Click button on right to trigger workflow manually.
  4. Go back to main actions tab and click on running action to expect messages as it runs.

Expected behavior
It used to run fine, so something happened with validation on GitHub side or on side of one of the actions I'm bringing in.

See below from GitHub Actions RUN BUILD STEP :

Run export GITHUB_API_TOKEN=***
Requirement already satisfied: pip in /opt/hostedtoolcache/Python/3.10.4/x64/lib/python3.10/site-packages (22.1.2)
Requirement already satisfied: virtualenv in /opt/hostedtoolcache/Python/3.10.4/x64/lib/python3.10/site-packages ([20](https://github.com/JustinGOSSES/awsome-list-visual-explorer-template/runs/6855118584?check_suite_focus=true#step:7:21).14.1)
Requirement already satisfied: platformdirs<3,>=2 in /opt/hostedtoolcache/Python/3.10.4/x64/lib/python3.10/site-packages (from virtualenv) (2.5.2)
Requirement already satisfied: six<2,>=1.9.0 in /opt/hostedtoolcache/Python/3.10.4/x64/lib/python3.10/site-packages (from virtualenv) (1.16.0)
Requirement already satisfied: filelock<4,>=3.2 in /opt/hostedtoolcache/Python/3.10.4/x64/lib/python3.10/site-packages (from virtualenv) (3.7.1)
Requirement already satisfied: distlib<1,>=0.3.1 in /opt/hostedtoolcache/Python/3.10.4/x64/lib/python3.10/site-packages (from virtualenv) (0.3.4)
created virtual environment CPython3.10.4.final.0-64 in 208ms
  creator CPython3Posix(dest=/home/runner/work/awsome-list-visual-explorer-template/awsome-list-visual-explorer-template/_explore/scripts/venv, clear=False, no_vcs_ignore=False, global=False)
  seeder FromAppData(download=False, pip=bundle, setuptools=bundle, wheel=bundle, via=copy, app_data_dir=/home/runner/.local/share/virtualenv)
    added seed packages: Deprecated==1.2.13, PyYAML==6.0, certifi==2022.5.18.1, cffi==1.15.0, charset_normalizer==2.0.12, cryptography==37.0.2, decorator==5.1.1, github3.py==1.2.0, idna==3.3, in_place==0.5.0, isodate==0.6.1, jwcrypto==1.3.1, llnl_scraper==0.10.0, msrest==0.6.[21](https://github.com/JustinGOSSES/awsome-list-visual-explorer-template/runs/6855118584?check_suite_focus=true#step:7:22), oauthlib==3.2.0, pip==[22](https://github.com/JustinGOSSES/awsome-list-visual-explorer-template/runs/6855118584?check_suite_focus=true#step:7:23).0.4, pycparser==2.21, python_dateutil==2.8.2, python_gitlab==3.5.0, pytz==2022.1, requests==2.28.0, requests_oauthlib==1.3.1, requests_toolbelt==0.9.1, setuptools==62.1.0, six==1.16.0, stashy==0.7, uritemplate==4.1.1, urllib3==1.26.9, vsts==0.1.[25](https://github.com/JustinGOSSES/awsome-list-visual-explorer-template/runs/6855118584?check_suite_focus=true#step:7:26), wheel==0.37.1, wrapt==1.14.1
  activators BashActivator,CShellActivator,FishActivator,NushellActivator,PowerShellActivator,PythonActivator
/home/runner/work/_temp/d4b09b2d-a014-4965-ac68-e740036c73e7.sh: line 13: syntax error: unexpected end of file
Error: Process completed with exit code 2.

IN the update.yml the problem seems to be somewhere in this part:

- name: Run grabNewRepos Script
      run: |
        cd _explore/scripts/
        if [ -f grabNewRepos.sh ]; then bash grabNewRepos.sh;
        cd ../../
        fi
    - name: Run BUILD script
      run: |
        export GITHUB_API_TOKEN=${{ secrets.GITHUB_TOKEN }}
        python -m pip install --upgrade pip
        pip install virtualenv
        cd _explore/scripts/
        virtualenv -p python3 venv
        source venv/bin/activate
        if [ -f requirements.txt ]; then pip install -r requirements.txt; 
        cd ../../
        cd _explore/scripts/
        if [ -f BUILD.sh ]; then bash BUILD.sh;
        cd ../../
        fi
        
        ```

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    πŸ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. πŸ“ŠπŸ“ˆπŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❀️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.