Merge branch 'master' into master

This commit is contained in:
Cristian Cezar Moisés 2024-04-28 23:46:11 +00:00 committed by GitHub
commit 1fdd661d24
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
10 changed files with 397 additions and 292 deletions

View File

@ -1,23 +1,25 @@
on:
repository_dispatch:
workflow_dispatch:
schedule:
- cron: "00 18 * * 0"
repository_dispatch:
workflow_dispatch:
schedule:
- cron: "00 18 * * 0"
name: Check markdown links
jobs:
linkChecker:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Link Checker
id: lychee
uses: lycheeverse/lychee-action@v1.5.1
uses: lycheeverse/lychee-action@v1.6.1
with:
args: README.md
args: README.md
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Create Issue From File
if: steps.lychee.outputs.exit_code != 0
if: env.lychee_exit_code != 0
uses: peter-evans/create-issue-from-file@v4
with:
title: "[Bot] Broken Links Report"

8
.idea/modules.xml generated
View File

@ -1,8 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="ProjectModuleManager">
<modules>
<module fileurl="file://$PROJECT_DIR$/.idea/developer-portfolios.iml" filepath="$PROJECT_DIR$/.idea/developer-portfolios.iml" />
</modules>
</component>
</project>

6
.idea/vcs.xml generated
View File

@ -1,6 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="VcsDirectoryMappings">
<mapping directory="" vcs="Git" />
</component>
</project>

View File

@ -0,0 +1,7 @@
{
"ExpandedNodes": [
""
],
"SelectedNode": "\\C:\\Users\\marwe\\Source\\Repos\\developer-portfolios",
"PreviewInSolutionExplorer": false
}

Binary file not shown.

BIN
.vs/slnx.sqlite Normal file

Binary file not shown.

View File

@ -1,4 +1,5 @@
# TLTR: Create a Pull Request
1. Fork this repository.
2. Clone your new repository to your system.
3. Create a new branch (i.e. `add/your-name`).
@ -9,9 +10,10 @@
If you have never opened a PR and need direction, read more below.
# Contributor's Guide
Feedback, bug reports, and pull requests are welcome. Feel free to ask for [help](https://github.com/emmawedekind/developer-portfolios/issues).
Working on your first Pull Request? You can learn how from this _free_ series [How to Contribute to an Open Source Project on GitHub](https://egghead.io/series/how-to-contribute-to-an-open-source-project-on-github)
Working on your first Pull Request? You can learn how from this _free_ series [How to Contribute to an Open Source Project on GitHub](https://egghead.io/courses/how-to-contribute-to-an-open-source-project-on-github)
This guide has been modified from [freeCodeCamp's Contributors Guide](https://github.com/freeCodeCamp/freeCodeCamp/blob/master/CONTRIBUTING.md)
@ -19,22 +21,22 @@ This guide has been modified from [freeCodeCamp's Contributors Guide](https://gi
### Setting Up Your System
1. Install [Git](https://git-scm.com/) or your favorite Git client.
2. (Optional) [Setup an SSH Key](https://help.github.com/articles/generating-an-ssh-key/) for GitHub.
1. Install [Git](https://git-scm.com) or your favorite Git client.
2. (Optional) [Setup an SSH Key](https://help.github.com/articles/generating-an-ssh-key) for GitHub.
### Forking Developer Portfolios
1. Go to the top-level page of this [repository](https://github.com/emmawedekind/developer-portfolios)
2. Click the "Fork" button in the upper right-hand corner of the interface ([More Details Here](https://help.github.com/articles/fork-a-repo/))
3. After the repository (repo) has been forked, you will be taken to your copy of the Developer Portfolios repo at <https://github.com/yourUsername/developer-portfolios>
1. Go to the top-level page of this [repository](https://github.com/emmawedekind/developer-portfolios)
2. Click the "Fork" button in the upper right-hand corner of the interface ([More Details Here](https://help.github.com/articles/fork-a-repo))
3. After the repository (repo) has been forked, you will be taken to your copy of the Developer Portfolios repo at <https://github.com/yourUsername/developer-portfolios>
### Cloning Your Fork
1. Open a Terminal / Command Line / Bash Shell in your project's directory (_i.e.: `/yourprojectdirectory/`_)
2. Clone your fork of `Developer Portfolios`
1. Open a Terminal / Command Line / Bash Shell in your project's directory (_i.e.: `/yourprojectdirectory/`_)
2. Clone your fork of `Developer Portfolios`
```shell
$ git clone https://github.com/yourUsername/developer-portfolios.git
git clone https://github.com/yourUsername/developer-portfolios.git
```
**(make sure to replace `yourUsername` with your GitHub username)**
@ -43,11 +45,11 @@ This will download the entire `Developer Portfolios` repo to your project's dire
### Setup Your Upstream
1. Change directory to the new directory (`cd ./developer-portfolios`)
2. Add a remote to the original `Developer Portfolios` repo:
1. Change directory to the new directory (`cd ./developer-portfolios`)
2. Add a remote to the original `Developer Portfolios` repo:
```shell
$ git remote add upstream https://github.com/emmawedekind/developer-portfolios.git
git remote add upstream https://github.com/emmawedekind/developer-portfolios.git
```
Congratulations, you now have a local copy of the `Developer Portfolios` repo!
@ -60,7 +62,7 @@ Now that you have a copy of your fork, there is work you will need to do to keep
Do this prior to every time you create a branch for a PR:
1. Make sure you are on the `master` branch
1. Make sure you are on the `master` branch
```shell
$ git status
@ -71,21 +73,21 @@ Your branch is up to date with 'origin/master'.
If you aren't on `master`, resolve outstanding files/commits and checkout the `master` branch
```shell
$ git checkout master
git checkout master
```
2. Do a pull with rebase against `master`
2. Do a pull with rebase against `master`
```shell
$ git pull --rebase upstream master
git pull --rebase upstream master
```
This will pull down all of the changes to the official master branch, without making additional commits in your local repo.
3. Merge remote changes to your local master fork:
3. Merge remote changes to your local master fork:
```shell
$ git merge upstream/master
git merge upstream/master
```
### Create a Branch
@ -105,13 +107,13 @@ We'd recommend naming it something that is relevant to your new site (i.e. `add/
To create a branch on your local machine (and switch to this branch):
```shell
$ git checkout -b [add/your-name]
git checkout -b [add/your-name]
```
and to push to GitHub:
```shell
$ git push origin [add/your-name]
git push origin [add/your-name]
```
**If you need more help with branching, take a look at [this](https://github.com/Kunena/Kunena-Forum/wiki/Create-a-new-branch-with-git-and-manage-branches).**
@ -134,8 +136,8 @@ Take away only one thing from this document: Never, **EVER** make edits to the `
There are two methods of creating a pull request for 'Developer Portfolios':
* Editing files on a local clone (recommended)
* Editing files via the GitHub Interface
- Editing files on a local clone (recommended)
- Editing files via the GitHub Interface
##### Method 1: Editing via your Local Fork _(Recommended)_
@ -183,9 +185,9 @@ As a note, use the present tense for your commit messages (i.e. `Add` instead of
15. The title (also called the subject) of your PR should be descriptive of your changes and succinctly indicate what is being fixed.
* **Do not add the issue number in the PR title or commit message.**
- **Do not add the issue number in the PR title or commit message.**
* Examples: `Add site NAME`
- Examples: `Add site NAME`
### Next Steps

594
README.md
View File

@ -15,230 +15,276 @@ Hopefully this repo can serve as a source of inspiration for your portfolio!
---
## A
## A
- [Aashir Khan](https://portfolio-n4sn.vercel.app/)
- [Aakash Sharma](https://aakash-sharma.netlify.app/)
- [Aashir Khan](https://portfolio-n4sn.vercel.app)
- [Aakash Sharma](https://aakash-sharma.netlify.app)
- [Aaron Dunphy](https://aarondunphy.com)
- [Aaryanna Simonelli](https://ashleighsimonelli.co.uk)
- [Aashutosh Rathi](https://aashutosh.dev)
- [Aayush Kurup](https://aayushkurup.dev)
- [AbdeNassar Amimi](https://abdenassar-portfolio-4smfcqph6-abdenassaramimi99-gmailcom.vercel.app/)
- [Abdelaziz El Arassi](http://aelarassi.com/)
- [Abdellatif Laghjaj](http://abdellatif-laghjaj.ml/)
- [Abdul Rahman](https://abdulrahman.id/)
- [Abdul Raihan](https://raihanhosen.com/)
- [Abass Dev](https://abassdev.com)
- [AbdeNassar Amimi](https://abdenassar-portfolio-4smfcqph6-abdenassaramimi99-gmailcom.vercel.app)
- [Abdelaziz El Arassi](http://aelarassi.com)
- [Abdul Rahman](https://abdulrahman.id)
- [Abdul Rauf](https://armujahid.me)
- [Abdusamad Malikov](https://www.abdusamad.uz)
- [Abhinav Galodha](https://www.galodha.com)
- [Abolfazl Abdali](https://abdali.dev/)
- [Abhinav Kumar](https://my-portfolio-flax-kappa.vercel.app)
- [Abhishek Kandel](https://abhishekkandel.com.np)
- [Abu Said](https://www.abusaid.me/)
- [Adam Alston](https://www.adamalston.com)
- [Adil Aboulkacim](https://adilaboulkacim.com/)
- [Aditya Vikram Singh](https://www.adityavsingh.com/)
- [Adityakumar Sinha](https://aditya113141.github.io/)
- [Adil Aboulkacim](https://adilaboulkacim.com)
- [Aditya Medhe](https://aditya.medhe.in)
- [Aditya Kumar](https://www.adityakr.com)
- [Aditya Vikram Singh](https://www.adityavsingh.com)
- [Adityakumar Sinha](https://aditya113141.github.io)
- [Agney Menon](https://agney.dev)
- [Aishani Pachauri](https://aishanipach.netlify.app/)
- [Ahmad Almory](https://ahmedalmory.github.io/portfolio)
- [Ahmad Awais](https://ahmadawais.com/)
- [Ahmad Awais](https://ahmadawais.com)
- [Ahmed Oublihi](https://www.medevs.xyz)
- [Ahmed Zougari](https://ahmedzougari.com)
- [Ahsan Khan](https://ahsankhan.me/)
- [Ajay Kannan](https://ajaykannan.netlify.app/)
- [Ahsan Khan](https://ahsankhan.me)
- [Aishani Pachauri](https://aishanipach.netlify.app)
- [Ajay Kannan](https://ajaykannan.netlify.app)
- [Ajink Gupta](https://ajinkgupta.vercel.app)
- [Akash Pawara](https://akashpawara.com)
- [Akash Rajpurohit](https://akashrajpurohit.com/)
- [Akash Rajpurohit](https://akashrajpurohit.com)
- [Akshat Gupta](https://www.akshatvg.com)
- [Alejandro Gomez](https://alejandro-gomez.vercel.app/)
- [Alejandro Sobko](http://alejandrosobko.com)
- [Alestor Aldous](http://alestor123.github.io/)
- [Alex Michailidis](https://alexandros.tech/)
- [Alexander Schmidt](https://alexanderschmidt.info/)
- [Alestor Aldous](http://alestor123.github.io)
- [Alex Michailidis](https://alexandros.tech)
- [Alexander Schmidt](https://alexanderschmidt.info)
- [Alexandre Santos](https://alexandresantosal91.github.io)
- [Alexey Golub](http://tyrrrz.me)
- [Alfred Dagenais](https://alfreddagenais.com)
- [Ali Spittel](http://alispit.tel)
- [Allan Muturi](https://allanmuturi.vercel.app/)
- [Aloys Dillar](https://trolologuy.github.io/)
- [Allan Muturi](https://allanmuturi.vercel.app)
- [Aloys Dillar](https://trolologuy.github.io)
- [Aman Anku](http://amananku26.github.io)
- [Aman Mittal](http://amanhimself.dev)
- [Aman Shrivastava](https://aman04.netlify.app/)
- [Aman Shrivastava](https://aman04.netlify.app)
- [Amogh Telkar](https://amoghtelkar.com)
- [Amir Akbulut](https://amirdev.nl)
- [Amédée Dera](https://a-dera.com)
- [Amresh Prasad Sinha](https://amreshsinha.vercel.app/)
- [Amruth Pillai](https://amruthpillai.com)
- [Anandhu Sajan](https://anandhusajan.com)
- [Anas Boubechra](https://cschad.com)
- [Andreas Beuger](https://beuger.dev)
- [Andrej Sharapov](https://sharapov.dev)
- [Andrew Woods](https://andrewwoods.net)
- [Andrianarisoa Daniel](https://www.devist.xyz)
- [Andy Bell](https://andy-bell.design/)
- [Andrii Zontov](https://lwjerri.dev)
- [Andy Bell](https://andy-bell.design)
- [Angel Martinez](https://angelmtz.dev)
- [Anik Ahammed Khan](https://anikahammedkhan.com)
- [Aniket Kudale](https://aniket.co)
- [Anil Khatri](https://imkaka.github.io)
- [Anshu Raj](https://anshuraj.github.io/)
- [Anshuman Verma](https://anshumanv.dev/)
- [Antonio Ferreiro](https://toniferr.github.io/)
- [Ankush Minda](http://ankushminda.com)
- [Anshul Gora](https://anshulwork.netlify.app/)
- [Anshul Soni](https://anshulsoni.in/)
- [Anshuman Verma](https://anshumanv.dev)
- [Antonio Ferreiro](https://toniferr.github.io)
- [Antony Jude Shaman](https://antonyjudeshaman.vercel.app)
- [Anurag Affection](https://anuragaffection.vercel.app)
- [Anurag Hazra](https://anuraghazra.github.io)
- [Ariel Andrade](https://sudoariel.github.io/)
- [Ariel Chura](https://arielchura.com)
- [Ariel Andrade](https://sudoariel.github.io)
- [Arpit Sharma](https://yesarpit.github.io)
- [Arsalan Shakil](https://arsalanshakil.github.io/)
- [Arsalan Shakil](https://arsalanshakil.github.io)
- [Arsh Sahzad](https://www.arsh.dev)
- [Arup Mandal](https://arupmandal.github.io)
- [Ashish Mehra](https://ashishmehra.dev)
- [Ashkan Misaghi](https://ashkanmisaghi.ir)
- [Ashlee Boyer](http://ashleemboyer.dev)
- [Ashwin Hariharan](https://ashwinhariharan.tech)
- [Aster Bandis](https://bandisast.eu)
- [Aster Li](https://asterjuneli.com)
- [Atanas Atanasov](https://atanas.info)
- [Austin Gericke](https://www.austingericke.com/)
- [Atul Kumar Awasthi](https://atultheportfolio.netlify.app)
- [Auroob Ahmad](https://auroob.github.io/dev-port/)
- [Austin Gericke](https://www.austingericke.com)
- [Austin Pham](https://auspham.dev)
- [Aycan Öğüt](https://aycan.dev)
- [Avnish Kumar](https://theavnishkumar.in)
- [Ayush Nighoskar](https://ayushn.netlify.app)
- [Azhar Zafar](http://azharr.com)
- [Arup Mandal](https://arupmandal.github.io/)
## B
- [Bakare Afolabi](http://afolabibakare.netlify.app)
- [Bankole Ahmed](http://bankoleahmed.netlify.com)
- [Barrack Amuyunzu](https://amuyunzubarrac.club/)
- [Baptiste Miramont](https://baptistemiramont.fr)
- [Becca Bailey](http://Becca.is)
- [Bekah Hawrot Weigel](http://bekahhw.github.io)
- [Benjamin Lannon](https://lannonbr.com)
- [Ben Rogers](https://benrogers.dev)
- [Berat Bozkurt](https://beratbozkurt.net/)
- [Bertil Tandayamo](https://www.bertiltandayamo.me/)
- [Berat Bozkurt](https://beratbozkurt.net)
- [Bertil Tandayamo](https://www.bertiltandayamo.me)
- [Bhagawat Adhikari](https://github.com/bhagawatadhikari)
- [Bharat Bhandari](https://bharatdev.vercel.app/)
- [Bhavani Ravi](http://bhavaniravi.com)
- [Bhavya Tomar](https://bhavya.dev)
- [Bhushan Borole](https://bhushan-borole.github.io/)
- [Bhupendra Singh](https://bhupi2508.netlify.app)
- [Bhushan Borole](https://bhushan-borole.github.io)
- [Bipin M V](https://bipinmv.netlify.app)
- [Bob Matyas](https://www.bobmatyas.com)
- [Bohdan Khvorostovskyi](https://khvorostovskyi.com)
- [Boris Edison](https://borisedison.in/)
- [Boris Edison](https://borisedison.in)
- [Bouwe Westerdijk](https://bouwe.io)
- [Bowang Lan](https://bowanglan.dev)
- [Brad Garropy](https://bradgarropy.com)
- [Brendan Lentz](https://brendanlentz.com)
- [Brittany Chiang](https://brittanychiang.com)
- [Bryan Smith](https://multikitty.onrender.com)
## C
- [Cade Kynaston](https://cade.codes)
- [Caitlyn Greffly](https://caitlyngreffly.com/)
- [Caitlyn Greffly](https://caitlyngreffly.com)
- [Casper Iversen](https://caspertheghost.me)
- [Cecelia Martinez](http://ceceliacreates.com)
- [Charles C. Pustejovsky III](https://cpustejovsky.com/)
- [Chambrin Alexandre](https://chambrin.dev/)
- [Charles C. Pustejovsky III](https://cpustejovsky.com)
- [Chee Hwa Tang](https://cheehwatang.com)
- [Chetan Padia](https://chetbox.com)
- [Chetan Raj](https://chetanraj.in/)
- [Chetan Raj](https://chetanraj.in)
- [Chetanya Kandhari](https://availchet.github.io)
- [Chicago IT Systems](https://www.chicagoitsystems.com/)
- [Chethin Manage](https://www.cmanage.dev)
- [Chicago IT Systems](https://www.chicagoitsystems.com)
- [Chirag Bhalotia](https://chirag.codes)
- [Chirag Samal](http://chiragsamal.github.io/)
- [Chris Otto](https://chrisotto.dev/)
- [Chirag Samal](http://chiragsamal.github.io)
- [Chris Otto](https://chrisotto.dev)
- [Chris Poole](https://chrispoole.com)
- [Christian Kaisermann](https://kaisermann.me)
- [Christian Toscano](https://achris.me)
- [Chuck Smith](https://chucksmith.dev)
- [Chuck Smith](https://eclecticcoding.com)
- [Chuckz Okoye](https://chuckzokoye.com)
- [Clyde D'Souza](https://clydedsouza.net)
- [Cole Emeruche](https://coleruche.com/works/)
- [Colin Lord](https://colinlord.com/)
- [Cole Emeruche](https://coleruche.com)
- [Colin Lord](https://colinlord.com)
- [Collins Koech](https://collinskoechportfolio.web.app)
- [Cristian Cezar Moisés](https://live-one.vercel.app)
- [Cristiano Filho](https://cristianofilho.github.io/)
- [Cui Ding](https://cuierd.github.io/)
- [Cristiano Filho](https://cristianofilho.github.io)
- [Cristian Cezar Moisés](https://ccm.securityops.com.br)
- [Cui Ding](https://cuierd.github.io)
## D
- [Dale French](https://dalefrench.dev/)
- [Dale Larroder](https://dalelarroder.com/)
- [Dale French](https://dalefrench.dev)
- [Dale Larroder](https://dalelarroder.com)
- [Damian Markowski](https://damianmarkowski.com)
- [Dania Al-Hakim](https://pixeldania.netlify.app/)
- [Daniel Alberski](https://danielalberski.redark.pl/)
- [Daniel Castro](https://rwxdan.dev/)
- [Danilo Batson](https://danilobatson.github.io/portfolio/)
- [Danilo Castro](https://www.welcomedeveloper.com/)
- [Danstan Onyango](https://zemuldo.com/)
- [Daniel Michael](https://www.daniel-michael.com/)
- [Darshan Joshi](https://darshanjoshi-portfolio.hostman.site/)
- [Dania Al-Hakim](https://pixeldania.netlify.app)
- [Daniel Alberski](https://danielalberski.redark.pl)
- [Daniel Grazziotti](https://grazziotti-portfolio.vercel.app)
- [Danilo Batson](https://danilobatson.github.io/portfolio)
- [Danilo Castro](https://www.welcomedeveloper.com)
- [Daniel Michael](https://www.daniel-michael.com)
- [David Clarke](https://david-clarke.com)
- [Davide Santangelo](https://davidesantangelo.com)
- [Davi Lacerda](https://davilacerda.tech)
- [Deepraj Rakshit](http://deeprajrakshit.me/)
- [Debasish Dutta](https://debasishdutta.is-a.dev/)
- [Deepraj Rakshit](http://deeprajrakshit.me)
- [Denis Tokarev](https://devlato.com)
- [Derryk Theberge](https://dtheberge.com/)
- [Delba](https://delba.dev/)
- [Dhanush Nehru](https://whatsapp-portfolio-dhanushnehru.netlify.app/)
- [Dheeraj Gupta](https://dheerajgupta.netlify.app/#/)
- [Delba](https://delba.dev)
- [Dev](https://devpalwar.vercel.app)
- [Dev Khandelwal](https://slyro.vercel.app)
- [Dhaval Patel](https://dhavalcode.com)
- [Dheeraj Gupta](https://dheerajgupta.netlify.app/#)
- [Dhiraj Basavaraju](https://portfolio-dhirajb7.vercel.app)
- [Dhruva Bhat S N](https://dhruvabhat.netlify.app/)
- [Dick Wyn Yong](https://dickwyn.xyz)
- [Dillion Megida](http://dillionmegida.com/)
- [Dimitri Pashutskii](https://dpashutskii.com/)
- [Dina TAKLIT](https://dinataklit.github.io/DinaTaklitPortfolio/)
- [Dino Gomez](https://dinogomez.github.io/)
- [Drew Bredvick](https://drew.tech/)
- [Durgesh Chaudhary](https://yodkwtf.com/)
- [Dillion Megida](http://dillionmegida.com)
- [Dimitri Pashutskii](https://dpashutskii.com)
- [Dina TAKLIT](https://dinataklit.github.io/DinaTaklitPortfolio)
- [Dino Gomez](https://dinogomez.vercel.app/)
- [Drew Bredvick](https://drew.tech)
- [Durgesh Chaudhary](https://yodkwtf.com)
- [Dzmitry Drepin](https://linktr.ee/drepin)
## E
- [Eduard-Constantin Ibinceanu](https://eduardconstantin.github.io)
- [Eduard Yudinkov](https://yudinkov.dev)
- [Eduardo Vaz](https://eduardovaz.dev)
- [Ehsan Rafee](https://ehsanrafee.ir)
- [Elio Jordan Lopes](https://developer.vercel.app)
- [Elmo Nickol](https://elmonickcool.vercel.app)
- [Emmanuel ADEKPLOVI](https://homescriptone.com)
- [Enea Xharja](https://eneaxharja.com)
- [Ephraim Atta-Duncan](https://astrosaurus.me)
- [Erdal TAŞKESEN](https://www.erdaltaskesen.com)
- [Evander Inácio](https://evander.vercel.app/)
- [Evil Rabbit](https://evilrabb.it/)
- [Erik Henrique Alves Cunha](https://www.indianboy.com.br)
- [Evander Inácio](https://evander.vercel.app)
- [Evil Rabbit](https://evilrabb.it)
- [Ezekiel Ekunola](https://ezekielekunola.com)
## F
- [Faisal Ahmed Khan](https://FaisalAhmedKhan.github.io/)
- [Fayaz Bin Salam](https://p32929.github.io/)
- [Fayaz Bin Salam](https://p32929.github.io)
- [Felix Leupold](https://xiel.dev)
- [Felix Tellmann](https://flext.dev)
- [Fernando Júnior](https://fernaandojr.github.io/)
- [Fidalgo Pedro](http://fidalgo.dev)
- [Filippo Concato](https://concatofilippo.com)
- [Flavia Medici](https://t.co/iQK1Hbx8xD?amp=1)
- [Frances Coronel](https://francescoronel.com)
- [Franklin Castellanos](https://onecastell.github.io)
- [Franklin Huichi Contreras](https://franh20.github.io/)
- [Franklin Huichi Contreras](https://franh20.github.io)
- [Franklin Ohaegbulam](https://frankiefab.netlify.app)
- [Furkan Cengiz](https://furki.vercel.app)
## G
- [Gabriel Romualdo](https://xtrp.io/) ([@xtrp](https://github.com/xtrp))
- [Gabriel Sozinho](https://gabrielsozinho.ga)
- [Gabriel Tekombo](https://gabrielthecode.com/)
- [Gabriele Corti](https://borntofrappe.github.io/)
- [Ganesh Patil](https://hardikjain.netlify.app/)
- [Garv Nanwani](https://garvnanwani.netlify.app/)
- [Genesis Gabiola](https://genesisgabiola.now.sh/)
- [Georges Atalla](https://www.georgesatalla.com/)
- [George Christeas](https://chr-ge.com/)
- [Gabriel López](https://glpzzz.dev)
- [Gabriel Machado](https://machado001.github.io) ([@machado001](https://github.com/machado001))
- [Gabriel Tekombo](https://gabrielthecode.com)
- [Gabriele Corti](https://borntofrappe.github.io)
- [Ganesh Patil](https://hardikjain.netlify.app)
- [Garv Nanwani](https://garvnanwani.netlify.app)
- [Gaspare Tortora](https://gaspavar.dev)
- [Genesis Gabiola](https://genesisgabiola.now.sh)
- [Georges Atalla](https://www.georgesatalla.com)
- [George Christeas](https://chr-ge.com)
- [George Fincher](https://www.grimfunky.dev)
- [Georgi Yanev](https://gyanev.com)
- [Gherciu Gheorghe](https://gherciu.github.io/portfolio/)
- [Ghulam Ahmed](https://gahmed.com)
- [Gianluca Fiore](http://gianlucafiore.it)
- [Gift Egwuenu](https://giftegwuenu.com)
- [Gianluca Galota](https://gianlucagalota.dev)
- [Giorgio Faini](https://giorgiofaini.com/)
- [Grace Snow](https://gracesnowdesign.co.uk)
- [Godswill Umukoro](https://godswillumukoro.com/)
- [Goh Jun Xiang](https://gohjunx.github.io/GohJunXiang.github.io/)
- [Goh You Sheng](https://shenggg2000.github.io/portfolio/)
- [Grégoire Launay--Bécue](https://linv.dev) ([@Linventif](https://github.com/linventif))
- [Goh Jun Xiang](https://gohjunx.github.io/GohJunXiang.github.io)
- [Goh You Sheng](https://shenggg2000.github.io/portfolio)
## H
- [Hafid Ziti](https://www.hafidziti.dev/)
- [Halit İslam İçli](https://halid.dev/)
- [Hafid Ziti](https://www.hafidziti.dev)
- [Hamza Ehsan](https://www.hamzaehsan.com)
- [Hanzla Tauqeer](https://github.com/1hanzla100/developer-portfolio)
- [Harlon Garcia](https://harlon.netlify.app)
- [Hari Prasad](https://hariprasd.me)
- [Harsh Goel](https://harshgoel.me)
- [Harijaona Ravelondrina](http://www.bigjohn.dev)
- [Harsh Singhvi](https://harshsinghvi.com)
- [Harsh Singh](https://harshsingh.xyz/)
- [Hassan Ahmed](https://www.hassanahmed.net/)
- [Hasan Aydoğdu](https://haydogdu1990.github.io/resume-json-css)
- [Hashir Farooq](https://hashirfarooq.com)
- [Hassan Ahmed](https://www.hassanahmed.net)
- [Hassan Murtaza](https://hassanmurtaza.com)
- [Hatem Ahmad](https://codewithmenow.tech)
- [Hemsundar Paranthaman](https://hemdev.vercel.app)
- [Henry Lee](https://dragonwarrior.vercel.app)
- [Herman Starikov](http://starikov.dev)
- [Hoang Nguyen](https://hoangdesu.com)
- [Houari Zegai](https://zegai.netlify.com)
- [Hubert Kimani](https://hubertkimani.me)
- [Hungry Bear Studio](https://www.hungrybearstudios.com/)
- [Hussein Sarea](https://ho011.vercel.app/)
- [Huzaifa Mustafa](https://www.huzaifamustafa.com/)
- [Houari Zegai](https://zegai.netlify.com/)
- [Humanshu Jaglan](https://humanshu-jaglan.vercel.app)
- [Hungry Bear Studio](https://www.hungrybearstudios.com)
- [Hussein Sarea](https://ho011.vercel.app)
- [Huzaifa Mustafa](https://www.huzaifamustafa.com)
## I
- [Ibrahim Hizlioglu](https://www.ibrahimhizlioglu.com)
- [Ike Ofoegbu](https://iodev.io)
- [Indrajeet Nikam](https://indrajeet.me/)
- [Indrajeet Nikam](https://indrajeet.me)
- [Ingus Jansons](https://ingus.co.uk)
- [Ioan Manu](https://manuioan.com/)
- [Ishaan Sheikh](https://frikishaan.com)
- [Isitha Subasinghe](https://isub.dev)
- [Ismail Ghallou aka Smakosh](https://smakosh.com)
@ -247,40 +293,35 @@ Hopefully this repo can serve as a source of inspiration for your portfolio!
## J
- [Jack Childs](https://jackchilds.tech)
- [Jack Parsons](https://jackparsonss.me)
- [Jacob Herper](https://jacobherper.com/)
- [Jahidul Islam](https://xahidex.com)
- [Jacob Herper](https://jacobherper.com)
- [Jahir Fiquitiva](https://jahir.dev)
- [Jai Kirdatt](https://JaiK.me)
- [Jainam Desai](https://th3c0d3br34ker.github.io)
- [Jainex Patel](https://jainex.vercel.app/)
- [Jake Ginesin](https://jakegines.in/)
- [Jakob Rössner](https://roessner.tech)
- [Jainex Patel](https://jainex.vercel.app)
- [Jake Ginesin](https://jakegines.in)
- [Jam Moonbami](https://moonbamiofficial.vercel.app)
- [James Turner](http://turnerj.com)
- [Janessa Tran](http://janessatran.github.io)
- [Jatin Sharma](http://j471n.in/)
- [Jayant Goel](http://jayantgoel001.github.io/)
- [Jayant Parashar](https://jparasha.github.io/)
- [Jatin Sharma](http://j471n.in)
- [Jay Bhavsar](https://jay.is-savvy.dev)
- [Jayant Goel](http://jayantgoel001.github.io)
- [Jayant Parashar](https://jparasha.github.io)
- [Jayed Rafi](https://jayedrafi.com)
- [Jayvee Valenzuela](https://jayveepvalenzuela.github.io)
- [Jeff Chiu](https://jeffchiucp.github.io/portfolio)
- [Jens van Wijhe](https://jens.ai)
- [Jens van Wijhe](https://www.beterbekend.nl)
- [Jeremy Erik Leong](https://www.jeremyerikleong.com)
- [Jeremy Grifski](https://jeremygrifski.com/)
- [Jerry Hirsch](https://jerryhirsch.com/)
- [Jeremy Grifski](https://jeremygrifski.com)
- [Jerry Hirsch](https://jerryhirsch.com)
- [Jim Raptis](http://www.raptis.wtf)
- [Jo Lienhoop](https://jolienhoop.com/)
- [John Carlo Camara](https://jiseeeh.vercel.app/)
- [John Doe](https://portfolio-john2.netlify.app/)
- [Jin Jheng Rong](https://jinrup.vercel.app/)
- [Jo Lienhoop](https://jolienhoop.com)
- [John Carlo Camara](https://jiseeeh.vercel.app)
- [John Doe](https://portfolio-john2.netlify.app)
- [Jonathan Kila](https://jonathankila.vercel.app)
- [Jordi Espinoza Mendoza](https://www.itsmejordi.live/#/)
- [Josef Aidt](https://josefaidt.dev)
- [Joseph Friedman](http://DecentGradient.com)
- [Joseph Palma](https://josephpalma.dev)
- [Joshua Chinwendu](http://joshualine.github.io)
- [Joshua Izuchukwu](https://joshuaizu.vercel.app)
- [Jubin Ayoob](https://web-portfolio-jubin369.vercel.app/)
- [Jubin Ayoob](https://web-portfolio-jubin369.vercel.app)
- [Julia Johnson](http://juliacodes.com)
## K
@ -288,255 +329,326 @@ Hopefully this repo can serve as a source of inspiration for your portfolio!
- [Kaleigh Scruggs](http://kaleighscruggs.com)
- [Kamran Hamid](https://mkamranhamid.netlify.com)
- [Karen Fletcher](https://knpfletcher.dev)
- [Karthik Menon](https://www.karthikmenon.com/)
- [Karthik Menon](https://www.karthikmenon.com)
- [Katleho Mokhele](https://mokhele.pythonanywhere.com)
- [Katie Amberg-Johnson](https://kambergjohnson.com) (made with [TechFolios](https://techfolios.github.io))
- [Kaustubh Dwivedi](https://portfolio-onlykingkd.vercel.app/)
- [Kaustubhai](https://kaustubhai.netlify.app/)
- [Kaustubhai](https://kaustubhai.netlify.app)
- [Keith Lau](https://keithlau2015.github.io/portfolio)
- [Kelven Rubalaine](https://kelven.dev)
- [Kenta Yamamoto](https://ychof.com)
- [Khaled Ahmed](https://khaled.is-a.dev)
- [Kidus Bewket](https://kidus.ca)
- [KIRAN KUMAR](https://ikiran-dev.github.io/)
- [Kiran Naragund](https://kiran1689.github.io)
- [Kyaw Zin Thiha](https://www.kyawzinthiha.dev/)
- [Kyle Shook](http://Kyleshook.com)
- [Kyle Smith](https://yskkyle.com)
## L
- [Lakshan Rukantha](https://lakshanrukantha.github.io)
- [Lars Roettig](https://larsroettig.dev)
- [Laurie Barth](http://laurieontech.dev)
- [Leandro Simões](https://lesimoes.dev)
- [Leonardo Oliveira](https://leonardoliveira.com)
- [Lee Warrick](http://leewarrick.com)
- [Lee Robinson](https://leerob.io/)
- [Lee Robinson](https://leerob.io)
- [Leroy Rosales](https://leroyrosales.com)
- [Leonel Ngoya](https://lndev.me)
- [Liplan Lekipising](https://lekipising.tech/)
- [Lindsey Howard](https://lindseyk.dev)
- [Liplan Lekipising](https://lekipising.com)
- [Lisa Blunt](https://lisablunt.github.io)
- [Lisa Savoie](http://lscodes.com)
- [Liz Lam](https://lizlam.github.io/)
- [Long Do](https://longpdo.github.io/)
- [Louay Hamada](https://louayhamada.com)
- [Liz Lam](https://lizlam.github.io)
- [Long Do](https://longpdo.github.io)
- [LoveCodingWithAshu](https://lovecodingwithashu.tech)
- [Luca Lischetti](https://sirlisko.com)
- [Lucas Dantas](https://dantsdev.vercel.app/)
- [Luis Cacho](https://luiscachog.io)
- [Luisa Rojas García](https://luisarojas.com)
## M
- [Madhan K](https://madhank93.github.io/)
- [Mads Hougesen](https://mhouge.dk/)
- [Madhan K](https://madhank93.github.io)
- [Mads Hougesen](https://mhouge.dk)
- [Maduakor Emmanuel](https://emmajs.vercel.app)
- [Mahmoud AlSharif](https://malsharif.me)
- [Malik Muhammad Safwan](https://maliksafwan.netlify.app/)
- [Malik Muhammad Safwan](https://maliksafwan.netlify.app)
- [Maram Sai Harsha Vardhan Reddy](https://maramsaiharsha.netlify.com)
- [Marc Backes](http://marc.dev)
- [Marcos Aguayo](https://marcosaguayo.com)
- [Marieflor Bawanan](https://marieflor.dev)
- [Marijan Smetko](https://msmetko.xyz)
- [Mario Kandut](https://www.mariokandut.com)
- [Markus Polzer](https://www.rapidtech1898.com/)
- [Marko Denic](https://markodenic.com)
- [Markus Polzer](https://www.rapidtech1898.com)
- [Marouane Rassili](https://mrassili.com)
- [Mason Slover](https://github.com/MasonSlover/ProcessingPortfolio)
- [Mateus Felipe G.](https://mateusf.com)
- [Matheus Manuel](https://matheusmanuel.netlify.com/)
- [Matheus Misumoto](https://matheusmisumoto.dev)
- [Matheus Victor] (https://matheusvictor.vercel.app)
- [MathisCool](https://mathiscool.is-a.dev)
- [Matt Filer](http://mattfiler.co.uk)
- [Matvey Kottsov](https://matvey.codes/)
- [Maverick](https://supacode.dev/)
- [Maxim Villivald](https://villivald.com/)
- [Maya Shavin](https://www.mayashavin.com/)
- [Mayank Agarwal](https://mayankagarwal.me/)
- [Mayank Aggarwal](https://mayank0255.github.io/)
- [Md Nabil Ahsan](https://www.mdnabilahsan.com/)
- [Md Usman Ansari](https://mdusmanansari.netlify.app/)
- [Matvey Kottsov](https://matvey.codes)
- [Maverick](https://supacode.dev)
- [Maxim Villivald](https://villivald.com)
- [Maya Shavin](https://www.mayashavin.com)
- [Mayank Aggarwal](https://mayank0255.github.io)
- [Md Emon Hossen](https://emonhossen.xyz)
- [Md Nabil Ahsan](https://www.mdnabilahsan.com)
- [Md Usman Ansari](https://mdusmanansari.netlify.app)
- [Melvin Jones Repol](https://mrepol742.github.io)
- [Melvyn Malherbe](https://melvynx.com)
- [Mertcan Kose](https://mertcankose.vercel.app)
- [Michael Hoffmann (Mokkapps)](https://mokkapps.de/)
- [Michael Hoffmann (Mokkapps)](https://mokkapps.de)
- [Michelle Brenner](https://michellebrenner.com)
- [Miguel Lerma](https://mler.dev)
- [Miguel Rodriguez](https://migu.es)
- [Mimi Kim](https://seeyouspacecow.com)
- [Mitul Savani](http://mitulsavani.com)
- [Mohamad Fadhil Yaacob](https://fadhil-blog.dev/)
- [Mohamad Fadhil Yaacob](https://fadhil-blog.dev)
- [Mohammad Rahmani](https://afgprogrammer.com)
- [Mohan Raj](https://zolomohan.com)
- [Moritz Kornher](https://moritzkornher.de/)
- [Mostafa Abdelhamid](https://mostafa-abdelhamid.com/)
- [Mostafa Sameti](https://sameti.dev/)
- [Moustapha Mahmoud](https://moustapha.me)
- [Mouad ZIANI](https://mouadziani.github.io/)
- [Muhammad Abdullah](https://mabdullahse.com)
- [Mohamed Zhioua](https://mohamedzhioua.vercel.app)
- [Mohammed-Yousuf Hamid](https://mohammedcodes.dev)
- [Morelen Yim](https://morelenyim.com)
- [Moritz Kornher](https://moritzkornher.de)
- [Mostafa Abdelhamid](https://mostafa-abdelhamid.com)
- [Mouad ZIANI](https://mouadziani.github.io)
- [Mugunth Perumal](https://mugunth.tech/)
- [Muhammad Muhaddis](https://muhaddis.info)
- [Muhammad Rashid](https://iamrashy.netlify.app)
- [Muhammad Saad Siddique](https://saad-muhammadsaadsiddique.vercel.app/)
- [Mukul Chugh](https://mukulchugh.com)
- [Muntadhar Haydar](https://muntadhar.net)
- [Musaddiq Ashfaq](https://musaddiq-ashfaq.github.io/Portfolio)
- [Mustafa Bhikhapurwala](https://mustafadev.me)
- [Mustapha Nkhili](https://mustapha-nkhili.web.app/)
- [Muzaffer Kadir YILMAZ](https://mkdir.dev/)
## N
- [Nacho Caiafa](https://nachokai.github.io/rpg-cv)
- [Nahid Hasan](https://mdnahidhasan.netlify.app)
- [Nathan Simpson](https://nathansimpson.design)
- [Naveed Ahmed](https://www.trixum.net/)
- [Nawrasse Dahman](https://www.nawrassedahman.tk/)
- [Nazia Shehnaz Joynab](https://geek-a-byte.github.io/)
- [Nesrine Sghaier](https://nesrinesghaier.me)
- [Nhlanhla Hasane](https://nhlanhlahasane.netlify.app/)
- [Naveed Ahmed](https://www.trixum.net)
- [Nazia Shehnaz Joynab](https://geek-a-byte.github.io)
- [Neelanjan Chakraborty](https://neelanjan-chakraborty.github.io)
- [Nhlanhla Hasane](https://nhlanhlahasane.netlify.app)
- [Nico Bachner](https://nicobachner.com)
- [Nico van Zyl](https://nicovanzyl.com)
- [Nicolo Rebughini](https://nirebu.com/)
- [Nikita Sobolev](https://sobolevn.me/)
- [Nipun Jain](https://lucifernipun22.github.io/)
- [Nicolo Rebughini](https://nirebu.com)
- [Nikita Rusetskii](https://xtenzq.github.io)
- [Nikita Sobolev](https://sobolevn.me)
- [Nilkanth Patadiya](https://nilkanthpatadiya.vercel.app/)
- [Nipun Jain](https://lucifernipun22.github.io)
- [Nisarg Patel](https://nisarg.io)
- [Nischal Dutt](https://nischaldutt.netlify.app/)
- [Nischal Dutt](https://nischaldutt.netlify.app)
- [Nishant Banjade](https://nishantbanjade.com.np)
- [Nitesh Seram](https://niteshseram.in)
- [Nuwan Jaliyagoda](http://nuwanjaliyagoda.com/)
- [Nuwan Jaliyagoda](http://nuwanjaliyagoda.com)
## O
- [Oktay Shakirov](https://oktayshakirov.com)
- [Olaolu Olawuyi](https://olaolu.dev)
- [Omar Gastón Chalas](https://ogaston.com/)
- [Omar Moquete](https://om-sp.netlify.app/)
- [OOQQ](https://ooqq.me)
- [Om](https://omchaudhari1107.github.io/)
- [Omar Gastón Chalas](https://ogaston.com)
- [Omari Thompson-Edwards](https://omarileon.me)
- [Omargpax](https://omargpax.pages.dev)
- [Opeyemi Obembe](http://obem.be/opeyemi)
- [Oraz Gulchayew](https://orazgulcayew.vercel.app)
- [Oscar Tian](http://www.bluexguardian.com)
- [Oussama Bouchikhi](https://oussamabouchikhi.github.io/)
- [Oussama Bonnor](https://oussamabonnor1.github.io/portfolio/)
- [Oussama Bouchikhi](https://oussamabouchikhi.github.io)
- [Oussama Bonnor](https://oussamabonnor1.github.io/portfolio)
## P
- [Paal Stakvik](https://paalss.vercel.app/)
- [Pandiyan Murugan](https://pandiyancool.github.io/pandiyan.cool/)
- [Pankaj Gaikar](https://pankajgaikar.com/)
- [Patricia Aas](https://patricia.no/)
- [Patrick Hyatt](https://www.patrickhyatt.com/)
- [Patrick Lehmann](https://patlehmann1.github.io/react_portfolio/)
- [Patrick Obermeier](https://www.patrickobermeier.at/)
- [Paal Stakvik](https://paalss.vercel.app)
- [Pandiyan Murugan](https://pandiyancool.github.io/pandiyan.cool)
- [Panhareach Phat](https://phatpanhareach.vercel.app/)
- [Panhabot Bot](https://panhabot.com/)
- [Pankaj Gaikar](https://pankajgaikar.com)
- [Patricia Aas](https://patricia.no)
- [Patrick Hyatt](https://www.patrickhyatt.com)
- [Patrick Lehmann](https://patlehmann1.github.io/react_portfolio)
- [Patrick Obermeier](https://www.patrickobermeier.at)
- [Patrick Reid](http://iamreliq.com)
- [Pan Wei Lian](https://williamson922.github.io/)
- [Pawaret Meungkaew](https://www.pawaret.dev/)
- [Pazindu Shane](https://pazindushane.github.io/)
- [Pan Wei Lian](https://williamson922.github.io)
- [Pawaret Meungkaew](https://www.pawaret.dev)
- [Pazindu Shane](https://pazindushane.github.io)
- [Pedro Reis](https://preis.tech)
- [Peter Gallwas](https://peter.husky.nz)
- [Philip Johnson](https://philipmjohnson.org) (made with [TechFolios](https://techfolios.github.io))
- [Philipe Almeida](https://palmeida.netlify.app)
- [Pieter-Jan Scheir](https://www.pieterjanscheir.com)
- [Poonam Chauhan](https://poo17nam.github.io/profile)
- [Pramesh Karki](https://karkipramesh.com.np/)
- [Praveen Kumar Purushothaman](https://praveen.science/)
- [Praveen Saini](https://praveen-me.github.io)
- [Priya Nayak](https://priya180975.github.io/portfolio/)
- [Pushpak Chhajed](https://pushpak1300.github.io/)
- [Pramesh Karki](https://karkipramesh.com.np)
- [Pranshu Patel](https://pranshu05.vercel.app)
- [Pratham Agrawal](https://pratham2002.github.io/)
- [Praveen Kumar Purushothaman](https://praveen.science)
- [Preet Suthar](https://preetsuthar.me)
- [Prince Muhammad](https://princemuhammad.pro)
- [Priya Nayak](https://priya180975.github.io/portfolio)
- [Pushkar Patel](https://thepushkarp.com/)
- [Pushpak Chhajed](https://pushpak1300.github.io)
## Q
- [Qui Nguyen](https://www.lexnguyen.dev/)
## R
- [Rabin Poudyal](https://rabinpoudyal.com.np/)
- [Rafael Salazar](https://rafalazar.github.io/)
- [Rakibul Islam](https://rakibul-islam-hasib.web.app)
- [Rabin Poudyal](https://rabinpoudyal.com.np)
- [Rafael Salazar](https://rafalazar.github.io)
- [Rafael Santana](https://www.rafaelsantana.dev/)
- [Rahul Mahesh](https://rahulmahesh.netlify.com)
- [Rahul Kumar](https://rahulbaran.vercel.app)
- [Rahul Sawant](http://raalzz.com)
- [Raj Aryan](https://rajxryan.vercel.app)
- [Rajan Bhattarai](https://cdrrazan.com)
- [Rajekevin](https://rajekevin.fr)
- [Rakib Sarowar](https://rakibsarowar.com)
- [Ralf D. Müller](https://fiveandahalfstars.ninja/rdmueller.html)
- [Rick Hanlon](https://rickhanlonii.github.io/)
- [Ramesh Kumar](https://rameskum.com)
- [Rick Hanlon](https://rickhanlonii.github.io)
- [Rifat Ishtiyak](https://rifat-ishtiyak.web.app)
- [Riley J. Shaw](https://rileyjshaw.com)
- [Rimenes Ribeiro](https://rimenesribeiro.com)
- [Rishabh Rawat](https://rrawat.com)
- [Roberto Andrade](https://robertandradejr.dev/)
- [Rodrigo Kamada](https://rodrigo.kamada.com.br/)
- [Rohit Jain](https://kingtechnologies.in/)
- [Rohith V](http://rohithvazhathody.pythonanywhere.com/)
- [Rohit Kushwaha](https://rohitk06.vercel.app)
- [Rohit Wadhwa](https://github.com/rohit-wadhwa)
- [Roland L. Taylor](http://rolandixor.pro)
- [Roman Smunyov](https://romanisthere.github.io/)
- [Ronny Coste](https://ronnycoste.com/)
- [Roman Smunyov](https://romanisthere.github.io)
- [Ronny Coste](https://ronnycoste.com)
- [Roshan Kr Soni](https://roshankrsoni.github.io)
- [Roxza](https://roxza.me)
- [Rutik Kulkarni] (https://rutik-kulkarni.web.app)
- [Ryan Burgess](http://ryanburgess.com)
- [Ryan MacLean](http://ryanmaclean.com)
## S
- [Sagar Mude](https://sagarmude.netlify.app/)
- [Sachin Srinivasan](https://s8sachin.github.io/)
- [Sagar Giri](https://girisagar46.github.io/)
- [Sagar Khurana](https://hellosagar.vercel.app/)
- [Sajal Sharma](https://sajalsharma.com)
- [Samik Malhotra](https://samikmalhotra.netlify.app/)
- [Saahil D](https://saahild.com)
- [Sachin Srinivasan](https://s8sachin.github.io)
- [Safoor Safdar](https://safoorsafdar.com)
- [Sagar Giri](https://girisagar46.github.io)
- [Sagar Khurana](https://hellosagar.vercel.app)
- [Sagar Mude](https://sagarmude.netlify.app)
- [Said Kharboutli](https://saidk.io)
- [Saif Ur Rehman](https://saifwebdev.netlify.app/)
- [Salman Ibrahim](https://salman-ibrahim.github.io)
- [Samarth Kadam](https://samarthkadam.vercel.app/)
- [Samik Malhotra](https://samikmalhotra.netlify.app)
- [Samrat Mitra](https://lionelsamrat10.github.io)
- [Sanee Itas](https://saneeitas.netlify.app)
- [Santosh Yadav](http://santoshyadav.dev)
- [Sanyam Kumar](https://sanyam.dev/)
- [Sanyam Kumar](https://sanyam.dev)
- [Sarang N](https://srng.dev)
- [Sai Teja](https://saiteja13427.github.io/)
- [Satish Jhanwer](https://satishjhanwer.github.io/) ([@satishjhanwer](https://github.com/satishjhanwer))
- [Saurabh Daware](https://www.saurabhdaware.in/)
- [Sarvesh Patil](https://sarveshpatil.com)
- [Sai Sudheer Dontha](https://github.com/saisudhir14)
- [Sai Teja](https://saiteja13427.github.io)
- [Satish Jhanwer](https://satishjhanwer.github.io) ([@satishjhanwer](https://github.com/satishjhanwer))
- [Satyam Gupta](https://imlolman.github.io) ([@imlolman](https://github.com/imlolman))
- [Saurabh Daware](https://www.saurabhdaware.in)
- [Saurav M H](https://sauravmh.com)
- [Sauvik Nath](https://sauviknath.com)
- [Schleidens Dev](https://schleidens.netlify.app)
- [Scott Spence](https://scottspence.com)
- [Sebastien Graf](https://seb-graf.com)
- [Sergei Chestakov](https://sergei.com)
- [Seth Hall](https://sethhallcreative.com)
- [Shaan Khan](https://www.shaankhan.dev/)
- [Seunghun Bang](https://seunghun-website.vercel.app)
- [Shaan Khan](https://www.shaankhan.dev)
- [Shahid Shaikh](http://shahidshaikh.com)
- [Shannon Crabill](http://shannoncrabill.com)
- [Shivam Kaushal](https://shivamkaushal.in)
- [Shubham Tarade](https://coder-shanks.github.io/)
- [Shashank Kumar Chaudhary](https://my-portfolio-shashank-crypto.vercel.app)
- [Shivam Nirwani](https://shivamnirwani.com)
- [Shivam Raj](https://shivxmr.netlify.app)
- [Shivram Sambhus](https://shivi.io)
- [Shubham Tarade](https://coder-shanks.github.io)
- [Shuvam Manna](http://shuvam.xyz)
- [Silas Rodrigues](https://silasrodrigues.vercel.app)
- [Simon Knott](https://simonknott.de)
- [Sivaramakrishnan](https://portfoliov2-lovat-ten.vercel.app/)
- [Sneha Ratnani](https://www.sneharatnani.com)
- [Soham Mondal](https://sohammondal.com)
- [Sonu kumar kushwaha](https://flyingsonu122.github.io/)
- [Sourabh Kothari](https://sourabhkothari.vercel.app)
- [Sourav Dutta](http://i-am-souravdutta.firebaseapp.com)
- [Sree Godavarthi](http://sreegodavarthi.github.io)
- [Stefan Bohacek](https://fourtonfish.com/)
- [Suhail Roushan](https://suhailroushan.com)
- [Sumit Nalavade](https://sumitnalavade.vercel.app/)
- [Stefan Bohacek](https://fourtonfish.com)
- [Sumonta Saha Mridul](https://sumonta056.github.io/)
- [Syed Muhammad Abdullah Ahsan](https://linktr.ee/abdullahahsan)
## T
- [Tanisha Gupta](https://tanishagupta1.github.io/Tanisha-Gupta-portfolio/)
- [Taranjeet Singh](https://taranjeet.co/)
- [Tanisha Gupta](https://tanishagupta1.github.io/Tanisha-Gupta-portfolio)
- [Taranjeet Singh](https://taranjeet.co)
- [Tejas Kumar](http://tej.as)
- [Tejaswi Chaudhari](https://tejaswichaudhari.me/)
- [Tejaswi Chaudhari](https://tejaswichaudhari.me)
- [Tek Kshetri](http://tekkshetri.com.np)
- [Tek Raj Joshi](https://t3kraj.netlify.app)
- [Tiago Hermano](https://tiagohermano.dev/)
- [Thomas David](https://thomas-david-portfolio.netlify.app)
- [Tiago Hermano](https://tiagohermano.dev)
- [Tiago Leite](https://www.tiagocreator.com/)
- [Tim Jones](https://timmoth.com)
- [Thea Choem](https://thea.juniorise.com)
- [Thea Mushambadze](https://highflyer910.github.io/)
- [Thea Mushambadze](https://highflyer910.github.io)
- [TheKaushikGoswami](https://thekaushikgoswami.github.io)
- [Torben Korb](https://www.digital-creative.de/)
- [Travis Fischer](https://transitivebullsh.it)
- [Tristan Chin](https://www.chintristan.io/)
## U
- [Uğur Atmaca](https://uguratmacacv.web.app/)
- [Utsav Devadiga](https://utsav-dev.netlify.app/)
- [Uday Lunawat](https://udaylunawat.github.io)
- [Udeet Mittal](https://www.udeet.codes)
- [Uğur Atmaca](https://uguratmacacv.web.app)
- [Utkarsh Maurya](https://utkarshs-terminal.netlify.app/)
- [Utsav Devadiga](https://utsav-dev.netlify.app)
- [Utsav Ghimire](https://www.utsavghimire.com.np)
## V
- [Vaibhav Jaiswal](https://vaibhavjaiswal.vercel.app/#/)
- [Vaibhav Jaiswal](https://vaibhavjaiswal.vercel.app/#)
- [Vaibhav Singh](http://vaibhavsingh97.com)
- [Vaibhav Vikas](https://vaibhavvikas.github.io/)
- [Vaidhyanathan S M](https://vaidhyanathansm.netlify.app/)
- [Valentine Elum](https://vahlcode.vercel.app)
- [Vaidhyanathan S M](https://vaidhyanathansm.netlify.app)
- [Varun Dey](https://varundey.me)
- [Varun Haldhar](https://imvarun.dev)
- [Vatsal Shah](https://vatsalshah.in)
- [Vedant Athavale](https://vedantathavale.webflow.io/)
- [Vedant Athavale](https://vedantathavale.webflow.io)
- [Vedant Milind Athavale](http://vedant-athavale.byethost31.com/portfolio.html?i=1)
- [Victor Aremu](http://bit.ly/victoraremu)
- [Vidushan Chooriyakumaran](https://vidu.sh/an)
- [Vikas Ukani](https://vikas-ukani.github.io/)
- [Vinay Somawat](https://vinaysomawat.github.io/)
- [Vijay Singh](https://itsvj.me)
- [Vijay Verma](https://vjy.me)
- [Vikas Ukani](https://vikas-ukani.github.io)
- [Vinay Somawat](https://vinaysomawat.github.io)
- [Vincent Milum Jr](http://darkain.com)
- [Vishwanath B](https://frozenhearth.vercel.app)
- [Vishwasa Navada K](https://vishwas.tech)
- [Vitalik Hakim](https://vitalikhakim.tech/)
- [Vitaliy Ivanov](https://vitaliy.vercel.app)
- [Vito Sartori](https://vito.io)
- [vm ](https://vmthedev.web.app)
## W
- [Wajahat Ali Abid](https://wajahataliabid.github.io/)
- [Wajahat Ali Abid](https://wajahataliabid.github.io)
- [Wilson Mun](https://rebrand.ly/wilsonmun)
- [William Thanh Long](https://long18.github.io/) ([@Long18](https://github.com/Long18))
## Y
- [Yash Johri](https://yash1200.github.io/)
- [Yashita Namdeo](https://yashitanamdeo.github.io/)
- [Yared Tekileselassie](https://yared.vercel.app/)
- [Yaroslav Lebedenko](https://portfolio-nailheart.vercel.app/)
- [Yash Datir](https://yashdatir.github.io/profile-os)
- [Yash Johri](https://yash1200.github.io)
- [Yash Suhagiya](https://yashsuhagiya.me)
- [Yashita Namdeo](https://yashitanamdeo.github.io)
- [Yassine Haimouch](https://gitcoder.vercel.app)
- [Yasmin Lopes](https://yasminlopes.netlify.app)
- [Yechiel Kalmenson](https://yechiel.me)
- [YiMing Han](https://yiminghan.com)
- [Yinka Adedire](https://yinka.codes)
- [Yosra Hashim](https://yhshi26.github.io/)
- [Yuji Sato](https://www.yujisatojr.com/)
- [Yuri Corredor](https://www.yuricorredor.tech/)
- [Yuri Faria](https://windows87.github.io/)
- [Yuri Faria](https://windows87.github.io)
- [Yusuf Yıldırım](https://www.yusufyildirim.dev/)
## Z
- [Zaur Sharifov](https://www.zaursharifov.com)
- [Ziyad](https://ziyadsk.github.io/portfolio-V2/)
- [Zonayed Ahmed](https://zonayed.me/)
- [ZHENG Robert](https://www.robert.hase-zheng.net)
- [Ziyad](https://ziyadsk.github.io/portfolio-V2)
- [Zonayed Ahmed](https://zonayed.me)

View File

@ -1,4 +0,0 @@
2021-08-09 11:30:53 info: XVBA Live Server extension is now active!
2021-08-09 11:30:53 debug: Start Watch Excel Export VBA Files
2021-08-09 11:30:54 debug: Start Run Macro Server
2021-08-09 11:33:52 debug: Close Watch Excel Export VBA Files