Compare commits

...

13 Commits

Author SHA1 Message Date
Prabhjot
62e1990fc3
Merge faa916d966 into 55dbd8cb2b 2025-02-28 10:23:54 +07:00
Chuck
55dbd8cb2b
Merge pull request #2090 from emanuellcs/master
Update Emanuel Lázaro's URL
2025-02-27 13:22:40 -05:00
Emanuel Lázaro
ac51bf0bcd
Update Emanuel Lázaro's URL 2025-02-27 14:19:01 -03:00
Chuck
78cfb6c9ec
Merge pull request #2089 from MalikAamirDev/pr/2087
Fix alphabetical order
2025-02-27 12:00:48 -05:00
Muhammad Aamir Malik
e3119409b4 Fix alphabetical order 2025-02-27 21:49:53 +05:00
Chuck
fa9e1efb24
Merge pull request #2087 from nabinkatwal7/add/nabin-katwal
add portfolio site
2025-02-27 09:48:28 -05:00
Nabin Katwal
985d861a0e
Update README.md 2025-02-27 19:36:24 +05:45
Chuck
975f24ef13
Merge pull request #2088 from Anonymous1223334444/master
Update README.md
2025-02-27 05:44:45 -05:00
Andre Sarr
225d753ec0
Update README.md 2025-02-27 07:18:00 +00:00
Nabin Katwal
960b2be7ab add domain 2025-02-27 11:43:50 +05:45
Chuck
776af17bef
Merge pull request #2085 from prashantkhandelwal/master
Updated README.md
2025-02-26 16:10:12 -05:00
Prashant Khandelwal
0a26024ba7 Updated README.md 2025-02-27 02:10:26 +05:30
prabhjot2001
faa916d966 Add portfolio links opener utility script 2025-01-30 00:12:41 +05:30
3 changed files with 128 additions and 2 deletions

View File

@ -17,8 +17,8 @@ Hopefully this repo can serve as a source of inspiration for your portfolio!
## A
- [Aaban Malik](https://muhammadaamirmalik.com/) [Full-stack Mobile App Developer]
- [**Akhand Tajmirul**](https://www.me.toinfinite.dev/) [Frontend Engineer]
- [Aaban Malik](https://muhammadaamirmalik.com/)
- [Aabid Ahmed](https://sawad.framer.website/)
- [Aabraham James](https://seera.framer.website/)
- [Aakash Rajbanshi](https://aakashrajbanshi.com.np/) [Flutter Developer]
@ -110,6 +110,7 @@ Hopefully this repo can serve as a source of inspiration for your portfolio!
- [Ananya Biswas](https://dub.sh/ananyabiswas)
- [Anas Boubechra](https://cschad.com)
- [Anay Paraswani](https://anayparaswani.dev)
- [Andre Sarr](https://andresarr.is-a.dev)
- [Andrej Sharapov](https://sharapov.dev)
- [Andres Alcaraz](https://andres-alcaraz.netlify.app/)
- [Andrew Woods](https://andrewwoods.net)
@ -316,7 +317,7 @@ Hopefully this repo can serve as a source of inspiration for your portfolio!
- [Elio Jordan Lopes](https://developer.vercel.app)
- [Elliot Négrel-Jerzy](https://bsodium.fr)
- [Elmo Nickol](https://elmonickcool.vercel.app)
- [Emanuel Lázaro](https://emanuellcs.github.io/emanuellazaro/)
- [Emanuel Lázaro](https://emanuellcs.github.io/)
- [Emir Bolat](https://spee.dev/)
- [Emmanuel ADEKPLOVI](https://homescriptone.com)
- [Enea Xharja](https://eneaxharja.com)
@ -629,6 +630,7 @@ Hopefully this repo can serve as a source of inspiration for your portfolio!
## N
- [Nabin Katwal](https://www.nabin.is-a.dev)
- [Nabin Khair](https://www.nabinkhair.com.np)
- [Nacho Caiafa](https://nachokai.github.io/rpg-cv)
- [Nader Ferjani](https://nader.run)
@ -713,6 +715,7 @@ Hopefully this repo can serve as a source of inspiration for your portfolio!
- [Prakash Pun](https://prakashpun.me) [Software Engineer]
- [Pramesh Karki](https://karkipramesh.com.np)
- [Pranshu Patel](https://pranshu05.vercel.app)
- [Prashant Khandelwal](https://prashantk.dev)
- [Praveen Kumar Purushothaman](https://praveen.science)
- [Preet Suthar](https://preetsuthar.me)
- [Prince Kumar](https://www.princecodes.online)

73
tools/README.md Normal file
View File

@ -0,0 +1,73 @@
# Portfolio Link Opener 🔗
A simple Python script that opens all portfolio links from the README.md file in your browser tabs automatically! No more clicking links one by one 😊
## What does it do? 🤔
Imagine you want to look at all the awesome portfolio websites in this repository. Instead of clicking hundreds of links manually, this script will:
1. Read all the links from the README file
2. Open each link in a new tab in your default browser
3. Tell you how many links it opened
## How to use it? 🚀
### Step 1: Requirements
- Make sure you have Python installed on your computer
- Download the `portfolio_opener.py` script
### Step 2: Run the script
1. Put the script in the same folder as the README.md file
2. Open your terminal/command prompt
3. Navigate to the folder containing the script
4. Run this command:
```bash
python portfolio_opener.py
```
## Usage step by step
1. Make sure you have Python installed on your system
2. Navigate to the tools directory:
```bash
cd tools
```
3. Run the script:
```bash
portfolio_opener.py
```
4. Or specify a different markdown file:
```
portfolio_opener.py -f ../README.md
```
## ⚠️ Important Notes
### About Opening Links
- This script opens all links from README.md in your default browser
- Opening too many links at once may slow down your browser or cause it to crash
- We recommend opening no more than 50 links at a time
- Keep the links in a file based on how many you want to open. For example, if you want to open 30 links, just add 30 links to the file. If you want 50, add 50 links, and so on
- If your computer can handle more tabs, feel free to open more!
### Browser Tips
- Your browser might ask permission to open multiple tabs
- If your browser slows down, just close some tabs and try again
- This is completely normal - don't worry!
### Recommendation
Start with 50 tabs first. If your computer handles it well, you can try opening more next time.
### 🎉 Have fun exploring all the amazing portfolios for inspiration!

50
tools/portfolio_opener.py Normal file
View File

@ -0,0 +1,50 @@
import re
import webbrowser
import argparse
import sys
from pathlib import Path
def open_portfolio_links(file_path):
"""
Opens all portfolio links found in the given markdown file in new browser tabs.
Args:
file_path (str): Path to the markdown file containing portfolio links
"""
try:
# URL pattern to match the url link in mark down file
url_pattern = re.compile(r'https?://\S+?(?=\)|\])|https?://\S+')
# Reads the file
with open(file_path, "r", encoding="utf-8") as file:
content = file.read()
urls = url_pattern.findall(content)
# Open URLs
for url in urls:
webbrowser.open_new_tab(url)
print(f"Successfully opened {len(urls)} links in your default browser :`).")
except FileNotFoundError:
print(f"Error: File '{file_path}' not found.")
sys.exit(1)
except Exception as e:
print(f"An error occurred: {str(e)}")
sys.exit(1)
def main():
parser = argparse.ArgumentParser(
description="Open all portfolio links from the developer-portfolios README in your browser."
)
parser.add_argument(
"-f", "--file",
default="../README.md",
help="Path to the markdown file containing portfolio links (default: ../README.md)"
)
args = parser.parse_args()
open_portfolio_links(args.file)
if __name__ == "__main__":
main()