├── .github ├── FUNDING.yml └── workflows │ ├── CN-readme.yml │ ├── US-readme.yml │ ├── VN-readme.yml │ ├── ai-readme.yml │ ├── application-readme.yml │ └── update-readme.yml ├── .gitignore ├── README.md ├── countries ├── CN.md ├── US.md └── VN.md ├── license ├── package.json └── topics ├── ai.md └── application.md /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | github: tinyhref 3 | ko_fi: tinyhref 4 | buy_me_a_coffee: tinyhref 5 | custom: ['https://paypal.me/tinyhref'] -------------------------------------------------------------------------------- /.github/workflows/CN-readme.yml: -------------------------------------------------------------------------------- 1 | name: Update country CN from URL 2 | 3 | on: 4 | schedule: 5 | # - cron: '0 17 * * *' # 0h (GMT+7) 6 | # - cron: '0 5 * * *' # 12h (GMT+7) 7 | - cron: '0 17,20,23,2,5,8,11,14 * * *' # Runs every 3 hours in GMT+7 8 | 9 | jobs: 10 | update-country-CN: 11 | runs-on: ubuntu-latest 12 | 13 | steps: 14 | - name: Checkout repository 15 | uses: actions/checkout@v3 16 | with: 17 | token: ${{ secrets.GITHUB_TOKEN }} 18 | fetch-depth: 0 19 | ref: main 20 | 21 | - name: Create topics directory if not exists 22 | run: mkdir -p countries 23 | 24 | - name: Fetch data from URL 25 | run: | 26 | curl -s https://tinyhref.com/launch/readme?country=CN -o countries/CN.md 27 | 28 | - name: Pull latest changes safely 29 | run: | 30 | if ! git diff --quiet; then 31 | git stash 32 | git pull --rebase origin main 33 | git stash pop || true 34 | else 35 | git pull --rebase origin main 36 | fi 37 | 38 | - name: Commit & Push Changes 39 | run: | 40 | git config --global user.name "github-actions[bot]" 41 | git config --global user.email "github-actions[bot]@users.noreply.github.com" 42 | git add countries/CN.md 43 | git commit -m "🤖 auto-update" || exit 0 44 | git push --force origin main 45 | -------------------------------------------------------------------------------- /.github/workflows/US-readme.yml: -------------------------------------------------------------------------------- 1 | name: Update country US from URL 2 | 3 | on: 4 | schedule: 5 | # - cron: '0 17 * * *' # 0h (GMT+7) 6 | # - cron: '0 5 * * *' # 12h (GMT+7) 7 | - cron: '0 17,20,23,2,5,8,11,14 * * *' # Runs every 3 hours in GMT+7 8 | 9 | jobs: 10 | update-country-US: 11 | runs-on: ubuntu-latest 12 | 13 | steps: 14 | - name: Checkout repository 15 | uses: actions/checkout@v3 16 | with: 17 | token: ${{ secrets.GITHUB_TOKEN }} 18 | fetch-depth: 0 19 | ref: main 20 | 21 | - name: Create topics directory if not exists 22 | run: mkdir -p countries 23 | 24 | - name: Fetch data from URL 25 | run: | 26 | curl -s https://tinyhref.com/launch/readme?country=US -o countries/US.md 27 | 28 | - name: Pull latest changes safely 29 | run: | 30 | if ! git diff --quiet; then 31 | git stash 32 | git pull --rebase origin main 33 | git stash pop || true 34 | else 35 | git pull --rebase origin main 36 | fi 37 | 38 | - name: Commit & Push Changes 39 | run: | 40 | git config --global user.name "github-actions[bot]" 41 | git config --global user.email "github-actions[bot]@users.noreply.github.com" 42 | git add countries/US.md 43 | git commit -m "🤖 auto-update" || exit 0 44 | git push --force origin main 45 | -------------------------------------------------------------------------------- /.github/workflows/VN-readme.yml: -------------------------------------------------------------------------------- 1 | name: Update country VN from URL 2 | 3 | on: 4 | schedule: 5 | # - cron: '0 17 * * *' # 0h (GMT+7) 6 | # - cron: '0 5 * * *' # 12h (GMT+7) 7 | - cron: '0 17,20,23,2,5,8,11,14 * * *' # Runs every 3 hours in GMT+7 8 | 9 | jobs: 10 | update-country-VN: 11 | runs-on: ubuntu-latest 12 | 13 | steps: 14 | - name: Checkout repository 15 | uses: actions/checkout@v3 16 | with: 17 | token: ${{ secrets.GITHUB_TOKEN }} 18 | fetch-depth: 0 19 | ref: main 20 | 21 | - name: Create topics directory if not exists 22 | run: mkdir -p countries 23 | 24 | - name: Fetch data from URL 25 | run: | 26 | curl -s https://tinyhref.com/launch/readme?country=VN -o countries/VN.md 27 | 28 | - name: Pull latest changes safely 29 | run: | 30 | if ! git diff --quiet; then 31 | git stash 32 | git pull --rebase origin main 33 | git stash pop || true 34 | else 35 | git pull --rebase origin main 36 | fi 37 | 38 | - name: Commit & Push Changes 39 | run: | 40 | git config --global user.name "github-actions[bot]" 41 | git config --global user.email "github-actions[bot]@users.noreply.github.com" 42 | git add countries/VN.md 43 | git commit -m "🤖 auto-update" || exit 0 44 | git push --force origin main 45 | -------------------------------------------------------------------------------- /.github/workflows/ai-readme.yml: -------------------------------------------------------------------------------- 1 | name: Update topic AI from URL 2 | 3 | on: 4 | schedule: 5 | # - cron: '0 17 * * *' # 0h (GMT+7) 6 | # - cron: '0 5 * * *' # 12h (GMT+7) 7 | - cron: '0 17,20,23,2,5,8,11,14 * * *' # Runs every 3 hours in GMT+7 8 | 9 | jobs: 10 | update-topic-ai: 11 | runs-on: ubuntu-latest 12 | 13 | steps: 14 | - name: Checkout repository 15 | uses: actions/checkout@v3 16 | with: 17 | token: ${{ secrets.GITHUB_TOKEN }} 18 | fetch-depth: 0 19 | ref: main 20 | 21 | - name: Create topics directory if not exists 22 | run: mkdir -p topics 23 | 24 | - name: Fetch data from URL 25 | run: | 26 | curl -s https://tinyhref.com/launch/ai/readme -o topics/ai.md 27 | 28 | - name: Pull latest changes safely 29 | run: | 30 | if ! git diff --quiet; then 31 | git stash 32 | git pull --rebase origin main 33 | git stash pop || true 34 | else 35 | git pull --rebase origin main 36 | fi 37 | 38 | - name: Commit & Push Changes 39 | run: | 40 | git config --global user.name "github-actions[bot]" 41 | git config --global user.email "github-actions[bot]@users.noreply.github.com" 42 | git add topics/ai.md 43 | git commit -m "🤖 auto-update" || exit 0 44 | git push --force origin main 45 | -------------------------------------------------------------------------------- /.github/workflows/application-readme.yml: -------------------------------------------------------------------------------- 1 | name: Update topic application from URL 2 | 3 | on: 4 | schedule: 5 | # - cron: '0 17 * * *' # 0h (GMT+7) 6 | # - cron: '0 5 * * *' # 12h (GMT+7) 7 | - cron: '0 17,20,23,2,5,8,11,14 * * *' # Runs every 3 hours in GMT+7 8 | 9 | jobs: 10 | update-topic-application: 11 | runs-on: ubuntu-latest 12 | 13 | steps: 14 | - name: Checkout repository 15 | uses: actions/checkout@v3 16 | with: 17 | token: ${{ secrets.GITHUB_TOKEN }} 18 | fetch-depth: 0 19 | ref: main 20 | 21 | - name: Create topics directory if not exists 22 | run: mkdir -p topics 23 | 24 | - name: Fetch data from URL 25 | run: | 26 | curl -s https://tinyhref.com/launch/application/readme -o topics/application.md 27 | 28 | - name: Pull latest changes safely 29 | run: | 30 | if ! git diff --quiet; then 31 | git stash 32 | git pull --rebase origin main 33 | git stash pop || true 34 | else 35 | git pull --rebase origin main 36 | fi 37 | 38 | - name: Commit & Push Changes 39 | run: | 40 | git config --global user.name "github-actions[bot]" 41 | git config --global user.email "github-actions[bot]@users.noreply.github.com" 42 | git add topics/application.md 43 | git commit -m "🤖 auto-update" || exit 0 44 | git push --force origin main 45 | -------------------------------------------------------------------------------- /.github/workflows/update-readme.yml: -------------------------------------------------------------------------------- 1 | name: Update README from URL 2 | 3 | on: 4 | schedule: 5 | # - cron: '0 17 * * *' # 0h (GMT+7) 6 | # - cron: '0 5 * * *' # 12h (GMT+7) 7 | - cron: '0 17,20,23,2,5,8,11,14 * * *' # Runs every 3 hours in GMT+7 8 | # push: 9 | # branches: 10 | # - main 11 | 12 | jobs: 13 | update-readme: 14 | runs-on: ubuntu-latest 15 | 16 | steps: 17 | - name: Checkout repository 18 | uses: actions/checkout@v3 19 | with: 20 | token: ${{ secrets.GITHUB_TOKEN }} 21 | fetch-depth: 0 22 | ref: main 23 | 24 | - name: Fetch data from URL 25 | run: | 26 | curl -s https://tinyhref.com/launch/readme -o README.md 27 | 28 | - name: Pull latest changes safely 29 | run: | 30 | if ! git diff --quiet; then 31 | git stash 32 | git pull --rebase origin main 33 | git stash pop || true 34 | else 35 | git pull --rebase origin main 36 | fi 37 | 38 | - name: Commit & Push Changes 39 | run: | 40 | git config --global user.name "github-actions[bot]" 41 | git config --global user.email "github-actions[bot]@users.noreply.github.com" 42 | git add README.md 43 | git commit -m "🤖 auto-update" || exit 0 44 | git push --force origin main 45 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | node_modules/ 3 | yarn.lock 4 | yarn-error.log 5 | package-lock.json 6 | build/ 7 | dist/ 8 | bin/ 9 | log/ -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 |
tinyhref
2 |

500link - TinyHref

3 |

Introducing new products, find inspiration and new ideas

4 | 5 |
submit 6 | submit
7 | 8 |

All · Today · From Vietnam

9 | 10 |

Game · Tool · AI · StartUp · Application · Channel · Community · Ecommerce · Open Source · Web3 · No Code

11 | 12 | break-line 13 | 14 |
Rust Rust - The Safe and High-Performance Programming Language.
15 |
J2TEAM Community J2TEAM Community - A Diverse and Creative Online Space.
16 |
PhotoAI PhotoAI - AI Photo & Video Generator.
17 |
TanStack Form TanStack Form - Headless, performant, and type-safe form state management.
18 |
Bolt.new Bolt.new - Prompt, run, edit, and deploy full-stack web and mobile apps.
19 |
SnapEdit SnapEdit - Photo Editor Online - AI Editing Photo Free.
20 |
Motion Motion - A modern animation library for JavaScript and React.
21 |
Xyris Xyris - Free Online SVG Animator - Create Animated SVGs without Coding.
22 |
Fly.Pieter.com Fly.Pieter.com - The AI-Powered Flight Simulator Game.
23 |
Appwrite Appwrite - Build like a team of hundreds.
24 |
shadcn/ui shadcn/ui - Build your component library.
25 |
Firebase Firebase - Google's Mobile and Web App Development Platform.
26 |
FitRoom FitRoom - Change Clothes Online with AI.
27 |
TypingMind TypingMind - LLM Frontend Chat UI for AI models.
28 |
Manus Manus - a General agent doesn't just think, but delivers results.
29 |
Supabase Supabase - The Open Source Firebase Alternative.
30 |
Rspeedy Rspeedy - The Build Tool for Lynx.
31 |
Roadmap.sh Roadmap.sh - Developer Roadmaps.
32 |
Lynx Lynx - Empower the web community and invite more to build cross-platform apps.
33 |
9tube 9tube - Discover a world of vibrant music and videos.
34 |
Lucide Lucide - Beautiful & consistent icon toolkit made by the community.
35 |
Build in public VN Build in public VN - A place to share SaaS products and building processes with the public.
36 |
Vite Vite - Next Generation Frontend Tooling.
37 |
Chatwith Chatwith - Custom ChatGPT chatbot with your website & files.
38 |
AI Pill 💊 AI Pill 💊 - The Premier AI Tools Hub.
39 |
ShipFast ShipFast - Launch Your Startup in Days, Not Weeks.
40 |
Đen Vâu Official Đen Vâu Official - A Vietnamese boy who plays Rap.
41 |
IndieBoosting IndieBoosting - Indie makers unite: feature, support, succeed.
42 |
Fiverr Fiverr - Freelance Services Marketplace.
43 |
Store.link Store.link - Effortless Online Store using Google Sheets.
44 |
Satori Satori - Enlightened library to convert HTML and CSS to SVG.
45 |
DeepSeek DeepSeek - Chat with DeepSeek AI.
46 |
Trae Trae - Ship Faster with Trae.
47 |
PearAI PearAI - Open source, extendable AI code editor.
48 |
Maxun Maxun - Open-Source No-Code Web Data Extraction Platform.
49 |
Binsoo Binsoo - Photo filters & editor.
50 |
YEScale YEScale - Scale Your AI. Instantly.
51 |
Diaflow.io Diaflow.io - Be the hero of your company with powerful automation & apps.
52 |
Lotus Chat Lotus Chat - Chat and messaging application exclusively for Vietnamese people.
53 |
daily.dev daily.dev - Where developers suffer together.
54 |
Next.js Next.js - by Vercel is the full-stack React framework for the web.
55 |
Arc Browser Arc Browser - Bridging experience and technology.
56 |
Threads Threads - Share ideas & trends with text.
57 |
CapCut CapCut - All-in-one video editor & graphic design tool driven by AI.
58 |
Figma Figma - The Collaborative Interface Design Tool.
59 |
Canva Canva - Visual Suite for Everyone.
60 |
Notion Notion - The all-in-one workspace for your notes, tasks, wikis, and databases.
61 |
ChatGPT ChatGPT - Helps you get answers, find inspiration and be more productive.
62 | -------------------------------------------------------------------------------- /countries/CN.md: -------------------------------------------------------------------------------- 1 |
tinyhref
2 |

500link - China

3 |

Introducing new products, find inspiration and new ideas

4 | 5 |
submit 6 | submit
7 | 8 | break-line 9 | 10 |
Manus Manus - a General agent doesn't just think, but delivers results.
11 |
Rspeedy Rspeedy - The Build Tool for Lynx.
12 |
Lynx Lynx - Empower the web community and invite more to build cross-platform apps.
13 |
Vite Vite - Next Generation Frontend Tooling.
14 |
DeepSeek DeepSeek - Chat with DeepSeek AI.
15 |
Trae Trae - Ship Faster with Trae.
16 |
CapCut CapCut - All-in-one video editor & graphic design tool driven by AI.
17 | -------------------------------------------------------------------------------- /countries/US.md: -------------------------------------------------------------------------------- 1 |
tinyhref
2 |

500link - United States

3 |

Introducing new products, find inspiration and new ideas

4 | 5 |
submit 6 | submit
7 | 8 | break-line 9 | 10 |
PhotoAI PhotoAI - AI Photo & Video Generator.
11 |
Bolt.new Bolt.new - Prompt, run, edit, and deploy full-stack web and mobile apps.
12 |
Motion Motion - A modern animation library for JavaScript and React.
13 |
Appwrite Appwrite - Build like a team of hundreds.
14 |
shadcn/ui shadcn/ui - Build your component library.
15 |
Firebase Firebase - Google's Mobile and Web App Development Platform.
16 |
Supabase Supabase - The Open Source Firebase Alternative.
17 |
Lucide Lucide - Beautiful & consistent icon toolkit made by the community.
18 |
AI Pill 💊 AI Pill 💊 - The Premier AI Tools Hub.
19 |
ShipFast ShipFast - Launch Your Startup in Days, Not Weeks.
20 |
Fiverr Fiverr - Freelance Services Marketplace.
21 |
Store.link Store.link - Effortless Online Store using Google Sheets.
22 |
Satori Satori - Enlightened library to convert HTML and CSS to SVG.
23 |
PearAI PearAI - Open source, extendable AI code editor.
24 |
Maxun Maxun - Open-Source No-Code Web Data Extraction Platform.
25 |
daily.dev daily.dev - Where developers suffer together.
26 |
Next.js Next.js - by Vercel is the full-stack React framework for the web.
27 |
Arc Browser Arc Browser - Bridging experience and technology.
28 |
Threads Threads - Share ideas & trends with text.
29 |
Figma Figma - The Collaborative Interface Design Tool.
30 |
Notion Notion - The all-in-one workspace for your notes, tasks, wikis, and databases.
31 |
ChatGPT ChatGPT - Helps you get answers, find inspiration and be more productive.
32 | -------------------------------------------------------------------------------- /countries/VN.md: -------------------------------------------------------------------------------- 1 |
tinyhref
2 |

500link - Vietnam

3 |

Introducing new products, find inspiration and new ideas

4 | 5 |
submit 6 | submit
7 | 8 | break-line 9 | 10 |
J2TEAM Community J2TEAM Community - A Diverse and Creative Online Space.
11 |
SnapEdit SnapEdit - Photo Editor Online - AI Editing Photo Free.
12 |
Xyris Xyris - Free Online SVG Animator - Create Animated SVGs without Coding.
13 |
FitRoom FitRoom - Change Clothes Online with AI.
14 |
TypingMind TypingMind - LLM Frontend Chat UI for AI models.
15 |
9tube 9tube - Discover a world of vibrant music and videos.
16 |
Build in public VN Build in public VN - A place to share SaaS products and building processes with the public.
17 |
Đen Vâu Official Đen Vâu Official - A Vietnamese boy who plays Rap.
18 |
IndieBoosting IndieBoosting - Indie makers unite: feature, support, succeed.
19 |
Binsoo Binsoo - Photo filters & editor.
20 |
YEScale YEScale - Scale Your AI. Instantly.
21 |
Diaflow.io Diaflow.io - Be the hero of your company with powerful automation & apps.
22 |
Lotus Chat Lotus Chat - Chat and messaging application exclusively for Vietnamese people.
23 | -------------------------------------------------------------------------------- /license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyhref/500link/152676d1bad051a9691d7775b346cf7cbcff0e7b/license -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "500link", 3 | "version": "0.0.0", 4 | "description": "Awesome lists link about all kinds of topics", 5 | "keywords": [ 6 | "500link", 7 | "tinyhref", 8 | "awesome", 9 | "lists" 10 | ], 11 | "license": "MIT", 12 | "author": { 13 | "name": "TinyHref", 14 | "website": "https://500link.com" 15 | }, 16 | "repository": { 17 | "type": "git", 18 | "url": "https://github.com/tinyhref/500link" 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /topics/ai.md: -------------------------------------------------------------------------------- 1 |
tinyhref
2 |

500link - AI

3 |

Introducing new products, find inspiration and new ideas

4 | 5 |
submit 6 | submit
7 | 8 | break-line 9 | 10 |
PhotoAI PhotoAI - AI Photo & Video Generator.
11 |
Bolt.new Bolt.new - Prompt, run, edit, and deploy full-stack web and mobile apps.
12 |
SnapEdit SnapEdit - Photo Editor Online - AI Editing Photo Free.
13 |
FitRoom FitRoom - Change Clothes Online with AI.
14 |
TypingMind TypingMind - LLM Frontend Chat UI for AI models.
15 |
Manus Manus - a General agent doesn't just think, but delivers results.
16 |
Chatwith Chatwith - Custom ChatGPT chatbot with your website & files.
17 |
AI Pill 💊 AI Pill 💊 - The Premier AI Tools Hub.
18 |
DeepSeek DeepSeek - Chat with DeepSeek AI.
19 |
Trae Trae - Ship Faster with Trae.
20 |
PearAI PearAI - Open source, extendable AI code editor.
21 |
YEScale YEScale - Scale Your AI. Instantly.
22 |
ChatGPT ChatGPT - Helps you get answers, find inspiration and be more productive.
23 | -------------------------------------------------------------------------------- /topics/application.md: -------------------------------------------------------------------------------- 1 |
tinyhref
2 |

500link - Application

3 |

Introducing new products, find inspiration and new ideas

4 | 5 |
submit 6 | submit
7 | 8 | break-line 9 | 10 |
FitRoom FitRoom - Change Clothes Online with AI.
11 |
9tube 9tube - Discover a world of vibrant music and videos.
12 |
Binsoo Binsoo - Photo filters & editor.
13 |
Lotus Chat Lotus Chat - Chat and messaging application exclusively for Vietnamese people.
14 |
Arc Browser Arc Browser - Bridging experience and technology.
15 |
Threads Threads - Share ideas & trends with text.
16 |
CapCut CapCut - All-in-one video editor & graphic design tool driven by AI.
17 |
Figma Figma - The Collaborative Interface Design Tool.
18 |
Canva Canva - Visual Suite for Everyone.
19 |
Notion Notion - The all-in-one workspace for your notes, tasks, wikis, and databases.
20 | --------------------------------------------------------------------------------