├── .github ├── assets │ ├── doc-site-example-dark.jpg │ └── doc-site-example.jpg └── workflows │ ├── deploy.yml │ ├── refresh-content-on-heroku.yml │ └── update-fastn-binary.yml ├── .gitignore ├── FASTN.ftd ├── FASTN └── ds.ftd ├── README.md ├── _config.yml ├── assets ├── ipsum-logo-dark.svg ├── ipsum-logo.svg ├── pytorch-ar21.svg └── pytorch-icon.svg ├── favicon.ico ├── index.ftd ├── sidebar.ftd └── static ├── explaining-sheldon.gif ├── profile.gif ├── profile.png └── research.gif /.github/assets/doc-site-example-dark.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/fastn_profile/HEAD/.github/assets/doc-site-example-dark.jpg -------------------------------------------------------------------------------- /.github/assets/doc-site-example.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/fastn_profile/HEAD/.github/assets/doc-site-example.jpg -------------------------------------------------------------------------------- /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/fastn_profile/HEAD/.github/workflows/deploy.yml -------------------------------------------------------------------------------- /.github/workflows/refresh-content-on-heroku.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/fastn_profile/HEAD/.github/workflows/refresh-content-on-heroku.yml -------------------------------------------------------------------------------- /.github/workflows/update-fastn-binary.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/fastn_profile/HEAD/.github/workflows/update-fastn-binary.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .packages 2 | .build 3 | .DS_Store 4 | .idea 5 | -------------------------------------------------------------------------------- /FASTN.ftd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/fastn_profile/HEAD/FASTN.ftd -------------------------------------------------------------------------------- /FASTN/ds.ftd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/fastn_profile/HEAD/FASTN/ds.ftd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/fastn_profile/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- 1 | permalink: /404.html 2 | -------------------------------------------------------------------------------- /assets/ipsum-logo-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/fastn_profile/HEAD/assets/ipsum-logo-dark.svg -------------------------------------------------------------------------------- /assets/ipsum-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/fastn_profile/HEAD/assets/ipsum-logo.svg -------------------------------------------------------------------------------- /assets/pytorch-ar21.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/fastn_profile/HEAD/assets/pytorch-ar21.svg -------------------------------------------------------------------------------- /assets/pytorch-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/fastn_profile/HEAD/assets/pytorch-icon.svg -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/fastn_profile/HEAD/favicon.ico -------------------------------------------------------------------------------- /index.ftd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/fastn_profile/HEAD/index.ftd -------------------------------------------------------------------------------- /sidebar.ftd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/fastn_profile/HEAD/sidebar.ftd -------------------------------------------------------------------------------- /static/explaining-sheldon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/fastn_profile/HEAD/static/explaining-sheldon.gif -------------------------------------------------------------------------------- /static/profile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/fastn_profile/HEAD/static/profile.gif -------------------------------------------------------------------------------- /static/profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/fastn_profile/HEAD/static/profile.png -------------------------------------------------------------------------------- /static/research.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hrishikesh332/fastn_profile/HEAD/static/research.gif --------------------------------------------------------------------------------