mirror of
https://github.com/fmhy/edit.git
synced 2026-03-11 08:55:38 +00:00
Compare commits
17 commits
a6ea86704e
...
3fd36b418d
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
3fd36b418d | ||
|
|
44dfe9503a | ||
|
|
657408905a | ||
|
|
e0e97c960f | ||
|
|
35069719f1 | ||
|
|
4cb2a12f17 | ||
|
|
143645da55 | ||
|
|
7df60934f1 | ||
|
|
e596ae5a8c | ||
|
|
7fdf0627be | ||
|
|
8dabeb3b47 | ||
|
|
3e6fdb7b30 | ||
|
|
749bd77f81 | ||
|
|
26b7edfd07 | ||
|
|
d062392ba4 | ||
|
|
2098191bef | ||
|
|
491418972d |
33 changed files with 426 additions and 374 deletions
2
.github/CONTRIBUTING.md
vendored
2
.github/CONTRIBUTING.md
vendored
|
|
@ -19,7 +19,7 @@ ## Submissions
|
|||
|
||||
- **💰️ Paid / Trial Sites** - We don't accept any paid or free trial only entries, with the exception of select paid [VPNs](/privacy#vpn) and [Debrid](/downloading#debrid-leeches).
|
||||
- **🕹️ Emulators** - Already listed on [Index Sites](/gaming#emulators).
|
||||
- **🌐 Web Browsers** - Good open-source browsers are already listed, so we just accept [indexes](/internet-tools#browser-tools), privacy-focused, and good mobile ones.
|
||||
- **🌐 Web Browsers** - Good open-source browsers are already listed, so we just accept indexes, privacy-focused, and good mobile ones.
|
||||
- **🔻 Leeches** - Unless it's not already listed on existing [Leech Lists](/downloading#debrid-leeches), don't submit these.
|
||||
- **🐧 Linux Distros** - Already listed on [Index Sites](/linux-macos#linux-distros).
|
||||
- **🌍 Non-english Software** - We don't add non-english software sites (APKs, games, torrents, etc.) unless they have a very good reputation.
|
||||
|
|
|
|||
5
.github/assets/nginx.conf
vendored
5
.github/assets/nginx.conf
vendored
|
|
@ -6,7 +6,8 @@ server {
|
|||
index index.html;
|
||||
|
||||
location / {
|
||||
try_files $uri $uri/ /index.html;
|
||||
try_files $uri $uri.html $uri/ =404;
|
||||
|
||||
add_header X-Frame-Options "DENY";
|
||||
add_header X-Content-Type-Options "nosniff";
|
||||
add_header X-XSS-Protection "1; mode=block";
|
||||
|
|
@ -26,4 +27,4 @@ gzip on;
|
|||
gzip_types text/plain text/css application/javascript application/json image/svg+xml;
|
||||
gzip_min_length 1000;
|
||||
gzip_proxied any;
|
||||
gzip_vary on;
|
||||
gzip_vary on;
|
||||
|
|
|
|||
24
Dockerfile
24
Dockerfile
|
|
@ -1,21 +1,17 @@
|
|||
FROM node:21-slim AS base
|
||||
FROM node:25.7-alpine AS base
|
||||
ENV PNPM_HOME="/pnpm"
|
||||
ENV PATH="$PNPM_HOME:$PATH"
|
||||
RUN corepack enable
|
||||
COPY . /app
|
||||
RUN npm install -g pnpm@10.30.3
|
||||
WORKDIR /app
|
||||
|
||||
FROM base AS prod-deps
|
||||
RUN --mount=type=cache,id=pnpm,target=/pnpm/store pnpm install --frozen-lockfile
|
||||
COPY package.json pnpm-lock.yaml ./
|
||||
|
||||
FROM base AS build
|
||||
RUN --mount=type=cache,id=pnpm,target=/pnpm/store pnpm install --frozen-lockfile
|
||||
RUN --mount=type=cache,id=pnpm,target=/pnpm/store pnpm install --frozen-lockfile --config.autoInstallPeers=false
|
||||
COPY . .
|
||||
RUN pnpm run docs:build
|
||||
|
||||
FROM base
|
||||
COPY --from=prod-deps /app/node_modules /app/node_modules
|
||||
COPY --from=build /app/docs/.vitepress/dist /app/docs/.vitepress/dist
|
||||
|
||||
EXPOSE 4173
|
||||
|
||||
CMD ["pnpm", "docs:preview"]
|
||||
FROM nginx:alpine-slim
|
||||
COPY --from=build /app/docs/.vitepress/dist /usr/share/nginx/html
|
||||
COPY .github/assets/nginx.conf /etc/nginx/conf.d/default.conf
|
||||
EXPOSE 80
|
||||
CMD ["nginx", "-g", "daemon off;"]
|
||||
|
|
|
|||
|
|
@ -70,14 +70,14 @@ export function generateMeta(context: TransformContext, hostname: string) {
|
|||
])
|
||||
} else {
|
||||
const url = pageData.filePath.replace('index.md', '').replace('.md', '')
|
||||
const imageUrl = `${url}/__og_image__/og.png`
|
||||
const imageUrl = `${url}/__og_image__/og.webp`
|
||||
.replaceAll('//', '/')
|
||||
.replace(/^\//, '')
|
||||
|
||||
head.push(
|
||||
['meta', { property: 'og:image', content: `${hostname}/${imageUrl}` }],
|
||||
['meta', { property: 'og:image:width', content: '1200' }],
|
||||
['meta', { property: 'og:image:height', content: '628' }],
|
||||
['meta', { property: 'og:image:height', content: '630' }],
|
||||
['meta', { property: 'og:image:type', content: 'image/png' }],
|
||||
[
|
||||
'meta',
|
||||
|
|
@ -85,7 +85,7 @@ export function generateMeta(context: TransformContext, hostname: string) {
|
|||
],
|
||||
['meta', { name: 'twitter:image', content: `${hostname}/${imageUrl}` }],
|
||||
['meta', { name: 'twitter:image:width', content: '1200' }],
|
||||
['meta', { name: 'twitter:image:height', content: '628' }],
|
||||
['meta', { name: 'twitter:image:height', content: '630' }],
|
||||
[
|
||||
'meta',
|
||||
{ name: 'twitter:image:alt', content: pageData.frontmatter.title }
|
||||
|
|
|
|||
|
|
@ -20,6 +20,7 @@ import { mkdir, readFile, writeFile } from 'node:fs/promises'
|
|||
import { dirname, resolve } from 'node:path'
|
||||
import { fileURLToPath } from 'node:url'
|
||||
import { renderAsync } from '@resvg/resvg-js'
|
||||
import sharp from 'sharp'
|
||||
import consola from 'consola'
|
||||
import { createContentLoader } from 'vitepress'
|
||||
import { satoriVue } from 'x-satori/vue'
|
||||
|
|
@ -102,8 +103,8 @@ async function generateImage({
|
|||
|
||||
// consola.info(url, title, description)
|
||||
const options: SatoriOptions = {
|
||||
width: 1800,
|
||||
height: 900,
|
||||
width: 1200,
|
||||
height: 630,
|
||||
fonts,
|
||||
props: {
|
||||
title,
|
||||
|
|
@ -116,12 +117,16 @@ async function generateImage({
|
|||
|
||||
const render = await renderAsync(svg)
|
||||
|
||||
const compressed = await sharp(render.asPng())
|
||||
.webp({ quality: 75 })
|
||||
.toBuffer()
|
||||
|
||||
const outputFolder = resolve(outDir, url.slice(1), '__og_image__')
|
||||
const outputFile = resolve(outputFolder, 'og.png')
|
||||
const outputFile = resolve(outputFolder, 'og.webp')
|
||||
|
||||
await mkdir(outputFolder, { recursive: true })
|
||||
|
||||
await writeFile(outputFile, render.asPng())
|
||||
await writeFile(outputFile, compressed)
|
||||
}
|
||||
|
||||
function getPage(page: string) {
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
#### Android Spotify Note
|
||||
|
||||
Many modded APKs are buggy as of now and may not work at all.
|
||||
None of Spotify apks (for rooted and non-rooted users) works for now due to server side restriction.
|
||||
|
|
@ -87,7 +87,6 @@ export const nav: DefaultTheme.NavItem[] = [
|
|||
{ text: '✅ SafeGuard', link: 'https://github.com/fmhy/FMHY-SafeGuard' },
|
||||
{ text: '🚀 Startpage', link: 'https://fmhy.net/startpage' },
|
||||
{ text: '✴️ rss.fmhy', link: 'https://rss.fmhy.bid/' },
|
||||
{ text: '📋 paste.fmhy', link: 'https://paste.fmhy.bid/' },
|
||||
{ text: '🔎 SearXNG', link: 'https://searx.fmhy.net/' },
|
||||
{
|
||||
text: '💡 Site Hunting',
|
||||
|
|
|
|||
55
docs/ai.md
55
docs/ai.md
|
|
@ -18,8 +18,8 @@ ## ▷ Official Model Sites
|
|||
* ⭐ **[Gemini](https://gemini.google.com/)** - Gemini 3.1 Pro Preview (5 daily) / Gemini 3 Flash (unlimited) / [Limits](https://support.google.com/gemini/answer/16275805) / [Subreddit](https://www.reddit.com/r/Bard/) / [Discord](https://discord.com/invite/gemini)
|
||||
* ⭐ **[Kimi](https://www.kimi.com/)** - Kimi K2.5 (Thinking) / Slides / Google Login or Phone # Required / [Subreddit](https://www.reddit.com/r/kimi/) / [Discord](https://discord.gg/TYU2fdJykW) / [GitHub](https://github.com/MoonshotAI)
|
||||
* ⭐ **[DeepSeek](https://chat.deepseek.com/)** - DeepSeek V3.2 / Requires Sign-Up / Unlimited / [Subreddit](https://www.reddit.com/r/DeepSeek/) / [Discord](https://discord.com/invite/Tc7c45Zzu5) / [GitHub](https://github.com/deepseek-ai)
|
||||
* ⭐ **[Microsoft Copilot](https://copilot.microsoft.com)** - GPT-5.1 / Unlimited / [Discord](https://discord.com/invite/go-copilot) / [Reasoning](https://github.com/fmhy/edit/blob/main/docs/.vitepress/notes/better-reasoning.md)
|
||||
* [ChatGPT](https://chatgpt.com/) - GPT-5.2 Instant / [r/OpenAI](https://www.reddit.com/r/OpenAI/) / [r/ChatGPT](https://www.reddit.com/r/ChatGPT/) / [Discord](https://discord.com/invite/openai) / [Limits](https://github.com/fmhy/edit/blob/main/docs/.vitepress/notes/chatgpt-limits.md)
|
||||
* ⭐ **[Microsoft Copilot](https://copilot.microsoft.com)** - GPT-5.1 / Unlimited / [Reasoning](https://github.com/fmhy/edit/blob/main/docs/.vitepress/notes/better-reasoning.md)
|
||||
* [ChatGPT](https://chatgpt.com/) - GPT-5.3 Instant / [r/OpenAI](https://www.reddit.com/r/OpenAI/) / [r/ChatGPT](https://www.reddit.com/r/ChatGPT/) / [Discord](https://discord.com/invite/openai) / [Limits](https://github.com/fmhy/edit/blob/main/docs/.vitepress/notes/chatgpt-limits.md)
|
||||
* [Qwen](https://chat.qwen.ai/) - Qwen3.5-Plus (Qwen3.5-397B-A17B) / Unlimited / [Subreddit](https://www.reddit.com/r/Qwen_AI/) / [Discord](https://discord.com/invite/CV4E9rpNSD) / [GitHub](https://github.com/QwenLM)
|
||||
* [Claude](https://claude.ai/) - Claude Sonnet 4.6 / Requires Google Login / [Resources](https://awesomeclaude.ai/) / [Learning](https://github.com/ComposioHQ/awesome-claude-skills), [2](https://github.com/BehiSecc/awesome-claude-skills) / [Usage Tracker](https://github.com/lugia19/Claude-Usage-Extension) / [Subreddit](https://www.reddit.com/r/ClaudeAI/) / [Discord](https://discord.com/invite/6PPFFzqPDZ)
|
||||
* [Ernie](https://ernie.baidu.com/) - ERNIE 5.0 Preview 1220 / x1 Demo / [4.5 Demo](https://huggingface.co/spaces/baidu/ernie_4.5_turbo_demo) / [x1 Demo](https://huggingface.co/spaces/baidu/ernie_x1_turbo_demo)
|
||||
|
|
@ -34,23 +34,24 @@ ## ▷ Official Model Sites
|
|||
* [Reka](https://www.reka.ai/) - Reka Flash 3.1 / [Discord](https://discord.gg/jtjNSD52mf)
|
||||
* [K2Think](https://www.k2think.ai/) - LLM360 / MBZUAI (not Kimi) / Requires Sign-Up
|
||||
* [MiMo Studio](https://aistudio.xiaomimimo.com/) - MiMo-V2-Flash / Requires Sign-Up
|
||||
* [Inception Chat](https://chat.inceptionlabs.ai/) - Mercury 2 / Unlimited
|
||||
* [Dolphin Chat](https://chat.dphn.ai/) - Dolphin 24B / No Sign-Up
|
||||
|
||||
***
|
||||
|
||||
## ▷ Multiple Model Sites
|
||||
|
||||
* ⭐ **[Arena](https://arena.ai/text/direct)**, [2](https://canaryarena.ai/) - Multiple Models / No Sign-Up / Reset Limits w/ Cookie Delete or Temp Mail / [OpenAI Bridge](https://github.com/CloudWaddie/LMArenaBridge) / [X](https://x.com/arena) / [Discord](https://discord.com/invite/lmarena)
|
||||
* [Yupp.ai](https://yupp.ai/) - Multiple Models / Google Login Required / [X](https://x.com/yupp_ai) / [Subreddit](https://www.reddit.com/r/yupp_ai/) / [Discord](https://discord.com/invite/yuppai)
|
||||
* ⭐ **[Arena](https://arena.ai/text/direct)**, [2](https://canaryarena.ai/text/direct) - Multiple Models / Reset Limits w/ Cookie Delete or Temp Mail / [OpenAI Bridge](https://github.com/CloudWaddie/LMArenaBridge) / [X](https://x.com/arena) / [Discord](https://discord.com/invite/lmarena)
|
||||
* [Yupp.ai](https://yupp.ai/) - Multiple Models / Google Login Required / [Bridge](https://github.com/CloudWaddie/yuppbridge) / [X](https://x.com/yupp_ai) / [Subreddit](https://www.reddit.com/r/yupp_ai/) / [Discord](https://discord.com/invite/yuppai)
|
||||
* [ISH](https://ish.chat/) - Multiple Generators / [Subreddit](https://www.reddit.com/r/Ishchat/) / [Discord](https://discord.gg/cwDTVKyKJz)
|
||||
* [AI Assistant](https://aiassistantbot.pages.dev/) - Deepseek V3.2 / GLM-4.7 / Kimi K2.5 / Multiple Models / No Sign-Up
|
||||
* [Woozlit](https://woozlit.com/) - Gemini 3.1 Pro / GPT-5.2 / Kimi K 2.5 / Multiple Models / ≈1900 Monthly / [Discord](https://discord.gg/rdBN6TYf66)
|
||||
* [Khoj](https://app.khoj.dev/) - Gemini 3 Flash / Grok 4.1 Fast / Reset Limits w/ Temp Mail / [Discord](https://discord.gg/aP5ZmqCK4g)
|
||||
* [Indic LLM Arena](https://arena.ai4bharat.org/#/chat) - Gemini- 3 Flash / Multiple Chatbots / Unlimited / [Discord](https://discord.com/invite/HqJXnJNDaq)
|
||||
* [Indic LLM Arena](https://arena.ai4bharat.org/#/chat) - Gemini 3 Flash / Multiple Chatbots / Unlimited / [Discord](https://discord.com/invite/HqJXnJNDaq)
|
||||
* [Together.ai](https://chat.together.ai/) - GLM-5 / Kimi K2.5 / Up To 110 Daily / [Discord](https://discord.gg/9Rk6sSeWEG)
|
||||
* [NVIDIA NIM](https://build.nvidia.com/) - GLM-5 / Kimi K2.5 / No Sign-Up
|
||||
* [Woozlit](https://woozlit.com/) - Gemini 3.1 Pro / Multiple Models / ≈1800 Monthly / [Discord](https://discord.gg/rdBN6TYf66)
|
||||
* [Cerebras Chat](https://chat.cerebras.ai/) - GLM-4.7 / Qwen3-235B / Requires Sign-Up
|
||||
* [Groq](https://console.groq.com/playground) - Kimi K2-0905 / GPT-OSS-120B / Requires Sign-Up / [Limits](https://console.groq.com/docs/rate-limits) / [Discord](https://discord.com/invite/e6cj7aA4Ts)
|
||||
* [Together.ai](https://chat.together.ai/) - GLM-5 / Kimi K2.5 / Up To 110 Daily / [Discord](https://discord.gg/9Rk6sSeWEG)
|
||||
* [Duck AI](https://duck.ai/chat?q=DuckDuckGo+AI+Chat&duckai=1) - Claude Haiku 4.5 / GPT-5 mini / No Sign-Up
|
||||
|
||||
***
|
||||
|
|
@ -58,7 +59,7 @@ ## ▷ Multiple Model Sites
|
|||
## ▷ Specialized Chatbots
|
||||
|
||||
* 🌐 **[Awesome AI Web Search](https://github.com/felladrin/awesome-ai-web-search), [2](https://huggingface.co/spaces/Felladrin/awesome-ai-web-search)** - AI Search Engine Index
|
||||
* ⭐ **[Arena](https://arena.ai/?mode=direct&chat-modality=search)**, [2](https://canaryarena.ai/) - AI Search Engine / No Sign-Up / Reset Limits w/ Cookie Delete or Temp Mail / [OpenAI Bridge](https://github.com/CloudWaddie/LMArenaBridge) / [X](https://x.com/arena) / [Discord](https://discord.com/invite/lmarena)
|
||||
* ⭐ **[Arena](https://arena.ai/?mode=direct&chat-modality=search)**, [2](https://canaryarena.ai/search/direct) - AI Search Engine / No Sign-Up / Reset Limits w/ Cookie Delete or Temp Mail / [OpenAI Bridge](https://github.com/CloudWaddie/LMArenaBridge) / [X](https://x.com/arena) / [Discord](https://discord.com/invite/lmarena)
|
||||
* ⭐ **[Perplexity](https://www.perplexity.ai/)** - AI Search Engine / [Enhancements](https://www.cplx.app/) / [Discord](https://discord.com/invite/perplexity-ai)
|
||||
* ⭐ **[NotebookLM](https://notebooklm.google/)** - Document Chatbot / Note-Taking / [Anki Export](https://chromewebstore.google.com/detail/ankinlm/ecoealfdeebafjpmhjdlbdgpgegjeaem) / [X](https://x.com/NotebookLM) / [Subreddit](https://www.reddit.com/r/notebooklm/) / [Discord](https://discord.com/invite/notebooklm)
|
||||
* ⭐ **[Google AI Mode](https://google.com/aimode)** - AI Search Engine
|
||||
|
|
@ -84,7 +85,6 @@ ## ▷ Local AI Frontends
|
|||
* 🌐 **[Awesome Local LLM](https://github.com/rafska/awesome-local-llm/)** - Local LLM Platforms / Resources
|
||||
* ⭐ **[SillyTavern](https://docs.sillytavern.app/)** - Self-Hosted Interface / [Subreddit](https://www.reddit.com/r/SillyTavernAI/) / [Discord](https://discord.gg/sillytavern) / [GitHub](https://github.com/SillyTavern/SillyTavern)
|
||||
* ⭐ **[Open WebUI](https://openwebui.com/)** - Self-Hosted Interface / [Discord](https://discord.gg/5rJgQTnV4s) / [GitHub](https://github.com/open-webui/open-webui)
|
||||
* [GPT4Free](https://github.com/xtekky/gpt4free) - Desktop App / [Demo](https://g4f.dev/chat/pro.html), [2](https://g4f.dev/chat/) / [Telegram](https://telegram.me/g4f_channel)
|
||||
* [Msty](https://msty.app/) - Download & Run Models Locally / [Discord](https://discord.gg/2QBw6XxkCC)
|
||||
* [Cherry Studio](https://www.cherry-ai.com/) - Desktop App / [Mobile](https://github.com/CherryHQ/cherry-studio-app) / [Discord](https://discord.gg/wez8HtpxqQ) / [GitHub](https://github.com/CherryHQ/cherry-studio)
|
||||
* [LobeChat](https://lobechat.com/chat) - Desktop App / [Discord](https://discord.gg/AYFPHvv2jT) / [GitHub](https://github.com/lobehub/lobe-chat)
|
||||
|
|
@ -92,7 +92,7 @@ ## ▷ Local AI Frontends
|
|||
* [Chatbot UI](https://chatbotui.com) - Desktop App / [GitHub](https://github.com/mckaywrigley/chatbot-ui)
|
||||
* [LocalAI](https://localai.io/) - Self-Hosted / [GitHub](https://github.com/mudler/LocalAI)
|
||||
* [tgpt](https://github.com/aandrew-me/tgpt) - Self-Hosted
|
||||
* [ch.at](https://ch.at/) - Self-Hosted / Minimal / Lightweight / [GitHub](https://github.com/Deep-ai-inc/ch.at)
|
||||
* [ch.at](https://github.com/Deep-ai-inc/ch.at) - Self-Hosted / Minimal / Lightweight
|
||||
|
||||
***
|
||||
|
||||
|
|
@ -119,7 +119,7 @@ ## ▷ Self-Hosting Tools
|
|||
## ▷ Roleplaying Chatbots
|
||||
|
||||
* 🌐 **[Sukino-Findings](https://rentry.org/Sukino-Findings)** - AI Roleplay Resources
|
||||
* ⭐ **[Perchance](https://perchance.org/ai-character-chat)** / [2](https://perchance.org/amoled-chat) / [3](https://perchance.org/urv-ai-chat) - Roleplaying / No Sign-Up / Unlimited / Allows Images / Some NSFW / [Resources](https://perchance.org/perlist) / [Lemmy](https://lemmy.world/u/perchance) / [Subreddit](https://www.reddit.com/r/perchance/) / [Discord](https://discord.gg/43qAQEVV9a)
|
||||
* ⭐ **[Perchance](https://perchance.org/ai-character-chat)** / [2](https://perchance.org/amoled-chat) / [3](https://perchance.org/urv-ai-chat) - Roleplaying + Images / No Sign-Up / Unlimited / Some NSFW / [Resources](https://perchance.org/perlist) / [Lemmy](https://lemmy.world/u/perchance) / [Subreddit](https://www.reddit.com/r/perchance/) / [Discord](https://discord.gg/43qAQEVV9a)
|
||||
* ⭐ **[PygmalionAI](https://pygmalion.chat/)** - Self-Hosted Roleplaying Models / [Guide](https://wikia.schneedc.com/bot-creation/intro) / [Resources](https://claraiscute.neocities.org/Guides/PygmalionLinks/), [2](https://claraiscute.pages.dev/Guides/PygmalionLinks/) / [Subreddit](https://www.reddit.com/r/PygmalionAI/) / [Discord](https://discord.com/invite/pygmalionai) / [GitHub](https://github.com/PygmalionAI)
|
||||
* ⭐ **[FlowGPT](https://flowgpt.com)** - Roleplaying Chatbots / Some NSFW / [Discord](https://discord.com/invite/tWZGzcpTkf)
|
||||
* ⭐ **[Chub](https://chub.ai/)** - Character Cards / Some NSFW / [Subreddit](https://www.reddit.com/r/Chub_AI/) / [Discord](https://discord.gg/chubai) / [GitHub](https://github.com/CharHubAI)
|
||||
|
|
@ -132,7 +132,7 @@ ## ▷ Roleplaying Chatbots
|
|||
* [AI Dungeon](https://aidungeon.com/) - Roleplaying / Story Chatbot / No Sign-Up / [Subreddit](https://www.reddit.com/r/AIDungeon/) / [Discord](https://discord.com/invite/HB2YBZYjyf)
|
||||
* [Spellbound](https://www.tryspellbound.com/) - Roleplaying / Story Chatbot / No Sign-Up
|
||||
* [TavernAI](https://tavernai.net/) - Roleplaying / Story Chatbot / [Colab](https://colab.research.google.com/github/vrihatgan/TavernAI/blob/main/colab/colab.ipynb) / [Discord](https://discord.gg/zmK2gmr45t) / [GitHub](https://github.com/TavernAI/TavernAI)
|
||||
* [KoboldAI Lite](https://lite.koboldai.net/) - Roleplaying / No Sign-Up / Unlimited / Allows Images / Some NSFW / [Discord](https://discord.com/invite/XuQWadgU9k)
|
||||
* [KoboldAI Lite](https://lite.koboldai.net/) - Roleplaying + Images / No Sign-Up / Unlimited / Some NSFW / [Discord](https://discord.com/invite/XuQWadgU9k)
|
||||
* [Crossing the Uncanny Valley](https://www.sesame.com/research/crossing_the_uncanny_valley_of_voice#demo) - Realistic AI Voice Chatlooks
|
||||
|
||||
***
|
||||
|
|
@ -148,6 +148,7 @@ # ► AI Tools
|
|||
* [Page Assist](https://github.com/n4ze3m/page-assist), [ChatGPT Box](https://github.com/josStorer/chatGPTBox) or [KeepChatGPT](https://github.com/xcanwin/KeepChatGPT/blob/main/docs/README_EN.md) - Extensions
|
||||
* [LLM](https://llm.datasette.io/) - LLM CLI / [Discord](https://discord.com/invite/RKAH4b8TvE) / [GitHub](https://github.com/simonw/llm)
|
||||
* [LightSession](https://github.com/11me/light-session) - Fix ChatGPT Lag
|
||||
* [Privatiser](https://privatiser.net/) - Anonymize Sensitive Data for AI
|
||||
* [ChatGPT DeMod](https://github.com/4as/ChatGPT-DeMod) - Block ChatGPT Moderation Checks
|
||||
* [MassiveMark](https://www.bibcit.com/en/massivemark) - Convert LLM Chats to DOCX / [Discord](https://discord.gg/fPtQAQYmqq)
|
||||
* [ChatGPT Widescreen](https://chatgptevo.com/widescreen/) - ChatGPT Widescreen / Fullscreen / [GitHub](https://github.com/adamlui/chatgpt-widescreen)
|
||||
|
|
@ -172,6 +173,7 @@ ## ▷ AI Prompts
|
|||
* [ChatGPT System Prompt](https://github.com/LouisShark/chatgpt_system_prompt) - Prompt Directory
|
||||
* [The Big Prompt Library](https://github.com/0xeb/TheBigPromptLibrary) - Prompt Directory
|
||||
* [Jailbreak Listings](https://rentry.org/jb-listing) - Prompt Directory / Jailbreaks
|
||||
* [Heretic](https://github.com/p-e-w/heretic) - AI Jailbreak / Anti-Censorship Tool / [Discord](https://discord.gg/gdXc48gSyT)
|
||||
* [promptfoo](https://www.promptfoo.dev/) - Prompt Playgrounds / [Discord](https://discord.gg/gHPS9jjfbs) / [GitHub](https://github.com/promptfoo/promptfoo)
|
||||
* [Tensor Trust](https://tensortrust.ai/) / [GitHub](https://github.com/HumanCompatibleAI/tensor-trust) or [Gandalf](https://gandalf.lakera.ai/) / [GitHub](https://github.com/lakeraai) - Prompting Skill Games
|
||||
* [Gobble Bot](https://gobble.bot/) - Generate Text Files for Chatbots
|
||||
|
|
@ -184,7 +186,6 @@ # ► AI Indexes
|
|||
* ⭐ **[FutureTools](https://www.futuretools.io/?pricing-model=free)** - AI Directory / [Discord](https://discord.gg/WBk4ZDW6A9)
|
||||
* ⭐ **[Google Labs](https://labs.google/)** or [Google Labs FX](https://labs.google/fx) - Google AI Experiments / [Subreddit](https://www.reddit.com/r/labsdotgoogle/) / [Discord](https://discord.gg/googlelabs)
|
||||
* [Models.dev](https://models.dev/) - AI Model Database / Pricing / [GitHub](https://github.com/anomalyco/models.dev)
|
||||
* [Perchance](https://perchance.org/generators) - Simple AI Builders / [Subreddit](https://www.reddit.com/r/perchance/) / [Discord](https://discord.gg/43qAQEVV9a)
|
||||
* [YP for AI](https://www.ypforai.com) - AI Directory
|
||||
* [LLM Resources Hub](https://llmresourceshub.vercel.app/) - AI Directory
|
||||
* [Awesome AI Tools](https://github.com/mahseema/awesome-ai-tools) - AI Directory
|
||||
|
|
@ -222,6 +223,7 @@ ## ▷ Specialized Benchmarks
|
|||
* [Simple Bench](https://simple-bench.com/) - AI Human Reasoning Benchmarks
|
||||
* [VPCT](https://cbrower.dev/vpct) - AI Visual Physics Benchmarks
|
||||
* [SpeechMap.AI](https://speechmap.ai/) - AI Free Speech Benchmarks / [GitHub](https://github.com/xlr8harder/llm-compliance)
|
||||
* [LLMs Bullshit Benchmark](https://petergpt.github.io/bullshit-benchmark/viewer/index.html) - Broken Premise Detection Benchmarks
|
||||
* [AI Elo](https://aielo.co/) - AI Game Competitions / Benchmarks
|
||||
* [ChessArena](https://www.chessarena.ai/) - AI Chess Benchmarks
|
||||
* [VoxelBench](https://voxelbench.ai/) - Minecraft AI Generation Benchmark
|
||||
|
|
@ -265,18 +267,17 @@ # ► Video Generation
|
|||
* ⭐ **[GeminiGenAI](https://geminigen.ai/app/video-gen)** - Veo 3.1 / Sora 2 / Grok / 10s-15s / Login required / Reset Limits w/ Temp Mail / [Discord](https://discord.gg/vJnYe86T8F)
|
||||
* ⭐ **[Grok Imagine](https://grok.com/imagine)** - Traffic-Based / Imagine 0.9 / [Subreddit](https://www.reddit.com/r/grok/) / [Discord](https://discord.com/invite/kqCc86jM55)
|
||||
* ⭐ **[Klipy](https://klipy.com/create/gif-maker/)** - Veo 3 / GIF Only / 4s-5s / Unlimited / Requires Sign-Up
|
||||
* ⭐ **[Arena](https://arena.ai/?chat-modality=video)**, [2](https://canaryarena.ai/) - 3 Daily / Requires Sign-Up / Random Models / Reset Limits w/ Temp Mail / End-Watermark / [X](https://x.com/arena) / [Discord](https://discord.com/invite/lmarena)
|
||||
* [Design Arena](https://www.designarena.ai/) - Multiple Models / No Direct / Side by Side Mode / Reset Limits / w Temp Mail / [X](https://x.com/designarena) / [Discord](https://discord.com/invite/Bw9Ajcb3pR)
|
||||
* ⭐ **[Arena](https://arena.ai/?chat-modality=video)**, [2](https://canaryarena.ai/video) - 3 Daily / Requires Sign-Up / Random Models / Reset Limits w/ Temp Mail / End-Watermark / [X](https://x.com/arena) / [Discord](https://discord.com/invite/lmarena)
|
||||
* [Design Arena](https://www.designarena.ai/) - Multiple Models / No Direct Mode / Reset Limits / w Temp Mail / [X](https://x.com/designarena) / [Discord](https://discord.com/invite/Bw9Ajcb3pR)
|
||||
* [Bing Create](https://www.bing.com/images/create) - Sora 1 / No Image Input
|
||||
* [Wan AI](https://wan.video/) / Wan AI / Wan 2.6 / Image to Video / [GitHub](https://github.com/Wan-Video/Wan2.1)
|
||||
* [HunyuanVideo](https://hunyuan.tencent.com/modelSquare/home/play?modelId=303&from=/visual) - Unlimited / Requires Sign-Up
|
||||
* [Sora](https://openai.com/index/sora/) - 6 Daily / [Remove Watermarks](https://unmarkit.app/sora) / [Signup Guide](https://github.com/fmhy/edit/blob/main/docs/.vitepress/notes/sora.md)
|
||||
* [Vheer](https://vheer.com/) - Unlimited / No Sign-Up / [X](https://x.com/VheerAI) / [Discord](https://discord.com/invite/33qfQRCp5j)
|
||||
* [Meta AI](https://www.meta.ai/) - Unlimited / Requires Sign-Up
|
||||
* [Vheer](https://vheer.com/) - Unlimited / No Sign-Up / [X](https://x.com/VheerAI) / [Discord](https://discord.com/invite/33qfQRCp5j)
|
||||
* [Qwen](https://chat.qwen.ai/) - 5/12 Per Hour / [Discord](https://discord.com/invite/CV4E9rpNSD) / [GitHub](https://github.com/QwenLM)
|
||||
* [AIFreeVideo](https://aifreevideo.com/) - Unlimited / MiniMax Video-01 / Requires Sign-Up
|
||||
* [ModelScope Video](https://modelscope.ai/civision/videoGeneration) - Wan 2.2 14B / 3 Daily / [Note](https://github.com/fmhy/edit/blob/main/docs/.vitepress/notes/modelscope.md)
|
||||
* [Google Whisk](https://labs.google/fx/en/tools/whisk) - Veo 3 / 10 Monthly
|
||||
* [Dreamina](https://dreamina.capcut.com/ai-tool/home) - 120 Credits Daily
|
||||
* [Google Flow](https://labs.google/fx/tools/flow) - Veo 3.1 (5 Monthly) / [Discord](https://discord.com/invite/googlelabs)
|
||||
* [PixVerse](https://pixverse.ai/) - 3 Daily / [Discord](https://discord.com/invite/MXHErdJHMg)
|
||||
|
|
@ -290,35 +291,34 @@ # ► Video Generation
|
|||
# ► Image Generation
|
||||
|
||||
* 🌐 **[Arena Text to Image](https://arena.ai/leaderboard/text-to-image)** or **[Arena Editing](https://arena.ai/leaderboard/image-edit)** - Image Gen Benchmarks / Leaderboards
|
||||
* ⭐ **[Google Flow](https://labs.google/fx/tools/flow)** - Nano Banana Pro / Nano Banana 2 / Google Login / Unlimited / [Discord](https://discord.com/invite/googlelabs)
|
||||
* ⭐ **[Google Flow](https://labs.google/fx/tools/flow)** - Nano Banana Pro / 20+ Per Day / Varies / Nano Banana 2 / Unlimited / Google Login / [Discord](https://discord.com/invite/googlelabs)
|
||||
* ⭐ **[Google AI Mode](https://google.com/aimode)** - Nano Banana 2 / Unlimited / Google Login / [Discord](https://discord.com/invite/googlelabs)
|
||||
* ⭐ **[Arena](https://arena.ai/?mode=direct&chat-modality=image)**, [2](https://canaryarena.ai/) - Multiple Generators / Editing / Reset Limits w/ Cookie Delete or Temp Mail / [X](https://x.com/arena) / [Discord](https://discord.com/invite/lmarena)
|
||||
* ⭐ **[Arena](https://arena.ai/?mode=direct&chat-modality=image)**, [2](https://canaryarena.ai/image/direct) - Multiple Generators / Editing / Reset Limits w/ Cookie Delete or Temp Mail / [X](https://x.com/arena) / [Discord](https://discord.com/invite/lmarena)
|
||||
* ⭐ **[Gemini](https://gemini.google.com/)** - Nano Banana 2 (20 per day) / Google Login / [Remove Watermarks](https://banana.ovo.re/) / [Discord](https://discord.com/invite/gemini)
|
||||
* ⭐ **[AI Studio](https://aistudio.google.com/generate-image)** or [Whisk](https://labs.google/fx/en/tools/whisk) - Nano Banana / Google Login / [Discord](https://discord.com/invite/gemini)
|
||||
* ⭐ **[Khoj](https://app.khoj.dev/?v=app)** - Nano Banana / Imagen 4 / Unlimited / [Discord](https://discord.gg/aP5ZmqCK4g)
|
||||
* ⭐ **[Bing Create](https://www.bing.com/images/create)** - Unlimited / GPT Image 1 / DALL-E 3 / Editing / Generating / Sign-Up
|
||||
* ⭐ **[AI Studio](https://aistudio.google.com/generate-image)** - Nano Banana / Google Login / [Discord](https://discord.com/invite/gemini)
|
||||
* ⭐ **[Khoj](https://app.khoj.dev/?v=app)** - Nano Banana / Unlimited / [Discord](https://discord.gg/aP5ZmqCK4g)
|
||||
* ⭐ **[Bing Create](https://www.bing.com/images/create)** - Unlimited / GPT Image 1 / Editing / Generating / Sign-Up
|
||||
* ⭐ **[Dreamina](https://dreamina.capcut.com/ai-tool/home)** - 120 Credits Daily / Seedream 4.5 / Nano Banana / Sign-Up
|
||||
* ⭐ **[Hunyuan Image Generation](https://hunyuan.tencent.com/visual)** - Generating / Editing / 3D / Sign-Up / Unlimited
|
||||
* ⭐ **[Perchance](https://perchance.org/ai-photo-generator)** / [2](https://perchance.org/ai-text-to-image-generator) - Chroma-Based / Unlimited / [Resources](https://perchance.org/perlist) / [Lemmy](https://lemmy.world/u/perchance) / [Subreddit](https://www.reddit.com/r/perchance/) / [Discord](https://discord.gg/43qAQEVV9a)
|
||||
* [Yupp.ai](https://yupp.ai/) - Multiple Generators / Google Login / [X](https://x.com/yupp_ai) / [Subreddit](https://www.reddit.com/r/yupp_ai/) / [Discord](https://discord.com/invite/yuppai)
|
||||
* [Design Arena](https://www.designarena.ai/) - Multiple Generators / Editing / Sign-up / No Direct / Side by Side Mode / Reset Limits / w Temp Mail / [Discord](https://discord.com/invite/Bw9Ajcb3pR)
|
||||
* [Yupp.ai](https://yupp.ai/) - Multiple Generators / Google Login / [Bridge](https://github.com/CloudWaddie/yuppbridge) / [X](https://x.com/yupp_ai) / [Subreddit](https://www.reddit.com/r/yupp_ai/) / [Discord](https://discord.com/invite/yuppai)
|
||||
* [Design Arena](https://www.designarena.ai/) - Multiple Generators / Editing / Sign-up / No Direct Mode / Reset Limits / w Temp Mail / [Discord](https://discord.com/invite/Bw9Ajcb3pR)
|
||||
* [GeminiGenAI](https://geminigen.ai/app/imagen) - Nano Banana Pro / Sign-up / Reset Limits w/ Temp Mail / [Note](https://github.com/fmhy/edit/blob/main/docs/.vitepress/notes/gemai.md) / [Discord](https://discord.com/invite/vJnYe86T8F)
|
||||
* [Grok](https://grok.com/) - Traffic-Based / Editing / Generating / Sign-Up / [Subreddit](https://www.reddit.com/r/grok/) / [Discord](https://discord.com/invite/kqCc86jM55)
|
||||
* [Qwen](https://chat.qwen.ai/) - 30 Per 24 Hours / Editing / Sign-Up / [Discord](https://discord.com/invite/CV4E9rpNSD) / [GitHub](https://github.com/QwenLM)
|
||||
* [OpenSourceGen](https://opensourcegen.com/) - Hunyuan Image 3.0 / Z-Image Turbo / 1000 Credits Per Day / Sign Up / [Discord](https://discord.gg/W4Svx2QhHb)
|
||||
* [Recraft](https://www.recraft.ai/) - 30 Daily / Sign-Up / [Discord](https://discord.gg/recraft)
|
||||
* [Reve Image](https://app.reve.com) - 20 Daily / Editing / Sign-Up / [X](https://x.com/reve) / [Discord](https://discord.gg/Nedxp9fYUZ)
|
||||
* [ImageFX](https://labs.google/fx/tools/image-fx) - Imagen 4 / Unlimited / Region-Based / Sign-Up / [Discord](https://discord.com/invite/googlelabs)
|
||||
* [TheresAnAIForThat](https://theresanaiforthat.com/@taaft/image-to-image-generator/) or [Vheer](https://vheer.com/) / [X](https://x.com/VheerAI) / [Discord](https://discord.com/invite/33qfQRCp5j) - Editing / Unlimited / Flux Kontext Dev
|
||||
* [AIGazou](https://muryou-aigazou.com/) - Flux / Z-Image Turbo / Unlimited / GPT Image 1 / 10 Daily / Sign-Up / [Discord](https://discord.gg/v6KzUbPeKh)
|
||||
* [ZonerAI](https://zonerai.com/en/image-editor) - Flux Schnell / Unlimited / Editing / 4K / Sign-Up
|
||||
* [Meta AI](https://www.meta.ai/) - Unlimited / Sign-Up
|
||||
* [ModelScope Images](https://modelscope.ai/civision/imageGeneration) - Qwen Image Edit / Z-Image Turbo / 100 Credits Daily / Model Cost Varies / [Note](https://github.com/fmhy/edit/blob/main/docs/.vitepress/notes/modelscope.md)
|
||||
* [FlatAI](https://flatai.org/ai-image-generator-free-no-signup/), [Pollinations Play](https://pollinations.ai/play) or [Z-GEN TURBO](https://z-gen-turbo.vercel.app/) - Z-Image Turbo
|
||||
* [FlatAI](https://flatai.org/ai-image-generator-free-no-signup/) or [Z-GEN TURBO](https://z-gen-turbo.vercel.app/) - Z-Image Turbo
|
||||
* [Ernie](https://ernie.baidu.com/) - Unlimited / Editing / Sign-Up
|
||||
* [LongCat AI](https://longcat.chat/) - 100 Daily / Editing
|
||||
* [Mage](https://www.mage.space/) / [Discord](https://discord.com/invite/GT9bPgxyFP), [Tater AI](https://taterai.github.io/Text2Image-Generator.html), [Loras](https://www.loras.dev/) / [X](https://x.com/tater_ai) / [GitHub](https://github.com/Nutlope/loras-dev), [ToolBaz](https://toolbaz.com/image/ai-image-generator), [AI Gallery](https://aigallery.app/) / [Telegram](https://t.me/aigalleryapp), [AIFreeForever](https://aifreeforever.com/image-generators) or [Art Genie](https://artgenie.pages.dev/) - Flux Schnell
|
||||
* [Coze](https://space.coze.cn/) - Seadream 4.0 / 50 Daily / Sign-Up with Phone / US Select CA
|
||||
* [AIImagetoImage](https://aiimagetoimage.io/) or [Image-Editor](https://image-editor.org/) - Nano Banana / Editing
|
||||
* [imgsys](https://imgsys.org/) - Compare Generators / Unlimited / No Direct Mode
|
||||
* [Diffusers Image Outpaint](https://huggingface.co/spaces/fffiloni/diffusers-image-outpaint) - AI Image Extender / [Limits](https://github.com/fmhy/edit/blob/main/docs/.vitepress/notes/hugging-face-warning.md)
|
||||
* [Genie](https://lumalabs.ai/genie) / [Discord](https://discord.com/invite/ASbS3EykXm), [Shap-e](https://github.com/openai/shap-e), [Stable Dreamfusion](https://github.com/ashawkey/stable-dreamfusion) or [threestudio](https://github.com/threestudio-project/threestudio) / [Colab](https://colab.research.google.com/github/threestudio-project/threestudio/blob/main/threestudio.ipynb) / [Discord](https://discord.gg/ejer2MAB8N) - 3D Image Generators
|
||||
|
|
@ -406,6 +406,7 @@ ## ▷ Text to Speech
|
|||
* [TTSOpenAI](https://ttsopenai.com/) or [OpenAI.fm](https://www.openai.fm/) / No Sign-Up / OpenAI's Bot
|
||||
* [GPT-SoVITS](https://github.com/RVC-Boss/GPT-SoVITS) / No Sign-Up
|
||||
* [Kyutai TTS](https://kyutai.org/next/tts) / No Sign-Up
|
||||
* [AudioArena](https://audioarena.ai/) / No Sign-Up
|
||||
* [LazyPy](https://lazypy.ro/tts/) / No Sign-Up / [GitHub](https://github.com/chrisjp/tts)
|
||||
* [Kokoro TTS](https://huggingface.co/spaces/hexgrad/Kokoro-TTS) / No Sign-Up / [Discord](https://discord.gg/QuGxSWBfQy) / [GitHub](https://github.com/hexgrad/kokoro) / [Limits](https://github.com/fmhy/edit/blob/main/docs/.vitepress/notes/hugging-face-warning.md)
|
||||
* [Ondoku](https://ondoku3.com/en/) / No Sign-Up
|
||||
|
|
|
|||
|
|
@ -70,7 +70,7 @@ ## ▷ Genre Specific Streaming
|
|||
* [Jamendo](https://www.jamendo.com/) or [Free Music Archive](https://freemusicarchive.org/) - Independent Music
|
||||
* [Keygen Music](https://keygenmusic.tk/) - Keygen Music
|
||||
* [OperaOnVideo](https://www.operaonvideo.com/) - Opera Recordings
|
||||
* [Classical Music Only](https://classicalmusiconly.com/) or [musopen](https://musopen.org/music/) - Classical Music
|
||||
* [Classical Music Only](https://classicalmusiconly.com/) or [Musopen](https://musopen.org/music/) - Classical Music
|
||||
* [New Age Music](https://newage.one/) - New Age Music
|
||||
|
||||
***
|
||||
|
|
@ -96,6 +96,7 @@ ## ▷ Concerts / Live Shows
|
|||
* ⭐ **[bt.etree](https://bt.etree.org/)** - Concert Recordings / Torrents
|
||||
* ⭐ **[hate5six](https://hate5six.com/)** - Concert Recordings
|
||||
* ⭐ **[MiroPPB](https://miroppb.com/)** - A State of Trance Archive / DJ Mixes / [Downloader](https://rentry.co/asotdl)
|
||||
* [r/MusicalBootlegs](https://www.reddit.com/r/MusicalBootlegs), [OperaVision](https://operavision.eu/) or ["Slime Tutorials"](https://youtube.com/playlist?list=PLsIt5G4GJ27lxWP9Qi5N70zRSkJAT0ntc) - Broadway Show Recordings / Opera
|
||||
* [JamBase](https://www.jambase.com/videos) - Concert Recordings
|
||||
* [Relisten](https://relisten.net/) - Concert Recordings / [GitHub](https://github.com/relistennet)
|
||||
* [DimeADozen](http://www.dimeadozen.org/) - Concert Recordings / Torrents
|
||||
|
|
@ -233,28 +234,14 @@ ## ▷ Internet Radio
|
|||
* [Zeno.fm](https://zeno.fm/) - User-Stations
|
||||
* [Live365](https://live365.com/) - User-Stations
|
||||
* [Internet-Radio](https://internet-radio.com/) - Station-Directory
|
||||
* [CoreRadio](https://coreradio.online/listen) - Metalcore / Hardcore / Deathcore
|
||||
* [deepcut.fm](https://deepcut.live/) - Deep-Cuts
|
||||
* [Radiooooo](https://radiooooo.com/) - Radio / Time Machine
|
||||
* [Tilderadio](https://tilderadio.org/) - Community Radio
|
||||
* [UpBeat](https://upbeatradio.net/) - Community Radio / [Discord](https://upbeat.pw/discord)
|
||||
* [Radio.dubbeh](https://radio.dubbeh.net/) - Independent Internet Radio
|
||||
* [radio.uwu](https://radio.uwu.network/) - Subculture Radio
|
||||
* [Rekt FM](https://rekt.network/) - Chill / Space / Dark / Horror Synth / EBSM / EDM Radio
|
||||
* [Nightwave Plaza](https://plaza.one/) - Vaporwave Radio
|
||||
* [Nightride.fm](https://nightride.fm/) - Synthwave / Darksynth Radio
|
||||
* [Di.fm](https://www.di.fm/) - Electronic Radio
|
||||
* [0x40](https://0x40.mon.im/) - Electronic Radio with Anime Pictures
|
||||
* [HappyHardcore](https://www.happyhardcore.com/radio/) - Hardcore Dance Radio
|
||||
* [Openings Moe](https://openings.moe/) - Anime Theme Radio
|
||||
* [Ongaku](https://ongaku.js.org/) or [r-a-d.io](https://r-a-d.io/) - Anime Radio
|
||||
* [Pool Suite](https://poolsuite.net/) - Summer Radio
|
||||
* [J1 Radio](https://rec.torontocast.stream/player/) - J-Pop Radio
|
||||
* [LISTEN.moe](https://listen.moe/) - J-Pop / K-Pop Radio
|
||||
* [420.moe](https://420.moe/) - 420 Radio
|
||||
* [HollowEarthRadio](https://www.hollowearthradio.org/) - Pacific Northwest Artists
|
||||
* [Nectarine](https://www.scenestream.net/demovibes/streams/) - Demo Scene Music Radio
|
||||
* [Daft Punk Cafe](https://daftpunk.cafe/) - Daft Punk Radio
|
||||
* [Radiooooo](https://radiooooo.com/) - Radio / Time Machine
|
||||
* [HollowEarthRadio](https://www.hollowearthradio.org/) - Pacific Northwest Artists
|
||||
* [Campus FM](https://www.campus-fm.com/) - College Radio
|
||||
* [RadioSide](https://radioside.com/) - Internet Radio Receiver
|
||||
* [streamWriter](https://streamwriter.org/en/) - Internet Radio Audio Downloader
|
||||
|
|
@ -284,6 +271,25 @@ ## ▷ Radio Directories
|
|||
|
||||
***
|
||||
|
||||
## ▷ Genre Specific Radio
|
||||
|
||||
* [Pool Suite](https://poolsuite.net/) - Summer Radio
|
||||
* [LISTEN.moe](https://listen.moe/) - J-Pop / K-Pop Radio
|
||||
* [J1 Radio](https://rec.torontocast.stream/player/) - J-Pop Radio
|
||||
* [Openings Moe](https://openings.moe/) - Anime Theme Radio
|
||||
* [Ongaku](https://ongaku.js.org/) or [r-a-d.io](https://r-a-d.io/) - Anime Radio
|
||||
* [420.moe](https://420.moe/) - 420 Radio
|
||||
* [Rekt FM](https://rekt.network/) - Chill / Space / Dark / Horror Synth / EBSM / EDM Radio
|
||||
* [Nightwave Plaza](https://plaza.one/) - Vaporwave Radio
|
||||
* [Nightride.fm](https://nightride.fm/) - Synthwave / Darksynth Radio
|
||||
* [Di.fm](https://www.di.fm/) - Electronic Radio
|
||||
* [0x40](https://0x40.mon.im/) - Electronic Radio with Anime Pictures
|
||||
* [CoreRadio](https://coreradio.online/listen) - Metalcore / Hardcore / Deathcore
|
||||
* [HappyHardcore](https://www.happyhardcore.com/radio/) - Hardcore Dance Radio
|
||||
* [Daft Punk Cafe](https://daftpunk.cafe/) - Daft Punk Radio
|
||||
|
||||
***
|
||||
|
||||
## ▷ Lofi Radio
|
||||
|
||||
* ⭐ **[Flow-Fi](https://www.flowfi.app/)** - Lofi Radio
|
||||
|
|
@ -367,6 +373,7 @@ ## ▷ Audio Ripping Sites
|
|||
* [Spotisaver](https://spotisaver.net/) - Multi-Site
|
||||
* [am-dl](https://am-dl.pages.dev/) - Apple Music / AAC-M4A / ALAC / Atmos
|
||||
* [Jumo-DL](https://jumo-dl.pages.dev/) - Qobuz / FLAC / MP3
|
||||
* [ARCOD](https://arcod.xyz/) - Qobuz / FLAC / MP3 / [Discord](https://discord.com/invite/hgC6ZegbKD)
|
||||
* [EzConv](https://ezconv.cc/) - YouTube / 256kb
|
||||
* [YTiz](https://ytiz.xyz/) - SoundCloud / Bandcamp / 128kb / AAC / [GitHub](https://github.com/tizerk/ytiz)
|
||||
* [cobalt](https://cobalt.tools/) - SoundCloud / 320kb / MP3 / [Instances](https://instances.cobalt.best/) / [X](https://x.com/justusecobalt) / [Discord](https://discord.com/invite/pQPt8HBUPu) / [GitHub](https://github.com/imputnet/cobalt)
|
||||
|
|
@ -376,20 +383,20 @@ ## ▷ Audio Ripping Sites
|
|||
## ▷ Audio Ripping Tools
|
||||
|
||||
* ↪️ **[YouTube Downloaders](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/social-media#wiki_.25B7_youtube_downloaders)**
|
||||
* ⭐ **[Nicotine+](https://nicotine-plus.org/)** or [Soulseek](https://slsknet.org/) - P2P Audio Sharing Networks / [Stats](https://github.com/mrusse/Slsk-Upload-Stats-Tracker) / [Server App](https://github.com/slskd/slskd) / [Batch DDL](https://github.com/fiso64/slsk-batchdl)
|
||||
* ⭐ **[Nicotine+](https://nicotine-plus.org/)** or [Soulseek](https://slsknet.org/) - P2P Audio Sharing Networks / [Stats](https://github.com/mrusse/Slsk-Upload-Stats-Tracker) / [Server App](https://github.com/slskd/slskd) / [Batch](https://github.com/fiso64/slsk-batchdl)
|
||||
* ⭐ **[Soggfy](https://github.com/Rafiuth/Soggfy)** - Spotify / 160kb Free / 320kb Premium
|
||||
* ⭐ **[Exact Audio Copy](https://www.exactaudiocopy.de/)** / [Guide](https://docs.google.com/document/d/1b1JJsuZj2TdiXs--XDvuKdhFUdKCdB_1qrmOMGkyveg) or [Whipper](https://github.com/whipper-team/whipper) - CD / DVD Audio Ripper
|
||||
* ⭐ **[Firehawk52](https://rentry.co/FMHYB64#firehawk)** - Deezer / Qobuz / Tidal / Requires Sign-Up / [Telegram](https://t.me/firehawk52official) / [Discord](https://discord.gg/uqfQbzHj6K)
|
||||
* [OnTheSpot](https://github.com/justin025/onthespot) - Apple Music / Bandcamp / Deezer / Qobuz / Spotify / Tidal / [Discord](https://discord.com/invite/hz4mAwSujH)
|
||||
* [Votify](https://github.com/GladistonXD/votify-fix) - Spotify / 160kb Free / 320kb Premium / Requires WVD Keys / [Discord](https://discord.gg/aBjMEZ9tnq)
|
||||
* [streamrip](https://github.com/nathom/streamrip) - Deezer / Tidal / Qobuz / SoundCloud / 128kb Free / FLAC / Use Firehawk52 / [Colab](https://github.com/privateersclub/rip)
|
||||
* [OrpheusDL](https://github.com/OrfiTeam/OrpheusDL) - Deezer / Qobuz / 128kb Free / FLAC / Use Firehawk52 / [Deezer Module](https://github.com/uhwot/orpheusdl-deezer) / [Qobuz Module](https://github.com/OrfiDev/orpheusdl-qobuz)
|
||||
* [streamrip](https://github.com/nathom/streamrip) - Deezer / Tidal / Qobuz / 128kb Free / FLAC / Use Firehawk52 / [Colab](https://github.com/privateersclub/rip)
|
||||
* [OrpheusDL](https://github.com/OrfiTeam/OrpheusDL) - Deezer / Qobuz / 128kb Free / FLAC / Use Firehawk52 / [Deezer Mod](https://github.com/uhwot/orpheusdl-deezer) / [Qobuz Mod](https://github.com/OrfiDev/orpheusdl-qobuz)
|
||||
* [Archive](https://rentry.co/FMHYB64#archive) - Qobuz / Tidal / Soundcloud / FLAC
|
||||
* [DeemixFix](https://gitlab.com/deeplydrumming/DeemixFix), [Deemix Revival](https://github.com/bambanah/deemix) or [SaturnMusic](https://github.com/SaturnMusic/) - Deezer / FLAC
|
||||
* [Murglar](https://murglar.app/) - Deezer / SoundCloud / VK / 320kb MP3
|
||||
* [Audion](https://audionplayer.com/) - Tidal / [Discord](https://discord.gg/27XRVQsBd9) / [GitHub](https://github.com/dupitydumb/Audion)
|
||||
* [Shira](https://github.com/KraXen72/shira) - YouTube / SoundCloud / 128kb AAC
|
||||
* [QobuzDownloaderX-MOD](https://github.com/DJDoubleD/QobuzDownloaderX-MOD) - Qobuz / 128kb Free 256 ACC Premium / FLAC / Use Firehawk52
|
||||
* [QBDLX](https://github.com/DJDoubleD/QobuzDownloaderX-MOD) - Qobuz / 128kb Free / 256 ACC Premium / FLAC / Use Firehawk52
|
||||
* [qobuz-dl](https://github.com/vitiko98/qobuz-dl) - Qobuz / 128kb Free / FLAC / Use Firehawk52
|
||||
* [you-get](https://you-get.org/) - SoundCloud / Bilibili / 128kb MP3
|
||||
* [BandCamp-DL](https://github.com/iheanyi/bandcamp-dl) - Bandcamp / 128kb MP3 / Free Only / [Discord](https://discord.com/invite/nwdT4MP)
|
||||
|
|
@ -919,6 +926,7 @@ ## ▷ Audio Editors
|
|||
* [Moises](https://moises.ai/) - Live Music Mixer
|
||||
* [plugdata](https://plugdata.org/) - Visual Audio Editor / [Discord](https://discord.com/invite/eT2RxdF9Nq)
|
||||
* [Element](https://kushview.net/element/), [Bespoke](https://www.bespokesynth.com/) or [SunVox](https://warmplace.ru/soft/sunvox/) - Modular Audio Environments / [Discord](https://discord.com/invite/RVk3RVJ)
|
||||
* [Bosca Ceoil](https://yurisizov.itch.io/boscaceoil-blue) - Simple Music Editor / Composer / [Web Version](https://humnom.net/apps/boscaceoil/)
|
||||
* [Music Experiment](https://petersalomonsen.com/webassemblymusic/livecodev2/), [Sonic-Pi](https://sonic-pi.net/), [SuperCollider](https://supercollider.github.io/), [Strudel](https://strudel.cc/) or [WebChuck IDE](https://ccrma.stanford.edu/~tzfeng/webchuck-ide/) - Code-Based Audio Creators
|
||||
* [WaveTracker](https://wavetracker.org/) - Wavetable Audio Editor / [GitHub](https://github.com/squiggythings/WaveTracker)
|
||||
* [FamiStudio](https://famistudio.org/) - NES Audio Editor / [Discord](https://discord.gg/QRCMe595Pv) / [GitHub](https://github.com/BleuBleu/FamiStudio)
|
||||
|
|
@ -933,7 +941,7 @@ ## ▷ Audio Editors
|
|||
|
||||
## ▷ Browser Editors / Synths
|
||||
|
||||
* ⭐ **[Audioalter](https://audioalter.com/)**, **[WavaCity](https://wavacity.com/)**, [AudioMass](https://audiomass.co/), [editor.audio](https://editor.audio/), [TwistedWave](https://twistedwave.com/online) or [xAudioPro](https://www.xaudiopro.com/en/) - Online Editors
|
||||
* ⭐ **[Audioalter](https://audioalter.com/)**, **[WavaCity](https://wavacity.com/)**, [Bosca Ceoil](https://humnom.net/apps/boscaceoil/), [AudioMass](https://audiomass.co/), [editor.audio](https://editor.audio/), [TwistedWave](https://twistedwave.com/online) or [xAudioPro](https://www.xaudiopro.com/en/) - Online Editors
|
||||
* ⭐ **[BandLab](https://www.bandlab.com/)** - Digital Audio Workstation
|
||||
* ⭐ **[Drumhaus](https://www.drumha.us/)**, [iO-808](https://io808.com/), [Sequencer64](https://www.sequencer64.com/), [Drummy](https://drummy.io/), [DrumBit](https://drumbit.app/), [Roland50.studio](https://roland50.studio/), [Acid Machine 2](https://errozero.co.uk/acid-machine/), [orDrumbox](https://www.ordrumbox.com/) or [Hydrogen](http://hydrogen-music.org/) - Virtual Drum Machines
|
||||
* [UltraBox](https://ultraabox.github.io/), [AbyssBox](https://choptop84.github.io/abyssbox-app/), [JummBox](https://jummb.us/) / [GitHub](https://github.com/jummbus/jummbox), [BeepBox](https://www.beepbox.co/) or [GoldBox](https://aurysystem.github.io/goldbox/) - Online Sequencer / BeepBox Forks
|
||||
|
|
|
|||
|
|
@ -80,14 +80,13 @@ ### Gaming
|
|||
|
||||
* **Download / Torrent: [AnkerGames](https://ankergames.net/) / [SteamRIP](https://steamrip.com/) / [FitGirl Repacks](https://fitgirl-repacks.site/)**
|
||||
* **Emulation / ROMs: [Emulation Wiki](https://emulation.gametechwiki.com/index.php/Main_Page) / [r/ROMs Mega](https://r-roms.github.io/) / [Myrient](https://rentry.co/FMHYB64#myrient)**
|
||||
* **Download Managers: [JDownloader](https://jdownloader.org/jdownloader2)**
|
||||
* **Track / Discover: [Backloggd](https://www.backloggd.com/) / [Glitchwave](https://glitchwave.com/)**
|
||||
|
||||
***
|
||||
|
||||
### Reading
|
||||
|
||||
* **Downloading: [Anna's Archive](https://annas-archive.li/) / [Z-Library](https://z-lib.gd/)**
|
||||
* **Downloading: [Anna's Archive](https://annas-archive.gl/) / [Z-Library](https://z-lib.gd/)**
|
||||
* **Audiobooks: [Mobilism Audiobooks](https://forum.mobilism.org/viewforum.php?f=124) / [AudiobookBay](https://audiobookbay.lu/) / [Warning](https://github.com/fmhy/edit/blob/main/docs/.vitepress/notes/audiobookbay-warning.md) / [Tokybook](https://tokybook.com/)**
|
||||
* **Manga: [Weeb Central](https://weebcentral.com/) / [Comix](https://comix.to/)**
|
||||
* **Comics: [BatCave](https://batcave.biz/) / [ReadComicsOnline](https://readcomiconline.li/) / [GetComics](https://getcomics.org/)**
|
||||
|
|
@ -157,6 +156,7 @@ ### iOS Sideloading
|
|||
|
||||
### Important Links
|
||||
|
||||
* **Download Managers: [JDownloader](https://jdownloader.org/jdownloader2)** / [Warning](https://github.com/fmhy/edit/blob/main/docs/.vitepress/notes/jdownloader-warning.md)
|
||||
* **[Translate Web Pages](https://github.com/FilipePS/Traduzir-paginas-web)** - Translate Web Pages to Your Language
|
||||
* **[Glossary / Terminology ](https://rentry.org/the-piracy-glossary)** - Common piracy term definitions
|
||||
* **[Unsafe Sites / Software](https://fmhy.net/unsafe)** / [2](https://redd.it/10bh0h9) - Things we recommend avoiding
|
||||
|
|
|
|||
|
|
@ -160,7 +160,7 @@ ## ▷ Git Tools
|
|||
* 🌐 **[Forge Comparison](https://git.sdf.org/humanacollaborator/humanacollabora/src/branch/master/forge_comparison.md)**, [Forgejo](https://forgejo.org/compare/#only-develops-free-software) or [Forgeperf.org](https://forgeperf.org/) - Git Collab Tool Comparison
|
||||
* ↪️ **[Git Project Indexes](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_git_projects)**
|
||||
* ⭐ **[Fork](https://git-fork.com/)** or [GitButler](https://github.com/gitbutlerapp/gitbutler) - Git Desktop Clients
|
||||
* ⭐ **[Codeberg](https://codeberg.org/)** / [Matrix](https://matrix.to/#/#codeberg-space:matrix.org), [Drift](https://drift.lol/), [GitLab](https://about.gitlab.com/), [sourcehut](https://sourcehut.org/), [git.sr.ht](https://git.sr.ht/), [GitGud](https://gitgud.io/) or [Notabug](https://notabug.org/) - Git Hosting Services
|
||||
* ⭐ **[Codeberg](https://codeberg.org/)** / [Matrix](https://matrix.to/#/#codeberg-space:matrix.org), [Tangled](https://tangled.org/) / [Discord](https://discord.com/invite/W7SRR4xHhd), [Drift](https://drift.lol/), [GitLab](https://about.gitlab.com/), [sourcehut](https://sourcehut.org/), [git.sr.ht](https://git.sr.ht/), [GitGud](https://gitgud.io/) or [Notabug](https://notabug.org/) - Git Hosting Services
|
||||
* [Gitea](https://about.gitea.com/) or [Forgejo](https://forgejo.org/) - Self-Hosted Repository Platforms
|
||||
* [Git](https://git-scm.com/) or [Jujutsu](https://www.jj-vcs.dev) - Version Control Systems
|
||||
* [git-sim](https://github.com/initialcommit-com/git-sim) - Visually Simulate Git Operations Before Running
|
||||
|
|
@ -221,7 +221,7 @@ ## ▷ Docker Tools
|
|||
* 🌐 **[Awesome Docker](https://moistcatawumpus.github.io/awesome-docker/)** - Docker Services Index
|
||||
* 🌐 **[Selfhosted-Apps-Docker](https://github.com/DoTheEvo/selfhosted-apps-docker)** - Self-Hosted Docker Apps / Guides
|
||||
* ⭐ **[Docker](https://www.docker.com/)** / [Desktop App](https://www.docker.com/products/docker-desktop/) - Build, Manage and Run Apps in Containers
|
||||
* ⭐ **[Podman](https://podman.io/)** / [2](https://podman-desktop.io/) / [GitHub](https://github.com/containers/podman) / [Compose](https://github.com/containers/podman-compose) / [Playground](https://labs.play-with-docker.com/) - Root-less, Daemon-less, Open Source Docker Alternative
|
||||
* ⭐ **[Podman](https://podman.io/)** / [2](https://podman-desktop.io/) / [GitHub](https://github.com/containers/podman) / [Compose](https://github.com/containers/podman-compose) - Root-less, Daemon-less, Open Source Docker Alternative
|
||||
* ⭐ **[Portainer](https://portainer.io/)**, [DockGE](https://dockge.kuma.pet/) or [moncho](https://moncho.github.io/dry/) - Container Managers
|
||||
* ⭐ **[Composerize](https://www.composerize.com/)**, [2](https://github.com/irbigdata/data-dockerfiles) - Compose Docker Files
|
||||
* ⭐ **[Hub Docker](https://hub.docker.com/)**, [2](https://linuxserver.io/), [3](https://hotio.dev/) - Docker Images
|
||||
|
|
@ -263,6 +263,7 @@ ## ▷ API Tools
|
|||
* 🌐 **[Streaming Site APIs](https://rentry.co/FMHYB64#streaming-apis)**
|
||||
* 🌐 **[Manga APIs](https://rentry.co/manga-apis)** - Manga Site APIs
|
||||
* 🌐 **[List of Providers](https://docs.consumet.org/list-of-providers)** - Piracy Site APIs
|
||||
* 🌐 **[awesome-transit](https://github.com/MobilityData/awesome-transit)** - Transit Focused APIs
|
||||
* 🌐 **[NASA API](https://api.nasa.gov/)** - NASA Open APIs
|
||||
* 🌐 **[Free AI Stuff](https://github.com/zukixa/cool-ai-stuff)**, [Free LLM API Resources](https://github.com/cheahjs/free-llm-api-resources), [FreeAPIProviders](https://rentry.co/freeapiproviders), [OpenRouter](https://openrouter.ai/models?max_price=0) or [API Together](https://api.together.xyz/playground) - LLM / AI API Indexes
|
||||
* 🌐 **[AI Price Compare](https://countless.dev/)** or **[PricePerToken](https://pricepertoken.com/)** - AI / LLM API Price Comparisons
|
||||
|
|
@ -330,6 +331,7 @@ ## ▷ Game Assets
|
|||
* [UnityFreaks](https://www.unityfreaks.com/), [AssetStore](https://assetstore.unity.com/search#cf-ec_category=3d&nf-ec_price_filter=0...0) or [GameDevUE](https://t.me/GameDevUE) - Unity & Unreal Engine Assets
|
||||
* [SteamGridDB](https://www.steamgriddb.com/) - Custom Video Game Assets
|
||||
* [S2V](https://s2v.app/) - Source 2 Viewer & Decompiler / [GitHub](https://github.com/ValveResourceFormat/ValveResourceFormat)
|
||||
* [Fortnite Porting](https://fortniteporting.app/) - Extract Fortnite Assets / [GitHub](https://github.com/h4lfheart/FortnitePorting)
|
||||
|
||||
***
|
||||
|
||||
|
|
@ -371,14 +373,15 @@ # ► IDEs / Code Editors
|
|||
* ⭐ **[zed](https://zed.dev/)** - Code Editor / [GitHub](https://github.com/zed-industries/zed)
|
||||
* ⭐ **[Lite XL](https://lite-xl.com/)** or [Pragtical](https://pragtical.dev/) - Code Editor / [Plugin Manager](https://github.com/lite-xl/lite-xl-plugin-manager) / [Plugins](https://github.com/lite-xl/lite-xl-plugins) / [Themes](https://github.com/lite-xl/lite-xl-colors)
|
||||
* ⭐ **[Emacs](https://www.gnu.org/software/emacs/)** - Code Editor / [Docs](https://emacsdocs.org/) / [Resources](https://github.com/emacs-tw/awesome-emacs)
|
||||
* ⭐ **[WebDen](https://webden.dev/)**, [Sharplab](https://sharplab.io/), [tech.io](https://tech.io/) or [CodingGround](https://www.tutorialspoint.com/codingground.htm) - Code Playgrounds
|
||||
* [Heynote](https://heynote.com/) - Code Editor / Notepad
|
||||
* ⭐ **[WebDen](https://webden.dev/)**, [Sharplab](https://sharplab.io/), [LiveCodes](https://livecodes.io/) / [GitHub](https://github.com/live-codes/livecodes), [tech.io](https://tech.io/) or [CodingGround](https://www.tutorialspoint.com/codingground.htm) - Code Playgrounds
|
||||
6* [Heynote](https://heynote.com/) - Code Editor / Notepad
|
||||
* [Edna](https://edna.arslexis.io/) - Web App / Code Editor / Notepad
|
||||
* [Trinket](https://trinket.io/) - Web App / Live Preview / Requires Sign-Up / Online Workspace
|
||||
* [Firebase](https://studio.firebase.google.com/) - Gemini AI Cloud Webapp
|
||||
* [Helix](https://helix-editor.com/) - Kakuone / Neovim-Based Code Editor
|
||||
* [HaystackEditor](https://haystackeditor.com/) - Canvas-Based Code Editor
|
||||
* [Geany](https://www.geany.org/) - Lightweight Code Editor
|
||||
* [Fresh](https://getfresh.dev/) - TUI Code Editor
|
||||
* [Brackets](https://brackets.io/) - Webapp / Live Preview
|
||||
* [Bluefish](https://bluefish.openoffice.nl/index.html) - Code Editor / [Templates](https://templates.openoffice.org/)
|
||||
* [CudaText](https://cudatext.github.io/) - Code Editor
|
||||
|
|
@ -520,7 +523,7 @@ ## ▷ Coding Agents / Extensions
|
|||
|
||||
* ⭐ **[Aider](https://aider.chat/)** - Terminal Coding AI / [Discord](https://discord.com/invite/Y7X7bhMQFV) / [GitHub](https://github.com/Aider-AI/aider)
|
||||
* ⭐ **[Gemini CLI](https://google-gemini.github.io/gemini-cli/)** - Coding AI / Gemini 3 Flash/Pro / [GitHub](https://github.com/google-gemini/gemini-cli)
|
||||
* [Google Antigravity](https://antigravity.google/) - Coding AI / Gemini 3 / Claude Opus 4.6 / Limits Reset Weekly / [Account Manager](https://github.com/lbjlaq/Antigravity-Manager) / [Usage Tracker](https://open-vsx.org/extension/crsx/ag-usage)
|
||||
* [Google Antigravity](https://antigravity.google/) - Coding AI / Gemini 3 / Claude Opus 4.6 / Limits Reset Weekly / [Add Skills](https://github.com/sickn33/antigravity-awesome-skills) / [Account Manager](https://github.com/lbjlaq/Antigravity-Manager) / [Usage Tracker](https://open-vsx.org/extension/crsx/ag-usage)
|
||||
* [Windsurf](https://www.windsurf.com/) - Agentic IDE With Tab Completion / [Subreddit](https://www.reddit.com/r/windsurf/) / [Discord](https://discord.com/invite/3XFf78nAx5)
|
||||
* [OpenCode](https://opencode.ai/) - Coding AI / GPT-5 nano / Minimax-M2.5 / [Resources](https://github.com/awesome-opencode/awesome-opencode) / [Discord](https://discord.com/invite/opencode) / [GitHub](https://github.com/sst/opencode)
|
||||
* [Qwen Code](https://github.com/QwenLM/qwen-code) - Coding AI / Qwen3-Coder / Qwen3.5-Plus (Qwen3.5-397B-A17B) / 60 Per Minute / 1K Daily / [Docs](https://qwenlm.github.io/qwen-code-docs/en/) / [Limits](https://qwenlm.github.io/qwen-code-docs/en/users/configuration/auth/)
|
||||
|
|
@ -543,8 +546,8 @@ ## ▷ Web / App Builders
|
|||
* ⭐ **[Arena](https://arena.ai/code)** - AI Website Builder / Multiple Models / Reset Limits w/ Cookie Delete or Temp Mail / [X](https://x.com/arena) / [Discord](https://discord.com/invite/lmarena)
|
||||
* [AI Studio](https://aistudio.google.com/app/apps) - Gemini 3.1 Pro Coding AI / 11 Daily / Requires Sign-Up / [Subreddit](https://www.reddit.com/r/Bard/) / [Discord](https://discord.com/invite/gemini)
|
||||
* [Z.ai](https://chat.z.ai/) - AI Website Builder / GLM-5 / Unlimited / [Discord](https://discord.gg/QR7SARHRxK)
|
||||
* [Design Arena](https://www.designarena.ai/) - Multi-LLM Coding AI / No Direct / Side by Side Mode / Reset Limits / w Temp Mail / [Discord](https://discord.com/invite/Bw9Ajcb3pR)
|
||||
* [Yupp.ai](https://yupp.ai/) - Multi-LLM Coding AI / Google Login Required / [X](https://x.com/yupp_ai) / [Subreddit](https://www.reddit.com/r/yupp_ai/) / [Discord](https://discord.com/invite/yuppai)
|
||||
* [Design Arena](https://www.designarena.ai/) - Multi-LLM Coding AI /No Direct Mode / Reset Limits / w Temp Mail / [Discord](https://discord.com/invite/Bw9Ajcb3pR)
|
||||
* [Yupp.ai](https://yupp.ai/) - Multi-LLM Coding AI / Google Login Required / [Bridge](https://github.com/CloudWaddie/yuppbridge) / [X](https://x.com/yupp_ai) / [Subreddit](https://www.reddit.com/r/yupp_ai/) / [Discord](https://discord.com/invite/yuppai)
|
||||
* [Perchance](https://perchance.org/minimal#edit) / [Subreddit](https://www.reddit.com/r/perchance/) / [Discord](https://discord.gg/43qAQEVV9a), [Fragments](https://fragments.e2b.dev/) / [Discord](https://discord.com/invite/U7KEcGErtQ) / [GitHub](https://github.com/e2b-dev), [Websim](https://websim.com/) / [Discord](https://discord.gg/websim) / [Reddit](https://www.reddit.com/r/websim) / [X](https://x.com/websim_ai), [AnyCoder](https://huggingface.co/spaces/akhaliq/anycoder), or [Llama Coder](https://llamacoder.together.ai/) / [GitHub](https://github.com/Nutlope/llamacoder) - App Builders
|
||||
* [v0](https://v0.app/) - Text to Site Code
|
||||
* [Bolt.new](https://bolt.new/) - AI Web App Builder / [Discord](https://discord.com/invite/stackblitz) / [GitHub](https://github.com/stackblitz/bolt.new)
|
||||
|
|
@ -730,9 +733,8 @@ # ► Web Dev Tools
|
|||
* ⭐ **[GoAccess](https://goaccess.io/)** - Web Log Analyzer / [GitHub](https://github.com/allinurl/goaccess)
|
||||
* ⭐ **[Formulaer](https://formulaer.com/)**, [Tally](https://tally.so/), [FormBricks](https://github.com/formbricks/formbricks), [Formshare](https://formshare.ai/), [Deformity](https://deformity.ai/) or [Stylr](https://www.stylr.xyz/) - Form Builders
|
||||
* ⭐ **[PlayWright](https://playwright.dev/)**, [Selenium](https://www.selenium.dev/) or [Huginn](https://github.com/huginn/huginn) - Browser Automation
|
||||
* [Automa](https://www.automa.site/) or [Browserflow](https://browserflow.app/) - Browser Automation Extensions
|
||||
* [Automa](https://extension.automa.site/) or [Browserflow](https://browserflow.app/) - Browser Automation Extensions
|
||||
* [Flounder](https://flounder.online/) - Website Building Discussion
|
||||
* [FileQ](https://fileq.net/) or [DataNodes](https://datanodes.to/) / [Discord](https://discord.gg/mKyBMyeKvh) - Webmasters Only File Hosts
|
||||
* [Website Planet Tools](https://www.websiteplanet.com/webtools/), [Networking Toolbox](https://networkingtoolbox.net/), [Browserling Tools](https://www.browserling.com/tools/) or [WebCode](https://webcode.tools/) - Site Development Tools
|
||||
* [Tech Playground](https://tech-playground.com/) - Playground for Server-Side Tech
|
||||
* [Wappalyzer](https://www.wappalyzer.com/) - Identify Technologies on Websites / [Addons](https://www.wappalyzer.com/apps/)
|
||||
|
|
|
|||
|
|
@ -30,6 +30,7 @@ # ► Documentaries
|
|||
* [r/Documentaries](https://reddit.com/r/Documentaries)
|
||||
* [Videoneat](https://www.videoneat.com/)
|
||||
* [MVGroup](https://forums.mvgroup.org/)
|
||||
* [NASA+](https://plus.nasa.gov/) - Official NASA Streaming Service
|
||||
|
||||
***
|
||||
|
||||
|
|
@ -130,7 +131,9 @@ ## ▷ Skills / Hobbies / DIY
|
|||
* ⭐ **[Knots 3D](https://knots3d.com/)**, [Animated Knots](https://www.animatedknots.com/) or [NetKnots](https://www.netknots.com/) - Learn to Tie Knots
|
||||
* [Make it Yourself](https://makeityourself.org/), [Instructables](https://www.instructables.com/) or [CreativePark](https://creativepark.canon/en/index.html) - DIY Projects / Crafts
|
||||
* [Low Tech Magazine](https://solar.lowtechmagazine.com/) - Sustainable DIY Tech Guides
|
||||
* [cholyknight](https://cholyknight.com/) - Free Sewing Patterns for Plushies / Wearables
|
||||
* [cholyknight](https://cholyknight.com/), [AntiquePatternLibrary](https://www.antiquepatternlibrary.org/) or [FreeSewing](https://freesewing.eu/) / [Forum](https://forum.freesewing.eu/) - Free Sewing Patterns
|
||||
* [Ravelry](https://ravelry.com) - Fiber Artist Tools
|
||||
* [PEmbroider](https://github.com/CreativeInquiry/PEmbroider) - Embroidery Generator
|
||||
* [Toys from Trash](https://www.arvindguptatoys.com/toys.html) - Use Everyday Items to Make Toys
|
||||
* [HamExam](https://hamexam.org/), [AA9PW](https://www.aa9pw.com/) or [HamStudy](https://hamstudy.org/) - Ham Radio Practice Exams
|
||||
* [ARRL](https://www.arrl.org/) - Amateur Radio Resources / Learning / [Exam Search](https://www.arrl.org/find-an-amateur-radio-license-exam-session) / [Question Pools](https://www.arrl.org/question-pools)
|
||||
|
|
@ -143,7 +146,7 @@ ## ▷ Skills / Hobbies / DIY
|
|||
* [LibraryOfJuggling](https://libraryofjuggling.com/) - Juggling Technique Database
|
||||
* [diyhpluswiki](https://diyhpl.us/wiki/) - DIY Biohacking
|
||||
* [BeatBlackjack](https://www.beatblackjack.org/) - Learn Blackjack Card Counting
|
||||
* [ActivistHandbook](https://activisthandbook.org/) - Campaigning / Activism Guides
|
||||
* [ActivistHandbook](https://activisthandbook.org/) or [Privacy Guides Activism](https://www.privacyguides.org/en/activism/) - Campaigning / Activism Guides
|
||||
* [Bridge Command](https://www.bridgecommand.co.uk/) - Bridge Command Ship Simulator
|
||||
* [UER](https://www.uer.ca/forum_showcats.asp) - Urban Exploration / Abandoned Place Forum / [MAP](https://www.uer.ca/locations/gmaps/)
|
||||
* [HypnosisChatBooks](https://t.me/HypnosisChatBooks) - Hypnosis / Telegram
|
||||
|
|
@ -156,61 +159,6 @@ ## ▷ Skills / Hobbies / DIY
|
|||
|
||||
***
|
||||
|
||||
## ▷ History
|
||||
|
||||
* ↪️ **[Historical Film Archives](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/video#wiki_.25B7_film_archives)**
|
||||
* ↪️ **[History Books](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/reading/#wiki_.25B7_history_books)**
|
||||
* ↪️ **[Historical Maps](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/misc#wiki_.25B7_historic_maps)** - Map Resources
|
||||
* ↪️ **[WW2 Links](https://ww2links.ca/)** - Educational WW2 Resources
|
||||
* ⭐ **[Historic Films](https://www.historicfilms.com/)** or [National Film Preservation Foundation](https://www.filmpreservation.org/) - Historic Footage / Films
|
||||
* ⭐ **[Histography](https://histography.io/)** - History Timelines
|
||||
* ⭐ **[MorbidKuriosity](https://morbidkuriosity.com/)** - Dark History, Conspiracies, Crime, Myths, etc.
|
||||
* [LibreTexts History](https://human.libretexts.org/Bookshelves/History) - History Learning Texts
|
||||
* [Smithsonian Institution Archives](https://siarchives.si.edu/) or [RareHistoricalPhotos](https://rarehistoricalphotos.com/) - Historical Photos / Documents
|
||||
* [Museo](https://museo.app/) - Museum Search
|
||||
* [Wonderous](https://play.google.com/store/apps/details?id=com.gskinner.flutter.wonders) - Learn About Ancient Structures
|
||||
* [Shorpy](https://shorpy.com/) - Historical Photos
|
||||
* [EyewitnesstoHistory](http://www.eyewitnesstohistory.com/index.html) - Historical Eyewitness Testimonies
|
||||
* [HMDB](https://www.hmdb.org/) - Historical Marker Database
|
||||
* [ManuscriptMiniatures](https://manuscriptminiatures.com/) - Medieval Manuscript Images
|
||||
* [BlackPast](https://www.blackpast.org/) - African History Encyclopedia
|
||||
* [Athena](https://athena.unige.ch/athena/) - Greek History Encyclopedia
|
||||
* [Mission US](https://www.mission-us.org/) - American History Learning Games
|
||||
* [OnThisDay](https://www.onthisday.com/) - What Happened on Specific Days
|
||||
* [Royal Constellations](https://royalconstellations.visualcinnamon.com/) - Royal Family Ancestral Visualization
|
||||
* [Historical Tech Tree](https://www.historicaltechtree.com/) or [Calculating Empires](https://calculatingempires.net/) - Historical Discovery / Tech Timelines
|
||||
* [ETHW](https://ethw.org/) - Engineering and Technology History Wiki
|
||||
* [Royal Armouries Collections](https://royalarmouries.org/collection/) - Ancient Armaments Museum
|
||||
* [NuclearWeaponArchive](https://nuclearweaponarchive.org/) - Nuclear Weapons History
|
||||
* [911 Realtime](https://911realtime.org/) - 9/11 in Real-Time
|
||||
* [The Food Timeline](https://www.foodtimeline.org/) - Food History Timeline
|
||||
* [Historical Recipes](https://l-lists.com/en/lists/55cbww.html) - Historical Recipes Site Index
|
||||
* [Arachne](https://arachne.dainst.org/) - Ancient Sculpture Image Archive
|
||||
* [SmartHistory](https://smarthistory.org/) - Art / Cultural Object History
|
||||
* [Free Classic Image](https://freeclassicimages.com/) - Vintage / Retro Image Collection / Some NSFW
|
||||
* [gwulo](https://gwulo.com/) - Historical Hong Kong Photo Archive
|
||||
* [CARI](https://cari.institute/) or [CARI Are.na](https://www.are.na/consumer-aesthetics-research-institute/channels) - Design Aesthetics History
|
||||
* [ChinesePosters](https://chineseposters.net/) - Chinese Propaganda Poster History
|
||||
* [Historical Fashion](https://docs.google.com/document/d/1R8eulTsb9Zlc7h2H917dNJZS9s0rIq9OAu7LpSS9F2k/) - Historical Fashion Resources / History
|
||||
* [PessimistsArchive](https://pessimistsarchive.org/) - Historical Technological Pessimism Archive
|
||||
* [Time Portal](https://www.eggnog.ai/entertimeportal) - History Clip Guessing
|
||||
|
||||
***
|
||||
|
||||
## ▷ Mythology / Folklore
|
||||
|
||||
* [ABookOfCreatures](https://abookofcreatures.com/), [Demons of the Deep](https://seademons.weebly.com/) or [Bestiary](https://bestiary.ca/beasts.htm) - Mythological Encyclopedias
|
||||
* [GodChecker](https://www.godchecker.com/) - Religion / Mythology History
|
||||
* [Theoi](https://www.theoi.com/) - Greek Mythology
|
||||
* [Germanic Mythology](https://www.germanicmythology.com/index.html) - Germanic Mythology
|
||||
* [Inuit Myths](https://www.inuitmyths.com/index.htm) - Inuit Mythology
|
||||
* [ObscUrban Legend Wiki](https://obscurban-legend.fandom.com/) - Mythology / Urban Legends
|
||||
* [Encyclopedia Mythica](https://pantheon.org/) - Mythology / Folklore / Religion
|
||||
* [Mythology.net](https://mythology.net/) - Mythology / Religion
|
||||
* [Japanese Mythology](https://japanesemythology.wordpress.com/) or [Yokai](https://yokai.com/) - Japanese Mythology / Folklore
|
||||
|
||||
***
|
||||
|
||||
## ▷ Philosophy
|
||||
|
||||
* ⭐ **[Stanford Encyclopedia of Philosophy](https://plato.stanford.edu/index.html)**, [IEP](https://iep.utm.edu/) or [nLab Philosophy](https://ncatlab.org/nlab/show/philosophy) - Philosophy Encyclopedias / [Search](https://www.visualizingsep.com/)
|
||||
|
|
@ -255,7 +203,7 @@ ## ▷ Music
|
|||
* [Learning Music](https://learningmusic.ableton.com/) or [Musicca](https://www.musicca.com/) - Music-Making Lessons
|
||||
* [Midiano](https://midiano.com/) / [Discord](https://discord.com/invite/SfFdbunEm2), [Piano Trainer](https://zaneh.itch.io/piano-trainer) / [GitHub](https://github.com/ZaneH/piano-trainer), [Chord Nebula](https://chords.yottanami.com/), [sightread](https://sightread.dev/) or [PianoCheetah](https://pianocheetah.app) - Piano Practice / Learning
|
||||
* [Keyboard Connect](https://keyboardconnect.com/) - Keyboard Tutoring App
|
||||
* [TrueToneGuitar](https://www.truetoneguitar.co.uk/tools/guitar-practice-routine-generator), [Songsterr](https://www.songsterr.com/), [FAChords](https://www.fachords.com/) or [ChordBook](https://chordbook.com/) - Guitar Tools
|
||||
* [TrueToneGuitar](https://www.truetoneguitar.co.uk/tools/guitar-practice-routine-generator), [Songsterr](https://www.songsterr.com/) / [Downloader](https://www.songsterr-downloader.com/), [FAChords](https://www.fachords.com/) or [ChordBook](https://chordbook.com/) - Guitar Tools
|
||||
* [FretFlip](https://fretflip.com/guitar-scales), [Oolimo](https://www.oolimo.com/en/index.php), [StringScales](https://stringscales.com/), [My Fretboard Trainer](https://myfretboardtrainer.com/home/), [QFGM](https://quinnfetrowsguitarmachines.com/) or [GuitarScale](https://www.guitarscale.org/) - Learn Guitar Scales / Chords
|
||||
* [JamStart](https://jamstart.app/) - Spotify Chord Charts
|
||||
* [#fretflip](https://fretflip.com/) - Create / Print Guitar Scales & Chord Charts
|
||||
|
|
@ -516,7 +464,7 @@ ## ▷ Engineering
|
|||
* [Diode](https://www.withdiode.com/) - 3D Hardware Simulator
|
||||
* [Wokwi](https://wokwi.com/) - Arduino / ESP32 Board Simulators
|
||||
* [HDLBits](https://hdlbits.01xz.net/) - Learn Circuit Design
|
||||
* [Falstad](https://www.falstad.com/circuit/), [Fritzing](https://gist.github.com/RyanLua/fc2457d87641bb39754278b01a647526), [SKiDL](https://devbisme.github.io/skidl/) / [GitHub](https://github.com/devbisme/skidl), [atopile](https://docs.atopile.io/atopile/quickstart), [EasyEDA](https://easyeda.com/editor) or [LibrePCB](https://librepcb.org/) - Electronic Circuit Design / Simulation Tools
|
||||
* [Falstad](https://www.falstad.com/circuit/), [Fritzing](https://gist.github.com/RyanLua/fc2457d87641bb39754278b01a647526) (linux), [SKiDL](https://devbisme.github.io/skidl/) / [GitHub](https://github.com/devbisme/skidl), [atopile](https://docs.atopile.io/atopile/quickstart), [EasyEDA](https://easyeda.com/editor) or [LibrePCB](https://librepcb.org/) - Electronic Circuit Design / Simulation Tools
|
||||
* [The Pinouts Book](https://pinouts.org/) - Pinout Function Reference Guide
|
||||
* [Circuit Steps](https://circuitsteps.com/) - Circuit Analysis Tool
|
||||
* [BatteryUniversity](https://batteryuniversity.com/articles) - Learn About Batteries
|
||||
|
|
@ -525,7 +473,7 @@ ## ▷ Engineering
|
|||
* [RetroSix](https://www.retrosix.wiki/) - Retro Console Repair Guides + Info / [Discord](https://discord.gg/D4Envqc5jr)
|
||||
* [/m/engineering](https://www.reddit.com/user/nbatman/m/engineering/) - Engineering Multireddit
|
||||
* [McMaster](https://www.mcmaster.com/) or [3D Find It](https://www.3dfindit.com/en/) - Free 3D Printable Hardware Parts + Tools
|
||||
* [Build List](https://buildlist.org/) or [USA Parts Made Fast](https://partsmadefast.com/) - On-Demand Online Manufacturers
|
||||
* [Build List](https://buildlist.org/) or [USA Parts Made Fast](https://partsmadefast.com/) / [X](https://x.com/mattfreed) - On-Demand Online Manufacturers
|
||||
|
||||
***
|
||||
|
||||
|
|
@ -555,12 +503,15 @@ ## ▷ Aerospace Engineering
|
|||
* [Flight Mechanics](https://www.aircraftflightmechanics.com) - Aircraft Flight Mechanics Learning
|
||||
* [Falcon BMS](https://www.falcon-bms.com/) - Falcon 4.0 Modernization Project / [Wiki](https://wiki.falcon-bms.com/) / [Forum](https://forum.falcon-bms.com/) / [YouTube](https://www.youtube.com/@falcon-bms) / [Subreddit](https://www.reddit.com/r/falconbms/) / [Discord](https://discord.gg/KQNHQBz)
|
||||
* [FlightGear](https://www.flightgear.org/) - Open-Source Flight Simulator / [X](https://x.com/flightgearsim) / [GitLab](https://gitlab.com/flightgear/flightgear)
|
||||
* [eCalc](https://www.ecalc.ch/) - Aerospace Engineering Calculators
|
||||
* [Av8n](https://www.av8n.com/) - Aviation Physics Textbook
|
||||
* [SmartCockpit](https://www.smartcockpit.com/) - Aircraft Systems / Technical Manuals
|
||||
* [Boeing 737 Technical Site](http://www.b737.org.uk/) - B737 Technical Engineering Guides / History / [YouTube](https://www.youtube.com/@ChrisBrady737)
|
||||
* [OpenVSP](https://www.openvsp.org/) - Aircraft Geometry Tool / [GitHub](https://github.com/OpenVSP/OpenVSP)
|
||||
* [RCPlanes Online](https://rcplanes.online/) - RC Plane Aerodynamics / Guides
|
||||
* [Outerzone](https://outerzone.co.uk/) - Vintage Model Airplane Plans
|
||||
* [Airfoil Tools](http://airfoiltools.com/) - Airfoil Coordinates / Dat Files
|
||||
* [XFLR5](https://www.xflr5.tech/) - Airfoils Analysis Tool
|
||||
* [OscarLiang.com](https://oscarliang.com/) - FPV Drone Tutorials / Reviews
|
||||
* [OpenDroneMap](https://www.opendronemap.org/) - Drone Mapping Software
|
||||
* [Open Drone Logbook](https://opendronelog.com/) - FOSS Drone Log [GitHub](https://github.com/arpanghosh8453/drone-logbook)
|
||||
|
|
@ -718,6 +669,7 @@ # ► Space
|
|||
* [ISRO](https://www.isro.gov.in/) - Indian Space Research Organization
|
||||
* [Space.com](https://www.space.com/) - Space News
|
||||
* [Encyclopedia Astronautica](http://www.astronautix.com/) - Space Encyclopedia
|
||||
* [NASA+](https://plus.nasa.gov/) - Official NASA Streaming Service
|
||||
* [NASA History](https://www.nasa.gov/history/history-publications-and-resources/) or [NASA Ebooks](https://www.nasa.gov/ebooks/) - NASA Books
|
||||
* [Cosmos2025](https://cosmos2025.iap.fr/fitsmap.html), [Map of the Universe](https://mapoftheuniverse.net/), [Scale of the Universe](https://scaleofuniverse.com/), [AndroidCelestia](https://github.com/celestiamobile/AndroidCelestia/) or [SpaceEngine](https://spaceengine.org/) - Interactive Universe Scales
|
||||
* [NASA's Eyes](https://science.nasa.gov/eyes/) or [Celestia](https://celestiaproject.space/) - 3D Space Visualizations / [Solar System](https://eyes.nasa.gov/apps/solar-system/#/home)
|
||||
|
|
@ -790,6 +742,81 @@ ## ▷ Spacecraft
|
|||
|
||||
***
|
||||
|
||||
# ► History
|
||||
|
||||
* ↪️ **[Historical Film Archives](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/video#wiki_.25B7_film_archives)**
|
||||
* ↪️ **[History Books](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/reading/#wiki_.25B7_history_books)**
|
||||
* ↪️ **[Historical Maps](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/misc#wiki_.25B7_historic_maps)** - Map Resources
|
||||
* ↪️ **[WW2 Links](https://ww2links.ca/)** - Educational WW2 Resources
|
||||
* ⭐ **[Historic Films](https://www.historicfilms.com/)** or [National Film Preservation Foundation](https://www.filmpreservation.org/) - Historic Footage / Films
|
||||
* ⭐ **[Histography](https://histography.io/)** - History Timelines
|
||||
* ⭐ **[MorbidKuriosity](https://morbidkuriosity.com/)** - Dark History, Conspiracies, Crime, Myths, etc.
|
||||
* [LibreTexts History](https://human.libretexts.org/Bookshelves/History) - History Learning Texts
|
||||
* [Smithsonian Institution Archives](https://siarchives.si.edu/) or [RareHistoricalPhotos](https://rarehistoricalphotos.com/) - Historical Photos / Documents
|
||||
* [Museo](https://museo.app/) - Museum Search
|
||||
* [Wonderous](https://play.google.com/store/apps/details?id=com.gskinner.flutter.wonders) - Learn About Ancient Structures
|
||||
* [Shorpy](https://shorpy.com/) - Historical Photos
|
||||
* [EyewitnesstoHistory](http://www.eyewitnesstohistory.com/index.html) - Historical Eyewitness Testimonies
|
||||
* [HMDB](https://www.hmdb.org/) - Historical Marker Database
|
||||
* [ManuscriptMiniatures](https://manuscriptminiatures.com/) - Medieval Manuscript Images
|
||||
* [BlackPast](https://www.blackpast.org/) - African History Encyclopedia
|
||||
* [Athena](https://athena.unige.ch/athena/) - Greek History Encyclopedia
|
||||
* [Mission US](https://www.mission-us.org/) - American History Learning Games
|
||||
* [OnThisDay](https://www.onthisday.com/) - What Happened on Specific Days
|
||||
* [Royal Constellations](https://royalconstellations.visualcinnamon.com/) - Royal Family Ancestral Visualization
|
||||
* [Royal Armouries Collections](https://royalarmouries.org/collection/) - Ancient Armaments Museum
|
||||
* [911 Realtime](https://911realtime.org/) - 9/11 in Real-Time
|
||||
* [The Food Timeline](https://www.foodtimeline.org/) - Food History Timeline
|
||||
* [Historical Recipes](https://l-lists.com/en/lists/55cbww.html) - Historical Recipes Site Index
|
||||
* [Arachne](https://arachne.dainst.org/) - Ancient Sculpture Image Archive
|
||||
* [SmartHistory](https://smarthistory.org/) - Art / Cultural Object History
|
||||
* [gwulo](https://gwulo.com/) - Historical Hong Kong Photo Archive
|
||||
* [CARI](https://cari.institute/) or [CARI Are.na](https://www.are.na/consumer-aesthetics-research-institute/channels) - Design Aesthetics History
|
||||
* [ChinesePosters](https://chineseposters.net/) - Chinese Propaganda Poster History
|
||||
* [Fashion History Timeline](https://fashionhistory.fitnyc.edu/) or [Historical Fashion](https://docs.google.com/document/d/1R8eulTsb9Zlc7h2H917dNJZS9s0rIq9OAu7LpSS9F2k/) - Historical Fashion Resources / History
|
||||
* [PessimistsArchive](https://pessimistsarchive.org/) - Historical Technological Pessimism Archive
|
||||
* [Time Portal](https://www.eggnog.ai/entertimeportal) - History Clip Guessing
|
||||
* [Forebears](https://forebears.io/) or [BehindTheName](https://www.behindthename.com/) - Name Etymologies
|
||||
|
||||
***
|
||||
|
||||
## ▷ Tech History
|
||||
|
||||
* ⭐ **[Historical Tech Tree](https://www.historicaltechtree.com/)** or [Calculating Empires](https://calculatingempires.net/) - Historical Discovery / Tech Timelines
|
||||
* [ETHW](https://ethw.org/) - Engineering and Technology History Wiki
|
||||
* [Museum of Obsolete Media](https://obsoletemedia.org/) - Physical Media Format Wiki / History
|
||||
* [BetaWiki](https://betawiki.net/wiki/Main_Page) - Operating System / Software History / [Discord](https://discord.com/invite/XPz5Zm42tR)
|
||||
* [Old Computer Museum](https://oldcomputers.net/) - Computer History
|
||||
* [The Retro Web](https://theretroweb.com/) - Computer Hardware History
|
||||
* [The HP 9845 Project](https://www.hp9845.net/) - HP 9845 Computer History
|
||||
* [Folklore](https://www.folklore.org) or [TheAppleWiki](https://theapplewiki.com/) - Apple Computer History
|
||||
* [Crypto Museum](https://www.cryptomuseum.com/) - Cryptographic Machine History
|
||||
* [VGA Museum](https://www.vgamuseum.info/) - Graphic Cards History
|
||||
* [Virus Encyclopedia](http://virus.wikidot.com/) - Computer Virus History
|
||||
* [MobilePhoneMuseum](https://www.mobilephonemuseum.com/) - Mobile Phone History / Info
|
||||
* [WalkmanLand](https://walkman.land/) - Walkman History / Database
|
||||
* [InfoMesh](https://infomesh.org/) - Web History / Info
|
||||
* [VersionMuseum](https://www.versionmuseum.com/) - Website History / Info
|
||||
* [info.cern](https://info.cern.ch/) - First Website on the Internet
|
||||
* [KilledByGoogle](https://killedbygoogle.com/), [Microsoft Graveyard](https://microsoftgraveyard.com/) or [SuedByNintendo](https://www.suedbynintendo.com/) - Dead Projects Archives
|
||||
* [NuclearWeaponArchive](https://nuclearweaponarchive.org/) - Nuclear Weapons History
|
||||
|
||||
***
|
||||
|
||||
## ▷ Mythology / Folklore
|
||||
|
||||
* [ABookOfCreatures](https://abookofcreatures.com/), [Demons of the Deep](https://seademons.weebly.com/) or [Bestiary](https://bestiary.ca/beasts.htm) - Mythological Encyclopedias
|
||||
* [GodChecker](https://www.godchecker.com/) - Religion / Mythology History
|
||||
* [Theoi](https://www.theoi.com/) - Greek Mythology
|
||||
* [Germanic Mythology](https://www.germanicmythology.com/index.html) - Germanic Mythology
|
||||
* [Inuit Myths](https://www.inuitmyths.com/index.htm) - Inuit Mythology
|
||||
* [ObscUrban Legend Wiki](https://obscurban-legend.fandom.com/) - Mythology / Urban Legends
|
||||
* [Encyclopedia Mythica](https://pantheon.org/) - Mythology / Folklore / Religion
|
||||
* [Mythology.net](https://mythology.net/) - Mythology / Religion
|
||||
* [Japanese Mythology](https://japanesemythology.wordpress.com/) or [Yokai](https://yokai.com/) - Japanese Mythology / Folklore
|
||||
|
||||
***
|
||||
|
||||
# ► Language Learning
|
||||
|
||||
## ▷ Multi-Language
|
||||
|
|
@ -939,7 +966,7 @@ ## ▷ Chinese
|
|||
* [Stroke Order](https://stroke-order.learningweb.moe.edu.tw/?la=1) - Learn Chinese Stroke Orders
|
||||
* [HackingChinese](https://www.hackingchinese.com/archive-2/) - Chinese Learning Articles
|
||||
* [Cantonese.ca](https://cantonese.ca/), [CantoScrolls](https://cantoscrolls.com/) or [Laoshi](https://laoshi.io/) - Chinese Vocabulary
|
||||
* [MDBG](https://www.mdbg.net/) or [zdict](http://zdic.net/) or [CantoWords](https://cantowords.com/) - Chinese Dictionaries
|
||||
* [MDBG](https://www.mdbg.net/), [zdict](http://zdic.net/) or [CantoWords](https://cantowords.com/) - Chinese Dictionaries
|
||||
* [Maorma](https://www.maorma.net/) - Chinese Tone Practice
|
||||
* [The Chairman's Bao](https://www.thechairmansbao.com/) - Chinese Reading Practice / News Articles
|
||||
* [Pleco](https://www.pleco.com/) - Chinese Flashcards / Dictionary
|
||||
|
|
@ -977,6 +1004,7 @@ ## ▷ European
|
|||
* [LCSpeakFrench](https://t.me/LCSpeakFrench) - Live French Lessons
|
||||
* [Uusi Kielemme](https://uusikielemme.fi/) - Finnish Learning
|
||||
* [The People's Dictionary](https://folkets-lexikon.csc.kth.se/folkets/folkets.en.html) - Swedish Translation Dictionary
|
||||
* [Easy Croatian](https://www.easy-croatian.com/) or [HR4EU](https://www.hr4eu.hr/) - Croatian Language Learning
|
||||
|
||||
***
|
||||
|
||||
|
|
@ -1009,12 +1037,12 @@ ## ▷ South Asian
|
|||
## ▷ Sign Languages
|
||||
|
||||
* ⭐ **[SpreadTheSign](https://spreadthesign.com/)**, [Sign Dictionary](https://signacademy.org/) or [SL Dictionary](https://www.sldictionary.org/) - Multi-Language Dictionaries
|
||||
* [ASL Dictionary](https://www.signasl.org/), [StrongASL](https://www.strongasl.com/), [LifePrint](https://lifeprint.com/), [ASLCore](https://aslcore.org/) or [HandSpeak](https://www.handspeak.com/) - American Sign Language Dictionaries
|
||||
* [ASL Dictionary](https://www.signasl.org/), [Anysign](https://www.anysign.app/en/dictionary), [StrongASL](https://www.strongasl.com/), [LifePrint](https://lifeprint.com/), [ASLCore](https://aslcore.org/) or [HandSpeak](https://www.handspeak.com/) - American Sign Language Dictionaries
|
||||
* [BSL Dictionary](https://www.signbsl.com/), [BSL Signbank](https://bslsignbank.ucl.ac.uk/), [MobileSign](http://www.mobilesign.org/) or [Signd](https://signd.co.uk/) - British Sign Language Dictionaries
|
||||
* [Text to Sign](https://wecapable.com/tools/text-to-sign-language-converter/) - Convert Text to Fingerspelling in ASL or BSL
|
||||
* [Rochester ASL / LSF](https://projects.lib.rochester.edu/lsf-asl-app/) - ASL / LSF / Click Dictionary
|
||||
* [SignFlow](https://signflow.website/) - Interactive Sign Dictionary / Learning
|
||||
* [Helping Hands](https://helpinghands.gg/) - VR-Based Sign Language Practice / Classes / [Discord](https://discord.com/invite/helpinghands)
|
||||
* [BSL Dictionary](https://www.signbsl.com/), [BSL Signbank](https://bslsignbank.ucl.ac.uk/), [MobileSign](http://www.mobilesign.org/) or [Signd](https://signd.co.uk/) - British Sign Language Dictionaries
|
||||
* [Signbank](https://auslan.org.au/) - Australian Sign Language Dictionary
|
||||
* [NZSL](https://nzsl.nz/) - New Zealand Sign Language Dictionary
|
||||
* [SSC](https://www.ssc.education.ed.ac.uk/BSL/) - BSL Academic Term Dictionary
|
||||
|
|
@ -1157,6 +1185,7 @@ # ► Developer Learning
|
|||
* [System Design 101](https://github.com/ByteByteGoHq/system-design-101) or [system-design-primer](https://github.com/donnemartin/system-design-primer) - System Design Guides
|
||||
* [CLIG](https://clig.dev/) - CLI Design Guide / [Discord](https://discord.gg/EbAW5rUCkE)
|
||||
* [LearnToCloud](https://learntocloud.guide/) - Cloud Computing Guide
|
||||
* [Server Survival](https://pshenok.github.io/server-survival/) - Tower Defense Game for learning Cloud Architecure / [GitHub](https://github.com/pshenok/server-survival)
|
||||
* [Swift Playgrounds](https://developer.apple.com/tutorials/swiftui) - Learn Swift UI / [Samples](https://developer.apple.com/tutorials/sample-apps)
|
||||
* [rTorr](https://vim.rtorr.com/) - Vim Editor Cheat Sheets
|
||||
* [Vim University](https://github.com/wincent/vim-university) - Vim Tips
|
||||
|
|
|
|||
|
|
@ -123,6 +123,7 @@ ## ▷ File Encryption
|
|||
* ⭐ **[VeraCrypt](https://www.veracrypt.fr/en/Home.html)** - Disk Encryptor / Use w/ External Drives
|
||||
* [age](https://github.com/FiloSottile/age) - File Encryptor
|
||||
* [REM](https://github.com/liriliri/rem) - File Encryptor / Rclone GUI
|
||||
* [Picocrypt-NG](https://github.com/Picocrypt-NG/Picocrypt-NG) - File Encryptor
|
||||
* [gocryptfs](https://github.com/bailey27/cppcryptfs) - File Encryptor
|
||||
* [Kryptor](https://www.kryptor.co.uk/) - File Encryptor
|
||||
|
||||
|
|
@ -135,6 +136,7 @@ ## ▷ File Sync
|
|||
* [MyPhoneExplorer](https://www.fjsoft.at/) or [SyncFolder](https://apps.microsoft.com/detail/9nc73mjwhsww?rtc=1&hl=en-us&gl=US) - Phone and Desktop Sync
|
||||
* [allwaysync](https://allwaysync.com/) - File Sync Utility
|
||||
* [Resilio](https://www.resilio.com/individuals/) - P2P File Sync
|
||||
* [TangoShare](https://tangoshare.com/) - P2P File Sync
|
||||
* [SmartFTP](https://www.smartftp.com/) - FTP File Sync
|
||||
* [rsync](https://rsync.samba.org) - Command-line File Sync / [GitHub](https://github.com/RsyncProject/rsync)
|
||||
* [Unison](https://github.com/bcpierce00/unison) - Bidirectional File Sync
|
||||
|
|
@ -321,21 +323,20 @@ # ► File Hosts
|
|||
* ⭐ **[Buzzheavier](https://buzzheavier.com/)**, [2](https://fuckingfast.net/), [3](https://bzzhr.co/) - Unlimited / 15 Days After Last Download / [File Expiry](https://buzzheavier.com/help) / [Discord](https://discord.gg/ttQjgC28WP) / [Warning](https://github.com/fmhy/edit/blob/main/docs/.vitepress/notes/buzzheavier-warning.md)
|
||||
* ⭐ **[Catbox](https://catbox.moe/)** - 200MB / Forever / [Proxy](https://fatbox.moe/)
|
||||
* ⭐ **[Pillowcase](https://pillows.su/)** - Audio File Host / 200MB (500MB w/ Account) / Forever
|
||||
* [FileQ](https://fileq.net/) - 50GB / 20GB / 3 Days After Last Download / Has Unlimited Plans / [Discord](https://discord.gg/zc2r9pZzF)
|
||||
* [FileMirage](https://filemirage.com/) - 50GB / 30 Days After Last View
|
||||
* [Send.now](https://send.now/) - 100GB / 15 Days After Last Download
|
||||
* [UC.Files](https://files.union-crax.xyz/) - 15GB / Forever
|
||||
* [Litterbox](https://litterbox.catbox.moe/) - 1GB / 3 Days
|
||||
* [Transfer.it](https://transfer.it/) - Unlimited / 90 Days / Owned by MEGA.nz
|
||||
* [DesiUpload](https://desiupload.co/) - 15 Days (2GB per file / 30 Days w/ Account)
|
||||
* [hostb](https://hostb.org/) - Unlimited / 30 Days After Last Download / [Source](https://r-w-x.org/r/hostb.git)
|
||||
* [udrop](https://www.udrop.com/) - 5GB / 50GB on Signup / Forever
|
||||
* [FileQ](https://fileq.net/) - Unlimited / 5GB / 3 Days After Last Download
|
||||
* [MixDrop](https://mixdrop.ag/) - Unlimited / 60 Days / Requires Sign-Up
|
||||
* [Ranoz](https://ranoz.gg/) - 20GB / 30 Days After Last Download
|
||||
* [1fichier.com](https://1fichier.com/) - 300GB / 15 Days (30 Days w/ Account)
|
||||
* [Filebin](https://filebin.net/) - Unlimited / 6 Days / [Warning](https://github.com/fmhy/edit/blob/main/docs/.vitepress/notes/filebin-warning.md)
|
||||
* [file.kiwi](https://file.kiwi/) - Unlimited / 90 Hours / [File Expiry](https://file.kiwi/en/price)
|
||||
* [Easyupload.io](https://easyupload.io/) - 100GB / 30 Days
|
||||
* [DoraDrop](http://doradrop.com/) - Unlimited / 5GB / Requires Sign-Up
|
||||
* [UpZur](https://upzur.com/) - 5GB / 1.95TB / 120 Days After Last Download / Requires Sign-Up
|
||||
* [UploadHive](https://uploadhive.com/) - Unlimited / 50 Days After Last Download / Use Adblock
|
||||
* [FireLoad](https://www.fireload.com/) - Unlimited / 60 Days / Requires Sign-Up
|
||||
|
|
@ -347,20 +348,16 @@ # ► File Hosts
|
|||
* [eDisk](https://www.edisk.cz/) - 20GB / 30 Days
|
||||
* [Drop Download](https://drop.download/) - 25GB / 90 Days / Requires Sign-Up
|
||||
* [SwissTransfer](https://www.swisstransfer.com/) - 50GB / 30 Days / 250 Downloads
|
||||
* [Filecad](https://www.filecad.com/) - 10GB / 120 Days
|
||||
* [Dfiles](https://dfiles.com/) - 10GB / 90 Days
|
||||
* [BowFile](https://bowfile.com/) - 20GB / 20 Days
|
||||
* [TheUserCloud](https://theuser.cloud/) - 10GB / 60 Days
|
||||
* [Gulfup](https://www.gulf-up.com/) - 10GB / 30 Days / Requires Sign-Up
|
||||
* [Hexupload](https://hexload.com/) or [AnonTransfer](https://anontransfer.com/) - 15GB / 30 Days
|
||||
* [Tempcloud](https://temp.kotol.cloud/) - 10GB / 3 Days
|
||||
* [GrosFichiers](https://www.grosfichiers.com/) or [DataTransfer](https://www.datatransfer.com/) - 10GB / 14 Days
|
||||
* [FileFast](https://filefa.st/), [2](https://gofile.to/) - 5GB / Unlimited
|
||||
* [Akira Box](https://akirabox.com/), [2](https://akirabox.to/) - 20GB Free / 30 Days After Last Download / Requires Sign-Up
|
||||
* [FileTransfer.io](https://filetransfer.io/) - 6GB / 21 Days / 50 Downloads
|
||||
* [Imagenetz](https://www.imagenetz.de/?setLang=en) - 5GB / 30 Days After Last Download
|
||||
* [Nerushare](https://nerushare.ovh/) - 5GB / Forever
|
||||
* [imgur.gg](https://temp.imgur.gg/) - 5GB / Forever / Requires Sign-Up
|
||||
* [FilePort](https://fileport.io/) - 5GB / 7 Days
|
||||
* [FileDitch](https://fileditch.com/) or [SendGB](https://www.sendgb.com/) - 5GB / 90 Days
|
||||
* [MegaUp](https://megaup.net/) - 5GB / 60 Days
|
||||
|
|
@ -370,7 +367,6 @@ # ► File Hosts
|
|||
* [ufile.io](https://ufile.io/) - 5GB / 30 Days
|
||||
* [Internxt Send](https://send.internxt.com/) - 5GB / 15 Days
|
||||
* [JuiceBox](https://box.juicey.dev/) - 15GB / 14 Days
|
||||
* [reusable.host](https://reusable.host/) - 10GB / 30 Days
|
||||
* [UserDrive](https://usersdrive.com/) - 5GB / 65 Days
|
||||
* [pCloud Transfer](https://transfer.pcloud.com/) or [Tresorit Send](https://send.tresorit.com/) - 5GB / 7 Days / Requires Email
|
||||
* [Temp.sh](https://temp.sh/) - 4GB / 3 Days
|
||||
|
|
|
|||
|
|
@ -112,7 +112,7 @@ ## ▷ Controller Tools
|
|||
* [JoyToKey](https://joytokey.net/en/) - Controller Emulator
|
||||
* [DriftGuard](https://driftguard.app/) - Test / Calibrate Controller Drift
|
||||
* [Spud Controller](https://sadwhale-studios.itch.io/) - Controller / Mouse Input Displays
|
||||
* [Gamepad-Tester](https://hardwaretester.com/gamepad) or [Test Gamepad](https://testgamepad.online/) - Online Controller Testers
|
||||
* [Gamepad-Tester](https://hardwaretester.com/gamepad), [Controller Tester](https://controllertest.io/) or [Test Gamepad](https://testgamepad.online/) - Online Controller Testers
|
||||
* [DualSense Tester](https://ds.daidr.me/) - Web DualSense Tester / [GitHub](https://github.com/daidr/dualsense-tester)
|
||||
* [Calibration GUI](https://dualshock-tools.github.io/) - Web DualSense Calibration Tool / Requires Chromium / [GitHub](https://github.com/dualshock-tools/dualshock-tools.github.io)
|
||||
* [hidusbf](https://github.com/LordOfMice/hidusbf) - Decrease DS4/5 Input Lag / [Video](https://youtu.be/x0wcJM4FtXQ)
|
||||
|
|
@ -201,6 +201,7 @@ ## ▷ Git Gud
|
|||
|
||||
* 🌐 **[MouseCTRL](https://mousectrl.com/)** or [Mousepad Mastersheet](https://docs.google.com/spreadsheets/d/1RAnmZxDNduaGV8kB-GCvZ0MO6d9-0j9jmrU2f8dp0Ww/) - Mousepad Comparison Chart
|
||||
* 🌐 **[Gamepadla](https://gamepadla.com/)** - Gamepad / Controller Latency Tests
|
||||
* 🌐 **[[The Melee Library](https://www.meleelibrary.com/)** - Super Smash Bros. Melee Learning Resources
|
||||
* ⭐ **[Before I Play](https://beforeiplay.com/)** - Tips for any Game
|
||||
* ⭐ **[GamingSmart](https://gamingsmart.com/)**, [Sens Converter](https://kovaaks.com/kovaaks/sens-converter), [SensConverter](https://sensconverter.online/) or [Mouse Sensitivity](https://www.mouse-sensitivity.com/) - Game Sensitivity Converters / Tools
|
||||
* ⭐ **[Aim400kg](https://aim400kg.com/)**, [3D Aim Trainer](https://www.3daimtrainer.com/), [Aimlabs](https://aimlabs.com/), [Aiming.Pro](https://aiming.pro/) or [AimTrainer](https://aimtrainer.io/) - Aim Training
|
||||
|
|
@ -212,13 +213,18 @@ ## ▷ Git Gud
|
|||
* [LiveSplit](https://livesplit.org/) - Customizable Speedrun Timer
|
||||
* [The Manual Project](https://vimm.net/manual), [ReplacementDocs](http://replacementdocs.com/) or [GamesDatabase](https://www.gamesdatabase.org/) - Game Manuals
|
||||
* [Sym.gg](https://sym.gg/) - FPS Game Info & Weapon Stats / [Discord](https://discord.com/invite/RVRZ3RgYNP)
|
||||
* [Balatro Wiki](https://balatrowiki.org/) - Community-Maintained Balatro Wiki / Card Database
|
||||
* [Bazaar DB](https://bazaardb.gg/) - The Bazaar Wiki / Guides / [Discord](https://discord.gg/Thcdk2epGx)
|
||||
* [/codmeta/](https://dan.valeena.dev/guides/codmeta/), [2](https://rentry.co/codmeta) - Call of Duty Loadouts / Meta
|
||||
* [Warzone Loadout](https://warzoneloadout.games/) or [WZHub](https://wzhub.gg/) - Warzone Loadouts and Builds
|
||||
* [LineupsValorant](https://lineupsvalorant.com/) - Valorant Lineups Database
|
||||
* [The Fighting Game Glossary](https://glossary.infil.net/) - Fighting Game Term Glossary
|
||||
* [The Fighting Game Glossary](https://glossary.infil.net/) - Fighting Game Term Glossary
|
||||
* [FAT Online](https://fullmeter.com/fatonline) or [SuperCombo](https://wiki.supercombo.gg/) - Fighting Game Wikis / Move Databases
|
||||
* [DustLoop](https://www.dustloop.com/) - Guides for Arc System Works' Games / [Discord](https://discord.com/invite/d9tgMZg)
|
||||
* [Melee Calculator](https://ikneedata.com/calculator.html) - Melee Frame Data Calculator
|
||||
* [Ultimate Frame Data](https://ultimateframedata.com/) - Move Database for Smash + Street Fighter
|
||||
* [FightCore](https://www.fightcore.gg/) - Super Smash Bros. Melee Frame Data
|
||||
* [Brawl Move Database](https://docs.google.com/spreadsheets/d/1_5NFTe3dvxxC6MMlsI49mnC5m7D3_y5UoGZ7mxPje1I/) - Super Smash Bros. Brawl Frame Data
|
||||
* [SF6Frames](https://sf6frames.com/) or [FighterCenter](https://fightercenter.net/) - Street Fight 6 Move Databases
|
||||
* [Wavu](https://wavu.wiki/) / [Discord](https://discord.com/invite/86UFj8GEcC), [Okizeme](https://okizeme.gg/) or [TekkenDocs](https://tekkendocs.com/) - Tekken Game Guides / Move Databases
|
||||
* [SNES Manuals](https://sites.google.com/view/snesmanuals) - SNES Game Manuals
|
||||
|
|
@ -347,6 +353,7 @@ ## ▷ DLC Unlock / DRM Bypass
|
|||
* ⭐ **[Goldberg Fork](https://github.com/Detanup01/gbe_fork)** / [Guide](https://rentry.co/goldberg_emulator) or [SmartSteamEmu](https://cs.rin.ru/forum/viewtopic.php?f=29&t=62935&sid=c6b5dadd40d56ac20a8789121bb743c5) - Offline Steam / Multiplayer Emulators
|
||||
* ⭐ **[Steam-Auto-Crack](https://github.com/SteamAutoCracks/Steam-auto-crack)** or [SteamAutoCracker](https://github.com/BigBoiCJ/SteamAutoCracker) / [GUI](https://github.com/harryeffinpotter/Steam-Autocracker-GUI/) - Auto Apply Cracks / [Guide](https://codeberg.org/fernbacher/How-To-Crack)
|
||||
* [Koalageddon](https://github.com/KA4I/Koalageddon) - DLC Unlocker for Origin, EA, Uplay & Steam
|
||||
* [CreamInstaller Revival](https://cs.rin.ru/forum/viewtopic.php?f=20&t=154539) - Steam DLC Unlocker / [GitHub](https://github.com/FroggMaster/CreamInstaller)
|
||||
* [DreamAPI](https://cs.rin.ru/forum/viewtopic.php?f=10&t=111520) - DLC Unlocker for Origin and EA
|
||||
* [Anadius](https://rentry.co/FMHYB64#anadius) - EA DLC Unlocker
|
||||
* [ScreamAPI](https://github.com/acidicoala/ScreamAPI) - Epic DLC Unlocker
|
||||
|
|
@ -590,7 +597,7 @@ ## ▷ Playstation Homebrew
|
|||
|
||||
## ▷ Xbox Homebrew
|
||||
|
||||
* 🌐 **[r/360Hacks Guide](https://redd.it/8y9jql)🌐 ** - Xbox 360 Modding Guides List
|
||||
* 🌐 **[r/360Hacks Guide](https://redd.it/8y9jql)** - Xbox 360 Modding Guides List
|
||||
* ⭐ **[Team Resurgent](https://rentry.co/FMHYB64#team-resurgent)** - Xbox Homebrew Tools
|
||||
* [r/XboxModding](https://www.reddit.com/r/XboxModding/) or [r/XboxRetailHomebrew](https://www.reddit.com/r/XboxRetailHomebrew/) - Xbox Homebrew Subreddits
|
||||
* [r/XboxHomebrew](https://www.reddit.com/r/XboxHomebrew/) - Xbox One/Series Homebrew Subreddit
|
||||
|
|
@ -642,7 +649,7 @@ # ► Minecraft Tools
|
|||
* [PixelStacker](https://taylorlove.info/pixelstacker/), [MinecraftArt](https://minecraftart.org/) or [Minecraft Pixel Art](https://minecraft-pixel-art.com/) - Import images to Minecraft Art
|
||||
* [HueBlocks](https://1280px.github.io/hueblocks/) - Minecraft Block Gradient Generator / [GitHub](https://github.com/1280px/hueblocks)
|
||||
* [Block Palettes](https://www.blockpalettes.com/) or [Block Colors](https://blockcolors.app/) / [Discord](https://discord.com/invite/hJDxqWnXnZ) - Block Color Palettes
|
||||
* [Minemev](https://minemev.com/) - Minecraft Build / Farm Schematics
|
||||
* [Minemev](https://minemev.com/, [MCBuild](https://mcbuild.org/) or [CreateMod](https://createmod.com/) - Minecraft Build / Farm Schematics
|
||||
* [Note Block Studio](https://noteblock.studio/) - Minecraft Block Composer / [Share Songs](https://noteblock.world/) / [GitHub](https://github.com/OpenNBS)
|
||||
* [MiniMessageViewer](https://webui.advntr.dev/) - Format Plugin Messages / [Discord](https://discord.com/invite/MMfhJ8F) / [GitHub](https://github.com/KyoriPowered/adventure-webui)
|
||||
* [Minecraft Timeline](https://minecraft-timeline.github.io/) - Minecraft Update History Timeline / [GitHub](https://github.com/minecraft-timeline/minecraft-timeline.github.io)
|
||||
|
|
@ -701,7 +708,7 @@ ## ▷ Mods / Data Packs
|
|||
* ↪️ **[Mod Indexes](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage/#wiki_mod_.2F_resource_pack_indexes)**
|
||||
* [Fabric](https://fabricmc.net/) / [Discord](https://discord.gg/VDGnGsFeuy) / [GitHub](https://github.com/FabricMC), [NeoForged](https://neoforged.net/) / [X](https://x.com/NeoForged_MC) / [Discord](https://discord.com/invite/UuM6bmAjXh) / [GitHub](https://github.com/neoforged), [Forge](https://files.minecraftforge.net/) / [Discord](https://discord.com/invite/UuM6bmAjXh) / [GitHub](https://github.com/MinecraftForge/MinecraftForge), [Quilt](https://quiltmc.org/) / [Discord](https://discord.com/invite/M7GpuyTBvy) / [GitHub](https://github.com/QuiltMC) - Mod Loaders
|
||||
* [ViaFabricPlus](https://modrinth.com/mod/viafabricplus), [2](https://www.curseforge.com/minecraft/mc-mods/viafabricplus) - Fabric Mod for Joining All Versions / [Discord](https://discord.com/invite/viaversion) / [GitHub](https://github.com/ViaVersion/ViaFabricPlus?tab=readme-ov-file)
|
||||
* [WorldEdit](https://enginehub.org/worldedit), [Toolchest](https://bedrocktoolchest.com/) (bedrock) or [Axiom](https://modrinth.com/mod/axiom), [2](https://axiom.moulberry.com/) / [GitHub](https://discord.com/invite/axiomtool) - Building Tools / World Editors
|
||||
* [WorldEdit](https://enginehub.org/worldedit) / [BE](https://github.com/SIsilicon/WorldEdit-BE), [Toolchest](https://bedrocktoolchest.com/) (bedrock) or [Axiom](https://modrinth.com/mod/axiom), [2](https://axiom.moulberry.com/) / [GitHub](https://discord.com/invite/axiomtool) - Building Tools / World Editors
|
||||
* Worldedit Tools - [Docs](https://worldedit.enginehub.org/en/latest/) / [CUI](https://modrinth.com/mod/worldedit-cui) / [Discord](https://discord.gg/enginehub) / [GitHub](https://github.com/EngineHub/WorldEdit)
|
||||
* [quark](https://quarkmod.net/) - Add Vanilla-like / QoL Features / [GitHub](https://github.com/VazkiiMods/Quark)
|
||||
* [Voxy](https://modrinth.com/mod/voxy) / [GitHub](https://github.com/MCRcortex/voxy), [DistantHorizons](https://modrinth.com/mod/distanthorizons) / [Gitlab](https://gitlab.com/distant-horizons-team/distant-horizons) or [Bobby](https://modrinth.com/mod/bobby), [2](https://www.curseforge.com/minecraft/mc-mods/bobby) / [GitHub](https://github.com/Johni0702/bobby) - Lightweight Distance Rendering Mods
|
||||
|
|
@ -809,7 +816,6 @@ # ► Game Specific
|
|||
* [Palworld.gg](https://palworld.gg/), [PalworldTrainer.com](https://palworldtrainer.com/) or [Paldb.cc](https://paldb.cc/) - Palworld Databases
|
||||
* [Braytech](https://bray.tech/) - Destiny 2 Stats
|
||||
* [Rust Clash](https://wiki.rustclash.com/) - Rust Info / Tools
|
||||
* [Balatro Wiki](https://balatrowiki.org/) - Community-Maintained Balatro Wiki / Card Database
|
||||
* [UltraRumble](https://ultrarumble.com/) - My Hero Ultra Rumble Info Database
|
||||
* [totk.wism.fr](https://totk.wism.fr/) - Zelda TOTK AutoBuild QR Codes
|
||||
* [Stardew.app](https://stardew.app/) - Stardew Valley Progress Tracker
|
||||
|
|
@ -820,6 +826,7 @@ # ► Game Specific
|
|||
* [FM Moneyball](https://www.fmdatalab.com/tutorials/moneyball) - Football Manager Recruitment Tool / [Tutorial](https://youtu.be/vBoHCH-rZMI)
|
||||
* [Asphalt Database](https://asphalt9.info/) - Asphalt Legends Unite Database / Wiki
|
||||
* [WRCsetups](https://wrcsetups.com/) - WRC Setups
|
||||
* [EWGF](https://ewgf.gg/) - Tekken 8 Character + Player Stats / [Discord](https://discord.com/invite/EUEnH99har)
|
||||
* [Collection Manager](https://github.com/Piotrekol/CollectionManager) - Osu! Collection Manager
|
||||
* [osu trainer](https://github.com/FunOrange/osu-trainer) - Osu! Trainer
|
||||
* [danser-go](https://github.com/Wieku/danser-go) - Osu! Dancing Visualizer
|
||||
|
|
@ -898,6 +905,7 @@ ## ▷ GTA Tools
|
|||
* 🌐 **[GTAAll](https://www.gtaall.com/)**, [GTAForums](https://gtaforums.com/), [GTAInside](https://gtainside.de/), [GameModding](https://gamemodding.com/), [GTAGarage](https://gtagarage.com/) or [LibertyCity](https://libertycity.net/) - GTA Mods, Walkthroughs & More
|
||||
* 🌐 **[GTA5-Mods](https://www.gta5-mods.com/)** - GTAV Mods
|
||||
* 🌐 **[MixMods](https://www.mixmods.com.br/)** - GTASA Mods
|
||||
* 🌐 **[cheeseburger's GTA Mods](https://cheeseburgersmod.blogspot.com/)** - GTA Mobile Mods
|
||||
* ⭐ **[San Andreas: Multiplayer](https://www.sa-mp.mp/)** / [Discord](https://discord.com/invite/samp) or [Multi Theft Auto](https://multitheftauto.com/) / [GitHub](https://github.com/multitheftauto/mtasa-blue) - Multiplayer GTA:SA
|
||||
* ⭐ **[CLEO](https://cleo.li/)** - Extensible Library Plugin for GTA III, VC & SA / [Discord](https://discord.com/invite/d5dZSfgBZr)
|
||||
* ⭐ **[SilentPatch](https://cookieplmonster.github.io/mods/gta/)** - Quality of Life Fixes for GTA III, VC & SA
|
||||
|
|
@ -986,7 +994,7 @@ ## ▷ Roblox Tools
|
|||
* [Better Discovery](https://www.roblox.com/games/15317947079/) - Game Discovery
|
||||
* [RBXServers](https://rbxservers.xyz/) - Roblox VIP Servers
|
||||
* [RobloxDen](https://robloxden.com/) or [Rocodes](https://rocodes.gg/) - Track Roblox Promo Codes
|
||||
* [Roblox Web APIs](https://github.com/matthewdean/roblox-web-apis) or [Sixteensrc](https://apidocs.sixteensrc.zip/)- Roblox APIs
|
||||
* [Roblox Web APIs](https://github.com/matthewdean/roblox-web-apis) - Roblox APIs
|
||||
* [Dripzels](https://dripzels.com/) or [ingame.clothing](https://ingame.clothing/) - Preview Avatar Clothing
|
||||
|
||||
***
|
||||
|
|
@ -1079,7 +1087,7 @@ ## ▷ RPG Worldbuilding
|
|||
|
||||
* ↪️ **[Writing Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/text-tools#wiki_.25B7_writing_tools)** - Writing Tools / Story Managers
|
||||
* ⭐ **[Kanka](https://kanka.io/)**, [World Anvil](https://www.worldanvil.com/), [RPTools](https://www.rptools.net/), [Scabard](https://www.scabard.com/), [Adventurer's Codex](https://adventurerscodex.com) or [Fantasia Archive](https://fantasiaarchive.com/) - RPG Campaign Managers / Worldbuilding Suites
|
||||
* ⭐ **[Chaotic Shiny](http://chaoticshiny.com/)**, [Seventh Sanctum](https://www.seventhsanctum.com/), [Notebook.ai](https://www.notebook.ai/), [Fantasy Name Generators](https://www.fantasynamegenerators.com/) or [Eigengrau's Generator](https://eigengrausgenerator.com/) - RPG / Fantasy Story Writing Tools
|
||||
* ⭐ **[Chaotic Shiny](http://chaoticshiny.com/)**, [Chartopia](https://chartopia.d12dev.com/), [Seventh Sanctum](https://www.seventhsanctum.com/), [Notebook.ai](https://www.notebook.ai/), [Fantasy Name Generators](https://www.fantasynamegenerators.com/) or [Eigengrau's Generator](https://eigengrausgenerator.com/) - RPG / Fantasy Story Writing Tools
|
||||
* ⭐ **[donjon](https://donjon.bin.sh/)** or [Azgaar](https://azgaar.github.io/Fantasy-Map-Generator/) - Procedural RPG / Fantasy Map Generators
|
||||
* [watabou](https://watabou.itch.io/) - Generators for Fantasy Worlds, Dungeons, and More
|
||||
* [Inkwell Ideas](https://inkwellideas.com/) - RPG Software & Accessories
|
||||
|
|
|
|||
|
|
@ -18,7 +18,7 @@ # ► Download Games
|
|||
* ⭐ **[SteamRIP](https://steamrip.com/)** - Download / Pre-Installed / [Subreddit](https://www.reddit.com/r/SteamRip/) / [Discord](https://discord.gg/NBVFJsmy9y)
|
||||
* ⭐ **[AstralGames](https://astral-games.xyz/)** - Download / Achievements / Pre-Installed / [Discord](https://discord.gg/38bRNmKB4v)
|
||||
* ⭐ **[GOG Games](https://gog-games.to/)** - Download / Torrent / GOG Games Only / [.onion](http://goggamespyi7b6ybpnpnlwhb4md6owgbijfsuj6z5hesqt3yfyz42rad.onion/)
|
||||
* ⭐ **[UnionCrax](https://union-crax.xyz/)** - Download / Pre-Installed / [Status](https://status.union-crax.xyz/) / [Launcher](https://union-crax.xyz/direct) / [Discord](https://discord.com/invite/dkKxZGjyF8)
|
||||
* ⭐ **[UnionCrax](https://union-crax.xyz/)**, [2](https://note-tool.study/) - Download / Pre-Installed / [Status](https://status.union-crax.xyz/) / [Launcher](https://union-crax.xyz/direct) / [Discord](https://discord.com/invite/dkKxZGjyF8)
|
||||
* ⭐ **[Online Fix](https://online-fix.me/)** - Download / Torrent / Multiplayer / Requires Sign-Up / PW: `online-fix.me` / Use [Translator](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/text-tools/#wiki_.25B7_translators) / [Telegram](https://t.me/onlinefix) / [Discord](https://discord.gg/yExgFYncMD)
|
||||
* ⭐ **[SteamUnderground](https://steamunderground.net/)** - Download / Pre-Installed / [Discord](https://discord.gg/hxdv7eJ5Yt)
|
||||
* ⭐ **[Ova Games](https://www.ovagames.com/)** - Download / PW: `www.ovagames.com` / [Requires Redirect Bypass](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/internet-tools#wiki_.25B7_redirect_bypass)
|
||||
|
|
@ -28,9 +28,10 @@ # ► Download Games
|
|||
* [GLoad](https://gload.to/) - Download / Use [Translator](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/text-tools/#wiki_.25B7_translators)
|
||||
* [GameBounty](https://gamebounty.world/) - Download / [Discord](https://discord.gg/dmjUJ4xCEV)
|
||||
* [scene cat](https://rentry.co/FMHYB64#scene-cat) - Download / [Discord](https://discord.gg/wXdNEhf73x)
|
||||
* [Fluxy Repacks](https://fluxyrepacks.xyz/) - Download / [Discord](https://discord.gg/TBs8Te5nwn) / [Note](https://github.com/fmhy/edit/blob/main/docs/.vitepress/notes/fluxy-repacks.md)
|
||||
* [Fluxy Repacks](https://fluxyrepacks.xyz/) - Download / [Discord](https://discord.gg/TBs8Te5nwn) / [Note](https://github.com/fmhy/edit/blob/main/docs/.vitepress/notes/fluxy-repacks.md)
|
||||
* [appnetica](https://appnetica.com/) - Torrent / Pre-Installed / Use [Translator](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/text-tools/#wiki_.25B7_translators) / [Telegram](https://t.me/appnetica_info)
|
||||
* [AtopGames](https://atopgames.com/) - Download / Pre-Installed / [Discord](https://discord.gg/KSG9Tg2s7b)
|
||||
* [Cracked-Games](https://cracked-games.org/) - Download / [Discord](https://discord.com/invite/cgames)
|
||||
* [ElEnemigos](https://elenemigos.com/) - Download / PW: `elenemigos.com` / Use [Translator](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/text-tools/#wiki_.25B7_translators) / [Telegram](https://t.me/ElEnemigos) / [Discord](https://discord.com/invite/juegos)
|
||||
* [Rexa Games](https://rexagames.com/) - Download / Pre-Installed / Use Adblock / [Discord](https://discord.gg/6KWStFYSTj)
|
||||
* [SteamOra](https://steamora.net/) - Download / Pre-Installed / [Discord](https://discord.gg/2bRYgFS8Rj)
|
||||
|
|
@ -53,10 +54,10 @@ ## ▷ Game Repacks
|
|||
|
||||
***
|
||||
|
||||
* ⭐ **[FitGirl Repacks](https://fitgirl-repacks.site/)** - Download / Torrent / ROM Repacks / [Unofficial Launcher](https://github.com/CarrotRub/Fit-Launcher/)
|
||||
* ⭐ **[KaOsKrew](https://kaoskrew.org/)** - Download / Torrent / [Discord](https://discord.com/invite/WF2pqPTFBs)
|
||||
* ⭐ **[ARMGDDN Browser](https://github.com/KaladinDMP/AGBrowser)**, [2](https://cs.rin.ru/forum/viewtopic.php?f=14&t=140593) - Download / Avoid Software / [Telegram](https://t.me/ARMGDDNGames) / [Discord](https://discord.gg/abeChzCy8X)
|
||||
* ⭐ **[Gnarly Repacks](https://rentry.co/FMHYB64#gnarly)** - Download / PW: `gnarly`
|
||||
* ⭐ **[FitGirl Repacks](https://fitgirl-repacks.site/)** - Download / Torrent / ROM Repacks / [Unofficial Launcher](https://github.com/CarrotRub/Fit-Launcher/)
|
||||
* [ScOOt3r Repacks](https://discord.gg/xe3Fys8Upy) - Download / Torrent / [Discord](https://discord.com/invite/WF2pqPTFBs)
|
||||
* [M4CKD0GE Repacks](https://m4ckd0ge-repacks.site/) - Download / [Discord](https://discord.gg/693hNBdymb)
|
||||
* [Dyren Repacks](https://rentry.co/FMHYB64#dyren) - Download / Torrent / [Discord](https://discord.com/invite/kw36u9cxd3)
|
||||
|
|
@ -101,7 +102,7 @@ # ► Special Interest
|
|||
* [GamesOnPDF](https://github.com/rarelygoeshere/GamesOnPDF) - PDF Games
|
||||
* [PyGames](https://www.pygame.org/) - Python Games / [Discord](https://discord.gg/uEKeRSqr2Y) / [GitHub](https://github.com/pygame/pygame)
|
||||
* [Flashtro](https://flashtro.com/) - Cracker Intros
|
||||
* [Redump Forum](http://forum.redump.org/) - Disc Preservation Project
|
||||
* [Redump Forum](http://forum.redump.org/) - Disc Preservation Info Project
|
||||
|
||||
***
|
||||
|
||||
|
|
@ -133,13 +134,13 @@ ## ▷ Abandonware / Retro
|
|||
* ⭐ **[CollectionChamber](https://collectionchamber.blogspot.com/)** - Abandonware
|
||||
* ⭐ **[LegendsWorld](https://www.legendsworld.net/)** - Retro PC Adventures
|
||||
* ⭐ **[RAZE](https://github.com/ZDoom/Raze)** / [Discord](https://discord.com/invite/zdoom-edge-raze-official-268086704961748992) or [BuildGDX](https://m210.duke4.net/) / [Discord](https://discord.gg/zZw2eq3n7G) - Oldschool Shooter Engines
|
||||
* [C.A.G.E](https://discord.gg/cage) - Abandonware / Requires Discord
|
||||
* [File Hunter](https://www.file-hunter.com/) - MSX Games
|
||||
* [Old-Games](https://www.old-games.ru/) - Abandonware
|
||||
* [Japanese PC Compendium](https://japanesepccompendium.blogspot.com/) - Retro Japanese PC Games
|
||||
* [OldGamesDownload](https://oldgamesdownload.com/) - Abandonware
|
||||
* [ClassicPCGames](https://archive.org/details/classicpcgames) - Abandonware
|
||||
* [Magipack](https://rentry.co/FMHYB64#magipack) - Abandonware
|
||||
* [C.A.G.E](https://discord.gg/cage) - Abandonware / Requires Discord
|
||||
* [GiochiAbandonware](https://giochiabandonware.com/) - Abandonware / Use [Translator](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/text-tools/#wiki_.25B7_translators)
|
||||
* [Old-Games.com](https://www.old-games.com/) - Abandonware / 2 Daily Downloads
|
||||
* [Win7Games](https://win7games.com/) - Classic Windows Games
|
||||
|
|
@ -304,9 +305,9 @@ ## ▷ ROM Sites
|
|||
|
||||
* 🌐 **[ROM Sites Wiki](https://emulation.gametechwiki.com/index.php/ROM_%26_ISO_Sites)** - List of ROM Download Sites
|
||||
* 🌐 **[r/ROMs Mega](https://r-roms.github.io/)** - ROMs
|
||||
* ⭐ **[Myrient](https://rentry.co/FMHYB64#myrient)** - ROMs / [Telegram](https://t.me/s/myrient) / [Discord](https://discord.gg/4kVP9AuQ24)
|
||||
* ⭐ **[Myrient](https://rentry.co/FMHYB64#myrient)** - ROMs / [Archive Project](https://myrient.org/), [2](https://minerva-archive.org/) / [Telegram](https://t.me/s/myrient) / [Discord](https://discord.gg/4kVP9AuQ24)
|
||||
* ⭐ **[Axekin](https://www.axekin.com/)** - ROMs / [Discord](https://discord.gg/CUpf57y5Vg)
|
||||
* ⭐ **[Vimms Lair](https://vimm.net/)** - ROMs / [Discord](https://discord.com/invite/XReX2ZGNcV)
|
||||
* ⭐ **[Vimm's Lair](https://vimm.net/)** - ROMs / [Discord](https://discord.com/invite/XReX2ZGNcV)
|
||||
* ⭐ **[No-Intro](https://rentry.co/FMHYB64#no-intro)** - ROMs / [Discord](https://discord.gg/dvk6W6vZmp)
|
||||
* ⭐ **[ROM Heaven](https://romheaven.com/)** - ROMs
|
||||
* ⭐ **[Ziperto](https://ziperto.com/)** - ROMs
|
||||
|
|
@ -472,10 +473,12 @@ # ► Puzzle Games
|
|||
* [Rockbasher](https://www.rockbasher.com/) - Retro Style Puzzle Game
|
||||
* [Queens Game](https://queensgame.io/) - N-Queens Problem Inspired Puzzle
|
||||
* [Orion](https://orion.lukasbach.com/) - Puzzle Game
|
||||
* [Cyadonia](https://cyadonia.com/) - Puzzle Game
|
||||
* [Euclidea](https://www.euclidea.xyz/) - Geometric Puzzles
|
||||
* [Pixel Puzzler](https://pixel-puzzler.playcurious.games/) or [UnFlip](https://unflipgame.com/) / [Discord](https://discord.com/invite/Hg6zVmTJeP) - Block Puzzles
|
||||
* [Sudoku XV](https://keeri.place/sudoku-xv) - Sudoku
|
||||
* [UsDoku](https://www.usdoku.com/) - Multiplayer Sudoku
|
||||
* [Penpa+](https://swaroopg92.github.io/penpa-edit/) - Create / Solve Pencil Sudokus + Puzzles
|
||||
* [picture dots](https://www.picturedots.com/) - Make & Play Dot Puzzles
|
||||
* [Oh, My Dots!](https://www.ohmydots.com/) - Connect the Dots Game
|
||||
* [BreakLock](https://maxwellito.github.io/breaklock/) - Pattern Lock Game / [GitHub](https://github.com/maxwellito/breaklock)
|
||||
|
|
@ -524,7 +527,8 @@ ## ▷ Crosswords
|
|||
|
||||
## ▷ Word Games
|
||||
|
||||
* 🌐 **[Wordleverse](https://wordleverse.net/)**, [DLES](https://dles.aukspot.com/), [WordleWeb](https://github.com/rarelygoeshere/WordleWeb), [Wordle Collection](https://rentry.org/v72n74fu), [Awesome Wordle](https://github.com/prakhar897/awesome-wordle), [Alldle](https://alldle.net/) or [Wordles of the World](https://rwmpelstilzchen.gitlab.io/wordles/) - Wordle Game Indexes
|
||||
* 🌐 **[DLES.gg](https://dles.gg/)** or [DLES](https://dles.aukspot.com/) - Word Game Indexes
|
||||
* 🌐 **[Wordleverse](https://wordleverse.net/)**, [WordleWeb](https://github.com/rarelygoeshere/WordleWeb), [Wordle Collection](https://rentry.org/v72n74fu), [Awesome Wordle](https://github.com/prakhar897/awesome-wordle), [Alldle](https://alldle.net/) or [Wordles of the World](https://rwmpelstilzchen.gitlab.io/wordles/) - Wordle Game Indexes
|
||||
* ⭐ **[Wordle](https://www.nytimes.com/games/wordle/index.html)** - Original Wordle
|
||||
* ⭐ **[Wordle Analyzer](https://wordle-analyzer.com/)** / [GitHub](https://github.com/jakearchibald/wordle-analyzer/)
|
||||
* ⭐ **[Woogles](https://woogles.io/)**, [MoreWords](https://www.morewords.com/), [PlayScrabble](https://playscrabble.com/) or [WordHub](https://wordhub.com/) - Scrabble
|
||||
|
|
@ -538,7 +542,8 @@ ## ▷ Word Games
|
|||
* [JKLM.FUN](https://jklm.fun/) - Multiplayer Word Games
|
||||
* [eWordChallenge](https://www.ewordchallenge.net/) - Boggle Online
|
||||
* [Squaredle](https://squaredle.app/) - Daily Word Puzzle
|
||||
* [Glyph](https://glyph.today/) - Daily Word Puzzle
|
||||
* [Glyph](https://glyph.today/) - Daily Word Puzzle
|
||||
* [OneLook Games](https://onelook.com/games) - Word Games
|
||||
* [Linxicon](https://linxicon.com/) or [word.golf](https://www.word.golf/) - Word Connection Games
|
||||
* [Wordle VS](https://wordlevs.com/) - Multiplayer Wordle
|
||||
* [Infinite Wordle](https://gregcameron.com/infinite-wordle/) or [Wordle Unlimited](https://wordleunlimited.org/) - Wordle without Daily Limits
|
||||
|
|
@ -761,6 +766,7 @@ ## ▷ Unblocked Games
|
|||
* [Unblock KISD](https://sites.google.com/view/unblockkisd/) - Browser Games
|
||||
* [UBG365](https://ubg365.github.io/) - Browser Games
|
||||
* [US5](https://us5.thetravelingtourguide.com/) - Browser Games / [Discord](https://discord.com/invite/VDA8Ngx38Z)
|
||||
* [Ultimate Game Stash](https://rentry.co/FMHYB64#ugs) - Browser Games / HTML5
|
||||
* [Cool Math Games](https://www.coolmathgames.com/) - Educational Browser Games
|
||||
|
||||
***
|
||||
|
|
@ -1002,6 +1008,7 @@ ## ▷ Tetris
|
|||
* ⭐ **[TETR.IO](https://tetr.io/)** - Multiplayer Browser Tetris / [Plus](https://gitlab.com/UniQMG/tetrio-plus) / [Skin Database](https://you.have.fail/tetrioplus//) / [Stats](https://tsbeta.dan63.by/) / [Discord](https://discord.com/invite/tetrio) / [GitHub](https://github.com/tetrio/)
|
||||
* [Jstris](https://jstris.jezevec10.com/) - Multiplayer Browser Tetris / [Plus](https://discord.gg/mtX8ek82xb) / [Skin Database](https://docs.google.com/spreadsheets/d/1xO8DTORacMmSJAQicpJscob7WUkOVuaNH0wzkR_X194/htmlview#)
|
||||
* [Tetra eSports](https://tetraesports.com/) - Competitive Multiplayer Tetris / [Discord](https://discord.gg/6EFdcGuWKn)
|
||||
* [Notris Foes](https://notrisfoes.com/) - Multiplayer Browser Tetris / [Discord](https://discord.com/invite/qBJeAKk)
|
||||
* [Apotris](https://akouzoukos.com/apotris/play/) - Customizable Browser Tetris w/ Responsive Controls / [Multi-Platform](https://akouzoukos.com/apotris) / [Source](https://gitea.com/akouzoukos/apotris)
|
||||
* [Tetris](https://tetris.com/) - Browser Tetris
|
||||
* [LazyTetris](https://lazytetris.com/) - Browser Tetris
|
||||
|
|
|
|||
|
|
@ -153,7 +153,7 @@ ## ▷ Painting / Drawing
|
|||
* [VibePaintAI](https://vibepaint-ai-795372324720.us-west1.run.app/) - AI Painting Tool
|
||||
* [VectorPaint](https://vectorpaint.yaks.co.nz/) - Vector Editor / Painting / Web
|
||||
* [Provector](https://start.provector.app/) - Vector Editor / Web / [GitHub](https://github.com/diaoliu/provector)
|
||||
* [Graphite](https://graphite.rs/) - Vector Editor / Web / [GitHub](https://github.com/GraphiteEditor/Graphite)
|
||||
* [Graphite](https://graphite.art) - Vector Editor / Web / [Subreddit](https://www.reddit.com/r/graphite/) / [Discord](https://discord.com/invite/uMjBz5N68W) [GitHub](https://github.com/GraphiteEditor/Graphite)
|
||||
* [Vectorpea](https://www.vectorpea.com/) - Vector Editor / Web
|
||||
* [Tilda](https://tilda.cc/lp/vector/) - Vector Editor / Web
|
||||
* [HeavyPaint](https://www.heavypaint.com/) - Water Color Painting / Android, iOS, Web
|
||||
|
|
@ -382,7 +382,7 @@ # ► Download Images
|
|||
* [Dezoomify](https://dezoomify.ophir.dev/) - Download Zoomable Images
|
||||
* [OpenMoji](https://openmoji.org/) or [JoyPixels](https://www.joypixels.com/) - Emojis
|
||||
* [PixelJoint](https://pixeljoint.com/), [Lospec](https://lospec.com/) or [rsrcs](https://rentry.co/rsrcs) - Download / Share Pixel Art
|
||||
* [shot.cafe](https://shot.cafe/), [FanCaps](https://fancaps.net/) or [Film Grab](https://film-grab.com/) - Media Screenshots
|
||||
* [shot.cafe](https://shot.cafe/), [StillsLab](https://stillslab.com/), [FanCaps](https://fancaps.net/) or [Film Grab](https://film-grab.com/) - Media Screenshots / Stills
|
||||
* [Free Classic Image](https://freeclassicimages.com/) - Vintage / Retro Image Collection / Some NSFW
|
||||
* [Footyrenders](https://www.footyrenders.com/) - Football Related Images
|
||||
* [PSDGraphics](https://www.psdgraphics.com/) - PSD Files
|
||||
|
|
@ -477,7 +477,7 @@ ## ▷ Art / Illustrations
|
|||
* [Zerochan](https://www.zerochan.net/) - Japanese Fanart / [Discord](https://discord.gg/HkGgX6Qs3N)
|
||||
* [PidgiWiki](https://www.pidgi.net/) - Video Game PNGs / [Discord](https://discord.gg/Eg9QahqpXf)
|
||||
* [Safebooru](https://safebooru.org/) or [TBIB](https://tbib.org/) - Image Boorus
|
||||
* [icons8](https://icons8.com/illustrations), [LostGeometry](https://lostgeometry.craftwork.design/), [3D Illustrations](https://3d.khagwal.com/) s- 3D Illustrations
|
||||
* [icons8](https://icons8.com/illustrations), [LostGeometry](https://lostgeometry.craftwork.design/), [3D Illustrations](https://3d.khagwal.com/) - 3D Illustrations
|
||||
* [StorySet](https://storyset.com/), [unDraw](https://undraw.co/illustrations), [blush](https://blush.design/) or [Humaaans](https://www.humaaans.com/) - Customizable Illustrations
|
||||
* [Pastel](https://usepastel.com/marker-illustrations) - Marker Illustrations
|
||||
* [Fresh Folk](https://fresh-folk.com/) or [lukaszadam](https://lukaszadam.com/illustrations) - Illustrations of People
|
||||
|
|
@ -560,6 +560,7 @@ ## ▷ 3D Modeling Apps
|
|||
* [Meshy.ai](https://www.meshy.ai/) / [Discord](https://discord.com/invite/KgD5yVM9Y4), [Tripo Studio](https://studio.tripo3d.ai/) (temp mail) or [TRELLIS](https://trellis3d.github.io/) / [GitHub](https://github.com/microsoft/TRELLIS) / [HuggingFace](https://huggingface.co/spaces/JeffreyXiang/TRELLIS) - AI 3D Model Generators
|
||||
* [VFXmed](https://www.vfxmed.com/) - Blender Addons
|
||||
* [Wings 3D](https://www.wings3d.com/) - Cross-Platform 3D Modeling App
|
||||
* [Bforartists](https://www.bforartists.de/) - Cross-Platform 3D Modeling App / [Discord](https://discord.com/invite/yKuR77v) / [GitHub](https://github.com/Bforartists/Bforartists)
|
||||
* [JustSketchMe](https://justsketch.me/) - Cross-Platform 3D Pose Reference Tool
|
||||
* [MakeHuman](https://static.makehumancommunity.org/) - 3D Humanoid Modeler
|
||||
* [PoseMy.art](https://app.posemy.art/), [SetPose](https://setpose.com/), [DesignDoll](https://terawell.net/en/index.php), [Magic Poser](https://magicposer.com/), [Quickposes](https://quickposes.com/en) or [JustSketchMe](https://app.justsketch.me/) - Posing Tools
|
||||
|
|
|
|||
|
|
@ -7,7 +7,7 @@
|
|||
# ► Internet Tools
|
||||
|
||||
* ↪️ **[Web Privacy Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/adblock-vpn-privacy#wiki_.25BA_web_privacy)**
|
||||
* [WebCatalog](https://webcatalog.io/) (signup) or [Pake](https://github.com/tw93/Pake) - Turn Webpages into Desktop Apps
|
||||
* [Pake](https://github.com/tw93/Pake) - Turn Webpages into Desktop Apps
|
||||
* [deploy-your-own-saas](https://github.com/Atarity/deploy-your-own-saas) - Self-Hosted Cloud Services
|
||||
* [Namechk](https://namechk.com/), [User Scanner](https://github.com/kaifcodec/user-scanner/) or [IUS](https://instantusername.com/) - Check Username Availability
|
||||
* [UsernameGenerator](https://usernamegenerator.com/) - Username Generator
|
||||
|
|
@ -58,7 +58,7 @@ ## ▷ Paywall Bypass
|
|||
|
||||
* ⭐ **[Bypass Paywalls Clean](https://gitflic.ru/project/magnolia1234/bpc_uploads)** - Browser Extensions / [X](https://x.com/Magnolia1234B)
|
||||
* ⭐ **[Freedium](https://freedium-mirror.cfd/)**, [ReadMedium](https://readmedium.com/) or [Medium Parser](https://github.com/Xatta-Trone/medium-parser-extension) - Bypass Medium Paywalls
|
||||
* ⭐ **[wallabag](https://wallabag.org/)** or [Ladder](https://github.com/everywall/ladder) - Self-Hosted
|
||||
* ⭐ **[wallabag](https://wallabag.org/)** / [Instances](https://github.com/wallabag/wallabag/wiki/wallabag-ecosystem#list-of-public-instances-open-for-registration) / [Resources](https://github.com/wallabag/wallabag/wiki/wallabag-ecosystem) or [Ladder](https://github.com/everywall/ladder) - Self-Hosted
|
||||
* [PaywallBuster](https://paywallbuster.com/) - Paywall Bypass Tool
|
||||
* [ByeByePaywall](https://byebyepaywall.com/en/) - Paywall Bypass Tool
|
||||
* [PressReleased](https://pressreleased.alwaysdata.net/) - Paywall Bypass Tool / [Discord](https://discord.gg/fn33a5mq8w)
|
||||
|
|
@ -335,9 +335,10 @@ ## ▷ Redirect Bypass
|
|||
|
||||
* ⭐ **[Bypass All Shortlinks Debloated](https://codeberg.org/gongchandang49/bypass-all-shortlinks-debloated)** - Bypass Link Shorteners
|
||||
* ⭐ **[Bypass.vip](https://bypass.vip/)** - Ad Links Bypasser / [Userscript](https://github.com/bypass-vip/userscript/raw/refs/heads/main/bypass-vip.user.js) / [Discord](https://bypass.vip/discord)
|
||||
* [Evade](https://skipped.lol/evade/evade.user.js) - Ad-Links Bypasser / [Site](https://skipped.lol/) / [Discord](https://discord.gg/aaw9jmw4BC)
|
||||
* [Zen Bypass](https://izen.lol/) - Ad Links Bypasser / [Telegram](https://t.me/izenlol) / [Discord](https://discord.com/invite/ua7SCUAg3A)
|
||||
* [RIP Linkvertise](https://rip.linkvertise.lol/) - Ad-Links Bypasser / [Userscript](https://trw.lat/install/userscript/u.user.js) / [Discord](https://discord.gg/5tVkG8eMg)
|
||||
* [Evade](https://skipped.lol/evade/evade.user.js) - Ad-Links Bypasser / [Site](https://skipped.lol/) / [Discord](https://discord.gg/aaw9jmw4BC)
|
||||
* [bypass.tools](https://bypass.tools/) - Ad-Links Bypasser / [Discord](https://discord.gg/NSCEvtCCwF)
|
||||
* [bypass.link](https://bypass.link/) - Bypass Link Shorteners
|
||||
* [TimerHooker](https://greasyfork.org/en/scripts/372673) - Skip Timers on File Hosts
|
||||
* [bypass.city](https://bypass.city/), [2](https://adbypass.org/) - Bypass Link Shorteners / [Userscript](https://bypass.city/how-to-install-userscript) / [Discord](https://discord.gg/bypass-city)
|
||||
|
|
@ -403,7 +404,6 @@ ## ▷ Down Site Checkers
|
|||
* ⭐ **[Downdetector](https://downdetector.com/)**
|
||||
* [Is The Service Down?](https://istheservicedown.com/)
|
||||
* [Is It Down Right Now](https://www.isitdownrightnow.com/)
|
||||
* [websitedown.info](https://www.websitedown.info/)
|
||||
* [Dead Link Checker](https://www.deadlinkchecker.com/)
|
||||
* [Online Broken Link Checker](https://brokenlinkcheck.com/broken-links.php)
|
||||
* [Dr. Link Check](https://www.drlinkcheck.com/)
|
||||
|
|
@ -457,7 +457,7 @@ ## ▷ Temp Mail
|
|||
* ⭐ **[Mail.tm](https://mail.tm/)** or [Mail.gw](https://mail.gw/) - Forever / 7 Days / 1 Domain
|
||||
* ⭐ **[temp-mail.org](https://temp-mail.org/)** - Forever / 2 Hours / N/A / [Telegram Bot](https://t.me/TempMail_org_bot)
|
||||
* ⭐ **[temp-mail.io](https://temp-mail.io/)** - 1 Day / 1 Day / 12 Domains
|
||||
* [EduMail](https://edumailfree.com/), [Zenvex](https://zenvex.dev/) / [2](https://www.temporam.com/) / [3](https://tempsmail.org/) / [4](https://tempmail.pw) / [5](https://www.emailgenerator.org/) / [6](https://edumail.su/), [Tempumail](https://tempumail.com/edu-mail-generator) or [etempmail](https://eTempMail.com/) - .Edu Addresses
|
||||
* [EduMail](https://edumailfree.com/), [Zenvex](https://zenvex.dev/) / [2](https://www.temporam.com/) / [3](https://tempsmail.org/) / [4](https://tempmail.pw) / [5](https://www.emailgenerator.org/) / [6](https://edumail.su/), [Tempumail](https://tempumail.com/edu-mail-generator), [GetEduMail](https://getedumail.com/) or [etempmail](https://eTempMail.com/) - .Edu Addresses
|
||||
* [Guerrilla Mail](https://www.guerrillamail.com/) - Forever / 1 Hour / 11 Domains / [SharkLasers](https://www.sharklasers.com/)
|
||||
* [Bloody Vikings!](https://addons.mozilla.org/en-US/firefox/addon/bloody-vikings/) - Temp Email Extension
|
||||
* [Tmail.io](https://tmail.io/) - Gmail / Forever / 1 Day / 4 Domains
|
||||
|
|
@ -470,7 +470,6 @@ ## ▷ Temp Mail
|
|||
* [Vortex Email](https://vortex.skyfall.dev/) - Forever / 9 Domains / [GitHub](https://github.com/SkyfallWasTaken/vortex.email)
|
||||
* [MailTicking](https://www.mailticking.com/) - Gmail / 2 Domains
|
||||
* [YOPmail](https://yopmail.com/email-generator) - Forever / 8 Days / 100+ Domains
|
||||
* [TempMail.Plus](https://tempmail.plus/en/) - Forever / 7 Days / 9 Domains / [.onion](http://tempmail4gi5qfqzjs2bxo3wf6eurpelxmior6ohzq5vw7aeay67wiyd.onion/)
|
||||
* [Temporary-Mail](https://temporary-mail.net/) - Forever / 11 Domains
|
||||
* [48hr.email](https://48hr.email/) - Forever / 2 Days / 7 Domains
|
||||
* [NiceMail](https://nicemail.cc/) - Forever / 1 Day / 3 Domains
|
||||
|
|
@ -481,7 +480,6 @@ ## ▷ Temp Mail
|
|||
* [cs.email](https://cs.email/) - Forever / 1 Hour / 12 Domains
|
||||
* [Email Generator](https://generator.email/), [Fake Email](https://email-fake.com/) or [TempM](https://tempm.com/) - 50+ Domains
|
||||
* [DisposableMail](https://www.disposablemail.com/) or [FakeMail](https://www.fakemail.net/) - 14 Days / 14 Days / 1 Domain
|
||||
* [FEX+](https://fex.plus/) - 7 Days / 7 Days / 5 Domains
|
||||
* [AdGuard Temp Mail](https://adguard.com/adguard-temp-mail/overview.html) - 7 Days / 1 Day / 1 Domain
|
||||
* [Tempmailo](https://tempmailo.com/) - 2 Days / 2 Days / N/A
|
||||
* [Xeramail](https://xeramail.com/) - 1 Day / 1 Day / 2 Domains
|
||||
|
|
@ -870,7 +868,7 @@ ## ▷ Web Scraping / Crawling
|
|||
|
||||
* 🌐 **[Awesome Web Scraping](https://github.com/lorien/awesome-web-scraping)** or **[Web Scraping FYI](https://webscraping.fyi/)** - Web Scraping Tools / Resources
|
||||
* ⭐ **[Instant Data Scraper](https://chromewebstore.google.com/detail/instant-data-scraper/ofaokhiedipichpaobibbnahnkdoiiah)** - Browser Extension
|
||||
* [SpiderSuite](https://spidersuite.github.io/SSuite/) - Advanced Web Crawler / [GitHub](https://github.com/3nock/SpiderSuite)
|
||||
* [SpiderSuite](https://spidersuite.io/) - Advanced Web Crawler / [GitHub](https://github.com/3nock/SpiderSuite)
|
||||
* [Heritrix](https://heritrix.readthedocs.io/) - Internet Archive's Web Crawler / [GitHub](https://github.com/internetarchive/heritrix3)
|
||||
* [80legs](https://80legs.com/) - Cloud-Based
|
||||
* [Crawly](https://crawly.diffbot.com/) - Online Scraper
|
||||
|
|
|
|||
|
|
@ -567,6 +567,7 @@ ## ▷ Linux Themes
|
|||
# ► Mac Apps
|
||||
|
||||
* ↪️ **[Multi-Platform Readers](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/reading/#wiki_.25B7_ebook_readers)** - Ebook Reader Index
|
||||
* ↪️ **[Office Suites](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/text-tools#wiki_.25B7_office_suites)**
|
||||
* ⭐ **[gibMacOS](https://github.com/corpnewt/gibMacOS)** or [Mist](https://github.com/ninxsoft/Mist) - Download macOS
|
||||
* ⭐ **[NearDrop](https://github.com/grishka/NearDrop)** or [maestral](https://maestral.app/) - File Sharing Apps
|
||||
* ⭐ **[shottr](https://shottr.cc/)** or [Better Shot](https://www.bettershot.site/) / [GitHub](https://github.com/KartikLabhshetwar/better-shot) - Screenshot Tools
|
||||
|
|
@ -599,7 +600,7 @@ # ► Mac Apps
|
|||
* [ViennaRSS](https://www.vienna-rss.com/) - RSS Feed Reader
|
||||
* [Tachidesk-Sorayomi](https://github.com/Suwayomi/Tachidesk-Sorayomi) - Manga Reader / [Extensions](https://keiyoushi.github.io/extensions/), [2](https://discord.gg/3FbCpdKbdY), [3](https://wotaku.wiki/guides/tech/repo)
|
||||
* [Dialect](https://github.com/dialect-app/dialect) - Translator
|
||||
* [Drafts](https://getdrafts.com/), [CotEditor](https://coteditor.com/), [TextMate](https://macromates.com/), [Nebo](https://apps.apple.com/us/app/nebo-notes-pdf-annotations/id1119601770), [Strflow](https://strflow.app/), [Kyun](https://github.com/lennart-finke/kyun), [Notenik](https://notenik.app/) or [Voodoopad](https://www.voodoopad.com/) - Text Editors / Notes
|
||||
* [Drafts](https://getdrafts.com/), [CotEditor](https://coteditor.com/), [TextMate](https://macromates.com/), [Nebo](https://apps.apple.com/us/app/nebo-notes-pdf-annotations/id1119601770), [Strflow](https://strflow.app/), [NotesPlus](https://www.notesplus.com/), [Kyun](https://github.com/lennart-finke/kyun), [Notenik](https://notenik.app/) or [Voodoopad](https://www.voodoopad.com/) - Text Editors / Notes
|
||||
* [Agenda](https://agenda.com/) - Date-Focused Note Organizer / [Forum](https://agenda.community/)
|
||||
* [Taskpaper](https://www.taskpaper.com/) - Plain Text To-Do Lists
|
||||
* [BibDesk](https://bibdesk.sourceforge.io/) - Bibliography Manager
|
||||
|
|
@ -640,9 +641,8 @@ ## ▷ Software Sites
|
|||
* [nMac](https://nmac.to/)
|
||||
* [MacBB](https://macbb.org/)
|
||||
* [Antibiotic's](https://t.me/AntibioticsChannel)
|
||||
* [Mac Torrents](https://www.torrentmac.net/)
|
||||
* [MacKed](https://macked.app/)
|
||||
* [WebCatalog](https://webcatalog.io/) - Requires Sign-Up
|
||||
* [TorrentMac](https://www.torrentmac.net/) - Use Adblock
|
||||
* [Macintosh Garden](https://macintoshgarden.org/) - Oldschool Software
|
||||
* [MacintoshRepository](https://www.macintoshrepository.org/) - Oldschool Software
|
||||
* [ThriftMac](https://thriftmac.com/) - Freeware
|
||||
|
|
|
|||
49
docs/misc.md
49
docs/misc.md
|
|
@ -17,7 +17,7 @@ # ► Indexes
|
|||
* [ForumDirectory](https://www.forumdirectory.com/) - Forum Directory
|
||||
* [ooh.directory](https://ooh.directory/) - Blog Directory
|
||||
* [Dan's Guides](https://dan.valeena.dev/#my-guides) - List of Guides by Dan
|
||||
* [xRanks](https://xranks.com/), [Start.me Stats](https://start.me/sites/int), [StatCrop](https://www.statscrop.com/websites/top-sites/), [HypeStat](https://hypestat.com/), [10 Million Sites](https://www.domcop.com/top-10-million-websites) or [CuteStat](https://www.cutestat.com/) - Site Rankings
|
||||
* [xRanks](https://xranks.com/), [Start.me Stats](https://start.me/pages), [StatCrop](https://www.statscrop.com/websites/top-sites/), [HypeStat](https://hypestat.com/), [10 Million Sites](https://www.domcop.com/top-10-million-websites) or [CuteStat](https://www.cutestat.com/) - Site Rankings
|
||||
* [findPWA](https://findpwa.com/), [Store.app](https://store.app/), [SaaS Discovery](https://saasdiscovery.com/) or [Electron](https://www.electronjs.org/apps) - Web App Indexes
|
||||
* [SmartLinks](https://smartlinks.org/index.html) - Website Directory
|
||||
* [OneMillionScreenshots](https://onemillionscreenshots.com/) - Website Snapshot Map
|
||||
|
|
@ -217,14 +217,14 @@ # ► Gardening
|
|||
* 🌐 **[Awesome Agriculture](https://github.com/brycejohnston/awesome-agriculture)** - Agriculture Resources
|
||||
* 🌐 **[Agriculture / Gardening Subreddits](https://claraiscute.pages.dev/Guides/touchgrasss/)**
|
||||
* 🌐 **[Cannabis Growing Subreddits](https://www.reddit.com/r/trees/wiki/entreddits_social#wiki_growing)** or [Marijuana Subs](https://www.reddit.com/r/trees/wiki/entreddits_social) - Marijuana Subreddits
|
||||
* ⭐ **[EarthEasy](https://learn.eartheasy.com/)**, [How To Garden](https://www.bhg.com/gardening/how-to-garden/), [HappySprout](https://www.happysprout.com), [Growing Guide](https://blog.planter.garden/), [GrowStuff](https://www.growstuff.org/) or [GrowVeg](https://www.growveg.com/) - Gardening Guides
|
||||
* ⭐ **[EarthEasy](https://eartheasy.com/blogs/yard-garden)**, [How To Garden](https://www.bhg.com/gardening/how-to-garden/), [HappySprout](https://www.happysprout.com), [Growing Guide](https://blog.planter.garden/), [GrowStuff](https://www.growstuff.org/) or [GrowVeg](https://www.growveg.com/) - Gardening Guides
|
||||
* ⭐ **[r/Gardening](https://reddit.com/r/gardening)** - Gardening Community
|
||||
* ⭐ **[r/Whatsthisplant](https://www.reddit.com/r/whatsthisplant/)** - Plant Identification Community
|
||||
* [PictureThis](https://www.picturethisai.com/) or [Pl@ntNet](https://identify.plantnet.org/) - Plant Identification Tools / [Android](https://play.google.com/store/apps/details?id=cn.danatech.xingseus) / [iOS](https://apps.apple.com/us/app/picturethis-plant-identifier/id1252497129)
|
||||
* [WildFlowerSearch](https://wildflowersearch.org/) - Flower Identifier
|
||||
* [Permapeople](https://permapeople.org/) - Garden Plant Info
|
||||
* [How Many Plants](https://howmanyplants.com/) - House Plant Information
|
||||
* [Florae](https://github.com/aeri/Florae) or [Plant-it](https://plant-it.org/) / [GitHub](https://github.com/MDeLuise/plant-it) - Plant Care Reminders
|
||||
* [Florae](https://github.com/aeri/Florae) or [Plant-it](https://github.com/MDeLuise/plant-it) - Plant Care Reminders
|
||||
* [WorldOfSucculents](https://worldofsucculents.com/) - Succulent Database
|
||||
* [MyGarden](https://gitlab.com/m9712/mygarden) - Garden Management App
|
||||
* [Gardenia](https://www.gardenia.net/) or [Garden Design](https://www.gardendesign.com/) - Garden Design Resources
|
||||
|
|
@ -446,7 +446,6 @@ ## ▷ Historic Maps
|
|||
* [r/oldmaps](https://www.reddit.com/r/oldmaps/) or [r/papertowns](https://www.reddit.com/r/papertowns/) - Historical Maps Community
|
||||
* [Historical City Maps](https://redd.it/61fdp6) - Collection of Historical City Maps
|
||||
* [Library of Congress](https://www.loc.gov/collections/?fa=partof:geography+and+map+division) - LOC Historic Maps Archive
|
||||
* [Historic Borders](https://historicborders.app/) - Borders History Map
|
||||
* [American Panorama](https://dsl.richmond.edu/panorama/) - Interactive US History Maps
|
||||
* [Mused](https://mused.com/) - Text to 3D Historical Simulation Map
|
||||
* [NLS Maps](https://maps.nls.uk/) - Historical Maps of Scotland
|
||||
|
|
@ -519,7 +518,7 @@ # ► News
|
|||
* [NCS](https://www.newscaststudio.com/) - Television Broadcast Network News
|
||||
* [Web3 Is Going Great](https://www.web3isgoinggreat.com/) - Web3 Disaster News
|
||||
* [Citizen](https://citizen.com/explore) - Real Time Local News (US Only)
|
||||
* [POTUS Tracker](https://potustracker.us/), [GovData](https://www.govactionlist.com/) or [WikiPolitica](https://wikipolitica.org/) - Government Executive Orders, Location & more
|
||||
* [POTUS Tracker](https://potustracker.us/) or [GovData](https://www.govactionlist.com/) - Government Executive Orders, Location & more
|
||||
* [FlightSaftey](https://asn.flightsafety.org/), [PlaneCrashInfo](https://www.planecrashinfo.com/) or [AVHerald](https://avherald.com/) - Aviation Incidents / News
|
||||
* [Read Something Wonderful](https://readsomethingwonderful.com/), [Read Something Great](https://www.readsomethinggreat.com/) or [BoredReading](https://boredreading.com/) - Random Articles / Blog Posts
|
||||
* [Media Bias Fact Check](https://drmikecrowe.github.io/mbfcext/) or [HonestyMeter](https://www.honestymeter.com/) - Media Bias Checkers
|
||||
|
|
@ -798,7 +797,7 @@ # ► Career
|
|||
* [LeanTime](https://leantime.io/) - Project / Delivery Manager
|
||||
* [Twain](https://www.twain.ai/), [WriteCream](https://www.writecream.com/) or [Textcortext](https://textcortex.com/) - AI Communication Outreach Assistants
|
||||
* [Cody](https://meetcody.ai/) - Company Management AI
|
||||
* [PHPCRM](https://www.phpcrm.com/), [Tillywork](https://github.com/tillywork/tillywork), [Monday](https://monday.com/) or [Twenty](https://github.com/twentyhq/twenty) - Company Management Tools
|
||||
* [PHPCRM](https://www.phpcrm.com/), [Monday](https://monday.com/) or [Twenty](https://github.com/twentyhq/twenty) - Company Management Tools
|
||||
* [Invoify](https://invoify.vercel.app/) / [GitHub](https://github.com/al1abb/invoify), [EasyInvoicePDF](https://easyinvoicepdf.com) / [GitHub](https://github.com/VladSez/easy-invoice-pdf), [Invoicely](https://invoiceto.me/), [InvoiceNinja](https://invoiceninja.com/) or [Akaunting](https://akaunting.com/) - Invoicing Tools
|
||||
* [Google Patents](https://patents.google.com/) - Searchable Patents Database
|
||||
* [Layoffs.fyi](https://layoffs.fyi/) or [WarnTracker](https://www.warntracker.com/) - Live Layoffs Trackers
|
||||
|
|
@ -882,10 +881,8 @@ ## ▷ Tech Jobs
|
|||
* [Authentic Jobs](https://authenticjobs.com/) - Find Developer / Designer Jobs
|
||||
* [Dribbble](https://dribbble.com/) - Designer Jobs
|
||||
* [r/DesignJobs](https://www.reddit.com/r/DesignJobs/) - Designer Jobs Subreddit
|
||||
* [Golang Jobs](https://golangjob.xyz/) - Find Golang Jobs
|
||||
* [Best PM Jobs](https://www.bestpmjobs.com/) - Tech Firm Night Jobs
|
||||
* [JS Remotely](https://jsremotely.com/) - Find Remote JavaScript Jobs
|
||||
* [js chimp](https://jschimp.com/) - Reverse Job Board / JavaScript
|
||||
* [larajobs](https://larajobs.com/) - Find Laravel Jobs
|
||||
* [Python Job Board](https://www.python.org/jobs/) - Find Python Jobs
|
||||
* [Levels.fyi](https://www.levels.fyi/) - Tech Career Salaries
|
||||
|
|
@ -907,7 +904,6 @@ ## ▷ Startup
|
|||
* 🌐 **[Awesome Startup](https://github.com/Ibexoft/awesome-startup-tools-list)**, [Awesome Launching Platforms](https://github.com/DirectorySurf/awesome-launch-platforms), [Awesome Launch](https://github.com/soGeneri/awesome-launch) or [Tools for Startups](https://docs.google.com/spreadsheets/d/1s6-hGBh0_tqa-jd23fsdYuwbmS8UPmElPqaH-Rnoa_A/htmlview) - Startup Resources Indexes
|
||||
* 🌐 **[moreThanFAANGM](https://kaustubh-natuskar.github.io/moreThanFAANGM/)** - Good Companies / Startups Index
|
||||
* [Awesome OSS Monetization](https://github.com/PayDevs/awesome-oss-monetization/) - Monetization Approaches for OSS Projects
|
||||
* [NewIdeas](https://indieideas.io/) - Generate Business Ideas
|
||||
* [Failory](https://www.failory.com/graveyard) - Learn Why Startups Failed
|
||||
* [280+ Websites to Submit Your Startup](https://airtable.com/shrwqaak73gy83w9A/tblu5RcUft9fYp9Ju/viwFHmIyMniXzlpK4?blocks=show) or [PlacesToPostYourStartup](https://www.placestopostyourstartup.com/) - Startup Submission Sites
|
||||
* [WellFound](https://wellfound.com/) - Find Employees for Startups
|
||||
|
|
@ -940,7 +936,7 @@ ## ▷ Collaboration Platforms
|
|||
|
||||
## ▷ Finance / Savings
|
||||
|
||||
* 🌐 **[r/PersonalFinance Wiki](https://www.reddit.com/r/personalfinance/wiki/index)** or [UK Personal Finance](https://ukpersonal.finance/) - Financial Advice / Resources
|
||||
* 🌐 **[r/PersonalFinance Wiki](https://www.reddit.com/r/personalfinance/wiki/index)** / [Countries](https://www.reddit.com/r/personalfinance/wiki/country_index/) or [UK Personal Finance](https://ukpersonal.finance/) - Financial Advice / Resources
|
||||
* ⭐ **[TradingView](https://www.tradingview.com/)**, [GoCharting](https://gocharting.com/), [ticker](https://github.com/achannarasappa/ticker) or [finviz](https://finviz.com/) - Market Charting & Analysis Platforms
|
||||
* ⭐ **[StockTicker](https://github.com/premnirmal/StockTicker)** or [Candle](https://gitlab.com/cosmosapps/candle) - Mobile Market Charting & Analysis Platforms
|
||||
* ⭐ **[Ghostfolio](https://ghostfol.io/en/start)** / [Import](https://github.com/dickwolff/Export-To-Ghostfolio), [Paisa](https://paisa.fyi/) / [GitHub](https://github.com/ananthakumaran/paisa), [HomeBank](https://www.gethomebank.org/en/index.php), [Bagels](https://github.com/EnhancedJax/Bagels), [Firefly III](https://firefly-iii.org/), [Money Manager EX](https://moneymanagerex.org/) or [Actual](https://github.com/actualbudget/actual) - Finance / Expense Managers
|
||||
|
|
@ -1005,7 +1001,7 @@ # ► Shopping
|
|||
|
||||
***
|
||||
|
||||
* 🌐 **[Monerica](https://monerica.com/status/verified)** - Monero-Friendly Online Shop Index
|
||||
* 🌐 **[Monerica](https://app.monerica.com/filter?Statuses=Verified)** - Monero-Friendly Online Shop Index
|
||||
* ⭐ **[ThisIsWhyImBroke](https://www.thisiswhyimbroke.com/)** - Find Interesting Things to Buy
|
||||
* ⭐ **[Consumer Rights Wiki](https://consumerrights.wiki/)** - Documents Practices That Impact Consumer Rights / [Discord](https://discord.gg/8w5rSNAXRf)
|
||||
* ⭐ **[Dark Patterns Tip Line](https://darkpatternstipline.org/)** or [Dark Patterns](https://hallofshame.design/collection/) - Deceptive Services to Avoid
|
||||
|
|
@ -1046,7 +1042,8 @@ # ► Shopping
|
|||
* [INCIDecoder](https://incidecoder.com/) - Skincare Ingredients Search / Database
|
||||
* [Fragrantica](https://www.fragrantica.com/), [Basenotes](https://basenotes.com/) or [Parfumo](https://www.parfumo.com/) - Perfume / Fragrance Databases
|
||||
* [Models.dev](https://models.dev/) - AI Model Database / Pricing / [GitHub](https://github.com/anomalyco/models.dev)
|
||||
* [Build List](https://buildlist.org/) or [USA Parts Made Fast](https://partsmadefast.com/) - On-Demand Online Manufacturers
|
||||
* [Build List](https://buildlist.org/) or [USA Parts Made Fast](https://partsmadefast.com/) / [X](https://x.com/mattfreed) - On-Demand Online Manufacturers
|
||||
* [Boycott Buddy](https://www.boycottbuddy.app/) - Identify Brands with Unethical Practices (child labor, slave labor, etc.)
|
||||
|
||||
***
|
||||
|
||||
|
|
@ -1055,12 +1052,12 @@ ## ▷ Electronics
|
|||
* ⭐ **[PCPartPicker](https://pcpartpicker.com/)**, [BuildCores](http://www.buildcores.com/) / [Subreddit](https://reddit.com/r/buildcores) / [Discord](https://discord.gg/gxHtZx3Uxe) or [CGDirector](https://www.cgdirector.com/pc-builder/) - PC Building Sites
|
||||
* ⭐ **[r/PCMasterrace Builds](https://pcmasterrace.org/builds)**, [r/BuildaPC Wiki](https://www.reddit.com/r/buildapc/wiki/index) or [PC Tiers](https://pctiers.com/) - PC Building Guides / **[Video](https://youtu.be/s1fxZ-VWs2U)**
|
||||
* ⭐ **[NanoReview](https://nanoreview.net/)**, **[TechPowerup](https://www.techpowerup.com/)**, [TechGearLab](https://www.techgearlab.com/), [ProductChart](https://www.productchart.com/), [Octoparts](https://octopart.com/), [Technical City](https://technical.city/) or [Techspecs](https://techspecs.io/) - Tech / Hardware Comparisons
|
||||
* ⭐ **[rtings](https://www.rtings.com/)** / [X](https://x.com/rtingsdotcom) / [Discord](https://discord.gg/GFv6FyUcm7) or [LTT Labs](https://www.lttlabs.com/) - Hardware / Tech Reviews / Clear Cookies Reset Limit
|
||||
* ⭐ **[Open Benchmarking](https://openbenchmarking.org/)** - Hardware Benchmarks
|
||||
* ⭐ **[GSMArena](https://www.gsmarena.com/)** / [Guide](https://www.gsmarena.com/reviews.php3?sTag=Buyers+guide), [Prepaid Compare](https://prepaidcompare.net/), [PhoneDB](https://phonedb.net/), [GSMChoice](https://www.gsmchoice.com/en/), [Antutu](https://www.antutu.com/en/ranking/rank1.htm) or [Kimovil](https://www.kimovil.com/en/) - Compare Phones / Prices
|
||||
* ⭐ **[CPUBenchmark](https://www.cpubenchmark.net/)**, [Toms GPU Hierarchy](https://www.tomshardware.com/reviews/gpu-hierarchy) or [NoteBenchcheck](https://www.notebookcheck.net/Benchmarks-Tech.123.0.html) - GPU / CPU Benchmarks
|
||||
* ⭐ **[r/MechanicalKeyboards Wiki](https://www.reddit.com/r/MechanicalKeyboards/wiki/index)**, [KeebFinder](https://keeb-finder.com/) or [Alexotos](https://www.alexotos.com/keyboard-vendor-list/) / [Discord](https://discord.com/invite/xMQArAaGRB) - Mechanical Keyboard Recommendations
|
||||
* ⭐ **[MouseCTRL](https://mousectrl.com/)** or [Mousepad Mastersheet](https://docs.google.com/spreadsheets/d/1RAnmZxDNduaGV8kB-GCvZ0MO6d9-0j9jmrU2f8dp0Ww/) - Mousepad Comparison Chart
|
||||
* [LTT Labs](https://www.lttlabs.com/) - Hardware / Tech Reviews
|
||||
* [Privacy Not Included](https://foundation.mozilla.org/privacynotincluded/) - Product Privacy Ratings
|
||||
* [r/buildapc](https://reddit.com/r/buildapc) - PC Building Community / [Discord](https://discord.com/invite/buildapc)
|
||||
* [r/BuildAPCForMe](https://reddit.com/r/BuildAPCForMe) - PC Building Community
|
||||
|
|
@ -1070,12 +1067,12 @@ ## ▷ Electronics
|
|||
* [CPU Scout](https://www.cpuscout.com/) - eBay CPU Price Tracker
|
||||
* [WhereIsMyRam](https://whereismyram.com/) - DDR5 RAM Price Tracker
|
||||
* [NewMaxx's SSD Site](https://borecraft.com/) / [Doc](https://docs.google.com/spreadsheets/d/1B27_j9NDPU3cNlj2HKcrfpJKHkOf-Oi1DbuuQva2gT4/), [SSD Tester](https://ssd-tester.com/) or [JohnnyLucky](https://www.johnnylucky.org/data-storage/ssd-database.html) - SSD Buying Comparisons
|
||||
* [Disk Prices](https://diskprices.com/), [PricePerGig](https://pricepergig.com/) or [TerabyteDeals](https://terabytedeals.com/) - Disk Price Trackers
|
||||
* [Disk Prices](https://diskprices.com/), [PricePerGig](https://pricepergig.com/), [List of Disks](https://www.listofdisks.com/) or [TerabyteDeals](https://terabytedeals.com/) - Disk Price Trackers
|
||||
* [Jarrod's Tech](https://jarrods.tech/resources/) or [SuggestALaptop](https://discord.gg/pes68JM) / [Guide](https://docs.google.com/document/d/1_Oh9M4zrBB1hx3B0Yw32-evH4bqTmwNM5DJ12lWvA0w/) (discord) - Laptop Suggestions
|
||||
* [Laptop Wiki](https://laptopwiki.eu/) - Laptop Info Database
|
||||
* [EveryMac](https://everymac.com/) - Mac Info Database
|
||||
* [Mouse Ratings](https://www.rtings.com/mouse/reviews/best), [EloShapes](https://www.eloshapes.com/), [Sensor.fyi](https://sensor.fyi/info/), [RocketJumpNinja](https://www.rocketjumpninja.com/) or [r/MouseReview](https://www.reddit.com/r/MouseReview/) / [Discord](https://discord.gg/mousereview) - Mouse Buying Guides
|
||||
* [PSU Tier List](https://psutierlist.org/) - PSU Buying Guide / [Document](https://docs.google.com/spreadsheets/d/1akCHL7Vhzk_EhrpIGkz8zTEvYfLDcaSpZRB6Xt6JWkc/) / [Discord](https://discord.gg/qkrJy3hDa8)
|
||||
* [EloShapes](https://www.eloshapes.com/), [Sensor.fyi](https://sensor.fyi/info/), [RocketJumpNinja](https://www.rocketjumpninja.com/) or [r/MouseReview](https://www.reddit.com/r/MouseReview/) / [Discord](https://discord.gg/mousereview) - Mouse Buying Guides
|
||||
* [Cybenetics PSU Benchmarks](https://www.cybenetics.com/index.php?option=psu-performance-database) or [PSU Tier List](https://psutierlist.org/) / [Document](https://docs.google.com/spreadsheets/d/1akCHL7Vhzk_EhrpIGkz8zTEvYfLDcaSpZRB6Xt6JWkc/) / [Discord](https://discord.gg/qkrJy3hDa8) - PSU Buying Guides / Benchmarks
|
||||
* [4K TV Guide](https://www.reddit.com/r/4kTV/comments/1mxcuv7/) - 4K TV Buying Guide
|
||||
* [r/HTBuyingGuides](https://www.reddit.com/r/HTBuyingGuides/) - Home Theater Buying Guides
|
||||
* [Dolby Vision Stuff](https://docs.google.com/spreadsheets/d/15i0a84uiBtWiHZ5CXZZ7wygLFXwYOd84) - Dolby Vision (HDR) Playback Guide
|
||||
|
|
@ -1186,17 +1183,13 @@ # ► Useful Sites
|
|||
* [Label Studio](https://labelstud.io/) or [Cvat](https://www.cvat.ai/) - Data Organizing Tools
|
||||
* [colnect](https://colnect.com/en) - Manage Personal Collections
|
||||
* [Diffchecker](https://www.diffchecker.com/) - Check Differences in Text, Images, PDFs or Files
|
||||
* [Forebears](https://forebears.io/) or [BehindTheName](https://www.behindthename.com/) - Name Etymologies
|
||||
* [Acoustic Gender](https://acousticgender.space/) - Measure Voice Pitch
|
||||
* [Timeline Cascade](https://markwhen.com/) / [GitHub](https://github.com/mark-when/markwhen), [Timeline JS](https://timeline.knightlab.com/) or [Time.Graphics](https://time.graphics/) - Create Timelines
|
||||
* [Timeliner](https://timelinize.com/) - Create Personal Digital Timeline
|
||||
* [Familypedia](https://familypedia.fandom.com/), [Gramps](https://gramps-project.org/blog/), [FamilySearch](https://www.familysearch.org/) or [WikiTree](https://wikitree.com/) - Find Family Trees
|
||||
* [Family Chart](https://github.com/donatso/family-chart) or [FamilyEcho](https://www.familyecho.com/) - Create Custom Family Tree
|
||||
* [Ravelry](https://ravelry.com) - Fiber Artist Tools
|
||||
* [ThistoThat](https://www.thistothat.com/) - How to Glue Anything to Anything
|
||||
* [A Bra That Fits](https://www.abrathatfits.org/calculator.php) or [BraMetric](https://brametric.com/) - Bra Size Calculators
|
||||
* [PEmbroider](https://github.com/CreativeInquiry/PEmbroider) - Embroidery Generator
|
||||
* [FreeSewing](https://freesewing.eu/) - Free Clothing Sewing Patterns / [Forum](https://forum.freesewing.eu/)
|
||||
* [r/CurlyHair Guide](https://docs.google.com/document/d/e/2PACX-1vSvGm-p4tvrstjT-XEo6pTHZSYeEON7xF5lPSnNv-3Kc2lCrdnkjXhFbdHt4pF3HUetWZ1j9dgfBBkS/pub) - Curly Hair Haircare Guide
|
||||
* [Stolen Drone](https://stolendrone.info/) - Stolen Drone Info
|
||||
* [CacheSleuth](https://www.cachesleuth.com/) - Geocaching Tools
|
||||
|
|
@ -1255,6 +1248,7 @@ ## ▷ Productivity / Time Tracking
|
|||
* [Freeter](https://freeter.io) - Work Organizer / [GitHub](https://github.com/FreeterApp/Freeter)
|
||||
* [VisualizeHabit](https://visualizehabit.com/) - Habit Tracking
|
||||
* [Cold Turkey](https://getcoldturkey.com/) - Site Blocker / Productivity App
|
||||
* [WHPH](https://whph.ahmetcetinkaya.me/) - Productivity Tracker / [GitHub](https://github.com/ahmet-cetinkaya/whph)
|
||||
* [ScreenZen](https://screenzen.co/) - Site / App Blocker
|
||||
* [SelfControlApp](https://selfcontrolapp.com/) - Mac Site Blocker
|
||||
* [ActivityWatch](https://activitywatch.net/) - Device / App Time Tracker / [Extensions](https://github.com/ActivityWatch/aw-watcher-web)
|
||||
|
|
@ -1550,21 +1544,6 @@ ## ▷ Interesting
|
|||
* [Detective Board](https://www.detectiveboard.io/) - Make / Explore Community Detective Boards
|
||||
* [Wiby](https://www.wiby.me/) - Explore Old Sites
|
||||
* [eieio.games](https://eieio.games/) - Experimental Games / Showcases
|
||||
* [VersionMuseum](https://www.versionmuseum.com/) - Website History / Info
|
||||
* [InfoMesh](https://infomesh.org/) - Web History / Info
|
||||
* [info.cern](https://info.cern.ch/) - First Website on the Internet
|
||||
* [Museum of Obsolete Media](https://obsoletemedia.org/) - Physical Media Format Wiki / History
|
||||
* [BetaWiki](https://betawiki.net/wiki/Main_Page) - Operating System / Software History / [Discord](https://discord.com/invite/XPz5Zm42tR)
|
||||
* [Old Computer Museum](https://oldcomputers.net/) - Computer History
|
||||
* [The HP 9845 Project](https://www.hp9845.net/) - HP 9845 Computer History
|
||||
* [Folklore](https://www.folklore.org) or [TheAppleWiki](https://theapplewiki.com/) - Apple Computer History
|
||||
* [Crypto Museum](https://www.cryptomuseum.com/) - Cryptographic Machine History
|
||||
* [The Retro Web](https://theretroweb.com/) - Computer Hardware History
|
||||
* [VGA Museum](https://www.vgamuseum.info/) - Graphic Cards History
|
||||
* [Virus Encyclopedia](http://virus.wikidot.com/) - Computer Virus History
|
||||
* [MobilePhoneMuseum](https://www.mobilephonemuseum.com/) - Mobile Phone History / Info
|
||||
* [WalkmanLand](https://walkman.land/) - Walkman History / Database
|
||||
* [KilledByGoogle](https://killedbygoogle.com/), [Microsoft Graveyard](https://microsoftgraveyard.com/) or [SuedByNintendo](https://www.suedbynintendo.com/) - Dead Projects Archives
|
||||
* [Projectrho](https://www.projectrho.com/public_html/rocket/) - Fantasy Rocket Encyclopedia
|
||||
* [EnigmaLabs](https://enigmalabs.io/) or [UFO Casebook](https://www.ufocasebook.com/) - UFO Sighting Lists / Tracking
|
||||
* [BFRO](https://bfro.net/) - Bigfoot Research Site
|
||||
|
|
|
|||
|
|
@ -28,6 +28,7 @@ ## ▷ Modded APKs
|
|||
* [APKSum](https://www.apksum.com/)
|
||||
* [Android Zone](https://android-zone.ws/)
|
||||
* [AndroidRepublic](https://androidrepublic.org/)
|
||||
* [Android Oyun Club](https://androidoyun.club/)
|
||||
* [Androeed](https://androeed.store/), [2](https://androeed.ru/) / [Telegram](https://t.me/androeed_store)
|
||||
* [AndroPalace](https://www.andropalace.org/) / [Telegram](https://telegram.me/officialandropalace)
|
||||
* [9Mod](https://9mod.com/)
|
||||
|
|
@ -123,8 +124,9 @@ ## ▷ APK Tools
|
|||
* ⭐ **[App Manager](https://muntashirakon.github.io/AppManager/)** / [GitHub](https://github.com/MuntashirAkon/AppManager), [Inure](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/android#wiki_.25B7_modded_apks) (search) or [Package Manager](https://smartpack.github.io/PackageManager/) / [GitHub](https://github.com/SmartPack/PackageManager) - Package Managers
|
||||
* ⭐ **[Lucky Patcher](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/android#wiki_.25B7_modded_apks)** (search) - App Patcher
|
||||
* ⭐ **Lucky Patcher Tools** - [Guide](https://flixbox.github.io/lp-compat/docs/intro) / [Compatibility](https://flixbox.github.io/lp-compat/) / [Subreddit](https://www.reddit.com/r/luckypatcher/) / [Discord](https://discord.com/invite/RS5ddYf7mw)
|
||||
* ⭐ **[Obtainium](https://obtainium.imranr.dev/)** / [Configs](https://apps.obtainium.imranr.dev/) / [GitHub](https://github.com/ImranR98/Obtainium), [UpgradeAll](https://github.com/DUpdateSystem/UpgradeAll), [InstallerX-Revived](https://github.com/wxxsfxyzm/InstallerX-Revived/) (root) or [APKUpdater](https://github.com/rumboalla/apkupdater) - APK Installers / Updaters
|
||||
* ⭐ **[Obtainium](https://obtainium.imranr.dev/)** / [Configs](https://apps.obtainium.imranr.dev/) / [GitHub](https://github.com/ImranR98/Obtainium), [UpgradeAll](https://github.com/DUpdateSystem/UpgradeAll) or [APKUpdater](https://github.com/rumboalla/apkupdater) - APK Installers / Updaters
|
||||
* ⭐ **[AntiSplit-M](https://github.com/AbdurazaaqMohammed/AntiSplit-M)** - Merge Split APKs
|
||||
* [InstallerX-Revived](https://github.com/wxxsfxyzm/InstallerX-Revived/) - Universal Installer Replacement
|
||||
* [Direct Download From Google Play](https://greasyfork.org/en/scripts/33005-direct-download-from-google-play/) - Add Direct DL Links to Google Play
|
||||
* [GBox](https://www.gboxlab.com/) - GMS Google Box / [Telegram](https://t.me/+ZiW_7bvq8Sc5MzFl)
|
||||
* [InstallWithOptions](https://github.com/zacharee/InstallWithOptions/) - Install / Merge APKs with Extra Options
|
||||
|
|
@ -209,7 +211,7 @@ # ► Android Device
|
|||
* ↪️ **[Device Comparisons](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/misc#wiki_.25B7_electronics)**
|
||||
* ⭐ **[XDA](https://xdaforums.com/)** - Android Discussion Forum / [Discord](https://discord.com/invite/e4v8qtkcBw)
|
||||
* ⭐ **[ADB AppControl](https://adbappcontrol.com/en/)** / [GUI](https://aya.liriliri.io/), [2](https://github.com/Alex4SSB/ADB-Explorer) / [Telegram](https://t.me/AdbAppControl_En), **[scrcpy](https://github.com/Genymobile/scrcpy)** / [Mobile App](https://github.com/zwc456baby/ScrcpyForAndroid) / [Subreddit](https://www.reddit.com/r/scrcpy), **[PlainApp](https://docs.plain.icu/)** / [GitHub](https://github.com/ismartcoding/plain-docs), [WebADB](https://app.webadb.com/), [QtScrcpy](https://github.com/barry-ran/QtScrcpy) or [Octi](https://github.com/d4rken-org/octi) - Android Device Managers / Controllers
|
||||
* ⭐ **[Shizuku](https://shizuku.rikka.app/)** / [Tools](https://github.com/legendsayantan/ShizuTools) / [GitHub](https://github.com/RikkaApps/Shizuku), [Essentials](https://github.com/sameerasw/essentials), [Shizuku Fork](https://github.com/thedjchi/Shizuku) or [Dhizuku](https://github.com/iamr0s/Dhizuku) - Let Apps Use System API
|
||||
* ⭐ **[Shizuku](https://shizuku.rikka.app/)** / [Tools](https://github.com/legendsayantan/ShizuTools) / [GitHub](https://github.com/RikkaApps/Shizuku), [Shizuku Fork](https://github.com/thedjchi/Shizuku) or [Dhizuku](https://github.com/iamr0s/Dhizuku) - Let Apps Use System API
|
||||
* [Plexus](https://plexus.techlore.tech/) - De-Googled Device Compatibility / [GitHub](https://github.com/techlore/Plexus-app)
|
||||
* [GSMHosting](https://forum.gsmhosting.com/vbb/) - GSM Discussion Forum
|
||||
* [AVNC](https://github.com/gujjwal00/avnc) or [DroidVNC-NG](https://github.com/bk138/droidVNC-NG) - Remote Desktop Clients / VNC
|
||||
|
|
@ -242,7 +244,7 @@ ## ▷ Customization
|
|||
* ⭐ **[r/AndroidThemes](https://www.reddit.com/r/androidthemes/)** - Android Themes Subreddit
|
||||
* ⭐ **[Mobile Abyss](https://mobile.alphacoders.com/)** - Wallpapers
|
||||
* [RBoard](https://xdaforums.com/t/app-rboard-theme-manager.4331445/) (root) / [GitHub](https://github.com/DerTyp7214/RboardThemeManagerV3) or [ColorBlendr](https://github.com/Mahmud0808/ColorBlendr) (requires shizuku)- Theme Managers
|
||||
* [PixelXpert](https://github.com/siavash79/PixelXpert) (root) or [Dashbud](https://dashbud.dev/) / [Discord](https://discord.com/invite/78h7xgj) - Android Customization Apps
|
||||
* [PixelXpert](https://github.com/siavash79/PixelXpert) (root), [Essentials](https://github.com/sameerasw/essentials) or [Dashbud](https://dashbud.dev/) / [Discord](https://discord.com/invite/78h7xgj) - Android Customization Apps
|
||||
* [DualWallpaper](https://github.com/Yanndroid/DualWallpaper) - Change Wallpaper Depending on System Theme
|
||||
* [Wallpaper Engine](https://www.wallpaperengine.io/android/en) - Wallpapers / Live Wallpapers
|
||||
* [Muzei](https://muzei.co/), [Doodle](https://patrickzedler.com/doodle/) or [Amoled Backgrounds](https://play.google.com/store/apps/details?id=com.droidheat.amoledbackgrounds) - Live Wallpapers
|
||||
|
|
@ -327,7 +329,7 @@ ## ▷ Root / Flash
|
|||
|
||||
* 🌐 **[Awesome Android Root](https://awesome-android-root.org/)** - Rooted App Index / [GitHub](https://github.com/awesome-android-root/awesome-android-root)
|
||||
* 🌐 **[Bootloader Unlock: Wall of Shame](https://github.com/melontini/bootloader-unlock-wall-of-shame)** or [BL List](https://a.zli.li/) - Bootlocker Limit Indexes / Policies / [GitHub](https://github.com/xuemian168/android-locker)
|
||||
* ⭐ **[Magisk](https://github.com/topjohnwu/Magisk)**, [APatch](https://github.com/bmax121/APatch), [Magisk Alpha](https://t.me/magiskalpha), [KernelSU](https://kernelsu.org/), [KernelSU-Next](https://github.com/KernelSU-Next/KernelSU-Next), [MagiskOnWSALocal](https://github.com/LSPosed/MagiskOnWSALocal), [ReSukiSU](https://resukisu.github.io/) / [Telegram](https://t.me/ReSukiSU/), [MTKClient](https://github.com/bkerler/mtkclient) or [Mtk Easy Su](https://github.com/JunioJsv/mtk-easy-su) - Android Root Tools
|
||||
* ⭐ **[KernelSU](https://kernelsu.org/)**, [KernelSU-Next](https://github.com/KernelSU-Next/KernelSU-Next), [Magisk](https://github.com/topjohnwu/Magisk), [Magisk Alpha](https://t.me/magiskalpha), [ReSukiSU](https://resukisu.github.io/) / [Telegram](https://t.me/ReSukiSU/), [MagiskOnWSALocal](https://github.com/LSPosed/MagiskOnWSALocal), [MTKClient](https://github.com/bkerler/mtkclient), [APatch](https://github.com/bmax121/APatch) or [Mtk Easy Su](https://github.com/JunioJsv/mtk-easy-su) - Android Root Tools
|
||||
* ⭐ **Magisk Tools** - [Module Manager](https://github.com/DerGoogler/MMRL) / [Mods](https://t.me/magiskmod_update) / [Support Layer](https://github.com/axonasif/rusty-magisk) / [PlayIntegrity Fix](https://xdaforums.com/t/tricky-store-bootloader-keybox-spoofing.4683446/) / [Alt Repo](https://github.com/Magisk-Modules-Alt-Repo)
|
||||
* ⭐ **[Android Docker](https://gist.github.com/FreddieOliveira/efe850df7ff3951cb62d74bd770dce27)** - Run Docker on Android
|
||||
* [ADB-and-FastbootPlusPlus](https://github.com/K3V1991/ADB-and-FastbootPlusPlus) - ADB / Fastboot Programs
|
||||
|
|
@ -356,7 +358,7 @@ ## ▷ Operating Systems
|
|||
# ► Android Camera
|
||||
|
||||
* ⭐ **[Google Lens](https://lens.google.com/)** - Multiple Camera Tools
|
||||
* ⭐ **[Reincubate Camo](https://reincubate.com/camo/)** / [IP Webcam](https://play.google.com/store/apps/details?id=com.pas.webcam) / [Windows Driver](https://ip-webcam.appspot.com/), [Iriun](https://iriun.com/) or [DroidCam](https://github.com/dev47apps/droidcam-linux-client) - Use Android as Webcam / Live Cam
|
||||
* ⭐ **[Reincubate Camo](https://camo.com/studio)** / [IP Webcam](https://play.google.com/store/apps/details?id=com.pas.webcam) / [Windows Driver](https://ip-webcam.appspot.com/), [Iriun](https://iriun.com/) or [DroidCam](https://github.com/dev47apps/droidcam-linux-client) - Use Android as Webcam / Live Cam
|
||||
* [Libre Camera](https://github.com/iakdis/librecamera) - Camera App
|
||||
* [GrapheneOS Camera](https://github.com/GrapheneOS/Camera) - Camera App
|
||||
* [Blackmagic Camera](https://play.google.com/store/apps/details?id=com.blackmagicdesign.android.blackmagiccam) - Camera App
|
||||
|
|
@ -954,6 +956,7 @@ # ► Android Streaming
|
|||
* [VivaTV](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/android#wiki_.25B7_modded_apks) (search) - Movies / TV / Requires TPlayer
|
||||
* [OnStream](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/android#wiki_.25B7_modded_apks) (search) - Movies / TV / Requires SPlayer
|
||||
* [PopcornTime](https://popcorn-time.site) - Torrent Streaming / Use [VPN](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/adblock-vpn-privacy/#wiki_.25BA_vpn)
|
||||
* [PlayTorrio](https://playtorrio.xyz/) - Movies / TV / Anime / [Discord](https://discord.gg/bbkVHRHnRk) / [GitHub](https://github.com/ayman708-UX/PlayTorrio)
|
||||
* [FilmPlus](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/android#wiki_.25B7_modded_apks) (search) - Movies / TV / Requires BPlayer
|
||||
* [Flixclusive](https://github.com/flixclusiveorg/Flixclusive) - Movies / TV / [Plugins](https://discord.com/invite/7yPSPveReu)
|
||||
* [Vega App](https://github.com/Zenda-Cross/vega-app) - Movies / TV
|
||||
|
|
@ -1050,7 +1053,7 @@ # ► iOS Tools
|
|||
* ↪️ **[Hacker News Apps](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/misc#wiki_.25B7_hacker_news_tools)**
|
||||
* ⭐ **[Bitwarden](https://bitwarden.com/download/apple-iphone-password-manager/)** / [X](https://twitter.com/bitwarden) / [Subreddit](https://reddit.com/r/bitwarden) / [GitHub](https://github.com/bitwarden), **[Keepassium](https://keepassium.com/)**, [Proton Pass](https://proton.me/pass/download/ios), [AuthPass](https://authpass.app/) or [Strongbox](https://strongboxsafe.com/) - Password Managers
|
||||
* ⭐ **[PairVPN Hotspot](https://pairvpn.com/hotspot)** - Create Mobile Hotspots
|
||||
* ⭐ **[Reincubate Camo](https://reincubate.com/camo/)** or [Iriun](https://iriun.com/) - Use iOS Device as Webcam
|
||||
* ⭐ **[Reincubate Camo](https://camo.com/studio)** or [Iriun](https://iriun.com/) - Use iOS Device as Webcam
|
||||
* [iTorrent](https://github.com/XITRIX/iTorrent) / [AltStore](https://therealfoxster.github.io/altsource-viewer/view/?source=https://xitrix.github.io/iTorrent/AltStore.json) or [PikaTorrent](https://www.pikatorrent.com/) / [GitHub](https://github.com/G-Ray/pikatorrent) - Torrent Clients
|
||||
* [iDescriptor](https://github.com/iDescriptor/iDescriptor) - iDevice (iOS/iPad) Management Tool
|
||||
* [Toolbox](https://github.com/Koizeay/Toolbox) - Multi-Tool App
|
||||
|
|
@ -1064,7 +1067,7 @@ # ► iOS Tools
|
|||
* [The National Do Not Call Registry](https://www.donotcall.gov/) - Opt Out of Telemarketing Calls
|
||||
* [touchHLE](https://github.com/touchHLE/touchHLE) - iOS App Desktop Emulator / [Compatibility](https://appdb.touchhle.org/)
|
||||
* [PancakeStore](https://github.com/jailbreakdotparty/PancakeStore), [MuffinStore](https://github.com/mineek/MuffinStore) or [Downgrade Apps](https://github.com/qnblackcat/How-to-Downgrade-apps-on-AppStore-with-iTunes-and-Charles-Proxy/) - iOS App Downgraders
|
||||
* [Drafts](https://getdrafts.com/), [Strflow](https://strflow.app/), [FreeNotes](https://apps.apple.com/app/id6464237904), [Google Docs](https://apps.apple.com/us/app/google-docs/id842842640) or [Bear](https://bear.app/) - Note-Taking / Text Editors
|
||||
* [Drafts](https://getdrafts.com/), [Strflow](https://strflow.app/), [NotesPlus](https://www.notesplus.com/), [FreeNotes](https://apps.apple.com/app/id6464237904), [Google Docs](https://apps.apple.com/us/app/google-docs/id842842640) or [Bear](https://bear.app/) - Note-Taking / Text Editors
|
||||
* [Google Sheets](https://apps.apple.com/us/app/google-sheets/id842849113) - Document Editor / Reader
|
||||
* [Noteful](https://apps.apple.com/app/id1587904334) or [Highlights](https://highlightsapp.net/) - PDF Note-Taking
|
||||
* [iSH Shell](https://ish.app/) / [GitHub](https://github.com/ish-app/ish) or [a-Shell](https://holzschu.github.io/a-Shell_iOS/) - Terminal Emulators
|
||||
|
|
@ -1116,7 +1119,7 @@ # ► iOS Tools
|
|||
|
||||
## ▷ iOS Jailbreaking
|
||||
|
||||
* 🌐 **[IPA Apps](https://ipa-apps.me/)**, **[Jailbreaks.app](https://jailbreaks.app/)** or **[Jailbreak Chart](https://docs.google.com/spreadsheets/d/e/2PACX-1vRXcZDsbk2j_AL5YCPnwAp6Ovf5xmLRwNK2wXrwGN__FCbkGWz6Be4l5JyHxEOyogjPnVl51nrDVOcC/pubhtml)** - Jailbreaking Tool Indexes
|
||||
* 🌐 **[IPA Apps](https://ipa-apps.me/)**, **[Jailbreaks.app](https://jailbreaks.app/)** or **[Jailbreak Chart](https://docs.google.com/spreadsheets/d/15-GeIjfsSDThS_Ic-r4E-tTlIx1yuxQDugkFUtTrxbs/edit?gid=293261150#gid=293261150)** - Jailbreaking Tool Indexes
|
||||
* 🌐 **[Types of Jailbreak](https://ios.cfw.guide/types-of-jailbreak/)** - List of Jailbreak Types
|
||||
* 🌐 **[AppleDB](https://appledb.dev/)** - Apple Device / Software Info Database
|
||||
* 🌐 **[ReJail](https://rejail.ru/)** or [CyPwn Repo](https://repo.cypwn.xyz/) - Cracked Tweaks Repository
|
||||
|
|
@ -1124,14 +1127,16 @@ ## ▷ iOS Jailbreaking
|
|||
* ⭐ **[r/jailbreak Discord](https://discord.com/invite/jb)** - Jailbreaking Community / [Subreddit](https://reddit.com/r/jailbreak)
|
||||
* ⭐ **[r/LegacyJailbreak](https://www.reddit.com/r/LegacyJailbreak/)** - Jailbreak Old Devices (iOS 12 and Below) / [Discord](https://discord.gg/bhDpTAu)
|
||||
* ⭐ **[Legacy-iOS-Kit](https://github.com/LukeZGD/Legacy-iOS-Kit)** - Legacy iOS Devices / Downgrade / Save Blobs / Jailbreak / Bypass
|
||||
* [Dopamine](https://ellekit.space/dopamine/) - 15.0-16.6.1 Semi-Untethered Jailbreak (A8-A16 & M1-M2) / [Guide](https://ios.cfw.guide/installing-dopamine/) / [GitHub](https://github.com/opa334/Dopamine)
|
||||
* [Dopamine](https://ellekit.space/dopamine/) - 15.0-16.6.1* Semi-Untethered Jailbreak (A8-A16 & M1-M2) / [Guide](https://ios.cfw.guide/installing-dopamine/) / [GitHub](https://github.com/opa334/Dopamine)
|
||||
- *A12 and later devices are not supported on iOS 16.6 - 16.6.1, and A15-A16/M2 devices are not supported on iOS 16.5.1 - 16.6.1.
|
||||
* [palera1n](https://palera.in) - 15.0-18.x Semi-Tethered Jailbreak (A8-A11 & T2) / [Guide](https://ios.cfw.guide/installing-palera1n/) / [GitHub](https://github.com/palera1n/palera1n)
|
||||
* [nathanlr](https://ios.cfw.guide/installing-nathanlr/) - 16.5.1-16.6.1 Semi-Untethered Semi-Jailbreak (A12) / [Guide](https://ios.cfw.guide/installing-nathanlr/)
|
||||
* [checkra1n](https://checkra.in/) - 12.0-14.8.1 Semi-Tethered Jailbreak (5s-X)
|
||||
* [nathanlr](https://ios.cfw.guide/installing-nathanlr/) - iOS 16.5.1-16.7 RC & 17.0 | Semi-Untethered Semi-Jailbreak (A12) / [Guide](https://ios.cfw.guide/installing-nathanlr/) / [GitHub](https://github.com/verygenericname/nathanlr)
|
||||
* [checkra1n](https://checkra.in/) - 12.0-14.8.1 Semi-Tethered Jailbreak (5s-X)
|
||||
* [Taurine](https://taurine.app/) - 14-14.8.1 Semi-Untethered Jailbreak
|
||||
* [Odyssey](https://theodyssey.dev/) - 13.0-13.7 Semi-Untethered Jailbreak / [Guide](https://ios.cfw.guide/installing-odyssey/)
|
||||
* [Chimera](https://chimera.coolstar.org/) - 12.0-12.5.7 Semi-Untethered Jailbreak / [Guide](https://ios.cfw.guide/installing-chimera/)
|
||||
* [Chimera](https://chimera.coolstar.org/) - 12.0-12.5.8 Semi-Untethered Jailbreak / [Guide](https://ios.cfw.guide/installing-chimera/)
|
||||
* [unc0ver](https://github.com/pwn20wndstuff/Undecimus) - 11.0-14.8 Semi-Untethered Jailbreak / [Guide](https://ios.cfw.guide/installing-unc0ver/)
|
||||
* [Electra](https://coolstar.org/electra/) - 11.0-11.4.1 Semi-Untethered Jailbreak / [Guide](https://ios.cfw.guide/installing-electra/)
|
||||
* [Socket](https://socket-jb.app/) - 10.0.1-10.3.4 Semi-Tethered Jailbreak (32-bit Only) / [Guide](https://ios.cfw.guide/installing-socket/)
|
||||
* [Totally Not Spyware](https://totally-not.spyware.lol/) - 10.0-10.3.3 Semi-Untethered Jailbreak (64-bit Only) / [Guide](https://ios.cfw.guide/using-tns/)
|
||||
* [Meridian](https://github.com/PsychoTea/MeridianJB/) - 10.0-10.3.3 Semi-Untethered Jailbreak (A7-A10(X)) / [Guide](https://ios.cfw.guide/installing-meridian-ipa/)
|
||||
|
|
@ -1142,9 +1147,11 @@ ## ▷ iOS Jailbreaking
|
|||
* [Pangu933](https://web.archive.org/web/20170214021020/http://dl.pangu.25pp.com/jb/NvwaStone_1.1.ipa) - 9.2-9.3.3 Semi-Untethered Jailbreak (64-bit Only) / [Guide](https://ios.cfw.guide/installing-pangu933/)
|
||||
* [HomeDepot](https://web.archive.org/web/20240121141909/http://wall.supplies/) - 9.1-9.3.4 Semi-Untethered Jailbreak (32-bit Only) / [Guide](https://ios.cfw.guide/installing-homedepot/)
|
||||
* [Pangu9](https://web.archive.org/web/20170702115349/http://en.9.pangu.io/) - 9.0GM-9.1 Untethered Jailbreak / [Guide](https://ios.cfw.guide/installing-pangu9/)
|
||||
* [kok3shi9](https://dora2ios.web.app/kokeshi9.html) - 9.3.2-9.3.5 Semi-Untethered Jailbreak (64-bit Only) / [Guide](https://ios.cfw.guide/installing-kok3shi9/)
|
||||
* [wtfis](https://github.com/TheRealClarity/wtfis) - 8.0-8.4.1 Untethered Jailbreak (64-bit Only) / [Guide](https://ios.cfw.guide/installing-wtfis/)
|
||||
* [HomeDepot OLD](https://web.archive.org/web/20240121141903/https://wall.supplies/OLD%20iPhone%20HACKED.html) - 8.0-8.4.1 Semi-Untethered Jailbreak (A5-A5X) / [Guide](https://ios.cfw.guide/installing-homedepot/)
|
||||
* [Carbon](http://carbon.sep.lol/) - 8.0-9.3.6 Untethered Jailbreak (32-bit Only)
|
||||
* [Lyncis](https://github.com/staturnzz/Lyncis) - 8.0-8.4.1 Tethered Jailbreak (64-bit) / [Guide](https://ios.cfw.guide/using-lyncis/)
|
||||
* [Pangu7](https://mega.nz/folder/k4FAXCIB#Fk7pxs6ikYzL3YBvAGX5ig/file/41UlRSyS) - 7.1-7.1.2 Untethered Jailbreak / **[Warning](https://rentry.co/77idzr4v)** / [Guide](https://ios.cfw.guide/installing-pangu7/) / [Mac](https://mega.nz/folder/k4FAXCIB#Fk7pxs6ikYzL3YBvAGX5ig/file/Fo8ihCJa)
|
||||
* [Evasi0n7](https://mega.nz/folder/k4FAXCIB#Fk7pxs6ikYzL3YBvAGX5ig/file/1wc0HZgQ) - 7.0-7.0.6 Untethered Jailbreak / [Guide](https://ios.cfw.guide/installing-evasi0n7/) / [5s / 5c](https://mega.nz/folder/k4FAXCIB#Fk7pxs6ikYzL3YBvAGX5ig/file/Z1MC2ZaS)
|
||||
* [p0sixspwn](https://ih8sn0w.com/p0sixspwn.html) - 6.1.3-6.1.6 Untethered Jailbreak / [Guide](https://ios.cfw.guide/installing-p0sixspwn/) / [macOS High Sierra+](https://archive.org/download/p0sixspwn-modernmacOS/p0sixspwn%206.1.6%20test.zip)
|
||||
|
|
@ -1161,7 +1168,7 @@ ## ▷ iOS Jailbreaking
|
|||
* [IPSW](https://ipsw.me/) - Clean Apple Firmware
|
||||
* [FutureRestore](https://github.com/tihmstar/futurerestore) - Restore to Unsigned Firmware / [GUI](https://github.com/CoocooFroggy/FutureRestore-GUI/)
|
||||
* [Sileo](https://getsileo.app/) or [Zebra](https://getzbra.com/) - iOS Package Managers
|
||||
* [Repo Updates](https://www.ios-repo-updates.com/) - App Repository Updates
|
||||
* [iOS Repo Updates](https://www.ios-repo-updates.com/) - App Repository Updates
|
||||
* [Nugget](https://github.com/leminlimez/Nugget) - iOS Tweaks Tool
|
||||
* [Roothide Bootstrap](https://github.com/roothide/Bootstrap) - Inject Tweaks into Apps without jailbreak (14.0-17.0) / [Tweaks](https://github.com/roothide/roothide.github.io)
|
||||
* [wInd3x](https://github.com/freemyipod/wInd3x) - iPod Classic / Nano Bootrom Exploit
|
||||
|
|
@ -1172,19 +1179,19 @@ ## ▷ iOS Jailbreaking
|
|||
## ▷ iOS Sideloading
|
||||
|
||||
* ⭐ **[Sideloading Guide](https://rentry.co/sideloadingguide)** or [ios.cfw.guide](https://ios.cfw.guide/sideloading-apps/) - Sideloading Guides
|
||||
* ⭐ **[TrollStore](https://github.com/opa334/TrollStore)** - Non-Appstore Apps / No-Jailbreak / 14.0-17.0 / [External Repos](https://github.com/TheResonanceTeam/TrollApps/) / [Decrypt](https://github.com/donato-fiore/TrollDecrypt) / [Guide](https://ios.cfw.guide/installing-trollstore/) / [Web App](https://theresonanceteam.github.io/trollapps-web/)
|
||||
* ⭐ **[TrollStore](https://github.com/opa334/TrollStore)** - Non-Appstore Apps / No-Jailbreak / 14.0 - 16.6.1, 16.7 RC, 17.0 / [External Repos](https://github.com/TheResonanceTeam/TrollApps/) / [Decrypt](https://github.com/donato-fiore/TrollDecrypt) / [Guide](https://ios.cfw.guide/installing-trollstore/) / [Web App](https://theresonanceteam.github.io/trollapps-web/)
|
||||
* ⭐ **[SideStore](https://sidestore.io/)** - Non-Jailbreak Sideloading App (iOS 14.0 & Above) / [Limit Bypass](https://docs.sidestore.io/docs/advanced/alternative#sidestore-exploits) / [Note](https://github.com/fmhy/edit/blob/main/docs/.vitepress/notes/limit-bypass-note.md)
|
||||
* ⭐ **[Sideloadly](https://sideloadly.io/)** - Non-Jailbreak Sideloading (iOS 7.0 & Above)
|
||||
* ⭐ **[PlumeImpactor](https://github.com/khcrysalis/Impactor)** - Non-Jailbreak Sideloading
|
||||
* ⭐ **[Feather](https://github.com/khcrysalis/Feather)** - Sideloading App (iOS 15.0 & Above) / Requires Apple Dev Certificate
|
||||
* [AltStore Classic](https://altstore.io/) - Non-Jailbreak Sideloading App (iOS 14.0 & Above) / [Repo Viewer](https://therealfoxster.github.io/altsource-viewer/), [2](https://altsource.by.lao.sb/browse/) / [AltServer](https://github.com/NyaMisty/AltServer-Linux) / [Guide](https://faq.altstore.io/altstore-classic/how-to-install-altstore-windows)
|
||||
* [r/Sideloaded](https://reddit.com/r/sideloaded) - Sideloading Subreddit
|
||||
* [Ksign](https://github.com/Nyasami/Ksign) - Non-Jailbreak Sideloading
|
||||
* [PlumeImpactor](https://github.com/khcrysalis/Impactor) - Non-Jailbreak Sideloading
|
||||
* [iloader](https://iloader.app/) - Non-Jailbreak Sideloading / [GitHub](https://github.com/nab138/iloader/)
|
||||
* [LiveContainer](https://github.com/khanhduytran0/LiveContainer) - Run Apps Without Installing / Bypass Sidestore limits
|
||||
* [BlacklistBeGone](https://github.com/jailbreakdotparty/BlacklistBeGone) - Lift Revoked Certificate Blacklist / iOS 17.0 -> iOS 18.0.1
|
||||
* [SignTools](https://github.com/SignTools/SignTools) - Self-Hosted App Signer
|
||||
* [Cyan](https://github.com/asdfzxcvbn/pyzule-rw) - Modify IPAs / Inject Tweaks
|
||||
* [r/sideloaded](https://reddit.com/r/sideloaded) - Sideloading Subreddit
|
||||
|
||||
***
|
||||
|
||||
|
|
@ -1360,7 +1367,7 @@ ## ▷ iOS Anime
|
|||
|
||||
## ▷ iOS YouTube Apps
|
||||
|
||||
* ⭐ **[YouTube Plus](https://github.com/dayanch96/YTLite)** - Modded YouTube iPA
|
||||
* ⭐ **[YouTube Plus](https://github.com/dayanch96/YTLite)** - Modded YouTube iPA / Closed-Source
|
||||
* ⭐ **[Yattee](https://github.com/yattee/yattee)** - YouTube Player
|
||||
* [Dan's Workshop](https://dvntm0.github.io/) - Modded YouTube IPAs / [Telegram](https://t.me/dvntms) / [Discord](https://discord.gg/VN9ZSeMhEW)
|
||||
* [YTLitePlus](https://ytliteplus.github.io/) - YTLite + Tweaks / Official iPAs are Outdated / [GitHub](https://github.com/YTLitePlus/YTLitePlus)
|
||||
|
|
|
|||
|
|
@ -45,7 +45,6 @@ ## ▷ Streaming / البث
|
|||
* [okanime](https://okanime.tv/) - Anime / Sub / 1080p / Region Locked
|
||||
* [ristoanime](https://ristoanime.com/) - Anime
|
||||
* [witanime](https://witanime.red/) - Anime
|
||||
* [animeiat](https://ww1.animeiat.tv/) - Anime
|
||||
* [anslayerweb](https://anslayerweb.com/) - Anime
|
||||
* [animezid](https://animezid.net/) - Anime / Cartoons
|
||||
* [Animerco](https://gat.animerco.org/) - Anime / Sub / 1080p
|
||||
|
|
@ -136,7 +135,6 @@ # ► Bulgarian / Български
|
|||
## ▷ Streaming / Стрийминг
|
||||
|
||||
* [NovaPlay](https://play.nova.bg/) - Live TV / TV / Sub / Dub / 1080p
|
||||
* [FilmiPlay](https://filmiplay.com/) - Movies / Sub / Dub / 720p
|
||||
* [Filmifen](https://filmifen.com/) - Movies / Sub / Dub
|
||||
* [BGTVI](https://bgtvi.com/) - TV / Sub / Dub / 720p
|
||||
* [BGESTV](https://bgestv.com) - TV / Sub / Dub / 720p
|
||||
|
|
@ -190,7 +188,7 @@ ## ▷ Great Firewall
|
|||
***
|
||||
|
||||
* ↪️ **[Anti-Censorship Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/adblock-vpn-privacy#wiki_.25B7_anti-censorship)** / **[Proxy Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/adblock-vpn-privacy#wiki_.25BA_proxy)**
|
||||
* ⭐ **[Censordex](https://censordex.fr.to/)** or [Censorship Bypass](https://rentry.co/chinese-censorship-bypass-guide) - Censorship Bypass Guides
|
||||
* ⭐ **[Censorship Bypass Guide](https://cbg.fmhy.bid/)** or [Censorship Bypass](https://rentry.co/chinese-censorship-bypass-guide) - Censorship Bypass Guide
|
||||
* [gfwlist](https://github.com/gfwlist/gfwlist) - Blocked Sites List
|
||||
* [r/dumbclub](https://www.reddit.com/r/dumbclub/) - GFW Discussion
|
||||
* [gfw.report](https://gfw.report/) - GFW Information
|
||||
|
|
@ -198,7 +196,6 @@ ## ▷ Great Firewall
|
|||
* [GFWMass](https://github.com/eli32-vlc/gfwmass) - Proxy Deployment Tool / [Guide](https://forum.blackfox.qzz.io/posts/introduction-to-gfwmass/)
|
||||
* [Accesser](https://github.com/URenko/Accesser/) - SNI RST Solver
|
||||
* [China Firewall Test](https://www.dotcom-tools.com/china-firewall-test), [ChinaFirewallTest](http://www.chinafirewalltest.com/), [BlockedInChina](https://www.comparitech.com/privacy-security-tools/blockedinchina/) or [Chinese Firewall](https://viewdns.info/chinesefirewall/) - Chinese Firewall Blocking Test
|
||||
* [Apple Account Guide](https://zhuanlan.zhihu.com/p/623576755) - How-to Make Apple Account in China
|
||||
* [todaiinews](https://chinese.todaiinews.com/) - Language Learning
|
||||
|
||||
## ▷ Downloading / 下载
|
||||
|
|
@ -466,7 +463,6 @@ ## ▷ Downloading / Téléchargement
|
|||
|
||||
## ▷ Torrenting
|
||||
|
||||
* [YGGTorrent](https://www.yggtorrent.top/) - Video / Audio / ROMs / Books / Requires Sign-Up
|
||||
* [Torrent9](https://torrent9.to/) - Video / Audio / ROMs / Books
|
||||
* [Sharewood](https://www.sharewood.tv/) - Video / Audio / ROMs / Books / Requires Sign-Up
|
||||
|
||||
|
|
@ -749,8 +745,9 @@ ## ▷ Streaming
|
|||
* ⭐ **[HydraHD](https://hydrahd.com/)** - Movies / TV / Anime / Auto-Next / [Status](https://hydrahd.info/)
|
||||
* ⭐ **[RgShows](https://www.rgshows.ru/)** - Movies / TV / Anime / 4K / [Guide](https://www.rgshows.ru/guide.html) / [Discord](https://discord.com/invite/K4RFYFspG4)
|
||||
* ⭐ **[Animelok](https://animelok.site/)** - Anime / Cartoons / 1080p / Auto-Next / [Mirrors](https://animelok.to/) / [Telegram](https://t.me/animerulz_xyz) / [Discord](https://discord.gg/32taxtj5BC)
|
||||
* ⭐ **[ToonStream](https://toonstream.world/)**, [2](https://toonstream.one/) - Cartoons / Anime / 1080p / [Telegram](https://telegram.me/toonstream)
|
||||
* ⭐ **[Anime World India](https://watchanimeworld.in/)**, [2](https://animesalt.top/), [3](http://piratexplay.cc/) - Anime
|
||||
* ⭐ **[ToonStream](https://toonstream.one/)** - Cartoons / Anime / 1080p / [Telegram](https://telegram.me/toonstream)
|
||||
* ⭐ **[PirateXPlay](http://piratexplay.cc/)** - Cartoons / Anime
|
||||
* ⭐ **[Anime World India](https://watchanimeworld.in/)**, [2](https://animesalt.top/), - Anime
|
||||
* ⭐ **[MultiMovies](https://multimovies.guru)** - Movies / TV / .guru Always Redirects to Main / [Telegram](https://telegram.me/+8Is7Ezz56fNkZDZl)
|
||||
* [TamilMV](https://www.1tamilmv.farm/) - Movies / TV / Anime / Sub / Dub / 4K / 1080p / Indian Languages
|
||||
* [Einthusan](https://einthusan.tv/) - Movies / 1080p
|
||||
|
|
@ -773,7 +770,6 @@ ## ▷ Streaming
|
|||
* [Cloudy](https://cloudy.pk/) - Movies / TV / Cartoons / Sub / Dub / 720p / [Telegram](https://t.me/cloudypkmovies)
|
||||
* [IndianCine](https://indiancine.ma/) - Indian Short / Classic Movies
|
||||
* [Kartoons](https://kartoons.fun/) - Anime / Cartoons
|
||||
* [AnimeDekho](https://animedekho.in/home) - Anime / Cartoons
|
||||
* [Aniflix](https://aniflix.uno/) - Anime / [Telegram](https://t.me/Aniflix_Anime_Requests)
|
||||
* [desidubanime](https://www.desidubanime.me/) - Anime
|
||||
* [mxplayer](https://www.mxplayer.in) - Movies
|
||||
|
|
@ -1598,20 +1594,17 @@ ## ▷ Streaming / Streamear
|
|||
* [Solo Latino](https://sololatino.net/) - Movies / TV / Anime / 1080p / Latino
|
||||
* [ModoCine](https://modocine.com/) - Movies / TV
|
||||
* [Tubepelis](https://www.tubepelis.com/) - Movies / TV
|
||||
* [poseidonhd2](https://www.poseidonhd2.co/) - Movies / TV
|
||||
* [PelisPlus](https://ww3.pelisplus.to/) - Movies / TV
|
||||
* [repelisplus](https://repelisplus.today/) - Movies / TV
|
||||
* [La Movie](https://la.movie/) - Movies / TV
|
||||
* [hackstore2](https://hackstore2.com/) - Movies / TV
|
||||
* [cineplus](https://www.cineplus.lat) - Movies / TV
|
||||
* [Cinezo](https://www.cinezo.net/) - Movies / TV / Anime / Auto-Next / Watch Parties / [Discord](https://discord.gg/Gx27YMK73d)
|
||||
* [RaroVHS](https://www.rarovhs.com/) - Rare Spanish Content
|
||||
* [PelisPedia](https://pelispedia.mov/) - Movies / TV / Latino
|
||||
* [Tubi Spanish](https://tubitv.com/category/spanish_language) - Free w/ Ads
|
||||
* [Tubi Spanish](https://tubitv.com/category/spanish_language) - Free w/ Ads / May Require VPN
|
||||
* [tele-libre](https://tele-libre.fans/) - Live TV
|
||||
* [rtvcplay](https://rtvcplay.co/) - Free Public Colombian TV
|
||||
* [futbollibrehd](https://futbollibrehd.cl/) - Live Sports
|
||||
* [la12hd](https://la12hd.com/) - Live Sports
|
||||
* [la14hd](https://la14hd.com/) - Live Sports
|
||||
* [Streamtpmedia](https://streamtpmedia.com/) - Live Sports
|
||||
* [angulismotv](https://angulismotv-dnh.pages.dev/) - Live Sports
|
||||
* [librefutboltv](https://librefutboltv.su/) - Live Football
|
||||
|
|
@ -1621,7 +1614,6 @@ ## ▷ Streaming / Streamear
|
|||
* [detodopeliculas](https://detodopeliculas.nu/) - Movies / TV
|
||||
* [verpeliculasonline](https://verpeliculasonline.org/), [2](https://ver-peliculas-online.org/) - Movies / TV
|
||||
* [PelisPedia.is](https://pelispedia.is/) - Movies / TV
|
||||
* [TuCineClasico](https://online.tucineclasico.es/) - Movies
|
||||
* [Gnula.se](https://gnula.se/) - TV / Anime
|
||||
* [Gnula.nu](https://gnula.nu/) - Movies
|
||||
* [CineHDPlus](https://cinehdplus.org/) - Movies / TV
|
||||
|
|
@ -1650,14 +1642,12 @@ ## ▷ Streaming / Streamear
|
|||
* [TioAnime](https://tioanime.com/) - Anime / Sub
|
||||
* [jkanimeflv](https://jkanimeflv.com/) - Anime / Sub
|
||||
* [animeav1](https://animeav1.com/) - Anime
|
||||
* [HenaoJara](https://henaojara.com/) - Anime / Sub
|
||||
* [Animejara](https://animejara.com/) - Anime / Sub
|
||||
* [AnimeFLV.net](https://www3.animeflv.net/) - Anime / Sub
|
||||
* [mundodonghua](https://www.mundodonghua.com/) - Anime / Sub
|
||||
* [estrenosanime](https://estrenosanime.net/) - Anime
|
||||
* [animeonline](https://ww3.animeonline.ninja/) - Anime / Sub
|
||||
* [ytanime](https://ytanime.tv/) - Anime / Sub
|
||||
* [AnimeID](https://www.animeid.tv/) - Anime / Sub
|
||||
* [animeyt](https://animeytx.net/) - Anime / Sub
|
||||
* [LACartoons](https://www.lacartoons.com/) - Cartoons
|
||||
* [LatinLucha](https://latinluchas.com/) - WWE / MMA Replays / Latino
|
||||
* [EventosHQ](https://www.eventoshq.me/) - WWE / MMA Replays / Latino
|
||||
|
|
|
|||
|
|
@ -17,6 +17,7 @@
|
|||
Verified instances that mirror the official FMHY [repository](https://github.com/fmhy/edit).
|
||||
|
||||
* [FMHY Archive](https://ffmhy.pages.dev/) - Alternative Style
|
||||
* [Retro FMHY](https://retrofmhy.pages.dev/) - Alternative Style
|
||||
* [fmhy.bid](https://fmhy.bid/)
|
||||
* [fmhy.samidy.com](https://fmhy.samidy.com/)
|
||||
* [fmhy.jbugel.xyz](https://fmhy.jbugel.xyz/)
|
||||
|
|
|
|||
|
|
@ -34,7 +34,7 @@ # Wiki Updates
|
|||
|
||||
# Stars Added ⭐
|
||||
|
||||
- Starred both [Epstein Exposed + JMail](https://fmhy.net/reading#documents-articles) in documents section, we've been sent a lot of these, but these 2 seem to have some of the better UIs.
|
||||
- Starred both [Epstein Exposed + JMail](https://fmhy.net/reading#declassified-leaked-documents) in documents section, we've been sent a lot of these, but these 2 seem to have some of the better UIs.
|
||||
|
||||
- Starred [Convert to it!](https://fmhy.net/file-tools#file-converters) in File Converters, nearly all formats imaginable, file uploads are in browser only, not uploaded to them which is good for privacy.
|
||||
|
||||
|
|
@ -46,7 +46,7 @@ # Stars Added ⭐
|
|||
|
||||
- Starred [Markbox](https://fmhy.net/text-tools#pastebins) (aka fluffle) in Pastebins, alt to rentry with similar UI, has markdown support, editing, etc.
|
||||
|
||||
- Starred [Efecto](https://fmhy.net/image-tools#image-effects) in Image Editing, web-based visual effects editor, supports images, videos and 3D models, much higher quality than what we're normally.
|
||||
- Starred [Efecto](https://fmhy.net/image-tools#image-effects) in Image Editing, web-based visual effects editor, supports images, videos and 3D models.
|
||||
|
||||
- Starred [KLIPY](https://fmhy.net/ai#video-generation) in Video Gen, allows you to generate unlimited GIFs using Veo 3.
|
||||
|
||||
|
|
|
|||
|
|
@ -158,7 +158,7 @@ # ► Privacy
|
|||
* [DataRequests](https://www.datarequests.org/) - GDPR Request Generator / Tools
|
||||
* [Surfer Protocol](https://github.com/Surfer-Org/Protocol) - Multi-Platform User Data Exporter / [Discord](https://discord.gg/5KQkWApkYC)
|
||||
* [GnuPG](https://gnupg.org/) - Data / Communication Encryption Tool / [Installer](https://www.gpg4win.org/)
|
||||
* [PrivNote](https://privnote.com/), [SafeNote](https://safenote.co/) / [GitHub](https://github.com/devrolabs), [Burn.Link](https://burn.link/), [ThisLinkWillSelfDestruct](https://thislinkwillselfdestruct.com/), [s.cr](https://s.cr/), [Burn My Note](https://www.burnmynote.link/) or [OneTimeSecret](https://onetimesecret.com/) / [GitHub](https://github.com/onetimesecret/onetimesecret) - Send Self-Destructing Messages
|
||||
* [PrivNote](https://privnote.com/), [SafeNote](https://safenote.co/) / [GitHub](https://github.com/devrolabs), [Burn.Link](https://burn.link/), [ThisLinkWillSelfDestruct](https://thislinkwillselfdestruct.com/), [s.cr](https://s.cr/), [Hemmelig](https://hemmelig.app/) / [GitHub](https://github.com/HemmeligOrg/Hemmelig.app), [Burn My Note](https://www.burnmynote.link/) or [OneTimeSecret](https://onetimesecret.com/) / [GitHub](https://github.com/onetimesecret/onetimesecret) - Send Self-Destructing Messages
|
||||
* [Forensic Focus](https://www.forensicfocus.com/forums/) - Digital Forensics Discussion Forums
|
||||
* [SurveillanceWatch](https://www.surveillancewatch.io/) - Surveillance Company Connections
|
||||
* [ALPR Watch](https://alprwatch.org/) or [DeFlock](https://deflock.me/) / [Discord](https://discord.gg/aV7v4R3sKT) / [GitHub](https://github.com/FoggedLens/deflock) - AI Automated License Plate Reader Cameras / ALPR Maps
|
||||
|
|
@ -174,7 +174,7 @@ ## ▷ Privacy Indexes
|
|||
* ⭐ **[Surveillance Self-Defense](https://ssd.eff.org/)** - Educational Guide
|
||||
* ⭐ **[The New Oil](https://thenewoil.org/)** - Educational Guide / [GitHub](https://github.com/tnonate/thenewoil)
|
||||
* ⭐ **[No Trace](https://www.notrace.how/)** - Educational Guide / [.onion](http://i4pd4zpyhrojnyx5l3d2siauy4almteocqow4bp2lqxyocrfy6prycad.onion/)
|
||||
* ⭐ **[The Hitchhiker’s Guide](https://anonymousplanet.org/)** / [GitHub](https://github.com/Anon-Planet/thgtoa) or [The OPSEC Bible](https://bible.beginnerprivacy.com/opsec/) / [.onion](http://opbible7nans45sg33cbyeiwqmlp5fu7lklu6jd6f3mivrjeqadco5yd.onion/) / [SimpleX Chat](http://nowherejezfoltodf4jiyl6r56jnzintap5vyjlia7fkirfsnfizflqd.onion/simplex.html) - Extensive Online Anonymity Guides
|
||||
* ⭐ **[The Hitchhiker’s Guide](https://anonymousplanet.org/)** / [GitHub](https://github.com/Anon-Planet/thgtoa) or [The OPSEC Bible](https://opsec.hackliberty.org/), [2](https://bible.beginnerprivacy.com/opsec/) / [.onion](http://opbible7nans45sg33cbyeiwqmlp5fu7lklu6jd6f3mivrjeqadco5yd.onion/) / [SimpleX Chat](http://nowherejezfoltodf4jiyl6r56jnzintap5vyjlia7fkirfsnfizflqd.onion/simplex.html) - Extensive Online Anonymity Guides
|
||||
* ⭐ **[Consumer Rights Wiki](https://consumerrights.wiki/)** - Documents Practices That Impact Consumer Rights
|
||||
* [Lissy93's Awesome Privacy](https://awesome-privacy.xyz/) / [GitHub](https://github.com/lissy93/awesome-privacy), [Awesome Security Hardening](https://github.com/decalage2/awesome-security-hardening) or [pluja's Awesome Privacy](https://pluja.github.io/awesome-privacy/) / [GitHub](https://github.com/pluja/awesome-privacy) - Privacy App / Service
|
||||
* [Defensive Computing Checklist](https://defensivecomputingchecklist.com/) - Educational Guide
|
||||
|
|
@ -474,6 +474,7 @@ ## ▷ Proxy Clients
|
|||
## ▷ Anti Censorship
|
||||
|
||||
* ↪️ **[Great Firewall Bypass](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/non-eng#wiki_.25B7_great_firewall)**
|
||||
* ⭐ **[Censorship Bypass Guide](https://cbg.fmhy.bid/)** - Censorship Bypass Guide
|
||||
* ⭐ **[Net4people](https://github.com/net4people/bbs/issues)** - Worldwide Censorship Circumvention Discussion
|
||||
* ⭐ **[ByeDPIAndroid](https://github.com/dovecoteescapee/ByeDPIAndroid)**, - Network Packet Alter Tool / Android
|
||||
* ⭐ **[zapret](https://github.com/bol-van/zapret)**, **[SpoofDPI](https://github.com/xvzc/SpoofDPI)** or **[GoodbyeDPI](https://github.com/ValdikSS/GoodbyeDPI/)** - Network Packet Alter Tool
|
||||
|
|
@ -493,8 +494,8 @@ ## ▷ Proxy Sites
|
|||
***
|
||||
|
||||
* ↪️ **[Proxy Lists](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_proxy_lists)**
|
||||
* [Holy Unblocker](https://holyunblocker.org/) / [GitHub](https://github.com/QuiteAFancyEmerald/Holy-Unblocker)
|
||||
* [Titanium Network](https://titaniumnetwork.org/services/) - Multi Proxy / [Instances](https://discord.gg/unblock) / [GitHub](https://github.com/titaniumnetwork-dev)
|
||||
* ⭐ **[Holy Unblocker](https://holyunblocker.org/)** / [GitHub](https://github.com/QuiteAFancyEmerald/Holy-Unblocker)
|
||||
* [Titanium Network](https://titaniumnetwork.org/services/) - Multi Proxy / [Instances](https://discord.gg/unblock) / [Discord](https://discord.gg/unblock) / [GitHub](https://github.com/titaniumnetwork-dev)
|
||||
* [US5](https://us5.thetravelingtourguide.com/) - Multi-Site + App Proxy / Adblocker / [Discord](https://discord.com/invite/VDA8Ngx38Z)
|
||||
* [SSLSecureProxy](https://www.sslsecureproxy.com/), [2](https://www.4everproxy.com/), [3](https://www.hideip.co/)
|
||||
* [ProxyOf2](https://proxyof2.com/)
|
||||
|
|
@ -506,4 +507,4 @@ ## ▷ Proxy Sites
|
|||
* [Google Translate](https://translate.google.com/) / [Note](https://github.com/fmhy/edit/blob/main/docs/.vitepress/notes/google-translate-note.md)
|
||||
* [Proxy Checker](https://proxy-checker.net/), [proxy-scraper](https://github.com/iw4p/proxy-scraper) or [proxy-scraper-checker](https://github.com/monosans/proxy-scraper-checker) - Proxy Scrapers / Checkers
|
||||
* [CheckSocks5](https://checksocks5.com/) - SOCKS5 Proxy Checker
|
||||
* [Knaben.info](https://knaben.info/) - Torrent Site Proxies
|
||||
* [Knaben.info](https://knaben.info/) - Torrent Site Proxies
|
||||
100
docs/reading.md
100
docs/reading.md
|
|
@ -7,7 +7,7 @@
|
|||
# ► Ebooks
|
||||
|
||||
* 🌐 **[Open Slum](https://open-slum.org/)**, [2](https://open-slum.pages.dev/) - Book Site Index / Uptime Tracking
|
||||
* ⭐ **[Anna's Archive](https://annas-archive.li/)**, [2](https://annas-archive.gl/) - Books / Comics / [Auto-Expand](https://greasyfork.org/en/scripts/494262) / [Matrix](https://matrix.to/#/#annas:archivecommunication.org) / [Subreddit](https://www.reddit.com/r/Annas_Archive/)
|
||||
* ⭐ **[Anna's Archive](https://annas-archive.gl/)**, [2](https://annas-archive.vg), [3](https://annas-archive.pk), [4](https://annas-archive.gd) - Books / Comics / [Mirrors](https://en.wikipedia.org/wiki/Anna's_Archive) / [Auto-Expand](https://greasyfork.org/en/scripts/494262) / [Matrix](https://matrix.to/#/#annas:archivecommunication.org) / [Subreddit](https://www.reddit.com/r/Annas_Archive/)
|
||||
* ⭐ **[Z-Library](https://z-lib.gd/)**, [2](https://articles.sk/), [3](https://1lib.sk/), [4](https://z-lib.fm/) - Books / Comics / [Apps / Extensions](https://go-to-library.sk/), [2](https://playtorrio.xyz/) / [.onion](http://loginzlib2vrak5zzpcocc3ouizykn6k5qecgj2tzlnab5wcbqhembyd.onion/), [2](http://bookszlibb74ugqojhzhg2a63w5i2atv5bqarulgczawnbmsb6s6qead.onion/) / [Subreddit](https://www.reddit.com/r/zlibrary/)
|
||||
* ⭐ **[Mobilism](https://forum.mobilism.org)**, [2](https://forum.mobilism.me/) - Books / Audiobooks / Magazines / Newspapers / Comics / [Ranks](https://github.com/fmhy/edit/blob/main/docs/.vitepress/notes/mobilism-ranks.md)
|
||||
* ⭐ **[MyAnonaMouse](https://www.myanonamouse.net/)** - Books / Audiobooks / Comics / Sheet Music / [Requires Invite](https://www.myanonamouse.net/inviteapp.php)
|
||||
|
|
@ -63,7 +63,7 @@ ## ▷ Public Domain
|
|||
* [Loyal Books](https://www.loyalbooks.com/)
|
||||
* [Lit2Go](https://etc.usf.edu/lit2go/)
|
||||
* [Planet Publish](https://www.planetpublish.com/)
|
||||
* [BAEN](https://www.baen.com/catalog/category/view/s/free-library/id/2012)
|
||||
* [BAEN](https://www.baen.com/allbooks/category/index/id/2012)
|
||||
* [Ebookzy](https://ebookzy.com/) - Classics
|
||||
* [By the Fireplace](https://bythefireplace.com/) - Classics
|
||||
* [DigiLibraries](https://digilibraries.com/) - Classics
|
||||
|
|
@ -74,7 +74,7 @@ ## ▷ Public Domain
|
|||
* [Wikibooks](https://www.wikibooks.org/) - Wikimedia Community
|
||||
* [Hoopla](https://www.hoopladigital.com/) - Requires Library Card
|
||||
* [WorldCat](https://www.worldcat.org/), [LibrarySearch](https://librarysearch.gre.ac.uk/) or [TRL](https://www.trl.org/) - Search Local Libraries / [Extension](https://www.libraryextension.com/)
|
||||
* [PublicDomainReview](https://publicdomainreview.org/) - Reviews / Essays of Public Domain Material
|
||||
* [Public Domain Review](https://publicdomainreview.org/) - Reviews / Essays of Public Domain Material
|
||||
* [Distributed Proofreaders](https://www.pgdp.net/) - Help Digitize Public Domain Books to Ebooks
|
||||
|
||||
***
|
||||
|
|
@ -109,12 +109,13 @@ ## ▷ Ebook Readers
|
|||
|
||||
* 🌐 **[Ebook Reader Index](https://wiki.mobileread.com/wiki/E-book_software)** or [Mobile Read](https://www.mobileread.com/) - Ebook Reader Indexes
|
||||
* ↪️ **[Android](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/android#wiki_.25BA_android_reading) / [iOS](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/android#wiki_.25BA_ios_reading)** - Mobile Ebook Readers
|
||||
* ⭐ **[Readest](https://readest.com/)** - Ebook Reader / All Platforms / [GitHub](https://github.com/readest/readest)
|
||||
* ⭐ **[Koodo](https://www.koodoreader.com/)** - Ebook Reader / All Platforms / [GitHub](https://github.com/koodo-reader/koodo-reader)
|
||||
* ⭐ **[KOReader](https://koreader.rocks/)** - Ebook Reader / Windows, Linux, Android / [Plugins](https://github.com/koreader/contrib) / [GitHub](https://github.com/koreader/koreader)
|
||||
* ⭐ **[SumatraPDFReader](https://www.sumatrapdfreader.org/free-pdf-reader)** - Ebook & PDF Reader / Windows
|
||||
* [Sioyek](https://sioyek.info/) - PDF / Windows, Mac, Linux
|
||||
* [Foxit](https://www.foxit.com/pdf-reader/) - PDF Reader / All Platforms / [Features](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/download#wiki_.25BA_software_sites) (search) / [Warning](https://github.com/fmhy/edit/blob/main/docs/.vitepress/notes/foxit-warning.md)
|
||||
* [PlayTorrio](https://playtorrio.xyz/) - Ebook Reader / Windows / [Discord](https://discord.gg/bbkVHRHnRk) / [GitHub](https://github.com/ayman708-UX/PlayTorrio)
|
||||
* [Readest](https://readest.com/) - Ebook Reader / All Platforms / [GitHub](https://github.com/readest/readest)
|
||||
* [PlayTorrio](https://playtorrio.xyz/) - Ebook Reader / Windows, Mac, Linux, Android / [Discord](https://discord.gg/bbkVHRHnRk) / [GitHub](https://github.com/ayman708-UX/PlayTorrio)
|
||||
* [EBook Reader](https://epub-reader.online/) - Ebook Reader / Windows, Mac, Android, iOS
|
||||
* [Jane Reader](https://janereader.com/) - Ebook Reader / Windows, Mac
|
||||
* [FBReader](https://fbreader.org/) - Ebook Reader / Windows, Android, iOS
|
||||
|
|
@ -129,7 +130,6 @@ ## ▷ Ebook Readers
|
|||
* [qPDFview](https://launchpad.net/qpdfview) - PDF / Windows
|
||||
* [MuPDF](https://mupdf.com/) - PDF / Windows, Linux, Android
|
||||
* [Evince](https://apps.gnome.org/Evince/) - PDF / DjVu Reader / Linux / [GitLab](https://gitlab.gnome.org/GNOME/evince)
|
||||
* [Sioyek](https://sioyek.info/) - PDF / Windows, Mac, Linux
|
||||
* [Yomu](https://www.yomu-reader.com/) - Ebook Reader / Mac, iOS
|
||||
* [FBReader](https://apps.apple.com/app/fbreader-epub-and-fb2-reader/id1067172178) - Ebook Reader / Mac, iOS
|
||||
* [FF PDF](https://github.com/sdushantha/ff-pdf/) - PDF / Linux
|
||||
|
|
@ -144,7 +144,7 @@ ## ▷ Browser Ebook Readers
|
|||
|
||||
* ⭐ **[Reader View](https://webextension.org/listing/chrome-reader-view.html)**, [2](https://mybrowseraddon.com/reader-view.html)
|
||||
* ⭐ **[Google Play Books](https://play.google.com/books)** - Manage Books / Auto Metadata / Allows 1000 Uploads
|
||||
* [Anna’s Archive Reader](https://annas-archive.li/view)
|
||||
* [Anna’s Archive Reader](https://annas-archive.gl/view), [2](https://annas-archive.vg/view)), [3](https://annas-archive.pk)/view), [4](https://annas-archive.gd/view))
|
||||
* [Flow](https://www.flowoss.com/)
|
||||
* [Online Cloud File Viewer](https://www.fviewer.com/)
|
||||
* [Readwok](https://readwok.com/)
|
||||
|
|
@ -276,6 +276,7 @@ ## ▷ Fanfiction / Stories
|
|||
* [Royal Road](https://royalroad.com/) - Fanfiction
|
||||
* [FictionPress](https://www.fictionpress.com/) - Fanfiction
|
||||
* [Quotev](https://www.quotev.com/stories/c/Fanfiction) - Fanfiction
|
||||
* [Asianfanfics](https://www.asianfanfics.com/) - Asian Fanfiction
|
||||
* [AlternateHistory](https://www.alternatehistory.com/forum/) - Historical "What if?" Fiction
|
||||
* [Liminal Archives](http://liminal-archives.wikidot.com/) / [Discord](https://discord.gg/fxhwcsyKN2), [The Backrooms Wiki](http://backrooms-wiki.wikidot.com/) or [The Voidclusters](http://voidclusters.wikidot.com/) - Liminal Space Stories
|
||||
* [Potions and Snitches](https://www.potionsandsnitches.org/) - Harry Potter Fanfiction
|
||||
|
|
@ -500,6 +501,7 @@ ## ▷ Manga
|
|||
* [ManhwaClan](https://manhwaclan.com/) - Manhwa
|
||||
* [ManhwaZone](https://manhwazone.to/) - Manhwa / [Discord](https://discord.gg/6eHgG35gYY)
|
||||
* [AquaReader](https://aquareader.net/) - Manhua
|
||||
* [SysManhua](https://sysmanhua.com/) - Manhua
|
||||
* [Great Discord Links](https://discord.gg/xAsyVb52a9) or [MangaDex Groups](https://mangadex.org/groups) - Manga Scanlation Groups
|
||||
* [Madokami](https://wotaku.wiki/guides/manga/madokami) - Makokami Download Guide / [Archive](https://rentry.co/FMHYB64#madokami)
|
||||
* [MediaBang](https://medibang.com/mpc/) or [NamiComi](https://namicomi.com/en) - User-Created Manga
|
||||
|
|
@ -681,19 +683,19 @@ ## ▷ Quotes / Poetry
|
|||
* ⭐ **[Wikiquote](https://wikiquote.org)**
|
||||
* ⭐ **[Poetry Foundation](https://www.poetryfoundation.org/)**
|
||||
* [Eudaimonia](https://www.eudaimonia.wiki/) - Collaborative Book of Wisdom / Quotes
|
||||
* [BrainyQuote](https://www.brainyquote.com/)
|
||||
* [AZQuotes](https://www.azquotes.com/)
|
||||
* [QuoteGarden](https://www.quotegarden.com/)
|
||||
* [TheOtherPages](https://theotherpages.org/quote.html)
|
||||
* [Brainy Quote](https://www.brainyquote.com/)
|
||||
* [AZquote](https://www.azquotes.com/)
|
||||
* [The Quote Garden](https://www.quotegarden.com/)
|
||||
* [Quotations Home Page](https://theotherpages.org/quote.html)
|
||||
* [Quote Collections](https://rentry.co/zeoemsh9)
|
||||
* [Poetry In Translation](https://www.poetryintranslation.com/)
|
||||
* [PoemHunter](https://www.poemhunter.com/)
|
||||
* [DiscoverPoetry](https://discoverpoetry.com/)
|
||||
* [RUVerses](https://ruverses.com/)
|
||||
* [Poem Hunter](https://www.poemhunter.com/)
|
||||
* [Discover Poetry](https://discoverpoetry.com/)
|
||||
* [RuVerses](https://ruverses.com/)
|
||||
* [Poetry.com](https://www.poetry.com/)
|
||||
* [Poets.org](https://poets.org/)
|
||||
* [PoetryArchive](https://poetryarchive.org/)
|
||||
* [ScottishPoetryLibrary](https://www.scottishpoetrylibrary.org.uk/)
|
||||
* [Poetry Archive](https://poetryarchive.org/)
|
||||
* [Scottish Poetry Library](https://www.scottishpoetrylibrary.org.uk/)
|
||||
|
||||
***
|
||||
|
||||
|
|
@ -802,12 +804,30 @@ ## ▷ Academic Papers
|
|||
|
||||
***
|
||||
|
||||
## ▷ Documents / Articles
|
||||
## ▷ Manuals
|
||||
|
||||
* 🌐 **[Manuals & Schematics](https://redd.it/nlw3er)**, [SafeManuals](https://safe-manuals.com/), [Manuzoid](https://manuzoid.com/), [manualzz](https://manualzz.com/), [ManualsNet](https://manualsnet.com/), [manua.ls](https://www.manua.ls/) or [ManualsLib](https://www.manualslib.com/) - Manual Directories
|
||||
* ⭐ **[RepairWiki](https://repair.wiki/)** - Repair Articles / [Old Layout](https://old.repair.wiki/)
|
||||
* [ManualLib](https://www.manuallib.com/) or [Manuals+](https://manuals.plus/) - Manual Search
|
||||
* [iFixIt](https://www.ifixit.com/) - Repair Manuals
|
||||
* [Restarters](https://wiki.restarters.net/) - Device Repair Wiki / Guides
|
||||
* [WonderHowTo](https://www.wonderhowto.com/) - Tech How-Tos
|
||||
* [Manned.org](https://manned.org/) - Operating System Manuals
|
||||
* [RetroSix](https://www.retrosix.wiki/) - Retro Console Repair Guides + Info / [Discord](https://discord.gg/D4Envqc5jr)
|
||||
* [AntiqueRadio](https://antiqueradio.org/) - Vintage Radio + TV Restoration Guides
|
||||
* [Exploitee.rs](https://www.exploitee.rs/) - Device Exploitation Wiki
|
||||
* [JDMFSM](https://jdmfsm.info/Auto/), [Charm](https://charm.li/), [CarPDFManual](https://www.carpdfmanual.com/) or [ProCarManuals](https://procarmanuals.com/) - Auto Repair Manuals
|
||||
* [Ownersman.com](https://ownersman.com/) - Car Owner Manuals
|
||||
* [PremierProduct](https://www.premierproducts-uk.co.uk/) or [Auto Manual](https://www.auto-manual.com/) - Vehicle Manuals
|
||||
* [David Kleinfeld Laboratory](https://neurophysics.ucsd.edu/Manuals/) - Lab Manuals
|
||||
|
||||
***
|
||||
|
||||
# ► Documents / Articles
|
||||
|
||||
* ↪️ **[Bypass Article Paywalls](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/internet-tools#wiki_.25B7_paywall_bypass)**
|
||||
* ⭐ **[TheFreeLibrary](https://www.thefreelibrary.com/)** - Articles
|
||||
* ⭐ **[Nexus Search](https://t.me/nexus_search/214)**, [2](https://t.me/libgen_scihub_science_nexus_bot) - Science / Articles
|
||||
* ⭐ **[Epstein Exposed](https://www.epsteinexposed.com/)** / [GitHub](https://github.com/stonesalltheway1/Epstein-Pipeline), **[JMail](https://www.jmail.world/)** / [2](https://jmailarchive.org/) / [Wiki](https://jmail.world/wiki), [Epstein Secrets](https://epsteinsecrets.com/), [Epstein Library](https://www.justice.gov/epstein), [Epstein Visualizer](https://epsteinvisualizer.com/), [Epstein Index](https://officialepsteinfiles.org/) or [Epstein Files Browser](https://epstein-files-browser.vercel.app/) - Declassified Epstein Files / Viewer Discretion Advised / Contains Censored NSFW Images
|
||||
* [Heystacks](https://heystacks.com/) - Public Google Docs
|
||||
* [IDoc](https://idoc.pub/) - Document Search
|
||||
* [Higher Intellect](https://preterhuman.net/) - Document Search
|
||||
|
|
@ -834,16 +854,6 @@ ## ▷ Documents / Articles
|
|||
* [Einstein Papers](https://einsteinpapers.press.princeton.edu/) - Albert Einsteins Collected Papers Archive
|
||||
* [Aesthetics Archive](https://contempaesthetics.org/) - Aesthetics Articles / Notes Contemporary
|
||||
* [CIA Publications](https://www.cia.gov/resources/publications/) - History / Reports
|
||||
* [The Uncensored Library](https://www.uncensoredlibrary.com/en) - Uncensored / Declassified Documents
|
||||
* [FBI Vault](https://vault.fbi.gov/) - Declassified Documents
|
||||
* [The Black Vault](https://www.theblackvault.com/) - Declassified Documents
|
||||
* [Archives.gov](https://www.archives.gov/) - Declassified Documents
|
||||
* [Distributed Denial of SecretsS](https://ddosecrets.org/) - Transparency Collective
|
||||
* [WikiLeaks](https://wikileaks.org/) - Leaked Documents / [Index](https://file.wikileaks.org/)
|
||||
* [Library of Leaks](https://libraryofleaks.org/) - Leaked Documents
|
||||
* [Cryptome](https://cryptome.org/) - Leaked Documents
|
||||
* [Snowden Archive](https://github.com/iamcryptoki/snowden-archive) - Leaked Snowden Documents
|
||||
* [Google Leaks](https://www.zachvorhies.com/google_leaks/) - Leaked Google Documents
|
||||
* [Constitute Project](https://www.constituteproject.org/) - World Constitutions Database
|
||||
* [The American Presidency Project](https://www.presidency.ucsb.edu/) - Presidential Documents
|
||||
* [Marine Corps Pubs](https://www.marines.mil/News/Publications/MCPEL/), [Air Force Pubs](https://www.e-publishing.af.mil/product-index/), [Army Pubs](https://armypubs.army.mil/) or [LiberatedManuals](https://www.liberatedmanuals.com/) - Military Documents / Manuals
|
||||
|
|
@ -858,22 +868,20 @@ ## ▷ Documents / Articles
|
|||
|
||||
***
|
||||
|
||||
## ▷ Manuals
|
||||
## ▷ Declassified / Leaked Documents
|
||||
|
||||
* 🌐 **[Manuals & Schematics](https://redd.it/nlw3er)**, [SafeManuals](https://safe-manuals.com/), [Manuzoid](https://manuzoid.com/), [manualzz](https://manualzz.com/), [ManualsNet](https://manualsnet.com/), [manua.ls](https://www.manua.ls/) or [ManualsLib](https://www.manualslib.com/) - Manual Directories
|
||||
* ⭐ **[RepairWiki](https://repair.wiki/)** - Repair Articles / [Old Layout](https://old.repair.wiki/)
|
||||
* [ManualLib](https://www.manuallib.com/) or [Manuals+](https://manuals.plus/) - Manual Search
|
||||
* [iFixIt](https://www.ifixit.com/) - Repair Manuals
|
||||
* [Restarters](https://wiki.restarters.net/) - Device Repair Wiki / Guides
|
||||
* [WonderHowTo](https://www.wonderhowto.com/) - Tech How-Tos
|
||||
* [Manned.org](https://manned.org/) - Operating System Manuals
|
||||
* [RetroSix](https://www.retrosix.wiki/) - Retro Console Repair Guides + Info / [Discord](https://discord.gg/D4Envqc5jr)
|
||||
* [AntiqueRadio](https://antiqueradio.org/) - Vintage Radio + TV Restoration Guides
|
||||
* [Exploitee.rs](https://www.exploitee.rs/) - Device Exploitation Wiki
|
||||
* [JDMFSM](https://jdmfsm.info/Auto/), [Charm](https://charm.li/), [CarPDFManual](https://www.carpdfmanual.com/) or [ProCarManuals](https://procarmanuals.com/) - Auto Repair Manuals
|
||||
* [Ownersman.com](https://ownersman.com/) - Car Owner Manuals
|
||||
* [PremierProduct](https://www.premierproducts-uk.co.uk/) or [Auto Manual](https://www.auto-manual.com/) - Vehicle Manuals
|
||||
* [David Kleinfeld Laboratory](https://neurophysics.ucsd.edu/Manuals/) - Lab Manuals
|
||||
* 🌐 **[Epstein Research Resources](https://redd.it/1rc3gaz)** - Epstein Research Sites / Tools / Viewer Discretion Advised / Contains Censored NSFW Images
|
||||
* ⭐ **[Epstein Exposed](https://www.epsteinexposed.com/)** / [GitHub](https://github.com/stonesalltheway1/Epstein-Pipeline), **[JMail](https://www.jmail.world/)** / [2](https://jmailarchive.org/) / [Wiki](https://jmail.world/wiki), [Epstein Secrets](https://epsteinsecrets.com/), [Epstein Library](https://www.justice.gov/epstein), [Epstein Visualizer](https://epsteinvisualizer.com/), [Epstein Index](https://officialepsteinfiles.org/) or [Epstein Files Browser](https://epstein-files-browser.vercel.app/) - Declassified Epstein Files / Viewer Discretion Advised / Contains Censored NSFW Images
|
||||
* [WikiLeaks](https://wikileaks.org/) - Leaked Documents / [Index](https://file.wikileaks.org/)
|
||||
* [The Uncensored Library](https://www.uncensoredlibrary.com/en) - Uncensored / Declassified Documents
|
||||
* [FBI Vault](https://vault.fbi.gov/) - Declassified Documents
|
||||
* [The Black Vault](https://www.theblackvault.com/) - Declassified Documents
|
||||
* [Archives.gov](https://www.archives.gov/) - Declassified Documents
|
||||
* [Distributed Denial of SecretsS](https://ddosecrets.org/) - Transparency Collective
|
||||
* [Library of Leaks](https://libraryofleaks.org/) - Leaked Documents
|
||||
* [Cryptome](https://cryptome.org/) - Leaked Documents
|
||||
* [Snowden Archive](https://github.com/iamcryptoki/snowden-archive) - Leaked Snowden Documents
|
||||
* [Google Leaks](https://www.zachvorhies.com/google_leaks/) - Leaked Google Documents
|
||||
|
||||
***
|
||||
|
||||
|
|
@ -889,6 +897,7 @@ # ► Tracking / Database
|
|||
* [Midloop](https://midloop.net/) - Book Release Date Tracker / [Discord](https://discord.gg/AvUxR59Yv5)
|
||||
* [Listal](https://www.listal.com/) - Book Database
|
||||
* [Books Search](https://books-search.typesense.org/) - Book Database
|
||||
* [Book Series in Order](https://www.bookseriesinorder.com/) - Book Character / Author Release Orders
|
||||
* [LibraryThing](https://www.talpasearch.com/) - Find Books by Describing Them
|
||||
* [Ratings Filter](https://www.book-filter.com/) - Goodreads / Storygraph Rating Aggregator + Filter
|
||||
* [ISFDB](https://isfdb.org/) - Speculative Fiction
|
||||
|
|
@ -903,6 +912,7 @@ # ► Tracking / Database
|
|||
* [CandlApp](https://www.candlapp.com/) - Book Tracking / Recommendations
|
||||
* [Anobii](https://www.anobii.com/) - Book Cataloguing / Reviews
|
||||
* [Mad Cover Site](https://madcoversite.com/) - MAD Magazine History Archive
|
||||
* [Banned Book List](https://docs.google.com/spreadsheets/u/0/d/10NwV38Rp6EF8X8p7Qa2iXpSFn9m46v717DQtJkLictI) - List of Books Banned by Schools
|
||||
* [rate.house](https://rate.house/) or [Yamtrack](https://github.com/FuzzyGrim/Yamtrack) - Media Trackers
|
||||
* [libib](https://www.libib.com/) or [All My Books](https://www.bolidesoft.com/allmybooks.html) - Desktop Catalogs
|
||||
|
||||
|
|
@ -963,7 +973,6 @@ # ► Helpful Sites / Apps
|
|||
* ↪️ **[Summary Generators](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/text-tools#wiki_.25B7_text_rephrasing)**
|
||||
* ↪️ **[PDF File Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/file-tools/#wiki_.25B7_pdf_tools)**
|
||||
* ⭐ **[Calibre](https://calibre-ebook.com/)** - Ebook Manager & Reader / Windows, Mac, Linux
|
||||
* ⭐ **[Spreeder](https://www.spreeder.com/app.php?intro=1)**, [Speed Reader](https://speed-reader.com/), [BR Script](https://greasyfork.org/en/scripts/465635), [PlayText](https://playtext.app/), [AccelaReader](https://accelareader.com/), [SwiftRead](https://swiftread.com/), [Notation](https://github.com/numanzamandipuu/Notation), [Tailwind BR](https://crisanlucid.github.io/vite-react-tailwind-bionic-reading/), [ogma](https://github.com/0hAodha/ogma) or [SpeedRead](https://github.com/pasky/speedread) - Speed Reading Tools
|
||||
* ⭐ **[Kindle Comic Converter](https://github.com/ciromattia/kcc)** - Multi-Format Converter / App
|
||||
* ⭐ **[Papeer](https://papeer.tech/)** / [GitHub](https://github.com/lapwat/papeer), [dotepub](https://dotepub.com/) or [epub-creator](https://github.com/NiklasGollenstede/epub-creator) - Webpage to EPUB Converter
|
||||
* [Scribd DL](https://github.com/rkwyu/scribd-dl), [Scribd PDF](https://scribd.pdfdownloaders.com/) or [ScribdVPDF](https://scribdvpdf.blogspot.com/) / [2](https://docdownloader.com/) / [3](https://scribd.vpdfs.com/) / [4](https://scribd.downloader.tips/) / [5](https://scribd.vdownloaders.com/) - Scribd Downloaders
|
||||
|
|
@ -985,4 +994,5 @@ # ► Helpful Sites / Apps
|
|||
* [HowLongToRead](https://howlongtoread.com/) or [ReadingLength](https://www.readinglength.com/) - Find Book Lengths / Reading Times
|
||||
* [BTW](https://booktriggerwarnings.com/) - Book Trigger Warnings
|
||||
* [DIY Book Scanner](https://diybookscanner.org/) - How to Scan Books
|
||||
* [The Submission Grinder](https://thegrinder.diabolicalplots.com/) - Find a Publisher
|
||||
* [The Submission Grinder](https://thegrinder.diabolicalplots.com/) - Find a Publisher
|
||||
* [Spreeder](https://www.spreeder.com/app.php?intro=1), [Speed Reader](https://speed-reader.com/), [BR Script](https://greasyfork.org/en/scripts/465635), [PlayText](https://playtext.app/), [AccelaReader](https://accelareader.com/), [SwiftRead](https://swiftread.com/), [Notation](https://github.com/numanzamandipuu/Notation), [Tailwind BR](https://crisanlucid.github.io/vite-react-tailwind-bionic-reading/), [ogma](https://github.com/0hAodha/ogma) or [SpeedRead](https://github.com/pasky/speedread) - Speed Reading Tools / Note These Are Not Good for Comprehension
|
||||
|
|
@ -6,7 +6,7 @@
|
|||
|
||||
# ► Social Media Tools
|
||||
|
||||
* 🌐 **[Farside](https://farside.link/)** / [2](https://cf.farside.link/), [canine.tools](https://canine.tools/services/), [NerdVPN](https://nerdvpn.de/), [PrivacyRedirect](https://privacyredirect.com/), [Nadeko](https://nadeko.net/) or [alternative-frontends](https://github.com/ParniDEO/alternative-front-ends-unofficial) - Frontend Indexes
|
||||
* 🌐 **[Farside](https://farside.link/)** / [2](https://cf.farside.link/), [Radical Servers](https://help.riseup.net/en/security/resources/radical-servers), [canine.tools](https://canine.tools/services/), [NerdVPN](https://nerdvpn.de/), [PrivacyRedirect](https://privacyredirect.com/), [Nadeko](https://nadeko.net/) or [alternative-frontends](https://github.com/ParniDEO/alternative-front-ends-unofficial) - Frontend Indexes
|
||||
* ↪️ **[Android](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/android/#wiki_.25B7_social_media_apps)** / **[iOS](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/android/#wiki_.25B7_social_media_apps2)** - Mobile Social Media Apps
|
||||
* ⭐ **[GrayJay](https://grayjay.app/)** - YouTube, Twitch, Rumble, etc. / Avoid Playstore / [Guide](https://youtu.be/EnZrv37u66c) / [Add Platforms](https://grayjay-sources.github.io/), [2](https://github.com/grayjay-sources/grayjay-sources.github.io), [3](https://gitlab.futo.org/videostreaming/plugins) / [GitLab](https://gitlab.futo.org/videostreaming/grayjay)
|
||||
* ⭐ **[SocialBlade](https://socialblade.com/)** - Social Media Stats
|
||||
|
|
@ -40,7 +40,6 @@ # ► Discord Tools
|
|||
* [Nelly](https://nelly.tools/) - Discord Web Tools
|
||||
* [AnswersOverflow](https://www.answeroverflow.com/) - Discord Search Engine / [GitHub](https://github.com/AnswerOverflow/AnswerOverflow)
|
||||
* [Discord Profile Viewer](https://addynrpfp.vercel.app/) - View / Download Discord User's Avatar or Banner
|
||||
* [DAVB](https://rentry.co/FMHYB64#davb) - Discord Age Verification Bypass
|
||||
* [Discord Chat Exporter](https://github.com/Tyrrrz/DiscordChatExporter) / [Python](https://github.com/mahtoid/DiscordChatExporterPy) or [Discord History Tracker](https://dht.chylex.com/) / [GitHub](https://github.com/chylex/Discord-History-Tracker) - Archive / Export Discord Chats
|
||||
* [Wumpus Central](https://discord.gg/zZ6szdKQu6) - Discord Experimental Server Hub
|
||||
* [SimpleDiscordCrypt](https://gitlab.com/An0/SimpleDiscordCrypt) - Discord Message Encryption / [Discord](https://discord.gg/rSUyXeCHBE)
|
||||
|
|
@ -181,6 +180,7 @@ # ► Reddit Tools
|
|||
* [infini.wtf](https://infini.wtf/) - Reddit Image Search
|
||||
* [Load Reddit Images Directly](https://github.com/nopperl/load-reddit-images-directly) - Direct Image Viewer
|
||||
* [UniversalScammerList](https://www.universalscammerlist.com/) - List of Reddit Scammers
|
||||
* [lurker](https://tangled.org/oppi.li/lurker) - Self-Hostable Read-Only Reddit Client
|
||||
|
||||
***
|
||||
|
||||
|
|
@ -331,7 +331,7 @@ ## ▷ YouTube Customization
|
|||
* ⭐ **[DeArrow](https://dearrow.ajay.app/)** - Reduce Sensationalism / Clickbait
|
||||
* ⭐ **[UnTrap](https://untrap.app/)**, [TubeMod](https://github.com/Pedro-Gregorio/TubeMod) or [Less Addictive YouTube](https://github.com/AlexisDrain/Less-Addictive-YouTube) - Distraction-Free YouTube
|
||||
* ⭐ **[VORAPIS](https://vorapis.pages.dev/)** - Classic YouTube Layout / Increased Performance / [Extra Themes](https://github.com/lightbeam24/StarTube) / [Discord](https://discord.com/invite/tBBZQMscag)
|
||||
* [ImprovedTube](https://improvedtube.com/), [YouTube Alchemy](https://greasyfork.org/en/scripts/521686), [Tweaks for YT](https://inzk.dev/tweaks-for-youtube/), [Magic Actions](https://www.chromeactions.com/), [YouTube Tweaks](https://addons.mozilla.org/en-US/firefox/addon/youtube-tweaks/) / [Chrome](https://chrome.google.com/webstore/detail/youtube-tweaks/oeakphpfoaeggagmgphfejmfjbhjfhhh) or [Enhancer for YT](https://www.mrfdev.com/enhancer-for-youtube) - YouTube Enhancement Extensions
|
||||
* [ImprovedTube](https://improvedtube.com/), [YouTube Alchemy](https://greasyfork.org/en/scripts/521686), [Tweaks for YT](https://inzk.dev/tweaks-for-youtube/), [Magic Actions](https://www.chromeactions.com/), [Control Panel for YouTube](https://soitis.dev/control-panel-for-youtube) / [GitHub](https://github.com/insin/control-panel-for-youtube), [YouTube Tweaks](https://addons.mozilla.org/en-US/firefox/addon/youtube-tweaks/) / [Chrome](https://chrome.google.com/webstore/detail/youtube-tweaks/oeakphpfoaeggagmgphfejmfjbhjfhhh) or [Enhancer for YT](https://www.mrfdev.com/enhancer-for-youtube) - YouTube Enhancement Extensions
|
||||
* [PKGA](https://greasyfork.org/en/scripts/442089) or [YouTube WideScreen](https://greasyfork.org/en/scripts/409893) - Improved YouTube Theater Mode
|
||||
* [YouTube Hide Watched](https://github.com/EvHaus/youtube-hide-watched) - Toggle Visibility of Watched Videos / Shorts
|
||||
* [Fast Forward YT Shorts](https://greasyfork.org/en/scripts/466438) - Add Seek Hotkeys to Shorts
|
||||
|
|
@ -423,7 +423,7 @@ ## ▷ YouTube Downloaders
|
|||
* [Tube All Images](https://imageyoutube.com/) - Download YouTube Images
|
||||
* [YTThumbnailHD](https://ytthumbnailhd.com/), [YT-Thumbnail-Grabber](https://youtube-thumbnail-grabber.org/), [ThumbnailDownloader](https://www.thumbnaildownloader.art/) or [YT Thumbnail Grabber](https://youtube-thumbnail-grabber.com/) - Download Video Thumbnails
|
||||
* [youtube-comment-downloader](https://github.com/egbertbouman/youtube-comment-downloader) - Download YouTube Comments
|
||||
* [YT Subtitle Downloader](https://greasyfork.org/en/scripts/520194) - Download Video Subtitles
|
||||
* [YT Subtitle Downloader](https://addons.mozilla.org/firefox/addon/youtube-subtitle-downloader/) - Download Video Subtitles / [GitHub](https://github.com/lockex1987/youtube-subtitle-downloader)
|
||||
|
||||
***
|
||||
|
||||
|
|
@ -510,7 +510,7 @@ ## ▷ Twitch Players
|
|||
|
||||
## ▷ Twitch Adblockers
|
||||
|
||||
* 🌐 **[TwitchAdSolutions](https://github.com/pixeltris/TwitchAdSolutions)** - Solutions / Scripts for Blocking Twitch Ads
|
||||
* 🌐 **[TwitchAdSolutions](https://github.com/pixeltris/TwitchAdSolutions)** - Solutions / Scripts for Blocking Twitch Ads / Archived
|
||||
* ⭐ **[VAFT UBO Script](https://github.com/pixeltris/TwitchAdSolutions?tab=readme-ov-file#applying-a-script-ublock-origin)** - Twitch Adblocker
|
||||
* ⭐ **[AdGuard Extra](https://github.com/AdguardTeam/AdGuardExtra)** - Twitch Adblocker
|
||||
* [TTV LOL PRO](https://github.com/younesaassila/ttv-lol-pro) - Twitch Adblocker / [Proxies](https://wiki.cdn-perfprod.com/v/v1/must-read/proxies)
|
||||
|
|
@ -624,7 +624,8 @@ ## ▷ Viewers / Downloaders
|
|||
|
||||
# ► Blogging Tools
|
||||
|
||||
* ⭐ **[Bear Blog](https://bearblog.dev/)** / [GitHub](https://github.com/HermanMartinus/bearblog), **[TinyBones](https://tinybones.pages.dev/)** / [GitHub](https://github.com/itzcozi/tinybones), [Mataroa](https://mataroa.blog/) or [smol.pub](https://smol.pub/) / [Key](https://m15o.ichi.city/smolpub/key-request.html) - Minimalist Blogging Platforms
|
||||
* ⭐ **[Bear Blog](https://bearblog.dev/)** / [GitHub](https://github.com/HermanMartinus/bearblog), **[TinyBones](https://tinybones.pages.dev/)** / [GitHub](https://github.com/itzcozi/tinybones), [Mataroa](https://mataroa.blog/), [btw](https://www.btw.so/) / [Discord](https://discord.com/invite/vbDysPXJuF) / [GitHub](https://github.com/btw-so/btw)
|
||||
or [smol.pub](https://smol.pub/) / [Key](https://m15o.ichi.city/smolpub/key-request.html) - Minimalist Blogging Platforms
|
||||
* [Telescope](https://telescope.ac/) - Publishing Platform
|
||||
* [Dreamwidth](https://www.dreamwidth.org/) - Blogging Platform
|
||||
* [Haven](https://havenweb.org/) or [WriteFreely](https://writefreely.org/) - Self-Hosted Blogging Platforms
|
||||
|
|
|
|||
|
|
@ -69,10 +69,10 @@ ## Design Resources
|
|||
|
||||
## Digital Art Collections
|
||||
|
||||
* ⭐ **[vads](https://vads.ac.uk/digital/)**
|
||||
* ⭐ **[VADS](https://vads.ac.uk/digital/)**
|
||||
* ⭐ **[Arts and Culture](https://artsandculture.google.com/)**
|
||||
|
||||
[Painting Index](https://index-of.eu/Paintings/), [The Met](https://www.metmuseum.org/art/collection), [rijksstudio](https://www.rijksmuseum.nl/en/rijksstudio), [Haltadefinizione](https://www.haltadefinizione.com/en/), [Artcyclopedia](http://www.artcyclopedia.com/), [The Wolfman Museum of Art](https://wolfmanmuseum.org/), [DarkClassics](https://darkclassics.blogspot.com/), [European Art](https://photos.app.goo.gl/q5GRdpSvARAqhbSh6), [The Watercolour World](https://www.watercolourworld.org/), [Museo](https://museo.app/), [Arthur](https://arthur.io/), [WGA](https://www.wga.hu/), [Gallerix](https://gallerix.org/), [WikiArt](https://www.wikiart.org/), [Public Work](https://public.work/), [Public Domain Image Archive](https://pdimagearchive.org/), [V&A](https://www.vam.ac.uk/), [Louvre](https://collections.louvre.fr/en/), [Artchive](https://www.artchive.com/), [S.D. Cason](https://sdcason.com/categories/), [Frick](https://www.frick.org/art), [RCT](https://www.rct.uk/collection/), [Artic](https://www.artic.edu/collection), [Artvee](https://artvee.com/), [Moma](https://www.moma.org/collection/), [Guggenheim](https://www.guggenheim.org/collection-online), [Deutsche Digitale](https://www.deutsche-digitale-bibliothek.de/?lang=en), [NGA](https://www.nga.gov)
|
||||
[Painting Index](https://index-of.eu/Paintings/), [The Met](https://www.metmuseum.org/art/collection), [rijksstudio](https://www.rijksmuseum.nl/en/rijksstudio), [Haltadefinizione](https://www.haltadefinizione.com/en/), [Artcyclopedia](http://www.artcyclopedia.com/), [The Wolfman Museum of Art](https://wolfmanmuseum.org/), [DarkClassics](https://darkclassics.blogspot.com/), [European Art](https://photos.app.goo.gl/q5GRdpSvARAqhbSh6), [The Watercolour World](https://www.watercolourworld.org/), [Museo](https://museo.app/), [Arthur](https://arthur.io/), [WGA](https://www.wga.hu/), [Gallerix](https://gallerix.org/), [WikiArt](https://www.wikiart.org/), [Public Work](https://public.work/), [Public Domain Image Archive](https://pdimagearchive.org/), [V&A](https://www.vam.ac.uk/), [Louvre](https://collections.louvre.fr/en/), [Artchive](https://www.artchive.com/), [S.D. Cason](https://sdcason.com/categories/), [Frick](https://www.frick.org/art), [RCT](https://www.rct.uk/collection/), [Artic](https://www.artic.edu/collection), [Artvee](https://artvee.com/), [MoMA](https://www.moma.org/collection/), [Guggenheim](https://www.guggenheim.org/collection-online), [Deutsche Digitale](https://www.deutsche-digitale-bibliothek.de/?lang=en), [NGA](https://www.nga.gov), [Semantic Art Search](https://semantic-art-search.com/) / [GitHub](https://github.com/KristianMSchmidt/semantic-art-search)
|
||||
|
||||
***
|
||||
|
||||
|
|
@ -261,9 +261,8 @@ ## Manga Readers
|
|||
* ↪️ **[Android Readers](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/android#wiki_.25B7_android_manga)** / **[iOS Readers](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/android#wiki_.25BA_ios_reading)**
|
||||
* ⭐ **[Suwayomi](https://github.com/Suwayomi)**
|
||||
* ⭐ **Suwayomi Tools** - [Extensions](https://keiyoushi.github.io/), [2](https://discord.gg/3FbCpdKbdY) / [Desktop Client](https://github.com/Suwayomi/Suwayomi-Server)
|
||||
* ⭐ **[Houdoku](https://houdoku.org/)** / [GitHub](https://github.com/xgi/houdoku)
|
||||
|
||||
[AllMangasReader](https://allmangasreader.com/), [Adolla](https://github.com/AdollaApp/Adolla), [OpenComic](https://github.com/ollm/OpenComic), [Tachidesk-Sorayomi](https://github.com/Suwayomi/Tachidesk-Sorayomi), [Manga-Organizer](https://gitgud.io/Nagru/Manga-Organizer), [MangaOnlineViewer](https://github.com/TagoDR/MangaOnlineViewer), [LANraragi](https://github.com/Difegue/LANraragi), [Unyo](https://github.com/K3vinb5/Unyo)
|
||||
[AllMangasReader](https://allmangasreader.com/),, [Houdoku](https://houdoku.org/) / [GitHub](https://github.com/xgi/houdoku), [Adolla](https://github.com/AdollaApp/Adolla), [OpenComic](https://github.com/ollm/OpenComic), [Tachidesk-Sorayomi](https://github.com/Suwayomi/Tachidesk-Sorayomi), [Manga-Organizer](https://gitgud.io/Nagru/Manga-Organizer), [MangaOnlineViewer](https://github.com/TagoDR/MangaOnlineViewer), [LANraragi](https://github.com/Difegue/LANraragi), [Unyo](https://github.com/K3vinb5/Unyo)
|
||||
|
||||
### Self-Hosted
|
||||
|
||||
|
|
@ -322,7 +321,7 @@ ### Premium Only Launchers
|
|||
* [PandoraLauncher](https://pandora.moulberry.com/) - Launcher / [GitHub](https://github.com/Moulberry/PandoraLauncher)
|
||||
* [GDLauncher](https://gdlauncher.com/) - Launcher / [Discord](https://discord.com/invite/8n3NnERF22)
|
||||
* [WineGDK](https://github.com/Weather-OS/WineGDK) - Bedrock Launcher / macOS / Linux
|
||||
* [Amethyst](https://github.com/AngelAuraMC/Amethyst-Android), [2]()https://github.com/AngelAuraMC/Amethyst-iOS) - Mobile Launcher / Android, iOS / [Discord](https://discord.gg/5ptqkyZxEy)
|
||||
* [Amethyst](https://github.com/AngelAuraMC/Amethyst-Android), [2](https://github.com/AngelAuraMC/Amethyst-iOS) - Mobile Launcher / Android, iOS / [Discord](https://discord.gg/5ptqkyZxEy)
|
||||
|
||||
***
|
||||
|
||||
|
|
|
|||
|
|
@ -191,7 +191,6 @@ ## ▷ Virtual Machines
|
|||
* [winevdm](https://github.com/otya128/winevdm) - 16-bit Windows on 64-bit Systems
|
||||
* [Blink](https://github.com/jart/blink) - Linux Emulator for Windows
|
||||
* [Dockerholics](https://github.com/petersem/dockerholics) - Docker Apps
|
||||
* [WebCatalog](https://webcatalog.io) - Turn Sites into Desktop Apps
|
||||
|
||||
***
|
||||
|
||||
|
|
@ -307,8 +306,9 @@ ## ▷ Mouse / Keyboard
|
|||
|
||||
* ⭐ **[r/MechanicalKeyboards Wiki](https://www.reddit.com/r/MechanicalKeyboards/wiki/index)** - Mechanical Keyboard Resources
|
||||
* ⭐ **[Hotkey Cheatsheet](https://hotkeycheatsheet.com/)**, [KeyCombiner](https://keycombiner.com/) or [Use The Keyboard](https://usethekeyboard.com/) - Hotkey Cheatsheets
|
||||
* ⭐ **[VIA](https://usevia.app/)** / [GitHub](https://github.com/the-via/app), [SharpKeys](https://github.com/randyrants/sharpkeys/), [Kanata](https://github.com/jtroo/kanata), [keymapper](https://github.com/houmain/keymapper), [Ergogen](https://ergogen.xyz/), [Mahou](https://gitea.com/BladeMight/Mahou) - Custom Keyboard Layouts / Remapping
|
||||
* ⭐ **[VIA](https://www.caniusevia.com/)** / [GitHub](https://github.com/the-via/app), [SharpKeys](https://github.com/randyrants/sharpkeys/), [Kanata](https://github.com/jtroo/kanata), [keymapper](https://github.com/houmain/keymapper), [Ergogen](https://ergogen.xyz/), [Mahou](https://gitea.com/BladeMight/Mahou) - Custom Keyboard Layouts / Remapping
|
||||
* ⭐ **[geekhack](https://geekhack.org/)** or [KeebTalk](https://www.keebtalk.com/) - Keyboard Forums
|
||||
* [Keyboard Tester](https://keyboardtest.io/) or [Key Test](https://en.key-test.ru/) - Keyboard Testers
|
||||
* [HotkeyP](https://sourceforge.net/projects/hotkeyp/) or [CheatKeys](https://cheatkeys.com/cheatsheet) - Hotkey Remapping
|
||||
* [X-Mouse Button Control](https://www.highrez.co.uk/downloads/XMouseButtonControl.htm) - Re-Map Mouse Buttons / Scroll Wheel
|
||||
* [MoveMouse](https://github.com/sw3103/movemouse/) or [MouseJiggler](https://github.com/arkane-systems/mousejiggler) - Simulate User Activity
|
||||
|
|
@ -326,7 +326,6 @@ ## ▷ Mouse / Keyboard
|
|||
* [KDB](http://xahlee.info/kbd/keyboarding.html) - Mechanical Keyboard Building Guides
|
||||
* [Cosmos](https://ryanis.cool/cosmos/) - Create Custom Keyboards
|
||||
* [Keyboard Simulator](https://keyboardsimulator.xyz/) - Design & Test Virtual Keyboards
|
||||
* [Key Test](https://en.key-test.ru/) - Keyboard Tester
|
||||
|
||||
***
|
||||
|
||||
|
|
@ -448,7 +447,7 @@ ## ▷ App Themes
|
|||
|
||||
## ▷ Wallpapers
|
||||
|
||||
* 🌐 **[WallSync](https://roigoatzzz.github.io/Wallsync/)**, [2](https://wallsync.pages.dev/) - Wallpaper Site Index / [GitHub](https://github.com/leroiduflow/Wallsync)
|
||||
* 🌐 **[WallSync](https://roigoatzzz.netlify.app/)**, [2](https://wallsync.pages.dev/) - Wallpaper Site Index / [GitHub](https://github.com/leroiduflow/Wallsync)
|
||||
* ⭐ **[wallhaven.cc](https://wallhaven.cc/)** - Search Wallpapers / [Downloader](https://github.com/eramdam/WallbaseDirectDownloader)
|
||||
* ⭐ **[Wallpaper Abyss](https://wall.alphacoders.com/)** - Search Wallpapers
|
||||
* ⭐ **[Rev Wallpaper](https://weris.ordinall.dev/)** or [r/WallpaperRequests](https://www.reddit.com/r/WallpaperRequests/) - Reverse Wallpaper Search
|
||||
|
|
|
|||
|
|
@ -33,7 +33,7 @@ ## ▷ Pastebins
|
|||
|
||||
* ⭐ **[GitHub Gists](https://gist.github.com/)** or [GitLab Snippets](https://docs.gitlab.com/user/snippets/) - Multi-Syntax / Requires Sign-Up
|
||||
* ⭐ **[pastes.dev](https://pastes.dev/)** - Multi-Syntax / Markdown Support / [GitHub](https://github.com/lucko/paste)
|
||||
* ⭐ **[paste.fmhy](https://paste.fmhy.bid/)**, **[PrivateBin](https://privatebin.net/)**, [NoteBin](https://notebin.de/) or [ZeroBin](https://www.zerobin.net/) - Markdown Support / Syntax Highlighting / [Instances](https://privatebin.info/directory) / [GitHub](https://github.com/PrivateBin/PrivateBin)
|
||||
* ⭐ **[PrivateBin](https://privatebin.net/)**, [NoteBin](https://notebin.de/) or [ZeroBin](https://www.zerobin.net/) - Markdown Support / Syntax Highlighting / [Instances](https://privatebin.info/directory) / [GitHub](https://github.com/PrivateBin/PrivateBin)
|
||||
* ⭐ **[Rentry](https://rentry.co/)**, [2](https://rentry.org/) - Markdown Support / [CLI](https://github.com/radude/rentry) / [Styling](https://rentry.co/rentryarchived)
|
||||
* ⭐ **[Markbox](https://fluffle.cc/)** - Markdown Support / [Source](https://git.0x8e.net/t/fluffle)
|
||||
* ⭐ **[Katbin](https://katb.in/)** - Plain Text / [GitHub](https://github.com/sphericalkat/katbin)
|
||||
|
|
@ -188,7 +188,7 @@ ## ▷ Typing Lessons
|
|||
* ⭐ **[Monkeytype](https://monkeytype.com/)** - Custom Touch Typing Tests / [Discord](https://discord.com/invite/monkeytype) / [GitHub](https://github.com/monkeytypegame/monkeytype)
|
||||
* ⭐ **[keybr](https://www.keybr.com/)** - Custom Touch Typing Practice / [GitHub](https://github.com/aradzie/keybr.com)
|
||||
* [Typing Guide](https://docs.google.com/document/d/1W0jhfqJI2ueJ2FNseR4YAFpNfsUM-_FlREHbpNGmC2o) - In-Depth Typing Guide
|
||||
* [Typ.ing](https://typ.ing/), [Typings](https://typings.gg/) or [typing.works](https://typing.works/) - Typing Tests
|
||||
* [Typ.ing](https://typ.ing/), [Typings](https://typings.gg/), [TypeGG](https://typegg.io/) / [Discord](https://discord.com/invite/64v955z) or [typing.works](https://typing.works/) - Typing Tests
|
||||
* [Typing.com](https://www.typing.com/) - Touch Typing Lessons
|
||||
* [Typing Club](https://www.typingclub.com/) - Touch Typing Lessons
|
||||
* [typing.academy](https://www.typing.academy/) - Typing Lessons / Requires JavaScript Enabled
|
||||
|
|
@ -266,6 +266,7 @@ ## ▷ Office Suites
|
|||
* ⭐ **[OnlyOffice](https://www.onlyoffice.com/)** - FOSS Office Suite
|
||||
* ⭐ **[Microsoft Office](https://massgrave.dev/office_c2r_links)** - Office Suite / [Hotkeys](https://support.microsoft.com/en-us/office/keyboard-shortcuts-in-microsoft-365-e765366f-24fc-4054-870d-39b214f223fd) / [Removal Tool](https://github.com/abbodi1406/WHD/blob/master/scripts/OfficeScrubber_13.zip), [2](https://gitlab.com/stdout12/batutil/-/tree/master/OfficeScrubber), [3](https://codeberg.org/stdout12/BatUtil/src/branch/master/OfficeScrubber)
|
||||
* [Calligra](https://calligra.org/) - FOSS Office Suite
|
||||
* [Ziziyi](https://office.ziziyi.com/) - Online Office Suite Office / [GitHub](https://github.com/baotlake/office-website)
|
||||
* [Office365Version](https://www.office365versions.com/) - Office 365 Version History
|
||||
|
||||
***
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@ # ► Video Tools
|
|||
|
||||
* 🌐 **[Digital Video Intro](https://github.com/leandromoreira/digital_video_introduction)** - Digital Video Guides / Resources
|
||||
* ↪️ **[AI Video Generators](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/ai#wiki_.25BA_video_generation)**
|
||||
* ⭐ **[Reincubate Camo](https://reincubate.com/camo/)** - Use Any Camera as Webcam
|
||||
* ⭐ **[Reincubate Camo](https://camo.com/studio)** - Use Any Camera as Webcam
|
||||
* [Kast](https://kast.gg/), [Screen Share Party](https://ba.net/screen/) or [Screenz](https://screenz.agst.dev/) - Online Screen Share
|
||||
* [LonelyScreen](https://www.lonelyscreen.com/) - AirPlay Receiver for PC / macOS
|
||||
* [Deep-Live-Cam](https://github.com/hacksider/Deep-Live-Cam), [Rope](https://github.com/Hillobar/Rope), [SimSwap](https://github.com/neuralchen/SimSwap) or [Roop](https://github.com/s0md3v/roop) - Video Face Swap Tools
|
||||
|
|
@ -31,7 +31,7 @@ ## ▷ Disc Utilities
|
|||
* [PgcDemux](https://www.videohelp.com/software/PgcDemux) - DVD Disk Demuxer
|
||||
* [BatchGuy](https://github.com/yaboy58/BatchGuy) - Blu-ray Ripping
|
||||
* [UHD Drives Flashing Guide](https://forum.makemkv.com/forum/viewtopic.php?f=16&t=19634)
|
||||
* [Redump](http://redump.org/) - Disc Preservation Project
|
||||
* [Redump](http://redump.org/) - Disc Preservation Info Project
|
||||
|
||||
***
|
||||
|
||||
|
|
|
|||
|
|
@ -13,7 +13,6 @@ # ► Streaming Sites
|
|||
* ⭐ **[Cineby](https://www.cineby.gd/)**, [2](https://www.bitcine.app/) or [Fmovies+](https://www.fmovies.gd/) - Movies / TV / Anime / Auto-Next / [Discord](https://discord.gg/C2zGTdUbHE)
|
||||
* ⭐ **[XPrime](https://xprime.today/)**, [2](https://xprime.stream/) - Movies / TV / Anime / Auto-Next / [Discord](https://discord.gg/794xDTqN)
|
||||
* ⭐ **[Rive](https://rivestream.org/)**, [2](https://rivestream.net/), [3](https://www.rivestream.app/) or [CorsFlix](https://watch.corsflix.net), [2](https://watch.corsflix.dpdns.org/), [3](https://corsflix.net) - Movies / TV / Anime / Auto-Next / [Status](https://rentry.co/rivestream) / [Discord](https://discord.gg/6xJmJja8fV)
|
||||
* ⭐ **[P-Stream](https://pstream.mov/)** - Movies / TV / Anime / Auto-Next / [Desktop](https://github.com/p-stream/p-stream-desktop) / [Discord](https://discord.gg/zTxZQ4tmdj) / [GitHub](https://github.com/p-stream) / **[Add Sources](https://github.com/fmhy/edit/blob/main/docs/.vitepress/notes/movie-web-sources.md)**
|
||||
* ⭐ **[67Movies](https://67movies.net/)** or [456movie](https://456movie.nl), [2](https://345movie.nl) - Movies / TV / Anime / Auto-Next / [Discord](https://discord.gg/4SJ5c9gZUQ)
|
||||
* ⭐ **[Aether](https://aether.mom/)**, [2](https://legacy.aether.mom/) - Movies / TV / Anime / Auto-Next / [Discord](https://discord.gg/MadMF7xb5q)
|
||||
* ⭐ **[FlickyStream](https://flickystream.ru/)** or [CineMora](https://cinemora.ru/) - Movies / TV / Anime / Auto-Next
|
||||
|
|
@ -24,7 +23,8 @@ # ► Streaming Sites
|
|||
* [Cinema.BZ](https://cinema.bz/) - Movies / TV / Anime / Auto-Next / [Telegram](https://t.me/cinemabz)
|
||||
* [Cinevibe](https://cinevibe.asia/) - Movies / TV / Anime / [Discord](https://discord.com/invite/4BU2XbAPdu)
|
||||
* [FilmCave](https://filmcave.ru/) or [Flixway](https://flixway.pro/) - Movies / TV / Anime / Auto-Next / [Telegram](https://t.me/fmcave) / [Discord](https://discord.gg/BtpYzMbDjH)
|
||||
* [PopcornMovies](https://popcornmovies.org/) or [Movish](https://movish.net/) - Movies / TV / Anime / [Discord](https://discord.com/invite/JAxTMkmcpd)
|
||||
* [PopcornMovies](https://popcornmovies.org/) - Movies / TV / Anime / [Discord](https://discord.com/invite/JAxTMkmcpd)
|
||||
* [Movish](https://movish.net/) - Movies / TV / Anime
|
||||
* [Cinetaro](https://cinetaro.buzz/) - Movies / TV / Anime
|
||||
* [IceFY](https://icefy.top/) - Movies / TV / Anime
|
||||
* [Smashystream](https://smashystream.com/), [2](https://flix.smashystream.xyz/), [3](https://smashystream.xyz/) - Movies / TV / Anime / [Telegram](https://telegram.me/+vekZX4KtMPtiYmRl)
|
||||
|
|
@ -37,6 +37,7 @@ # ► Streaming Sites
|
|||
* [PrimeWire](https://www.primewire.mov/), [2](https://primewire.si/), [3](https://primewire.zip/) - Movies / TV / Anime / Mostly 3rd Party Hosts / [Status / Mirrors](https://primewire.nexus/)
|
||||
* [ProjectFreeTV](https://projectfreetv.sx/) - Movies / TV / Anime / 3rd Party Hosts
|
||||
* [Downloads-Anymovies](https://www.downloads-anymovies.co/) - Movies / 3rd Party Hosts
|
||||
* [P-Stream Hosting](https://p-stream.github.io/docs/) - P-Stream Hosting Guide / Docs
|
||||
|
||||
***
|
||||
|
||||
|
|
@ -49,7 +50,7 @@ ## ▷ Single Server
|
|||
* ⭐ **[NEPU](https://nepu.to/)** - Movies / TV / Anime / Auto-Next / 4K / [Status](https://rar.to/) / [Discord](https://discord.gg/nepu)
|
||||
* ⭐ **[EE3](https://ee3.me/)** or [RIPS](https://rips.cc/) - Movies / Invite Codes: `mpgh` or `1hack` / Requires Sign-Up
|
||||
* ⭐ **[yFlix](https://yflix.to/)** or [1Movies](https://1movies.bz/) - Movies / TV / Anime / Auto-Next / [Clones](https://rentry.co/sflix#yflix-clones)
|
||||
* [MovieBox](https://moviebox.ph/), [2](https://themoviebox.org/), [3](https://movieboxapp.in/), [4](https://moviebox.pk/) - Movies / TV / Anime
|
||||
* [MovieBox](https://moviebox.ph/), [2](https://themoviebox.org/), [3](https://movieboxapp.in/), [4](https://moviebox.pk/), [5](https://123movie.app/), [6](https://netnaija.film/), [7](https://movieboxonline.net/) - Movies / TV / Anime
|
||||
* [CinemaCity](https://cinemacity.cc/) - Movies / TV / Anime / Requires Sign-Up
|
||||
* [RidoMovies](https://ridomovies.tv/) - Movies / TV
|
||||
* [WatchFlix](https://watchflix.to/) - Movies / TV / Anime / 720p
|
||||
|
|
@ -71,7 +72,7 @@ ## ▷ Stream Aggregators
|
|||
|
||||
***
|
||||
|
||||
* ⭐ **[Flixer](https://flixer.sh)** / [Discord](https://discord.com/invite/Z9Hjeqe4Fr), [Hexa](https://hexa.su/) / [Discord](https://discord.com/invite/yvwWjqvzjE) or [Vidora](https://watch.vidora.su/) - Movies / TV / Anime / Auto-Next
|
||||
* ⭐ **[Flixer](https://flixer.su)** / [Discord](https://discord.com/invite/Z9Hjeqe4Fr), [Hexa](https://hexa.su/) / [Discord](https://discord.com/invite/yvwWjqvzjE) or [Vidora](https://watch.vidora.su/) - Movies / TV / Anime / Auto-Next
|
||||
* ⭐ **[bCine](https://bcine.app/)** - Movies / TV / Anime / Auto-Next / [Discord](https://discord.gg/FekgaSAtJa)
|
||||
* ⭐ **[Filmex](https://filmex.to/)** - Movies / TV / Anime / Auto-Next / 4K / [Discord](https://discord.com/invite/WWrWnG8qmh)
|
||||
* ⭐ **[Vidbox](https://vidbox.cc/)**, [2](https://cinehd.cc/), [3](https://hotflix.to/) - Movies / TV / Anime / Auto-Next / [Status](https://vidbox.xyz/) / [Discord](https://discord.gg/VGQKGPM9Ej)
|
||||
|
|
@ -79,8 +80,9 @@ ## ▷ Stream Aggregators
|
|||
* ⭐ **[CinemaOS](https://cinemaos.live/)**, [2](https://cinemaos.tech/), [3](https://cinemaos.me/) - Movies / TV / Anime / Auto-Next / [Discord](https://discord.gg/38yFnFCJnA)
|
||||
* ⭐ **[FlyX](https://tv.vynx.cc/)** - Movies / TV / Anime / Auto-Next / [Discord](https://discord.gg/Eq2P3bRpyb) / [GitHub](https://github.com/Vynx-Velvet/Flyx-main)
|
||||
* ⭐ **[AuroraScreen](https://www.aurorascreen.org/)** - Movies / TV / Anime / Auto-Next / Requires Chromium / [Discord](https://discord.com/invite/kPUWwAQCzk)
|
||||
* ⭐ **[Poprink](https://www.popr.ink/)** - Movies / TV / Anime / [Discord](https://discord.com/invite/Wvxr9YsHHf)
|
||||
* ⭐ **[SanuFlix](https://sanuflix-web-v2.pages.dev/)** - Movies / TV / Anime
|
||||
* ⭐ **[Poprink](https://www.popr.ink/)** - Movies / TV / Anime / [Telegram](https://t.me/poprink) / [Discord](https://discord.com/invite/Wvxr9YsHHf)
|
||||
* ⭐ **[SanuFlix](https://sanuflix-web-v2.pages.dev/)** - Movies / TV / Anime
|
||||
* ⭐ **[amri.gg](https://amri.gg/)** - Movies / TV / Anime / Auto-Next / [Discord](https://discord.com/invite/xNYQ2Yha)
|
||||
* [HydraHD](https://hydrahd.com/), [2](https://hydrahd.ru/) - Movies / TV / Anime / Auto-Next / [Status](https://hydrahd.info/) / [Telegram](https://t.me/HDHYDRAHD)
|
||||
* [Primeshows](https://www.primeshows.uk/) or [Netflex](https://netflex.uk/) - Movies / TV / Anime / [Discord](https://discord.com/invite/t2PnzRgKeM)
|
||||
* [LordFlix](https://lordflix.club/) - Movies / TV / Anime / Auto-Next / [Discord](https://discord.gg/JeMDzxSbhH)
|
||||
|
|
@ -88,10 +90,8 @@ ## ▷ Stream Aggregators
|
|||
* [1PrimeShows](https://1primeshow.online/) - Movies / TV / Anime / [Discord](https://discord.gg/7JKJSbnHqf)
|
||||
* [ZXCSTREAM](https://zxcprime.icu/) - Movies / TV / [Telegram](https://t.me/zxc_stream) / [Discord](https://discord.gg/yv7wJV97Jd)
|
||||
* [KiraStreams](https://kirastreamsv2.vercel.app/) - Movies / TV / Anime / [GitHub](https://github.com/amalxloop/kirastreams)
|
||||
* [amri.gg](https://amri.gg/) - Movies / TV / Anime / Auto-Next / [Discord](https://discord.com/invite/xNYQ2Yha)
|
||||
* [Netplay](https://netplayz.live/) or [Cinelove](https://cinelove.live/) - Movies / TV / Anime / Auto-Next / [Discord](https://discord.gg/NCH4rzxJ36)
|
||||
* [Youflex](https://youflex.live/) - Movies / TV / Anime
|
||||
* [rayflix](https://mov-web.cometclient.dev/), [2](https://tv.mrrpmeowfurry.dev/) - Movies / TV / Anime / Auto-Next / [Discord](https://discord.gg/gBmb3KJrVe)
|
||||
* [StreamWatch](https://streamwatch.online/), [2](https://streamwatch.youplex.site/) - Movies / TV / Anime / Auto-Next / [Discord](https://discord.gg/5eWu9Vz6tQ) / [GitHub](https://github.com/steveyout/streamwatch)
|
||||
* [Mapple.tv](https://mappl.tv/) - Movies / TV / Anime / [Discord](https://discord.gg/V8XUhQb2MZ)
|
||||
* [QuickWatch](https://www.quickwatch.co/) - Movies / TV / Anime / [Discord](https://discord.com/invite/PHDRg4K7hD)
|
||||
|
|
@ -109,11 +109,11 @@ ## ▷ Embed Frontends
|
|||
***
|
||||
|
||||
* ⭐ **[VoidFlix](https://flixzy.pages.dev/)** or [Flixzy](https://flixzy.pages.dev/) - Movies / TV / Anime / Auto-Next / [Discord](https://discord.gg/GDfP8S243T)
|
||||
* ⭐ **[TMovie](https://tmovie.tv/)**, [2](https://tmovie.cc) - Movies / TV / Anime / [Discord](https://discord.com/invite/R7a6yWMmfK)
|
||||
* ⭐ **[Cinezo](https://www.cinezo.net/)**, [Flikhub](https://www.flikhub.net/) or [Yenime](https://yenime.net/) - Movies / TV / Anime / Auto-Next / [Discord](https://discord.gg/Gx27YMK73d)
|
||||
* ⭐ **[Cinezo](https://www.cinezo.net/)** or [Flikhub](https://www.flikhub.net/) - Movies / TV / Anime / Auto-Next / [Discord](https://discord.gg/Gx27YMK73d)
|
||||
* [Redflix](https://redflix.co/), [2](https://redflix.club/) - Movies / TV / Anime / [Discord](https://discord.gg/wp5SkSWHW5)
|
||||
* [Flixvo](https://flixvo.live/), [2](https://flixvo.fun/) - Movies / TV / Anime
|
||||
* [BoredFlix](https://www.boredflix.com/) - Movies / TV / Anime / [Discord](https://discord.gg/VHDedCcbGY)
|
||||
* [TeleV](https://stream.telev.tv/) - Movies / TV / Anime / [Discord](https://discord.gg/bPez4gxuze)
|
||||
* [AlienFlix](https://alienflix.net/), [2](https://hexawatch.cc/), [3](https://nunflix.li/) - Movies / TV / Anime
|
||||
* [CineBolt](https://cinebolt.net/) - Movies / TV / Anime / [Discord](https://discord.gg/7ZbCzMPt6f)
|
||||
* [ONOFLIX](https://onoflix.ru/) - Movies / TV / Anime / [Discord](https://discord.gg/eEmGSZ98cP)
|
||||
|
|
@ -129,13 +129,20 @@ ## ▷ Embed Frontends
|
|||
* [M-Zone](https://www.m-zone.org/) - Movies / TV / Anime / [Discord](https://discord.com/invite/PFvCNcZCQC)
|
||||
* [MoviePluto](https://moviepluto.fun/) - Movies / TV / Anime / [Discord](https://discord.com/invite/ynfvjgHrBd)
|
||||
* [VIBLIX](https://viblix.ovh/) - Movies / TV / Anime
|
||||
* [321Movies](https://321movies.xyz/) - Movies / TV / Anime / [Discord](https://discord.gg/7tBsApQUnF)
|
||||
* [VibeMax](https://vibemax.to/) - Movies / TV / Anime
|
||||
* [KrakenFlix](https://krakenflix.cx/) - Movies / TV / Anime
|
||||
* [StreameX](https://streamex.sh/) - Movies / TV / Anime
|
||||
* [Snowstream](https://snowstream.vercel.app/) - Movies / TV / Anime
|
||||
* [ViewfFix](https://viewflix.site/), [2](https://flixwatch.online/) - Movies / TV / Anime / [GitHub](https://github.com/wisnuwirayuda15/cinextma)
|
||||
* [Mjland](https://beta.mjland.xyz/) - Movies / TV / Anime / Customizable Sources
|
||||
* [Ask4Movies](https://ask4movie.app/) - Movies / TV / Anime
|
||||
* [MovieBite](https://moviebite.cc/) - Movies / TV / Anime / [Discord](https://discord.gg/ygexZUCXVa)
|
||||
* [Warflix](https://warflix.im/) - Movies / TV / Anime / [Discord](https://discord.gg/33yA574vvd) / [Telegram](https://t.me/warflix1)
|
||||
* [Heartive](https://heartiveloves.pages.dev/) - Movies / TV / Anime / [Proxy](https://us5.thetravelingtourguide.com/top.v1.html)
|
||||
* [CineGo](https://cinego.co/) - Movies / TV
|
||||
* [Moviepire](https://moviepire.org/) - Movies / TV / Anime / [Telegram](https://t.me/hdoboxapk2)
|
||||
* [Madplay](https://madplay.site/) - Movies / TV / Anime / [Telegram](https://telegram.me/livesportsclub)
|
||||
* [Streaming CSE](https://cse.google.com/cse?cx=006516753008110874046:cfdhwy9o57g##gsc.tab=0), [2](https://cse.google.com/cse?cx=006516753008110874046:o0mf6t-ugea##gsc.tab=0), [3](https://cse.google.com/cse?cx=98916addbaef8b4b6), [4](https://cse.google.com/cse?cx=0199ade0b25835f2e) - Multi-Site Search
|
||||
|
||||
***
|
||||
|
|
@ -218,7 +225,6 @@ # ► Specialty Streaming
|
|||
* [HomeMovies101](https://www.homemovies100.it/en/) - Home Movies
|
||||
* [Prelinger Archives](https://www.panix.com/~footage/) - Ephemeral Films / [Archive](https://archive.org/details/prelinger)
|
||||
* [3DS Movies](https://rentry.co/FMHYB64#3dsm) - 3D Movies for 3DS Handhelds
|
||||
* [r/MusicalBootlegs](https://www.reddit.com/r/MusicalBootlegs) or ["Slime Tutorials"](https://youtube.com/playlist?list=PLsIt5G4GJ27lxWP9Qi5N70zRSkJAT0ntc) - Broadway Show Recordings
|
||||
* [GlobalShakespeares](https://globalshakespeares.mit.edu/) - Shakespeare Performance Recordings
|
||||
* [TVARK](https://tvark.org/) or [Daily Commercials](https://dailycommercials.com/) - Commercial / TV Promo Archives
|
||||
* [MovieCommentaries](https://www.youtube.com/@moviecommentaries) - Movie / TV Director Commentaries
|
||||
|
|
@ -233,7 +239,7 @@ ## ▷ Anime Streaming
|
|||
* 🌐 **[Wotaku](https://wotaku.wiki/websites)** - Anime Site Index / [Discord](https://discord.gg/vShRGx8ZBC) / [GitHub](https://github.com/wotakumoe/Wotaku)
|
||||
* 🌐 **[The Index](https://theindex.moe/library/anime)** - Anime Site Index / [Wiki](https://thewiki.moe/) / [Discord](https://discord.gg/Snackbox)
|
||||
* 🌐 **[EverythingMoe](https://everythingmoe.com/)**, [2](https://everythingmoe.org/)- Anime Site Index / [Subreddit](https://www.reddit.com/r/everythingmoe/) / [Discord](https://discord.gg/GuueaDgKdS)
|
||||
* ⭐ **[AnimeKai](https://animekai.to/home)**, [2](https://anikai.to/), [3](https://animekai.im/),[4](https://animekai.vc/), [5](https://animekai.nl/), [6](https://animekai.la/) or [AniGo](https://anigo.to/) - Hard Subs / Dub / Auto-Next / [Status / Mirrors](https://animekai.ws/), [2](https://animekai.pw/) / [X](https://x.com/animekai_to) / [Subreddit](https://www.reddit.com/r/AnimeKAI/) / [Discord](https://discord.gg/at5d9rkfUy)
|
||||
* ⭐ **[AnimeKai](https://animekai.to/home)**, [2](https://anikai.to/), [3](https://animekai.im/),[4](https://animekai.vc/), [5](https://animekai.nl/), [6](https://animekai.la/) or [AniGo](https://anigo.to/) - Hard Subs / Dub / Auto-Next / [Status / Mirrors](https://animekai.pw/) / [X](https://x.com/animekai_to) / [Subreddit](https://www.reddit.com/r/AnimeKAI/) / [Discord](https://discord.gg/at5d9rkfUy)
|
||||
* ⭐ **[Miruro](https://www.miruro.com/)** - Hard Subs / Dub / Auto-Next / [Subreddit](https://www.reddit.com/r/miruro/) / [GitHub](https://github.com/Miruro-no-kuon/Miruro)
|
||||
* ⭐ **[HiAnime](https://hianime.to/)**, [2](https://hianime.vc/), [3](https://hianime.ps/), [4](https://hianimez.is/), [5](https://hianime.nz/) - Sub / Dub / Auto-Next / [Subreddit](https://reddit.com/r/HiAnimeZone/) / [Telegram](https://t.me/HiAnimeLobby) / [Discord](https://discord.gg/hianime)
|
||||
* ⭐ **HiAnime Resources** - [Official Mirrors](https://hianime.me/) / [Enhancements](https://greasyfork.org/en/scripts/506340) / [Auto-Focus](https://greasyfork.org/en/scripts/506891)
|
||||
|
|
@ -249,8 +255,8 @@ ## ▷ Anime Streaming
|
|||
* [Yenime](https://yenime.net/), [Cinezo](https://www.cinezo.net/) or [Flikhub](https://www.flikhub.net/) - Sub / Dub / Auto-Next / [Discord](https://discord.gg/Gx27YMK73d)
|
||||
* [123anime](https://123animes.ru/) - Sub / Dub / Auto-Next
|
||||
* [Kuudere](https://kuudere.to/), [2](https://kuudere.ru/) - Sub / Dub / Auto-Next / [Telegram](https://t.me/kuudere0to) / [Discord](https://discord.gg/h9v9Vfzp7B)
|
||||
* [Gojo](https://animetsu.net/) - Sub / Dub
|
||||
* [AnimeZ](https://animeyy.com/) - Sub / Dub
|
||||
* [Animetsu](https://animetsu.net/), [2](https://animetsu.net), [3](https://animetsu.cc), [4](https://animetsu.bz), [5](https://animetsu.live) - Sub / Dub
|
||||
* [AnimeYY](https://animeyy.com/) - Sub / Dub
|
||||
* [JustAnime](https://justanime.to/), [2](https://justanime.fun/) - Sub / Dub / Auto-Next / [Mirrors](https://justanime.site/) / [Telegram](https://t.me/JustAnimeZone) / [Discord](https://discord.gg/P3yqksmGun)
|
||||
* [AniKuro](https://anikuro.to/), [2](https://anikuro.ru/) - Sub / Dub / [Status](https://anikuro.site/) / [Telegram](https://t.me/+DrD7eAO7R69mZGM0) / [Discord](https://discord.com/invite/Svc9yFjQBq)
|
||||
* [AnimeNoSub](https://animenosub.to/) - Sub / Dub
|
||||
|
|
@ -269,7 +275,7 @@ ## ▷ Anime Streaming
|
|||
* [AnimeOnsen](https://animeonsen.xyz/) - Sub / 720p / [Discord](https://discord.com/invite/U56ZMrD)
|
||||
* [AnimeStream](https://anime.uniquestream.net/) - Sub / 720p
|
||||
* [FireAnime](https://fireani.me/) - Sub
|
||||
* [AnimeDekho](https://animedekho.in/home) - Sub
|
||||
* [PirateXplay](https://piratexplay.cc/home) - Sub
|
||||
* [AnimeXin](https://animexin.dev/) - Donghua / Sub
|
||||
* [Lucifer Donghua](https://luciferdonghua.in/) - Donghua / Sub / [Telegram](https://telegram.me/luciferdonghuaz)
|
||||
* [LMANIME](https://lmanime.com/) - Donghua / Sub
|
||||
|
|
@ -288,7 +294,7 @@ ## ▷ Cartoon Streaming
|
|||
* ⭐ **[KimCartoon](https://kimcartoon.si/)** - TV
|
||||
* [KissCartoon](https://kisscartoon.nz/), [2](https://kisscartoon.sh/) - TV / [Discord](https://discord.gg/YwpgPrWVSH)
|
||||
* [HiCartoons](https://hicartoon.to/) - TV / Movies
|
||||
* [AnimeDekho](https://animedekho.in/home) - TV / Movies / Anime
|
||||
* [PirateXplay](https://piratexplay.cc/home) - TV / Movies / Anime
|
||||
* [FunnierMoments](https://www.funniermoments.net/) - TV
|
||||
* [B98](https://www.b98.tv/home/) - Classic / TV
|
||||
* [ToonTales](https://www.toontales.net/) - Classic / TV
|
||||
|
|
@ -354,6 +360,7 @@ ## ▷ Classics / Public Domain
|
|||
* [RetroFlix](https://retroflix.org/) - Classic Films
|
||||
* [moonflix](https://moonflix.com/) - Restored & Colorized Classic Films / Shows
|
||||
* [RetroStrange](https://retrostrange.com/) - Live Retro Streams
|
||||
* [NASA+](https://plus.nasa.gov/) - Official NASA Streaming Service
|
||||
* [Old Timey Computer Show](https://otcs.minuspoint.com/schedule.html) - Live Retro Computer / Game Media Streams
|
||||
* [FilmsByTheYear](https://www.youtube.com/@FilmsbytheYear/playlists) - Classic Films Playlists / YouTube
|
||||
* [Wu Tang Collection](https://www.thewutangcollection.com/) - Classic Martial Arts Films
|
||||
|
|
@ -404,6 +411,7 @@ # ► Live TV / Sports
|
|||
## ▷ Live TV
|
||||
|
||||
* 🌐 **[TVCL](https://www.tvchannellists.com/)** - TV Channel Index
|
||||
* ⭐ **[Sports4Free](http://sports4free.ru/)** - TV / Sports
|
||||
* ⭐ **[NTV](http://ntv.cx/)**, [2](https://ntvstream.cx/) - TV / Sports / Aggregator / [Mirrors](https://ntv.direct/) / [Telegram](https://t.me/ntvstream) / [Discord](https://discord.gg/uY3ud5gcpW)
|
||||
* ⭐ **[PlayTorrio IPTV](https://iptv.playtorrio.xyz/)** - TV / Sports / [Discord](https://discord.gg/bbkVHRHnRk) / [GitHub](https://github.com/ayman708-UX/PlayTorrio)
|
||||
* ⭐ **[Famelack](https://famelack.com/)** - TV / Sports
|
||||
|
|
@ -439,6 +447,7 @@ ## ▷ Live TV
|
|||
* [Puffer](https://puffer.stanford.edu/) - San Fran TV / Sign-Up Required
|
||||
* [cytube](https://cytu.be/) - Random Streams
|
||||
* [VaughnLive](https://vaughn.live/browse/misc) - Random Streams
|
||||
* [React.tv](https://react.tv/) - Random Streams
|
||||
* [psp-tv](http://sync.coconono.org) - Random Streams
|
||||
* [Baked](https://baked.live/) - Random Streams
|
||||
* [Channel 99](https://www.pracdev.org/channel99/) - Random Streams
|
||||
|
|
@ -476,6 +485,7 @@ ## ▷ Live Sports
|
|||
* [Sportive](https://sportive.pages.dev/) - Stream Aggregator
|
||||
* [FSL](https://freestreams-live1a.pk/) - Stream Aggregator / [Discord](https://discord.gg/eXXJzDPchU)
|
||||
* [Footfy](https://footfy.net/) - Stream Aggregator
|
||||
* [DaddyLive.cv](https://daddylive.cv/), [2](https://daddylive.im/), [3](https://daddylive.top/), [4](https://daddylives.nl/) - Stream Aggregator
|
||||
* [StreamCorner](https://streamcorner.info/), [2](https://streamcorner.cfd), [3](https://streamcorner.sbs) / [Status](https://beacons.ai/streamcorner) / [Discord](http://discord.gg/vV6rRFtWhW)
|
||||
* [GamesCentral](https://www.gamescentral.top/) / [Discord](https://discord.gg/VKbvRcjDwa)
|
||||
* [PlayTorrio IPTV](https://iptv.playtorrio.xyz/) / [Discord](https://discord.gg/bbkVHRHnRk) / [GitHub](https://github.com/ayman708-UX/PlayTorrio)
|
||||
|
|
@ -594,7 +604,7 @@ # ► Smart TV
|
|||
* [Stremio](https://www.stremio.com/) - Torrent Streaming App
|
||||
* [ARVIO](https://github.com/ProdigyV21/ARVIO) - Media Server w/ Stremio Addons + IPTV Support
|
||||
* [SamsungTVPlus](https://www.samsungtvplus.com/) - Streaming App
|
||||
* [Kodi](https://kodi.tv/) - Media Server / Streaming App
|
||||
* [Jellyfin2Samsung](https://github.com/Jellyfin2Samsung) or[Kodi](https://kodi.tv/) - Media Servers / Streaming Apps
|
||||
* [YTCast](https://github.com/MarcoLucidi01/ytcast) - Cast YouTube Videos to Smart TV
|
||||
* [iSponsorBlockTV](https://github.com/dmunozv04/iSponsorBlockTV) - SponsorBlock App
|
||||
* [Playlet](https://channelstore.roku.com/details/4a41d0921265a5e31429a7679442153f:b5bcb5b630c28b01e93bf59856317b43/playlet) - Ad-Free YouTube Roku Client / [GitHub](https://github.com/iBicha/playlet)
|
||||
|
|
@ -674,11 +684,9 @@ # ► Download Sites
|
|||
* [Medeberiya](https://medeberiya.net/) - Movie / TV
|
||||
* [Ripper's Archive](https://rentry.co/FMHYB64#rippers-archive) - Movies / TV / Anime
|
||||
* [MoviesDrive](https://moviesdrive.forum/) - Movies / TV / Anime / [Status](https://moviesdrives.cv/), [2](https://moviedrive.org/) / [Telegram](https://t.me/moviesdrivee)
|
||||
* [P-Stream](https://pstream.mov/) - Movies / TV / Anime / [Discord](https://discord.gg/zTxZQ4tmdj)
|
||||
* [ShowBox](https://www.showbox.media/) - Movies / TV / Anime / 4K / Use [Throwaway Gmail](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/internet-tools/#wiki_.25B7_temp_mail)
|
||||
* [KatMovieHD](https://katworld.net/?type=KatmovieHD) - Movies / TV / Anime
|
||||
* [HindMoviez](https://hindmoviez.cafe/) - Movies / TV / Anime
|
||||
* [TMovie](https://tmovie.tv/) - Movies / TV / Anime / [Discord](https://discord.com/invite/R7a6yWMmfK)
|
||||
* [Sinflix](https://rentry.co/FMHYB64#sinflix) - Asian Drama
|
||||
* [DramaSuki](https://rentry.co/FMHYB64#dramasuki) - Asian Drama
|
||||
* [OlaMovies](https://new1.olamovies.onl/) - Movies / TV / 4K / Requires Google Account / Use [Adblock](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/adblock-vpn-privacy/#wiki_.25BA_adblocking) / [Requests](https://space.olamovies.app/)
|
||||
|
|
|
|||
59
package.json
59
package.json
|
|
@ -24,56 +24,57 @@
|
|||
"@fmhy/components": "^0.0.3",
|
||||
"@headlessui/vue": "^1.7.23",
|
||||
"@resvg/resvg-js": "^2.6.2",
|
||||
"@vueuse/core": "^14.1.0",
|
||||
"@vueuse/integrations": "^14.1.0",
|
||||
"@vueuse/core": "^14.2.1",
|
||||
"@vueuse/integrations": "^14.2.1",
|
||||
"consola": "^3.4.2",
|
||||
"feed": "^5.1.0",
|
||||
"feed": "^5.2.0",
|
||||
"itty-fetcher": "^1.0.10",
|
||||
"mark.js": "^8.11.1",
|
||||
"minisearch": "^7.2.0",
|
||||
"nitro-cors": "^0.7.1",
|
||||
"nitropack": "^2.12.9",
|
||||
"nitropack": "^2.13.1",
|
||||
"nprogress": "^0.2.0",
|
||||
"pathe": "^2.0.3",
|
||||
"reka-ui": "^2.6.1",
|
||||
"unocss": "66.5.10",
|
||||
"reka-ui": "^2.9.0",
|
||||
"sharp": "^0.34.5",
|
||||
"unocss": "66.6.4",
|
||||
"vitepress": "^1.6.4",
|
||||
"vue": "^3.5.25",
|
||||
"vue": "^3.5.29",
|
||||
"x-satori": "^0.4.0",
|
||||
"zod": "^4.1.13"
|
||||
"zod": "^4.3.6"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@cloudflare/workers-types": "^4.20251202.0",
|
||||
"@ianvs/prettier-plugin-sort-imports": "^4.7.0",
|
||||
"@iconify-json/carbon": "^1.2.15",
|
||||
"@iconify-json/fluent": "^1.2.35",
|
||||
"@cloudflare/workers-types": "^4.20260305.1",
|
||||
"@ianvs/prettier-plugin-sort-imports": "^4.7.1",
|
||||
"@iconify-json/carbon": "^1.2.19",
|
||||
"@iconify-json/fluent": "^1.2.40",
|
||||
"@iconify-json/fluent-mdl2": "^1.2.1",
|
||||
"@iconify-json/gravity-ui": "^1.2.10",
|
||||
"@iconify-json/gravity-ui": "^1.2.11",
|
||||
"@iconify-json/heroicons-solid": "^1.2.1",
|
||||
"@iconify-json/logos": "^1.2.10",
|
||||
"@iconify-json/lucide": "^1.2.78",
|
||||
"@iconify-json/material-symbols": "^1.2.49",
|
||||
"@iconify-json/lucide": "^1.2.95",
|
||||
"@iconify-json/material-symbols": "^1.2.59",
|
||||
"@iconify-json/mdi": "^1.2.3",
|
||||
"@iconify-json/ph": "^1.2.2",
|
||||
"@iconify-json/qlementine-icons": "^1.2.12",
|
||||
"@iconify-json/simple-icons": "^1.2.61",
|
||||
"@iconify-json/twemoji": "^1.2.4",
|
||||
"@iconify-json/qlementine-icons": "^1.2.14",
|
||||
"@iconify-json/simple-icons": "^1.2.72",
|
||||
"@iconify-json/twemoji": "^1.2.5",
|
||||
"@iconify/utils": "^3.1.0",
|
||||
"@types/node": "^24.10.1",
|
||||
"@types/node": "^25.3.3",
|
||||
"@types/nprogress": "^0.2.3",
|
||||
"@vue/compiler-sfc": "^3.5.27",
|
||||
"@vue/compiler-sfc": "^3.5.29",
|
||||
"floating-vue": "^5.2.2",
|
||||
"nitro-cloudflare-dev": "^0.2.2",
|
||||
"prettier": "^3.7.4",
|
||||
"prettier-plugin-pkgsort": "^0.2.1",
|
||||
"prettier": "^3.8.1",
|
||||
"prettier-plugin-pkgsort": "^0.3.0",
|
||||
"prettier-plugin-tailwindcss": "^0.7.2",
|
||||
"sass": "^1.94.2",
|
||||
"sass": "^1.97.3",
|
||||
"typescript": "^5.9.3",
|
||||
"unplugin-auto-import": "^20.3.0",
|
||||
"unplugin-auto-import": "^21.0.0",
|
||||
"vite-plugin-optimize-exclude": "^0.0.1",
|
||||
"vite-plugin-pwa": "^1.2.0",
|
||||
"vite-plugin-terminal": "^1.3.0",
|
||||
"wrangler": "^4.52.1"
|
||||
"vite-plugin-terminal": "^1.4.0",
|
||||
"wrangler": "^4.70.0"
|
||||
},
|
||||
"pnpm": {
|
||||
"peerDependencyRules": {
|
||||
|
|
@ -83,7 +84,11 @@
|
|||
]
|
||||
},
|
||||
"onlyBuiltDependencies": [
|
||||
"vue-demi"
|
||||
"@parcel/watcher",
|
||||
"esbuild",
|
||||
"sharp",
|
||||
"vue-demi",
|
||||
"workerd"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
|
|
|||
BIN
pnpm-lock.yaml
BIN
pnpm-lock.yaml
Binary file not shown.
Loading…
Reference in a new issue