├── .github └── workflows │ └── link-checker.yml ├── .gitignore ├── .lycheeignore ├── .vs ├── VSWorkspaceState.json ├── developer-portfolios │ ├── FileContentIndex │ │ └── read.lock │ └── v17 │ │ └── .wsuo └── slnx.sqlite ├── CONTRIBUTING.md └── README.md /.github/workflows/link-checker.yml: -------------------------------------------------------------------------------- 1 | on: 2 | repository_dispatch: 3 | workflow_dispatch: 4 | schedule: 5 | - cron: "00 18 * * 0" 6 | name: Check markdown links 7 | jobs: 8 | linkChecker: 9 | runs-on: ubuntu-latest 10 | steps: 11 | - uses: actions/checkout@v3 12 | 13 | - name: Link Checker 14 | id: lychee 15 | uses: lycheeverse/lychee-action@v1.6.1 16 | with: 17 | args: README.md 18 | env: 19 | GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} 20 | 21 | - name: Create Issue From File 22 | if: env.lychee_exit_code != 0 23 | uses: peter-evans/create-issue-from-file@v4 24 | with: 25 | title: "[Bot] Broken Links Report" 26 | content-filepath: ./lychee/out.md 27 | labels: report 28 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | # Created by https://www.gitignore.io/api/linux,visualstudiocode,jetbrains+all,sublimetext,vim 3 | # Edit at https://www.gitignore.io/?templates=linux,visualstudiocode,jetbrains+all,sublimetext,vim 4 | 5 | .DS_Store 6 | 7 | ### JetBrains+all ### 8 | # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and WebStorm 9 | # Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839 10 | 11 | # User-specific stuff 12 | .idea/**/workspace.xml 13 | .idea/**/tasks.xml 14 | .idea/**/usage.statistics.xml 15 | .idea/**/dictionaries 16 | .idea/**/shelf 17 | 18 | # Generated files 19 | .idea/**/contentModel.xml 20 | 21 | # Sensitive or high-churn files 22 | .idea/**/dataSources/ 23 | .idea/**/dataSources.ids 24 | .idea/**/dataSources.local.xml 25 | .idea/**/sqlDataSources.xml 26 | .idea/**/dynamic.xml 27 | .idea/**/uiDesigner.xml 28 | .idea/**/dbnavigator.xml 29 | 30 | # Gradle 31 | .idea/**/gradle.xml 32 | .idea/**/libraries 33 | 34 | # Gradle and Maven with auto-import 35 | # When using Gradle or Maven with auto-import, you should exclude module files, 36 | # since they will be recreated, and may cause churn. Uncomment if using 37 | # auto-import. 38 | # .idea/modules.xml 39 | # .idea/*.iml 40 | # .idea/modules 41 | # *.iml 42 | # *.ipr 43 | 44 | # CMake 45 | cmake-build-*/ 46 | 47 | # Mongo Explorer plugin 48 | .idea/**/mongoSettings.xml 49 | 50 | # File-based project format 51 | *.iws 52 | 53 | # IntelliJ 54 | out/ 55 | 56 | # mpeltonen/sbt-idea plugin 57 | .idea_modules/ 58 | 59 | # JIRA plugin 60 | atlassian-ide-plugin.xml 61 | 62 | # Cursive Clojure plugin 63 | .idea/replstate.xml 64 | 65 | # Crashlytics plugin (for Android Studio and IntelliJ) 66 | com_crashlytics_export_strings.xml 67 | crashlytics.properties 68 | crashlytics-build.properties 69 | fabric.properties 70 | 71 | # Editor-based Rest Client 72 | .idea/httpRequests 73 | 74 | # Android studio 3.1+ serialized cache file 75 | .idea/caches/build_file_checksums.ser 76 | 77 | ### JetBrains+all Patch ### 78 | # Ignores the whole .idea folder and all .iml files 79 | # See https://github.com/joeblau/gitignore.io/issues/186 and https://github.com/joeblau/gitignore.io/issues/360 80 | 81 | .idea/ 82 | 83 | # Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-249601023 84 | 85 | *.iml 86 | modules.xml 87 | .idea/misc.xml 88 | *.ipr 89 | 90 | # Sonarlint plugin 91 | .idea/sonarlint 92 | 93 | ### Linux ### 94 | *~ 95 | 96 | # temporary files which can be created if a process still has a handle open of a deleted file 97 | .fuse_hidden* 98 | 99 | # KDE directory preferences 100 | .directory 101 | 102 | # Linux trash folder which might appear on any partition or disk 103 | .Trash-* 104 | 105 | # .nfs files are created when an open file is removed but is still being accessed 106 | .nfs* 107 | 108 | ### SublimeText ### 109 | # Cache files for Sublime Text 110 | *.tmlanguage.cache 111 | *.tmPreferences.cache 112 | *.stTheme.cache 113 | 114 | # Workspace files are user-specific 115 | *.sublime-workspace 116 | 117 | # Project files should be checked into the repository, unless a significant 118 | # proportion of contributors will probably not be using Sublime Text 119 | # *.sublime-project 120 | 121 | # SFTP configuration file 122 | sftp-config.json 123 | 124 | # Package control specific files 125 | Package Control.last-run 126 | Package Control.ca-list 127 | Package Control.ca-bundle 128 | Package Control.system-ca-bundle 129 | Package Control.cache/ 130 | Package Control.ca-certs/ 131 | Package Control.merged-ca-bundle 132 | Package Control.user-ca-bundle 133 | oscrypto-ca-bundle.crt 134 | bh_unicode_properties.cache 135 | 136 | # Sublime-github package stores a github token in this file 137 | # https://packagecontrol.io/packages/sublime-github 138 | GitHub.sublime-settings 139 | 140 | ### Vim ### 141 | # Swap 142 | [._]*.s[a-v][a-z] 143 | [._]*.sw[a-p] 144 | [._]s[a-rt-v][a-z] 145 | [._]ss[a-gi-z] 146 | [._]sw[a-p] 147 | 148 | # Session 149 | Session.vim 150 | Sessionx.vim 151 | 152 | # Temporary 153 | .netrwhist 154 | # Auto-generated tag files 155 | tags 156 | # Persistent undo 157 | [._]*.un~ 158 | 159 | ### VisualStudioCode ### 160 | .vscode/* 161 | !.vscode/settings.json 162 | !.vscode/tasks.json 163 | !.vscode/launch.json 164 | !.vscode/extensions.json 165 | 166 | ### VisualStudioCode Patch ### 167 | # Ignore all local history of files 168 | .history 169 | 170 | # End of https://www.gitignore.io/api/linux,visualstudiocode,jetbrains+all,sublimetext,vim 171 | n -------------------------------------------------------------------------------- /.lycheeignore: -------------------------------------------------------------------------------- 1 | twitter\.(com) 2 | https://www.yiminghan.com 3 | https://mohamedzhioua.vercel.app -------------------------------------------------------------------------------- /.vs/VSWorkspaceState.json: -------------------------------------------------------------------------------- 1 | { 2 | "ExpandedNodes": [ 3 | "" 4 | ], 5 | "SelectedNode": "\\C:\\Users\\marwe\\Source\\Repos\\developer-portfolios", 6 | "PreviewInSolutionExplorer": false 7 | } -------------------------------------------------------------------------------- /.vs/developer-portfolios/FileContentIndex/read.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidEngineers/developer-portfolios/cebda0a9a955c0d95180700584c4e030aed76873/.vs/developer-portfolios/FileContentIndex/read.lock -------------------------------------------------------------------------------- /.vs/developer-portfolios/v17/.wsuo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidEngineers/developer-portfolios/cebda0a9a955c0d95180700584c4e030aed76873/.vs/developer-portfolios/v17/.wsuo -------------------------------------------------------------------------------- /.vs/slnx.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidEngineers/developer-portfolios/cebda0a9a955c0d95180700584c4e030aed76873/.vs/slnx.sqlite -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | # TLTR: Create a Pull Request 2 | 3 | 1. Fork this repository. 4 | 2. Clone your new repository to your system. 5 | 3. Create a new branch (i.e. `add/your-name`). 6 | 4. Add your new site. Remember to add **alphabetically to the list.** 7 | 5. Commit changes and push the new branch. 8 | 6. Open and submit a PR. 9 | 10 | If you have never opened a PR and need direction, read more below. 11 | 12 | # Contributor's Guide 13 | 14 | Feedback, bug reports, and pull requests are welcome. Feel free to ask for [help](https://github.com/emmawedekind/developer-portfolios/issues). 15 | 16 | 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) 17 | 18 | This guide has been modified from [freeCodeCamp's Contributors Guide](https://github.com/freeCodeCamp/freeCodeCamp/blob/master/CONTRIBUTING.md) 19 | 20 | ## Forking the Project 21 | 22 | ### Setting Up Your System 23 | 24 | 1. Install [Git](https://git-scm.com) or your favorite Git client. 25 | 2. (Optional) [Setup an SSH Key](https://help.github.com/articles/generating-an-ssh-key) for GitHub. 26 | 27 | ### Forking Developer Portfolios 28 | 29 | 1. Go to the top-level page of this [repository](https://github.com/emmawedekind/developer-portfolios) 30 | 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)) 31 | 3. After the repository (repo) has been forked, you will be taken to your copy of the Developer Portfolios repo at 32 | 33 | ### Cloning Your Fork 34 | 35 | 1. Open a Terminal / Command Line / Bash Shell in your project's directory (_i.e.: `/yourprojectdirectory/`_) 36 | 2. Clone your fork of `Developer Portfolios` 37 | 38 | ```shell 39 | git clone https://github.com/yourUsername/developer-portfolios.git 40 | ``` 41 | 42 | **(make sure to replace `yourUsername` with your GitHub username)** 43 | 44 | This will download the entire `Developer Portfolios` repo to your project's directory. 45 | 46 | ### Setup Your Upstream 47 | 48 | 1. Change directory to the new directory (`cd ./developer-portfolios`) 49 | 2. Add a remote to the original `Developer Portfolios` repo: 50 | 51 | ```shell 52 | git remote add upstream https://github.com/emmawedekind/developer-portfolios.git 53 | ``` 54 | 55 | Congratulations, you now have a local copy of the `Developer Portfolios` repo! 56 | 57 | ### Maintaining Your Fork 58 | 59 | Now that you have a copy of your fork, there is work you will need to do to keep it current. 60 | 61 | #### Rebasing from Upstream 62 | 63 | Do this prior to every time you create a branch for a PR: 64 | 65 | 1. Make sure you are on the `master` branch 66 | 67 | ```shell 68 | $ git status 69 | On branch master 70 | Your branch is up to date with 'origin/master'. 71 | ``` 72 | 73 | If you aren't on `master`, resolve outstanding files/commits and checkout the `master` branch 74 | 75 | ```shell 76 | git checkout master 77 | ``` 78 | 79 | 2. Do a pull with rebase against `master` 80 | 81 | ```shell 82 | git pull --rebase upstream master 83 | ``` 84 | 85 | This will pull down all of the changes to the official master branch, without making additional commits in your local repo. 86 | 87 | 3. Merge remote changes to your local master fork: 88 | 89 | ```shell 90 | git merge upstream/master 91 | ``` 92 | 93 | ### Create a Branch 94 | 95 | Before you start working, you will need to create a separate branch specific to the issue/feature you're working on. You will push your work to this branch. 96 | 97 | #### Naming Your Branch 98 | 99 | There are several strategies for naming branches. 100 | 101 | You could name the branch something like `fix/xxx` or `feature/xxx` where `xxx` is a short description of the changes or feature you are attempting to add. For example `fix/email-login` would be a branch where you fix something specific to email login. 102 | 103 | We'd recommend naming it something that is relevant to your new site (i.e. `add/your-name` 104 | 105 | #### Adding Your Branch 106 | 107 | To create a branch on your local machine (and switch to this branch): 108 | 109 | ```shell 110 | git checkout -b [add/your-name] 111 | ``` 112 | 113 | and to push to GitHub: 114 | 115 | ```shell 116 | git push origin [add/your-name] 117 | ``` 118 | 119 | **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).** 120 | 121 | ### Creating a Pull Request 122 | 123 | #### What is a Pull Request? 124 | 125 | A pull request (PR) is a method of submitting your new site to the `Developer Portfolios` (or any repo, for that matter). You will make changes to copies of the files in a personal fork, then apply to have them accepted by the original repo. 126 | 127 | #### Need Help? 128 | 129 | Feel free to ask for [help](https://github.com/emmawedekind/developer-portfolios/issues), we are here to help. 130 | 131 | #### Important: ALWAYS EDIT ON A BRANCH 132 | 133 | Take away only one thing from this document: Never, **EVER** make edits to the `staging` branch. ALWAYS make a new branch BEFORE you edit files. This is critical, because if your PR is not accepted, your copy of staging will be forever sullied and the only way to fix it is to delete your fork and re-fork. 134 | 135 | #### Methods 136 | 137 | There are two methods of creating a pull request for 'Developer Portfolios': 138 | 139 | - Editing files on a local clone (recommended) 140 | - Editing files via the GitHub Interface 141 | 142 | ##### Method 1: Editing via your Local Fork _(Recommended)_ 143 | 144 | This is the recommended method. Read about [How to Setup and Maintain a Local Instance](#maintaining-your-fork). 145 | 146 | 1. Perform the maintenance step of rebasing `master`. 147 | 2. Ensure you are on the `master` branch using `git status`: 148 | 149 | $ git status 150 | On branch master 151 | Your branch is up-to-date with 'origin/master'. 152 | 153 | nothing to commit, working directory clean 154 | 155 | 3. If you are not on `master` or your working directory is not clean, resolve any outstanding files/commits and checkout `git checkout master` 156 | 157 | 4. Create a branch off of `develop` with git: `git checkout -b add/your-name` 158 | 159 | 5. Edit your file(s) locally with the editor of your choice. 160 | 161 | 6. Check your `git status` to see unstaged files. 162 | 163 | 7. Add your edited files: `git add path/to/filename.ext` You can also do: `git add .` to add all unstaged files. Take care, though, because you can accidentally add files you don't want to be added. Review your `git status` first. 164 | 165 | 8. Make sure your new site is added **alphabetically** to the existing list. 166 | 167 | 9. Commit your edits. `git commit -m "your-commit-message"` 168 | 169 | Please make sure to write a commit message that summarizes the changes. If you find yourself in the need to use `and` it might be better to do two separate commits. 170 | 171 | See [Useful Tips for writing better Git commit messages](https://code.likeagirl.io/useful-tips-for-writing-better-git-commit-messages-808770609503) for inspiration. 172 | 173 | As a note, use the present tense for your commit messages (i.e. `Add` instead of `Added`). 174 | 175 | 10. If you would want to add/remove changes to the previous commit, add the files as in Step 5 earlier, and use `git commit --amend` or `git commit --amend --no-edit` (for keeping the same commit message). 176 | 177 | 11. Push your commits to your GitHub Fork: `git push origin add/your-name` 178 | 179 | 12. Once the edits have been committed, you will be prompted to create a pull request on your fork's GitHub Page. 180 | 181 | 13. By default, all pull requests should be against the `Developer Portfolios` main repo, `master` branch. 182 | **Make sure that your Base Fork is set to developer-portfolios/master when raising a Pull Request.** 183 | 184 | 14. Submit a pull request from your branch to the `Developer Portfolios` `master` branch. 185 | 186 | 15. The title (also called the subject) of your PR should be descriptive of your changes and succinctly indicate what is being fixed. 187 | 188 | - **Do not add the issue number in the PR title or commit message.** 189 | 190 | - Examples: `Add site NAME` 191 | 192 | ### Next Steps 193 | 194 | #### If your PR is accepted 195 | 196 | Once your PR is accepted, you may delete the branch you created to submit it. This keeps your working fork clean. 197 | 198 | You can do this with a press of a button on the GitHub PR interface. You can delete the local copy of the branch with: `git branch -D branch/to-delete-name` 199 | 200 | #### If your PR comes back 201 | 202 | Don't despair! You are probably being asked to make a formatting change. If you have a local copy of the repo, you can make the requested changes, commit them and push them to your fork. 203 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Developer Portfolios 2 | 3 | A list of developer portfolios for your inspiration 4 | 5 | Have you built a portfolio? Are you proud of it?! Open a [PR](./CONTRIBUTING.md) to this repo and let's showcase your work! Refer to the [CONTRIBUTING](./CONTRIBUTING.md) file for direction. 6 | 7 | This repo was inspired by [Ali Spittel's](https://twitter.com/ASpittel) tweet 8 | [Portfolio](https://twitter.com/ASpittel/status/1171604728951779328) 9 | 10 | Hopefully this repo can serve as a source of inspiration for your portfolio! 11 | 12 | --- 13 | 14 | **Jump to:** [A](#a) | [B](#b) | [C](#c) | [D](#d) | [E](#e) | [F](#f) | [G](#g) | [H](#h) | [I](#i) | [J](#j) | [K](#k) | [L](#l) | [M](#m) | [N](#n) | [O](#o) | [P](#p) | [Q](#q) | [R](#r) | [S](#s) | [T](#t) | [U](#u) | [V](#v) | [W](#w) | [Y](#y) | [Z](#z) | [Random Portfolio](https://s111ew.github.io/random-button-redirector/) 15 | 16 | --- 17 | 18 | ## A 19 | 20 | - [Aabid Ahmed](https://sawad.framer.website/) 21 | - [Aashir Khan](https://portfolio-n4sn.vercel.app) 22 | - [Aakash Sharma](https://aakash-sharma.netlify.app) 23 | - [Aaron Dunphy](https://aarondunphy.com) 24 | - [Aaryanna Simonelli](https://ashleighsimonelli.co.uk) 25 | - [Aashutosh Rathi](https://aashutosh.dev) 26 | - [Aayush Kurup](https://aayushkurup.dev) 27 | - [Abass Dev](https://abassdev.com) 28 | - [AbdeNassar Amimi](https://abdenassar-portfolio-4smfcqph6-abdenassaramimi99-gmailcom.vercel.app) 29 | - [Abdelaziz El Arassi](http://aelarassi.com) 30 | - [Abdul Rahman](https://abdulrahman.id) 31 | - [Abdul Rauf](https://armujahid.me) 32 | - [Abdullah Ayoola](https://ayooladev.vercel.app) 33 | - [Abdulmalik Alsufayran](https://malikthefullstack.com) 34 | - [Abdusamad Malikov](https://www.abdusamad.uz) 35 | - [Abhinav Galodha](https://www.galodha.com) 36 | - [Abhinav Kumar](https://my-portfolio-flax-kappa.vercel.app) 37 | - [Abhinay Thakur](https://abhinaythakur.com) 38 | - [Abhishek Bhardwaj](https://www.imabhishek.online) 39 | - [Abhishek Kandel](https://abhishekkandel.com.np) 40 | - [Abu Said](https://www.abusaid.me) 41 | - [Abhishek Panthee](https://abhishekpanthee.com.np) 42 | - [Adam Alston](https://www.adamalston.com) 43 | - [Adil Aboulkacim](https://adilaboulkacim.com) 44 | - [Adithya Krishnan](https://www.adithyakrishnan.com/) 45 | - [Aditya Medhe](https://aditya.medhe.in) 46 | - [Aditya Kumar](https://www.adityakr.com) 47 | - [Aditya Kumar Gupta](https://aditya30051993.github.io/my-portfolio) [Doctor & Developer] 48 | - [Aditya Vikram Singh](https://www.adityavsingh.com) 49 | - [Adityakumar Sinha](https://aditya113141.github.io) 50 | - [Agney Menon](https://agney.dev) 51 | - [Agrawal Pratham](https://agrawalpratham.in) 52 | - [Ahmad Almory](https://ahmedalmory.github.io/portfolio) 53 | - [Ahmad Awais](https://ahmadawais.com) 54 | - [Ahmed Oublihi](https://www.medevs.xyz) 55 | - [Ahmed Zougari](https://ahmedzougari.com) 56 | - [Ahsan Khan](https://ahsankhan.me) 57 | - [Aishani Pachauri](https://aishanipach.netlify.app) 58 | - [Ajay Kannan](https://ajaykannan.netlify.app) 59 | - [Ajink Gupta](https://ajinkgupta.vercel.app) 60 | - [Akash Balasubhramanyam](https://akashblsbrmnm.github.io) [C Developer] 61 | - [Akash Pawara](https://akashpawara.com) 62 | - [Akash Rajpurohit](https://akashrajpurohit.com) 63 | - [Akhil Surapuram](https://surapuramakhil.github.io) [Sofware Engineer & Data Enthusiast] 64 | - [Akira Yoshiro](https://gungho0619.vercel.app) [Full-Stack Developer Web | Blockchain] 65 | - [Akshat Gupta](https://www.akshatvg.com) 66 | - [Akshay](https://devakshay.vercel.app) 67 | - [Alejandro Gomez](https://alejandro-gomez.vercel.app) 68 | - [Alejandro Sobko](http://alejandrosobko.com) 69 | - [Alestor Aldous](http://alestor123.github.io) 70 | - [Alex Michailidis](https://alexandros.tech) 71 | - [Alexey Golub](http://tyrrrz.me) 72 | - [Alfred Dagenais](https://alfreddagenais.com) 73 | - [Allan Muturi](https://allanmuturi.vercel.app) 74 | - [Aloys Dillar](https://trolologuy.github.io) 75 | - [Alvalens](https://www.alvalens.my.id) 76 | - [Aman Anku](http://amananku26.github.io) 77 | - [Aman Mittal](http://amanhimself.dev) 78 | - [Aman Shrivastava](https://aman04.netlify.app) 79 | - [Amogh Telkar](https://amoghtelkar.com) 80 | - [Amir Akbulut](https://amirdev.nl) 81 | - [Amédée Dera](https://a-dera.com) 82 | - [Amresh Prasad Sinha](https://amreshsinha.vercel.app) 83 | - [Amruth Pillai](https://amruthpillai.com) 84 | - [Anandhu Sajan](https://anandhusajan.com) 85 | - [Ananya Biswas](https://dub.sh/ananyabiswas) 86 | - [Anas Boubechra](https://cschad.com) 87 | - [André de Faria](https://andredfaria.github.io/) 88 | - [Andreas Beuger](https://beuger.dev) 89 | - [Andrej Sharapov](https://sharapov.dev) 90 | - [Andrew Woods](https://andrewwoods.net) 91 | - [Andrianarisoa Daniel](https://www.devist.xyz) 92 | - [Andrii Zontov](https://lwjerri.dev) 93 | - [Andy Bell](https://andy-bell.design) 94 | - [Angel Martinez](https://angelmtz.dev) 95 | - [Anik Ahammed Khan](https://anikahammedkhan.com) 96 | - [Aniket Kudale](https://aniket.co) 97 | - [Anil Khatri](https://imkaka.github.io) 98 | - [Ankit Dey](https://dub.sh/ankitdey) 99 | - [Ankush Minda](http://ankushminda.com) 100 | - [Anshul Gora](https://anshulwork.netlify.app) 101 | - [Anshul Soni](https://anshulsoni.in) 102 | - [Anthony MAHEFASOA](https://thony32.me) 103 | - [Antoine Dangleterre](https://antoinedangleterre.com) 104 | - [Anton Bojko](https://mrtoxas.github.io/cv/portfolio/) 105 | - [Antonio Ferreiro](https://toniferr.github.io) 106 | - [Antony Jude Shaman](https://antonyjudeshaman.vercel.app) 107 | - [Antônio Junior](https://portfolio-antonio-ten.vercel.app) 108 | - [Anurag Affection](https://anuragaffection.vercel.app) 109 | - [Anurag Hazra](https://anuraghazra.github.io) 110 | - [Ariel Andrade](https://sudoariel.github.io) 111 | - [Arjun K](https://arjunk.me) 112 | - [Armel Munyaneza](https://munyaneza.vercel.app/) 113 | - [Arpit Sharma](https://yesarpit.github.io) 114 | - [Arsalan Shakil](https://arsalanshakil.github.io) 115 | - [Arshad MQ](https://arshadmq.com) [Sr. Full Stack Developer and Freelancer] 116 | - [Arsh Sahzad](https://www.arsh.dev) 117 | - [Arup Mandal](https://arupmandal.github.io) 118 | - [Assad Isah](https://www.nottherealalanturing.site) 119 | - [Ashim Minhazul](https://minhazul-ashim.com) 120 | - [Ashish Mehra](https://ashishmehra.dev) 121 | - [Ashkan Misaghi](https://ashkanmisaghi.ir) 122 | - [Ashlee Boyer](http://ashleemboyer.dev) 123 | - [Ashwin Hariharan](https://ashwinhariharan.tech) 124 | - [Aster Bandis](https://bandisast.eu) 125 | - [Aster Li](https://asterjuneli.com) 126 | - [Atanas Atanasov](https://atanas.info) 127 | - [Atul Kumar Awasthi](https://atultheportfolio.netlify.app) 128 | - [Auroob Ahmad](https://auroob.github.io/dev-port) 129 | - [Austin Gericke](https://www.austingericke.com) 130 | - [Austin Pham](https://auspham.dev) 131 | - [Aycan Öğüt](https://aycan.dev) 132 | - [Aviral Dixit](https://aviraldixit.in) 133 | - [Avnish Kumar](https://theavnishkumar.in) 134 | - [Ayush Nighoskar](https://ayushn.netlify.app) 135 | 136 | ## B 137 | 138 | - [Bakare Afolabi](http://afolabibakare.netlify.app) 139 | - [Barrack Amuyunzu](https://amuyunzubarrac.club) 140 | - [Baptiste Miramont](https://baptistemiramont.fr) 141 | - [Becca Bailey](http://Becca.is) 142 | - [Bekah Hawrot Weigel](http://bekahhw.github.io) 143 | - [Benjamin Dallard](https://github.com/bdallard/ai-resume-portfolio) 144 | - [Benjamin Lannon](https://lannonbr.com) 145 | - [Ben Rogers](https://benrogers.dev) 146 | - [Berat Bozkurt](https://beratbozkurt.net) 147 | - [Bertil Tandayamo](https://www.bertiltandayamo.me) 148 | - [Bhagawat Adhikari](https://github.com/bhagawatadhikari) 149 | - [Bharat Bhandari](https://bharatdev.vercel.app) 150 | - [Bhavani Ravi](http://bhavaniravi.com) 151 | - [Bhavya Tomar](https://bhavya.dev) 152 | - [Bhupendra Singh](https://bhupi2508.netlify.app) 153 | - [Bhushan Borole](https://bhushan-borole.github.io) 154 | - [Bipin M V](https://bipinmv.netlify.app) 155 | - [Blanc John Clayton](https://www.johnclaytonblanc.com) 156 | - [Bob Matyas](https://www.bobmatyas.com) 157 | - [Bogdan Marić](https://bogdanmaric.dev) 158 | - [Bohdan Khvorostovskyi](https://khvorostovskyi.com) 159 | - [Boris Edison](https://borisedison.in) 160 | - [Bouwe Westerdijk](https://bouwe.io) 161 | - [Brad Garropy](https://bradgarropy.com) 162 | - [Brendan Lentz](https://brendanlentz.com) 163 | - [Brittany Chiang](https://brittanychiang.com) 164 | - [Bryan Smith](https://multikitty.onrender.com) 165 | 166 | ## C 167 | 168 | - [Cade Kynaston](https://cade.codes) 169 | - [Carlos Dubón](https://carlosdubon.dev) 170 | - [Casper Iversen](https://caspertheghost.me) 171 | - [Cecelia Martinez](http://ceceliacreates.com) 172 | - [Chambrin Alexandre](https://chambrin.dev) 173 | - [Charles C. Pustejovsky III](https://cpustejovsky.com) 174 | - [Chee Hwa Tang](https://cheehwatang.com) 175 | - [Chetan Padia](https://chetbox.com) 176 | - [Chetan Raj](https://chetanraj.in) 177 | - [Chetanya Kandhari](https://availchet.github.io) 178 | - [Chethin Manage](https://www.cmanage.dev) 179 | - [Chicago IT Systems](https://www.chicagoitsystems.com) 180 | - [Chirag Bhalotia](https://chirag.codes) 181 | - [Chirag Samal](http://chiragsamal.github.io) 182 | - [Chris Carr](http://snackpipe.com) 183 | - [Chris Otto](https://chrisotto.dev) 184 | - [Chris Poole](https://chrispoole.com) 185 | - [Christian Kaisermann](https://kaisermann.me) 186 | - [Christian Toscano](https://achris.me) 187 | - [Chuck Smith](https://eclecticcoding.com) 188 | - [Chuckz Okoye](https://chuckzokoye.com) 189 | - [Chung Nguyen Thanh - ChunhThanhDe](https://chunhthanhde.github.io) 190 | - [Clyde D'Souza](https://clydedsouza.net) 191 | - [Cole Emeruche](https://coleruche.com) 192 | - [Colin Lord](https://colinlord.com) 193 | - [Collins Koech](https://collinskoechportfolio.web.app) 194 | - [Cristiano Filho](https://cristianofilho.github.io) 195 | - [Cristian Cezar Moisés](https://ccm.securityops.com.br) 196 | - [Cui Ding](https://cuierd.github.io) 197 | 198 | ## D 199 | 200 | - [Dale French](https://dalefrench.dev) 201 | - [Dale Larroder](https://dalelarroder.com) 202 | - [Damian Markowski](https://damianmarkowski.com) 203 | - [Dania Al-Hakim](https://pixeldania.netlify.app) 204 | - [Daniel Alberski](https://danielalberski.redark.pl) 205 | - [Daniel Grazziotti](https://grazziotti-portfolio.vercel.app) 206 | - [Danilo Batson](https://danilobatson.github.io/portfolio) 207 | - [Danilo Castro](https://www.welcomedeveloper.com) 208 | - [Daniel Michael](https://www.daniel-michael.com) 209 | - [Darshan Vasani](https://dpvasani-56.netlify.app/) 210 | - [Darshan Vasani 2](https://dpvasani56.vercel.app/) 211 | - [David Hérault](https://dherault.com) 212 | - [Davide Santangelo](https://davidesantangelo.com) 213 | - [Debasish Dutta](https://debasishdutta.is-a.dev) 214 | - [Deepak Singh](https://deepaksingh.vercel.app) 215 | - [Denis Tokarev](https://devlato.com) 216 | - [Delba](https://delba.dev) 217 | - [Dev](https://devpalwar.vercel.app) 218 | - [Dev Abass](https://blog.abassdev.com) 219 | - [Dev Khandelwal](https://slyro.vercel.app) 220 | - [Dhaval Patel](https://dhavalcode.com) 221 | - [Dheeraj Gupta](https://dheerajgupta.netlify.app/#) 222 | - [Dhiraj Basavaraju](https://portfolio-dhirajb7.vercel.app) 223 | - [Dhruva Bhat S N](https://dhruvabhat.netlify.app) 224 | - [Dick Wyn Yong](https://dickwyn.xyz) 225 | - [Diego Rezende](https://diegorezm.netlify.app/) 226 | - [Dillion Megida](http://dillionmegida.com) 227 | - [Dimitri Pashutskii](https://dpashutskii.com) 228 | - [Dina TAKLIT](https://dinataklit.github.io/DinaTaklitPortfolio) 229 | - [Dineshreddy Paidi](https://dineshreddypaidi.vercel.app) 230 | - [Dino Gomez](https://dinogomez.vercel.app) 231 | - [Dipesh Murmu](https://dipeshmurmu.com.np) 232 | - [Drew Bredvick](https://drew.tech) 233 | - [Durgesh Chaudhary](https://yodkwtf.com) 234 | - [Dustin Doan](https://dustindoan-portfolio.vercel.app/) 235 | - [Dylan GIL AMARO](https://dga-dev.fr) 236 | - [Dzmitry Drepin](https://linktr.ee/drepin) 237 | 238 | ## E 239 | 240 | - [Eduard-Constantin Ibinceanu](https://eduardconstantin.github.io) 241 | - [Eduard Yudinkov](https://yudinkov.dev) 242 | - [Eduardo Vaz](https://eduardovaz.dev) 243 | - [Ehsan Rafee](https://ehsanrafee.ir) 244 | - [Electric Magic Factory](https://electricmagicfactory.com/en/) 245 | - [Elio Jordan Lopes](https://developer.vercel.app) 246 | - [Elliot Négrel-Jerzy](https://bsodium.fr) 247 | - [Elmo Nickol](https://elmonickcool.vercel.app) 248 | - [Emmanuel ADEKPLOVI](https://homescriptone.com) 249 | - [Emir Bolat](https://spee.dev/) 250 | - [Enea Xharja](https://eneaxharja.com) 251 | - [Enes Hacısağır](https://enesehs.github.io) 252 | - [Ephraim Atta-Duncan](https://astrosaurus.me) 253 | - [Erdal TAŞKESEN](https://www.erdaltaskesen.com) 254 | - [Erik Henrique Alves Cunha](https://www.indianboy.com.br) 255 | - [Evander Inácio](https://evander.vercel.app) 256 | - [Evil Rabbit](https://evilrabb.it) 257 | - [Ezekiel Ekunola](https://ezekielekunola.com) 258 | 259 | ## F 260 | 261 | - [Fayaz Bin Salam](https://p32929.github.io) 262 | - [Felix Leupold](https://xiel.dev) 263 | - [Felix Tellmann](https://flext.dev) 264 | - [Fenotiana Andriamahenimanana](https://www.fenotiana.dev) 265 | - [Fernando Júnior](https://fernaandojr.vercel.app) 266 | - [Fidalgo Pedro](http://fidalgo.dev) 267 | - [Filippo Concato](https://concatofilippo.com) 268 | - [Flavia Medici](https://t.co/iQK1Hbx8xD?amp=1) 269 | - [Frances Coronel](https://francescoronel.com) 270 | - [Franklin Castellanos](https://onecastell.github.io) 271 | - [Franklin Huichi Contreras](https://franh20.github.io) 272 | - [Franklin Ohaegbulam](https://frankiefab.netlify.app) 273 | - [Frederic Henri](https://cloud06.io) 274 | - [Furkan Cengiz](https://furki.vercel.app) 275 | 276 | ## G 277 | 278 | - [Gabriel López](https://glpzzz.dev) 279 | - [Gabriel Machado](https://machado001.github.io) ([@machado001](https://github.com/machado001)) 280 | - [Gabriel Tekombo](https://gabrielthecode.com) 281 | - [Gabriele Corti](https://borntofrappe.github.io) 282 | - [Ganesh Patil](https://hardikjain.netlify.app) 283 | - [Garv Nanwani](https://garvnanwani.netlify.app) 284 | - [Gaspare Tortora](https://gaspavar.dev) 285 | - [Gaurav Bansal](https://gaurav-bansal.vercel.app/) 286 | - [Genesis Gabiola](https://genesisgabiola.now.sh) 287 | - [Georges Atalla](https://www.georgesatalla.com) 288 | - [George Christeas](https://chr-ge.com) 289 | - [George Fincher](https://www.grimfunky.dev) 290 | - [Georgi Yanev](https://gyanev.com) 291 | - [Ghulam Ahmed](https://gahmed.com) 292 | - [Gianluca Fiore](http://gianlucafiore.it) 293 | - [Gianluca Galota](https://gianlucagalota.dev) 294 | - [Giorgio Faini](https://giorgiofaini.com) 295 | - [Grace Snow](https://gracesnowdesign.co.uk) 296 | - [Grégoire Launay--Bécue](https://linv.dev) ([@Linventif](https://github.com/linventif)) 297 | - [Goh Jun Xiang](https://gohjunx.github.io/GohJunXiang.github.io) 298 | - [Goh You Sheng](https://shenggg2000.github.io/portfolio) 299 | - [Gokul Raja](https://gokul-raja84.github.io/) 300 | 301 | ## H 302 | 303 | - [Hafid Ziti](https://www.hafidziti.dev) 304 | - [Hamza Ehsan](https://www.hamzaehsan.com) 305 | - [Hansana Prabath](https://hansana.is-a.dev) 306 | - [Hanzla Tauqeer](https://github.com/1hanzla100/developer-portfolio) 307 | - [Harlon Garcia](https://harlon.netlify.app) 308 | - [Harijaona Ravelondrina](http://www.bigjohn.dev) 309 | - [Harsh Singhvi](https://harshsinghvi.com) 310 | - [Hasan Aydoğdu](https://haydogdu1990.github.io/resume-json-css) 311 | - [Hashir Farooq](https://hashirfarooq.com) 312 | - [Hassan Ahmed](https://www.hassanahmed.net) 313 | - [Hassan Murtaza](https://hassanmurtaza.com) 314 | - [Hasan](https://hasansiddiqui.netlify.app) 315 | - [Hemsundar Paranthaman](https://hemdev.vercel.app) 316 | - [Henry Lee](https://dragonwarrior.vercel.app) 317 | - [Herman Starikov](http://starikov.dev) 318 | - [Hoang Nguyen](https://hoangdesu.com) 319 | - [Hubert Kimani](https://hubertkimani.me) 320 | - [Humanshu Jaglan](https://humanshu-jaglan.vercel.app) 321 | - [Hungry Bear Studio](https://www.hungrybearstudios.com) 322 | - [Hussein Sarea](https://ho011.vercel.app) 323 | - [Huzaifa Mustafa](https://www.huzaifamustafa.com) 324 | 325 | ## I 326 | 327 | - [Ibrahim Hizlioglu](https://www.ibrahimhizlioglu.com) 328 | - [Ike Ofoegbu](https://iodev.io) 329 | - [Indrajeet Nikam](https://indrajeet.me) 330 | - [Ingus Jansons](https://ingus.co.uk) 331 | - [Iqboljon Hasan](https://iqboljon.uz) 332 | - [Isabella Riquetti](https://isabella-riquetti.netlify.app) 333 | - [Ishaan Sheikh](https://frikishaan.com) 334 | - [Isitha Subasinghe](https://isub.dev) 335 | - [Ismail Ghallou aka Smakosh](https://smakosh.com) 336 | - [Israel Mitolu](https://israelmitolu.netlify.app) 337 | - [Iulian Rotaru](https://iulian.rotaru.fr) 338 | 339 | ## J 340 | 341 | - [Jack Parsons](https://jackparsonss.me) 342 | - [Jacob Herper](https://jacobherper.com) 343 | - [Jagadeesh B](https://jagadeeshftw.netlify.app) 344 | - [Jahir Fiquitiva](https://jahir.dev) 345 | - [Jainam Desai](https://th3c0d3br34ker.github.io) 346 | - [Jainex Patel](https://jainex.vercel.app) 347 | - [Jake Ginesin](https://jakegines.in) 348 | - [Jam Moonbami](https://moonbamiofficial.vercel.app) 349 | - [James Mumo](https://jamesmumo.vercel.app/) 350 | - [James Turner](http://turnerj.com) 351 | - [Jason Solano](https://jasonsolano.tech) 352 | - [Jatin Sharma](http://j471n.in) 353 | - [Jay Bhavsar](https://jay.is-savvy.dev) 354 | - [Jay Keraliya](https://jaykeraliya.com) 355 | - [Jayant Goel](http://jayantgoel001.github.io) 356 | - [Jayant Parashar](https://jparasha.github.io) 357 | - [Jayed Rafi](https://jayedrafi.com) 358 | - [Jayvee Valenzuela](https://jayveepvalenzuela.github.io) 359 | - [Jeff Chiu](https://jeffchiucp.github.io/portfolio) 360 | - [Jens van Wijhe](https://www.beterbekend.nl) 361 | - [Jeremy Erik Leong](https://www.jeremyerikleong.com) 362 | - [Jeremy Grifski](https://jeremygrifski.com) 363 | - [Jerin BS](https://jerinbs.vercel.app) 364 | - [Jerry Hirsch](https://jerryhirsch.com) 365 | - [Jigme Lodey](https://jigmeloday.com) 366 | - [Jim Raptis](http://www.raptis.wtf) 367 | - [Jin Jheng Rong](https://jinrup.vercel.app) 368 | - [Jo Lienhoop](https://jolienhoop.com) 369 | - [John Carlo Camara](https://jiseeeh.codes) 370 | - [John Doe](https://portfolio-john2.netlify.app) 371 | - [Jonas Werner](https://jonaswerner.com) 372 | - [Joshua Chinwendu](http://joshualine.github.io) 373 | - [Joshua Izuchukwu](https://joshuaizu.vercel.app) 374 | - [Juan Cisneros](https://portfoliojuanfranciscocisneros.web.app) 375 | - [Juan Diaz](https://jpdiaz.dev) 376 | - [Jubin Ayoob](https://web-portfolio-jubin369.vercel.app) 377 | - [Jules Lofficial](https://pandaguerrier.fr) [@PandaGuerrier](https://github.com/PandaGuerrier) 378 | - [Julia Johnson](http://juliacodes.com) 379 | - [Juned Khan](https://junedkhan.me) 380 | - [Jyotirmoy Bandyopadhayaya](https://itsmebravo.dev) 381 | 382 | ## K 383 | 384 | - [Kaleigh Scruggs](http://kaleighscruggs.com) 385 | - [Karen Fletcher](https://knpfletcher.dev) 386 | - [Karthik Menon](https://www.karthikmenon.com) 387 | - [Karunika](https://karunika.work/) 388 | - [Kashiful Haque](https://ifkash.vercel.app) 389 | - [Katleho Mokhele](https://mokhele.pythonanywhere.com) 390 | - [Katie Amberg-Johnson](https://kambergjohnson.com) (made with [TechFolios](https://techfolios.github.io)) 391 | - [Kaustubhai](https://kaustubhai.netlify.app) 392 | - [Keith Lau](https://keithlau2015.github.io/portfolio) 393 | - [Kenta Yamamoto](https://ychof.com) 394 | - [Ketuman Vishwakarma](https://k2maan.vercel.app/)([@k2maan](https://github.com/k2maan)) 395 | - [Khaled Ahmed](https://khaled.is-a.dev) 396 | - [Khokon M.](https://khokon.dev) 397 | - [Kidus Bewket](https://kidus.ca) 398 | - [KIRAN KUMAR](https://ikiran-dev.github.io) 399 | - [Kiran Naragund](https://kiran1689.github.io) 400 | - [Krishnanand A](https://krishnananda.netlify.app) 401 | - [Kunal Passan](https://kunalpassan.vercel.app) 402 | - [Kushan Devarajegowda (Software Developer | Software Engineer | SDE | SWE)](https://ikushdev.github.io) 403 | - [Kyaw Zin Thiha](https://www.kyawzinthiha.dev) 404 | - [Kyle Shook](http://Kyleshook.com) 405 | - [Kyle Smith](https://yskkyle.com) 406 | 407 | ## L 408 | 409 | - [Lakshan Rukantha](https://lakshanrukantha.github.io) 410 | - [Larry Xue](https://larryxue.dev) 411 | - [Laurie Barth](http://laurieontech.dev) 412 | - [Leandro Simões](https://lesimoes.dev) 413 | - [Leonardo Oliveira](https://leonardoliveira.com) 414 | - [Lee Warrick](http://leewarrick.com) 415 | - [Lee Robinson](https://leerob.io) 416 | - [Leroy Rosales](https://leroyrosales.com) 417 | - [Leonel Ngoya](https://lndev.me) 418 | - [Lindsey Howard](https://lindseyk.dev) 419 | - [Liplan Lekipising](https://lekipising.com) 420 | - [Lisa Blunt](https://lisablunt.github.io) 421 | - [Lisa Savoie](http://lscodes.com) 422 | - [Liz Lam](https://lizlam.github.io) 423 | - [Long Do](https://longpdo.github.io) 424 | - [Luca Lischetti](https://sirlisko.com) 425 | - [Lucas Dantas](https://dantsdev.vercel.app) 426 | - [Luis Cacho](https://luiscachog.io) 427 | 428 | ## M 429 | 430 | - [Madhan K](https://madhank93.github.io) 431 | - [Mads Hougesen](https://mhouge.dk) 432 | - [Maduakor Emmanuel](https://emmajs.vercel.app) 433 | - [Mahmoud AlSharif](https://malsharif.me) 434 | - [Makechi Eric](https://love-makechi.web.app) 435 | - [Malik Muhammad Safwan](https://maliksafwan.netlify.app) 436 | - [Marc Backes](http://marc.dev) 437 | - [Marieflor Bawanan](https://marieflor.dev) 438 | - [Marijan Smetko](https://msmetko.xyz) 439 | - [Mario Kandut](https://www.mariokandut.com) 440 | - [Mariya Baig](https://mariyabaig.vercel.app/)([@mariyabaig](https://github.com/mariyabaig)) 441 | - [Marko Denic](https://markodenic.com) 442 | - [Markus Polzer](https://www.rapidtech1898.com) 443 | - [Marouane Rassili](https://mrassili.com) 444 | - [Mason Slover](https://github.com/MasonSlover/ProcessingPortfolio) 445 | - [Mateus Felipe G.](https://mateusf.com) 446 | - [Matheus Misumoto](https://matheusmisumoto.dev) 447 | - [Matheus Victor](https://matheusvictor.vercel.app) 448 | - [MathisCool](https://mathiscool.is-a.dev) 449 | - [Mathis Zeghouani](https://mathisdev.pro) 450 | - [Matt Filer](http://mattfiler.co.uk) 451 | - [Matvey Kottsov](https://matvey.codes) 452 | - [Maverick](https://supacode.dev) 453 | - [Max Juškevič](https://www.juskevic.com/) 454 | - [Maxim Villivald](https://villivald.com) 455 | - [Maya Shavin](https://www.mayashavin.com) 456 | - [Mayank Aggarwal](https://mayank0255.github.io) 457 | - [Md Emon Hossen](https://emonhossen.xyz) 458 | - [Md Nabil Ahsan](https://www.mdnabilahsan.com) 459 | - [Md Usman Ansari](https://mdusmanansari.netlify.app) 460 | - [Melvin Jones Repol](https://mrepol742.github.io) 461 | - [Melvyn Malherbe](https://melvynx.com) 462 | - [Mertcan Kose](https://mertcankose.vercel.app) 463 | - [Michaell Alavedra](https://www.michaellalavedra.com/) 464 | - [Michael Hoffmann (Mokkapps)](https://mokkapps.de) 465 | - [Michel de Freitas](https://michelfreitas.com) 466 | - [Michelle Brenner](https://michellebrenner.com) 467 | - [Miguel Rodriguez](https://migu.es) 468 | - [Minmitha A](https://minmitha.vercel.app) 469 | - [Mitul Savani](http://mitulsavani.com) 470 | - [Mohamad Fadhil Yaacob](https://fadhil-blog.dev) 471 | - [Mohammad Haaris Iqubal](http://haarisiqubal.github.io) 472 | - [Mohammad Rahmani](https://afgprogrammer.com) 473 | - [Mohamed Zhioua](https://mohamedzhioua.vercel.app) 474 | - [Mohamad Zubi](https://mohamad-zubi.com) 475 | - [Mohammed-Yousuf Hamid](https://mohammedcodes.dev) 476 | - [Mohit Paudyal](https://findmohit.netlify.app) 477 | - [Monir Hossain](https://monirhrabby.com) 478 | - [Monir Hossain Rabby](https://www.monirhrabby.com) 479 | - [Morelen Yim](https://morelenyim.com) 480 | - [Moritz Kornher](https://moritzkornher.de) 481 | - [Mostafa Abdelhamid](https://mostafa-abdelhamid.com) 482 | - [Mouad ZIANI](https://mouadziani.github.io) 483 | - [Muhammad Muhaddis](https://muhaddis.info) 484 | - [Muhammad Naeem Tahir](https://muhammadnaeemtahir.github.io) 485 | - [Muhammad Rashid](https://iamrashy.netlify.app) 486 | - [Muhammad Saad Siddique](https://saad-muhammadsaadsiddique.vercel.app) 487 | - [Mukul Chugh](https://mukulchugh.com) 488 | - [Musaddiq Ashfaq](https://musaddiq-ashfaq.github.io/Portfolio) 489 | - [Mustafa Bhikhapurwala](https://mustafabhikhapur.me/) 490 | - [Mustapha Nkhili](https://mustapha-nkhili.web.app) 491 | - [Muzaffer Kadir YILMAZ](https://mkdir.dev) 492 | 493 | ## N 494 | 495 | - [Nacho Caiafa](https://nachokai.github.io/rpg-cv) 496 | - [Nader Ferjani](https://nader.run) 497 | - [Nahid Hasan](https://mdnahidhasan.netlify.app) 498 | - [Nathan Simpson](https://nathansimpson.design) 499 | - [Naveed Ahmed](https://www.trixum.net) 500 | - [Nayan Das](https://www.nayandas.dev) 501 | - [Nazia Shehnaz Joynab](https://geek-a-byte.github.io) 502 | - [Neelanjan Chakraborty](https://neelanjan-chakraborty.github.io) 503 | - [Nhlanhla Hasane](https://nhlanhlahasane.netlify.app) 504 | - [Nicholas Gannon](https://nicholasgannon.io/) 505 | - [Nico Bachner](https://nicobachner.com) 506 | - [Nico van Zyl](https://nicovanzyl.com) 507 | - [Nicolo Rebughini](https://nirebu.com) 508 | - [Nikita Sobolev](https://sobolevn.me) 509 | - [Nilesh Fatfatwale](https://nileshfatfatwale.vercel.app/) 510 | - [Nilkanth Patadiya](https://nilkanthpatadiya.vercel.app) 511 | - [Nipun Jain](https://lucifernipun22.github.io) 512 | - [Nisarg Patel](https://nisarg.io) 513 | - [Nischal Dutt](https://nischaldutt.netlify.app) 514 | - [Nishant Banjade](https://nishantbanjade.com.np) 515 | - [Nitesh Seram](https://niteshseram.in) 516 | - [Nurliman Diara](https://nurliman.dev) 517 | - [Nuwan Jaliyagoda](http://nuwanjaliyagoda.com) 518 | 519 | ## O 520 | 521 | - [Oktay Shakirov](https://oktayshakirov.com) 522 | - [Olaolu Olawuyi](https://olaolu.dev) 523 | - [Om](https://omchaudhari1107.github.io) 524 | - [Omar Gastón Chalas](https://ogaston.com) 525 | - [Omari Thompson-Edwards](https://omarileon.me) 526 | - [Omargpax](https://omargpax.pages.dev) 527 | - [Onur Şuyalçınkaya](https://onur.dev/) 528 | - [Opeyemi Obembe](http://obem.be/opeyemi) 529 | - [Oraz Gulchayew](https://orazgulcayew.vercel.app) 530 | - [Orion Dobos](https://oriondobos.com/) 531 | - [Oscar Tian](http://www.bluexguardian.com) 532 | - [Oussama Bouchikhi](https://oussamabouchikhi.github.io) 533 | - [Oussama Bonnor](https://oussamabonnor1.github.io/portfolio) 534 | 535 | ## P 536 | 537 | - [Paal Stakvik](https://paalss.vercel.app) 538 | - [Pandiyan Murugan](https://pandiyancool.github.io/pandiyan.cool) 539 | - [Panhareach Phat](https://phatpanhareach.vercel.app) 540 | - [Pankaj Gaikar](https://pankajgaikar.com) 541 | - [Parth Mittal](https://parthmittal.netlify.app) 542 | - [Patricia Aas](https://patricia.no) 543 | - [Patrick Chiu](https://patrick-kw-chiu.github.io) 544 | - [Patrick Hyatt](https://www.patrickhyatt.com) 545 | - [Patrick Lehmann](https://patlehmann1.github.io/react_portfolio) 546 | - [Patrick Obermeier](https://www.patrickobermeier.at) 547 | - [Patrick Reid](http://iamreliq.com) 548 | - [Pan Wei Lian](https://williamson922.github.io) 549 | - [Paul Koeck](https://paul.koeck.dev) 550 | - [Pawaret Meungkaew](https://www.pawaret.dev) 551 | - [Pazindu Shane](https://pazindushane.github.io) 552 | - [Pedro Reis](https://preis.tech) 553 | - [Peter Gallwas](https://peter.husky.nz) 554 | - [Philip Johnson](https://philipmjohnson.org) (made with [TechFolios](https://techfolios.github.io)) 555 | - [Philipe Almeida](https://palmeida.netlify.app) 556 | - [Pieter-Jan Scheir](https://www.pieterjanscheir.com) 557 | - [Poonam Chauhan](https://poo17nam.github.io/profile) 558 | - [Pramesh Karki](https://karkipramesh.com.np) 559 | - [Pranshu Patel](https://pranshu05.vercel.app) 560 | - [Praveen Kumar Purushothaman](https://praveen.science) 561 | - [Preet Suthar](https://preetsuthar.me) 562 | - [Prince Kumar](https://www.princecodes.online) 563 | - [Priya Nayak](https://priya180975.github.io/portfolio) 564 | - [Pushkar Patel](https://thepushkarp.com) 565 | - [Pushpak Chhajed](https://pushpak1300.github.io) 566 | 567 | ## Q 568 | 569 | - [Quentin Berthet](https://quentinberthet.ch) [source code](https://github.com/BerthetQuentin/personal-WebSite) 570 | - [Qui Nguyen](https://www.lexnguyen.dev) 571 | 572 | ## R 573 | 574 | - [Rachel Tschanz](https://rtdevcraft.com/) 575 | - [Rachit Bharadwaj](https://rachit.infornics.com) 576 | - [Rakibul Islam](https://rakibul-islam-hasib.web.app) 577 | - [Rabin Poudyal](https://rabinpoudyal.com.np) 578 | - [Rafael Salazar](https://rafalazar.github.io) 579 | - [Rafael Santana](https://www.rafaelsantana.dev) 580 | - [Rahul Bhatija](https://rahulbhatija.com) 581 | - [Rahul Kumar](https://rahulbaran.vercel.app) 582 | - [Rahul Raj](https://rahulrajsb.me) 583 | - [Rahul Sawant](http://raalzz.com) 584 | - [Raj Aryan](https://rajxryan.vercel.app) 585 | - [Rajan Bhattarai](https://cdrrazan.com) 586 | - [Rajekevin](https://rajekevin.fr) 587 | - [Rajesh Kumar Yadav](https://rajeshkumaryadav.com/) 588 | - [Rakib Sarowar](https://rakibsarowar.com) 589 | - [Ralf D. Müller](https://fiveandahalfstars.ninja/rdmueller.html) 590 | - [Ramesh Kumar](https://rameskum.com) 591 | - [Razin Rayees](https://razin.in) 592 | - [Remi Jara](https://www.remi-jara.fr) 593 | - [Rick Hanlon](https://rickhanlonii.github.io) 594 | - [Rifat Ishtiyak](https://rifat-ishtiyak.web.app) 595 | - [Riley J. Shaw](https://rileyjshaw.com) 596 | - [Rimenes Ribeiro](https://rimenesribeiro.com) 597 | - [Rishabh Kushwah](https://rishabhkushwah.netlify.app) 598 | - [Rishabh Rawat](https://rrawat.com) 599 | - [Rohit Kushwaha](https://rohitk06.vercel.app) 600 | - [Rohit Wadhwa](https://github.com/rohit-wadhwa) 601 | - [Roland L. Taylor](http://rolandixor.pro) 602 | - [Roman Smunyov](https://romanisthere.github.io) 603 | - [Ronny Coste](https://ronnycoste.com) 604 | - [Roshan Kr Soni](https://roshankrsoni.github.io) 605 | - [Ruhban Abdullah](https://developerruhban.com/) 606 | - [Rutik Kulkarni](https://www.crio.do/learn/portfolio/rutikkulkarni2001) 607 | - [Ryan Burgess](http://ryanburgess.com) 608 | - [Ryan MacLean](http://ryanmaclean.com) 609 | 610 | ## S 611 | 612 | - [Saahil D](https://saahild.com) 613 | - [Sachin Srinivasan](https://s8sachin.github.io) 614 | - [Safoor Safdar](https://safoorsafdar.com) 615 | - [Sagar Giri](https://girisagar46.github.io) 616 | - [Sagar Khurana](https://hellosagar.vercel.app) 617 | - [Sagar Mude](https://sagarmude.netlify.app) 618 | - [Sai Sudheer Dontha](https://github.com/saisudhir14) 619 | - [Sai Teja](https://saiteja13427.github.io) 620 | - [Said Kharboutli](https://saidk.io) 621 | - [Saif Ur Rehman](https://saifwebdev.netlify.app) 622 | - [Saksham Agarwal](https://skshamagarwal.github.io/) 623 | - [Salman Ibrahim](https://salman-ibrahim.github.io) 624 | - [Samarth Kadam](https://samarthkadam.vercel.app) 625 | - [Samik Malhotra](https://samikmalhotra.netlify.app) 626 | - [Samrat Mitra](https://lionelsamrat10.github.io) 627 | - [Sandeep Vashishtha](https://vashishtha.live) 628 | - [Sanee Itas](https://saneeitas.netlify.app) 629 | - [Santosh Yadav](http://santoshyadav.dev) 630 | - [Sanyam Kumar](https://sanyam.dev) 631 | - [Sarang N](https://srng.dev) 632 | - [Saroj Pradhan](https://pradhansaroj.com.np) 633 | - [Sarvesh Patil](https://sarveshpatil.com) 634 | - [Satish Jhanwer](https://satishjhanwer.github.io) ([@satishjhanwer](https://github.com/satishjhanwer)) 635 | - [Satyam Gupta](https://imlolman.github.io) ([@imlolman](https://github.com/imlolman)) 636 | - [Saurabh Daware](https://www.saurabhdaware.in) 637 | - [Saurav M H](https://sauravmh.com) 638 | - [Sayantan Basu](https://sayantan-basu.vercel.app/) 639 | - [Sayyid Marvan](https://sayyidmarvanvt.vercel.app/) 640 | - [Schleidens Dev](https://schleidens.netlify.app) 641 | - [Sckoorp](https://sckoorp.com) 642 | - [Scott Spence](https://scottspence.com) 643 | - [Sebastian Cherny](https://sebascherny.github.io/) 644 | - [Sergei Chestakov](https://sergei.com) 645 | - [Seth Hall](https://sethhallcreative.com) 646 | - [Seunghun Bang](https://seunghun-website.vercel.app) (Software Engineer | Support Engineer)](https://github.com/a1603169) 647 | - [Shaan Khan](https://www.shaankhan.dev) 648 | - [Shahid Shaikh](http://shahidshaikh.com) 649 | - [Shakhzhakhan Maxudbek](https://args.tech) 650 | - [Shannon Crabill](http://shannoncrabill.com) 651 | - [Shanthosh Krishnakumar](https://drmsweb.com) 652 | - [Shashank Kumar Chaudhary](https://my-portfolio-shashank-crypto.vercel.app) 653 | - [Shashank Shet](https://shashank-shet.vercel.app/) 654 | - [Shaun Furtado](https://shaunfurtado.is-a.dev) 655 | - [Shikhar Gupta](https://shikhar97.github.io) 656 | - [Shiva Raj Paudel](https://shivarajpaudel.com.np/) 657 | - [Shivam Raj](https://shivxmr.netlify.app) 658 | - [Shivesh Chaturvedi](https://shivesh1606.github.io/portfolio) 659 | - [Shivram Sambhus](https://shivi.io) 660 | - [Shrey Asthana](https://shrey-asthana-portfolio.netlify.app) 661 | - [Shubham Chaturvedi](https://shu8ham.netlify.app) 662 | - [Shubham Gaur](https://shubhamessier.github.io/portfolio) 663 | - [Shubham Tarade](https://coder-shanks.github.io) 664 | - [Shuvam Manna](http://shuvam.xyz) 665 | - [Silas Rodrigues](https://silasrodrigues.vercel.app) 666 | - [Simon Knott](https://simonknott.de) 667 | - [Siyana Zdravkova](https://szwebdeveloper.netlify.app) 668 | - [Sneha Ratnani](https://www.sneharatnani.com) 669 | - [Soham Mondal](https://sohammondal.com) 670 | - [Sourabh Kothari](https://sourabhkothari.vercel.app) 671 | - [Sourav Dutta](http://i-am-souravdutta.firebaseapp.com) 672 | - [Sree Godavarthi](http://sreegodavarthi.github.io) 673 | - [Stefan Bohacek](https://fourtonfish.com) 674 | - [Stefan Topalovic](https://www.stefantopalovic.com/) 675 | - [Stéphane Chan Hiou Kong](https://chan-stephane.github.io) 676 | - [Sumonta Saha Mridul](https://sumonta056.github.io) 677 | - [Syed Muhammad Abdullah Ahsan](https://linktr.ee/abdullahahsan) 678 | 679 | ## T 680 | 681 | - [Tanisha Gupta](https://tanishagupta1.github.io/Tanisha-Gupta-portfolio) 682 | - [Taranjeet Singh](https://taranjeet.co) 683 | - [Tejas Kumar](http://tej.as) 684 | - [Tejaswi Chaudhari](https://tejaswichaudhari.me) 685 | - [Tek Kshetri](http://tekkshetri.com.np) 686 | - [Tek Raj Joshi](https://t3kraj.netlify.app) 687 | - [Thomas David](https://thomas-david-portfolio.netlify.app) 688 | - [Tiago Hermano](https://tiagohermano.dev) 689 | - [Tiago Leite](https://www.tiagocreator.com) 690 | - [Tim Jones](https://timmoth.com) 691 | - [Tim Stanton](https://www.tim-stanton.dev) 692 | - [Thea Choem](https://thea.juniorise.com) 693 | - [Thea Mushambadze](https://highflyer910.github.io) 694 | - [TheKaushikGoswami](https://thekaushikgoswami.github.io) 695 | - [Thibaud Dervily](https://www.thibaud-dervily.fr) 696 | - [Thibault Mathian](https://thibault.sh) 697 | - [TJ Klint](https://tjklint.github.io) 698 | - [Torben Korb](https://www.digital-creative.de) 699 | - [Travis Fischer](https://transitivebullsh.it) 700 | - [Tristan Chin](https://www.chintristan.io) 701 | - [Tsiry Sandratraina](https://tsiry-sandratraina.com) 702 | 703 | ## U 704 | 705 | - [Uday Bagda](https://terminal-portfolio-seven-black.vercel.app/) 706 | - [Uday Lunawat](https://udaylunawat.github.io) 707 | - [Uğur Atmaca](https://uguratmacacv.web.app) 708 | - [Ullas Arwan](https://ullas.xyz) 709 | - [Ulysse Pavloff](https://pavloffulysse.com/) 710 | - [Utkarsh Maurya](https://utkarshs-terminal.netlify.app) 711 | - [Utsav Ghimire](https://www.utsavghimire.com.np) 712 | 713 | ## V 714 | 715 | - [Vansh Mehta](https://vansh-mehta-portfolio.vercel.app/) 716 | - [Vaibhav Jaiswal](https://vaibhavjaiswal.vercel.app/#) 717 | - [Vaibhav Padmani](https://vi0650.github.io/) 718 | - [Vaibhav Prajapat](https://vai-portfolio.netlify.app) 719 | - [Vaibhav Singh](http://vaibhavsingh97.com) 720 | - [Vaidhyanathan S M](https://vaidhyanathansm.netlify.app) 721 | - [Vamsi Krishna Chandaluri](https://vamsi-krishna-portfolio.vercel.app) 722 | - [Varun Dey](https://varundey.me) 723 | - [Vatsal Shah](https://vatsalshah.in) 724 | - [Vedant Athavale](https://vedantathavale.webflow.io) 725 | - [Vedant Milind Athavale](http://vedant-athavale.byethost31.com/portfolio.html?i=1) 726 | - [Vibhor Arya](https://vibhorarya12.vercel.app/) 727 | - [Victor Aremu](http://bit.ly/victoraremu) 728 | - [Vidushan Chooriyakumaran](https://vidu.sh/an) 729 | - [Vijay Singh](https://itsvj.me) 730 | - [Vijay Verma](https://vjy.me) 731 | - [Vikas Ukani](https://vikas-ukani.github.io) 732 | - [Vinay Somawat](https://vinaysomawat.github.io) 733 | - [Vinit Shahdeo](https://vinitshahdeo.com) 734 | - [Vishal Rai](https://vishalrai.netlify.app/)) 735 | - [Vishwanath B](https://frozenhearth.vercel.app) 736 | - [Vishwasa Navada K](https://vishwas.tech) 737 | - [Vitaliy Ivanov](https://vitaliy.vercel.app) 738 | - [Vito Sartori](https://vito.io) 739 | - [Vivek Patel](http://vivek9patel.com) 740 | - [Vivek Patel - Ubuntu](http://vivek9patel.github.io) 741 | - [Vladyslav Kryvytchenko](https://www.vladfrontend.pro) 742 | - [vm ](https://vmthedev.web.app) 743 | - [Volkan Kabay](https://volkankabay.com/) 744 | 745 | ## W 746 | 747 | - [Wilson Mun](https://rebrand.ly/wilsonmun) 748 | - [William Thanh Long](https://long18.github.io) ([@Long18](https://github.com/Long18)) 749 | 750 | ## Y 751 | 752 | - [Yared Tekileselassie](https://yared.vercel.app) 753 | - [Yaroslav Lebedenko](https://portfolio-nailheart.vercel.app) 754 | - [Yash Datir](https://yashdatir.github.io/profile-os) 755 | - [Yash Johri](https://yash1200.github.io) 756 | - [Yashita Namdeo](https://yashitanamdeo.github.io) 757 | - [Yassine Haimouch](https://gitcoder.vercel.app) 758 | - [Yasmin Lopes](https://yasminlopes.netlify.app) 759 | - [Yeabsira Tarekegn](https://yeabsiras-portfolio.vercel.app) 760 | - [Yechiel Kalmenson](https://yechiel.me) 761 | - [YiMing Han](https://yiminghan.com) 762 | - [Yogesh Choudhary Paliyal](https://yogeshpaliyal.com) 763 | - [Yuji Sato](https://yujisatojr.github.io/react-portfolio-template) 764 | - [Yuri Faria](https://windows87.github.io) 765 | - [Yusuf Yıldırım](https://www.yusufyildirim.dev) 766 | 767 | ## Z 768 | 769 | - [Zak Plumridge](https://zakplumridge.co.uk/) 770 | - [ZHENG Robert](https://www.robert.hase-zheng.net) 771 | - [Ziyad](https://ziyadsk.github.io/portfolio-V2) 772 | - [Zobaidul Kazi](https://zobkazi.github.io/) 773 | - [Zonayed Ahmed](https://zonayed.me) 774 | --------------------------------------------------------------------------------