From f75cb37b9f3b3f09c647a7b865c5b59a7b1e71d2 Mon Sep 17 00:00:00 2001 From: Fergal Moran Date: Thu, 9 Dec 2021 21:10:49 +0000 Subject: [PATCH] Initial commit --- .github/workflows/profile-summary-cards.yml | 21 ++++++ README.md | 16 +++++ profile-summary-card-output/README.md | 47 ++++++++++++++ .../default/0-profile-details.svg | 3 + .../default/1-repos-per-language.svg | 3 + .../default/2-most-commit-language.svg | 3 + .../default/3-stats.svg | 3 + .../default/4-productive-time.svg | 3 + profile-summary-card-output/default/README.md | 64 +++++++++++++++++++ .../dracula/0-profile-details.svg | 3 + .../dracula/1-repos-per-language.svg | 3 + .../dracula/2-most-commit-language.svg | 3 + .../dracula/3-stats.svg | 3 + .../dracula/4-productive-time.svg | 3 + profile-summary-card-output/dracula/README.md | 64 +++++++++++++++++++ .../github/0-profile-details.svg | 3 + .../github/1-repos-per-language.svg | 3 + .../github/2-most-commit-language.svg | 3 + .../github/3-stats.svg | 3 + .../github/4-productive-time.svg | 3 + profile-summary-card-output/github/README.md | 64 +++++++++++++++++++ .../github_dark/0-profile-details.svg | 3 + .../github_dark/1-repos-per-language.svg | 3 + .../github_dark/2-most-commit-language.svg | 3 + .../github_dark/3-stats.svg | 3 + .../github_dark/4-productive-time.svg | 3 + .../github_dark/README.md | 64 +++++++++++++++++++ .../monokai/0-profile-details.svg | 3 + .../monokai/1-repos-per-language.svg | 3 + .../monokai/2-most-commit-language.svg | 3 + .../monokai/3-stats.svg | 3 + .../monokai/4-productive-time.svg | 3 + profile-summary-card-output/monokai/README.md | 64 +++++++++++++++++++ .../nord_bright/0-profile-details.svg | 3 + .../nord_bright/1-repos-per-language.svg | 3 + .../nord_bright/2-most-commit-language.svg | 3 + .../nord_bright/3-stats.svg | 3 + .../nord_bright/4-productive-time.svg | 3 + .../nord_bright/README.md | 64 +++++++++++++++++++ .../nord_dark/0-profile-details.svg | 3 + .../nord_dark/1-repos-per-language.svg | 3 + .../nord_dark/2-most-commit-language.svg | 3 + .../nord_dark/3-stats.svg | 3 + .../nord_dark/4-productive-time.svg | 3 + .../nord_dark/README.md | 64 +++++++++++++++++++ .../solarized/0-profile-details.svg | 3 + .../solarized/1-repos-per-language.svg | 3 + .../solarized/2-most-commit-language.svg | 3 + .../solarized/3-stats.svg | 3 + .../solarized/4-productive-time.svg | 3 + .../solarized/README.md | 64 +++++++++++++++++++ .../solarized_dark/0-profile-details.svg | 3 + .../solarized_dark/1-repos-per-language.svg | 3 + .../solarized_dark/2-most-commit-language.svg | 3 + .../solarized_dark/3-stats.svg | 3 + .../solarized_dark/4-productive-time.svg | 3 + .../solarized_dark/README.md | 64 +++++++++++++++++++ .../vue/0-profile-details.svg | 3 + .../vue/1-repos-per-language.svg | 3 + .../vue/2-most-commit-language.svg | 3 + profile-summary-card-output/vue/3-stats.svg | 3 + .../vue/4-productive-time.svg | 3 + profile-summary-card-output/vue/README.md | 64 +++++++++++++++++++ 63 files changed, 874 insertions(+) create mode 100644 .github/workflows/profile-summary-cards.yml create mode 100644 README.md create mode 100644 profile-summary-card-output/README.md create mode 100644 profile-summary-card-output/default/0-profile-details.svg create mode 100644 profile-summary-card-output/default/1-repos-per-language.svg create mode 100644 profile-summary-card-output/default/2-most-commit-language.svg create mode 100644 profile-summary-card-output/default/3-stats.svg create mode 100644 profile-summary-card-output/default/4-productive-time.svg create mode 100644 profile-summary-card-output/default/README.md create mode 100644 profile-summary-card-output/dracula/0-profile-details.svg create mode 100644 profile-summary-card-output/dracula/1-repos-per-language.svg create mode 100644 profile-summary-card-output/dracula/2-most-commit-language.svg create mode 100644 profile-summary-card-output/dracula/3-stats.svg create mode 100644 profile-summary-card-output/dracula/4-productive-time.svg create mode 100644 profile-summary-card-output/dracula/README.md create mode 100644 profile-summary-card-output/github/0-profile-details.svg create mode 100644 profile-summary-card-output/github/1-repos-per-language.svg create mode 100644 profile-summary-card-output/github/2-most-commit-language.svg create mode 100644 profile-summary-card-output/github/3-stats.svg create mode 100644 profile-summary-card-output/github/4-productive-time.svg create mode 100644 profile-summary-card-output/github/README.md create mode 100644 profile-summary-card-output/github_dark/0-profile-details.svg create mode 100644 profile-summary-card-output/github_dark/1-repos-per-language.svg create mode 100644 profile-summary-card-output/github_dark/2-most-commit-language.svg create mode 100644 profile-summary-card-output/github_dark/3-stats.svg create mode 100644 profile-summary-card-output/github_dark/4-productive-time.svg create mode 100644 profile-summary-card-output/github_dark/README.md create mode 100644 profile-summary-card-output/monokai/0-profile-details.svg create mode 100644 profile-summary-card-output/monokai/1-repos-per-language.svg create mode 100644 profile-summary-card-output/monokai/2-most-commit-language.svg create mode 100644 profile-summary-card-output/monokai/3-stats.svg create mode 100644 profile-summary-card-output/monokai/4-productive-time.svg create mode 100644 profile-summary-card-output/monokai/README.md create mode 100644 profile-summary-card-output/nord_bright/0-profile-details.svg create mode 100644 profile-summary-card-output/nord_bright/1-repos-per-language.svg create mode 100644 profile-summary-card-output/nord_bright/2-most-commit-language.svg create mode 100644 profile-summary-card-output/nord_bright/3-stats.svg create mode 100644 profile-summary-card-output/nord_bright/4-productive-time.svg create mode 100644 profile-summary-card-output/nord_bright/README.md create mode 100644 profile-summary-card-output/nord_dark/0-profile-details.svg create mode 100644 profile-summary-card-output/nord_dark/1-repos-per-language.svg create mode 100644 profile-summary-card-output/nord_dark/2-most-commit-language.svg create mode 100644 profile-summary-card-output/nord_dark/3-stats.svg create mode 100644 profile-summary-card-output/nord_dark/4-productive-time.svg create mode 100644 profile-summary-card-output/nord_dark/README.md create mode 100644 profile-summary-card-output/solarized/0-profile-details.svg create mode 100644 profile-summary-card-output/solarized/1-repos-per-language.svg create mode 100644 profile-summary-card-output/solarized/2-most-commit-language.svg create mode 100644 profile-summary-card-output/solarized/3-stats.svg create mode 100644 profile-summary-card-output/solarized/4-productive-time.svg create mode 100644 profile-summary-card-output/solarized/README.md create mode 100644 profile-summary-card-output/solarized_dark/0-profile-details.svg create mode 100644 profile-summary-card-output/solarized_dark/1-repos-per-language.svg create mode 100644 profile-summary-card-output/solarized_dark/2-most-commit-language.svg create mode 100644 profile-summary-card-output/solarized_dark/3-stats.svg create mode 100644 profile-summary-card-output/solarized_dark/4-productive-time.svg create mode 100644 profile-summary-card-output/solarized_dark/README.md create mode 100644 profile-summary-card-output/vue/0-profile-details.svg create mode 100644 profile-summary-card-output/vue/1-repos-per-language.svg create mode 100644 profile-summary-card-output/vue/2-most-commit-language.svg create mode 100644 profile-summary-card-output/vue/3-stats.svg create mode 100644 profile-summary-card-output/vue/4-productive-time.svg create mode 100644 profile-summary-card-output/vue/README.md diff --git a/.github/workflows/profile-summary-cards.yml b/.github/workflows/profile-summary-cards.yml new file mode 100644 index 000000000..6334674eb --- /dev/null +++ b/.github/workflows/profile-summary-cards.yml @@ -0,0 +1,21 @@ +name: GitHub-Profile-Summary-Cards + +on: + create: + push: + schedule: # execute every 24 hours + - cron: "* */24 * * *" + workflow_dispatch: + +jobs: + build: + runs-on: ubuntu-latest + name: generate + + steps: + - uses: actions/checkout@v2 + - uses: vn7n24fzkq/github-profile-summary-cards@release + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + with: + USERNAME: ${{ github.repository_owner }} diff --git a/README.md b/README.md new file mode 100644 index 000000000..fd07c92dd --- /dev/null +++ b/README.md @@ -0,0 +1,16 @@ +# github-profile-summary-cards-example + +:star: [Tutorial](https://github.com/vn7n24fzkq/github-profile-summary-cards/wiki/Toturial) ( Recommendation ) :star: + +Action already setup In this template, you just need click `use this template` button to create your repo and wait for workflow to finish. + +```To create your profile README you need to name the repo as your username``` + +| :bell: | Don't forget to modify the image (All of images are in `profile-summary-card-output` folder). | +| :-------: | :-------------------------------------------------------------------------------------------------------- | + +[![](https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards-example/master/profile-summary-card-output/vue/0-profile-details.svg)](https://github.com/vn7n24fzkq/github-profile-summary-cards) +[![](https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards-example/master/profile-summary-card-output/vue/1-repos-per-language.svg)](https://github.com/vn7n24fzkq/github-profile-summary-cards) [![](https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards-example/master/profile-summary-card-output/vue/2-most-commit-language.svg)](https://github.com/vn7n24fzkq/github-profile-summary-cards) +[![](https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards-example/master/profile-summary-card-output/vue/3-stats.svg)](https://github.com/vn7n24fzkq/github-profile-summary-cards) [![](https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards-example/master/profile-summary-card-output/vue/4-productive-time.svg)](https://github.com/vn7n24fzkq/github-profile-summary-cards) + +[More Info](https://github.com/vn7n24fzkq/github-profile-summary-cards) diff --git a/profile-summary-card-output/README.md b/profile-summary-card-output/README.md new file mode 100644 index 000000000..9c481d357 --- /dev/null +++ b/profile-summary-card-output/README.md @@ -0,0 +1,47 @@ + +# Theme Preview + +Here are all cards with themes. +| :bell: | If only show Top Languages card here, then you maybe forgot to use [Personal access token](https://docs.github.com/en/actions/configuring-and-managing-workflows/creating-and-storing-encrypted-secrets) instead of GITHUB_TOKEN in workflow. | +| :-------: | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | + +## [default](./default/README.md) +[![](https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards-example/master/profile-summary-card-output/default/0-profile-details.svg)](https://github.com/vn7n24fzkq/github-profile-summary-cards) +[![](https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards-example/master/profile-summary-card-output/default/1-repos-per-language.svg)](https://github.com/vn7n24fzkq/github-profile-summary-cards) [![](https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards-example/master/profile-summary-card-output/default/2-most-commit-language.svg)](https://github.com/vn7n24fzkq/github-profile-summary-cards) +[![](https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards-example/master/profile-summary-card-output/default/3-stats.svg)](https://github.com/vn7n24fzkq/github-profile-summary-cards) [![](https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards-example/master/profile-summary-card-output/default/4-productive-time.svg)](https://github.com/vn7n24fzkq/github-profile-summary-cards) +## [solarized](./solarized/README.md) +[![](https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards-example/master/profile-summary-card-output/solarized/0-profile-details.svg)](https://github.com/vn7n24fzkq/github-profile-summary-cards) +[![](https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards-example/master/profile-summary-card-output/solarized/1-repos-per-language.svg)](https://github.com/vn7n24fzkq/github-profile-summary-cards) [![](https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards-example/master/profile-summary-card-output/solarized/2-most-commit-language.svg)](https://github.com/vn7n24fzkq/github-profile-summary-cards) +[![](https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards-example/master/profile-summary-card-output/solarized/3-stats.svg)](https://github.com/vn7n24fzkq/github-profile-summary-cards) [![](https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards-example/master/profile-summary-card-output/solarized/4-productive-time.svg)](https://github.com/vn7n24fzkq/github-profile-summary-cards) +## [solarized_dark](./solarized_dark/README.md) +[![](https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards-example/master/profile-summary-card-output/solarized_dark/0-profile-details.svg)](https://github.com/vn7n24fzkq/github-profile-summary-cards) +[![](https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards-example/master/profile-summary-card-output/solarized_dark/1-repos-per-language.svg)](https://github.com/vn7n24fzkq/github-profile-summary-cards) [![](https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards-example/master/profile-summary-card-output/solarized_dark/2-most-commit-language.svg)](https://github.com/vn7n24fzkq/github-profile-summary-cards) +[![](https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards-example/master/profile-summary-card-output/solarized_dark/3-stats.svg)](https://github.com/vn7n24fzkq/github-profile-summary-cards) [![](https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards-example/master/profile-summary-card-output/solarized_dark/4-productive-time.svg)](https://github.com/vn7n24fzkq/github-profile-summary-cards) +## [vue](./vue/README.md) +[![](https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards-example/master/profile-summary-card-output/vue/0-profile-details.svg)](https://github.com/vn7n24fzkq/github-profile-summary-cards) +[![](https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards-example/master/profile-summary-card-output/vue/1-repos-per-language.svg)](https://github.com/vn7n24fzkq/github-profile-summary-cards) [![](https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards-example/master/profile-summary-card-output/vue/2-most-commit-language.svg)](https://github.com/vn7n24fzkq/github-profile-summary-cards) +[![](https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards-example/master/profile-summary-card-output/vue/3-stats.svg)](https://github.com/vn7n24fzkq/github-profile-summary-cards) [![](https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards-example/master/profile-summary-card-output/vue/4-productive-time.svg)](https://github.com/vn7n24fzkq/github-profile-summary-cards) +## [dracula](./dracula/README.md) +[![](https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards-example/master/profile-summary-card-output/dracula/0-profile-details.svg)](https://github.com/vn7n24fzkq/github-profile-summary-cards) +[![](https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards-example/master/profile-summary-card-output/dracula/1-repos-per-language.svg)](https://github.com/vn7n24fzkq/github-profile-summary-cards) [![](https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards-example/master/profile-summary-card-output/dracula/2-most-commit-language.svg)](https://github.com/vn7n24fzkq/github-profile-summary-cards) +[![](https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards-example/master/profile-summary-card-output/dracula/3-stats.svg)](https://github.com/vn7n24fzkq/github-profile-summary-cards) [![](https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards-example/master/profile-summary-card-output/dracula/4-productive-time.svg)](https://github.com/vn7n24fzkq/github-profile-summary-cards) +## [monokai](./monokai/README.md) +[![](https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards-example/master/profile-summary-card-output/monokai/0-profile-details.svg)](https://github.com/vn7n24fzkq/github-profile-summary-cards) +[![](https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards-example/master/profile-summary-card-output/monokai/1-repos-per-language.svg)](https://github.com/vn7n24fzkq/github-profile-summary-cards) [![](https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards-example/master/profile-summary-card-output/monokai/2-most-commit-language.svg)](https://github.com/vn7n24fzkq/github-profile-summary-cards) +[![](https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards-example/master/profile-summary-card-output/monokai/3-stats.svg)](https://github.com/vn7n24fzkq/github-profile-summary-cards) [![](https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards-example/master/profile-summary-card-output/monokai/4-productive-time.svg)](https://github.com/vn7n24fzkq/github-profile-summary-cards) +## [nord_bright](./nord_bright/README.md) +[![](https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards-example/master/profile-summary-card-output/nord_bright/0-profile-details.svg)](https://github.com/vn7n24fzkq/github-profile-summary-cards) +[![](https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards-example/master/profile-summary-card-output/nord_bright/1-repos-per-language.svg)](https://github.com/vn7n24fzkq/github-profile-summary-cards) [![](https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards-example/master/profile-summary-card-output/nord_bright/2-most-commit-language.svg)](https://github.com/vn7n24fzkq/github-profile-summary-cards) +[![](https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards-example/master/profile-summary-card-output/nord_bright/3-stats.svg)](https://github.com/vn7n24fzkq/github-profile-summary-cards) [![](https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards-example/master/profile-summary-card-output/nord_bright/4-productive-time.svg)](https://github.com/vn7n24fzkq/github-profile-summary-cards) +## [nord_dark](./nord_dark/README.md) +[![](https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards-example/master/profile-summary-card-output/nord_dark/0-profile-details.svg)](https://github.com/vn7n24fzkq/github-profile-summary-cards) +[![](https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards-example/master/profile-summary-card-output/nord_dark/1-repos-per-language.svg)](https://github.com/vn7n24fzkq/github-profile-summary-cards) [![](https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards-example/master/profile-summary-card-output/nord_dark/2-most-commit-language.svg)](https://github.com/vn7n24fzkq/github-profile-summary-cards) +[![](https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards-example/master/profile-summary-card-output/nord_dark/3-stats.svg)](https://github.com/vn7n24fzkq/github-profile-summary-cards) [![](https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards-example/master/profile-summary-card-output/nord_dark/4-productive-time.svg)](https://github.com/vn7n24fzkq/github-profile-summary-cards) +## [github](./github/README.md) +[![](https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards-example/master/profile-summary-card-output/github/0-profile-details.svg)](https://github.com/vn7n24fzkq/github-profile-summary-cards) +[![](https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards-example/master/profile-summary-card-output/github/1-repos-per-language.svg)](https://github.com/vn7n24fzkq/github-profile-summary-cards) [![](https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards-example/master/profile-summary-card-output/github/2-most-commit-language.svg)](https://github.com/vn7n24fzkq/github-profile-summary-cards) +[![](https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards-example/master/profile-summary-card-output/github/3-stats.svg)](https://github.com/vn7n24fzkq/github-profile-summary-cards) [![](https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards-example/master/profile-summary-card-output/github/4-productive-time.svg)](https://github.com/vn7n24fzkq/github-profile-summary-cards) +## [github_dark](./github_dark/README.md) +[![](https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards-example/master/profile-summary-card-output/github_dark/0-profile-details.svg)](https://github.com/vn7n24fzkq/github-profile-summary-cards) +[![](https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards-example/master/profile-summary-card-output/github_dark/1-repos-per-language.svg)](https://github.com/vn7n24fzkq/github-profile-summary-cards) [![](https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards-example/master/profile-summary-card-output/github_dark/2-most-commit-language.svg)](https://github.com/vn7n24fzkq/github-profile-summary-cards) +[![](https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards-example/master/profile-summary-card-output/github_dark/3-stats.svg)](https://github.com/vn7n24fzkq/github-profile-summary-cards) [![](https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards-example/master/profile-summary-card-output/github_dark/4-productive-time.svg)](https://github.com/vn7n24fzkq/github-profile-summary-cards) diff --git a/profile-summary-card-output/default/0-profile-details.svg b/profile-summary-card-output/default/0-profile-details.svg new file mode 100644 index 000000000..2a8804a7d --- /dev/null +++ b/profile-summary-card-output/default/0-profile-details.svg @@ -0,0 +1,3 @@ +vn7n24fzkq (Casper)837 Contributions on GitHub25 Public ReposJoined GitHub 5 years agovn7n24fzkq@gmail.com20/1270/0121/0270/0121/0470/0121/0670/0121/0870/0121/1070/0121/12010203040506070contributions in the last year \ No newline at end of file diff --git a/profile-summary-card-output/default/1-repos-per-language.svg b/profile-summary-card-output/default/1-repos-per-language.svg new file mode 100644 index 000000000..0f469edbc --- /dev/null +++ b/profile-summary-card-output/default/1-repos-per-language.svg @@ -0,0 +1,3 @@ +Top Languages by RepoJavaRustVim scriptKotlinJavaScript \ No newline at end of file diff --git a/profile-summary-card-output/default/2-most-commit-language.svg b/profile-summary-card-output/default/2-most-commit-language.svg new file mode 100644 index 000000000..53d47dc0a --- /dev/null +++ b/profile-summary-card-output/default/2-most-commit-language.svg @@ -0,0 +1,3 @@ +Top Languages by CommitJavaScriptGoTypeScriptVim scriptJava \ No newline at end of file diff --git a/profile-summary-card-output/default/3-stats.svg b/profile-summary-card-output/default/3-stats.svg new file mode 100644 index 000000000..f193588a3 --- /dev/null +++ b/profile-summary-card-output/default/3-stats.svg @@ -0,0 +1,3 @@ +StatsTotal Stars:Total Commits:Total PRs:Total Issues:Contributed to:1.1k729303118 \ No newline at end of file diff --git a/profile-summary-card-output/default/4-productive-time.svg b/profile-summary-card-output/default/4-productive-time.svg new file mode 100644 index 000000000..5fc904553 --- /dev/null +++ b/profile-summary-card-output/default/4-productive-time.svg @@ -0,0 +1,3 @@ +Commits per day hour (UTC)0612182305101520 \ No newline at end of file diff --git a/profile-summary-card-output/default/README.md b/profile-summary-card-output/default/README.md new file mode 100644 index 000000000..5e46fff38 --- /dev/null +++ b/profile-summary-card-output/default/README.md @@ -0,0 +1,64 @@ +## default + +[![](./0-profile-details.svg)](https://github.com/vn7n24fzkq/github-profile-summary-cards) +[![](./1-repos-per-language.svg)](https://github.com/vn7n24fzkq/github-profile-summary-cards) [![](./2-most-commit-language.svg)](https://github.com/vn7n24fzkq/github-profile-summary-cards) +[![](./3-stats.svg)](https://github.com/vn7n24fzkq/github-profile-summary-cards) [![](./4-productive-time.svg)](https://github.com/vn7n24fzkq/github-profile-summary-cards) +### Now you can add this to your markdown +``` + +[![](https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards-example/master/profile-summary-card-output/default/0-profile-details.svg)](https://github.com/vn7n24fzkq/github-profile-summary-cards) +[![](https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards-example/master/profile-summary-card-output/default/1-repos-per-language.svg)](https://github.com/vn7n24fzkq/github-profile-summary-cards) [![](https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards-example/master/profile-summary-card-output/default/2-most-commit-language.svg)](https://github.com/vn7n24fzkq/github-profile-summary-cards) +[![](https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards-example/master/profile-summary-card-output/default/3-stats.svg)](https://github.com/vn7n24fzkq/github-profile-summary-cards) [![](https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards-example/master/profile-summary-card-output/default/4-productive-time.svg)](https://github.com/vn7n24fzkq/github-profile-summary-cards) + +``` + +### Each card usage +--- + +![](./0-profile-details.svg) + +``` +![](https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards-example/master/profile-summary-card-output/default/0-profile-details.svg) +``` + + + +--- + +![](./1-repos-per-language.svg) + +``` +![](https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards-example/master/profile-summary-card-output/default/1-repos-per-language.svg) +``` + + + +--- + +![](./2-most-commit-language.svg) + +``` +![](https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards-example/master/profile-summary-card-output/default/2-most-commit-language.svg) +``` + + + +--- + +![](./3-stats.svg) + +``` +![](https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards-example/master/profile-summary-card-output/default/3-stats.svg) +``` + + + +--- + +![](./4-productive-time.svg) + +``` +![](https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards-example/master/profile-summary-card-output/default/4-productive-time.svg) +``` + + diff --git a/profile-summary-card-output/dracula/0-profile-details.svg b/profile-summary-card-output/dracula/0-profile-details.svg new file mode 100644 index 000000000..9ba84d1dd --- /dev/null +++ b/profile-summary-card-output/dracula/0-profile-details.svg @@ -0,0 +1,3 @@ +vn7n24fzkq (Casper)837 Contributions on GitHub25 Public ReposJoined GitHub 5 years agovn7n24fzkq@gmail.com20/1270/0121/0270/0121/0470/0121/0670/0121/0870/0121/1070/0121/12010203040506070contributions in the last year \ No newline at end of file diff --git a/profile-summary-card-output/dracula/1-repos-per-language.svg b/profile-summary-card-output/dracula/1-repos-per-language.svg new file mode 100644 index 000000000..eb3a8aec2 --- /dev/null +++ b/profile-summary-card-output/dracula/1-repos-per-language.svg @@ -0,0 +1,3 @@ +Top Languages by RepoJavaRustVim scriptKotlinJavaScript \ No newline at end of file diff --git a/profile-summary-card-output/dracula/2-most-commit-language.svg b/profile-summary-card-output/dracula/2-most-commit-language.svg new file mode 100644 index 000000000..d55cb8229 --- /dev/null +++ b/profile-summary-card-output/dracula/2-most-commit-language.svg @@ -0,0 +1,3 @@ +Top Languages by CommitJavaScriptGoTypeScriptVim scriptJava \ No newline at end of file diff --git a/profile-summary-card-output/dracula/3-stats.svg b/profile-summary-card-output/dracula/3-stats.svg new file mode 100644 index 000000000..dd07d7cb7 --- /dev/null +++ b/profile-summary-card-output/dracula/3-stats.svg @@ -0,0 +1,3 @@ +StatsTotal Stars:Total Commits:Total PRs:Total Issues:Contributed to:1.1k729303118 \ No newline at end of file diff --git a/profile-summary-card-output/dracula/4-productive-time.svg b/profile-summary-card-output/dracula/4-productive-time.svg new file mode 100644 index 000000000..25cc77540 --- /dev/null +++ b/profile-summary-card-output/dracula/4-productive-time.svg @@ -0,0 +1,3 @@ +Commits per day hour (UTC)0612182305101520 \ No newline at end of file diff --git a/profile-summary-card-output/dracula/README.md b/profile-summary-card-output/dracula/README.md new file mode 100644 index 000000000..6356c9ad8 --- /dev/null +++ b/profile-summary-card-output/dracula/README.md @@ -0,0 +1,64 @@ +## dracula + +[![](./0-profile-details.svg)](https://github.com/vn7n24fzkq/github-profile-summary-cards) +[![](./1-repos-per-language.svg)](https://github.com/vn7n24fzkq/github-profile-summary-cards) [![](./2-most-commit-language.svg)](https://github.com/vn7n24fzkq/github-profile-summary-cards) +[![](./3-stats.svg)](https://github.com/vn7n24fzkq/github-profile-summary-cards) [![](./4-productive-time.svg)](https://github.com/vn7n24fzkq/github-profile-summary-cards) +### Now you can add this to your markdown +``` + +[![](https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards-example/master/profile-summary-card-output/dracula/0-profile-details.svg)](https://github.com/vn7n24fzkq/github-profile-summary-cards) +[![](https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards-example/master/profile-summary-card-output/dracula/1-repos-per-language.svg)](https://github.com/vn7n24fzkq/github-profile-summary-cards) [![](https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards-example/master/profile-summary-card-output/dracula/2-most-commit-language.svg)](https://github.com/vn7n24fzkq/github-profile-summary-cards) +[![](https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards-example/master/profile-summary-card-output/dracula/3-stats.svg)](https://github.com/vn7n24fzkq/github-profile-summary-cards) [![](https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards-example/master/profile-summary-card-output/dracula/4-productive-time.svg)](https://github.com/vn7n24fzkq/github-profile-summary-cards) + +``` + +### Each card usage +--- + +![](./0-profile-details.svg) + +``` +![](https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards-example/master/profile-summary-card-output/dracula/0-profile-details.svg) +``` + + + +--- + +![](./1-repos-per-language.svg) + +``` +![](https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards-example/master/profile-summary-card-output/dracula/1-repos-per-language.svg) +``` + + + +--- + +![](./2-most-commit-language.svg) + +``` +![](https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards-example/master/profile-summary-card-output/dracula/2-most-commit-language.svg) +``` + + + +--- + +![](./3-stats.svg) + +``` +![](https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards-example/master/profile-summary-card-output/dracula/3-stats.svg) +``` + + + +--- + +![](./4-productive-time.svg) + +``` +![](https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards-example/master/profile-summary-card-output/dracula/4-productive-time.svg) +``` + + diff --git a/profile-summary-card-output/github/0-profile-details.svg b/profile-summary-card-output/github/0-profile-details.svg new file mode 100644 index 000000000..1c79eabe9 --- /dev/null +++ b/profile-summary-card-output/github/0-profile-details.svg @@ -0,0 +1,3 @@ +vn7n24fzkq (Casper)837 Contributions on GitHub25 Public ReposJoined GitHub 5 years agovn7n24fzkq@gmail.com20/1270/0121/0270/0121/0470/0121/0670/0121/0870/0121/1070/0121/12010203040506070contributions in the last year \ No newline at end of file diff --git a/profile-summary-card-output/github/1-repos-per-language.svg b/profile-summary-card-output/github/1-repos-per-language.svg new file mode 100644 index 000000000..c93259e14 --- /dev/null +++ b/profile-summary-card-output/github/1-repos-per-language.svg @@ -0,0 +1,3 @@ +Top Languages by RepoJavaRustVim scriptKotlinJavaScript \ No newline at end of file diff --git a/profile-summary-card-output/github/2-most-commit-language.svg b/profile-summary-card-output/github/2-most-commit-language.svg new file mode 100644 index 000000000..af3af93df --- /dev/null +++ b/profile-summary-card-output/github/2-most-commit-language.svg @@ -0,0 +1,3 @@ +Top Languages by CommitJavaScriptGoTypeScriptVim scriptJava \ No newline at end of file diff --git a/profile-summary-card-output/github/3-stats.svg b/profile-summary-card-output/github/3-stats.svg new file mode 100644 index 000000000..17544f33a --- /dev/null +++ b/profile-summary-card-output/github/3-stats.svg @@ -0,0 +1,3 @@ +StatsTotal Stars:Total Commits:Total PRs:Total Issues:Contributed to:1.1k729303118 \ No newline at end of file diff --git a/profile-summary-card-output/github/4-productive-time.svg b/profile-summary-card-output/github/4-productive-time.svg new file mode 100644 index 000000000..bf2cb5d75 --- /dev/null +++ b/profile-summary-card-output/github/4-productive-time.svg @@ -0,0 +1,3 @@ +Commits per day hour (UTC)0612182305101520 \ No newline at end of file diff --git a/profile-summary-card-output/github/README.md b/profile-summary-card-output/github/README.md new file mode 100644 index 000000000..2309eeed3 --- /dev/null +++ b/profile-summary-card-output/github/README.md @@ -0,0 +1,64 @@ +## github + +[![](./0-profile-details.svg)](https://github.com/vn7n24fzkq/github-profile-summary-cards) +[![](./1-repos-per-language.svg)](https://github.com/vn7n24fzkq/github-profile-summary-cards) [![](./2-most-commit-language.svg)](https://github.com/vn7n24fzkq/github-profile-summary-cards) +[![](./3-stats.svg)](https://github.com/vn7n24fzkq/github-profile-summary-cards) [![](./4-productive-time.svg)](https://github.com/vn7n24fzkq/github-profile-summary-cards) +### Now you can add this to your markdown +``` + +[![](https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards-example/master/profile-summary-card-output/github/0-profile-details.svg)](https://github.com/vn7n24fzkq/github-profile-summary-cards) +[![](https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards-example/master/profile-summary-card-output/github/1-repos-per-language.svg)](https://github.com/vn7n24fzkq/github-profile-summary-cards) [![](https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards-example/master/profile-summary-card-output/github/2-most-commit-language.svg)](https://github.com/vn7n24fzkq/github-profile-summary-cards) +[![](https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards-example/master/profile-summary-card-output/github/3-stats.svg)](https://github.com/vn7n24fzkq/github-profile-summary-cards) [![](https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards-example/master/profile-summary-card-output/github/4-productive-time.svg)](https://github.com/vn7n24fzkq/github-profile-summary-cards) + +``` + +### Each card usage +--- + +![](./0-profile-details.svg) + +``` +![](https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards-example/master/profile-summary-card-output/github/0-profile-details.svg) +``` + + + +--- + +![](./1-repos-per-language.svg) + +``` +![](https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards-example/master/profile-summary-card-output/github/1-repos-per-language.svg) +``` + + + +--- + +![](./2-most-commit-language.svg) + +``` +![](https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards-example/master/profile-summary-card-output/github/2-most-commit-language.svg) +``` + + + +--- + +![](./3-stats.svg) + +``` +![](https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards-example/master/profile-summary-card-output/github/3-stats.svg) +``` + + + +--- + +![](./4-productive-time.svg) + +``` +![](https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards-example/master/profile-summary-card-output/github/4-productive-time.svg) +``` + + diff --git a/profile-summary-card-output/github_dark/0-profile-details.svg b/profile-summary-card-output/github_dark/0-profile-details.svg new file mode 100644 index 000000000..0fb9157f3 --- /dev/null +++ b/profile-summary-card-output/github_dark/0-profile-details.svg @@ -0,0 +1,3 @@ +vn7n24fzkq (Casper)837 Contributions on GitHub25 Public ReposJoined GitHub 5 years agovn7n24fzkq@gmail.com20/1270/0121/0270/0121/0470/0121/0670/0121/0870/0121/1070/0121/12010203040506070contributions in the last year \ No newline at end of file diff --git a/profile-summary-card-output/github_dark/1-repos-per-language.svg b/profile-summary-card-output/github_dark/1-repos-per-language.svg new file mode 100644 index 000000000..a9c53e0a0 --- /dev/null +++ b/profile-summary-card-output/github_dark/1-repos-per-language.svg @@ -0,0 +1,3 @@ +Top Languages by RepoJavaRustVim scriptKotlinJavaScript \ No newline at end of file diff --git a/profile-summary-card-output/github_dark/2-most-commit-language.svg b/profile-summary-card-output/github_dark/2-most-commit-language.svg new file mode 100644 index 000000000..c89e8e135 --- /dev/null +++ b/profile-summary-card-output/github_dark/2-most-commit-language.svg @@ -0,0 +1,3 @@ +Top Languages by CommitJavaScriptGoTypeScriptVim scriptJava \ No newline at end of file diff --git a/profile-summary-card-output/github_dark/3-stats.svg b/profile-summary-card-output/github_dark/3-stats.svg new file mode 100644 index 000000000..1c07b627a --- /dev/null +++ b/profile-summary-card-output/github_dark/3-stats.svg @@ -0,0 +1,3 @@ +StatsTotal Stars:Total Commits:Total PRs:Total Issues:Contributed to:1.1k729303118 \ No newline at end of file diff --git a/profile-summary-card-output/github_dark/4-productive-time.svg b/profile-summary-card-output/github_dark/4-productive-time.svg new file mode 100644 index 000000000..29eb93586 --- /dev/null +++ b/profile-summary-card-output/github_dark/4-productive-time.svg @@ -0,0 +1,3 @@ +Commits per day hour (UTC)0612182305101520 \ No newline at end of file diff --git a/profile-summary-card-output/github_dark/README.md b/profile-summary-card-output/github_dark/README.md new file mode 100644 index 000000000..abc690a55 --- /dev/null +++ b/profile-summary-card-output/github_dark/README.md @@ -0,0 +1,64 @@ +## github_dark + +[![](./0-profile-details.svg)](https://github.com/vn7n24fzkq/github-profile-summary-cards) +[![](./1-repos-per-language.svg)](https://github.com/vn7n24fzkq/github-profile-summary-cards) [![](./2-most-commit-language.svg)](https://github.com/vn7n24fzkq/github-profile-summary-cards) +[![](./3-stats.svg)](https://github.com/vn7n24fzkq/github-profile-summary-cards) [![](./4-productive-time.svg)](https://github.com/vn7n24fzkq/github-profile-summary-cards) +### Now you can add this to your markdown +``` + +[![](https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards-example/master/profile-summary-card-output/github_dark/0-profile-details.svg)](https://github.com/vn7n24fzkq/github-profile-summary-cards) +[![](https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards-example/master/profile-summary-card-output/github_dark/1-repos-per-language.svg)](https://github.com/vn7n24fzkq/github-profile-summary-cards) [![](https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards-example/master/profile-summary-card-output/github_dark/2-most-commit-language.svg)](https://github.com/vn7n24fzkq/github-profile-summary-cards) +[![](https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards-example/master/profile-summary-card-output/github_dark/3-stats.svg)](https://github.com/vn7n24fzkq/github-profile-summary-cards) [![](https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards-example/master/profile-summary-card-output/github_dark/4-productive-time.svg)](https://github.com/vn7n24fzkq/github-profile-summary-cards) + +``` + +### Each card usage +--- + +![](./0-profile-details.svg) + +``` +![](https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards-example/master/profile-summary-card-output/github_dark/0-profile-details.svg) +``` + + + +--- + +![](./1-repos-per-language.svg) + +``` +![](https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards-example/master/profile-summary-card-output/github_dark/1-repos-per-language.svg) +``` + + + +--- + +![](./2-most-commit-language.svg) + +``` +![](https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards-example/master/profile-summary-card-output/github_dark/2-most-commit-language.svg) +``` + + + +--- + +![](./3-stats.svg) + +``` +![](https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards-example/master/profile-summary-card-output/github_dark/3-stats.svg) +``` + + + +--- + +![](./4-productive-time.svg) + +``` +![](https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards-example/master/profile-summary-card-output/github_dark/4-productive-time.svg) +``` + + diff --git a/profile-summary-card-output/monokai/0-profile-details.svg b/profile-summary-card-output/monokai/0-profile-details.svg new file mode 100644 index 000000000..5054eeca6 --- /dev/null +++ b/profile-summary-card-output/monokai/0-profile-details.svg @@ -0,0 +1,3 @@ +vn7n24fzkq (Casper)837 Contributions on GitHub25 Public ReposJoined GitHub 5 years agovn7n24fzkq@gmail.com20/1270/0121/0270/0121/0470/0121/0670/0121/0870/0121/1070/0121/12010203040506070contributions in the last year \ No newline at end of file diff --git a/profile-summary-card-output/monokai/1-repos-per-language.svg b/profile-summary-card-output/monokai/1-repos-per-language.svg new file mode 100644 index 000000000..de94f6ff0 --- /dev/null +++ b/profile-summary-card-output/monokai/1-repos-per-language.svg @@ -0,0 +1,3 @@ +Top Languages by RepoJavaRustVim scriptKotlinJavaScript \ No newline at end of file diff --git a/profile-summary-card-output/monokai/2-most-commit-language.svg b/profile-summary-card-output/monokai/2-most-commit-language.svg new file mode 100644 index 000000000..15dc6a881 --- /dev/null +++ b/profile-summary-card-output/monokai/2-most-commit-language.svg @@ -0,0 +1,3 @@ +Top Languages by CommitJavaScriptGoTypeScriptVim scriptJava \ No newline at end of file diff --git a/profile-summary-card-output/monokai/3-stats.svg b/profile-summary-card-output/monokai/3-stats.svg new file mode 100644 index 000000000..2ccffa374 --- /dev/null +++ b/profile-summary-card-output/monokai/3-stats.svg @@ -0,0 +1,3 @@ +StatsTotal Stars:Total Commits:Total PRs:Total Issues:Contributed to:1.1k729303118 \ No newline at end of file diff --git a/profile-summary-card-output/monokai/4-productive-time.svg b/profile-summary-card-output/monokai/4-productive-time.svg new file mode 100644 index 000000000..7891a5a41 --- /dev/null +++ b/profile-summary-card-output/monokai/4-productive-time.svg @@ -0,0 +1,3 @@ +Commits per day hour (UTC)0612182305101520 \ No newline at end of file diff --git a/profile-summary-card-output/monokai/README.md b/profile-summary-card-output/monokai/README.md new file mode 100644 index 000000000..3f5b03275 --- /dev/null +++ b/profile-summary-card-output/monokai/README.md @@ -0,0 +1,64 @@ +## monokai + +[![](./0-profile-details.svg)](https://github.com/vn7n24fzkq/github-profile-summary-cards) +[![](./1-repos-per-language.svg)](https://github.com/vn7n24fzkq/github-profile-summary-cards) [![](./2-most-commit-language.svg)](https://github.com/vn7n24fzkq/github-profile-summary-cards) +[![](./3-stats.svg)](https://github.com/vn7n24fzkq/github-profile-summary-cards) [![](./4-productive-time.svg)](https://github.com/vn7n24fzkq/github-profile-summary-cards) +### Now you can add this to your markdown +``` + +[![](https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards-example/master/profile-summary-card-output/monokai/0-profile-details.svg)](https://github.com/vn7n24fzkq/github-profile-summary-cards) +[![](https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards-example/master/profile-summary-card-output/monokai/1-repos-per-language.svg)](https://github.com/vn7n24fzkq/github-profile-summary-cards) [![](https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards-example/master/profile-summary-card-output/monokai/2-most-commit-language.svg)](https://github.com/vn7n24fzkq/github-profile-summary-cards) +[![](https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards-example/master/profile-summary-card-output/monokai/3-stats.svg)](https://github.com/vn7n24fzkq/github-profile-summary-cards) [![](https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards-example/master/profile-summary-card-output/monokai/4-productive-time.svg)](https://github.com/vn7n24fzkq/github-profile-summary-cards) + +``` + +### Each card usage +--- + +![](./0-profile-details.svg) + +``` +![](https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards-example/master/profile-summary-card-output/monokai/0-profile-details.svg) +``` + + + +--- + +![](./1-repos-per-language.svg) + +``` +![](https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards-example/master/profile-summary-card-output/monokai/1-repos-per-language.svg) +``` + + + +--- + +![](./2-most-commit-language.svg) + +``` +![](https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards-example/master/profile-summary-card-output/monokai/2-most-commit-language.svg) +``` + + + +--- + +![](./3-stats.svg) + +``` +![](https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards-example/master/profile-summary-card-output/monokai/3-stats.svg) +``` + + + +--- + +![](./4-productive-time.svg) + +``` +![](https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards-example/master/profile-summary-card-output/monokai/4-productive-time.svg) +``` + + diff --git a/profile-summary-card-output/nord_bright/0-profile-details.svg b/profile-summary-card-output/nord_bright/0-profile-details.svg new file mode 100644 index 000000000..81c23fbd7 --- /dev/null +++ b/profile-summary-card-output/nord_bright/0-profile-details.svg @@ -0,0 +1,3 @@ +vn7n24fzkq (Casper)837 Contributions on GitHub25 Public ReposJoined GitHub 5 years agovn7n24fzkq@gmail.com20/1270/0121/0270/0121/0470/0121/0670/0121/0870/0121/1070/0121/12010203040506070contributions in the last year \ No newline at end of file diff --git a/profile-summary-card-output/nord_bright/1-repos-per-language.svg b/profile-summary-card-output/nord_bright/1-repos-per-language.svg new file mode 100644 index 000000000..26c6886d7 --- /dev/null +++ b/profile-summary-card-output/nord_bright/1-repos-per-language.svg @@ -0,0 +1,3 @@ +Top Languages by RepoJavaRustVim scriptKotlinJavaScript \ No newline at end of file diff --git a/profile-summary-card-output/nord_bright/2-most-commit-language.svg b/profile-summary-card-output/nord_bright/2-most-commit-language.svg new file mode 100644 index 000000000..6317f2631 --- /dev/null +++ b/profile-summary-card-output/nord_bright/2-most-commit-language.svg @@ -0,0 +1,3 @@ +Top Languages by CommitJavaScriptGoTypeScriptVim scriptJava \ No newline at end of file diff --git a/profile-summary-card-output/nord_bright/3-stats.svg b/profile-summary-card-output/nord_bright/3-stats.svg new file mode 100644 index 000000000..c931df2c0 --- /dev/null +++ b/profile-summary-card-output/nord_bright/3-stats.svg @@ -0,0 +1,3 @@ +StatsTotal Stars:Total Commits:Total PRs:Total Issues:Contributed to:1.1k729303118 \ No newline at end of file diff --git a/profile-summary-card-output/nord_bright/4-productive-time.svg b/profile-summary-card-output/nord_bright/4-productive-time.svg new file mode 100644 index 000000000..a667d846c --- /dev/null +++ b/profile-summary-card-output/nord_bright/4-productive-time.svg @@ -0,0 +1,3 @@ +Commits per day hour (UTC)0612182305101520 \ No newline at end of file diff --git a/profile-summary-card-output/nord_bright/README.md b/profile-summary-card-output/nord_bright/README.md new file mode 100644 index 000000000..0effcc2a1 --- /dev/null +++ b/profile-summary-card-output/nord_bright/README.md @@ -0,0 +1,64 @@ +## nord_bright + +[![](./0-profile-details.svg)](https://github.com/vn7n24fzkq/github-profile-summary-cards) +[![](./1-repos-per-language.svg)](https://github.com/vn7n24fzkq/github-profile-summary-cards) [![](./2-most-commit-language.svg)](https://github.com/vn7n24fzkq/github-profile-summary-cards) +[![](./3-stats.svg)](https://github.com/vn7n24fzkq/github-profile-summary-cards) [![](./4-productive-time.svg)](https://github.com/vn7n24fzkq/github-profile-summary-cards) +### Now you can add this to your markdown +``` + +[![](https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards-example/master/profile-summary-card-output/nord_bright/0-profile-details.svg)](https://github.com/vn7n24fzkq/github-profile-summary-cards) +[![](https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards-example/master/profile-summary-card-output/nord_bright/1-repos-per-language.svg)](https://github.com/vn7n24fzkq/github-profile-summary-cards) [![](https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards-example/master/profile-summary-card-output/nord_bright/2-most-commit-language.svg)](https://github.com/vn7n24fzkq/github-profile-summary-cards) +[![](https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards-example/master/profile-summary-card-output/nord_bright/3-stats.svg)](https://github.com/vn7n24fzkq/github-profile-summary-cards) [![](https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards-example/master/profile-summary-card-output/nord_bright/4-productive-time.svg)](https://github.com/vn7n24fzkq/github-profile-summary-cards) + +``` + +### Each card usage +--- + +![](./0-profile-details.svg) + +``` +![](https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards-example/master/profile-summary-card-output/nord_bright/0-profile-details.svg) +``` + + + +--- + +![](./1-repos-per-language.svg) + +``` +![](https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards-example/master/profile-summary-card-output/nord_bright/1-repos-per-language.svg) +``` + + + +--- + +![](./2-most-commit-language.svg) + +``` +![](https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards-example/master/profile-summary-card-output/nord_bright/2-most-commit-language.svg) +``` + + + +--- + +![](./3-stats.svg) + +``` +![](https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards-example/master/profile-summary-card-output/nord_bright/3-stats.svg) +``` + + + +--- + +![](./4-productive-time.svg) + +``` +![](https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards-example/master/profile-summary-card-output/nord_bright/4-productive-time.svg) +``` + + diff --git a/profile-summary-card-output/nord_dark/0-profile-details.svg b/profile-summary-card-output/nord_dark/0-profile-details.svg new file mode 100644 index 000000000..2a8b50030 --- /dev/null +++ b/profile-summary-card-output/nord_dark/0-profile-details.svg @@ -0,0 +1,3 @@ +vn7n24fzkq (Casper)837 Contributions on GitHub25 Public ReposJoined GitHub 5 years agovn7n24fzkq@gmail.com20/1270/0121/0270/0121/0470/0121/0670/0121/0870/0121/1070/0121/12010203040506070contributions in the last year \ No newline at end of file diff --git a/profile-summary-card-output/nord_dark/1-repos-per-language.svg b/profile-summary-card-output/nord_dark/1-repos-per-language.svg new file mode 100644 index 000000000..6c22bc8cc --- /dev/null +++ b/profile-summary-card-output/nord_dark/1-repos-per-language.svg @@ -0,0 +1,3 @@ +Top Languages by RepoJavaRustVim scriptKotlinJavaScript \ No newline at end of file diff --git a/profile-summary-card-output/nord_dark/2-most-commit-language.svg b/profile-summary-card-output/nord_dark/2-most-commit-language.svg new file mode 100644 index 000000000..657a53d6f --- /dev/null +++ b/profile-summary-card-output/nord_dark/2-most-commit-language.svg @@ -0,0 +1,3 @@ +Top Languages by CommitJavaScriptGoTypeScriptVim scriptJava \ No newline at end of file diff --git a/profile-summary-card-output/nord_dark/3-stats.svg b/profile-summary-card-output/nord_dark/3-stats.svg new file mode 100644 index 000000000..dca118de8 --- /dev/null +++ b/profile-summary-card-output/nord_dark/3-stats.svg @@ -0,0 +1,3 @@ +StatsTotal Stars:Total Commits:Total PRs:Total Issues:Contributed to:1.1k729303118 \ No newline at end of file diff --git a/profile-summary-card-output/nord_dark/4-productive-time.svg b/profile-summary-card-output/nord_dark/4-productive-time.svg new file mode 100644 index 000000000..56d58f9e6 --- /dev/null +++ b/profile-summary-card-output/nord_dark/4-productive-time.svg @@ -0,0 +1,3 @@ +Commits per day hour (UTC)0612182305101520 \ No newline at end of file diff --git a/profile-summary-card-output/nord_dark/README.md b/profile-summary-card-output/nord_dark/README.md new file mode 100644 index 000000000..41a22c25e --- /dev/null +++ b/profile-summary-card-output/nord_dark/README.md @@ -0,0 +1,64 @@ +## nord_dark + +[![](./0-profile-details.svg)](https://github.com/vn7n24fzkq/github-profile-summary-cards) +[![](./1-repos-per-language.svg)](https://github.com/vn7n24fzkq/github-profile-summary-cards) [![](./2-most-commit-language.svg)](https://github.com/vn7n24fzkq/github-profile-summary-cards) +[![](./3-stats.svg)](https://github.com/vn7n24fzkq/github-profile-summary-cards) [![](./4-productive-time.svg)](https://github.com/vn7n24fzkq/github-profile-summary-cards) +### Now you can add this to your markdown +``` + +[![](https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards-example/master/profile-summary-card-output/nord_dark/0-profile-details.svg)](https://github.com/vn7n24fzkq/github-profile-summary-cards) +[![](https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards-example/master/profile-summary-card-output/nord_dark/1-repos-per-language.svg)](https://github.com/vn7n24fzkq/github-profile-summary-cards) [![](https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards-example/master/profile-summary-card-output/nord_dark/2-most-commit-language.svg)](https://github.com/vn7n24fzkq/github-profile-summary-cards) +[![](https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards-example/master/profile-summary-card-output/nord_dark/3-stats.svg)](https://github.com/vn7n24fzkq/github-profile-summary-cards) [![](https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards-example/master/profile-summary-card-output/nord_dark/4-productive-time.svg)](https://github.com/vn7n24fzkq/github-profile-summary-cards) + +``` + +### Each card usage +--- + +![](./0-profile-details.svg) + +``` +![](https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards-example/master/profile-summary-card-output/nord_dark/0-profile-details.svg) +``` + + + +--- + +![](./1-repos-per-language.svg) + +``` +![](https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards-example/master/profile-summary-card-output/nord_dark/1-repos-per-language.svg) +``` + + + +--- + +![](./2-most-commit-language.svg) + +``` +![](https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards-example/master/profile-summary-card-output/nord_dark/2-most-commit-language.svg) +``` + + + +--- + +![](./3-stats.svg) + +``` +![](https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards-example/master/profile-summary-card-output/nord_dark/3-stats.svg) +``` + + + +--- + +![](./4-productive-time.svg) + +``` +![](https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards-example/master/profile-summary-card-output/nord_dark/4-productive-time.svg) +``` + + diff --git a/profile-summary-card-output/solarized/0-profile-details.svg b/profile-summary-card-output/solarized/0-profile-details.svg new file mode 100644 index 000000000..1ac0510f4 --- /dev/null +++ b/profile-summary-card-output/solarized/0-profile-details.svg @@ -0,0 +1,3 @@ +vn7n24fzkq (Casper)837 Contributions on GitHub25 Public ReposJoined GitHub 5 years agovn7n24fzkq@gmail.com20/1270/0121/0270/0121/0470/0121/0670/0121/0870/0121/1070/0121/12010203040506070contributions in the last year \ No newline at end of file diff --git a/profile-summary-card-output/solarized/1-repos-per-language.svg b/profile-summary-card-output/solarized/1-repos-per-language.svg new file mode 100644 index 000000000..f996733d4 --- /dev/null +++ b/profile-summary-card-output/solarized/1-repos-per-language.svg @@ -0,0 +1,3 @@ +Top Languages by RepoJavaRustVim scriptKotlinJavaScript \ No newline at end of file diff --git a/profile-summary-card-output/solarized/2-most-commit-language.svg b/profile-summary-card-output/solarized/2-most-commit-language.svg new file mode 100644 index 000000000..e6d804407 --- /dev/null +++ b/profile-summary-card-output/solarized/2-most-commit-language.svg @@ -0,0 +1,3 @@ +Top Languages by CommitJavaScriptGoTypeScriptVim scriptJava \ No newline at end of file diff --git a/profile-summary-card-output/solarized/3-stats.svg b/profile-summary-card-output/solarized/3-stats.svg new file mode 100644 index 000000000..d7bacba30 --- /dev/null +++ b/profile-summary-card-output/solarized/3-stats.svg @@ -0,0 +1,3 @@ +StatsTotal Stars:Total Commits:Total PRs:Total Issues:Contributed to:1.1k729303118 \ No newline at end of file diff --git a/profile-summary-card-output/solarized/4-productive-time.svg b/profile-summary-card-output/solarized/4-productive-time.svg new file mode 100644 index 000000000..05b1e57ff --- /dev/null +++ b/profile-summary-card-output/solarized/4-productive-time.svg @@ -0,0 +1,3 @@ +Commits per day hour (UTC)0612182305101520 \ No newline at end of file diff --git a/profile-summary-card-output/solarized/README.md b/profile-summary-card-output/solarized/README.md new file mode 100644 index 000000000..d03ea9ca7 --- /dev/null +++ b/profile-summary-card-output/solarized/README.md @@ -0,0 +1,64 @@ +## solarized + +[![](./0-profile-details.svg)](https://github.com/vn7n24fzkq/github-profile-summary-cards) +[![](./1-repos-per-language.svg)](https://github.com/vn7n24fzkq/github-profile-summary-cards) [![](./2-most-commit-language.svg)](https://github.com/vn7n24fzkq/github-profile-summary-cards) +[![](./3-stats.svg)](https://github.com/vn7n24fzkq/github-profile-summary-cards) [![](./4-productive-time.svg)](https://github.com/vn7n24fzkq/github-profile-summary-cards) +### Now you can add this to your markdown +``` + +[![](https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards-example/master/profile-summary-card-output/solarized/0-profile-details.svg)](https://github.com/vn7n24fzkq/github-profile-summary-cards) +[![](https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards-example/master/profile-summary-card-output/solarized/1-repos-per-language.svg)](https://github.com/vn7n24fzkq/github-profile-summary-cards) [![](https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards-example/master/profile-summary-card-output/solarized/2-most-commit-language.svg)](https://github.com/vn7n24fzkq/github-profile-summary-cards) +[![](https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards-example/master/profile-summary-card-output/solarized/3-stats.svg)](https://github.com/vn7n24fzkq/github-profile-summary-cards) [![](https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards-example/master/profile-summary-card-output/solarized/4-productive-time.svg)](https://github.com/vn7n24fzkq/github-profile-summary-cards) + +``` + +### Each card usage +--- + +![](./0-profile-details.svg) + +``` +![](https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards-example/master/profile-summary-card-output/solarized/0-profile-details.svg) +``` + + + +--- + +![](./1-repos-per-language.svg) + +``` +![](https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards-example/master/profile-summary-card-output/solarized/1-repos-per-language.svg) +``` + + + +--- + +![](./2-most-commit-language.svg) + +``` +![](https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards-example/master/profile-summary-card-output/solarized/2-most-commit-language.svg) +``` + + + +--- + +![](./3-stats.svg) + +``` +![](https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards-example/master/profile-summary-card-output/solarized/3-stats.svg) +``` + + + +--- + +![](./4-productive-time.svg) + +``` +![](https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards-example/master/profile-summary-card-output/solarized/4-productive-time.svg) +``` + + diff --git a/profile-summary-card-output/solarized_dark/0-profile-details.svg b/profile-summary-card-output/solarized_dark/0-profile-details.svg new file mode 100644 index 000000000..5838b4f69 --- /dev/null +++ b/profile-summary-card-output/solarized_dark/0-profile-details.svg @@ -0,0 +1,3 @@ +vn7n24fzkq (Casper)837 Contributions on GitHub25 Public ReposJoined GitHub 5 years agovn7n24fzkq@gmail.com20/1270/0121/0270/0121/0470/0121/0670/0121/0870/0121/1070/0121/12010203040506070contributions in the last year \ No newline at end of file diff --git a/profile-summary-card-output/solarized_dark/1-repos-per-language.svg b/profile-summary-card-output/solarized_dark/1-repos-per-language.svg new file mode 100644 index 000000000..b0b11a0ff --- /dev/null +++ b/profile-summary-card-output/solarized_dark/1-repos-per-language.svg @@ -0,0 +1,3 @@ +Top Languages by RepoJavaRustVim scriptKotlinJavaScript \ No newline at end of file diff --git a/profile-summary-card-output/solarized_dark/2-most-commit-language.svg b/profile-summary-card-output/solarized_dark/2-most-commit-language.svg new file mode 100644 index 000000000..4cafbf9e7 --- /dev/null +++ b/profile-summary-card-output/solarized_dark/2-most-commit-language.svg @@ -0,0 +1,3 @@ +Top Languages by CommitJavaScriptGoTypeScriptVim scriptJava \ No newline at end of file diff --git a/profile-summary-card-output/solarized_dark/3-stats.svg b/profile-summary-card-output/solarized_dark/3-stats.svg new file mode 100644 index 000000000..abc3547a5 --- /dev/null +++ b/profile-summary-card-output/solarized_dark/3-stats.svg @@ -0,0 +1,3 @@ +StatsTotal Stars:Total Commits:Total PRs:Total Issues:Contributed to:1.1k729303118 \ No newline at end of file diff --git a/profile-summary-card-output/solarized_dark/4-productive-time.svg b/profile-summary-card-output/solarized_dark/4-productive-time.svg new file mode 100644 index 000000000..e0cbb5856 --- /dev/null +++ b/profile-summary-card-output/solarized_dark/4-productive-time.svg @@ -0,0 +1,3 @@ +Commits per day hour (UTC)0612182305101520 \ No newline at end of file diff --git a/profile-summary-card-output/solarized_dark/README.md b/profile-summary-card-output/solarized_dark/README.md new file mode 100644 index 000000000..e7dff8932 --- /dev/null +++ b/profile-summary-card-output/solarized_dark/README.md @@ -0,0 +1,64 @@ +## solarized_dark + +[![](./0-profile-details.svg)](https://github.com/vn7n24fzkq/github-profile-summary-cards) +[![](./1-repos-per-language.svg)](https://github.com/vn7n24fzkq/github-profile-summary-cards) [![](./2-most-commit-language.svg)](https://github.com/vn7n24fzkq/github-profile-summary-cards) +[![](./3-stats.svg)](https://github.com/vn7n24fzkq/github-profile-summary-cards) [![](./4-productive-time.svg)](https://github.com/vn7n24fzkq/github-profile-summary-cards) +### Now you can add this to your markdown +``` + +[![](https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards-example/master/profile-summary-card-output/solarized_dark/0-profile-details.svg)](https://github.com/vn7n24fzkq/github-profile-summary-cards) +[![](https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards-example/master/profile-summary-card-output/solarized_dark/1-repos-per-language.svg)](https://github.com/vn7n24fzkq/github-profile-summary-cards) [![](https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards-example/master/profile-summary-card-output/solarized_dark/2-most-commit-language.svg)](https://github.com/vn7n24fzkq/github-profile-summary-cards) +[![](https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards-example/master/profile-summary-card-output/solarized_dark/3-stats.svg)](https://github.com/vn7n24fzkq/github-profile-summary-cards) [![](https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards-example/master/profile-summary-card-output/solarized_dark/4-productive-time.svg)](https://github.com/vn7n24fzkq/github-profile-summary-cards) + +``` + +### Each card usage +--- + +![](./0-profile-details.svg) + +``` +![](https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards-example/master/profile-summary-card-output/solarized_dark/0-profile-details.svg) +``` + + + +--- + +![](./1-repos-per-language.svg) + +``` +![](https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards-example/master/profile-summary-card-output/solarized_dark/1-repos-per-language.svg) +``` + + + +--- + +![](./2-most-commit-language.svg) + +``` +![](https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards-example/master/profile-summary-card-output/solarized_dark/2-most-commit-language.svg) +``` + + + +--- + +![](./3-stats.svg) + +``` +![](https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards-example/master/profile-summary-card-output/solarized_dark/3-stats.svg) +``` + + + +--- + +![](./4-productive-time.svg) + +``` +![](https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards-example/master/profile-summary-card-output/solarized_dark/4-productive-time.svg) +``` + + diff --git a/profile-summary-card-output/vue/0-profile-details.svg b/profile-summary-card-output/vue/0-profile-details.svg new file mode 100644 index 000000000..d81630d41 --- /dev/null +++ b/profile-summary-card-output/vue/0-profile-details.svg @@ -0,0 +1,3 @@ +vn7n24fzkq (Casper)837 Contributions on GitHub25 Public ReposJoined GitHub 5 years agovn7n24fzkq@gmail.com20/1270/0121/0270/0121/0470/0121/0670/0121/0870/0121/1070/0121/12010203040506070contributions in the last year \ No newline at end of file diff --git a/profile-summary-card-output/vue/1-repos-per-language.svg b/profile-summary-card-output/vue/1-repos-per-language.svg new file mode 100644 index 000000000..609906c95 --- /dev/null +++ b/profile-summary-card-output/vue/1-repos-per-language.svg @@ -0,0 +1,3 @@ +Top Languages by RepoJavaRustVim scriptKotlinJavaScript \ No newline at end of file diff --git a/profile-summary-card-output/vue/2-most-commit-language.svg b/profile-summary-card-output/vue/2-most-commit-language.svg new file mode 100644 index 000000000..caddd8b86 --- /dev/null +++ b/profile-summary-card-output/vue/2-most-commit-language.svg @@ -0,0 +1,3 @@ +Top Languages by CommitJavaScriptGoTypeScriptVim scriptJava \ No newline at end of file diff --git a/profile-summary-card-output/vue/3-stats.svg b/profile-summary-card-output/vue/3-stats.svg new file mode 100644 index 000000000..17c121d3e --- /dev/null +++ b/profile-summary-card-output/vue/3-stats.svg @@ -0,0 +1,3 @@ +StatsTotal Stars:Total Commits:Total PRs:Total Issues:Contributed to:1.1k729303118 \ No newline at end of file diff --git a/profile-summary-card-output/vue/4-productive-time.svg b/profile-summary-card-output/vue/4-productive-time.svg new file mode 100644 index 000000000..11f8fde8d --- /dev/null +++ b/profile-summary-card-output/vue/4-productive-time.svg @@ -0,0 +1,3 @@ +Commits per day hour (UTC)0612182305101520 \ No newline at end of file diff --git a/profile-summary-card-output/vue/README.md b/profile-summary-card-output/vue/README.md new file mode 100644 index 000000000..f36d0c461 --- /dev/null +++ b/profile-summary-card-output/vue/README.md @@ -0,0 +1,64 @@ +## vue + +[![](./0-profile-details.svg)](https://github.com/vn7n24fzkq/github-profile-summary-cards) +[![](./1-repos-per-language.svg)](https://github.com/vn7n24fzkq/github-profile-summary-cards) [![](./2-most-commit-language.svg)](https://github.com/vn7n24fzkq/github-profile-summary-cards) +[![](./3-stats.svg)](https://github.com/vn7n24fzkq/github-profile-summary-cards) [![](./4-productive-time.svg)](https://github.com/vn7n24fzkq/github-profile-summary-cards) +### Now you can add this to your markdown +``` + +[![](https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards-example/master/profile-summary-card-output/vue/0-profile-details.svg)](https://github.com/vn7n24fzkq/github-profile-summary-cards) +[![](https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards-example/master/profile-summary-card-output/vue/1-repos-per-language.svg)](https://github.com/vn7n24fzkq/github-profile-summary-cards) [![](https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards-example/master/profile-summary-card-output/vue/2-most-commit-language.svg)](https://github.com/vn7n24fzkq/github-profile-summary-cards) +[![](https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards-example/master/profile-summary-card-output/vue/3-stats.svg)](https://github.com/vn7n24fzkq/github-profile-summary-cards) [![](https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards-example/master/profile-summary-card-output/vue/4-productive-time.svg)](https://github.com/vn7n24fzkq/github-profile-summary-cards) + +``` + +### Each card usage +--- + +![](./0-profile-details.svg) + +``` +![](https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards-example/master/profile-summary-card-output/vue/0-profile-details.svg) +``` + + + +--- + +![](./1-repos-per-language.svg) + +``` +![](https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards-example/master/profile-summary-card-output/vue/1-repos-per-language.svg) +``` + + + +--- + +![](./2-most-commit-language.svg) + +``` +![](https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards-example/master/profile-summary-card-output/vue/2-most-commit-language.svg) +``` + + + +--- + +![](./3-stats.svg) + +``` +![](https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards-example/master/profile-summary-card-output/vue/3-stats.svg) +``` + + + +--- + +![](./4-productive-time.svg) + +``` +![](https://raw.githubusercontent.com/vn7n24fzkq/github-profile-summary-cards-example/master/profile-summary-card-output/vue/4-productive-time.svg) +``` + +