├── images
├── stat.png
├── Capture.PNG
└── stat.svg
├── .github
└── workflows
│ └── main.yml
├── LICENSE
├── README.md
└── .gitignore
/images/stat.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/kvnptl/kritika-srivastava/master/images/stat.png
--------------------------------------------------------------------------------
/images/Capture.PNG:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/kvnptl/kritika-srivastava/master/images/Capture.PNG
--------------------------------------------------------------------------------
/.github/workflows/main.yml:
--------------------------------------------------------------------------------
1 | name: WakaTime stats update in README.md
2 |
3 | on:
4 | schedule:
5 | # Runs at 12 am IST change to '0 0 * * *' for UTC
6 | - cron: '1 0 * * *'
7 |
8 | jobs:
9 | update-readme:
10 | name: Update the WakaTime Stats
11 | runs-on: ubuntu-latest
12 | steps:
13 | - uses: avinal/Profile-Readme-WakaTime@master
14 | with:
15 | WAKATIME_API_KEY: ${{ secrets.WAKATIME_API_KEY }}
16 | GITHUB_TOKEN: ${{ github.token }}
17 |
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | MIT License
2 |
3 | Copyright (c) 2020 Kritika Srivastava
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 | # Hello, folks!
2 |
3 |
4 |
5 | My name is Kritika Srivastava and I am currently a junior at National Institute of Technology, Hamirpur.
6 | - Currently, I am working on Image Processing and OpenCV 💻.
7 | - My interest areas include Brain Computer Interface, Robotics and Deep Learning 👩💻.
8 | - I am a competitive programming enthusiast (❁´◡`❁).
9 |
10 | Check out [My Portfolio ](https://kritika-srivastava.github.io/)
11 |
12 |
13 | #
14 |
15 |