├── .github └── workflows │ └── blank.yml ├── LICENSE ├── README.md ├── screenshot_20201214.png ├── screenshot_20201221.png ├── screenshot_20201228.png ├── screenshot_20210104.png ├── screenshot_20210111.png ├── screenshot_20210118.png ├── screenshot_20210125.png ├── screenshot_20210201.png ├── screenshot_20210208.png ├── screenshot_20210215.png ├── screenshot_20210222.png ├── screenshot_20210301.png ├── screenshot_20210308.png ├── screenshot_20210315.png ├── screenshot_20210322.png ├── screenshot_20210329.png ├── screenshot_20210405.png ├── screenshot_20210412.png ├── screenshot_20210419.png ├── screenshot_20210426.png ├── screenshot_20210503.png ├── screenshot_20210510.png ├── screenshot_20210517.png ├── screenshot_20210524.png ├── screenshot_20210531.png ├── screenshot_20210607.png ├── screenshot_20210614.png ├── screenshot_20210621.png ├── screenshot_20210628.png ├── screenshot_20210705.png ├── screenshot_20210712.png ├── screenshot_20210719.png ├── screenshot_20210726.png ├── screenshot_20210802.png ├── screenshot_20210809.png ├── screenshot_20210816.png ├── screenshot_20210823.png ├── screenshot_20210830.png ├── screenshot_20210906.png ├── screenshot_20210913.png ├── screenshot_20210920.png ├── screenshot_20210927.png ├── screenshot_20211004.png ├── screenshot_20211011.png ├── screenshot_20211018.png ├── screenshot_20211025.png ├── screenshot_20211101.png ├── screenshot_20211108.png ├── screenshot_20211115.png ├── screenshot_20211122.png ├── screenshot_20211129.png ├── screenshot_20211206.png ├── screenshot_20211213.png ├── screenshot_20211220.png ├── screenshot_20211227.png ├── screenshot_20220103.png ├── screenshot_20220110.png ├── screenshot_20220117.png ├── screenshot_20220124.png ├── screenshot_20220131.png ├── screenshot_20220207.png ├── screenshot_20220214.png ├── screenshot_20220221.png ├── screenshot_20220228.png ├── screenshot_20220307.png ├── screenshot_20220314.png ├── screenshot_20220321.png ├── screenshot_20220328.png ├── screenshot_20220404.png ├── screenshot_20220411.png ├── screenshot_20220418.png └── screenshot_20220425.png /.github/workflows/blank.yml: -------------------------------------------------------------------------------- 1 | name: screenshot 2 | 3 | # Controls when the action will run. 4 | on: 5 | schedule: 6 | - cron: "0 0 * * 1" 7 | workflow_dispatch: 8 | 9 | # A workflow run is made up of one or more jobs that can run sequentially or in parallel 10 | jobs: 11 | # This workflow contains a single job called "build" 12 | screenshot: 13 | # The type of runner that the job will run on 14 | runs-on: ubuntu-latest 15 | 16 | # Steps represent a sequence of tasks that will be executed as part of the job 17 | steps: 18 | - name: Check out repository 19 | uses: actions/checkout@v2 20 | - name: screenshot-website 21 | id: screenshot-website 22 | uses: swinton/screenshot-website@v1.0.0 23 | with: 24 | # Source of the content to be captured, may be a URL or HTML content 25 | source: https://rwing.github.io/debian-benchmarks-game-visualization/ 26 | width: 1200 27 | full-page: true 28 | - run: cp ${{ steps.screenshot-website.outputs.path }} ./screenshot_$(date +'%Y%m%d').png 29 | - name: commit 30 | uses: EndBug/add-and-commit@v5 31 | with: 32 | message: "Add screentshot" 33 | add: "*.png --force" 34 | cwd: "./" 35 | env: 36 | GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} 37 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2021 Rwing 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Visualization of debian's benchmarks game data 2 | 3 | [Archived] Please move to the better repo https://github.com/GoodManWEN/Programming-Language-Benchmarks-Visualization 4 | 5 | https://rwing.github.io/debian-benchmarks-game-visualization/ 6 | 7 | The original data from https://benchmarksgame-team.pages.debian.net/benchmarksgame/ 8 | 9 | Weekly screenshot to this repository. 10 | -------------------------------------------------------------------------------- /screenshot_20201214.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rwing/debian-benchmarks-game-visualization/52e54233adcd6b3449cbdf3602ba7ba9b3d89c49/screenshot_20201214.png -------------------------------------------------------------------------------- /screenshot_20201221.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rwing/debian-benchmarks-game-visualization/52e54233adcd6b3449cbdf3602ba7ba9b3d89c49/screenshot_20201221.png -------------------------------------------------------------------------------- /screenshot_20201228.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rwing/debian-benchmarks-game-visualization/52e54233adcd6b3449cbdf3602ba7ba9b3d89c49/screenshot_20201228.png -------------------------------------------------------------------------------- /screenshot_20210104.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rwing/debian-benchmarks-game-visualization/52e54233adcd6b3449cbdf3602ba7ba9b3d89c49/screenshot_20210104.png -------------------------------------------------------------------------------- /screenshot_20210111.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rwing/debian-benchmarks-game-visualization/52e54233adcd6b3449cbdf3602ba7ba9b3d89c49/screenshot_20210111.png -------------------------------------------------------------------------------- /screenshot_20210118.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rwing/debian-benchmarks-game-visualization/52e54233adcd6b3449cbdf3602ba7ba9b3d89c49/screenshot_20210118.png -------------------------------------------------------------------------------- /screenshot_20210125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rwing/debian-benchmarks-game-visualization/52e54233adcd6b3449cbdf3602ba7ba9b3d89c49/screenshot_20210125.png -------------------------------------------------------------------------------- /screenshot_20210201.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rwing/debian-benchmarks-game-visualization/52e54233adcd6b3449cbdf3602ba7ba9b3d89c49/screenshot_20210201.png -------------------------------------------------------------------------------- /screenshot_20210208.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rwing/debian-benchmarks-game-visualization/52e54233adcd6b3449cbdf3602ba7ba9b3d89c49/screenshot_20210208.png -------------------------------------------------------------------------------- /screenshot_20210215.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rwing/debian-benchmarks-game-visualization/52e54233adcd6b3449cbdf3602ba7ba9b3d89c49/screenshot_20210215.png -------------------------------------------------------------------------------- /screenshot_20210222.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rwing/debian-benchmarks-game-visualization/52e54233adcd6b3449cbdf3602ba7ba9b3d89c49/screenshot_20210222.png -------------------------------------------------------------------------------- /screenshot_20210301.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rwing/debian-benchmarks-game-visualization/52e54233adcd6b3449cbdf3602ba7ba9b3d89c49/screenshot_20210301.png -------------------------------------------------------------------------------- /screenshot_20210308.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rwing/debian-benchmarks-game-visualization/52e54233adcd6b3449cbdf3602ba7ba9b3d89c49/screenshot_20210308.png -------------------------------------------------------------------------------- /screenshot_20210315.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rwing/debian-benchmarks-game-visualization/52e54233adcd6b3449cbdf3602ba7ba9b3d89c49/screenshot_20210315.png -------------------------------------------------------------------------------- /screenshot_20210322.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rwing/debian-benchmarks-game-visualization/52e54233adcd6b3449cbdf3602ba7ba9b3d89c49/screenshot_20210322.png -------------------------------------------------------------------------------- /screenshot_20210329.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rwing/debian-benchmarks-game-visualization/52e54233adcd6b3449cbdf3602ba7ba9b3d89c49/screenshot_20210329.png -------------------------------------------------------------------------------- /screenshot_20210405.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rwing/debian-benchmarks-game-visualization/52e54233adcd6b3449cbdf3602ba7ba9b3d89c49/screenshot_20210405.png -------------------------------------------------------------------------------- /screenshot_20210412.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rwing/debian-benchmarks-game-visualization/52e54233adcd6b3449cbdf3602ba7ba9b3d89c49/screenshot_20210412.png -------------------------------------------------------------------------------- /screenshot_20210419.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rwing/debian-benchmarks-game-visualization/52e54233adcd6b3449cbdf3602ba7ba9b3d89c49/screenshot_20210419.png -------------------------------------------------------------------------------- /screenshot_20210426.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rwing/debian-benchmarks-game-visualization/52e54233adcd6b3449cbdf3602ba7ba9b3d89c49/screenshot_20210426.png -------------------------------------------------------------------------------- /screenshot_20210503.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rwing/debian-benchmarks-game-visualization/52e54233adcd6b3449cbdf3602ba7ba9b3d89c49/screenshot_20210503.png -------------------------------------------------------------------------------- /screenshot_20210510.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rwing/debian-benchmarks-game-visualization/52e54233adcd6b3449cbdf3602ba7ba9b3d89c49/screenshot_20210510.png -------------------------------------------------------------------------------- /screenshot_20210517.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rwing/debian-benchmarks-game-visualization/52e54233adcd6b3449cbdf3602ba7ba9b3d89c49/screenshot_20210517.png -------------------------------------------------------------------------------- /screenshot_20210524.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rwing/debian-benchmarks-game-visualization/52e54233adcd6b3449cbdf3602ba7ba9b3d89c49/screenshot_20210524.png -------------------------------------------------------------------------------- /screenshot_20210531.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rwing/debian-benchmarks-game-visualization/52e54233adcd6b3449cbdf3602ba7ba9b3d89c49/screenshot_20210531.png -------------------------------------------------------------------------------- /screenshot_20210607.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rwing/debian-benchmarks-game-visualization/52e54233adcd6b3449cbdf3602ba7ba9b3d89c49/screenshot_20210607.png -------------------------------------------------------------------------------- /screenshot_20210614.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rwing/debian-benchmarks-game-visualization/52e54233adcd6b3449cbdf3602ba7ba9b3d89c49/screenshot_20210614.png -------------------------------------------------------------------------------- /screenshot_20210621.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rwing/debian-benchmarks-game-visualization/52e54233adcd6b3449cbdf3602ba7ba9b3d89c49/screenshot_20210621.png -------------------------------------------------------------------------------- /screenshot_20210628.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rwing/debian-benchmarks-game-visualization/52e54233adcd6b3449cbdf3602ba7ba9b3d89c49/screenshot_20210628.png -------------------------------------------------------------------------------- /screenshot_20210705.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rwing/debian-benchmarks-game-visualization/52e54233adcd6b3449cbdf3602ba7ba9b3d89c49/screenshot_20210705.png -------------------------------------------------------------------------------- /screenshot_20210712.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rwing/debian-benchmarks-game-visualization/52e54233adcd6b3449cbdf3602ba7ba9b3d89c49/screenshot_20210712.png -------------------------------------------------------------------------------- /screenshot_20210719.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rwing/debian-benchmarks-game-visualization/52e54233adcd6b3449cbdf3602ba7ba9b3d89c49/screenshot_20210719.png -------------------------------------------------------------------------------- /screenshot_20210726.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rwing/debian-benchmarks-game-visualization/52e54233adcd6b3449cbdf3602ba7ba9b3d89c49/screenshot_20210726.png -------------------------------------------------------------------------------- /screenshot_20210802.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rwing/debian-benchmarks-game-visualization/52e54233adcd6b3449cbdf3602ba7ba9b3d89c49/screenshot_20210802.png -------------------------------------------------------------------------------- /screenshot_20210809.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rwing/debian-benchmarks-game-visualization/52e54233adcd6b3449cbdf3602ba7ba9b3d89c49/screenshot_20210809.png -------------------------------------------------------------------------------- /screenshot_20210816.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rwing/debian-benchmarks-game-visualization/52e54233adcd6b3449cbdf3602ba7ba9b3d89c49/screenshot_20210816.png -------------------------------------------------------------------------------- /screenshot_20210823.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rwing/debian-benchmarks-game-visualization/52e54233adcd6b3449cbdf3602ba7ba9b3d89c49/screenshot_20210823.png -------------------------------------------------------------------------------- /screenshot_20210830.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rwing/debian-benchmarks-game-visualization/52e54233adcd6b3449cbdf3602ba7ba9b3d89c49/screenshot_20210830.png -------------------------------------------------------------------------------- /screenshot_20210906.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rwing/debian-benchmarks-game-visualization/52e54233adcd6b3449cbdf3602ba7ba9b3d89c49/screenshot_20210906.png -------------------------------------------------------------------------------- /screenshot_20210913.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rwing/debian-benchmarks-game-visualization/52e54233adcd6b3449cbdf3602ba7ba9b3d89c49/screenshot_20210913.png -------------------------------------------------------------------------------- /screenshot_20210920.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rwing/debian-benchmarks-game-visualization/52e54233adcd6b3449cbdf3602ba7ba9b3d89c49/screenshot_20210920.png -------------------------------------------------------------------------------- /screenshot_20210927.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rwing/debian-benchmarks-game-visualization/52e54233adcd6b3449cbdf3602ba7ba9b3d89c49/screenshot_20210927.png -------------------------------------------------------------------------------- /screenshot_20211004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rwing/debian-benchmarks-game-visualization/52e54233adcd6b3449cbdf3602ba7ba9b3d89c49/screenshot_20211004.png -------------------------------------------------------------------------------- /screenshot_20211011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rwing/debian-benchmarks-game-visualization/52e54233adcd6b3449cbdf3602ba7ba9b3d89c49/screenshot_20211011.png -------------------------------------------------------------------------------- /screenshot_20211018.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rwing/debian-benchmarks-game-visualization/52e54233adcd6b3449cbdf3602ba7ba9b3d89c49/screenshot_20211018.png -------------------------------------------------------------------------------- /screenshot_20211025.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rwing/debian-benchmarks-game-visualization/52e54233adcd6b3449cbdf3602ba7ba9b3d89c49/screenshot_20211025.png -------------------------------------------------------------------------------- /screenshot_20211101.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rwing/debian-benchmarks-game-visualization/52e54233adcd6b3449cbdf3602ba7ba9b3d89c49/screenshot_20211101.png -------------------------------------------------------------------------------- /screenshot_20211108.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rwing/debian-benchmarks-game-visualization/52e54233adcd6b3449cbdf3602ba7ba9b3d89c49/screenshot_20211108.png -------------------------------------------------------------------------------- /screenshot_20211115.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rwing/debian-benchmarks-game-visualization/52e54233adcd6b3449cbdf3602ba7ba9b3d89c49/screenshot_20211115.png -------------------------------------------------------------------------------- /screenshot_20211122.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rwing/debian-benchmarks-game-visualization/52e54233adcd6b3449cbdf3602ba7ba9b3d89c49/screenshot_20211122.png -------------------------------------------------------------------------------- /screenshot_20211129.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rwing/debian-benchmarks-game-visualization/52e54233adcd6b3449cbdf3602ba7ba9b3d89c49/screenshot_20211129.png -------------------------------------------------------------------------------- /screenshot_20211206.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rwing/debian-benchmarks-game-visualization/52e54233adcd6b3449cbdf3602ba7ba9b3d89c49/screenshot_20211206.png -------------------------------------------------------------------------------- /screenshot_20211213.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rwing/debian-benchmarks-game-visualization/52e54233adcd6b3449cbdf3602ba7ba9b3d89c49/screenshot_20211213.png -------------------------------------------------------------------------------- /screenshot_20211220.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rwing/debian-benchmarks-game-visualization/52e54233adcd6b3449cbdf3602ba7ba9b3d89c49/screenshot_20211220.png -------------------------------------------------------------------------------- /screenshot_20211227.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rwing/debian-benchmarks-game-visualization/52e54233adcd6b3449cbdf3602ba7ba9b3d89c49/screenshot_20211227.png -------------------------------------------------------------------------------- /screenshot_20220103.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rwing/debian-benchmarks-game-visualization/52e54233adcd6b3449cbdf3602ba7ba9b3d89c49/screenshot_20220103.png -------------------------------------------------------------------------------- /screenshot_20220110.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rwing/debian-benchmarks-game-visualization/52e54233adcd6b3449cbdf3602ba7ba9b3d89c49/screenshot_20220110.png -------------------------------------------------------------------------------- /screenshot_20220117.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rwing/debian-benchmarks-game-visualization/52e54233adcd6b3449cbdf3602ba7ba9b3d89c49/screenshot_20220117.png -------------------------------------------------------------------------------- /screenshot_20220124.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rwing/debian-benchmarks-game-visualization/52e54233adcd6b3449cbdf3602ba7ba9b3d89c49/screenshot_20220124.png -------------------------------------------------------------------------------- /screenshot_20220131.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rwing/debian-benchmarks-game-visualization/52e54233adcd6b3449cbdf3602ba7ba9b3d89c49/screenshot_20220131.png -------------------------------------------------------------------------------- /screenshot_20220207.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rwing/debian-benchmarks-game-visualization/52e54233adcd6b3449cbdf3602ba7ba9b3d89c49/screenshot_20220207.png -------------------------------------------------------------------------------- /screenshot_20220214.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rwing/debian-benchmarks-game-visualization/52e54233adcd6b3449cbdf3602ba7ba9b3d89c49/screenshot_20220214.png -------------------------------------------------------------------------------- /screenshot_20220221.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rwing/debian-benchmarks-game-visualization/52e54233adcd6b3449cbdf3602ba7ba9b3d89c49/screenshot_20220221.png -------------------------------------------------------------------------------- /screenshot_20220228.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rwing/debian-benchmarks-game-visualization/52e54233adcd6b3449cbdf3602ba7ba9b3d89c49/screenshot_20220228.png -------------------------------------------------------------------------------- /screenshot_20220307.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rwing/debian-benchmarks-game-visualization/52e54233adcd6b3449cbdf3602ba7ba9b3d89c49/screenshot_20220307.png -------------------------------------------------------------------------------- /screenshot_20220314.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rwing/debian-benchmarks-game-visualization/52e54233adcd6b3449cbdf3602ba7ba9b3d89c49/screenshot_20220314.png -------------------------------------------------------------------------------- /screenshot_20220321.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rwing/debian-benchmarks-game-visualization/52e54233adcd6b3449cbdf3602ba7ba9b3d89c49/screenshot_20220321.png -------------------------------------------------------------------------------- /screenshot_20220328.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rwing/debian-benchmarks-game-visualization/52e54233adcd6b3449cbdf3602ba7ba9b3d89c49/screenshot_20220328.png -------------------------------------------------------------------------------- /screenshot_20220404.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rwing/debian-benchmarks-game-visualization/52e54233adcd6b3449cbdf3602ba7ba9b3d89c49/screenshot_20220404.png -------------------------------------------------------------------------------- /screenshot_20220411.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rwing/debian-benchmarks-game-visualization/52e54233adcd6b3449cbdf3602ba7ba9b3d89c49/screenshot_20220411.png -------------------------------------------------------------------------------- /screenshot_20220418.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rwing/debian-benchmarks-game-visualization/52e54233adcd6b3449cbdf3602ba7ba9b3d89c49/screenshot_20220418.png -------------------------------------------------------------------------------- /screenshot_20220425.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rwing/debian-benchmarks-game-visualization/52e54233adcd6b3449cbdf3602ba7ba9b3d89c49/screenshot_20220425.png --------------------------------------------------------------------------------