mirror of
https://github.com/emmabostian/developer-portfolios.git
synced 2025-01-23 01:46:00 +00:00
Merge pull request #1260 from emmabostian/master
add my portfolio Nahid Hasan
This commit is contained in:
commit
f2c664d821
22
.github/workflows/link-checker.yml
vendored
22
.github/workflows/link-checker.yml
vendored
@ -1,20 +1,26 @@
|
|||||||
on:
|
on:
|
||||||
repository_dispatch:
|
repository_dispatch:
|
||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
schedule:
|
schedule:
|
||||||
- cron: "00 18 * * *"
|
- cron: "00 18 * * 0"
|
||||||
name: Check markdown links
|
name: Check markdown links
|
||||||
jobs:
|
jobs:
|
||||||
linkChecker:
|
linkChecker:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v3
|
||||||
|
|
||||||
- name: Link Checker
|
- name: Link Checker
|
||||||
uses: lycheeverse/lychee-action@v1.0.6
|
id: lychee
|
||||||
|
uses: lycheeverse/lychee-action@v1.6.1
|
||||||
with:
|
with:
|
||||||
args: README.md
|
args: README.md
|
||||||
|
env:
|
||||||
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
|
||||||
- name: Create Issue From File
|
- name: Create Issue From File
|
||||||
uses: peter-evans/create-issue-from-file@v2
|
if: env.lychee_exit_code != 0
|
||||||
|
uses: peter-evans/create-issue-from-file@v4
|
||||||
with:
|
with:
|
||||||
title: "[Bot] Broken Links Report"
|
title: "[Bot] Broken Links Report"
|
||||||
content-filepath: ./lychee/out.md
|
content-filepath: ./lychee/out.md
|
||||||
|
171
.gitignore
vendored
Executable file
171
.gitignore
vendored
Executable file
@ -0,0 +1,171 @@
|
|||||||
|
|
||||||
|
# Created by https://www.gitignore.io/api/linux,visualstudiocode,jetbrains+all,sublimetext,vim
|
||||||
|
# Edit at https://www.gitignore.io/?templates=linux,visualstudiocode,jetbrains+all,sublimetext,vim
|
||||||
|
|
||||||
|
.DS_Store
|
||||||
|
|
||||||
|
### JetBrains+all ###
|
||||||
|
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and WebStorm
|
||||||
|
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
|
||||||
|
|
||||||
|
# User-specific stuff
|
||||||
|
.idea/**/workspace.xml
|
||||||
|
.idea/**/tasks.xml
|
||||||
|
.idea/**/usage.statistics.xml
|
||||||
|
.idea/**/dictionaries
|
||||||
|
.idea/**/shelf
|
||||||
|
|
||||||
|
# Generated files
|
||||||
|
.idea/**/contentModel.xml
|
||||||
|
|
||||||
|
# Sensitive or high-churn files
|
||||||
|
.idea/**/dataSources/
|
||||||
|
.idea/**/dataSources.ids
|
||||||
|
.idea/**/dataSources.local.xml
|
||||||
|
.idea/**/sqlDataSources.xml
|
||||||
|
.idea/**/dynamic.xml
|
||||||
|
.idea/**/uiDesigner.xml
|
||||||
|
.idea/**/dbnavigator.xml
|
||||||
|
|
||||||
|
# Gradle
|
||||||
|
.idea/**/gradle.xml
|
||||||
|
.idea/**/libraries
|
||||||
|
|
||||||
|
# Gradle and Maven with auto-import
|
||||||
|
# When using Gradle or Maven with auto-import, you should exclude module files,
|
||||||
|
# since they will be recreated, and may cause churn. Uncomment if using
|
||||||
|
# auto-import.
|
||||||
|
# .idea/modules.xml
|
||||||
|
# .idea/*.iml
|
||||||
|
# .idea/modules
|
||||||
|
# *.iml
|
||||||
|
# *.ipr
|
||||||
|
|
||||||
|
# CMake
|
||||||
|
cmake-build-*/
|
||||||
|
|
||||||
|
# Mongo Explorer plugin
|
||||||
|
.idea/**/mongoSettings.xml
|
||||||
|
|
||||||
|
# File-based project format
|
||||||
|
*.iws
|
||||||
|
|
||||||
|
# IntelliJ
|
||||||
|
out/
|
||||||
|
|
||||||
|
# mpeltonen/sbt-idea plugin
|
||||||
|
.idea_modules/
|
||||||
|
|
||||||
|
# JIRA plugin
|
||||||
|
atlassian-ide-plugin.xml
|
||||||
|
|
||||||
|
# Cursive Clojure plugin
|
||||||
|
.idea/replstate.xml
|
||||||
|
|
||||||
|
# Crashlytics plugin (for Android Studio and IntelliJ)
|
||||||
|
com_crashlytics_export_strings.xml
|
||||||
|
crashlytics.properties
|
||||||
|
crashlytics-build.properties
|
||||||
|
fabric.properties
|
||||||
|
|
||||||
|
# Editor-based Rest Client
|
||||||
|
.idea/httpRequests
|
||||||
|
|
||||||
|
# Android studio 3.1+ serialized cache file
|
||||||
|
.idea/caches/build_file_checksums.ser
|
||||||
|
|
||||||
|
### JetBrains+all Patch ###
|
||||||
|
# Ignores the whole .idea folder and all .iml files
|
||||||
|
# See https://github.com/joeblau/gitignore.io/issues/186 and https://github.com/joeblau/gitignore.io/issues/360
|
||||||
|
|
||||||
|
.idea/
|
||||||
|
|
||||||
|
# Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-249601023
|
||||||
|
|
||||||
|
*.iml
|
||||||
|
modules.xml
|
||||||
|
.idea/misc.xml
|
||||||
|
*.ipr
|
||||||
|
|
||||||
|
# Sonarlint plugin
|
||||||
|
.idea/sonarlint
|
||||||
|
|
||||||
|
### Linux ###
|
||||||
|
*~
|
||||||
|
|
||||||
|
# temporary files which can be created if a process still has a handle open of a deleted file
|
||||||
|
.fuse_hidden*
|
||||||
|
|
||||||
|
# KDE directory preferences
|
||||||
|
.directory
|
||||||
|
|
||||||
|
# Linux trash folder which might appear on any partition or disk
|
||||||
|
.Trash-*
|
||||||
|
|
||||||
|
# .nfs files are created when an open file is removed but is still being accessed
|
||||||
|
.nfs*
|
||||||
|
|
||||||
|
### SublimeText ###
|
||||||
|
# Cache files for Sublime Text
|
||||||
|
*.tmlanguage.cache
|
||||||
|
*.tmPreferences.cache
|
||||||
|
*.stTheme.cache
|
||||||
|
|
||||||
|
# Workspace files are user-specific
|
||||||
|
*.sublime-workspace
|
||||||
|
|
||||||
|
# Project files should be checked into the repository, unless a significant
|
||||||
|
# proportion of contributors will probably not be using Sublime Text
|
||||||
|
# *.sublime-project
|
||||||
|
|
||||||
|
# SFTP configuration file
|
||||||
|
sftp-config.json
|
||||||
|
|
||||||
|
# Package control specific files
|
||||||
|
Package Control.last-run
|
||||||
|
Package Control.ca-list
|
||||||
|
Package Control.ca-bundle
|
||||||
|
Package Control.system-ca-bundle
|
||||||
|
Package Control.cache/
|
||||||
|
Package Control.ca-certs/
|
||||||
|
Package Control.merged-ca-bundle
|
||||||
|
Package Control.user-ca-bundle
|
||||||
|
oscrypto-ca-bundle.crt
|
||||||
|
bh_unicode_properties.cache
|
||||||
|
|
||||||
|
# Sublime-github package stores a github token in this file
|
||||||
|
# https://packagecontrol.io/packages/sublime-github
|
||||||
|
GitHub.sublime-settings
|
||||||
|
|
||||||
|
### Vim ###
|
||||||
|
# Swap
|
||||||
|
[._]*.s[a-v][a-z]
|
||||||
|
[._]*.sw[a-p]
|
||||||
|
[._]s[a-rt-v][a-z]
|
||||||
|
[._]ss[a-gi-z]
|
||||||
|
[._]sw[a-p]
|
||||||
|
|
||||||
|
# Session
|
||||||
|
Session.vim
|
||||||
|
Sessionx.vim
|
||||||
|
|
||||||
|
# Temporary
|
||||||
|
.netrwhist
|
||||||
|
# Auto-generated tag files
|
||||||
|
tags
|
||||||
|
# Persistent undo
|
||||||
|
[._]*.un~
|
||||||
|
|
||||||
|
### VisualStudioCode ###
|
||||||
|
.vscode/*
|
||||||
|
!.vscode/settings.json
|
||||||
|
!.vscode/tasks.json
|
||||||
|
!.vscode/launch.json
|
||||||
|
!.vscode/extensions.json
|
||||||
|
|
||||||
|
### VisualStudioCode Patch ###
|
||||||
|
# Ignore all local history of files
|
||||||
|
.history
|
||||||
|
|
||||||
|
# End of https://www.gitignore.io/api/linux,visualstudiocode,jetbrains+all,sublimetext,vim
|
||||||
|
n
|
8
.idea/modules.xml
generated
Normal file
8
.idea/modules.xml
generated
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
<?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
Normal file
6
.idea/vcs.xml
generated
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<project version="4">
|
||||||
|
<component name="VcsDirectoryMappings">
|
||||||
|
<mapping directory="" vcs="Git" />
|
||||||
|
</component>
|
||||||
|
</project>
|
@ -24,8 +24,8 @@ This guide has been modified from [freeCodeCamp's Contributors Guide](https://gi
|
|||||||
|
|
||||||
### Forking Developer Portfolios
|
### Forking Developer Portfolios
|
||||||
|
|
||||||
1. Go to the top level page of this [repository](https://github.com/emmawedekind/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/))
|
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>
|
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
|
### Cloning Your Fork
|
||||||
@ -68,7 +68,7 @@ On branch master
|
|||||||
Your branch is up to date with 'origin/master'.
|
Your branch is up to date with 'origin/master'.
|
||||||
```
|
```
|
||||||
|
|
||||||
If your aren't on `master`, resolve outstanding files / commits and checkout the `master` branch
|
If you aren't on `master`, resolve outstanding files/commits and checkout the `master` branch
|
||||||
|
|
||||||
```shell
|
```shell
|
||||||
$ git checkout master
|
$ git checkout master
|
||||||
@ -80,7 +80,7 @@ $ git checkout master
|
|||||||
$ 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 an additional commits in your local repo.
|
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:
|
||||||
|
|
||||||
@ -90,15 +90,15 @@ $ git merge upstream/master
|
|||||||
|
|
||||||
### Create a Branch
|
### Create a Branch
|
||||||
|
|
||||||
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.
|
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.
|
||||||
|
|
||||||
#### Naming Your Branch
|
#### Naming Your Branch
|
||||||
|
|
||||||
There several strategies for naming branches.
|
There are several strategies for naming branches.
|
||||||
|
|
||||||
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.
|
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.
|
||||||
|
|
||||||
We'd recommend to name it something that relevant to your new site (i.e. `add/your-name`
|
We'd recommend naming it something that is relevant to your new site (i.e. `add/your-name`
|
||||||
|
|
||||||
#### Adding Your Branch
|
#### Adding Your Branch
|
||||||
|
|
||||||
@ -158,7 +158,7 @@ This is the recommended method. Read about [How to Setup and Maintain a Local In
|
|||||||
|
|
||||||
6. Check your `git status` to see unstaged files.
|
6. Check your `git status` to see unstaged files.
|
||||||
|
|
||||||
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 added. Review your `git status` first.
|
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.
|
||||||
|
|
||||||
8. Make sure your new site is added **alphabetically** to the existing list.
|
8. Make sure your new site is added **alphabetically** to the existing list.
|
||||||
|
|
||||||
@ -170,7 +170,7 @@ See [Useful Tips for writing better Git commit messages](https://code.likeagirl.
|
|||||||
|
|
||||||
As a note, use the present tense for your commit messages (i.e. `Add` instead of `Added`).
|
As a note, use the present tense for your commit messages (i.e. `Add` instead of `Added`).
|
||||||
|
|
||||||
10. If you would want to add/remove changes to 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).
|
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).
|
||||||
|
|
||||||
11. Push your commits to your GitHub Fork: `git push origin add/your-name`
|
11. Push your commits to your GitHub Fork: `git push origin add/your-name`
|
||||||
|
|
||||||
@ -179,7 +179,7 @@ As a note, use the present tense for your commit messages (i.e. `Add` instead of
|
|||||||
13. By default, all pull requests should be against the `Developer Portfolios` main repo, `master` branch.
|
13. By default, all pull requests should be against the `Developer Portfolios` main repo, `master` branch.
|
||||||
**Make sure that your Base Fork is set to developer-portfolios/master when raising a Pull Request.**
|
**Make sure that your Base Fork is set to developer-portfolios/master when raising a Pull Request.**
|
||||||
|
|
||||||
14. Submit a pull request from your branch to `Developer Portfolios` `master` branch.
|
14. Submit a pull request from your branch to the `Developer Portfolios` `master` branch.
|
||||||
|
|
||||||
15. The title (also called the subject) of your PR should be descriptive of your changes and succinctly indicate what is being fixed.
|
15. The title (also called the subject) of your PR should be descriptive of your changes and succinctly indicate what is being fixed.
|
||||||
|
|
||||||
|
228
README.md
Executable file → Normal file
228
README.md
Executable file → Normal file
@ -17,66 +17,87 @@ 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/)
|
||||||
- [Aaron Dunphy](https://aarondunphy.com)
|
- [Aaron Dunphy](https://aarondunphy.com)
|
||||||
- [Aaryanna Simonelli](https://ashleighsimonelli.co.uk)
|
- [Aaryanna Simonelli](https://ashleighsimonelli.co.uk)
|
||||||
- [Aashutosh Rathi](https://aashutosh.dev)
|
- [Aashutosh Rathi](https://aashutosh.dev)
|
||||||
- [Aayush Kurup](https://aayushk47.tech)
|
- [Aayush Kurup](https://aayushkurup.dev)
|
||||||
- [Abdelouahed Medjoudja](https://geekabdelouahed.github.io/flutter-web-portfolio)
|
- [Abass Dev](https://abassdev.com)
|
||||||
|
- [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 Rahman](https://abdulrahman.id/)
|
||||||
- [Abdul Rauf](https://armujahid.me)
|
- [Abdul Rauf](https://armujahid.me)
|
||||||
|
- [Abdusamad Malikov](https://www.abdusamad.uz)
|
||||||
- [Abhinav Galodha](https://www.galodha.com)
|
- [Abhinav Galodha](https://www.galodha.com)
|
||||||
|
- [Abhinav Kumar](https://my-portfolio-flax-kappa.vercel.app/)
|
||||||
|
- [Abolfazl Abdali](https://abdali.dev/)
|
||||||
- [Adam Alston](https://www.adamalston.com)
|
- [Adam Alston](https://www.adamalston.com)
|
||||||
- [Adam Conrad](http://conradadam.com)
|
|
||||||
- [Adil Aboulkacim](https://adilaboulkacim.com/)
|
- [Adil Aboulkacim](https://adilaboulkacim.com/)
|
||||||
- [Aditya Vikram Singh](https://www.adityavsingh.com/)
|
- [Aditya Vikram Singh](https://www.adityavsingh.com/)
|
||||||
- [Adityakumar Sinha](https://aditya113141.github.io/)
|
- [Adityakumar Sinha](https://aditya113141.github.io/)
|
||||||
- [Agney Menon](https://agney.dev)
|
- [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 Zougari](https://ahmedzougari.com)
|
||||||
- [Ahsan Khan](https://ahsankhan.me/)
|
- [Ahsan Khan](https://ahsankhan.me/)
|
||||||
|
- [Ajay Kannan](https://ajaykannan.netlify.app/)
|
||||||
- [Akash Pawara](https://akashpawara.com)
|
- [Akash Pawara](https://akashpawara.com)
|
||||||
- [Akash Rajpurohit](https://akashrajpurohit.com/)
|
- [Akash Rajpurohit](https://akashrajpurohit.com/)
|
||||||
- [Akshat Gupta](https://www.akshatvg.com)
|
- [Akshat Gupta](https://www.akshatvg.com)
|
||||||
- [Alejandro Sobko](http://alejandrosobko.com)
|
- [Alejandro Sobko](http://alejandrosobko.com)
|
||||||
- [Alestor Aldous](http://alestor123.github.io/)
|
- [Alestor Aldous](http://alestor123.github.io/)
|
||||||
- [Alex Goff](http://alex-goff.com)
|
- [Alex Michailidis](https://alexandros.tech/)
|
||||||
- [Alexander Schmidt](https://alexanderschmidt.info/)
|
- [Alexander Schmidt](https://alexanderschmidt.info/)
|
||||||
|
- [Alexandre Santos](https://alexandresantosal91.github.io)
|
||||||
- [Alexey Golub](http://tyrrrz.me)
|
- [Alexey Golub](http://tyrrrz.me)
|
||||||
- [Alfred Dagenais](https://alfreddagenais.com)
|
- [Alfred Dagenais](https://alfreddagenais.com)
|
||||||
- [Ali Spittel](http://alispit.tel)
|
- [Ali Spittel](http://alispit.tel)
|
||||||
|
- [Aljon De Lumen](https://www.delumenaljon.studio)
|
||||||
- [Allan Muturi](https://allanmuturi.vercel.app/)
|
- [Allan Muturi](https://allanmuturi.vercel.app/)
|
||||||
- [Aloys Dillar](https://trolologuy.github.io/)
|
- [Aloys Dillar](https://trolologuy.github.io/)
|
||||||
- [Aman Anku](http://amananku26.github.io)
|
- [Aman Anku](http://amananku26.github.io)
|
||||||
- [Aman Mittal](http://amanhimself.dev)
|
- [Aman Mittal](http://amanhimself.dev)
|
||||||
- [Aman Shrivastava](https://aman04.netlify.app/)
|
- [Aman Shrivastava](https://aman04.netlify.app/)
|
||||||
- [Amit Gujar](https://amitgujar.github.io/)
|
- [Amogh Telkar](https://amoghtelkar.com)
|
||||||
|
- [Amir Akbulut](https://amirdev.nl/)
|
||||||
- [Amruth Pillai](https://amruthpillai.com)
|
- [Amruth Pillai](https://amruthpillai.com)
|
||||||
|
- [Anandhu Sajan](https://anandhusajan.com)
|
||||||
- [Andreas Beuger](https://beuger.dev)
|
- [Andreas Beuger](https://beuger.dev)
|
||||||
- [Andrej Sharapov](https://sharapov.dev)
|
- [Andrej Sharapov](https://sharapov.dev)
|
||||||
- [Andrew Woods](https://andrewwoods.net)
|
- [Andrew Woods](https://andrewwoods.net)
|
||||||
|
- [Andrianarisoa Daniel](https://www.devist.xyz)
|
||||||
- [Andy Bell](https://andy-bell.design/)
|
- [Andy Bell](https://andy-bell.design/)
|
||||||
- [Angel Martinez](https://angelmtz.dev)
|
- [Angel Martinez](https://angelmtz.dev)
|
||||||
- [Aniket Kudale](https://aniket.co)
|
- [Aniket Kudale](https://aniket.co)
|
||||||
- [Anil Khatri](https://imkaka.github.io)
|
- [Anil Khatri](https://imkaka.github.io)
|
||||||
- [Ankit Kumar](https://ankitdroidgit.github.io/)
|
|
||||||
- [Anshu Raj](https://anshuraj.github.io/)
|
- [Anshu Raj](https://anshuraj.github.io/)
|
||||||
- [Anshuman Verma](https://anshumanv.dev/)
|
- [Anshuman Verma](https://anshumanv.dev/)
|
||||||
- [Antonio Ferreiro](https://toniferr.github.io/)
|
- [Antonio Ferreiro](https://toniferr.github.io/)
|
||||||
- [Anurag Hazra](https://anuraghazra.github.io)
|
- [Anurag Hazra](https://anuraghazra.github.io)
|
||||||
|
- [Ariel Andrade](https://sudoariel.github.io/)
|
||||||
- [Ariel Chura](https://arielchura.com)
|
- [Ariel Chura](https://arielchura.com)
|
||||||
- [Arjun Ganesan](https://arjun-g.com)
|
|
||||||
- [Arpit Gupta](http://arpitfolio.herokuapp.com)
|
|
||||||
- [Arpit Sharma](https://yesarpit.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)
|
- [Arsh Sahzad](https://www.arsh.dev)
|
||||||
|
- [Arup Mandal](https://arupmandal.github.io/)
|
||||||
|
- [Ashkan Misaghi](https://ashkanmisaghi.ir)
|
||||||
- [Ashlee Boyer](http://ashleemboyer.dev)
|
- [Ashlee Boyer](http://ashleemboyer.dev)
|
||||||
- [Ashutosh Singh](https://thecodepapaya.dev)
|
|
||||||
- [Ashwin Hariharan](https://ashwinhariharan.tech)
|
- [Ashwin Hariharan](https://ashwinhariharan.tech)
|
||||||
|
- [Assad Isah](https://nottherealalanturing.tech)
|
||||||
- [Atanas Atanasov](https://atanas.info)
|
- [Atanas Atanasov](https://atanas.info)
|
||||||
|
- [Austin Gericke](https://www.austingericke.com/)
|
||||||
- [Austin Pham](https://auspham.dev)
|
- [Austin Pham](https://auspham.dev)
|
||||||
|
- [Aycan Öğüt](https://aycan.dev)
|
||||||
|
- [Arup Mandal](https://arupmandal.github.io/)
|
||||||
|
- [Ayush Nighoskar](https://ayushn.netlify.app/)
|
||||||
- [Azhar Zafar](http://azharr.com)
|
- [Azhar Zafar](http://azharr.com)
|
||||||
|
|
||||||
## B
|
## B
|
||||||
|
|
||||||
|
- [Bakare Afolabi](http://afolabibakare.netlify.app)
|
||||||
- [Bankole Ahmed](http://bankoleahmed.netlify.com)
|
- [Bankole Ahmed](http://bankoleahmed.netlify.com)
|
||||||
- [Becca Bailey](http://Becca.is)
|
- [Becca Bailey](http://Becca.is)
|
||||||
- [Bekah Hawrot Weigel](http://bekahhw.github.io)
|
- [Bekah Hawrot Weigel](http://bekahhw.github.io)
|
||||||
@ -84,26 +105,29 @@ Hopefully this repo can serve as a source of inspiration for your portfolio!
|
|||||||
- [Ben Rogers](https://benrogers.dev)
|
- [Ben Rogers](https://benrogers.dev)
|
||||||
- [Berat Bozkurt](https://beratbozkurt.net/)
|
- [Berat Bozkurt](https://beratbozkurt.net/)
|
||||||
- [Bertil Tandayamo](https://www.bertiltandayamo.me/)
|
- [Bertil Tandayamo](https://www.bertiltandayamo.me/)
|
||||||
|
- [Bhagawat Adhikari](https://github.com/bhagawatadhikari)
|
||||||
- [Bhavani Ravi](http://bhavaniravi.com)
|
- [Bhavani Ravi](http://bhavaniravi.com)
|
||||||
- [Bhavya Tomar](https://bhavya.dev)
|
- [Bhavya Tomar](https://bhavya.dev)
|
||||||
- [Bipin MV](https://bipinmv.github.io)
|
- [Bhushan Borole](https://bhushan-borole.github.io/)
|
||||||
- [Bob Matyas](https://www.bobmatyas.com)
|
- [Bob Matyas](https://www.bobmatyas.com)
|
||||||
|
- [Bohdan Khvorostovskyi](https://khvorostovskyi.com)
|
||||||
|
- [Boris Edison](https://borisedison.in/)
|
||||||
- [Bouwe Westerdijk](https://bouwe.io)
|
- [Bouwe Westerdijk](https://bouwe.io)
|
||||||
- [Brad Garropy](https://bradgarropy.com)
|
- [Brad Garropy](https://bradgarropy.com)
|
||||||
- [Brahim Boulhend](https://brahime.com)
|
|
||||||
- [Brianna Roby](http://brianna-roby.com)
|
|
||||||
- [Brittany Chiang](https://brittanychiang.com)
|
- [Brittany Chiang](https://brittanychiang.com)
|
||||||
|
|
||||||
## C
|
## C
|
||||||
|
|
||||||
- [Cade Kynaston](https://cade.codes)
|
- [Cade Kynaston](https://cade.codes)
|
||||||
- [Caitlyn Greffly](https://caitlyngreffly.com/)
|
- [Caitlyn Greffly](https://caitlyngreffly.com/)
|
||||||
|
- [Carson Coder](https://www.carsoncoder.com)
|
||||||
- [Casper Iversen](https://caspertheghost.me)
|
- [Casper Iversen](https://caspertheghost.me)
|
||||||
- [Cecelia Martinez](http://ceceliacreates.com)
|
- [Cecelia Martinez](http://ceceliacreates.com)
|
||||||
- [Charles C. Pustejovsky III](https://cpustejovsky.com/)
|
- [Charles C. Pustejovsky III](https://cpustejovsky.com/)
|
||||||
- [Chetan Padia](https://chetbox.com)
|
- [Chetan Padia](https://chetbox.com)
|
||||||
- [Chetan Raj](https://chetanraj.in/)
|
- [Chetan Raj](https://chetanraj.in/)
|
||||||
- [Chetanya Kandhari](https://availchet.github.io)
|
- [Chetanya Kandhari](https://availchet.github.io)
|
||||||
|
- [Chethin Manage](https://www.cmanage.dev/)
|
||||||
- [Chicago IT Systems](https://www.chicagoitsystems.com/)
|
- [Chicago IT Systems](https://www.chicagoitsystems.com/)
|
||||||
- [Chirag Bhalotia](https://chirag.codes)
|
- [Chirag Bhalotia](https://chirag.codes)
|
||||||
- [Chirag Samal](http://chiragsamal.github.io/)
|
- [Chirag Samal](http://chiragsamal.github.io/)
|
||||||
@ -117,37 +141,53 @@ Hopefully this repo can serve as a source of inspiration for your portfolio!
|
|||||||
- [Cole Emeruche](https://coleruche.com/works/)
|
- [Cole Emeruche](https://coleruche.com/works/)
|
||||||
- [Colin Lord](https://colinlord.com/)
|
- [Colin Lord](https://colinlord.com/)
|
||||||
- [Collins Koech](https://collinskoechportfolio.web.app)
|
- [Collins Koech](https://collinskoechportfolio.web.app)
|
||||||
- [Cristiano Filho](https://cristianofilho.com.br)
|
- [Connor Jarrett](https://connorjarrett.com)
|
||||||
|
- [Cristiano Filho](https://cristianofilho.github.io/)
|
||||||
|
- [Cristian Cezar Moisés](https://live-one.vercel.app/)
|
||||||
|
- [Cui Ding](https://cuierd.github.io/)
|
||||||
|
|
||||||
## D
|
## D
|
||||||
|
|
||||||
- [Dale French](https://dalefrench.dev/)
|
- [Dale French](https://dalefrench.dev/)
|
||||||
|
- [Dale Larroder](https://dalelarroder.com/)
|
||||||
- [Damian Markowski](https://damianmarkowski.com)
|
- [Damian Markowski](https://damianmarkowski.com)
|
||||||
- [Dania Al-Hakim](https://pixeldania.netlify.app/)
|
- [Dania Al-Hakim](https://pixeldania.netlify.app/)
|
||||||
- [Daniel Alberski](https://danielalberski.redark.pl/)
|
- [Daniel Alberski](https://danielalberski.redark.pl/)
|
||||||
- [Daniel Canetti](https://danielcanetti.com/)
|
- [Daniel Castro](https://rwxdan.dev/)
|
||||||
|
- [Danilo Batson](https://danilobatson.github.io/portfolio/)
|
||||||
- [Danilo Castro](https://www.welcomedeveloper.com/)
|
- [Danilo Castro](https://www.welcomedeveloper.com/)
|
||||||
- [Danstan Onyango](https://zemuldo.com/)
|
- [Danstan Onyango](https://zemuldo.com/)
|
||||||
- [Daniel Michael](https://www.daniel-michael.com/)
|
- [Daniel Michael](https://www.daniel-michael.com/)
|
||||||
|
- [Darshan Joshi](https://darshanjoshi-portfolio.hostman.site/)
|
||||||
- [Davide Santangelo](https://davidesantangelo.com)
|
- [Davide Santangelo](https://davidesantangelo.com)
|
||||||
|
- [Davi Lacerda](https://davilacerda.tech)
|
||||||
- [Deepraj Rakshit](http://deeprajrakshit.me/)
|
- [Deepraj Rakshit](http://deeprajrakshit.me/)
|
||||||
- [Denis Tokarev](https://devlato.com)
|
- [Denis Tokarev](https://devlato.com)
|
||||||
|
- [Derryk Theberge](https://dtheberge.com/)
|
||||||
|
- [Delba](https://delba.dev/)
|
||||||
|
- [Dhanush Nehru](https://whatsapp-portfolio-dhanushnehru.netlify.app/)
|
||||||
|
- [Dhaval Patel](https://dhavalcode.com)
|
||||||
- [Dheeraj Gupta](https://dheerajgupta.netlify.app/#/)
|
- [Dheeraj Gupta](https://dheerajgupta.netlify.app/#/)
|
||||||
- [Dick Wyn Yong](https://dickwyn.xyz)
|
- [Dick Wyn Yong](https://dickwyn.xyz)
|
||||||
- [Dillion Megida](http://dillionmegida.com/)
|
- [Dillion Megida](http://dillionmegida.com/)
|
||||||
- [Dimitri Pashutskii](https://dpashutskii.com/)
|
- [Dimitri Pashutskii](https://dpashutskii.com/)
|
||||||
|
- [Dina TAKLIT](https://dinataklit.github.io/DinaTaklitPortfolio/)
|
||||||
- [Dino Gomez](https://dinogomez.github.io/)
|
- [Dino Gomez](https://dinogomez.github.io/)
|
||||||
- [Drew Bredvick](https://drew.tech/)
|
- [Drew Bredvick](https://drew.tech/)
|
||||||
- [Durgesh Chaudhary](https://yodkwtf.com/)
|
- [Durgesh Chaudhary](https://yodkwtf.com/)
|
||||||
|
|
||||||
## E
|
## E
|
||||||
|
|
||||||
- [Efrén Martínez Rodríguez](https://www.efrenmartinez.dev/)
|
- [Eduard-Constantin Ibinceanu](https://eduardconstantin.github.io)
|
||||||
- [Elio Jordan Lopes](https://develioper.vercel.app)
|
- [Eduard Yudinkov](https://yudinkov.dev/)
|
||||||
- [Emily Kondziola](https://emilykondziola.com/)
|
- [Elio Jordan Lopes](https://developer.vercel.app)
|
||||||
|
- [Elmo Nickol](https://elmonickcool.vercel.app)
|
||||||
- [Emmanuel ADEKPLOVI](https://homescriptone.com)
|
- [Emmanuel ADEKPLOVI](https://homescriptone.com)
|
||||||
- [Enea Xharja](https://eneaxharja.com)
|
- [Enea Xharja](https://eneaxharja.com)
|
||||||
- [Ephraim Atta-Duncan](https://astrosaurus.me)
|
- [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/)
|
||||||
- [Ezekiel Ekunola](https://ezekielekunola.com)
|
- [Ezekiel Ekunola](https://ezekielekunola.com)
|
||||||
|
|
||||||
## F
|
## F
|
||||||
@ -155,106 +195,145 @@ Hopefully this repo can serve as a source of inspiration for your portfolio!
|
|||||||
- [Faisal Ahmed Khan](https://FaisalAhmedKhan.github.io/)
|
- [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 Leupold](https://xiel.dev)
|
||||||
|
- [Felix Tellmann](https://flext.dev)
|
||||||
- [Fidalgo Pedro](http://fidalgo.dev)
|
- [Fidalgo Pedro](http://fidalgo.dev)
|
||||||
- [Flavia Medici](https://t.co/iQK1Hbx8xD?amp=1)
|
- [Flavia Medici](https://t.co/iQK1Hbx8xD?amp=1)
|
||||||
|
- [Frances Coronel](https://francescoronel.com)
|
||||||
- [Franklin Castellanos](https://onecastell.github.io)
|
- [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)
|
||||||
|
|
||||||
## G
|
## G
|
||||||
|
|
||||||
- [Gabriel Romualdo](https://xtrp.io/) ([@xtrp](https://github.com/xtrp))
|
- [Gabriel Romualdo](https://xtrp.io/) ([@xtrp](https://github.com/xtrp))
|
||||||
|
- [Gabriel Sozinho](https://gabrielsozinho.ga)
|
||||||
- [Gabriel Tekombo](https://gabrielthecode.com/)
|
- [Gabriel Tekombo](https://gabrielthecode.com/)
|
||||||
- [Gabriele Corti](https://borntofrappe.github.io/)
|
- [Gabriele Corti](https://borntofrappe.github.io/)
|
||||||
|
- [Ganesh Patil](https://hardikjain.netlify.app/)
|
||||||
- [Garv Nanwani](https://garvnanwani.netlify.app/)
|
- [Garv Nanwani](https://garvnanwani.netlify.app/)
|
||||||
- [Genesis Gabiola](https://genesisgabiola.now.sh/)
|
- [Genesis Gabiola](https://genesisgabiola.now.sh/)
|
||||||
- [Georges Atalla](https://www.georgesatalla.com/)
|
- [Georges Atalla](https://www.georgesatalla.com/)
|
||||||
|
- [George Christeas](https://chr-ge.com/)
|
||||||
|
- [George Fincher](https://www.grimfunky.dev/)
|
||||||
- [Georgi Yanev](https://gyanev.com)
|
- [Georgi Yanev](https://gyanev.com)
|
||||||
- [Gherciu Gheorghe](https://gherciu.github.io/portfolio/)
|
- [Gherciu Gheorghe](https://gherciu.github.io/portfolio/)
|
||||||
- [Gianluca Fiore](http://gianlucafiore.it)
|
- [Gianluca Fiore](http://gianlucafiore.it)
|
||||||
- [Gift Egwuenu](https://giftegwuenu.com)
|
- [Gift Egwuenu](https://giftegwuenu.com)
|
||||||
- [Grace Snow](https://gracesnowdesign.co.uk)
|
- [Grace Snow](https://gracesnowdesign.co.uk)
|
||||||
- [Godswill Umukoro](https://godswillumukoro.com/)
|
- [Godswill Umukoro](https://godswillumukoro.com/)
|
||||||
- [Govind Singh Ranawat](https://govindsingh9447.github.io/ranawattecofficial.github.io/)
|
- [Goh Jun Xiang](https://gohjunx.github.io/GohJunXiang.github.io/)
|
||||||
- [Gudi Varaprasad](https://gudivaraprasad.github.io/GVP/)
|
- [Goh You Sheng](https://shenggg2000.github.io/portfolio/)
|
||||||
|
|
||||||
## H
|
## H
|
||||||
|
|
||||||
|
- [Hafid Ziti](https://www.hafidziti.dev/)
|
||||||
|
- [Halit İslam İçli](https://halid.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)
|
- [Harsh Goel](https://harshgoel.me)
|
||||||
- [Harsh Singhvi](https://harshsinghvi.com)
|
- [Harsh Singhvi](https://harshsinghvi.com)
|
||||||
|
- [Harsh Singh](https://harshsingh.xyz/)
|
||||||
|
- [Hasan Aydoğdu](https://haydogdu1990.github.io/resume-json-css/)
|
||||||
- [Hassan Ahmed](https://www.hassanahmed.net/)
|
- [Hassan Ahmed](https://www.hassanahmed.net/)
|
||||||
- [Hassan Murtaza](https://hassanmurtaza.com)
|
- [Hassan Murtaza](https://hassanmurtaza.com)
|
||||||
|
- [Hemsundar Paranthaman](https://hemdev.vercel.app)
|
||||||
|
- [Henry Lee](https://dragonwarrior.vercel.app)
|
||||||
- [Herman Starikov](http://starikov.dev)
|
- [Herman Starikov](http://starikov.dev)
|
||||||
- [Hungry Bear Studio](https://www.hungrybearstudios.com/)
|
- [Hoang Nguyen](https://hoangdesu.com/)
|
||||||
- [Huzaifa Mustafa](https://www.huzaifamustafa.com/)
|
|
||||||
- [Houari Zegai](https://zegai.netlify.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/)
|
||||||
|
|
||||||
## I
|
## I
|
||||||
|
|
||||||
- [Ian Trent](https://iantrent.com)
|
|
||||||
- [Ibrahim Hizlioglu](https://www.ibrahimhizlioglu.com)
|
- [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)
|
- [Ingus Jansons](https://ingus.co.uk)
|
||||||
|
- [Ioan Manu](https://manuioan.com/)
|
||||||
- [Ishaan Sheikh](https://frikishaan.com)
|
- [Ishaan Sheikh](https://frikishaan.com)
|
||||||
- [Isitha Subasinghe](https://isub.dev)
|
- [Isitha Subasinghe](https://isub.dev)
|
||||||
- [Ismail Ghallou aka Smakosh](https://smakosh.com)
|
- [Ismail Ghallou aka Smakosh](https://smakosh.com)
|
||||||
|
- [Israel Mitolu](https://israelmitolu.netlify.app)
|
||||||
- [Iulian Rotaru](https://iulian.rotaru.fr)
|
- [Iulian Rotaru](https://iulian.rotaru.fr)
|
||||||
|
|
||||||
## J
|
## J
|
||||||
|
|
||||||
|
- [Jack Childs](https://jackchilds.tech)
|
||||||
- [Jack Parsons](https://jackparsonss.me)
|
- [Jack Parsons](https://jackparsonss.me)
|
||||||
- [Jacob Herper](https://jacobherper.com/)
|
- [Jacob Herper](https://jacobherper.com/)
|
||||||
|
- [Jahidul Islam](https://xahidex.com)
|
||||||
- [Jahir Fiquitiva](https://jahir.dev)
|
- [Jahir Fiquitiva](https://jahir.dev)
|
||||||
- [Jai Kirdatt](https://JaiK.me)
|
- [Jai Kirdatt](https://JaiK.me)
|
||||||
- [Jainam Desai](https://th3c0d3br34ker.github.io)
|
- [Jainam Desai](https://th3c0d3br34ker.github.io)
|
||||||
|
- [Jainex Patel](https://jainex.vercel.app/)
|
||||||
- [Jake Ginesin](https://jakegines.in/)
|
- [Jake Ginesin](https://jakegines.in/)
|
||||||
- [James Mutuku](https://mutuku.me)
|
- [Jakob Rössner](https://roessner.tech)
|
||||||
- [James Turner](http://turnerj.com)
|
- [James Turner](http://turnerj.com)
|
||||||
- [Jane Manchun Wong](http://wongmjane.com)
|
|
||||||
- [Janessa Tran](http://janessatran.github.io)
|
- [Janessa Tran](http://janessatran.github.io)
|
||||||
- [Javier Diaz](https://coderdiaz.me)
|
- [Jatin Sharma](http://j471n.in/)
|
||||||
- [Jayant Goel](http://jayantgoel001.github.io/)
|
- [Jayant Goel](http://jayantgoel001.github.io/)
|
||||||
|
- [Jayant Parashar](https://jparasha.github.io/)
|
||||||
- [Jayed Rafi](https://jayedrafi.com)
|
- [Jayed Rafi](https://jayedrafi.com)
|
||||||
- [Jayvee Valenzuela](https://jayveepvalenzuela.github.io)
|
- [Jayvee Valenzuela](https://jayveepvalenzuela.github.io)
|
||||||
- [Jeff Chiu](https://jeffchiucp.github.io/portfolio)
|
- [Jeff Chiu](https://jeffchiucp.github.io/portfolio)
|
||||||
- [Jens van Wijhe](https://jens.ai)
|
- [Jens van Wijhe](https://jens.ai)
|
||||||
|
- [Jeremy Erik Leong](https://www.jeremyerikleong.com)
|
||||||
- [Jeremy Grifski](https://jeremygrifski.com/)
|
- [Jeremy Grifski](https://jeremygrifski.com/)
|
||||||
- [Jerrin Bright](https://jbright.tech/)
|
|
||||||
- [Jerry Hirsch](https://jerryhirsch.com/)
|
- [Jerry Hirsch](https://jerryhirsch.com/)
|
||||||
- [Jim Raptis](http://www.raptis.wtf)
|
- [Jim Raptis](http://www.raptis.wtf)
|
||||||
- [Jo Lienhoop](https://jolienhoop.com/)
|
- [Jo Lienhoop](https://jolienhoop.com/)
|
||||||
|
- [Joe Dean](https://joedean.dev)
|
||||||
|
- [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/#/)
|
- [Jordi Espinoza Mendoza](https://www.itsmejordi.live/#/)
|
||||||
- [Josef Aidt](https://josefaidt.dev)
|
- [Josef Aidt](https://josefaidt.dev)
|
||||||
- [Joseph Friedman](http://DecentGradient.com)
|
- [Joseph Friedman](http://DecentGradient.com)
|
||||||
|
- [Joseph Palma](https://josephpalma.dev)
|
||||||
- [Joshua Chinwendu](http://joshualine.github.io)
|
- [Joshua Chinwendu](http://joshualine.github.io)
|
||||||
|
- [Joshua Izuchukwu](https://joshuaizu.vercel.app)
|
||||||
|
- [Jubin Ayoob](https://web-portfolio-jubin369.vercel.app/)
|
||||||
- [Julia Johnson](http://juliacodes.com)
|
- [Julia Johnson](http://juliacodes.com)
|
||||||
|
|
||||||
## K
|
## K
|
||||||
|
|
||||||
- [Kaleigh Scruggs](http://kaleighscruggs.com)
|
- [Kaleigh Scruggs](http://kaleighscruggs.com)
|
||||||
- [Kamran Hamid](https://mkamranhamid.netlify.com)
|
- [Kamran Hamid](https://mkamranhamid.netlify.com)
|
||||||
- [Kapil Gorve](http://jskap.com)
|
|
||||||
- [Karen Fletcher](https://knpfletcher.dev)
|
- [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/)
|
||||||
- [Kelven Rubalaine](https://kelven.dev)
|
- [Kelven Rubalaine](https://kelven.dev)
|
||||||
- [Khalid Saifullah](https://khaliddev.com)
|
- [Kenta Yamamoto](https://ychof.com)
|
||||||
- [Khoironi Kurnia Syah](https://zekhoi.my.id/)
|
- [Khaled Ahmed](https://khaled.is-a.dev)
|
||||||
|
- [Kidus Bewket](https://kidus.ca)
|
||||||
- [Kyle Shook](http://Kyleshook.com)
|
- [Kyle Shook](http://Kyleshook.com)
|
||||||
|
|
||||||
## L
|
## L
|
||||||
|
|
||||||
|
- [Lakshan Rukantha](https://lakshanrukantha.github.io/)
|
||||||
- [Lars Roettig](https://larsroettig.dev)
|
- [Lars Roettig](https://larsroettig.dev)
|
||||||
|
- [Laurence Young](https://portfolio-yukiteno.vercel.app/)
|
||||||
- [Laurie Barth](http://laurieontech.dev)
|
- [Laurie Barth](http://laurieontech.dev)
|
||||||
- [Leandro Simões](https://lesimoes.dev)
|
- [Leandro Simões](https://lesimoes.dev)
|
||||||
- [Leonardo Oliveira](https://leonardoliveira.com)
|
- [Leonardo Oliveira](https://leonardoliveira.com)
|
||||||
- [Lee Warrick](http://leewarrick.com)
|
- [Lee Warrick](http://leewarrick.com)
|
||||||
|
- [Lee Robinson](https://leerob.io/)
|
||||||
- [Leroy Rosales](https://leroyrosales.com)
|
- [Leroy Rosales](https://leroyrosales.com)
|
||||||
- [Lewis Ndiritu](https://thirsty-ritchie-2c12b7.netlify.app/)
|
- [Leonel Ngoya](https://lndev.me)
|
||||||
|
- [Liplan Lekipising](https://lekipising.tech/)
|
||||||
- [Lisa Blunt](https://lisablunt.github.io)
|
- [Lisa Blunt](https://lisablunt.github.io)
|
||||||
- [Lisa Savoie](http://lscodes.com)
|
- [Lisa Savoie](http://lscodes.com)
|
||||||
- [Liz Lam](https://lizlam.github.io/)
|
- [Liz Lam](https://lizlam.github.io/)
|
||||||
- [Long Do](https://longpdo.github.io/)
|
- [Long Do](https://longpdo.github.io/)
|
||||||
- [Louay Hamada](https://louayhamada.com)
|
- [Louay Hamada](https://louayhamada.com)
|
||||||
- [Luca Fluri](https://www.lucafluri.ch/)
|
- [LoveCodingWithAshu](https://lovecodingwithashu.tech)
|
||||||
- [Luca Lischetti](https://sirlisko.com)
|
- [Luca Lischetti](https://sirlisko.com)
|
||||||
- [Luis Cacho](https://luiscachog.io)
|
- [Luis Cacho](https://luiscachog.io)
|
||||||
- [Luisa Rojas García](https://luisarojas.com)
|
- [Luisa Rojas García](https://luisarojas.com)
|
||||||
@ -264,26 +343,27 @@ Hopefully this repo can serve as a source of inspiration for your portfolio!
|
|||||||
- [Madhan K](https://madhank93.github.io/)
|
- [Madhan K](https://madhank93.github.io/)
|
||||||
- [Mads Hougesen](https://mhouge.dk/)
|
- [Mads Hougesen](https://mhouge.dk/)
|
||||||
- [Mahmoud AlSharif](https://malsharif.me)
|
- [Mahmoud AlSharif](https://malsharif.me)
|
||||||
|
- [Malik Muhammad Safwan](https://maliksafwan.netlify.app/)
|
||||||
- [Maram Sai Harsha Vardhan Reddy](https://maramsaiharsha.netlify.com)
|
- [Maram Sai Harsha Vardhan Reddy](https://maramsaiharsha.netlify.com)
|
||||||
- [Marc Backes](http://marc.dev)
|
- [Marc Backes](http://marc.dev)
|
||||||
- [Marcos Aguayo](https://marcosaguayo.com)
|
- [Marcos Aguayo](https://marcosaguayo.com)
|
||||||
- [Mark Vergel Banguis](https://www.banguismv.me/)
|
- [Marieflor Bawanan](https://marieflor.dev)
|
||||||
- [Marijan Smetko](https://msmetko.xyz)
|
- [Marijan Smetko](https://msmetko.xyz)
|
||||||
- [Mario Kandut](https://www.mariokandut.com)
|
- [Mario Kandut](https://www.mariokandut.com)
|
||||||
- [Markus Polzer](https://www.rapidtech1898.com/)
|
- [Markus Polzer](https://www.rapidtech1898.com/)
|
||||||
- [Marouane Rassili](https://mrassili.com)
|
- [Marouane Rassili](https://mrassili.com)
|
||||||
- [Mason Slover](https://github.com/MasonSlover/ProcessingPortfolio)
|
- [Mason Slover](https://github.com/MasonSlover/ProcessingPortfolio)
|
||||||
|
- [MathisCool](https://mathiscool.is-a.dev)
|
||||||
- [Matt Filer](http://mattfiler.co.uk)
|
- [Matt Filer](http://mattfiler.co.uk)
|
||||||
- [Matteo Lobello](https://matteolobello.it)
|
|
||||||
- [Matvey Kottsov](https://matvey.codes/)
|
- [Matvey Kottsov](https://matvey.codes/)
|
||||||
- [Maverick](https://supacode.dev/)
|
- [Maverick](https://supacode.dev/)
|
||||||
- [Max Mohammadi](http://www.maxmohammadi.com/)
|
|
||||||
- [Maxim Villivald](https://villivald.com/)
|
- [Maxim Villivald](https://villivald.com/)
|
||||||
- [Maya Shavin](https://www.mayashavin.com/)
|
- [Maya Shavin](https://www.mayashavin.com/)
|
||||||
- [Mayank Agarwal](https://mayankagarwal.me/)
|
- [Mayank Agarwal](https://mayankagarwal.me/)
|
||||||
- [Mayank Aggarwal](https://mayank0255.github.io/)
|
- [Mayank Aggarwal](https://mayank0255.github.io/)
|
||||||
- [Md Nabil Ahsan](https://www.mdnabilahsan.com/)
|
- [Md Nabil Ahsan](https://www.mdnabilahsan.com/)
|
||||||
- [Md Usman Ansari](https://mdusmanansari.netlify.app/)
|
- [Md Usman Ansari](https://mdusmanansari.netlify.app/)
|
||||||
|
- [Melvin Jones Repol](https://mrepol742.github.io)
|
||||||
- [Mertcan Kose](https://mertcankose.vercel.app)
|
- [Mertcan Kose](https://mertcankose.vercel.app)
|
||||||
- [Michael Hoffmann (Mokkapps)](https://mokkapps.de/)
|
- [Michael Hoffmann (Mokkapps)](https://mokkapps.de/)
|
||||||
- [Michelle Brenner](https://michellebrenner.com)
|
- [Michelle Brenner](https://michellebrenner.com)
|
||||||
@ -291,39 +371,45 @@ Hopefully this repo can serve as a source of inspiration for your portfolio!
|
|||||||
- [Mimi Kim](https://seeyouspacecow.com)
|
- [Mimi Kim](https://seeyouspacecow.com)
|
||||||
- [Mitul Savani](http://mitulsavani.com)
|
- [Mitul Savani](http://mitulsavani.com)
|
||||||
- [Mohamad Fadhil Yaacob](https://fadhil-blog.dev/)
|
- [Mohamad Fadhil Yaacob](https://fadhil-blog.dev/)
|
||||||
- [Mohammad Darmousa](https://mdarmousa.github.io/)
|
|
||||||
- [Mohammad Rahmani](https://afgprogrammer.com)
|
- [Mohammad Rahmani](https://afgprogrammer.com)
|
||||||
|
- [Mohammed-Yousuf Hamid](https://mohammedcodes.dev)
|
||||||
|
- [Mohan Raj](https://zolomohan.com)
|
||||||
- [Moritz Kornher](https://moritzkornher.de/)
|
- [Moritz Kornher](https://moritzkornher.de/)
|
||||||
|
- [Mostafa Abdelhamid](https://mostafa-abdelhamid.com/)
|
||||||
- [Mostafa Sameti](https://sameti.dev/)
|
- [Mostafa Sameti](https://sameti.dev/)
|
||||||
- [Mouad ZIANI](https://mouadziani.github.io/)
|
- [Mouad ZIANI](https://mouadziani.github.io/)
|
||||||
- [Muhammad Abdullah](https://mabdullahse.com)
|
- [Muhammad Abdullah](https://mabdullahse.com)
|
||||||
- [Muhammad Muhaddis](https://muhaddis.info)
|
- [Muhammad Muhaddis](https://muhaddis.info)
|
||||||
- [Muhammad](http://muhammadraza.me)
|
|
||||||
- [Muhammad Rashid](https://iamrashy.netlify.app)
|
- [Muhammad Rashid](https://iamrashy.netlify.app)
|
||||||
- [Muhammad Zeeshan](https://mzeeshan.me)
|
- [Mukul Chugh](https://mukulchugh.com)
|
||||||
- [Muntadhar Haydar](https://muntadhar.net)
|
- [Muntadhar Haydar](https://muntadhar.net)
|
||||||
|
- [Musaddiq Ashfaq](https://musaddiq-ashfaq.github.io/Portfolio)
|
||||||
|
|
||||||
## N
|
## N
|
||||||
|
|
||||||
- [Nacho Caiafa](https://nachokai.github.io/rpg-cv)
|
- [Nacho Caiafa](https://nachokai.github.io/rpg-cv)
|
||||||
- [Nam Phan](https://namtphan.github.io)
|
- [Narpat Aanjana](https://narpataanjana.live)
|
||||||
- [Nathan Simpson](https://nathansimpson.design)
|
- [Nathan Simpson](https://nathansimpson.design)
|
||||||
- [Nawrasse Dahman](https://nawrasse.netlify.app/)
|
- [Naveed Ahmed](https://www.trixum.net/)
|
||||||
|
- [Nawrasse Dahman](https://www.nawrassedahman.tk/)
|
||||||
- [Nazia Shehnaz Joynab](https://geek-a-byte.github.io/)
|
- [Nazia Shehnaz Joynab](https://geek-a-byte.github.io/)
|
||||||
- [Nesrine Sghaier](https://nesrinesghaier.me)
|
|
||||||
- [Nhlanhla Hasane](https://nhlanhlahasane.netlify.app/)
|
- [Nhlanhla Hasane](https://nhlanhlahasane.netlify.app/)
|
||||||
|
- [Nico Bachner](https://nicobachner.com)
|
||||||
- [Nico van Zyl](https://nicovanzyl.com)
|
- [Nico van Zyl](https://nicovanzyl.com)
|
||||||
- [Nicolo Rebughini](https://nirebu.com/)
|
- [Nicolo Rebughini](https://nirebu.com/)
|
||||||
|
- [Nikita Rusetskii](https://xtenzq.github.io/)
|
||||||
- [Nikita Sobolev](https://sobolevn.me/)
|
- [Nikita Sobolev](https://sobolevn.me/)
|
||||||
- [Nipun Jain](https://lucifernipun22.github.io/)
|
- [Nipun Jain](https://lucifernipun22.github.io/)
|
||||||
- [Nisarg Patel](https://nisarg.io)
|
- [Nisarg Patel](https://nisarg.io)
|
||||||
- [Nischal Dutt](https://nischaldutt.netlify.app/)
|
- [Nischal Dutt](https://nischaldutt.netlify.app/)
|
||||||
- [Nitesh Seram](https://niteshseram.in)
|
- [Nitesh Seram](https://niteshseram.in)
|
||||||
|
- [Nuwan Jaliyagoda](http://nuwanjaliyagoda.com/)
|
||||||
|
|
||||||
## O
|
## O
|
||||||
|
|
||||||
- [Olaolu Olawuyi](https://olaolu.dev)
|
- [Olaolu Olawuyi](https://olaolu.dev)
|
||||||
- [Omar Gastón Chalas](https://ogaston.com/)
|
- [Omar Gastón Chalas](https://ogaston.com/)
|
||||||
|
- [Omar Moquete](https://om-sp.netlify.app/)
|
||||||
- [OOQQ](https://ooqq.me)
|
- [OOQQ](https://ooqq.me)
|
||||||
- [Opeyemi Obembe](http://obem.be/opeyemi)
|
- [Opeyemi Obembe](http://obem.be/opeyemi)
|
||||||
- [Oscar Tian](http://www.bluexguardian.com)
|
- [Oscar Tian](http://www.bluexguardian.com)
|
||||||
@ -332,6 +418,7 @@ Hopefully this repo can serve as a source of inspiration for your portfolio!
|
|||||||
|
|
||||||
## P
|
## P
|
||||||
|
|
||||||
|
- [Paal Stakvik](https://paalss.vercel.app/)
|
||||||
- [Pandiyan Murugan](https://pandiyancool.github.io/pandiyan.cool/)
|
- [Pandiyan Murugan](https://pandiyancool.github.io/pandiyan.cool/)
|
||||||
- [Pankaj Gaikar](https://pankajgaikar.com/)
|
- [Pankaj Gaikar](https://pankajgaikar.com/)
|
||||||
- [Patricia Aas](https://patricia.no/)
|
- [Patricia Aas](https://patricia.no/)
|
||||||
@ -339,35 +426,44 @@ Hopefully this repo can serve as a source of inspiration for your portfolio!
|
|||||||
- [Patrick Lehmann](https://patlehmann1.github.io/react_portfolio/)
|
- [Patrick Lehmann](https://patlehmann1.github.io/react_portfolio/)
|
||||||
- [Patrick Obermeier](https://www.patrickobermeier.at/)
|
- [Patrick Obermeier](https://www.patrickobermeier.at/)
|
||||||
- [Patrick Reid](http://iamreliq.com)
|
- [Patrick Reid](http://iamreliq.com)
|
||||||
|
- [Pan Wei Lian](https://williamson922.github.io/)
|
||||||
|
- [Pawaret Meungkaew](https://www.pawaret.dev/)
|
||||||
|
- [Pazindu Shane](https://pazindushane.github.io/)
|
||||||
|
- [Philip Johnson](https://philipmjohnson.org) (made with [TechFolios](https://techfolios.github.io))
|
||||||
- [Philipe Almeida](https://palmeida.netlify.app)
|
- [Philipe Almeida](https://palmeida.netlify.app)
|
||||||
- [Poonam Chauhan](https://poo17nam.github.io/profile)
|
- [Poonam Chauhan](https://poo17nam.github.io/profile)
|
||||||
- [Pramesh Karki](https://karkipramesh.com.np/)
|
- [Pramesh Karki](https://karkipramesh.com.np/)
|
||||||
- [Pranav Choudhary](https://pranavelric.me/)
|
- [Pranshu05](https://pranshu05.github.io/)
|
||||||
- [Praveen Kumar Purushothaman](https://praveen.science/)
|
- [Praveen Kumar Purushothaman](https://praveen.science/)
|
||||||
- [Praveen Saini](https://praveen-me.github.io)
|
- [Praveen Saini](https://praveen-me.github.io)
|
||||||
|
- [Priya Nayak](https://priya180975.github.io/portfolio/)
|
||||||
- [Pushpak Chhajed](https://pushpak1300.github.io/)
|
- [Pushpak Chhajed](https://pushpak1300.github.io/)
|
||||||
|
|
||||||
## Q
|
## Q
|
||||||
|
|
||||||
- [Qudusayo A](https://mequdusayo.netlify.app)
|
|
||||||
|
|
||||||
## R
|
## R
|
||||||
|
|
||||||
- [Rafael Solis Melo](https://rsmelo92.github.io/portfolio/)
|
- [Rabin Poudyal](https://rabinpoudyal.com.np/)
|
||||||
|
- [Rafael Salazar](https://rafalazar.github.io/)
|
||||||
- [Rahul Mahesh](https://rahulmahesh.netlify.com)
|
- [Rahul Mahesh](https://rahulmahesh.netlify.com)
|
||||||
- [Rahul Sawant](http://raalzz.com)
|
- [Rahul Sawant](http://raalzz.com)
|
||||||
|
- [Raj Aryan](https://rajxryan.vercel.app)
|
||||||
- [Rajan Bhattarai](https://cdrrazan.com)
|
- [Rajan Bhattarai](https://cdrrazan.com)
|
||||||
|
- [Rajekevin](https://rajekevin.fr)
|
||||||
|
- [Rajesh Kumar Yadav](https://rajeshkumaryadav.com)
|
||||||
|
- [Rajesh Kumar Yadav](https://r-k-y.com)
|
||||||
- [Ralf D. Müller](https://fiveandahalfstars.ninja/rdmueller.html)
|
- [Ralf D. Müller](https://fiveandahalfstars.ninja/rdmueller.html)
|
||||||
- [Rick Hanlon](https://rickhanlonii.github.io/)
|
- [Rick Hanlon](https://rickhanlonii.github.io/)
|
||||||
- [Riley J. Shaw](https://rileyjshaw.com)
|
- [Riley J. Shaw](https://rileyjshaw.com)
|
||||||
- [Rimenes Ribeiro](https://rimenesribeiro.com)
|
- [Rimenes Ribeiro](https://rimenesribeiro.com)
|
||||||
|
- [Rishabh Rawat](https://rrawat.com)
|
||||||
|
- [Roberto Andrade](https://robertandradejr.dev/)
|
||||||
- [Rodrigo Kamada](https://rodrigo.kamada.com.br/)
|
- [Rodrigo Kamada](https://rodrigo.kamada.com.br/)
|
||||||
- [Rohit Jakhar](http://rohitjakhar.me/)
|
|
||||||
- [Rohit Jain](https://kingtechnologies.in/)
|
- [Rohit Jain](https://kingtechnologies.in/)
|
||||||
- [Rohith V](http://rohithvazhathody.pythonanywhere.com/)
|
- [Rohith V](http://rohithvazhathody.pythonanywhere.com/)
|
||||||
- [Roland L. Taylor](http://rolandixor.pro)
|
- [Roland L. Taylor](http://rolandixor.pro)
|
||||||
- [Roman Smunyov](https://romanisthere.github.io/)
|
- [Roman Smunyov](https://romanisthere.github.io/)
|
||||||
- [Ropo John Olatujoye](http://simplycrownclothing.herokuapp.com)
|
- [Ronny Coste](https://ronnycoste.com/)
|
||||||
- [Roshan Kr Soni](https://roshankrsoni.github.io)
|
- [Roshan Kr Soni](https://roshankrsoni.github.io)
|
||||||
- [Ryan Burgess](http://ryanburgess.com)
|
- [Ryan Burgess](http://ryanburgess.com)
|
||||||
- [Ryan MacLean](http://ryanmaclean.com)
|
- [Ryan MacLean](http://ryanmaclean.com)
|
||||||
@ -379,43 +475,56 @@ Hopefully this repo can serve as a source of inspiration for your portfolio!
|
|||||||
- [Sagar Giri](https://girisagar46.github.io/)
|
- [Sagar Giri](https://girisagar46.github.io/)
|
||||||
- [Sagar Khurana](https://hellosagar.vercel.app/)
|
- [Sagar Khurana](https://hellosagar.vercel.app/)
|
||||||
- [Sajal Sharma](https://sajalsharma.com)
|
- [Sajal Sharma](https://sajalsharma.com)
|
||||||
- [Sambhav Saxena](https://sambhav.vercel.app)
|
|
||||||
- [Samik Malhotra](https://samikmalhotra.netlify.app/)
|
- [Samik Malhotra](https://samikmalhotra.netlify.app/)
|
||||||
- [Samrat Mitra](https://lionelsamrat10.github.io)
|
- [Samrat Mitra](https://lionelsamrat10.github.io)
|
||||||
- [Santosh Yadav](http://santoshyadav.dev)
|
- [Santosh Yadav](http://santoshyadav.dev)
|
||||||
|
- [Santript Mehta](https://santriptmehta.me/web-home/)
|
||||||
- [Sanyam Kumar](https://sanyam.dev/)
|
- [Sanyam Kumar](https://sanyam.dev/)
|
||||||
- [Sarang N](https://srng.dev)
|
- [Sarang N](https://srng.dev)
|
||||||
|
- [Sarvesh Patil](https://sarveshpatil.com)
|
||||||
|
- [Sai Teja](https://saiteja13427.github.io/)
|
||||||
|
- [Satish Jhanwer](https://satishjhanwer.github.io/) ([@satishjhanwer](https://github.com/satishjhanwer))
|
||||||
- [Saurabh Daware](https://www.saurabhdaware.in/)
|
- [Saurabh Daware](https://www.saurabhdaware.in/)
|
||||||
- [Saurav M H](https://sauravmh.com)
|
- [Saurav M H](https://sauravmh.com)
|
||||||
|
- [Sauvik Nath](https://sauviknath.com)
|
||||||
|
- [Schleidens Dev](https://schleidens.netlify.app/)
|
||||||
- [Scott Spence](https://scottspence.com)
|
- [Scott Spence](https://scottspence.com)
|
||||||
|
- [Sebastien Graf](https://seb-graf.com)
|
||||||
- [Sergei Chestakov](https://sergei.com)
|
- [Sergei Chestakov](https://sergei.com)
|
||||||
- [Seth Hall](https://sethhallcreative.com)
|
- [Seth Hall](https://sethhallcreative.com)
|
||||||
- [Serhii Hidenko](https://lookmy.dev/)
|
- [Seunghun Bang](https://seunghun-website.vercel.app/)
|
||||||
- [Shaan Khan](https://www.shaankhan.dev/)
|
- [Shaan Khan](https://www.shaankhan.dev/)
|
||||||
- [Shahid Shaikh](http://shahidshaikh.com)
|
- [Shahid Shaikh](http://shahidshaikh.com)
|
||||||
- [Shannon Crabill](http://shannoncrabill.com)
|
- [Shannon Crabill](http://shannoncrabill.com)
|
||||||
|
- [Shashank Kumar Chaudhary](https://my-portfolio-shashank-crypto.vercel.app/)
|
||||||
|
- [Shivam Kaushal](https://shivamkaushal.in)
|
||||||
- [Shubham Tarade](https://coder-shanks.github.io/)
|
- [Shubham Tarade](https://coder-shanks.github.io/)
|
||||||
- [Shuvam Manna](http://shuvam.xyz)
|
- [Shuvam Manna](http://shuvam.xyz)
|
||||||
|
- [Silas Rodrigues](https://silasrodrigues.vercel.app)
|
||||||
- [Simon Knott](https://simonknott.de)
|
- [Simon Knott](https://simonknott.de)
|
||||||
|
- [Sneha Ratnani](https://www.sneharatnani.com/)
|
||||||
- [Soham Mondal](https://sohammondal.com)
|
- [Soham Mondal](https://sohammondal.com)
|
||||||
- [Sonu kumar kushwaha](https://flyingsonu122.github.io/)
|
- [Sonu kumar kushwaha](https://flyingsonu122.github.io/)
|
||||||
- [Sourav Dutta](http://i-am-souravdutta.firebaseapp.com)
|
- [Sourav Dutta](http://i-am-souravdutta.firebaseapp.com)
|
||||||
- [Sree Godavarthi](http://sreegodavarthi.github.io)
|
- [Sree Godavarthi](http://sreegodavarthi.github.io)
|
||||||
- [Stefan Bohacek](https://fourtonfish.com/)
|
- [Stefan Bohacek](https://fourtonfish.com/)
|
||||||
- [Subhayu Kr Bala](http://subhayu.me)
|
- [Suhail Roushan](https://suhailroushan.com)
|
||||||
- [Sukhpal Saini](https://sssaini.io/)
|
- [Sumit Nalavade](https://sumitnalavade.vercel.app/)
|
||||||
- [Syeda Aimen Batool](http://aimen.dev)
|
|
||||||
|
|
||||||
## T
|
## T
|
||||||
|
|
||||||
- [Tanisha Gupta](https://tanishagupta1.github.io/Tanisha-Gupta-portfolio/)
|
- [Tanisha Gupta](https://tanishagupta1.github.io/Tanisha-Gupta-portfolio/)
|
||||||
|
- [Taranjeet Singh](https://taranjeet.co/)
|
||||||
- [Tejas Kumar](http://tej.as)
|
- [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)
|
- [Tek Raj Joshi](https://t3kraj.netlify.app)
|
||||||
- [Thea Choem](https://www.theachoem.com/)
|
- [Thomas David](https://thomas-david-portfolio.netlify.app/)
|
||||||
|
- [Tiago Hermano](https://tiagohermano.dev/)
|
||||||
|
- [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)
|
- [TheKaushikGoswami](https://thekaushikgoswami.github.io)
|
||||||
- [Tom Sherman](https://tom-sherman.com)
|
|
||||||
- [Travis Fischer](https://transitivebullsh.it)
|
- [Travis Fischer](https://transitivebullsh.it)
|
||||||
|
|
||||||
## U
|
## U
|
||||||
@ -428,19 +537,23 @@ Hopefully this repo can serve as a source of inspiration for your portfolio!
|
|||||||
|
|
||||||
- [Vaibhav Jaiswal](https://vaibhavjaiswal.vercel.app/#/)
|
- [Vaibhav Jaiswal](https://vaibhavjaiswal.vercel.app/#/)
|
||||||
- [Vaibhav Singh](http://vaibhavsingh97.com)
|
- [Vaibhav Singh](http://vaibhavsingh97.com)
|
||||||
|
- [Vaibhav Vikas](https://vaibhavvikas.github.io/)
|
||||||
- [Vaidhyanathan S M](https://vaidhyanathansm.netlify.app/)
|
- [Vaidhyanathan S M](https://vaidhyanathansm.netlify.app/)
|
||||||
- [Valentine Elum](https://vahlcode.vercel.app)
|
- [Valentine Elum](https://vahlcode.vercel.app)
|
||||||
- [Varun Dey](https://varundey.me)
|
- [Varun Dey](https://varundey.me)
|
||||||
- [Vatsal Shah](https://vatsalshah.in)
|
- [Vatsal Shah](https://vatsalshah.in)
|
||||||
- [Vedant Athavale](https://vedantathavale.netlify.app/)
|
- [Vedant Athavale](https://vedantathavale.webflow.io/)
|
||||||
- [Vedant Milind Athavale](http://vedant-athavale.byethost31.com/portfolio.html?i=1)
|
- [Vedant Milind Athavale](http://vedant-athavale.byethost31.com/portfolio.html?i=1)
|
||||||
- [Victor Aremu](http://bit.ly/victoraremu)
|
- [Victor Aremu](http://bit.ly/victoraremu)
|
||||||
- [Vidushan Chooriyakumaran](https://vidu.sh/an)
|
- [Vidushan Chooriyakumaran](https://vidu.sh/an)
|
||||||
|
- [Vijay Verma](https://vjy.me/)
|
||||||
- [Vikas Ukani](https://vikas-ukani.github.io/)
|
- [Vikas Ukani](https://vikas-ukani.github.io/)
|
||||||
|
- [Vinay Pratap Singh](https://harvi.me/)
|
||||||
- [Vinay Somawat](https://vinaysomawat.github.io/)
|
- [Vinay Somawat](https://vinaysomawat.github.io/)
|
||||||
- [Vincent Milum Jr](http://darkain.com)
|
- [Vincent Milum Jr](http://darkain.com)
|
||||||
- [Visinigiri Aditya](https://visinigiri-aditya.me/)
|
- [Vishwanath B](https://frozenhearth.vercel.app)
|
||||||
- [Vishwasa Navada K](https://vishwas.tech)
|
- [Vishwasa Navada K](https://vishwas.tech)
|
||||||
|
- [Vitalik Hakim](https://vitalikhakim.tech/)
|
||||||
- [Vito Sartori](https://vito.io)
|
- [Vito Sartori](https://vito.io)
|
||||||
|
|
||||||
## W
|
## W
|
||||||
@ -454,11 +567,14 @@ Hopefully this repo can serve as a source of inspiration for your portfolio!
|
|||||||
- [Yashita Namdeo](https://yashitanamdeo.github.io/)
|
- [Yashita Namdeo](https://yashitanamdeo.github.io/)
|
||||||
- [Yechiel Kalmenson](https://yechiel.me)
|
- [Yechiel Kalmenson](https://yechiel.me)
|
||||||
- [YiMing Han](https://yiminghan.com)
|
- [YiMing Han](https://yiminghan.com)
|
||||||
|
- [Yinka Adedire](https://yinka.codes)
|
||||||
- [Yosra Hashim](https://yhshi26.github.io/)
|
- [Yosra Hashim](https://yhshi26.github.io/)
|
||||||
- [Yuji Sato](https://www.yujisatojr.com/)
|
- [Yuji Sato](https://www.yujisatojr.com/)
|
||||||
|
- [Yuri Corredor](https://www.yuricorredor.tech/)
|
||||||
- [Yuri Faria](https://windows87.github.io/)
|
- [Yuri Faria](https://windows87.github.io/)
|
||||||
|
|
||||||
## Z
|
## Z
|
||||||
|
|
||||||
|
- [Zaur Sharifov](https://www.zaursharifov.com)
|
||||||
- [Ziyad](https://ziyadsk.github.io/portfolio-V2/)
|
- [Ziyad](https://ziyadsk.github.io/portfolio-V2/)
|
||||||
- [Zonayed Ahmed](https://zonayed.me/)
|
- [Zonayed Ahmed](https://zonayed.me/)
|
||||||
|
@ -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
|
|
Loading…
Reference in New Issue
Block a user