├── .github └── workflows │ └── upadate-stats.yml └── README.md /.github/workflows/upadate-stats.yml: -------------------------------------------------------------------------------- 1 | name: Update stats 2 | 3 | on: 4 | schedule: 5 | # Runs at 12am UTC 6 | - cron: '0 0 * * *' 7 | 8 | jobs: 9 | update-readme: 10 | name: Update Readme with Metrics 11 | runs-on: ubuntu-latest 12 | steps: 13 | - uses: athul/waka-readme@master 14 | with: 15 | WAKATIME_API_KEY: ${{ secrets.WAKATIME_API_KEY }} 16 | GH_TOKEN: ${{ secrets.GH_TOKEN}} 17 | USERNAME: gautamkrishnar 18 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ### Hi there 👋 2 | This is the place where I opensource stuff and break things :rofl: 3 | 4 | - 🔭 I’m currently working on something cool :wink: 5 | - 🌱 I’m currently learning AI, ML and Block Chain 6 | - 💬 Ask me about anything related to Javascript/Typescript/Python 7 | - 📫 How to reach me: [@gautamkrishnar](https://twitter.com/gautamkrishnar) 8 | - ⚡ Fun fact: I :heart: :dog:s 9 | 10 | 📊 **This week I spent my time on** 11 | 12 | ```text 13 | JavaScript 2 hrs 50 mins █████████████░░░░░░░░░░░░ 54.94 14 | YAML 1 hr 9 mins █████░░░░░░░░░░░░░░░░░░░░ 22.25 15 | Markdown 35 mins ██░░░░░░░░░░░░░░░░░░░░░░░ 11.49 16 | JSON 18 mins █░░░░░░░░░░░░░░░░░░░░░░░░ 6.01 17 | Bash 5 mins ░░░░░░░░░░░░░░░░░░░░░░░░░ 1.76 18 | ``` 19 | 20 | --------------------------------------------------------------------------------