Compare commits
1 Commits
main
...
revert-206
Author | SHA1 | Date | |
---|---|---|---|
|
e3816f49e2 |
8
.github/single-page.py
vendored
8
.github/single-page.py
vendored
@ -6,9 +6,13 @@ def output():
|
||||
read = glob.glob("*.md")
|
||||
content = ""
|
||||
nsfw_content = ""
|
||||
ignore_files = {"README.md", "feedback.md", "posts.md", "index.md"}
|
||||
for file in read:
|
||||
if file not in ignore_files:
|
||||
if (
|
||||
file != "README.md"
|
||||
or file != "feedback.md"
|
||||
or file != "posts.md"
|
||||
or file != "index.md"
|
||||
):
|
||||
with open(file, "r") as f:
|
||||
if "NSFWPiracy.md" == file:
|
||||
nsfw_content += f.read()
|
||||
|
16
.github/workflows/deploy-api.yml
vendored
16
.github/workflows/deploy-api.yml
vendored
@ -9,26 +9,18 @@ jobs:
|
||||
ci:
|
||||
name: Release
|
||||
runs-on: ubuntu-latest
|
||||
strategy:
|
||||
matrix:
|
||||
node-version: [20]
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
with:
|
||||
fetch-depth: 6
|
||||
- uses: pnpm/action-setup@v2.4.0
|
||||
|
||||
- name: Install pnpm
|
||||
uses: pnpm/action-setup@v4
|
||||
|
||||
- name: Use Node.js ${{ matrix.node-version }}
|
||||
uses: actions/setup-node@v4
|
||||
- uses: actions/setup-node@v3
|
||||
with:
|
||||
node-version: ${{ matrix.node-version }}
|
||||
node-version: 18
|
||||
cache: 'pnpm'
|
||||
|
||||
- name: Install dependencies
|
||||
run: pnpm install
|
||||
- run: pnpm install --no-frozen-lockfile
|
||||
|
||||
- name: Build
|
||||
run: pnpm api:build
|
||||
|
@ -99,9 +99,7 @@ export default defineConfig({
|
||||
items: [
|
||||
{ text: 'Posts', link: '/posts' },
|
||||
{ text: 'Feedback', link: '/feedback' },
|
||||
{ text: 'snowbin', link: 'https://pastes.fmhy.net' },
|
||||
{ text: 'SearXNG', link: 'https://searx.fmhy.net/'},
|
||||
{ text: 'Whoogle', link: 'https://whoogle.fmhy.net/'}
|
||||
{ text: 'snowbin', link: 'https://pastes.fmhy.net' }
|
||||
]
|
||||
}
|
||||
],
|
||||
|
@ -14,7 +14,7 @@ export const commitRef = process.env.CF_PAGES
|
||||
}">${process.env.CF_PAGES_COMMIT_SHA.slice(0, 8)}</a>`
|
||||
: 'dev'
|
||||
|
||||
export const feedback = `<a href="/feedback" class="feedback-footer">Made with ❤</a>`
|
||||
export const feedback = `<a href="/feedback" class="feedback-footer">Made with ❤️</a>`
|
||||
|
||||
export const search: DefaultTheme.Config['search'] = {
|
||||
options: {
|
||||
@ -22,7 +22,6 @@ export const search: DefaultTheme.Config['search'] = {
|
||||
options: {
|
||||
tokenize: (text) => text.split(/[\n\r #%*,=/:;?[\]{}()&]+/u), // simplified charset: removed [-_.@] and non-english chars (diacritics etc.)
|
||||
processTerm: (term, fieldName) => {
|
||||
// biome-ignore lint/style/noParameterAssign: h
|
||||
term = term
|
||||
.trim()
|
||||
.toLowerCase()
|
||||
|
@ -13,12 +13,12 @@ export async function generateFeed(config: SiteConfig): Promise<void> {
|
||||
const feed: Feed = new Feed({
|
||||
id: meta.hostname,
|
||||
link: meta.hostname,
|
||||
title: 'FMHY blog',
|
||||
title: `FMHY blog`,
|
||||
description: meta.description,
|
||||
language: 'en-US',
|
||||
image: 'https://github.com/fmhy.png',
|
||||
favicon: `${meta.hostname}/favicon.ico`,
|
||||
copyright: 'Copyright (c) 2023-present FMHY'
|
||||
copyright: `Copyright (c) 2023-present FMHY`
|
||||
})
|
||||
|
||||
const posts: ContentData[] = await createContentLoader('posts/*.md', {
|
||||
|
@ -1,4 +1,4 @@
|
||||
import type { MarkdownRenderer } from 'vitepress'
|
||||
import { type MarkdownRenderer } from 'vitepress'
|
||||
|
||||
// FIXME: tasky: possibly write less horror jank?
|
||||
export function base64DecodePlugin(md: MarkdownRenderer) {
|
||||
@ -7,7 +7,7 @@ export function base64DecodePlugin(md: MarkdownRenderer) {
|
||||
// Save the original rule for backticks
|
||||
const defaultRender =
|
||||
md.renderer.rules.code_inline ||
|
||||
function (tokens, idx, options, _env, self) {
|
||||
function (tokens, idx, options, env, self) {
|
||||
return self.renderToken(tokens, idx, options)
|
||||
}
|
||||
|
||||
|
@ -11,7 +11,8 @@ export function toggleStarredPlugin(md: MarkdownRenderer) {
|
||||
contentToken.content.startsWith(':star:')
|
||||
) {
|
||||
return `<li class="starred">`
|
||||
} else {
|
||||
return self.renderToken(tokens, index, options)
|
||||
}
|
||||
return self.renderToken(tokens, index, options)
|
||||
}
|
||||
}
|
||||
|
@ -1,11 +1,6 @@
|
||||
import { corsEventHandler } from 'nitro-cors'
|
||||
|
||||
export default corsEventHandler(
|
||||
(_event) => {
|
||||
/** no-op */
|
||||
},
|
||||
{
|
||||
origin: '*',
|
||||
methods: '*'
|
||||
}
|
||||
)
|
||||
export default corsEventHandler((_event) => {}, {
|
||||
origin: '*',
|
||||
methods: '*'
|
||||
})
|
||||
|
@ -7,14 +7,6 @@ export default defineEventHandler(async (event) => {
|
||||
FeedbackSchema.parseAsync
|
||||
)
|
||||
const env = useRuntimeConfig(event)
|
||||
const { pathname } = new URL(event.node.req.url)
|
||||
|
||||
const { success } = await env.MY_RATE_LIMITER.limit({ key: pathname })
|
||||
if (!success) {
|
||||
return new Response(`429 Failure – rate limit exceeded for ${pathname}`, {
|
||||
status: 429
|
||||
})
|
||||
}
|
||||
|
||||
let description = `${message}\n\n`
|
||||
if (page) description += `**Page:** \`${page}\``
|
||||
|
@ -1,4 +1,4 @@
|
||||
import type { Theme } from 'vitepress'
|
||||
import { type Theme } from 'vitepress'
|
||||
import DefaultTheme from 'vitepress/theme'
|
||||
import Layout from './Layout.vue'
|
||||
import Post from './PostLayout.vue'
|
||||
|
@ -4,7 +4,6 @@ export function groupBy<T, K extends keyof any>(
|
||||
): Record<K, T[]> {
|
||||
return arr.reduce(
|
||||
(groups, item) => {
|
||||
// biome-ignore lint/suspicious/noAssignInExpressions: <explanation>
|
||||
;(groups[key(item)] ||= []).push(item)
|
||||
return groups
|
||||
},
|
||||
|
43
AI.md
43
AI.md
@ -7,6 +7,7 @@
|
||||
# ► AI Chatbots
|
||||
|
||||
* 🌐 **[Awesome ChatGPT](https://github.com/uhub/awesome-chatgpt)** - ChatGPT Resources
|
||||
* 🌐 **[Awesome Free ChatGPT](https://github.com/LiLittleCat/awesome-free-chatgpt/blob/main/README_en.md)** or **[FOFA](https://en.fofa.info/result?qbase64=ImxvYWRpbmctd3JhcCIgJiYgImJhbGxzIiAmJiAiY2hhdCIgJiYgaXNfZG9tYWluPXRydWU%3D)** / [2](https://en.fofa.info/result?qbase64=dGl0bGU9PSJDaGF0R1BUIFdlYiI%3D) - ChatGPT WebUI Indexes
|
||||
* 🌐 **[Every ChatGPT GUI](https://github.com/billmei/every-chatgpt-gui)** - ChatGPT GUI Index
|
||||
* ⭐ **[ChatPDF](https://www.chatpdf.com/)** or [Ask Your PDF](https://askyourpdf.com/) - Turn Books into Chatbots
|
||||
* ⭐ **[TypeSet](https://typeset.io/)** - Research Paper Chatbot
|
||||
@ -22,7 +23,6 @@
|
||||
* [ChatRTX](https://www.nvidia.com/en-us/ai-on-rtx/chatrtx/) - Desktop App / RTX 30+ Series GPU Only
|
||||
* [ChatGPT DeMod](https://github.com/4as/ChatGPT-DeMod) - Block ChatGPT Moderation Checks
|
||||
* [ParallelGPT](https://www.parallelgpt.ai/) - Data Processing AI
|
||||
* [Voice Control](https://voicecontrol.chat/) - ChatGPT Voice Control
|
||||
* [ChatGPT Exporter](https://greasyfork.org/en/scripts/456055) - Export Chats
|
||||
* [GPThemes](https://github.com/itsmartashub/GPThemes) - ChatGPT Themes
|
||||
|
||||
@ -30,29 +30,24 @@
|
||||
|
||||
## ▷ Online Chatbots
|
||||
|
||||
* 🌐 **[Awesome Free ChatGPT](https://github.com/LiLittleCat/awesome-free-chatgpt/blob/main/README_en.md)** or [ChinaGPT](https://github.com/GoldenMelon-Studio/chinagpt-4/) - Online GPT Indexes
|
||||
* ⭐ **[ChatGPT](https://chatgpt.com/)** - GPT-4o Chatbot / [Discord](https://discord.com/invite/openai)
|
||||
* ⭐ **[Microsoft Copilot](https://copilot.microsoft.com)** - GPT-4/3.5 Powered Search / [SydneyQT Jailbreak](https://github.com/juzeon/SydneyQt)
|
||||
* ⭐ **[Morphic](https://www.morphic.sh/)** - GPT-4o Powered Search
|
||||
* ⭐ **[Perplexity](https://www.perplexity.ai/)** - GPT-3.5 Powered Search / [Open Source Models](https://labs.perplexity.ai/)
|
||||
* ⭐ **[wrtn](https://wrtn.ai/)** - GPT-4 Chatbot / [Android](https://play.google.com/store/apps/details?id=com.wrtn.app) / [iOS](https://apps.apple.com/us/app/%EB%A4%BC%ED%8A%BC-%EB%AA%A8%EB%91%90%EB%A5%BC-%EC%9C%84%ED%95%9C-ai-%ED%8F%AC%ED%84%B8/id6448556170) (ask for english)
|
||||
* ⭐ **[Gemini](https://gemini.google.com/)** or [Gemma](https://github.com/google/gemma.cpp), [2](https://ai.google.dev/gemma/) - Google's Chatbot
|
||||
* ⭐ **[Claude](https://claude.ai/)** - Anthropic's Chatbot
|
||||
* ⭐ **[sdk.vercel](https://sdk.vercel.ai/)** - GPT-4o / Multiple Chatbots
|
||||
* ⭐ **[Morphic](https://www.morphic.sh/)** - GPT-4o Powered Search
|
||||
* ⭐ **[Perplexity](https://www.perplexity.ai/)** - GPT-3.5 Powered Search / [Open Source Models](https://labs.perplexity.ai/)
|
||||
* ⭐ **[groq](https://groq.com/)** - Llama 3 and Mixtral Chatbots
|
||||
* ⭐ **[LMSYS Chat](https://chat.lmsys.org/)** - Chat and Compare Multiple Chatbots
|
||||
* [LLM Playground](https://llmplayground.net/) - Multiple Chatbots / [Discord](https://discord.com/invite/q55gsH8z5F) / [API](https://api.discord.rocks/)
|
||||
* [feyn](https://feyn.chat/) - GPT-4o / Multiple Chatbots
|
||||
* [GPT4o.so](https://gpt4o.so/app) - GPT-4o
|
||||
* [LibreChat](https://librechat.ai/) - Multiple Chatbots
|
||||
* [sdk.vercel](https://sdk.vercel.ai/) - Multiple Chatbots
|
||||
* [FFA](https://ffa.chat/) - Multiple Chatbots
|
||||
* [DDG Chat](https://duckduckgo.com/chat) - Multiple Chatbots
|
||||
* [HuggingChat](https://huggingface.co/chat/) - Open-Source Chatbots
|
||||
* [infermatic](https://infermatic.ai/) / [Discord](https://discord.gg/9GUXmDx9GF) - Multiple Chatbots
|
||||
* [lollms-webui](https://github.com/ParisNeo/lollms-webui) - Multiple Chatbots
|
||||
* [MagAI](https://rentry.org/freegpt4withmagai) - Multiple Chatbots
|
||||
* [freegpt4](https://rentry.org/freegpt4) - Free GPT-4 Methods
|
||||
* [Meta AI](https://www.meta.ai/) - Llama 3 Chatbot
|
||||
* [Meta AI](https://www.meta.ai/) - Llama Chatbot / US only
|
||||
* [NVIDIA NIM](https://build.nvidia.com/) - Llama 3
|
||||
* [Phind](https://www.phind.com/) - Llama Search Engine
|
||||
* [Perplexica](https://github.com/ItzCrazyKns/Perplexica) - AI Search Engine
|
||||
@ -60,16 +55,15 @@
|
||||
* [iAsk](https://iask.ai/) - AI Search Engine
|
||||
* [Mindfulq](https://www.mindfulq.com/) - AI Search Engine
|
||||
* [Andi](https://andisearch.com/) - AI Search Engine
|
||||
* [You](https://you.com/) - AI Search Engine
|
||||
* [iSeek](https://www.iseek.com/) - AI Search Engine
|
||||
* [Farfalle](https://www.farfalle.dev/) - AI Search Engine
|
||||
* [Exa](https://exa.ai/) - AI Search Engine / [Discord](https://discord.com/invite/jvz7GS9W8Y)
|
||||
* [Lepton Search](https://search.lepton.run/) - AI Search Engine
|
||||
* [Ai Uncensored](https://www.aiuncensored.info/) - "Uncensored" Chatbot
|
||||
* [Pi](https://pi.ai/talk) - Inflection AI's Chatbot
|
||||
* [Reka Playground](https://chat.reka.ai/) - Reka's Chatbot
|
||||
* [Poe](https://poe.com/) - Multiple Chatbots / 150 Daily / [Discord](https://discord.com/invite/joinpoe)
|
||||
* [GlobalGPT](https://www.globalgpt.nspiketech.com/#/) - AI Chatbot with Document Support
|
||||
* [Ai Uncensored](https://www.aiuncensored.info/) - "Uncensored" Chatbot
|
||||
|
||||
***
|
||||
|
||||
@ -88,7 +82,7 @@
|
||||
* [Mistral](https://chat.mistral.ai/chat) - Self-Hosted
|
||||
* [Ollama](https://ollama.ai/) - Self-Hosted
|
||||
* [LMStudio](https://lmstudio.ai/) - Self-Hosted
|
||||
* [GPT4All](https://www.nomic.ai/gpt4all) - Self-Hosted / [Github](https://github.com/nomic-ai/gpt4all) / [Discord](https://discord.com/invite/mGZE39AS3e)
|
||||
* [GPT4All](https://gpt4all.io/) - Self-Hosted / [Github](https://github.com/nomic-ai/gpt4all) / [Discord](https://discord.com/invite/mGZE39AS3e)
|
||||
* [LlamaFile](https://github.com/Mozilla-Ocho/llamafile) - Run LLM with Single Files
|
||||
* [Generative AI for Beginners](https://microsoft.github.io/generative-ai-for-beginners/) - Generative AI Guides
|
||||
|
||||
@ -125,9 +119,9 @@
|
||||
|
||||
* 🌐 **[EvalPlus Leaderboard](https://evalplus.github.io/leaderboard.html)** or [BigCode](https://huggingface.co/spaces/bigcode/bigcode-models-leaderboard) - Coding AI Leaderboards
|
||||
* 🌐 **[Awesome AI Agents](https://github.com/e2b-dev/awesome-ai-agents)** - Coding / Programming AIs
|
||||
* ⭐ **[Codeium](https://codeium.com/)** - Coding AI
|
||||
* ⭐ **[Pieces](https://pieces.app/) / [Docs](https://docs.pieces.app)** - Multi-LLM Coding AI / GPT-4 for Free
|
||||
* [Cursor](https://cursor.sh/) - Coding AI
|
||||
* [Codeium](https://codeium.com/) - Coding AI
|
||||
* [tabnine](https://www.tabnine.com/) - Coding AI
|
||||
* [ImageCook](https://imgcook.com) / [GitHub](https://github.com/imgcook/imgcook) - Coding AI
|
||||
* [CodeWhisperer](https://aws.amazon.com/codewhisperer/) - Coding AI
|
||||
@ -136,11 +130,10 @@
|
||||
* [Sourcery](https://sourcery.ai/) - Coding AI
|
||||
* [Devv](https://devv.ai/) - Coding AI
|
||||
* [Cody](https://about.sourcegraph.com/cody) - Coding AI
|
||||
* [Cursor](https://www.trycursor.com/) - Coding AI / [Discord](https://discord.gg/PJEgRywgRy)
|
||||
* [OpenDevin](https://github.com/OpenDevin/OpenDevin) - Coding AI
|
||||
* [CodiumAI](https://www.codium.ai/) - Coding AI
|
||||
* [continue](https://continue.dev/) - Coding AI
|
||||
* [Bito AI](https://bito.ai/) - Coding AI
|
||||
* [CodiumAI](https://www.codium.ai/) - Coding AI
|
||||
* [Blackbox](https://www.blackbox.ai/) - Coding AI
|
||||
* [Codel](https://github.com/semanser/codel) - Coding AI
|
||||
* [CollectivAI](https://chat.collectivai.com/) - Coding AI
|
||||
@ -153,18 +146,16 @@
|
||||
* [AI Code Translator](https://ai-code-translator.vercel.app/), [AI Code Convert](https://aicodeconvert.com/) or [Source Code Converters](https://www.tangiblesoftwaresolutions.com/) - AI Code Converters
|
||||
* [RTutor](https://rtutor.ai/) - Translate Natural Language to R code
|
||||
* [Gorilla](https://gorilla.cs.berkeley.edu/) - API to Code LLM
|
||||
* [CS50.ai](https://cs50.ai/) - AI Rubberducking
|
||||
|
||||
***
|
||||
|
||||
## ▷ ChatGPT Prompts
|
||||
|
||||
* 🌐 **[Jailbreak Listings](https://rentry.org/jb-listing)** - Prompt / Jailbreak Lists
|
||||
* ⭐ **[Awesome ChatGPT Prompts](https://prompts.chat/)** - Prompt Directory / [Github](https://github.com/f/awesome-chatgpt-prompts)
|
||||
* ⭐ **[BlackFriday GPTs Prompts](https://github.com/friuns2/BlackFriday-GPTs-Prompts)** - Prompt Directory
|
||||
* ⭐ **[Leaked Prompts](https://github.com/linexjlin/GPTs)** - Prompt Directory
|
||||
* ⭐ **[Prompt Engineering Guide](https://www.promptingguide.ai)**, [LearnPrompting](https://learnprompting.org/docs/intro), [OpenAI Guide](https://platform.openai.com/docs/guides/prompt-engineering), [Claude Guide](https://docs.anthropic.com/claude/docs/prompt-engineering) or [LearningPrompt](https://learningprompt.wiki/) - Prompting Guides
|
||||
* [500 Best Prompts](https://puzzle-jute-202.notion.site/500-Best-ChatGPT-Prompts-f5b4ad65deec4b6385316fdb8740af74) - Prompt Directory
|
||||
* [L1B3RT45](https://github.com/elder-plinius/L1B3RT45) - Jailbreak Prompts / [Discord](https://discord.gg/basi) / [Twitter](https://x.com/elder_plinius)
|
||||
* [promptfoo](https://github.com/typpo/promptfoo) or [PromptKnit](https://promptknit.com/) - Prompt Playgrounds
|
||||
* [Marketing 2099](https://sintralabs.notion.site/Marketing-2099-Ultimate-ChatGPT-Marketing-Prompts-To-Copy-Paste-200-tasks-fc22c9142d6a4a4286a3fe755be932e6) - ChatGPT Marketing Prompts
|
||||
* [Tensor Trust](https://tensortrust.ai/) or [Gandalf](https://gandalf.lakera.ai/) - Prompting Skill Games
|
||||
@ -177,12 +168,11 @@
|
||||
# ► AI Indexes
|
||||
|
||||
* 🌐 **[LMSYS Arena](https://chat.lmsys.org/?leaderboard)** - Chatbot Leaderboards / Benchmarks
|
||||
* 🌐 **[LLM Leaderboard](https://huggingface.co/spaces/open-llm-leaderboard/open_llm_leaderboard)** - Chatbot Leaderboards / Benchmarks
|
||||
* 🌐 **[LLM Leaderboard](https://huggingface.co/spaces/HuggingFaceH4/open_llm_leaderboard)** - Chatbot Leaderboards / Benchmarks
|
||||
* 🌐 **[Transformer Models Timeline](https://ai.v-gar.de/ml/transformer/timeline/)** - LLM Timeline
|
||||
* 🌐 **[Toolify](https://www.toolify.ai/)** - AI Directory
|
||||
* 🌐 **[Phygital Library](https://library.phygital.plus/)** - AI Directory / Workflow Builder
|
||||
* 🌐 **[LifeArchitect](https://lifearchitect.ai/models-table/)** - LLM Index
|
||||
* [Glif](https://glif.app/) or [perchance](https://perchance.org/generators) - Simple AI Builders
|
||||
* [WildBench](https://huggingface.co/spaces/allenai/WildBench) - Chatbot Benchmarks
|
||||
* [ArtificialAnalysis](https://artificialanalysis.ai/) - Chatbot Benchmarks
|
||||
* [The Fastest AI](https://thefastest.ai/) - Chatbot Benchmarks
|
||||
@ -198,6 +188,7 @@
|
||||
* [TheresAnAIForThat](https://theresanaiforthat.com/) - AI Directory
|
||||
* [AI Tools](https://aitools.fyi/) - AI Directory
|
||||
* [FutureTools](https://www.futuretools.io/?pricing-model=free) - AI Directory
|
||||
* [perchance](https://perchance.org/generators) - Random AI Generators
|
||||
* [Sieve](https://www.sievedata.com/explore) or [ArtificialStudio](https://www.artificialstudio.ai/tools) - Multi-Tool Browser AIs
|
||||
* [Google Labs](https://labs.google/) or [AI Test Kitchen](https://aitestkitchen.withgoogle.com/) - Google AI Experiments
|
||||
|
||||
@ -212,7 +203,6 @@
|
||||
* [Dreamily](https://dreamily.ai/) or [NightSaga](https://nightsaga.ai/) - Story Writing AIs
|
||||
* [EssayBot](https://www.essaybot.com/) / [2](https://www.essayaibot.com/), [Textero](https://www.textero.ai/), [EssayBuilder](https://essay-builder.ai/) or [EssayService](https://www.essayservice.ai/) - Essay Writing AI
|
||||
* [TextSynth](https://textsynth.com/playground.html) - Text Autocomplete AI
|
||||
* [Product Description Generator](https://www.aidirectori.es/tools/product-description-generator)
|
||||
|
||||
***
|
||||
|
||||
@ -231,7 +221,6 @@
|
||||
* [StableVideo](https://www.stablevideo.com/) - Video Generator
|
||||
* [Haiper](https://haiper.ai/) - Video Generator
|
||||
* [Stable Diffusion Videos](https://github.com/nateraw/stable-diffusion-videos) - Video Generator
|
||||
* [Dream Machine](https://lumalabs.ai/dream-machine) - Video Generator
|
||||
* [text-to-video](https://text-to-video.vercel.app) - Video Generator
|
||||
* [Text2Video-Zero](https://github.com/Picsart-AI-Research/Text2Video-Zero) - Video Generator
|
||||
* [LensGo](https://lensgo.ai/) - Video Generator
|
||||
@ -258,6 +247,7 @@
|
||||
* ⭐ **[Shakker](https://www.shakker.ai/)** / 50 Daily / [Discord](https://discord.gg/djyP5u3vHY) / [Guide](https://docs.google.com/document/d/1PZ6to6Nn995J0o0BbEPhucqge9uyc1acQoNuvWkK6M8/edit#heading=h.kkzhkyyy4ze4)
|
||||
* ⭐ **[Lexica](https://lexica.art/)** / 48 Weekly
|
||||
* ⭐ **[Leonardo.ai](https://app.leonardo.ai/)** / 30 Daily
|
||||
* [Meta AI](https://www.meta.ai/) - Images & Animation
|
||||
* [Stable Diffusion](https://huggingface.co/spaces/stabilityai/stable-diffusion) / Unlimited / [GitHub](https://github.com/Stability-AI/stablediffusion) / [Discord](https://discord.com/invite/stablediffusion)
|
||||
* [Prodia](https://app.prodia.com/) / [Discord](https://discord.com/invite/495hz6vrFN) / [Huggingchat Demo](https://huggingface.co/spaces/prodia/fast-stable-diffusion) / Unlimited
|
||||
* [Unstability.ai](https://www.unstability.ai/) / 52 Daily
|
||||
@ -268,7 +258,6 @@
|
||||
* [AIGallery](https://aigallery.app/) / Unlimited
|
||||
* [ComfyUI Web](https://comfyuiweb.com/) / Unlimited
|
||||
* [Recraft](https://www.recraft.ai/) / Unlimited
|
||||
* [PicSynth](https://www.picsynth.me/generation) / Unlimited
|
||||
* [ImageLabs](https://editor.imagelabs.net/) / Unlimited
|
||||
* [Pollinations](https://pollinations.ai/) / Unlimited / [Discord](https://discord.com/invite/8HqSRhJVxn)
|
||||
* [PicFinder](https://picfinder.ai/) / Unlimited
|
||||
@ -277,9 +266,7 @@
|
||||
* [GetIMG.ai](https://getimg.ai/) / [Discord](https://discord.com/invite/5KsUXSzVwS) / 100 Monthly
|
||||
* [Adobe Firefly](https://firefly.adobe.com/) / 25 Monthly / [Discord](https://discord.com/invite/dJnsV5s8PZ) / Sign-Up Required
|
||||
* [AITurbo](https://app.aitubo.ai/) / 25 Daily / [Discord](https://discord.gg/qTu6YsRn7F)
|
||||
* [Venice](https://venice.ai/chat/Wyg_3w4M5KDFAcAHnqf-s) / 25 Daily
|
||||
* [Artsio](https://artsio.xyz/) / 20 Daily
|
||||
* [Yodayo](https://yodayo.com/) / 15 Daily
|
||||
* [Maze.guru](https://maze.guru/gallery) / 12 Daily
|
||||
* [DreamLike](https://dreamlike.art) / 12 Daily
|
||||
* [Craiyon](https://www.craiyon.com/) / 10 Daily / [Github](https://github.com/borisdayma/dalle-mini) / [Colab](https://colab.research.google.com/github/borisdayma/dalle-mini/blob/main/tools/inference/inference_pipeline.ipynb)
|
||||
@ -396,7 +383,7 @@
|
||||
* [VoiceCraft](https://github.com/jasonppy/VoiceCraft)
|
||||
* [Murf.ai](https://murf.ai/)
|
||||
* [EmotiVoice](https://github.com/netease-youdao/EmotiVoice)
|
||||
* [Fish Audio](https://fish.audio/) / [Docs](https://diff.fish.audio) / [GitHub](https://github.com/fishaudio/fish-diffusion)
|
||||
* [Fish Diffusion](https://diff.fish.audio) / [GitHub](https://github.com/fishaudio/fish-diffusion)
|
||||
* [Audio-WebUI](https://github.com/gitmylo/audio-webui)
|
||||
* [Vanilla Voice](https://www.vanillavoice.com/)
|
||||
* [Sam](https://discordier.github.io/sam/), [2](https://simulationcorner.net/index.php?page=sam) / [BetterSam](https://imrane03.github.io/better-sam/)
|
||||
@ -423,7 +410,7 @@
|
||||
|
||||
## ▷ Voice Change / Clone
|
||||
|
||||
* ⭐ **[Applio](https://github.com/IAHispano/Applio-RVC-Fork)** - Voice Cloning / [Discord](https://discord.com/invite/iahispano) / [Playground](https://applio.org/playground)
|
||||
* ⭐ **[Applio](https://github.com/IAHispano/Applio-RVC-Fork)** - Voice Cloning / [Discord](https://discord.com/invite/iahispano)
|
||||
* ⭐ **[weights.gg](https://www.weights.gg/) / [Discord](https://discord.gg/aihub)** - AI Voice Models and Guides
|
||||
* ⭐ **[RVC V2](https://github.com/RVC-Project/Retrieval-based-Voice-Conversion-WebUI/blob/main/docs/en/README.en.md)** - RVC V2 Voice Cloning (locally)
|
||||
* ⭐ **[voice-changer](https://github.com/w-okada/voice-changer)** - Realtime Voice Changer (W-Okada) - [Guide](https://rentry.co/VoiceChangerGuide)
|
||||
|
@ -13,12 +13,11 @@
|
||||
* ↪️ **[Spotify Adblockers](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/audio#wiki_.25B7_spotify_adblockers)**
|
||||
* ↪️ **[Twitch Adblockers](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/social-media#wiki_.25B7_twitch_adblockers)**
|
||||
* ↪️ **[Bypass Article Paywalls](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/internet-tools#wiki_.25B7_paywall_bypass)**
|
||||
* ⭐ **[uBlock Origin](https://github.com/gorhill/uBlock#installation)** - Adblocker
|
||||
* ⭐ **uBO Resources** - [Report Issues](https://github.com/uBlockOrigin/uAssets/issues) / [Report Hosts](https://github.com/uBlockOrigin/uAssets/discussions/17361) / [Guides](https://www.reddit.com/r/uBlockOrigin/wiki/index/) / [Advanced](https://youtu.be/2lisQQmWQkY) / [Redundant Extensions](https://github.com/arkenfox/user.js/wiki/4.1-Extensions/#-dont-bother)
|
||||
* ⭐ **[uBlock Origin](https://github.com/gorhill/uBlock#installation)** - Adblocker / [Report Issues](https://github.com/uBlockOrigin/uAssets/issues) / [Report Hosts](https://github.com/uBlockOrigin/uAssets/discussions/17361) / [Guide](https://addons.mozilla.org/blog/ublock-origin-everything-you-need-to-know-about-the-ad-blocker/) / [Advanced Tutorial](https://youtu.be/2lisQQmWQkY) / [Redundant Extensions](https://github.com/arkenfox/user.js/wiki/4.1-Extensions/#-dont-bother)
|
||||
* ⭐ **[SponsorBlock](https://sponsor.ajay.app/)** - Skip Sponsored YouTube Ads / [Script](https://github.com/mchangrh/sb.js), [2](https://greasyfork.org/en/scripts/453320)
|
||||
* ⭐ **[BehindTheOverlay](https://github.com/NicolaeNMV/BehindTheOverlay)** - Hide Website Overlays
|
||||
* ⭐ **[OpenVideo](https://openvideofs.github.io)** or [Stream-Bypass](https://github.com/ByteDream/stream-bypass) - Play Videos in Ad-Free Player
|
||||
* [uBO Lite](https://github.com/uBlockOrigin/uBOL-home) - MV3 Compatible for Chrome Users / [Note](https://rentry.org/nzvohpzf)
|
||||
* [uBO Lite](https://github.com/uBlockOrigin/uBOL-home) - MV3 Compatible for Chrome Users / [Note](https://pastes.fmhy.net/jUyzXA)
|
||||
* [fadblock](https://github.com/0x48piraj/fadblock) or [Disable YT Video Ads](https://greasyfork.org/en/scripts/32626) - YouTube Adblockers
|
||||
* [Ad Blitz](https://ad-blitz.vercel.app/) - Speed Up YouTube Ads instead of Skipping to Support Creators
|
||||
* [Popupblocker All](https://addons.mozilla.org/en-US/firefox/addon/popupblockerall/), [PopUpOFF](https://romanisthere.github.io/PopUpOFF-Website/index.html) or [PopupBlocker](https://github.com/AdguardTeam/PopupBlocker) - Popup / New Tab Blockers
|
||||
@ -130,6 +129,7 @@
|
||||
* [ID Ransomware](https://id-ransomware.malwarehunterteam.com/) - Ransomware Identification Tool
|
||||
* [ConfigureDefender](https://github.com/AndyFul/ConfigureDefender) - Configure Windows Defender Settings
|
||||
* [DefenderUI](https://www.defenderui.com/) - Improved Windows Defender UI
|
||||
* [Antivirus Removal Tool](https://antivirus-removal-tool.com/) - Antivirus Software Removal Tool
|
||||
|
||||
***
|
||||
|
||||
@ -159,7 +159,7 @@
|
||||
* ⭐ **[Privacy.Sexy](https://privacy.sexy/)** - Privacy Scripts
|
||||
* ⭐ **[Tails](https://tails.net/)**, [whonix](https://www.whonix.org/) or [Qubes](https://www.qubes-os.org/) - Privacy-Based Operating Systems
|
||||
* [ShutUp10](https://www.oo-software.com/en/shutup10), [W10Privacy](https://www.w10privacy.de/english-home/) or [private-secure-windows](https://github.com/troennes/private-secure-windows) - Antispy Tools
|
||||
* [Telemetry.md](https://gist.github.com/ave9858/a2153957afb053f7d0e7ffdd6c3dcb89), [2](https://rentry.co/telemetry) - Disable Windows 10/11 Telemetry
|
||||
* [Telemetry.md](https://gist.github.com/ave9858/a2153957afb053f7d0e7ffdd6c3dcb89) - Disable Windows 10/11 Telemetry
|
||||
* [Frigate](https://frigate.video/), [Smart Sec Cam](https://github.com/scottbarnesg/smart-sec-cam) or [ZoneMinder](https://zoneminder.com/) - Security Camera Systems
|
||||
* [Team Elite](https://www.te-home.net/) or [Technet24](https://technet24.ir/) - Security Software / [Translator](https://github.com/FilipePS/Traduzir-paginas-web)
|
||||
* [Big Ass Data Broker Opt-Out List](https://github.com/yaelwrites/Big-Ass-Data-Broker-Opt-Out-List) - List of Data Broker Opt-Out Resources
|
||||
@ -185,17 +185,20 @@
|
||||
|
||||
## ▷ Privacy Indexes
|
||||
|
||||
* ⭐ **[Privacy Guides](https://www.privacyguides.org/)** - Educational Guide
|
||||
* ⭐ **[Lissy93's Awesome Privacy](https://awesome-privacy.xyz/)** / [GitHub](https://github.com/lissy93/awesome-privacy) or [pluja's Awesome Privacy](https://pluja.github.io/awesome-privacy/) / [GitHub](https://github.com/pluja/awesome-privacy) - List of Privacy Software & Services
|
||||
* ⭐ **[Digital Defense](https://digital-defense.io/)** - Personal Checklist for Privacy & Security
|
||||
* ⭐ **[The Hitchhiker’s Guide](https://anonymousplanet.org/)** - Extensive Guide to Online Anonymity
|
||||
* ⭐ **[Privacy Guides](https://www.privacyguides.org/)** - Educational Guide
|
||||
* ⭐ **[Surveillance Self-Defense](https://ssd.eff.org/)** - Educational Guide
|
||||
* ⭐ **[The New Oil](https://thenewoil.org/)** - Educational Guide
|
||||
* [Lissy93's Awesome Privacy](https://awesome-privacy.xyz/) / [GitHub](https://github.com/lissy93/awesome-privacy) or [pluja's Awesome Privacy](https://pluja.github.io/awesome-privacy/) / [GitHub](https://github.com/pluja/awesome-privacy) - List of Privacy Software & Services
|
||||
* [Defensive Computing Checklist](https://defensivecomputingchecklist.com/) - Educational Guide
|
||||
* [Ken Harris](https://cyber.kenharris.io/) - Educational Guide
|
||||
* [AvoidTheHack](https://avoidthehack.com/) - Educational Blog
|
||||
* [SNAKE WAREZ](https://pilssken.neocities.org/warez/) - Privacy Tools
|
||||
* [Privacy Tools List](https://privacytoolslist.com/) - Privacy Tools
|
||||
* [Hostux](https://hostux.network/) - Privacy Tools
|
||||
* [The Hitchhiker’s Guide](https://anonymousplanet.org/) - Extensive Guide to Online Anonymity
|
||||
* [Privacy Settings](https://github.com/StellarSand/privacy-settings) - Privacy Setting Guides
|
||||
* [Alternative Internet](https://github.com/redecentralize/alternative-internet) - Collection of Decentralised Tools
|
||||
* [EncryptedList](https://encryptedlist.xyz/) - List of Encrypted Services/Apps
|
||||
* [ProductivePrivacy](https://productiveprivacy.com/) - Privacy-Focused Productivity Apps
|
||||
|
||||
@ -240,7 +243,7 @@
|
||||
* ⭐ **[JustGetMyData](https://justgetmydata.com/)** - Links to Obtain Your Data from Websites
|
||||
* ⭐ **[Cryptomator](https://cryptomator.org/)**, [Boxcryptor](https://www.boxcryptor.com/en/) or [Tahoe-LAFS](https://tahoe-lafs.org/trac/tahoe-lafs) - Cloud File Encryption
|
||||
* [FirefoxMonitor](https://monitor.firefox.com/) - Data Breach Check
|
||||
* [BreachDirectory](https://breachdirectory.org), [Snusbase](https://snusbase.com/), [Leak Lookup](https://leak-lookup.com/), [Trufflehog](https://trufflesecurity.com/) or [leakpeek](https://leakpeek.com/) - Data Breach Search Engines
|
||||
* [BreachDirectory](https://breachdirectory.org), [Snusbase](https://snusbase.com/), [Leak Lookup](https://leak-lookup.com/), [Trufflehog](https://trufflesecurity.com/trufflehog) or [leakpeek](https://leakpeek.com/) - Data Breach Search Engines
|
||||
* [JustDeleteMe](https://justdeleteme.xyz/) - Find / Terminate Old Accounts
|
||||
* [OpenPhish](https://openphish.com/), [Netcraft Report](https://report.netcraft.com/report), [isitPhishing](https://isitphishing.org/), [PhishStats](https://phishstats.info/) or [PhishTank](https://phishtank.org/) - Report Phishing Sites
|
||||
* [DNS Jumper](https://www.majorgeeks.com/files/details/dns_jumper.html) - DNS Switcher
|
||||
@ -268,7 +271,6 @@
|
||||
* [Librewolf](https://librewolf.net/) - Pre-tweaked Firefox Fork / [Use Auto-Updater](https://github.com/ltguillaume/librewolf-winupdater)
|
||||
* [Brave](https://brave.com/) - Privacy-Focused Browser
|
||||
* [CookieStatus](https://www.cookiestatus.com/) - Browser Tracking Protection Comparisons
|
||||
* [Encrypted SNI](https://www.cloudflare.com/ssl/encrypted-sni/) - Cloudflare Browser Check
|
||||
* [I2P](https://geti2p.net/en/) - Encrypted Private Network Layer / [Guide](https://rentry.co/CBGI2P)
|
||||
* [Whack](https://lcamtuf.coredump.cx/whack/) or [Earthling](https://earthlng.github.io/testpages/visited_links.html) - Browser History Leak Example Games
|
||||
* [SSL Labs](https://clienttest.ssllabs.com:8443/ssltest/viewMyClient.html) - SSL/TLS Browser Capabilities Test
|
||||
@ -310,16 +312,24 @@
|
||||
|
||||
## ▷ Email Privacy
|
||||
|
||||
* ↪️ **[Temp Mail Sites](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/internet-tools#wiki_.25B7_temp_mail)** - Create Temporary / Throwaway Emails
|
||||
* ↪️ **[Email Aliasing](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/internet-tools#wiki_.25B7_email_aliasing)** - Create Permanent Anonymous Emails
|
||||
* ⭐ **[Have I Been Pwned?](https://haveibeenpwned.com/)** - Monitor Email Breaches
|
||||
* ↪️ **[Temp Mail Sites](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_temp_email_sites)** - Create Temporary Throwaway Emails
|
||||
* ⭐ **[Have I been Pwned?](https://haveibeenpwned.com/)** - Monitor Email Breaches
|
||||
* ⭐ **[Proton Mail](https://proton.me/mail)** - Encrypted Email
|
||||
* ⭐ **[SimpleLogin](https://simplelogin.io/)** - Email Aliasing / [GitHub](https://github.com/simple-login/app)
|
||||
* ⭐ **[addy.io](https://addy.io/)** - Email Aliasing / [GitHub](https://github.com/anonaddy/anonaddy)
|
||||
* ⭐ **[DuckDuckGo Email Protection](https://duckduckgo.com/email/)** - Email Aliasing
|
||||
* [Tuta](https://tuta.com/) - Encrypted Email
|
||||
* [Disroot](https://disroot.org/en/services/email) - Encrypted Email
|
||||
* [lil mail server](https://uq.ci/) - Simple Privacy-Focused Email
|
||||
* [EmailPrivacyTester](https://www.emailprivacytester.com/) - Email Privacy Test
|
||||
* [SecLists](https://seclists.org/) - Security Mailing List Archive
|
||||
* [Phish.ly](https://phish.ly/) - Scan Suspicious Emails
|
||||
* [Mailvelope](https://mailvelope.com/) - Email Aliasing Extension
|
||||
* [scr.im](http://scr.im/) - Email Aliasing
|
||||
* [altmails](https://altmails.com/) - Email Aliasing
|
||||
* [Mailgw](https://mailgw.com/) - Email Aliasing
|
||||
* [erine.email](https://erine.email/) - Email Aliasing
|
||||
* [33mail](https://33mail.com/) - Email Aliasing
|
||||
* [forwardemail](https://github.com/forwardemail/forwardemail.net) - Email Aliasing
|
||||
* [Have I Been Sold?](https://haveibeensold.app/) - Monitor Third Party Email Sales
|
||||
|
||||
***
|
||||
@ -347,14 +357,14 @@
|
||||
## ▷ Frontends
|
||||
|
||||
* 🌐 **[Alt Frontends](https://github.com/mendel5/alternative-front-ends)** / [2](https://rentry.co/8kqrrn), [Farside](https://farside.link/) or [alternative-frontends](https://github.com/digitalblossom/alternative-frontends) - Frontend Indexes
|
||||
* ↪️ **[YouTube Frontends](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/social-media#wiki_.25B7_players_.2F_frontends)**
|
||||
* ↪️ **[YouTube Frontends](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/social-media#wiki_.25B7_youtube_frontends)**
|
||||
* ⭐ **[LibRedirect](https://libredirect.github.io/)** / [2](https://github.com/libredirect/libredirect), [Predirect](https://github.com/libreom/predirect) or [Proxy Redirect](https://openuserjs.org/scripts/sjehuda/Proxy_Redirect) - Frontend Redirect Extensions
|
||||
* [Numblr](https://github.com/heyLu/numblr) - Self-Hosted Frontend Redirect
|
||||
* [Photon](https://photon-reddit.com/), [reditr](https://reditr.com/), [RDX](https://rdx.overdevs.com/) or [redlib](https://github.com/redlib-org/redlib) - Reddit Frontends
|
||||
* [Invidious Redirect](https://addons.mozilla.org/en-US/firefox/addon/hooktube-redirect/?src=search) - YouTube Frontend Redirect
|
||||
* [twstalker](https://twstalker.com/), [X Cancelled](https://xcancel.com/) or [nitter](https://nitter.poast.org/) / [Instances](https://status.d420.de/), [2](https://github.com/zedeus/nitter/wiki/Instances) - Twitter Frontends
|
||||
* [twstalker](https://twstalker.com/) or [nitter](https://nitter.poast.org/) / [Instances](https://status.d420.de/), [2](https://github.com/zedeus/nitter/wiki/Instances) - Twitter Frontends
|
||||
* [Proxigram](https://codeberg.org/ThePenguinDev/Proxigram) or [Imginn](https://imginn.com) - Instagram Frontends
|
||||
* [Proxitok](https://github.com/pablouser1/ProxiTok) - TikTok Frontend
|
||||
* [Proxitok](https://github.com/pablouser1/ProxiTok) or [TikNot](https://tiknot.netlify.app/) / [Redirect](https://greasyfork.org/en/scripts/482683) - TikTok Frontends
|
||||
* [Tumlook](https://www.tumlook.com/), [Tumgik](https://www.tumgik.com/) or [PriviBlur](https://github.com/syeopite/priviblur) - Tumblr Frontends
|
||||
* [BreezeWiki](https://breezewiki.com/) - Fandom Frontend / [Mirrors](https://pastebin.com/DmbrhEDD)
|
||||
* [MikuInvidious](https://0xacab.org/johnxina/mikuinvidious) - BiliBili Frontend
|
||||
@ -383,20 +393,20 @@
|
||||
* ⭐ **[searx.fmhy](https://searx.fmhy.net/)**, [Fuck Off Google](https://search.fuckoffgoogle.net/), [searx](https://searx.be/), [tiekoetter](https://searx.tiekoetter.com/), [monocles](https://monocles.de/) - Searx Instance
|
||||
* ⭐ **[Metager](https://metager.org/)**
|
||||
* ⭐ **[Stract](https://trystract.com/)**
|
||||
* ⭐ **[Araa](https://araa.extravi.dev/)** / Uses Google / DDG / Qwant
|
||||
* ⭐ **[DuckDuckGo](https://duckduckgo.com/)** - [Shortcuts](https://duckduckgo.com/bangs), [2](https://github.com/dmlls/yang) / Uses Bing
|
||||
* [whoogle.fmhy](https://whoogle.fmhy.net/) - Whoogle Instance / Uses Google
|
||||
* ⭐ **[Araa](https://araa.extravi.dev/)**
|
||||
* ⭐ **[DuckDuckGo](https://duckduckgo.com/)** - [Shortcuts](https://duckduckgo.com/bangs), [2](https://github.com/dmlls/yang)
|
||||
* [whoogle.fmhy](https://whoogle.fmhy.net/) - Whoogle Instance
|
||||
* [LibreY](https://github.com/Ahwxorg/librey) or [LibreX](https://github.com/hnhx/librex)
|
||||
* [4get](https://4get.ca/)
|
||||
* [Mojeek](https://www.mojeek.com/)
|
||||
* [Qwant](https://www.qwant.com/)
|
||||
* [Swisscows](https://swisscows.com/) / Uses Bing
|
||||
* [Swisscows](https://swisscows.com/)
|
||||
* [YaCy](https://yacy.net/)
|
||||
* [Startpage](https://www.startpage.com/) / Uses Google
|
||||
* [Startpage](https://www.startpage.com/)
|
||||
* [Brave Search](https://search.brave.com/)
|
||||
* [Search Encrypt](https://www.searchencrypt.com/)
|
||||
* [ekoru](https://ekoru.org/) / Uses Bing
|
||||
* [Gibiru](https://gibiru.com/) / Uses Google
|
||||
* [ekoru](https://ekoru.org/)
|
||||
* [Gibiru](https://gibiru.com/)
|
||||
* [SearXNG](https://docs.searxng.org/) - Self-Hosted
|
||||
* [Whoogle](https://pypi.org/project/whoogle-search/) - Self-Hosted
|
||||
|
||||
@ -409,17 +419,18 @@
|
||||
***
|
||||
|
||||
* 🌐 **[VPN Comparisons](https://redd.it/171h9qa)** or [Techlore Chart](https://techlore.tech/vpn) - VPN Comparison Charts
|
||||
* 🌐 **[VPN Relationships](https://kumu.io/Windscribe/vpn-relationships)** - VPN Relationship Chart
|
||||
* 🌐 **[VPN Relationships](https://kumu.io/sobeyharker/vpn-relationships)** - VPN Relationship Chart
|
||||
* ⭐ **[/r/VPNs](https://www.reddit.com/r/vpns/)** - VPN Help and Discussion
|
||||
* ⭐ **[Windscribe](https://windscribe.com)** - Free Version Available
|
||||
* ⭐ **[AirVPN](https://airvpn.org/)**
|
||||
* ⭐ **[Windscribe](https://windscribe.com)** - Free Version Available / [Relief Codes](https://blog.windscribe.com/tag/relief-codes/)
|
||||
* ⭐ **[Proton](https://protonvpn.com)** - No Torrenting with Free Version / [Config Generation](https://gist.github.com/fusetim/1a1ee1bdf821a45361f346e9c7f41e5a)
|
||||
* ⭐ **[Warp](https://one.one.one.one/)** - Traffic Encryption VPN / [Client](https://github.com/ViRb3/wgcf), [2](https://github.com/bepass-org/oblivion-desktop) / [Warp+ Data](https://t.me/warpplus), [2](https://github.com/nxvvvv/warp-plus), [3](https://github.com/totoroterror/warp-cloner), [4](https://t.me/generatewarpplusbot), [5](https://rentry.co/warp_plus_free) / [Warp+ Warning](https://rentry.co/warpwarning2) / [WireGuard Guide](https://rentry.co/foss-warp)
|
||||
* ⭐ **[Warp](https://one.one.one.one/)** - Traffic Encryption VPN / [Client](https://github.com/ViRb3/wgcf), [2](https://github.com/bepass-org/oblivion-desktop) / [Warp+ Data](https://t.me/warpplus), [2](https://github.com/nxvvvv/warp-plus), [3](https://github.com/totoroterror/warp-cloner), [4](https://t.me/generatewarpplusbot), [5](https://rentry.co/warp_plus_free) / [Warp+ Warning](https://rentry.co/warpwarning) / [WireGuard Guide](https://rentry.co/foss-warp)
|
||||
* ⭐ **[Riseup](https://riseup.net/en/vpn)** - Free VPN / [Config CLI Script](https://github.com/kmille/riseup-vpn-configurator)
|
||||
* [Mullvad](https://mullvad.net/) - [No-Logging](https://mullvad.net/en/blog/2023/4/20/mullvad-vpn-was-subject-to-a-search-warrant-customer-data-not-compromised/) / [Port Warning](https://mullvad.net/en/blog/2023/5/29/removing-the-support-for-forwarded-ports/)
|
||||
* [IVPN](https://www.ivpn.net/) - [No Logging](https://www.ivpn.net/knowledgebase/privacy/how-do-we-react-when-requested-by-an-authority-for-information-relating-to-a-customer/) / [Port Warning](https://www.ivpn.net/blog/gradual-removal-of-port-forwarding/)
|
||||
* [OVPN](https://www.ovpn.com/) - [No Logging](https://www.ovpn.com/en/blog/ovpn-wins-court-order)
|
||||
* [VPN Gate](https://www.vpngate.net/en/download.aspx) - Free VPN / [Note](https://pastebin.com/TrSw7EpF)
|
||||
* [PrivadoVPN](https://privadovpn.com/) - Free VPN / Unlimited Accounts via [Temp Mail](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/internet-tools#wiki_.25B7_temp_mail)
|
||||
* [PrivadoVPN](https://privadovpn.com/) - Free VPN / Unlimited Accounts via [Temp Mail](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_temp_email_sites)
|
||||
* [Leap VPN](https://leap.se/) - Free VPNs
|
||||
* [VPNBook](https://www.vpnbook.com/) - Free VPN Accounts
|
||||
|
||||
@ -493,7 +504,8 @@
|
||||
* [UnblockSites](https://unblocksites.online/)
|
||||
* [Proxyium](https://proxyium.com/)
|
||||
* [Proxy Site](https://proxysite.cloud/)
|
||||
* [Google Translate](https://translate.google.com/) / [Proxy Explanation](https://redd.it/fawkjy), [2](https://ibb.co/BtWc8ML)
|
||||
* [Google Translate](https://translate.google.com/) - [How to use](https://redd.it/fawkjy)
|
||||
* [Proxy Scrape](https://github.com/JaredLGillespie/proxyscrape) - Python Library for Retrieving Free Proxies
|
||||
* [Proxy-Checker](https://proxy-checker.net/), [proxy-scraper](https://github.com/iw4p/proxy-scraper), [What is my Proxy](http://www.whatismyproxy.com/), [proxy-scraper-checker](https://github.com/monosans/proxy-scraper-checker), [Socker](https://github.com/TheSpeedX/socker) or [Unfx Proxy Checker](https://openproxy.space/software/proxy-checker) / [GitHub](https://github.com/openproxyspace/unfx-proxy-checker) - Proxy Scrapers / Checkers
|
||||
* [CheckSocks5](https://checksocks5.com/) - Socks5 Proxy Checker
|
||||
* [Proxynova](https://www.proxynova.com/proxy-server-list/country-ir/) - Iranian Proxies
|
||||
|
@ -12,24 +12,22 @@
|
||||
* ⭐ **[PDALife](https://pdalife.com/)** / [Telegram](https://t.me/pdalife_official)
|
||||
* ⭐ **[LiteAPKs](https://liteapks.com/)** / [App](https://liteapks.com/app.html)
|
||||
* ⭐ **[Modyolo](https://modyolo.com/)**
|
||||
* ⭐ **[4PDA](https://4pda.to/forum/)** - [App](https://github.com/slartus/4pdaClient-plus) / Use [translator](https://addons.mozilla.org/en-US/firefox/addon/traduzir-paginas-web/)
|
||||
* ⭐ **[4PDA](https://4pda.to/forum/)** - Use [translator](https://addons.mozilla.org/en-US/firefox/addon/traduzir-paginas-web/)
|
||||
* ⭐ **[PlatinMods](https://platinmods.com/)** - Modded Games
|
||||
* [Nsane Forums](https://nsaneforums.com/)
|
||||
* [nsane.down](https://nsaneforums.com/)
|
||||
* [Sbenny](https://sbenny.com/)
|
||||
* [farsroid](https://www.farsroid.com/)
|
||||
* [RevDL](https://www.revdl.com/)
|
||||
* [AndroidRepublic](https://androidrepublic.org/)
|
||||
* [Androeed](https://androeed.store/), [2](https://androeed.ru/)
|
||||
* [AndroPalace](https://www.andropalace.org/) / [Telegram](https://telegram.me/officialandropalace)
|
||||
* [Android1](https://an1.com/)
|
||||
* [APKVision](https://apkvision.org/)
|
||||
* [A2Z APK](https://a2zapk.io/)
|
||||
* [HappyMod](https://happymod.com/)
|
||||
* [APK Home](https://apkhome.io/)
|
||||
* [APK4Free](https://apk4free.net/)
|
||||
* [Release APK](https://forum.release-apk.com/)
|
||||
* [RockMods](https://www.rockmods.net/) / [Telegram](https://t.me/RBMods)
|
||||
* [ReXDL](https://rexdl.com/) / [Telegram](https://t.me/joinchat/AAAAAFVMhwX7IzS5hMc8OQ)
|
||||
* [RockMods](https://www.rockmods.net/) / [Telegram](https://t.me/RBMods) / Use "Alt Link"
|
||||
|
||||
***
|
||||
|
||||
@ -39,8 +37,8 @@
|
||||
* ⭐ **[APKMirror](https://www.apkmirror.com/)** / [Playstore Links](https://pastebin.com/TcsAJib6)
|
||||
* ⭐ **[UpToDown](https://en.uptodown.com/android)**
|
||||
* ⭐ **[APKPure](https://apkpure.net/)**
|
||||
* ⭐ **[Aurora Store](https://auroraoss.com/)** - Alt App Store / [GitLab](https://gitlab.com/AuroraOSS/AuroraStore)
|
||||
* [Play Search](https://playsearch.kaki87.net/) - Advanced Playstore Search
|
||||
* [Aurora Store](https://auroraoss.com/) - Alt App Store / [GitLab](https://gitlab.com/AuroraOSS/AuroraStore)
|
||||
* [Android Ultimate Collection](https://xdaforums.com/t/android-ultimate-collection-guides.4513231/)
|
||||
* [APKCombo](https://apkcombo.com/)
|
||||
* [Top Androids](https://top-androids.com/)
|
||||
@ -63,12 +61,11 @@
|
||||
* 🌐 **[Awesome Shizuku](https://github.com/timschneeb/awesome-shizuku)** - Shizuku App Index
|
||||
* ⭐ **[F-Droid](https://f-droid.org/)** - FOSS App Installer
|
||||
* ⭐ **F-Droid Tools** - [Resources](https://fdroidfamily.codeberg.page/) / [Desktop](https://github.com/mvdan/fdroidcl) / [Build Status](https://codeberg.org/pstorch/F-Droid_Build_Status)
|
||||
* ⭐ **F-Droid Clients** - [Droid-ify](https://github.com/Droid-ify/client) / [Neo Store](https://github.com/NeoApplications/Neo-Store) / [F-Droid Basic](https://f-droid.org/en/packages/org.fdroid.basic/)
|
||||
* ⭐ **F-Droid Clients** - [Droid-ify](https://github.com/Droid-ify/client) / [Neo Store](https://github.com/NeoApplications/Neo-Store)
|
||||
* ⭐ **[FossifyOrg](https://github.com/FossifyOrg)**
|
||||
* ⭐ **[Known Repositories](https://forum.f-droid.org/t/known-repositories/)** - F-Droid Repositories
|
||||
* [IzzyOnDroid](https://android.izzysoft.de/applists.php) - App Repo / [F-Droid](https://apt.izzysoft.de/fdroid/index.php)
|
||||
* [We Love Codeberg](https://welove.codeberg.page/)
|
||||
* [GrapheneOS Apps](https://github.com/GrapheneOS/Apps) - Work on Non-GrapheneOS Devices
|
||||
* [Android Auto Apps Downloader](https://github.com/shmykelsa/aaad) - Android Vehicle Apps
|
||||
|
||||
***
|
||||
@ -117,7 +114,7 @@
|
||||
## ▷ APK Tools
|
||||
|
||||
* ⭐ **[AppManager](https://muntashirakon.github.io/AppManager/)**, [Inure](https://rentry.co/FMHYBase64#inure) or [PackageManager](https://f-droid.org/packages/com.smartpack.packagemanager/) - Package Managers
|
||||
* ⭐ **[Lucky Patcher](https://rentry.co/FMHYBase64#lucky-patcher)** - App Patcher / [Avoid "LP Downloader"](https://pastebin.com/EikpPCAW)
|
||||
* ⭐ **[Lucky Patcher](https://www.luckypatchers.com/download/)** - App Patcher / [Avoid "LP Downloader"](https://pastebin.com/UXxaVqX9)
|
||||
* ⭐ **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://github.com/ImranR98/Obtainium/)**, [UpgradeAll](https://up-a.org/en/) / [GitHub](https://github.com/DUpdateSystem/UpgradeAll), [APKUpdater](https://github.com/rumboalla/apkupdater) or [InstallerX](https://t.me/InstallerX) (root) - APK Installers / Updaters
|
||||
* ⭐ **[Android APK CSE](https://cse.google.com/cse?cx=e0d1769ccf74236e8)** / [CSE 2](https://cse.google.com/cse?cx=73948689c2c206528) / [CSE 3](https://cse.google.com/cse?cx=a805854b6a196d6a6), [App Finder](https://play.google.com/store/apps/details?id=scadica.aq) or [ShowAppsLike](https://showappslike.com/) - APK Search Engines
|
||||
@ -139,7 +136,6 @@
|
||||
|
||||
## ▷ ReVanced Tools
|
||||
|
||||
* 🌐 **[ReVanced-Patch-Bundles](https://github.com/Jman-Github/ReVanced-Patch-Bundles)** - ReVanced Patch Index
|
||||
* ⭐ **[ReVanced Manager](https://revanced.app/)** - Android App Patcher / [Discord](https://discord.com/invite/rF2YcEjcrT) / [GitHub](https://github.com/ReVanced/revanced-manager)
|
||||
* ⭐ **[ReVanced MMT](https://kazimmt.github.io/)** / [TG](https://t.me/ReVanced_MMT/242) or [ReVanced Troubleshooting Guide](https://sodawithoutsparkles.github.io/revanced-troubleshooting-guide/) - Unofficial ReVanced Docs, Guides, and Troubleshooting
|
||||
* [RVX Manager](https://github.com/inotia00/revanced-manager) - ReVanced Extended / [Subreddit](https://www.reddit.com/r/revancedextended/)
|
||||
@ -163,6 +159,8 @@
|
||||
* [GSMHosting](https://forum.gsmhosting.com/vbb/) - GSM Discussion Forum
|
||||
* [Automate](https://llamalab.com/automate/) - Android Automation
|
||||
* [AVNC](https://github.com/gujjwal00/avnc) or [DroidVNC-NG](https://github.com/bk138/droidVNC-NG) - Remote Desktop Clients / VNC
|
||||
* [ApkShellExt2](https://www.apkshellext.com/) - Desktop App Manager
|
||||
* [VMOS](https://www.vmos.com/) - Android on Android Virtual Machines
|
||||
* [EtchDroid](https://etchdroid.app/) - Write OS Images to USB Drive
|
||||
* [ADB101](https://rentry.co/adb101) - Android Debug Bridge Setup Guide
|
||||
* [G-CPU](https://play.google.com/store/apps/details?id=com.insideinc.gcpu) - Hardware Monitor
|
||||
@ -192,19 +190,19 @@
|
||||
* ⭐ **[Iconify](https://github.com/Mahmud0808/Iconify)** (root), [RBoard](https://forum.xda-developers.com/t/app-rboard-theme-manager.4331445/) / [GitHub](https://github.com/DerTyp7214/RboardThemeManagerV3), [ColorBlendr](https://github.com/Mahmud0808/ColorBlendr) or [Substratum](https://www.xda-developers.com/substratum-hub/) - Theme Managers
|
||||
* ⭐ **[/r/AndroidThemes](https://www.reddit.com/r/androidthemes/)** - Android Themes Subreddit
|
||||
* ⭐ **[Mobile Abyss](https://mobile.alphacoders.com/)** - Wallpapers
|
||||
* [VirtualXposed](https://github.com/android-hacker/VirtualXposed), [PixelXpert](https://github.com/siavash79/PixelXpert), [AlwaysOnEdge](http://www.aoeapps.com/) 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
|
||||
* [Muzei](https://muzei.co/), [Doodle](https://patrickzedler.com/doodle/) or [Amoled Backgrounds](https://play.google.com/store/apps/details?id=com.droidheat.amoledbackgrounds) - Live Android Wallpapers
|
||||
* [Koncius](https://play.google.com/store/apps/details?id=com.koncius.video.wallpaper) - Android Video to Wallpaper
|
||||
* [CanvasDownloader](https://www.canvasdownloader.com/) - Extract Spotify Canvas Walls
|
||||
* [/r/iWallpaper](https://www.reddit.com/r/iWallpaper/) or [/r/MobileWallpaper](https://www.reddit.com/r/MobileWallpaper/) - Mobile Wallpaper Subs
|
||||
* [wallhaven](https://wallhaven.cc/search?categories=110&purity=100&ratios=portrait) - Wallpapers
|
||||
* [WallFlow](https://github.com/ammargitham/WallFlow) - Wallpapers
|
||||
* [Wallpaper Engine](https://www.wallpaperengine.io/android/en) - Wallpapers
|
||||
* [wallman](https://gitlab.com/colorata/wallman) - Wallpapers
|
||||
* [FreshWalls](https://play.google.com/store/apps/details?id=com.techburner.freshwalls) - Wallpapers
|
||||
* [Backdrops](https://www.backdrops.io/) - Wallpapers
|
||||
* [Phonetones](http://onj3.andrelouis.com/phonetones/) or [RingtoneRobot](https://t.me/RingtoneRobot) - Ringtones Directories
|
||||
* [AlwaysOnEdge](http://www.aoeapps.com/) or [Dashbud](https://dashbud.dev/) / [Discord](https://discord.com/invite/78h7xgj) - Android Customization Apps
|
||||
* [VirtualXposed](https://github.com/android-hacker/VirtualXposed) - Xposed Frameworks
|
||||
* [Panels](https://play.google.com/store/apps/details?id=com.fossor.panels&hl=en_US&gl=QA) - Android Sidebar Panel
|
||||
* [Statusbar Icon Hider](https://play.google.com/store/apps/details?id=com.cooliehat.statusbariconhider) - Hide Status Bar Items
|
||||
* [Candybar](https://github.com/zixpo/candybar) - Custom Icon Pack Dashboard
|
||||
@ -226,6 +224,7 @@
|
||||
* [Battarang](https://battarang.anissan.com) / [GitHub](https://github.com/ni554n/battarang-notifier-android) - Battery Monitor / Manager
|
||||
* [ClassicPowerMenu](https://github.com/KieronQuinn/ClassicPowerMenu) - Android Power Menu Replacement / Root
|
||||
* [Hail](https://github.com/aistra0528/Hail) - Auto-Deactivate Unused Apps
|
||||
* [Tweaker](https://github.com/zacharee/Tweaker) - Android System Tweaks / Features
|
||||
* [BatteryTool](https://github.com/Domi04151309/BatteryTool) (root) or [Drowser](https://gitlab.com/juanitobananas/drowser) (root) - Freeze App Background Activities
|
||||
|
||||
***
|
||||
@ -244,9 +243,7 @@
|
||||
* [SmoothAction](https://play.google.com/store/apps/details?id=com.danielkorgel.SmoothActionCamSlowmo) - Slow Motion Video Recorder
|
||||
* [IRuin](https://iriun.com/), [Reincubate Camo](https://reincubate.com/camo/) or [DroidCam](https://github.com/dev47apps/droidcam) - Use Android as Webcam
|
||||
* [Locket Widget](https://play.google.com/store/apps/details?id=com.locket.Locket&hl=en&gl=US) - Real-time Photo Sharing
|
||||
* [Material Photo Widget](https://github.com/fibelatti/photo-widget) - Homescreen Photo Widget
|
||||
* [ImageToolbox](https://github.com/T8RIN/ImageToolbox), [Hypic](https://play.google.com/store/apps/details?id=com.xt.retouchoversea), [Snapseed](https://play.google.com/store/apps/details?id=com.niksoftware.snapseed) or [Pixomatic](https://pixomatic.us/) - Image Editors
|
||||
* [ImgurViewer](https://github.com/SpartanJ/ImgurViewer) - Quickly View Imgur (+ other site) Images
|
||||
* [Mematic](https://www.mematic.net/) or [Memetastic](https://github.com/gsantner/memetastic) - Meme Creators
|
||||
* [VES](https://github.com/VincentEngel/VES-Image-Compare) - Compare Two Images
|
||||
* [PhotoRoom](https://www.photoroom.com/) - Background Removers / Retouch / Enhance
|
||||
@ -258,14 +255,13 @@
|
||||
* [Photo Lab](https://ilixa.com/8bitphotolab.php) - Give Images a Retro Look 8Bit
|
||||
* [starryai](https://starryai.com/) - Generate Art from Text Prompt
|
||||
* [Inspiral](https://inspiral.nathanfriend.io/) - Create Spirograph Art
|
||||
* [Photo Resizer](https://play.google.com/store/apps/details?id=com.simplemobilephotoresizer&hl=en&gl=US) - Image Resizers
|
||||
* [Photo Resizer](https://play.google.com/store/apps/details?id=com.simplemobilephotoresizer&hl=en&gl=US) or [ImageResizer](https://github.com/T8RIN/ImageToolbox) - Image Resizers
|
||||
* [Imagepipe](https://codeberg.org/Starfish/Imagepipe) - Image Size Reducer
|
||||
* [FFShare](https://github.com/caydey/ffshare) - Compress Videos / Images
|
||||
* [RealSR](https://github.com/tumuyan/RealSR-NCNN-Android), [MintAI](https://play.google.com/store/apps/details?id=com.mingkun.mintAI) or [Galaxy Enhance-X](https://www.apkmirror.com/apk/samsung-electronics-co-ltd/galaxy-enhance-x/) - Image Upscalers
|
||||
* [Upscaler](https://play.google.com/store/apps/details?id=com.ethanzone.upscaler&hl=en_US&gl=QA), [RealSR](https://github.com/tumuyan/RealSR-NCNN-Android), [MintAI](https://play.google.com/store/apps/details?id=com.mingkun.mintAI) or [Galaxy Enhance-X](https://www.apkmirror.com/apk/samsung-electronics-co-ltd/galaxy-enhance-x/) - Image Upscalers
|
||||
* [EasyWatermark](https://github.com/rosuH/EasyWatermark) - Add Watermark to Images
|
||||
* [Tidy](https://github.com/slavabarkov/tidy) - Text-to-Image / Image-to-Image search
|
||||
* [Image Searcher](https://play.google.com/store/apps/details?id=sansunsen3.imagesearcher) - Image Search App
|
||||
* [SauceNAO](https://github.com/LuK1337/SauceNAO) - Reverse Image Search
|
||||
* [AppMockUp](https://app-mockup.com/) - Screenshot Builder
|
||||
* [Scrambled Exif](https://gitlab.com/juanitobananas/scrambled-exif/tree/HEAD), [MetadataRemover](https://github.com/Crazy-Marvin/MetadataRemover) or [exif-eraser](https://github.com/Tommy-Geenexus/exif-eraser) - Remove Image Metadata
|
||||
|
||||
@ -273,21 +269,15 @@
|
||||
|
||||
## ▷ Keyboard / Text
|
||||
|
||||
* ⭐ **[FUTO Keyboard](https://keyboard.futo.org/)** - Privacy-Focused Keyboard
|
||||
* ⭐ **[FUTO Voice](https://voiceinput.futo.org/)** - AI Voice Keyboard
|
||||
* ⭐ **[Florisboard](https://florisboard.org)** - Privacy-Focused Keyboard
|
||||
* ⭐ **[Thumb-Key](https://github.com/dessalines/thumb-key)** - Keyboard
|
||||
* [HeliBoard](https://github.com/Helium314/HeliBoard) - Keyboard
|
||||
* [Flickboard](https://github.com/nightkr/flickboard) - Keyboard
|
||||
* [Unexpected Keyboard](https://github.com/Julow/Unexpected-Keyboard) - Keyboard
|
||||
* [AnySoftKeyboard](https://anysoftkeyboard.github.io/) - Privacy-Focused Keyboard
|
||||
* [Sayboard](https://github.com/ElishaAz/Sayboard) - AI Voice Keyboard
|
||||
* ⭐ **[Thumb-Key](https://github.com/dessalines/thumb-key)**, [HeliBoard](https://github.com/Helium314/HeliBoard), [Flickboard](https://github.com/nightkr/flickboard) or [Unexpected Keyboard](https://github.com/Julow/Unexpected-Keyboard) - Keyboard Apps
|
||||
* ⭐ **[Florisboard](https://florisboard.org)** or [AnySoftKeyboard](https://anysoftkeyboard.github.io/) - Incognito Keyboard
|
||||
* [NotificationDictionary](https://github.com/tirkarthi/NotificationDictionary) - Dictionary App
|
||||
* [DeepLAndroid](https://github.com/sakusaku3939/DeepLAndroid), [RTranslator](https://github.com/niedev/RTranslator) or [TranslateYou](https://github.com/you-apps/TranslateYou) - Translation Apps
|
||||
* [DeepLAndroid](https://github.com/sakusaku3939/DeepLAndroid) or [TranslateYou](https://github.com/you-apps/TranslateYou) - Translation Apps
|
||||
* [Sayboard](https://github.com/ElishaAz/Sayboard) or [FUTO](https://voiceinput.futo.org/) - AI Voice Keyboard
|
||||
* [Grammarly](https://rentry.co/FMHYBase64#grammarly-keyboard-premium) - Grammarly Keyboard Premium
|
||||
* [UnicodePad](https://play.google.com/store/apps/details?id=jp.ddo.hotmist.unicodepad) / [GitHub](https://github.com/Ryosuke839/UnicodePad) - Emoji / Unicode Manager
|
||||
* [Memory Guardian](https://github.com/hashemi-hossein/memory-guardian/) or [Clipboard CopyPaste](https://www.evvasoft.com/ccp.html) - Clipboard Managers
|
||||
* [FlutterMarkdownEditor](https://github.com/adeeteya/FlutterMarkdownEditor) or [PocketMark](https://play.google.com/store/apps/details?id=com.ZetaDev.PocketMark) - Markdown Editors
|
||||
* [FlutterMarkdownEditor](https://github.com/adeeteya/FlutterMarkdownEditor) - Markdown Editor
|
||||
* [markdownr](https://github.com/sanzoghenzo/markdownr) - Webpage to Markdown Converter
|
||||
|
||||
***
|
||||
@ -311,7 +301,6 @@
|
||||
* [ConnectYou](https://github.com/you-apps/ConnectYou) - Contacts App
|
||||
* [OpenContacts](https://gitlab.com/sultanahamer/OpenContacts) - Save Contacts to Separate Database
|
||||
* [android-call-recorder](https://gitlab.com/axet/android-call-recorder) - Call Recorder
|
||||
* [Logger](https://github.com/Sanmeet007/logger) - View / Export Call Logs
|
||||
* [Should I Answer?](https://www.shouldianswer.net/), [Yet Another Call Blocker](https://f-droid.org/en/packages/dummydomain.yetanothercallblocker/) / [GitLab](https://gitlab.com/xynngh/YetAnotherCallBlocker), [SpamBlocker](https://github.com/aj3423/SpamBlocker) or [Silence](https://f-droid.org/packages/me.lucky.silence) - Block Spam Calls
|
||||
* [The National Do Not Call Registry](https://www.donotcall.gov/) - Opt Out of Telemarketing Calls
|
||||
* [Scammer.Info](https://scammer.info/) - Scam Numbers Database
|
||||
@ -329,7 +318,6 @@
|
||||
* ⭐ **Magisk Tools** - [Module Manager](https://github.com/DerGoogler/MMRL), [2](https://github.com/MRepoApp/MRepo/) / [Mods](https://t.me/magiskmod_update) / [Support Layer](https://github.com/axonasif/rusty-magisk) / [PlayIntegrity Fix](https://xdaforums.com/t/module-play-integrity-fix-safetynet-fix.4607985/), [2](https://github.com/osm0sis/PlayIntegrityFork) / [Fix Guide](https://xdaforums.com/t/module-play-integrity-fix-safetynet-fix.4607985/page-177#post-89189572) / [Modules](https://www.androidacy.com/magisk-modules-repository/) / [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
|
||||
* [aShell](https://github.com/hyperio546/ladb-builds) or [aShell](https://gitlab.com/sunilpaulmathew/ashell) or [aShellYou](https://github.com/DP-Hridayan/aShellYou) - ADB Shells
|
||||
* [LiveBoot](https://play.google.com/store/apps/details?id=eu.chainfire.liveboot&hl=en_IN) - LogCat / Dmesg Boot Animation
|
||||
* [LogFox](https://github.com/F0x1d/LogFox) - LogCat Reader
|
||||
* [Amazing Temp Root](https://forum.xda-developers.com/t/amazing-temp-root-for-mediatek-armv8-2020-08-24.3922213/) - MediaTek Temp Root
|
||||
@ -339,6 +327,7 @@
|
||||
* [Smali Patcher](https://forum.xda-developers.com/t/module-smali-patcher-7-4.3680053/) - Android System Patcher
|
||||
* [Play Integrity API Checker](https://github.com/1nikolas/play-integrity-checker-app) - Device Integrity Checker
|
||||
* [Albastuz3d](https://albastuz3d.net/) - Stock Phone ROMs
|
||||
* [LADB Builds](https://github.com/hyperio546/ladb-builds) or [aShell](https://gitlab.com/sunilpaulmathew/ashell) - ADB Shell
|
||||
* [ConnectBOt](https://connectbot.org/) - SSH Client
|
||||
|
||||
***
|
||||
@ -374,7 +363,7 @@
|
||||
* [Audio-Recorder](https://gitlab.com/axet/android-audio-recorder/tree/HEAD) or [android-audio-recorder](https://gitlab.com/axet/android-audio-recorder) - Audio Recorders
|
||||
* [Noiseun Canceller](https://play.google.com/store/apps/details?id=com.jazibkhan.noiseuncanceller) - Audio Surrounding Recorder
|
||||
* [Voiceliner](https://a9.io/voiceliner/) - Voice Memos / [GitHub](https://github.com/maxkrieger/voiceliner)
|
||||
* [TouchDroid](https://github.com/vitaminncpp/TouchDroid), [Mousedroid](https://github.com/hypertensiune/Mousedroid) or [USB HID Client](https://github.com/Arian04/android-hid-client) (root) - Use Device as PC Mouse / Keyboard
|
||||
* [TouchDroid](https://github.com/vitaminncpp/TouchDroid) or [USB HID Client](https://github.com/Arian04/android-hid-client) (root) - Use Device as PC Mouse / Keyboard
|
||||
* [Android Virtual Pen](https://github.com/Mathieu-Beliveau/android-virtual-pen) - Use Device as PC Virtual Pen
|
||||
* [Listy](https://listy.is/) - Create Lists of Anything
|
||||
* [VoiceGPT](https://github.com/WSTxda/Plugin-VoiceGPT) or [Dicio](https://github.com/Stypox/dicio-android) - Voice Assistants
|
||||
@ -393,9 +382,10 @@
|
||||
* ⭐ **[AdGuard Premium](https://rentry.co/FMHYBase64#adguard-premium)** - Adblocking App
|
||||
* ⭐ **[Cromite](https://github.com/uazo/cromite)** or [jQuarks](https://f-droid.org/packages/com.oF2pks.jquarks/) - Adblocking Browsers / [Filter](https://github.com/xarantolus/filtrite) / [Adblock Scripts](https://userscripts.010.one/)
|
||||
* ⭐ **[RedReader](https://github.com/QuantumBadger/RedReader)** or [Stealth](https://f-droid.org/packages/com.cosmos.unreddit/) / [2](https://gitlab.com/cosmosapps/stealth) - Ad Free Reddit Clients
|
||||
* ⭐ **uBlock Origin** - [Firefox](https://addons.mozilla.org/en-US/firefox/addon/ublock-origin/) / [Chromium](https://chromewebstore.google.com/detail/ublock-origin/cjpalhdlnbpafiamejdnhcphjbkeiagm)
|
||||
* ⭐ **uBlock Origin** - [Firefox](https://addons.mozilla.org/en-US/firefox/addon/ublock-origin/) / [Yandex](https://chromewebstore.google.com/detail/ublock-origin/cjpalhdlnbpafiamejdnhcphjbkeiagm)
|
||||
* ⭐ **[Hermit](https://play.google.com/store/apps/details?id=com.chimbori.hermitcrab)** or [Incognito](https://play.google.com/store/apps/details?id=md.elway.webapp) - Web App Containers
|
||||
* ⭐ **[Rethink DNS](https://rethinkdns.com/app)** / [Blocklists](https://rethinkdns.com/app#blocklists), [personalDNSfilter](https://www.zenz-solutions.de/personaldnsfilter-wp/) / [F-Droid](https://f-droid.org/packages/dnsfilter.android), [DNSWarden](https://dnswarden.com/) / [GitHub](https://github.com/bhanupratapys/dnswarden) or [Pi-hole](https://github.com/DesktopECHO/Pi-hole-for-Android) - DNS Adblockers
|
||||
* [Blokada](https://blokada.org/) / [v5](https://go.blokada.org/apk5 ) - Adblocking App
|
||||
* [AdAway](https://adaway.org/) - Adblocking App / [GitHub](https://github.com/AdAway/AdAway)
|
||||
* [InviZible](https://invizible.net) / [GitHub](https://github.com/Gedsh/InviZible) - Adblocking App
|
||||
* [DNS Speed Test & Changer](https://rentry.co/FMHYBase64#dns-speed-test-changer) - DNS Speed Test
|
||||
@ -408,12 +398,12 @@
|
||||
## ▷ Android Privacy
|
||||
|
||||
* 🌐 **[Awesome Android Security](https://github.com/ashishb/android-security-awesome)** - Security Resources
|
||||
* 🌐 **[Guardian Project](https://guardianproject.info/)** / [2](https://guardianproject.info/fdroid/repo), [I Like Android](https://i-like-android.github.io/) or [Divestos Apps](https://divestos.org/pages/recommended_apps) - Privacy Apps
|
||||
* 🌐 **[Guardian Project](https://guardianproject.info/)** / [2](https://guardianproject.info/fdroid/repo), [I Like Android Privacy](https://moistcatawumpus.github.io/i-like-android-privacy/) or [Divestos Apps](https://divestos.org/pages/recommended_apps) - Privacy Apps
|
||||
* 🌐 **[SelfPrivacy](https://selfprivacy.org/)** - Self-Hosted Privacy Apps
|
||||
* ↪️ **[Privacy Based Browsers](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_android_browsers)**
|
||||
* ↪️ **[Encrypted Messengers](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_encrypted_android_messengers)**
|
||||
* ↪️ **[Android 2FA](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/adblock-vpn-privacy#wiki_.25B7_password_privacy_.2F_2fa)**
|
||||
* ⭐ **[TrackerControl](https://trackercontrol.org/)**, [Permission Pilot](https://github.com/d4rken-org/permission-pilot), [Exodus](https://reports.exodus-privacy.eu.org/en/), [PermissionManagerX](https://github.com/mirfatif/PermissionManagerX) or [HideDroid](https://github.com/Mobile-IoT-Security-Lab/HideDroid) - App Permission Managers
|
||||
* ⭐ **[TrackerControl](https://trackercontrol.org/)**, [Permission Pilot](https://github.com/d4rken-org/permission-pilot), [Exodus](https://reports.exodus-privacy.eu.org/en/) or [HideDroid](https://github.com/Mobile-IoT-Security-Lab/HideDroid) - App Permission Managers
|
||||
* ⭐ **[VirusTotal](https://docs.virustotal.com/docs/mobile-apps)** or [Pithus](https://beta.pithus.org/) - APK / URL Virus Scanners
|
||||
* ⭐ **[DPITunnel](https://github.com/nomoresat/DPITunnel-android)** or [Intra](https://getintra.org) - Proxies
|
||||
* ⭐ **[Shadowsocks-Android](https://github.com/shadowsocks/shadowsocks-android)** - Shadowsocks Proxy App
|
||||
@ -424,6 +414,7 @@
|
||||
* [ceno-browser](https://censorship.no/en/index.html) / [GitHub](https://github.com/censorship-no/ceno-browser) - Proxy Browser
|
||||
* [husi](https://github.com/xchacha20-poly1305/husi) - Proxy Config Manager
|
||||
* [Privacy Guides](https://www.privacyguides.org/en/android/) - Android Privacy Guides
|
||||
* [Smartphone Hardening Guide](https://lemmy.ml/post/128667)
|
||||
* [DroidFS](https://forge.chapril.org/hardcoresushi/DroidFS) - Encrypted File Managers
|
||||
* [Extirpater](https://github.com/Divested-Mobile/extirpater) - Space Eraser / Make Deleted Files Irrecoverable
|
||||
* [Leon](https://github.com/svenjacobs/leon) or [Untracker](https://github.com/zhanghai/Untracker) - Remove URL Tracking
|
||||
@ -481,7 +472,6 @@
|
||||
* [GMS-Flags](https://github.com/polodarb/GMS-Flags) - Turn Google Flags On/Off / Root
|
||||
* [MobiDevTools](https://addons.mozilla.org/en-US/firefox/addon/mobidevtools/) - Firefox Inspect Element
|
||||
* [SubX](https://play.google.com/store/apps/details?id=com.alkapps.subx) or [SubscriptionManager](https://play.google.com/store/apps/details?id=de.simolation.subscriptionmanager) - Track Subscription Services
|
||||
* [Lab+](https://github.com/thelooter/labplus_for_gitlab) - GitLab App
|
||||
* [WiFiman](https://play.google.com/store/apps/details?id=com.ubnt.usurvey), [WiFiAnalyzer](https://vremsoftwaredevelopment.github.io/WiFiAnalyzer/) or [WLANScanner](https://github.com/bewue/WLANScanner) - Network Scanners
|
||||
* [Fing](https://www.fing.com/products/fing-app) - Network Toolkit
|
||||
* [MACsposed](https://github.com/DavidBerdik/MACsposed) - Mac Address Spoofing / Root
|
||||
@ -495,16 +485,16 @@
|
||||
* ⭐ **[Aliucord](https://github.com/Aliucord/Aliucord) / [Discord](https://discord.gg/EsNDvBaHVU)** or [Bunny](https://github.com/pyoncord/Bunny) / [Discord](https://discord.gg/XjYgWXHb9Q) - Modded Discord Clients / [Rich Presence](https://kizzy.vercel.app/)
|
||||
* ⭐ **[Voyager](https://vger.app) / [GitHub](https://github.com/aeharding/voyager)**, [Jerboa](https://github.com/dessalines/jerboa), [Eternity](https://codeberg.org/Bazsalanszky/Eternity), [Raccoon](https://github.com/diegoberaldin/RaccoonForLemmy) or [Thunder](https://github.com/thunder-app/thunder) - Lemmy Clients
|
||||
* ⭐ **[Tusky](https://tusky.app/)**, [Mastify](https://github.com/whitescent/Mastify), [tooot](https://tooot.app/ ), [SubwayTooter](https://github.com/tateisu/SubwayTooter), [Megalodon](https://sk22.github.io/megalodon/) or [Dimett](https://github.com/MateriiApps/Dimett) - Mastodon Clients / [Improved Notifications](https://LucasGGamerM.github.io/moshidon/) / [GitHub](https://github.com/LucasGGamerM/moshidon)
|
||||
* ⭐ **[Reddit Client Patch Guide](https://github.com/KobeW50/ReVanced-Documentation/blob/main/Reddit-Client-ID-Guide.md)** - How To Patch 3rd Party Reddit Clients
|
||||
* ⭐ **[piko](https://t.me/pikopatches)** / [GitHub](https://github.com/crimera/piko) or [Squawker](https://github.com/j-fbriere/squawker) - Twitter Apps
|
||||
* ⭐ **[Patch Reddit Clients](https://docs.google.com/document/u/0/d/1wHvqQwCYdJrQg4BKlGIVDLksPN0KpOnJWniT6PbZSrI/mobilebasic)** - How To Patch 3rd Party Reddit Clients
|
||||
* [Watomatic](https://watomatic.app/) / [GitHub](https://github.com/adeekshith/watomatic) or [AutoResponder](https://www.autoresponder.ai/) - Chat App Auto-Responders
|
||||
* [Quacker](https://thehcj.github.io/Quacker/) or [piko](https://github.com/crimera/piko) / [Patches](https://t.me/pikopatches) - Twitter Apps
|
||||
* [MessengerEx](https://github.com/C10udburst/MessengerEx/) - Facebook Messenger Adblocker
|
||||
* [Xtra](https://github.com/crackededed/Xtra), [BBTV](https://github.com/bttv-android/bttv), [Twire](https://github.com/twireapp/Twire) or [Frosty](https://www.frostyapp.io/) - Twitch Clients
|
||||
* [DankChat](https://github.com/flex3r/DankChat) - Talk in Multiple Twitch Chats at Once
|
||||
* [OldLander](https://github.com/OctoNezd/oldlander) - Improve Old Reddit
|
||||
* [Updoot](https://updoot.app/) - Reddit Saved Post / Comment Manager
|
||||
* [MobiChan](https://github.com/Rukkaitto/mobichan), [Kuroba](https://github.com/K1rakishou/Kuroba-Experimental) / [2](https://github.com/Adamantcheese/Kuroba) or [Chan](https://github.com/moffatman/chan) - 4Chan Apps
|
||||
* [Instander](https://thedise.me/instander/), [Instadev](https://t.me/Instadevofficial), [Instafel](https://t.me/instafel/41) / [2](https://t.me/instafel/11) or [MyInsta](https://myinsta.app/) / [Telegram](https://t.me/instasmashrepo) - Modded Instagram Clients / [Telegram](https://t.me/instander) / [Tools](https://play.google.com/store/apps/details?id=com.dageek.socialtoolbox_android)
|
||||
* [Instander](https://thedise.me/instander/), [Instafel](https://t.me/instafel/41) / [2](https://t.me/instafel/11) or [MyInsta](https://myinsta.app/) / [Telegram](https://t.me/instasmashrepo) - Modded Instagram Clients / [Telegram](https://t.me/instander) / [Tools](https://play.google.com/store/apps/details?id=com.dageek.socialtoolbox_android)
|
||||
* [TikTokModCloud](https://t.me/TikTokModCloud) - Modded TikTok Client
|
||||
* [LC_Reborn](https://t.me/s/Facebook_LC_Reborn) - Facebook Clients
|
||||
* [MessengerPro](https://rentry.co/FMHYBase64#messengerpro) - Modded Facebook Messenger
|
||||
@ -524,17 +514,16 @@
|
||||
|
||||
* ⭐ **[MiXplorer](https://mixplorer.com/)**, [2](https://forum.xda-developers.com/t/app-2-2-mixplorer-v6-x-released-fully-featured-file-manager.1523691/) - Advanced Root File Explorer / Manager / [Themes](https://play.google.com/store/apps/details?id=de.dertyp7214.mixplorerthemecreator)
|
||||
* ⭐ **[SD Maid](https://github.com/d4rken-org/sdmaid-se)** - File Manager / Data Cleaner / [Discord](https://discord.com/invite/8Fjy6PTfXu)
|
||||
* ⭐ **[MaterialFiles](https://github.com/zhanghai/MaterialFiles)** - File Manager
|
||||
* ⭐ **[SyncThing](https://github.com/Catfriend1/syncthing-android)** - File Sync / Sharing
|
||||
* ⭐ **[LocalSend](https://localsend.org/)** - File Sync / Sharing / [Platforms](https://i.ibb.co/nsfMf04/8010dd28ed2d.png)
|
||||
* ⭐ **[Snapdrop Android](https://github.com/fm-sys/snapdrop-android)** or [pairdrop](https://pairdrop.net/) - File Sync / Sharing
|
||||
* ⭐ **[Aria2App](https://github.com/devgianlu/Aria2App)**, **[1DM](https://play.google.com/store/apps/details?id=idm.internet.download.manager&hl=en_US)**, [ADM](https://play.google.com/store/apps/details?id=com.dv.adm) or [FDM](https://play.google.com/store/apps/details?id=org.freedownloadmanager.fdm) - Download Managers
|
||||
* ⭐ **[Aria2App](https://github.com/devgianlu/Aria2App)** or [FDM](https://play.google.com/store/apps/details?id=org.freedownloadmanager.fdm) - Download Managers
|
||||
* [Round Sync](https://github.com/newhinton/Round-Sync), [MetaCTRL](https://metactrl.com/) or [FolderSync](https://www.tacit.dk/) - Multi-Site Cloud Storage File Managers
|
||||
* [dropbox](https://www.dropbox.com/) / [Sync](https://play.google.com/store/apps/details?id=com.ttxapps.dropsync) / [GUI](https://github.com/howeyc/crocgui) - Cloud Storage
|
||||
* [aQRoss](https://aqross.app/) - QR Code File Sharing
|
||||
* [InShare](https://play.google.com/store/apps/details?id=sharefiles.sharemusic.shareapps.filetransfer) - File Sync / Sharing
|
||||
* [Arc](https://play.google.com/store/apps/details?id=com.quadren.arc) - File Sync / Sharing
|
||||
* [iyox-Wormhole](https://github.com/iyox-studios/iyox-Wormhole) or [Wormhole](https://gitlab.com/lukas-heiligenbrunner/wormhole) - File Sync / Sharing
|
||||
* [iyox-Wormhole](https://github.com/iyox-studios/iyox-Wormhole) - File Sync / Sharing
|
||||
* [Save on Device](https://github.com/lmj0011/save-on-device) - File Sync / Sharing
|
||||
* [DriveSync](https://play.google.com/store/apps/details?id=com.ttxapps.drivesync) - Google Drive Sync
|
||||
* [Total Commander](https://www.ghisler.com/ce.htm) - File Manager
|
||||
@ -554,6 +543,7 @@
|
||||
## ▷ Productivity / Calendars
|
||||
|
||||
* ↪️ **[Text Editors / To-Do](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_android_note_apps)**
|
||||
* [Git Journal](https://gitjournal.io/) - Mobile Markdown Notes
|
||||
* [Sleep as Android](https://sleep.urbandroid.org/), [Chrono](https://github.com/vicolo-dev/chrono), [ClockYou](https://github.com/you-apps/ClockYou) or [AlarmClock](https://github.com/yuriykulikov/AlarmClock) - Clocks / Alarms
|
||||
* [Etar](https://github.com/Etar-Group/Etar-Calendar), [JTX](https://jtx.techbee.at/), [digical](https://digibites.nl/digical) or [TimeTreeApp](https://timetreeapp.com/intl/en/) - Calendars
|
||||
* [QRAlarm](https://github.com/sweakpl/qralarm-android) - Scan QR Code to Turn Off Alarm
|
||||
@ -562,8 +552,9 @@
|
||||
* [Sectograph](https://play.google.com/store/apps/details?id=prox.lab.calclock) or [TimePlanner](https://github.com/v1tzor/TimePlanner) - Planner Apps
|
||||
* [FamilyWall](https://www.familywall.com/) - Family Oriented Planner
|
||||
* [Folksable](https://folksable.com/), [unhabits](https://github.com/iSoron/uhabits), [HabitBuilder](https://github.com/ofalvai/HabitBuilder), [MoreDays](https://gitlab.com/wuapps/moredays), [Goals](https://play.google.com/store/apps/details?id=io.rosenpin.goals), [TheFor](https://thefor.xyz/) or [MiindLeak](https://www.mindleak.app/) - Habit Trackers
|
||||
* [Farhan](https://github.com/tahaak67/Farhan), [DetoxDroid](https://github.com/flxapps/DetoxDroid) or [StopScroll](https://play.google.com/store/apps/details?id=com.noscroll.antiscroll) - Control Phone Addiction
|
||||
* [Ascent](https://play.google.com/store/apps/details?id=com.ascent) - App Blocker
|
||||
* [Forest](https://forestapp.cc/), [MyBrain](https://github.com/mhss1/MyBrain), [Success](https://eveningkid.com/success/), [Goodtime](https://github.com/adrcotfas/Goodtime), [timeto](https://github.com/medvedev91/timetome) or [Mind Leak](https://play.google.com/store/apps/details?id=de.mdiener.android.mindleak) - Productivity Trackers
|
||||
* [Forest](https://forestapp.cc/), [MyBrain](https://github.com/mhss1/MyBrain), [Success](https://eveningkid.com/success/), [Goodtime](https://github.com/adrcotfas/Goodtime) or [Mind Leak](https://play.google.com/store/apps/details?id=de.mdiener.android.mindleak) - Productivity Trackers
|
||||
|
||||
***
|
||||
|
||||
@ -572,6 +563,7 @@
|
||||
* ⭐ **[ntfy](https://ntfy.sh/) / [Discord](https://discord.gg/cT7ECsZj9w) / [Matrix](https://matrix.to/#/#ntfy-space:matrix.org)**, [AppRise](https://github.com/caronc/apprise), [PingMe](https://pingme.lmno.pk/) or [Notification Maker](https://play.google.com/store/apps/details?id=com.wagner.valentin.notificationmaker2) - Custom Push Notifications
|
||||
* [Compass QS Tile](https://github.com/WSTxda/Compass-QS-Tile) or [QuickTiles](https://gitlab.com/flxholle/quick-tiles) - Quick Setting Tiles
|
||||
* [Smartspacer](https://github.com/KieronQuinn/Smartspacer) - Custom Android at a Glance Widget
|
||||
* [Pinnit](https://github.com/msasikanth/pinnit) - Notification Pinning
|
||||
* [Notification Listener](https://github.com/Alfio010/notification-listener-android) - Save Device Notifications
|
||||
* [B.D.T](https://bdt.jepfa.de/) - Time with Between Time Notifications
|
||||
* [TidyPanel](https://play.google.com/store/apps/details?id=com.dharmapoudel.tidypanel) - Notification Blocker
|
||||
@ -608,7 +600,6 @@
|
||||
* [Clima](https://codeberg.org/Lacerte/clima)
|
||||
* [Rain](https://github.com/DarkMooNight/Rain)
|
||||
* [KWeather](https://invent.kde.org/utilities/kweather)
|
||||
* [Meteored](https://rentry.co/FMHYBase64#meteored)
|
||||
* [OpenWeather](https://play.google.com/store/apps/details?id=uk.co.openweather)
|
||||
* [Bura](https://github.com/davidtakac/bura)
|
||||
* [omWeather](https://github.com/woheller69/omweather)
|
||||
@ -627,10 +618,11 @@
|
||||
* ⭐ **[Termux](https://termux.com/)**, [Termux Monet](https://github.com/KitsunedFox/termux-monet), [Limbo](https://github.com/limboemu/limbo) or [TermOne Plus](https://termoneplus.com/) - Windows Emulator on Android / Terminal Emulators / OS Environments
|
||||
* ⭐ **Termux Tools** - [YT-DL](https://github.com/OzakIOne/termux-youtube-dl), [2](https://github.com/khansaad1275/Termux-YTD) / [GUI](https://github.com/termux/termux-gui) / [ADB / Fastboot Tools](https://github.com/MasterDevX/Termux-ADB) / [Beautify](https://github.com/mayTermux/myTermux)
|
||||
* ⭐ **[WSABuilds](https://github.com/MustardChef/WSABuilds)** - Android Emulator on Windows / Windows Subsystem / Pre-built Binaries
|
||||
* ⭐ **[WayDroid](https://waydro.id/)** / [GitHub](https://github.com/waydroid) / [Scripts](https://github.com/casualsnek/waydroid_script), [Redroid](https://github.com/remote-android/redroid-doc), [PostmarketOS](https://www.postmarketos.org/), [Ubuntu Touch](https://ubuntu-touch.io/get-ubuntu-touch), [Plasma Mobile](https://plasma-mobile.org/) or [Mobian](https://mobian-project.org/) - Android Emulator on Linux
|
||||
* ⭐ **[WayDroid](https://waydro.id/)** / **[GitHub](https://github.com/waydroid)**, [Redroid](https://github.com/remote-android/redroid-doc), [PostmarketOS](https://www.postmarketos.org/), [Ubuntu Touch](https://ubuntu-touch.io/get-ubuntu-touch), [Plasma Mobile](https://plasma-mobile.org/) or [Mobian](https://mobian-project.org/) - Android Emulator on Linux
|
||||
* ⭐ **[Android Studio Emulator](https://developer.android.com/studio/run/managing-avds#createavd)**
|
||||
* ⭐ **[mobox](https://github.com/olegos2/mobox)**, [Box64Droid](https://github.com/Ilya114/Box64Droid), [Vectras](http://vectras.netlify.app) / [GitHub](https://github.com/epicstudios856/Vectras-VM-Android) or [Winlator](https://winlator.org) / [GitHub](https://github.com/brunodev85/winlator) - Windows Emulators on Android
|
||||
* ⭐ **[Google Play Games](https://play.google.com/googleplaygames)** - Android Mobile Games on Windows
|
||||
* [Android x86](https://www.android-x86.org/) - Android Emulator on Windows / [Installer](https://aopc.dev/r/advanced-android-x86-installer-for-windows.61/) / [Source](https://www.android-x86.org/source.html) / [Smart Dock](https://github.com/axel358/smartdock)
|
||||
* [PhoenixOS - BR (Discord)](https://discord.gg/BQ4td84) - Android Emulator on Windows
|
||||
* [PhoenixOS Darkmatter](https://aopc.dev/r/phoenixos-darkmatter-supercharged-for-everyone.2/) - Android Emulator on Windows / [Discord](https://discord.com/invite/AcGAGrzZ4e)
|
||||
* [Andronix](https://andronix.app/) - Linux Emulator for Android
|
||||
@ -666,7 +658,6 @@
|
||||
* [Flud](https://play.google.com/store/apps/details?id=com.delphicoder.flud)
|
||||
* [BiglyBT](https://android.biglybt.com/)
|
||||
* [TorrServe](https://github.com/YouROK/TorrServe)
|
||||
* [ADM](https://play.google.com/store/apps/details?id=com.dv.adm)
|
||||
* [Trireme](https://github.com/teal77/trireme) - Deluge Client
|
||||
* [Transdroid](https://www.transdroid.org) - Manage BitTorrent Clients / [Github](https://github.com/erickok/transdroid) / [F-Droid](https://f-droid.org/packages/org.transdroid.full/)
|
||||
* [nzb360](https://play.google.com/store/apps/details?id=com.kevinforeman.nzb360) - NZB / Torrent Manager
|
||||
@ -707,9 +698,9 @@
|
||||
* [Shosetsu](https://shosetsu.app/) - Light Novels / [GitHub](https://gitlab.com/shosetsuorg/shosetsu) / [Dev Builds](https://github.com/shosetsuorg/shosetsu-preview) / [Discord](https://discord.gg/ttSX7gB)
|
||||
* [NovelLibrary](https://github.com/gmathi/NovelLibrary) - Light Novels / [Discord](https://discord.gg/qFZX4vdEdF)
|
||||
* [LNReader](https://github.com/LNReader/lnreader), [Baruch](https://github.com/adreeeyan/baruch), [Ranobe](https://github.com/ranobe-org/ranobe), [IReader](https://ireaderorg.netlify.app/) or [QuickNovel](https://apt.izzysoft.de/fdroid/index/apk/com.lagradost.quicknovel) - Light Novels
|
||||
* [SoftGoods](https://softgoods.app/) - Fanfiction
|
||||
* [SoftGoods](https://softgoods.app/) - Fan Fiction
|
||||
* [Bionic Reading](https://play.google.com/store/apps/details?id=com.bionic_reading_app) - Reading Fixation Points
|
||||
* [OSS Document Scanner](https://github.com/Akylas/OSS-DocumentScanner), [Adobe Scanner](https://www.adobe.com/acrobat/mobile/scanner-app.html), [vFLat Scan](https://play.google.com/store/apps/details?id=com.voyagerx.scanner) or [OpenScan](https://github.com/ethereal-developers/OpenScan) - Document Scanners
|
||||
* [Adobe Scanner](https://www.adobe.com/acrobat/mobile/scanner-app.html), [CleanScan](https://github.com/clean-apps/CleanSCAN), [vFLat Scan](https://play.google.com/store/apps/details?id=com.voyagerx.scanner) or [OpenScan](https://github.com/ethereal-developers/OpenScan) - Document Scanners
|
||||
* [OpenDocument](https://opendocument.app/) - Document Reader
|
||||
* [Paperless](https://github.com/astubenbord/paperless-mobile) - Document Manager
|
||||
|
||||
@ -717,14 +708,17 @@
|
||||
|
||||
## ▷ Android Manga
|
||||
|
||||
* ⭐ **[Mihon](https://mihon.app/) / [Discord](https://discord.gg/mihon)** - Manga Reader / [Extensions](https://keiyoushi.github.io/extensions/), [2](https://discord.gg/3FbCpdKbdY), [3](https://wotaku.moe/guides/tech/repo) / [Official Forks](https://mihon.app/forks/), [2](https://github.com/null2264/yokai), [3](https://github.com/nekomangaorg/Neko), [4](https://github.com/komikku-app/komikku)
|
||||
* ⭐ **[Mihon](https://mihon.app/) / [Discord](https://discord.gg/mihon)** - Manga Reader / [Extensions](https://keiyoushi.github.io/extensions/), [2](https://discord.gg/3FbCpdKbdY) / [Official Forks](https://mihon.app/forks/), [2](https://github.com/null2264/yokai), [3](https://github.com/nekomangaorg/Neko), [4](https://github.com/komikku-app/komikku)
|
||||
* ⭐ **[Kotatsu](https://kotatsu.app/) / [Discord](https://discord.gg/NNJ5RgVBC5) / [Telegram](https://t.me/kotatsuapp)** - Manga Reader
|
||||
* ⭐ **[Dantotsu](https://github.com/rebelonion/Dantotsup)** - Manga Reader / [Extension Guide](https://wotaku.moe/guides/tech/repo) / [Discord](https://discord.gg/W9KHG7zzKd)
|
||||
* [Neko](https://github.com/nekomangaorg/Neko) / [Discord](https://discord.gg/4vmK42QuKG) - Manga Reader
|
||||
* ⭐ **[Dantotsu](https://dantotsu.app)** - Manga Reader / [GitHub](https://github.com/rebelonion/Dantotsu)
|
||||
* [Perfect Viewer](https://rentry.co/FMHYBase64#perfect-viewer) - Manga File Viewer
|
||||
* [MangaDLR](https://bitbucket.org/cylonu87/mangadlr/downloads/) - Manga File Viewer
|
||||
* [Manga Tag](https://www.mangatag.com/) - Manga File Viewer
|
||||
* [AnimeChicken](https://animechicken.app/) - Manga File Viewer
|
||||
* [Kinoko](https://github.com/gsioteam/kinoko) - Manga File Viewer
|
||||
* [Atsumaru](https://github.com/TheUndo/Atsumaru) - Manga File Viewer
|
||||
* [IsManga Translator](https://ismanga.com/) - Manga Translators
|
||||
* [Kitsune](https://github.com/Drumber/Kitsune) - Manga Tracker
|
||||
|
||||
***
|
||||
@ -734,7 +728,7 @@
|
||||
* ↪️ **[Song Identification Apps](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/audio#wiki_.25B7_song_identification)**
|
||||
* ⭐ **[xManager](https://www.xmanagerapp.com/)** / [Discord](https://discord.com/invite/dnpKn5Wufm) or [Modded Spotify](https://rentry.co/FMHYBase64#modded-spotify-apk) - Ad Free Spotify
|
||||
* ⭐ **xManager Tools** - [Friend Activity](https://spotivity.me/) / [Mute Ads](https://play.google.com/store/apps/details?id=live.teekamsuthar.mutify), [2](https://github.com/aghontpi/ad-silence) / [Stats](https://stats.fm/)
|
||||
* ⭐ **[InnerTune](https://github.com/Malopieds/InnerTune)**, **[Namida](https://github.com/namidaco/namida)**, [RiMusic](https://rimusic.xyz) / [GitHub](https://github.com/fast4x/RiMusic), [Harmony Music](https://github.com/anandnet/Harmony-Music), [SimpMusic](https://simpmusic.tech/), [spmp](https://github.com/toasterofbread/spmp), [ViTune](https://github.com/25huizengek1/ViTune), [Gyawun](https://jhelumcorp.github.io/) or [Vibe You](https://github.com/you-apps/VibeYou) - YouTube Music Players
|
||||
* ⭐ **[InnerTune](https://github.com/z-huang/InnerTune)**, **[Namida](https://github.com/namidaco/namida)**, [RiMusic](https://rimusic.xyz) / [GitHub](https://github.com/fast4x/RiMusic), [Harmony Music](https://github.com/anandnet/Harmony-Music), [SimpMusic](https://simpmusic.tech/), [spmp](https://github.com/toasterofbread/spmp), [ViTune](https://github.com/25huizengek1/ViTune), [Gyawun](https://jhelumcorp.github.io/) or [Vibe You](https://github.com/you-apps/VibeYou) - YouTube Music Players
|
||||
* ⭐ **[Seeker](https://play.google.com/store/apps/details?id=com.companyname.andriodapp1)** - Audio Download App / Soulseek Frontend
|
||||
* ⭐ **[AutomaTag](http://automatag.com/)** or [AutoTagger](https://autotagger.ru/) - Metadata Organizers
|
||||
* ⭐ **[AudioRelay](https://audiorelay.net/)** or [Audio Share](https://github.com/mkckr0/audio-share) - Stream PC Audio to Phone
|
||||
@ -742,7 +736,6 @@
|
||||
* ⭐ **[CApod](https://github.com/d4rken-org/capod)**, [OpenPods](https://github.com/adolfintel/OpenPods) or [MaterialPods](https://play.google.com/store/apps/details?id=com.pryshedko.materialpods) - AirPod Monitors / Battery Trackers
|
||||
* [ListenBrainsz](https://github.com/metabrainz/listenbrainz-android) - Music Tracking / Rating
|
||||
* [Spowlo](https://spowlo.com/) - Spotify Audio Downloader / [Telegram](https://t.me/spowlo_chatroom) / [GitHub](https://github.com/BobbyESP/Spowlo/)
|
||||
* [Record Player](https://record-player.glitch.me/) - Find Records on Spotify via Pictures
|
||||
* [YouTubeDL Android](https://github.com/yausername/youtubedl-android), [ytdlnis](https://github.com/deniscerri/ytdlnis), [Seal](https://github.com/JunkFood02/Seal) or [SongTube](https://github.com/SongTube/SongTube-App) / [Telegram](https://t.me/songtubechannel) - YouTube Audio Downloaders
|
||||
* [Redomi](https://github.com/acszo/Redomi/) - Multi-Platform Streaming
|
||||
* [Soundcloud](https://play.google.com/store/apps/details?id=com.soundcloud.android&hl=us) or [GrayJay](https://grayjay.app/) - Streaming
|
||||
@ -756,16 +749,15 @@
|
||||
* [Video to MP3 Converter](https://play.google.com/store/apps/details?id=mp3videoconverter.videotomp3.videotomp3converter) - Video to MP3
|
||||
* [MP3 Tagger](https://play.google.com/store/apps/details?id=com.fillobotto.mp3tagger) - Automatic Audio ID3 Tagging
|
||||
* [Super Sound](https://play.google.com/store/apps/details?id=com.tianxingjian.supersound&hl) - Audio Editor
|
||||
* [Digitron](https://play.google.com/store/apps/details?id=com.geka000.digitron) - Audio Synthesizer
|
||||
* [ViPER4Android](https://github.com/programminghoch10/ViPER4AndroidRepackaged) - Audio Modifier / Equalizer
|
||||
* [Music Maker JAM](https://www.musicmakerjam.app/) - Music Creator / Mixer
|
||||
* [SoundID](https://play.google.com/store/apps/details?id=com.sonarworks.soundid.mobile), [Wavelet](https://play.google.com/store/apps/details?id=com.pittvandewitt.wavelet), [Poweramp Equalizer](https://play.google.com/store/apps/details?id=com.maxmpz.equalizer), [RootlessJamesDSP](https://github.com/ThePBone/RootlessJamesDSP), [Precise Volume](https://play.google.com/store/apps/details?id=com.phascinate.precisevolume) or [Flat Equalizer](https://play.google.com/store/apps/details?id=com.jazibkhan.equalizer) - Audio Equalizers
|
||||
* [SoundID](https://play.google.com/store/apps/details?id=com.sonarworks.soundid.mobile), [Wavelet](https://play.google.com/store/apps/details?id=com.pittvandewitt.wavelet), [Poweramp Equalizer](https://play.google.com/store/apps/details?id=com.maxmpz.equalizer), [RootlessJamesDSP](https://github.com/ThePBone/RootlessJamesDSP) or [Flat Equalizer](https://play.google.com/store/apps/details?id=com.jazibkhan.equalizer) - Audio Equalizer
|
||||
* [audio-analyzer](https://github.com/woheller69/audio-analyzer-for-android) or [Spectroid](https://play.google.com/store/apps/details?id=org.intoorbit.spectrum) - Audio Spectrum Analyzers
|
||||
* [Black Screen](https://play.google.com/store/apps/details?id=io.japp.blackscreen) - Turn Off Display While Audio is Playing
|
||||
* [Flip DND](https://play.google.com/store/apps/details?id=com.urbandroid.dnd) - Flip to Activate Do Not Disturb Mode
|
||||
* [AutoDND](https://github.com/dic1911/android_AutoDND/) - App-Activated Do Not Disturb Mode
|
||||
* [Audify](https://play.google.com/store/apps/details?id=in.codeseed.audify) - Reduce Notification Distractions
|
||||
* [Volumee](https://maslanka.app/volumee/) or [SoundTap](https://play.google.com/store/apps/details?id=fr.angel.soundtap) - Volume Button Track Control
|
||||
* [Volumee](https://maslanka.app/volumee/) - Volume Button Track Control
|
||||
* [Musekit](https://github.com/Kwasow/Musekit) - Tuning Fork / Metronome
|
||||
* [SongSync](https://github.com/Lambada10/SongSync) - Download Lyrics
|
||||
* [FastLyrics](https://github.com/TecCheck/FastLyrics) - Find Lyrics for Playing Song
|
||||
@ -792,13 +784,13 @@
|
||||
* [Apollo Music Player](https://github.com/nuclearfog/Apollo-Music)
|
||||
* [Music Player GO](https://github.com/enricocid/Music-Player-GO)
|
||||
* [Nyx Music Player](https://play.google.com/store/apps/details?id=com.awedea.nyx)
|
||||
* [AndroidX Media](https://github.com/androidx/media)
|
||||
* [ExoPlayer](https://github.com/google/ExoPlayer)
|
||||
* [mucke](https://github.com/moritz-weber/mucke)
|
||||
* [Phonograph Plus](https://github.com/chr56/Phonograph_Plus)
|
||||
* [Vanilla](https://play.google.com/store/apps/details?id=com.kyant.vanilla&hl=en)
|
||||
* [Musicmax](https://github.com/TheMusicmax/Musicmax)
|
||||
* [Pulse Music](https://play.google.com/store/apps/details?id=com.hardcodecoder.pulse)
|
||||
* [Zen Music Player](https://github.com/pakka-papad/Zen)
|
||||
* [SimpleMP-Compose](https://github.com/lighttigerXIV/SimpleMP-Compose)
|
||||
* [BladePlayer](https://github.com/vhaudiquet/BladePlayer)
|
||||
* [Salt Player](https://github.com/Moriafly/SaltPlayerSource)
|
||||
* [Black Candy](https://github.com/blackcandy-org/android) - Self-Hosted Streaming Server
|
||||
@ -807,34 +799,21 @@
|
||||
|
||||
## ▷ Android Podcasts / Radio
|
||||
|
||||
* ⭐ **[AntennaPod](https://antennapod.org/)** - Podcast Player / [GitHub](https://github.com/AntennaPod/AntennaPod)
|
||||
* ⭐ **[RadioDroid](https://github.com/segler-alex/RadioDroid)** - Radio App
|
||||
* [IHeartRadio](https://play.google.com/store/apps/details?id=com.clearchannel.iheartradio.controller) - Podcast / Radio App
|
||||
* [MixCloud](https://play.google.com/store/apps/details?id=com.mixcloud.player&hl=en) - Podcast / Radio App
|
||||
* [TuneIn](https://play.google.com/store/apps/details?id=tunein.player&hl=en) - Podcast / Radio App
|
||||
* [Snipd](https://www.snipd.com/) - Podcast Player
|
||||
* [AudioAnchor](https://github.com/flackbash/AudioAnchor) - Podcast Player
|
||||
* [Escapepod](https://codeberg.org/y20k/escapepod) - Podcast Player
|
||||
* [Podbean](https://play.google.com/store/apps/details?id=com.podbean.app.podcast) - Podcast Player
|
||||
* [PocketCasts](https://www.pocketcasts.com/) - Podcast Player
|
||||
* [Podcast Addict](https://play.google.com/store/apps/details?id=com.bambuna.podcastaddict) - Podcast Player
|
||||
* [Transistor](https://codeberg.org/y20k/transistor) - Radio App
|
||||
* [RadioTime](https://radiotimeapp.com/) - Radio App
|
||||
* [SiriusXM](https://rentry.co/FMHYBase64#siriusxm) - Radio App
|
||||
* [RadioUpnp](https://play.google.com/store/apps/details?id=com.watea.radio_upnp) - Radio App
|
||||
* [RadioTime](https://play.google.com/store/apps/details?id=com.radiotime.app) - Radio App
|
||||
* ⭐ **[AntennaPod](https://antennapod.org/)** / [GitHub](https://github.com/AntennaPod/AntennaPod), [Snipd](https://www.snipd.com/) or [AudioAnchor](https://github.com/flackbash/AudioAnchor) - Podcast Players
|
||||
* [Escapepod](https://codeberg.org/y20k/escapepod), [Podbean](https://play.google.com/store/apps/details?id=com.podbean.app.podcast), [PocketCasts](https://www.pocketcasts.com/) or [Podcast Addict](https://play.google.com/store/apps/details?id=com.bambuna.podcastaddict) - Podcasts
|
||||
* [IHeartRadio](https://play.google.com/store/apps/details?id=com.clearchannel.iheartradio.controller), [MixCloud](https://play.google.com/store/apps/details?id=com.mixcloud.player&hl=en) or [TuneIn](https://play.google.com/store/apps/details?id=tunein.player&hl=en) - Podcasts / Radio
|
||||
* [Transistor](https://codeberg.org/y20k/transistor), [RadioTime](https://radiotimeapp.com/), [SiriusXM](https://rentry.co/FMHYBase64#siriusxm), [RadioUpnp](https://play.google.com/store/apps/details?id=com.watea.radio_upnp) or [RadioTime](https://play.google.com/store/apps/details?id=com.radiotime.app) - Radio
|
||||
* [SpiritF](https://www.apkmirror.com/apk/xiaomi-inc/miui-fm-radio/miui-fm-radio-1-0-478-release/) - FM Radio
|
||||
* [DI.FM](https://play.google.com/store/apps/details?id=com.audioaddict.di) - Electronic Radio
|
||||
* [Nightwave Plaza](https://play.google.com/store/apps/details?id=one.plaza.nightwaveplaza) - Nightwave Radio
|
||||
* [LISTEN.moe](https://github.com/LISTEN-moe/android-app) - K-Pop Radio
|
||||
* [Muviz](https://www.sparkine.com/muviz/) - Navbar Audio Visualizer
|
||||
* [LISTEN.moe](https://play.google.com/store/apps/details?id=me.echeung.moemoekyun) - K-Pop Radio
|
||||
* [Muviz](https://www.sparkine.com/muviz/) or [Muviz Edge](https://www.sparkine.com/muviz-edge/) - Navbar Audio Visualizer
|
||||
* [Inspod](https://play.google.com/store/apps/details?id=com.kdanmobile.android.podsnote) - Podcast Notes
|
||||
|
||||
***
|
||||
|
||||
## ▷ Android Relaxation
|
||||
|
||||
* ⭐ **[Calm](https://rentry.co/FMHYBase64#calm)** - Relaxation / Sleep App
|
||||
* [Rain Sounds](https://sleeprelaxapps.github.io/rainsounds/) - Ambient Rain
|
||||
* [A Soft Murmur](https://play.google.com/store/apps/details?id=com.gabemart.asoftmurmur) - Mix Ambient Sounds
|
||||
* [Tide.fm](https://pics.tide.moreless.io/site/tide.apk), [Serenity](https://github.com/YajanaRao/Serenity) / [Telegram](https://t.me/serenityapp) or [Noice](https://trynoice.com/) - Meditation / Sleep Sounds
|
||||
@ -850,8 +829,8 @@
|
||||
* ⭐ **[Stremio](https://www.stremio.com/)** - Torrent Streaming / [Addons](https://stremio-addons.netlify.app/) / Chromecast / Use [VPN](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/adblock-vpn-privacy#wiki_vpn_guide)
|
||||
* ⭐ **[CloudStream](https://cloudstream-on-fleek-co.ipns.dweb.link/)** - Movies / TV / Anime
|
||||
* ⭐ **CloudStream Resources** - [Plugins](https://discord.com/invite/wpX5Rfcx87), [2](https://github.com/Rowdy-Avocado/Rowdycado-Extensions), [3](https://rentry.org/cs3-repos) / [Discord](https://discord.com/invite/5Hus6fM) / [Docs](https://recloudstream.github.io/csdocs/), [2](https://cloudstream.miraheze.org/wiki/Main_Page) / [GitHub](https://github.com/recloudstream/cloudstream)
|
||||
* ⭐ **[Kuukiyomi](https://github.com/LuftVerbot/kuukiyomi/)** / [Extension Guide](https://wotaku.moe/guides/tech/repo) / [Discord](https://discord.gg/s82Vu589Ya)
|
||||
* ⭐ **[Miru Project](https://miru.js.org/en/download)** - Movies / TV / Anime / [GitHub](https://github.com/miru-project/miru-app) / [Docs](https://miru.js.org/en/developer/)
|
||||
* ⭐ **[Kuukiyomi](https://github.com/LuftVerbot/kuukiyomi/)** / [Extension Guide](https://wotaku.moe/guides/misc#anime-manga-ext-repos) / [Discord](https://discord.gg/s82Vu589Ya)
|
||||
* ⭐ **[Miru](https://miru.js.org/en/download)** - Movies / TV / Anime / [GitHub](https://github.com/miru-project/miru-app) / [Docs](https://miru.js.org/en/developer/)
|
||||
* ⭐ **[HDO Box](https://rentry.co/FMHYBase64#hdo-box)** - Movies / TV / [Discord](https://discord.gg/VPRJVExUVD) / [Warning](https://i.ibb.co/ZBy93sr/image.png)
|
||||
* ⭐ **[Kodi](https://kodi.tv/)** - [/r/Addons4Kodi](https://www.reddit.com/r/Addons4Kodi/) / [Tracker](https://kinkeadtech.com/best-kodi-streaming-addons/) / [Trending](https://kodiapps.com/addons-chart) / [Real-Debrid](https://real-debrid.com/)
|
||||
* ⭐ **[Syncler](https://syncler.net/)** - Movies / TV / [Providers](https://www.reddit.com/r/providers4syncler/)
|
||||
@ -859,7 +838,6 @@
|
||||
* [PopcornTime](https://popcorn-time.site) / [GitHub](https://github.com/popcorn-official/popcorn-android) - Torrent Streaming / Chromecast / Use [VPN](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/adblock-vpn-privacy#wiki_vpn_guide)
|
||||
* [FilmPlus](https://filmplus.app/) - Movies / TV
|
||||
* [FlixQuest](https://flixquest.beamlak.dev/) - Movies / TV / [GitHub](https://github.com/BeamlakAschalew/flixquest)
|
||||
* [Vega App](https://github.com/Zenda-Cross/vega-app) - Movies / TV
|
||||
* [TeaTV](https://rentry.co/FMHYBase64#teatv) - Movies / TV
|
||||
* [Movies Cave](https://rentry.co/FMHYBase64#movies-cave-app) - Movies / TV
|
||||
* [LokLok](https://loklok.com/download) - Movies / TV
|
||||
@ -879,10 +857,9 @@
|
||||
|
||||
## ▷ Android Anime
|
||||
|
||||
* 🌐 **[Wotaku](https://wotaku.moe/software#anime-streaming)** - Anime Streaming Index / [Discord](https://discord.gg/vShRGx8ZBC)
|
||||
* 🌐 **[EverythingMoe](https://everythingmoe.com/#section-mobileapp)** - Anime App Index / [Discord](https://discord.gg/GuueaDgKdS)
|
||||
* ⭐ **[Aniyomi](https://aniyomi.org/)** / [Extension Guide](https://wotaku.moe/guides/tech/repo)
|
||||
* ⭐ **[Dantotsu](https://github.com/rebelonion/Dantotsu)** / [Extension Guide](https://wotaku.moe/guides/tech/repo) / [Discord](https://discord.gg/W9KHG7zzKd)
|
||||
* ⭐ **[Aniyomi](https://aniyomi.org/)** / [Extension Guide](https://wotaku.moe/guides/misc#anime-manga-ext-repos)
|
||||
* ⭐ **[Dantotsu](https://dantotsu.app)** / [Extension Guide](https://wotaku.moe/guides/misc#anime-manga-ext-repos)
|
||||
* [AniLab](https://anilab.to/)
|
||||
* [Anikin](https://github.com/jerry08/Anikin)
|
||||
* [Animiru](https://github.com/Quickdesh/Animiru)
|
||||
@ -902,8 +879,7 @@
|
||||
* [Live NetTV](https://www.livenettv.bz/)
|
||||
* [FreeTV](https://phstudio2.github.io/FreeTV/) / [GitHub](https://github.com/phstudio2/FreeTV)
|
||||
* [Tunity](https://tunity.com/) - Hear Muted TVs
|
||||
* [Showly OSS](https://github.com/1RandomDev/showly-oss) or [DroidShows](https://github.com/ltguillaume/droidshows) - TV Trackers
|
||||
* [BoxBox](https://github.com/BrightDV/BoxBox) - Formula 1 News / Rankings
|
||||
* [Showly OSS](https://github.com/1RandomDev/showly-oss) - TV Tracker / Ad-Free
|
||||
|
||||
***
|
||||
|
||||
@ -913,7 +889,10 @@
|
||||
* ⭐ **[LibreTube](https://libretube.dev/)** - Ad-free YouTube
|
||||
* ⭐ **[NewPipe](https://newpipe.net/)** - Ad-free YouTube
|
||||
* ⭐ **[Tubular](https://github.com/polymorphicshade/Tubular)** - Ad-free YouTube / SponsorBlock / ReturnYTDislikes
|
||||
* ⭐ **[Seal](https://github.com/JunkFood02/Seal)**, [YouTubeDL Android](https://github.com/yausername/youtubedl-android), [ytdlnis](https://github.com/deniscerri/ytdlnis) or [SongTube](https://github.com/SongTube/SongTube-App) - Audio / Video Downloaders
|
||||
* ⭐ **[Seal](https://github.com/JunkFood02/Seal)** - YouTube Audio / Video Downloader
|
||||
* [YouTubeDL Android](https://github.com/yausername/youtubedl-android) - YouTube Audio / Video Downloader
|
||||
* [ytdlnis](https://github.com/deniscerri/ytdlnis) - YouTube Audio / Video Downloader
|
||||
* [SongTube](https://github.com/SongTube/SongTube-App) - YouTube Audio / Video Downloader
|
||||
* [GrayJay](https://grayjay.app/) - YouTube, Twitch, Rumble etc / [Gitlab](https://gitlab.futo.org/videostreaming/grayjay) / [Plugins](https://gitlab.futo.org/videostreaming/plugins)
|
||||
* [Clipious](https://github.com/lamarios/clipious) - Android Invidious Client
|
||||
* [Hyperion](https://github.com/zt64/Hyperion) - YouTube Frontend
|
||||
@ -930,14 +909,13 @@
|
||||
* ⭐ **[SmartTube](https://smarttubeapp.github.io/)** - Ad Free Android TV YouTube Player / [GitHub](https://github.com/yuliskov/SmartTubeNext)
|
||||
* ⭐ **[S0undTV](https://github.com/S0und/S0undTV)** - Android TV Twitch Player / [Discord](https://discord.gg/zmNjK2S)
|
||||
* [Android TV Tools v3](https://xdaforums.com/t/tool-all-in-one-tool-for-windows-android-tv-tools-v3.4648239/) - Multiple Android TV Tools
|
||||
* [KPFire](https://linktr.ee/kpfire) - Firestick Apps
|
||||
* [Dejavuln](https://github.com/throwaway96/dejavuln-autoroot) - LG TV Root / Homebrew Installer
|
||||
* [Dev Manager Desktop](https://github.com/webosbrew/dev-manager-desktop) - Webos Desktop Dev Mode Manager / Homebrew Installer
|
||||
* [Samsung Smart TV Adblock](https://redd.it/gn7fw5) - Block Smart TV Ads
|
||||
* [TCL Browser](https://play.google.com/store/apps/details?id=com.tcl.browser) or [TV Bro](https://github.com/truefedex/tv-bro) - Ad Free Android TV Browsers
|
||||
* [YTCast](https://github.com/MarcoLucidi01/ytcast) - Cast YouTube Videos to Smart TV
|
||||
* [iSponsorBlockTV](https://github.com/dmunozv04/iSponsorBlockTV) - SponsorBlock App
|
||||
* [WebOS Youtube](https://github.com/webosbrew/youtube-webos) - Ad-Free YouTube for LG TVs / [Guide](https://youtu.be/Zoc9Bt9TuZA), [2](https://redd.it/wzs6hg)
|
||||
* [WebOS Youtube](https://github.com/webosbrew/youtube-webos) - Ad-Free YouTube for LG TVs / [Guide](https://youtu.be/Zoc9Bt9TuZA), [2](https://redd.it/wzs6hg) - Guide for Ad-Free YouTube on LG TVs
|
||||
* [med4web](https://rentry.org/med4web) - Guide for streaming torrents on LG TVs
|
||||
* [Playlet](https://channelstore.roku.com/en-ca/details/840aec36f51bfe6d96cf6db9055a372a/playlet) - Ad-Free YouTube Roku Client
|
||||
* [LG SmartShare](https://www.lg.com/support/smart-share) - Share files to LGTV
|
||||
@ -1134,7 +1112,7 @@
|
||||
* 🌐 **[Open-Source iOS Apps](https://github.com/dkhamsing/open-source-ios-apps)** - Open-Source Apps
|
||||
* 🌐 **[Awesome TestFlight](https://github.com/pluwen/awesome-testflight-link)** or [TestFlight Spreadsheet](https://docs.google.com/spreadsheets/d/1Uej3AQPxRcLRXnmthUXR-7oGkNV_GsMFgCoNnuPtSwI/) - TesFlight App Indexes
|
||||
* ⭐ **[TrollStore](https://github.com/opa334/TrollStore)** or [TrollApps](https://github.com/TheResonanceTeam/TrollApps/) / [Discord](https://discord.gg/PrF6XqpGgX) - Non-Appstore Apps / No-Jailbreak / 14.0-17.0 / [IPAs](https://github.com/swaggyP36000/TrollStore-IPAs) / [Decrypt](https://github.com/donato-fiore/TrollDecrypt)
|
||||
* ⭐ **[Sideloadly](https://sideloadly.io/)**, [FlekSt0re](https://flekstore.com/), [AltStore](https://altstore.io/) / [Repo Viewer](https://altsource.by.lao.sb/browse/) / [Alt Server](https://github.com/NyaMisty/AltServer-Linux), [SideStore](https://sidestore.io/) or [SignTools](https://github.com/SignTools/SignTools) - Non-Jailbreak App Sideloading
|
||||
* ⭐ **[Sideloadly](https://sideloadly.io/)**, [FlekSt0re](https://flekstore.com/), [AltStore](https://altstore.io/) / [Repo Viewer](https://altsource.by.lao.sb/browse/) / [Alt Server](https://github.com/NyaMisty/AltServer-Linux), [SideStore](https://github.com/SideStore/SideStore) or [SignTools](https://github.com/SignTools/SignTools) - Non-Jailbreak App Sideloading
|
||||
* ⭐ **[IPALibrary](https://ipalibrary.me/)** - Tweaked Apps
|
||||
* ⭐ **[4PDA](https://4pda.to/forum/)** - Tweaked Apps / Use [translator](https://addons.mozilla.org/en-US/firefox/addon/traduzir-paginas-web/)
|
||||
* [AppSnake](https://appsnake.cypwn.xyz/) - IAP Database
|
||||
@ -1163,7 +1141,7 @@
|
||||
* ⭐ **[SpotC++](https://spotcompiled.github.io/)** - Ad-free Spotify / Sideloaded
|
||||
* ⭐ **[YT Tweaked](https://rentry.co/FMHYBase64#yt-tweaked-ipas)**, [YTMusilife](https://rentry.co/FMHYBase64#ytmusilife) or [YTMusicUltimate](https://github.com/ginsudev/YTMusicUltimate), [Trebel](https://home.trebel.io/), [Soundcloud](https://apps.apple.com/us/app/soundcloud/id336353151), [eSound](https://apps.apple.com/ca/app/esound-music-player-app-mp3/id1224933860), [Musi](https://feelthemusi.com/), [iMusic](https://apps.apple.com/us/app/imusic-offline-music-player/id1535124961) or [Audiomack](https://apps.apple.com/ca/app/audiomack-download-new-music/id921765888) - Streaming
|
||||
* [Spotilife](https://rentry.co/FMHYBase64#spotilife) - Ad-free Spotify / Jailbreak or Sideload
|
||||
* [Deezer](https://apps.apple.com/app/deezer/id292738169) - Streaming
|
||||
* [DeezeLife](https://rentry.co/FMHYBase64#deezelife) / [2](https://repo.hackyouriphone.org/deezelife) or [Deezer](https://apps.apple.com/app/deezer/id292738169) - Streaming
|
||||
* [Musi](https://apps.apple.com/us/app/musi-simple-music-streaming/id591560124) - Streaming
|
||||
* [Demus](https://demus.app/) - Streaming
|
||||
* [Qello](https://apps.apple.com/us/app/qello-concerts-live-music/id491069819) - Concerts & Live Music Streaming
|
||||
@ -1206,7 +1184,7 @@
|
||||
* [Viki](https://apps.apple.com/us/app/viki-asian-tv-dramas-movies/id445553058) - Asian Drama
|
||||
* [EncoreTVD](https://apps.apple.com/us/app/encoretvb-english/id1191642382) - Chinese Drama
|
||||
* [STBEmu](https://apps.apple.com/app/stbemutv/id1567306197) - Emulate an STB and Watch IPTV
|
||||
* [VLC](https://apps.apple.com/ca/app/vlc-for-mobile/id650377962), [Breeze](https://apps.apple.com/app/id6499268526), [SPlayer](https://splayer.dev/), [Loader](https://apps.apple.com/us/app/documents-loader/id1442498151), [Pojobox](https://apps.apple.com/us/app/pojo-4k-hd-video-music-player/id1454098557) or [Infuse 6](https://apps.apple.com/us/app/infuse-6/id1136220934) - Video Players
|
||||
* [VLC](https://apps.apple.com/ca/app/vlc-for-mobile/id650377962), [SPlayer](https://splayer.dev/), [Loader](https://apps.apple.com/us/app/documents-loader/id1442498151), [Pojobox](https://apps.apple.com/us/app/pojo-4k-hd-video-music-player/id1454098557) or [Infuse 6](https://apps.apple.com/us/app/infuse-6/id1136220934) - Video Players
|
||||
* [uYouPlus](https://github.com/qnblackcat/uYouPlus), [uYouEnhanced](https://github.com/arichornlover/uYouEnhanced), [YTLitePlus](https://github.com/Balackburn/YTLitePlus/), [YT Tweaked](https://rentry.co/FMHYBase64#yt-tweaked-ipas), [YouTubeRebornPlus](https://github.com/arichornlover/YouTubeRebornPlus) or [Cercube](https://rejail.ru/pack/cercube) - Modded YouTube iPAs
|
||||
* [Tunity](https://tunity.com/) - Hear Any Muted TV
|
||||
|
||||
|
@ -1,5 +1,4 @@
|
||||
***
|
||||
***
|
||||
**[◄◄ Back to Wiki Index](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/index)**
|
||||
***
|
||||
***
|
||||
@ -81,7 +80,7 @@
|
||||
* ⭐ **[Reddit Music Player](https://reddit.musicplayer.io/)** - Subreddit Music Player
|
||||
* ⭐ **[SoundCloud](https://soundcloud.com/)** - User Made Songs / [Spotify Theme](https://userstyles.world/style/5470/soundfy-v3) / [Dark Theme](https://github.com/huds0nx/soundcloud-luna)
|
||||
* ⭐ **[hate5six](https://hate5six.com/)** - Concert Recordings
|
||||
* [WProject](https://wproject.vercel.app/) - Browser Music
|
||||
* [OperaOnVideo](https://www.operaonvideo.com/) - Opera Recordings
|
||||
* [Groovesharks](https://groovesharks.org/) - Browser Music
|
||||
* [Last.fm](https://www.last.fm/) - Browser Music
|
||||
* [ccMixter](https://dig.ccmixter.org/) - Browser Music
|
||||
@ -102,10 +101,7 @@
|
||||
* [Keygen Music](https://keygenmusic.tk/) - Keygen Music
|
||||
* [hypem](https://hypem.com/popular) - Rising
|
||||
* [datpiff](https://www.datpiff.com/) - Mixtapes
|
||||
* [The Urban Emporium](https://www.youtube.com/@theurbanemporium204/playlists) - Hip Hop
|
||||
* [CitizenFreak](https://citizenfreak.com/) - Canadian Music
|
||||
* [Dream of the 90s](https://www.youtube.com/@Dreamofthe90s/playlists) - Obscure 90s
|
||||
* [OperaOnVideo](https://www.operaonvideo.com/) - Opera Recordings
|
||||
* [Classical Music Only](https://classicalmusiconly.com/) or [musopen](https://musopen.org/music/) - Classical Music
|
||||
* [Bandcamp](https://bandcamp.com/tag/free-music?tab=all_releases) - Free Bandcamp Music
|
||||
* [Audius](https://audius.co/) - User Made Music Platform
|
||||
@ -139,6 +135,7 @@
|
||||
* ↪️ **[Radio Sites](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_radio_streaming_sites)**
|
||||
* ↪️ **[Android](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/android#wiki_.25B7_android_podcasts_.2F_radio) / [iOS](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/android#wiki_.25B7_ios_podcasts_.2F_radio)** - Podcast / Radio Apps
|
||||
* ⭐ **[Spotify Podcasts](https://open.spotify.com/browse/podcasts)** - Podcasts / [Companion](https://sebschaef.bitbucket.io/podify/) / [RSS](https://github.com/Yetangitu/Spodcast) / [Video Download](https://rentry.co/spotifypodcast)
|
||||
* ⭐ **[Radio Garden](https://radio.garden/)** - Worldwide Radio Globe
|
||||
* ⭐ **[Drive n Listen](https://drivenlisten.com/)** or [Drive & Listen](https://driveandlisten.herokuapp.com/) - Radio Driving Simulators
|
||||
* ⭐ **[Daft Punk Cafe](https://daftpunk.cafe/)** - Daft Punk Radio
|
||||
* [Podchaser](https://podchaser.com/), [Rephonic](https://rephonic.com/graph) or [Listen Notes](https://www.listennotes.com/) - Podcast Databases / Trackers
|
||||
@ -192,12 +189,12 @@
|
||||
* ↪️ **[Ambient Sound Mixers](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_ambient_sound_mixers)**
|
||||
* ⭐ **[Rainy Mood](https://www.rainymood.com/)**, [Rainbow Hunt](https://rainbowhunt.com/), [Pluvior](https://pluvior.com/), [rainfor.me](https://rainfor.me/), [Raining.fm](https://raining.fm/) or [Rainyscope](https://rainyscope.com/) - Ambient Rain
|
||||
* ⭐ **[lofi.cafe](https://www.lofi.cafe/)**, **[Chillhop](https://chillhop.com/)**, [Ambicular](https://ambicular.com/), [Lofi Music](https://lofimusic.app/), [Lofi Player](https://lofi-players.netlify.app/), [lofi](https://lofi.co/), [Lofi Club](https://loficlub.vercel.app/), [Lofi Limo](https://lofi.limo/), [DevTunes FM](https://radio.madza.dev/) or [Moss Garden](https://moss.garden/) - Lofi Radio
|
||||
* ⭐ **[Music For Programming](https://musicforprogramming.net/latest/)** - Ambient Playlists
|
||||
* ⭐ **[CityHop](https://www.cityhop.cafe/)** or [Japan Walkaround](https://thatguyedd.github.io/) - Lofi Radio / City Walks
|
||||
* ⭐ **[Coding Cat](https://hostrider.com/)** - Lofi Radio / Nyan Cat's Cousin
|
||||
* ⭐ **[HaloMe](https://halome.nu/)** - Halo Menu Screens
|
||||
* [Relaxing Sounds](https://unifycosmos.com/relaxing-sounds/), [Calmsound](https://www.calmsound.com/), [Click Relax](https://click-relax.com/), [Moszen](https://www.moszen.com/), [Zen Sounds](https://app.zenflowchart.com/zen-sounds) or [NoisyLoop](https://noisyloop.com/) - Ambient Soundscapes
|
||||
* [lofi-player](https://magenta.tensorflow.org/lofi-player), [2](https://magenta.github.io/lofi-player/) - Create Room / Lofi Player
|
||||
* [Music For Programming](https://musicforprogramming.net/latest/) - Ambient Playlists
|
||||
* [Wisdom Tree](https://github.com/HACKER097/wisdom-tree/) - TUI Concentration App
|
||||
* [Ambie](https://ambieapp.com/) - Ambient Sound Desktop App
|
||||
* [Generative.fm](https://generative.fm/) or [Lofi Generator](https://lofigenerator.com/) - Generative Ambient Music
|
||||
@ -217,16 +214,13 @@
|
||||
|
||||
## ▷ Audio Ripping Sites
|
||||
|
||||
* ⭐ **[lucida](https://lucida.to/)** - Multi-Site / 320kb / MP3 / FLAC / [Telegram](https://t.me/lucidahasmusic) / [Discord](https://discord.gg/5EEexMqVuE)
|
||||
* ⭐ **[DoubleDouble](https://doubledouble.top/)** - [Multi-Site](https://pastebin.com/dPT8aE0R) / 320kb / MP3 / FLAC / [Telegram](https://t.me/+AuKfQGOOLrFlOTZk) / [Important Note](https://rentry.co/LucidaDoubleDouble)
|
||||
* ⭐ **[DoubleDouble](https://doubledouble.top/)** - [Multi-Site](https://pastebin.com/dPT8aE0R) / 320kb / MP3 / FLAC / [Telegram](https://t.me/+AuKfQGOOLrFlOTZk)
|
||||
* ⭐ **[squid.wtf](https://squid.wtf/)** - Deezer / FLAC / [Discord](https://discord.gg/ATjPbzR) / [Note](https://pastebin.com/eWErQNmN)
|
||||
* ⭐ **[yet another music server](https://yams.tf/)** - Deezer / Tidal / Qobuz / Spotify / FLAC
|
||||
* ⭐ **[MP3 Daddy](https://mp3-daddy.com/)** - Deezer / 320kb / MP3 / FLAC
|
||||
* [EzMP3](https://ezmp3.cc/) - YouTube / 320kb / MP3 / Ad-Free / [Subreddit](https://www.reddit.com/r/EzMP3/)
|
||||
* [AZMP3](https://azmp3.cc/) - YouTube / 320kb / MP3 / Ad-Free
|
||||
* [YTiz](https://ytiz.xyz/) - YouTube / SoundCloud / Bandcamp / 128kb / AAC / [GitHub](https://github.com/tizerk/ytiz)
|
||||
* [YTMDL](https://ytmdl.deepjyoti30.dev/) - YouTube / 128kb AAC
|
||||
* [wav.ninja](https://wav.ninja/) - Clip / Download YouTube Audio
|
||||
* [Download Bandcamp](https://downloadmusicschool.com/bandcamp/) - Bandcamp / 128kb MP3
|
||||
* [DownloadSound](https://downloadsound.cloud/) - SoundCloud / 128kb MP3 / [Discord](https://discord.com/invite/39bEkYuzrN)
|
||||
* [SoundcloudMP3](https://soundcloudmp3.cc/) - SoundCloud / 128kb MP3
|
||||
@ -428,7 +422,7 @@
|
||||
* [TribalMixed](https://www.tribalmixes.com/) - DJ Mixes / MP3
|
||||
* [PandaCD](https://pandacd.io/) - User-Made Music / MP3
|
||||
* [ZOMB Torrents](http://zombtracker.the-zomb.com/) - Forum
|
||||
* [bt.etree](https://bt.etree.org/), [etreedb](https://etreedb.org/ ), [LiveBootlegConcert](https://livebootlegconcert.blogspot.com/) or [DreamingTree](https://dreamingtree.org/) - Live Concert Recordings
|
||||
* [bt.etree](https://bt.etree.org/), [LiveBootlegConcert](https://livebootlegconcert.blogspot.com/) or [DreamingTree](https://dreamingtree.org/) - Live Concert Recordings
|
||||
* [NFO db](https://nfodb.ru/) - MP3 NFO Database
|
||||
|
||||
***
|
||||
@ -439,7 +433,7 @@
|
||||
* ⭐ **[Squid-Board](https://www.squid-board.org/)** - Media Soundtracks / Account Required
|
||||
* ⭐ **[Squidify](https://www.squidify.org)** - Game / Anime Soundtracks / [Resources](https://wotaku.pages.dev/guides/squidify/)
|
||||
* [MusicDex](https://musicdex.org/) - Anime Soundtracks / [Discord](https://discord.gg/yCXJkbdCHt)
|
||||
* [3ost](https://3ost.ru/), [joshw](https://pc.joshw.info/) / [Search](https://vgm.hcs64.com/) or [tanikal](https://www.tanikal.com/) - Soundtracks
|
||||
* [Download-Soundtracks](https://download-soundtracks.com/), [3ost](https://3ost.ru/), [joshw](https://pc.joshw.info/) / [Search](https://vgm.hcs64.com/) or [tanikal](https://www.tanikal.com/) - Soundtracks
|
||||
* [RenovationRecords](https://renovatiorecords.blogspot.com/) - HQ Movies Soundtracks
|
||||
* [GTA Radio Stations Music](https://rentry.co/FMHYBase64#gta-radio-stations) - GTA Radio Stations
|
||||
* [Animal Crossing Radio](https://animal-crossing-radio.com/) - Animal Crossing Radio
|
||||
@ -476,7 +470,7 @@
|
||||
# ► Tracking / Discovery
|
||||
|
||||
* ⭐ **[Last.fm](https://www.last.fm/home)**, [Music Board](https://musicboard.app/) or [Libre](https://libre.fm/) - Track Music you Listen to
|
||||
* ⭐ **Last.fm Tools** - [Manual Scrobble](https://openscrobbler.com/) / [Web Scrobble](https://web-scrobbler.com/) / [Album Collages](https://www.chartmymusic.com/), [2](https://www.tapmusic.net/), [3](https://musicorumapp.com/generate) / [Artist Iceberg](https://lastfm-iceberg.dawdle.space/) / [Tag Cloud](https://tagcloud.joshuarainbow.co.uk/) / [Now Playing](https://descent.live/now)
|
||||
* ⭐ **Last.fm Tools** - [Manual Scrobble](https://openscrobbler.com/) / [Web Scrobble](https://web-scrobbler.com/) / [Album Collages](https://www.chartmymusic.com/), [2](https://www.tapmusic.net/) / [Artist Iceberg](https://lastfm-iceberg.dawdle.space/) / [Tag Cloud](https://tagcloud.joshuarainbow.co.uk/) / [Now Playing](https://descent.live/now)
|
||||
* ⭐ **[Has it leaked](https://hasitleaked.com/)** or [LEAKED](https://leaked.cx/) - Album Leak Tracker
|
||||
* ⭐ **[Muspy](https://muspy.com/)**, [MusicButler](https://www.musicbutler.io/) or [Brew.fm](https://www.brew.fm/) - Get Album Release Updates
|
||||
* ⭐ **[RateYourMusic](https://rateyourmusic.com/)**, **[Sputnik](https://www.sputnikmusic.com/)**, [Discogs](https://www.discogs.com/) / [Scout](https://greasyfork.org/en/scripts/439452-discogs-scout) / [Timestamps](https://martinbarker.me/tagger), [AlbumOfTheYear](https://www.albumoftheyear.org/), [AllMusic](https://www.allmusic.com/) or [MusicBrainz](https://musicbrainz.org/) / [Insights](https://listenbrainz.org/) - Ratings / Reviews
|
||||
@ -486,7 +480,6 @@
|
||||
* ⭐ **[Tunefind](https://www.tunefind.com/)** - Find Music from Movies / TV
|
||||
* ⭐ **[Discover Quickly](https://discoverquickly.com/)**, **[Chosic](https://www.chosic.com/)**, [TapeFear](https://www.tapefear.com/), [SongsLikeX](https://songslikex.com/), [Dubolt](https://dubolt.com/) or [Maroofy](https://maroofy.com/) - Song Discovery Tools
|
||||
* [Music-Map](https://www.music-map.com/), [Musicroamer](https://www.musicroamer.com/), [Gnoosic](https://www.gnoosic.com/), [Music Galaxy](https://galaxy.spotifytrack.net/), [SAGE](https://hate5six.com/sage), [LivePlasma](https://liveplasma.com/) or [GNOD](https://www.gnod.com/) - Artist Discovery Tools
|
||||
* [Discovering Music](https://4chanmusic.fandom.com/wiki/Discovering_Music) - Music Discovery Guide
|
||||
* [Odesli](https://odesli.co/) / [TG Bot](https://t.me/odesli_bot) or [SongWhip](https://songwhip.com) - Song / Podcast Platform Search
|
||||
* [Kworb](https://kworb.net/) - Music Top Charts
|
||||
* [TokChart](https://tokchart.com/) - TikTok Song Charts
|
||||
@ -497,7 +490,7 @@
|
||||
* [IDM Discovery](https://www.idmdiscovery.com/) - IDM Artist Archive
|
||||
* [Rec Charts](https://mega.nz/folder/kj5hWI6J#0cyw0-ZdvZKOJW3fPI6RfQ) - Music Recommendation Guides
|
||||
* [45Cat](https://www.45cat.com/) - Vinyl Ratings / Reviews
|
||||
* [Spotalike](https://spotalike.com/), [playlist-generator](https://www.playlist-generator.com/), [Chat Jams](https://www.chatjams.ai/), [MagicPlaylist](https://magicplaylist.co/), [Vibesition](https://vibesition.jordantwells.com/), [NautrualLanguage](https://www.naturallanguageplaylist.com/), [Groovifi](https://groovifi.com/), [spotgen](https://epsil.github.io/spotgen), [Highlights2SPotify](https://highlights2spotify.com/), [Moodify](https://moodify.app/) or [RadioNewify](https://radionewify.com/) - Spotify Playlist Generators
|
||||
* [Spotalike](https://spotalike.com/), [playlist-generator](https://www.playlist-generator.com/), [Chat Jams](https://www.chatjams.ai/), [MagicPlaylist](https://magicplaylist.co/), [Vibesition](https://vibesition.jordantwells.com/), [NautrualLanguage](https://www.naturallanguageplaylist.com/), [Groovifi](https://groovifi.com/), [Highlights2SPotify](https://highlights2spotify.com/) or [RadioNewify](https://radionewify.com/) - Spotify Playlist Generators
|
||||
* [Spotify Playlist Archive](https://spotifyplaylistarchive.com/) - Archive of Official Spotify Playlists
|
||||
* [Spoqify](https://spoqify.com/) - Anonymous Playlist Generator
|
||||
* [TuneMunk](https://www.tunemunk.com/) - Spotify Playlist Sharing
|
||||
@ -546,7 +539,6 @@
|
||||
* [Phiola](https://github.com/stsaz/phiola), [AudioToolSet](https://audiotoolset.com/) or [Safeaudiokit](https://safeaudiokit.com/) - Audio Multi-Tool Apps / Sites
|
||||
* [qAAC](https://github.com/nu774/qaac) - QuickTime AAC/ALAC encoder
|
||||
* [opus-tools](https://opus-codec.org/downloads/) - Encode, Inspect and Decode .opus Files
|
||||
* [Tunebat](https://tunebat.com/) - Music Key / BPM Database
|
||||
* [Cleanfeed](https://cleanfeed.net/) - Live Audio Recording
|
||||
* [Musicara](https://www.musicara.ml/) or [X-Minus](https://x-minus.pro/) - Create Karaoke Songs
|
||||
* [Librescore Downloader](https://github.com/LibreScore/dl-librescore) - Librescore Downloader
|
||||
@ -641,13 +633,14 @@
|
||||
* [Audile](https://github.com/aleksey-saenko/MusicRecognizer) - Android
|
||||
* [Audire](https://github.com/alexmercerind/audire) - Android
|
||||
* [AmbientMusicMod](https://github.com/KieronQuinn/AmbientMusicMod) - Android
|
||||
* [Audile](https://github.com/aleksey-saenko/MusicRecognizer) - Android
|
||||
|
||||
***
|
||||
|
||||
## ▷ Lyric Sites
|
||||
|
||||
* ⭐ **[dumb](https://github.com/rramiachraf/dumb)** or [genius](https://genius.com/) - Lyric Explanations
|
||||
* [AZLyrics](https://www.azlyrics.com/), [Lyricsify](https://www.lyricsify.com/), [FindMusicByLyrics](https://findmusicbylyrics.com/) or [Lyrics.com](https://www.lyrics.com/) - Lyric Search
|
||||
* [AZLyrics](https://www.azlyrics.com/), [FindMusicByLyrics](https://findmusicbylyrics.com/) or [Lyrics.com](https://www.lyrics.com/) - Lyric Search
|
||||
* [Versefy](https://versefy.app/) or [Lyrics-In-Terminal](https://github.com/Jugran/lyrics-in-terminal) - Lyric Finder for Spotify / Tidal / VLC
|
||||
* [Lyrist](https://lyrist.app) - Write Lyrics with Beats
|
||||
* [LyricsTranslate](https://lyricstranslate.com/) - Lyric Translator
|
||||
@ -728,7 +721,6 @@
|
||||
* [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)
|
||||
* [Music Experiment](https://petersalomonsen.com/webassemblymusic/livecodev2/), [Sonic-Pi](https://sonic-pi.net/), [SuperCollider](https://supercollider.github.io/) or [WebChuck IDE](https://ccrma.stanford.edu/~tzfeng/webchuck-ide/) - Create Music with Code
|
||||
* [TuneFlow](https://tuneflow.com/) - AI Audio Editor
|
||||
* [Wavosaur](https://www.wavosaur.com/) - Audio Editor
|
||||
* [Reaper](https://www.reaper.fm/) - Audio Editor / [Note](https://pastebin.com/aP4M6ArY)
|
||||
* [Cakewalk](https://www.bandlab.com/products/cakewalk) - Audio Editor / [Discord](https://discord.com/invite/bandlab)
|
||||
@ -771,7 +763,6 @@
|
||||
* [MK-1](https://ericrosenbaum.github.io/MK-1/) - Online Sampling Keyboard
|
||||
* [React Guitar](https://react-guitar.com/) - Virtual Guitar
|
||||
* [Theremin](https://femurdesign.com/theremin/) - Virtual Theremin
|
||||
* [Pantam Playground](https://www.yishama.com/virtual-pantam-playground/) - Virtual Pantam
|
||||
* [RaveDJ](https://rave.dj/) - Easily Mix Songs Together
|
||||
* [Melody Generator](https://dopeloop.ai/melody-generator) - Generate Song Melodies
|
||||
* [WD-1](https://www.worteldrie.com/WD5/) or [YOU.DJ](https://you.dj/) - Online DJ / Beat Creators
|
||||
@ -806,7 +797,7 @@
|
||||
* ⭐ **[Surge XT](https://surge-synthesizer.github.io/)** - Hybrid / Subtractive Synth
|
||||
* ⭐ **[Vital](https://vital.audio/)** or [Helm](https://tytel.org/helm/) - Wavetable Synth
|
||||
* ⭐ **[Dexed](https://asb2m10.github.io/dexed/)** - Yamaha DX7 Emulation
|
||||
* [VCV Rack 2](https://vcvrack.com/Rack) or [Cardinal](https://cardinal.kx.studio/) - Eurorack Simulator
|
||||
* [VCV Rack 2](https://vcvrack.com/Rack) - Eurorack Simulator
|
||||
* [IEM Plug-in Suite](https://plugins.iem.at/) - Open Source
|
||||
* [ChowMultiTool](https://github.com/Chowdhury-DSP/ChowMultiTool) - Open Source
|
||||
* [SPARTA](https://leomccormack.github.io/sparta-site/) - Open Source
|
||||
|
@ -88,7 +88,7 @@ Use this [browser extension](https://github.com/bpc-clone/bpc_updates/releases)
|
||||
|
||||
### Anti-virus
|
||||
|
||||
**[VirusTotal](https://www.virustotal.com)** - Test the safety of files
|
||||
**[VirusTotal](https://www.virustotal.com) / [Kaspersky Cloud](https://opentip.kaspersky.com/)** - Test the safety of files
|
||||
**[VTGuide](https://rentry.co/VTGuide)** - Virus scan results guide
|
||||
**[Malwarebytes Premium](https://rentry.co/FMHYBase64#malwarebytes-prem)** - Antivirus software
|
||||
|
||||
@ -113,7 +113,7 @@ Use this [browser extension](https://github.com/bpc-clone/bpc_updates/releases)
|
||||
|
||||
### Streaming
|
||||
|
||||
**[movie-web](https://erynith.github.io/movie-web-instances/) + [Add Sources](https://pastebin.com/RHXHtXJZ) / [Braflix](https://www.braflix.ru/) / [watch.lonelil](https://watch.lonelil.ru/) / [FMovies](https://fmovies24.to/) / [Binged](https://binged.live/)** - Fast movie / TV streaming
|
||||
**[movie-web](https://erynith.github.io/movie-web-instances/) + [Add Sources](https://pastebin.com/VakYFMeC) / [Braflix](https://www.braflix.ru/) / [watch.lonelil](https://watch.lonelil.ru/) / [FMovies](https://fmovies24.to/) / [Binged](https://binged.live/)** - Fast movie / TV streaming
|
||||
**[HiAnime](https://hianime.to/)** - Fast anime streaming
|
||||
**[Dramacool](https://dramacool.cy/)** - Fast Asian drama streaming
|
||||
**[SportsSurge](https://v2.sportsurge.net/home4/)** - Live sports streaming
|
||||
@ -131,7 +131,7 @@ Use this [browser extension](https://github.com/bpc-clone/bpc_updates/releases)
|
||||
**[Pahe](https://pahe.ink/)** - Fast video downloads
|
||||
**[FitGirl Repacks](https://fitgirl-repacks.site/)** / [Discord](https://discord.gg/Up3YARe4RW) / **[SteamRIP](https://steamrip.com/)** - Game download sites
|
||||
**[Firehawk52](https://rentry.org/firehawk52)** - Music ripping guide
|
||||
**[lucida](https://lucida.to/) / [DoubleDouble](https://doubledouble.top/)** - Multi-Site audio download
|
||||
**[DoubleDouble](https://doubledouble.top/)** - Multi-Site audio download
|
||||
**[Soulseek](https://slsknet.org/)** or [Nicotine+](https://nicotine-plus.org/) - Audio download app
|
||||
**[squid.wtf](https://squid.wtf/)** - Deezer FLAC download
|
||||
**[Download CSE](https://cse.google.com/cse?cx=006516753008110874046:1ugcdt3vo7z) / [2](https://cse.google.com/cse?cx=006516753008110874046:reodoskmj7h)** - Multi-site download search
|
||||
@ -161,7 +161,7 @@ Use this [browser extension](https://github.com/bpc-clone/bpc_updates/releases)
|
||||
|
||||
### Reading
|
||||
|
||||
**[Mobilism](https://forum.mobilism.org) / [Library Genesis](https://libgen.rs/) / [Z-Library](https://singlelogin.re/) / [Annas Archive](https://annas-archive.gs/)** / [2](https://annas-archive.se/) - Books, audiobooks, comics & more
|
||||
**[Mobilism](https://forum.mobilism.org) / [Library Genesis](https://libgen.rs/) / [Z-Library](https://singlelogin.re/) / [Annas Archive](https://annas-archive.org/)** - Books, audiobooks, comics & more
|
||||
**[Audiobook Bay](https://audiobookbay.is/)** - Audiobook torrents / **Avoid fake DL links, use [Torrents / Magnets](https://i.ibb.co/8sV2061/0fa8159b11bb.png)**
|
||||
**[ReadComicsOnline](https://readcomiconline.li/)** - Read comics online
|
||||
**[MangaReader](https://mangareader.to/)** - Read manga online
|
||||
|
444
DEVTools.md
444
DEVTools.md
@ -52,7 +52,6 @@
|
||||
* [Student Developer Pack](https://education.github.com/pack) - Free Developer Tools for Students
|
||||
* [AppFlowy](https://appflowy.io/) / [GitHub](https://github.com/AppFlowy-IO/AppFlowy) - Project Workspace
|
||||
* [DevDeals](https://www.devdeals.org/) - Free Tools / Promotions for Developers
|
||||
* [GitBook](https://www.gitbook.com/) or [DocMost](https://docmost.com/) - Document Collaboration
|
||||
* [Codever](https://www.codever.dev/) - Bookmarks Manager for Developers
|
||||
* [Media Chrome](https://www.media-chrome.org/) - Media Player Elements / [GitHub](https://github.com/muxinc/media-chrome)
|
||||
* [ZealDocs](https://zealdocs.org/) - Offline Document Viewer
|
||||
@ -147,7 +146,6 @@
|
||||
* [Slint](https://slint.dev) / [GitHub](https://github.com/slint-ui/slint), [Fyne](https://fyne.io/) or [QT Designer](https://build-system.fman.io/qt-designer-download) - GUI Development Tools
|
||||
* [BugSnag](https://www.bugsnag.com/) - Application Stability Monitor
|
||||
* [Inno Setup](https://jrsoftware.org/isinfo.php) or [InstallForge](https://www.installforge.net/) - Create Installation Programs
|
||||
* [CODEX-Installer](https://github.com/SolsticeSpectrum/CODEX-Installer) - Original CODEX Installer Code
|
||||
* [Sparkle](https://sparkle-project.org) - MacOS Update Framework
|
||||
* [TextBase](https://www.textbase.ai/) - AI Chatbot Framework
|
||||
* [Dify](https://dify.ai/) - Create AI Apps
|
||||
@ -163,7 +161,7 @@
|
||||
|
||||
***
|
||||
|
||||
## ▷ Mobile Dev Tools
|
||||
## ▷ App Dev Tools
|
||||
|
||||
* 🌐 **[AndroidRepo](https://androidrepo.com/)** - Android Development Resources
|
||||
* 🌐 **[Awesome iOS](https://github.com/vsouza/awesome-ios)** - iOS Development Resources
|
||||
@ -215,6 +213,7 @@
|
||||
* [Lich](https://github.com/line/lich) - Android Development Libraries
|
||||
* [androidx](https://github.com/androidx/androidx) - Android Development Environment for Jetpack Extensions
|
||||
* [Redex](https://fbredex.com/) - Android Bytecode Optimizer
|
||||
* [Swift Playgrounds](https://developer.apple.com/tutorials/swiftui) - Learn Swift UI / [Samples](https://developer.apple.com/tutorials/sample-apps)
|
||||
* [SwiftDump](https://github.com/neil-wu/SwiftDump) - Retrieve Swift Object info from Mach-O file
|
||||
* [SpreadsheetView](https://github.com/bannzai/SpreadsheetView) - Spreadsheet UI for iOS Apps
|
||||
* [Xcode](https://developer.apple.com/xcode/) - Test and Build iOS / iPadOS Apps
|
||||
@ -224,12 +223,77 @@
|
||||
|
||||
***
|
||||
|
||||
## ▷ Game Dev Tools
|
||||
|
||||
* 🌐 **[Awesome Gamedev](https://github.com/mbrukman/awesome-gamedev)**, [Game Dev Resources](https://www.newgrounds.com/wiki/creator-resources/game-dev-resources), [Magic Tools](https://github.com/ellisonleao/magictools), [LibGDX](https://libgdx.com/) / [Resources](https://github.com/rafaskb/awesome-libgdx) or [VG resource](https://www.vg-resource.com/) - Game Development Resources
|
||||
* 🌐 **[Awesome One Person Games](https://github.com/Yonaba/awesome-one-person-games)** - Single Dev Game Examples
|
||||
* ↪️ **[Textures / Patterns](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/img-tools/#wiki_.25B7_textures_.2F_patterns)**
|
||||
* ↪️ **[Game Engines](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_game_engines)**
|
||||
* ↪️ **[3D Models / Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/img-tools#wiki_.25B7_3d_models)**
|
||||
* ↪️ **[Game Development Assets](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage/#wiki_game_development_assets)**
|
||||
* ⭐ **[SpriteFusion](https://www.spritefusion.com/)** - Tilemap Editor / [Discord](https://discord.gg/8sCEAspmBV)
|
||||
* [PICO-8](https://mboffin.itch.io/pico8-educational-toolset) - Basic Game Development Concepts / [Web Version](https://www.pico-8-edu.com/)
|
||||
* [From Zero To Hero](https://therealpenaz91.itch.io/2dgd-f0th) - 2D Game Development Book
|
||||
* [SebastianLague](https://www.youtube.com/c/SebastianLague/playlists?view=50&sort=dd&shelf_id=4) - Game Development Tutorials
|
||||
* [develop.games](https://www.develop.games/) - Game Development Guide
|
||||
* [Trig for Games](https://demoman.net/?a=trig-for-games) - Trigonometry Lessons for Games
|
||||
* [Game Math](https://gamemath.com/book/intro.html) - Mathematics Lessons for Game Devs
|
||||
* [Graphics Workshop](https://github.com/ekzhang/graphics-workshop) - Learn Computer Graphics
|
||||
* [CharPad](https://subchristsoftware.itch.io/charpad-c64-free) - Commodore 64 Graphics Editor
|
||||
* [CHIP-8 Research](https://chip-8.github.io/) - CHIP-8 Research
|
||||
* [HiddenPalace](https://hiddenpalace.org/) - Game Development Media Archive
|
||||
* [Tommti Systems](https://www.tommti-systems.de/go.html?http://www.tommti-systems.de/main-Dateien/files.html) - 3D Benchmark Tools
|
||||
* [XeSS](https://github.com/intel/xess) - Increase Framerate of Game
|
||||
* [AMD Capsaicin Framework](https://gpuopen.com/capsaicin/) - Direct3D 12 Framework
|
||||
* [Serpent.ai](http://serpent.ai/) - Game Agent Framework
|
||||
* [Faux on 3D](https://gizmo199.itch.io/fauxton3d) - Sprite Stacking Framework
|
||||
* [Phaser](https://phaser.io/) - Mobile HTML5 Game Framework
|
||||
* [PlayCanvas](https://playcanvas.com/) - Build HTML5 Visualizations / Games
|
||||
* [Tracy Profiler](https://github.com/wolfpld/tracy) - Frame Profiler
|
||||
* [PlanetSide](https://planetside.co.uk/) - CG Environment Generator
|
||||
* [MapEditor](https://www.mapeditor.org/) or [Tilesetter](https://www.tilesetter.org/) - Level Editor
|
||||
* [Designer Toolkit](https://ldtk.io/) or [Ogmo Editor](https://ogmo-editor-3.github.io/) - 2D Level Editor Level
|
||||
* [SPARTAN Procedural](https://pnjeffries.itch.io/spartan-procjam-edition) - Procedural Tile Generator
|
||||
* [Doshaven Programming List](https://www.doshaven.eu/programming-tools/) - DOS Game Creator Tools
|
||||
* [QB64SourceCode](https://www.qb64tutorial.com/) - QB64 Game Programming Tutorials
|
||||
* [Fantasy Consoles / Computers](https://github.com/paladin-t/fantasy) - List of Fantasy Consoles and Computers
|
||||
* [Kaboomjs](https://kaboomjs.com/) - Quickly Make Games with JavaScript
|
||||
* [inkle](https://www.inklestudios.com/ink/) - Game Narrative Scripting Language
|
||||
* [Mansion Generator](https://watabou.itch.io/procgen-mansion) - Procedural Mansions Generator
|
||||
* [ProFantasy](https://rpgmaps.profantasy.com/) - Fantasy Map Making Tutorials
|
||||
* [Laigter](https://azagaya.itch.io/laigter) - 2D Texture Map
|
||||
* [Fantasy Map Generator](https://azgaar.github.io/Fantasy-Map-Generator/), [Inkarnate](https://inkarnate.com/), [HexHTML](https://hextml.playest.net/), [Inkwellideas](https://inkwellideas.com/free-tools/), [RPG Map Editor 2](https://deepnight.itch.io/tabletop-rpg-map-editor) or [MapTool](https://www.rptools.net/toolbox/maptool/) - Game Map Creators / Editors
|
||||
* [Dungeon Scrawl](https://probabletrain.itch.io/dungeon-scrawl) / [Discord](https://discord.com/invite/RxyZyXg) / [/r/Dungeonscrawl](https://www.reddit.com/r/dungeonscrawl/), [Dungeon Map Doodler](https://dungeonmapdoodler.com/) or [donjon](https://donjon.bin.sh/) or [One Page Dungeon](https://watabou.itch.io/one-page-dungeon) - Dungeon Map Creators / Editors
|
||||
* [Medieval Fantasy City Generator](https://watabou.itch.io/medieval-fantasy-city-generator) - Fantasy City Map Generator
|
||||
* [Neighbourhood](https://watabou.itch.io/neighbourhood) - Neighborhood Map Generator
|
||||
* [Loot](https://www.lootproject.com/) - Randomized Adventure Game Gear
|
||||
* [UE Viewer](https://www.gildor.org/en/projects/umodel) - Unreal Engine Model Viewer / [GitHub](https://github.com/gildor2/UEViewer)
|
||||
* [Bleeper](https://pixwlk.itch.io/bleeper) or [jfxr](https://jfxr.frozenfractal.com/) - Game Sound Effects Creators
|
||||
* [Engine Simulator](https://www.engine-sim.parts/) - Engine Sound Simulator / [GitHub](https://github.com/ange-yaghi/engine-sim)
|
||||
* [The Sounds Resource](https://www.sounds-resource.com/) - Game Sounds Examples
|
||||
* [EZ Conversion](https://spacefoon.itch.io/ez-game-audio-format-conversion) - Game Audio Converter
|
||||
* [Electronic Arts GitHub](https://github.com/electronicarts) - EA GitHub Repos
|
||||
* [Game-icons](https://game-icons.net/) - Game Icons
|
||||
* [Game UI Database](https://www.gameuidatabase.com/) or [HUDSxGUIS](https://www.hudsandguis.com/) - Game HUDs / GUIs
|
||||
* [Nuklear](https://github.com/Immediate-Mode-UI/Nuklear) - Game GUI Creator
|
||||
* [Xelu's Controller Prompts](https://thoseawesomeguys.com/prompts/) - Free Game Prompts / [Video](https://youtu.be/d6GtGbI-now)
|
||||
* [Tuesday JS](https://kirill-live.itch.io/tuesday-js) / [GitHub](https://github.com/Kirilllive/tuesday-js) or [RenPy](https://www.renpy.org/) / [GitHub](https://github.com/renpy/renpy) - Visual Novel Editor
|
||||
* [Bookshelf](https://github.com/Darkhax-Minecraft/Bookshelf) - Minecraft Mod Code Support
|
||||
* [VEEDI](https://www.veedi.com/) - Create Game Walkthrough Videos
|
||||
* [Post-Processing](https://github.com/GarrettGunnell/Post-Processing) - Post Processing Pipeline For Unity
|
||||
* [xNode](https://github.com/Siccity/xNode) - Unity Node Graph Editor
|
||||
* [N64Recomp](https://github.com/N64Recomp/N64Recomp) - Recompile N64 Games into .exe
|
||||
* [AnyRPG](https://www.anyrpg.org/) - RPG Editor
|
||||
* [Pixel Art Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/img-tools#wiki_.25B7_pixel_art) - Tools to Create Sprites & Pixel Art
|
||||
* [Basic Computer Games](https://github.com/coding-horror/basic-computer-games) - Basic Computer Game Examples
|
||||
|
||||
***
|
||||
|
||||
## ▷ Database Tools
|
||||
|
||||
* 🌐 **[DB Engines](https://db-engines.com/en/ranking)** - Database Rankings
|
||||
* 🌐 **[Awesome Opensource Data Engineering](https://github.com/gunnarmorling/awesome-opensource-data-engineering)** - Data Engineering Tools
|
||||
* 🌐 **[Awesome Opensource Data Engineering](https://github.com/gunnarmorling/awesome-opensource-data-engineering)** - Data Engineering Resources
|
||||
* 🌐 **[Awesome Big Data](https://github.com/newTendermint/awesome-bigdata)** - Big Data Resources
|
||||
* ⭐ **[DB Browser](https://sqlitebrowser.org/)** or [HeidiSQL](https://www.heidisql.com/) - SQL Managers
|
||||
* [Grafana](https://grafana.com/) - Dev Data Dashboard
|
||||
* [DBeaver](https://dbeaver.io/) - Universal Database Tool
|
||||
* [Ingestr](https://bruin-data.github.io/ingestr/) - Transfer Data between Databases
|
||||
@ -239,10 +303,15 @@
|
||||
* [SQL Cheat Sheet](https://i.ibb.co/Ctr0Tn8/e289a15e2246.jpg) - SQL Cheat Sheet
|
||||
* [EdgeDB](https://www.edgedb.com/) - SQL Alternative
|
||||
* [Text-to-SQL](https://datalynx.ai/text-to-sql) - AI Generated SQL Queries
|
||||
* [HeidiSQL](https://www.heidisql.com/) - SQL Manager
|
||||
* [QueryStorm](https://querystorm.com/) - SQL and .NET programming in Excel
|
||||
* [SQLTranslate](https://www.sqltranslate.app/) - SQL Translator
|
||||
* [SQLizer](https://sqlizer.io/) - Convert Files To SQL Databases
|
||||
* [franchise](https://franchise.cloud/) - SQL Notebook
|
||||
* [Learn SQL](https://sqlbolt.com/) - SQL Lessons
|
||||
* [SQL PD](https://sqlpd.com/) - SQL Learning Game
|
||||
* [PostgreSQL Tutorial](https://www.postgresqltutorial.com/) - PostgreSQL Tutorial
|
||||
* [MySQL Tutorial](https://www.mysqltutorial.org/) - MySQL Tutorial
|
||||
|
||||
***
|
||||
|
||||
@ -254,6 +323,15 @@
|
||||
* ↪️ **[Git Project Indexes](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_git_projects)**
|
||||
* ⭐ **[Git-Fork](https://git-fork.com/)** or [GitQlient](https://github.com/francescmm/GitQlient) - Git Desktop Clients
|
||||
* ⭐ **[Codeberg](https://codeberg.org/)**, [Drift](https://drift.lol/), [Gitea](https://about.gitea.com/), [GitLab](https://about.gitlab.com/) or [sourcehut](https://sourcehut.org/) - GitHub Alternatives
|
||||
* ⭐ **[Git Cheatsheet](https://www.ndpsoftware.com/git-cheatsheet.html#loc=index;)** or [Git Commands](https://gabrieldejesus.github.io/git-commands/) / [2](https://github.com/gabrieldejesus/git-commands) - Git Command Lists
|
||||
* [First Timers Only](https://www.firsttimersonly.com/) or [First Contributions](https://firstcontributions.github.io/) - Contribution Guides for Beginners
|
||||
* [Git Guide](https://fateen45.notion.site/Git-GitHub-61bc81766b2e4c7d9a346db3078ce833) or [Git Tips](https://github.com/git-tips/tips) - Git Guides / Tips
|
||||
* [Oh My Git!](https://ohmygit.org/) or [Oh Shit, Git!?!](https://ohshitgit.com/) - Git Learning Game
|
||||
* [Learn Git Branching](https://learngitbranching.js.org/) - Interactive Git Branching Guide
|
||||
* [Git-it](https://github.com/jlord/git-it-electron) - Learn CLI Git & GitHub
|
||||
* [Git+ Coach](https://github.com/vishal2376/git-coach) - Git Learning App
|
||||
* [Git Tutorial](https://4geeksacademy.github.io/git-interactive-tutorial/) - Interactive Git Tutorial
|
||||
* [Git Time](https://git.bradwoods.io/) - Git Version Control System Learning Game
|
||||
* [Gittea.dev](https://gittea.dev/), [Savannah](https://savannah.gnu.org/), [FSFE](https://git.fsfe.org/), [git.sr.ht](https://git.sr.ht/), [GitGud](https://gitgud.io/) or [Notabug](https://notabug.org/) - Git Hosting / Software Forge
|
||||
* [Forgejo](https://forgejo.org/) or [Gogs](https://gogs.io/) - Self-Hosted Git Services / Forge
|
||||
* [posh-git](https://github.com/dahlbyk/posh-git) - Git Powershell Environment
|
||||
@ -261,6 +339,7 @@
|
||||
* [GitKraken](https://www.gitkraken.com/), [RelaGit](https://rela.dev/), [Sourcetree](https://www.sourcetreeapp.com/), [lazygit](https://github.com/jesseduffield/lazygit) or [gitui](https://github.com/Extrawurst/gitui) - Git GUIs
|
||||
* [Gut](https://gut-cli.dev/), [Jujutsu](https://github.com/martinvonz/jj) or [gitu](https://github.com/altsem/gitu) - Git CLI / TUI
|
||||
* [SparkleShare](https://sparkleshare.org) / [GitHub](https://github.com/hbons/SparkleShare) - Git Collab Tool
|
||||
* [GitBook](https://www.gitbook.com/) - Document Collaboration
|
||||
* [Git-notify](https://github.com/jevakallio/git-notify) - Embed Announcements into Git Commit Messages
|
||||
* [Allstar](https://github.com/ossf/allstar) - Git Repository Security App
|
||||
* [git-bug](https://github.com/MichaelMure/git-bug) - Git Embedded Bug Tracker
|
||||
@ -341,8 +420,7 @@
|
||||
* [GitHub Snake](https://dev.to/mishmanners/how-to-enable-github-actions-on-your-profile-readme-for-a-contribution-graph-4l66) - Enable Snake Game on GitHub Readme
|
||||
* [GitHub Profile Readme Generator](https://rahuldkjain.github.io/gh-profile-readme-generator/) or [GPRM](https://gprm.itsvg.in/) - Generate Git Profile Readme
|
||||
* [GitStalk](https://gitstalk.netlify.app/) - GitHub Profile Info Search
|
||||
* [ProfileMe.dev](https://www.profileme.dev/) - Create GitHub Profile
|
||||
* [Beautify GitHub Profile](https://github.com/rzashakeri/beautify-github-profile) - Custom GitHub Profile Resources
|
||||
* [ProfileMe.dev](https://www.profileme.dev/) - Create Github Profile
|
||||
* [Discord MD Badge](https://github.com/gitlimes/discord-md-badge) - Add Discord Badge to GitHub
|
||||
* [github-material-icons-extension](https://github.com/Claudiohbsantos/github-material-icons-extension) - Material Icons
|
||||
* [gist.io](https://gist.io/) - Git Blog Platform
|
||||
@ -354,7 +432,7 @@
|
||||
|
||||
* 🌐 **[Awesome Docker](https://moistcatawumpus.github.io/awesome-docker/)** - Docker Services Index
|
||||
* ⭐ **[Docker](https://www.docker.com/)** - Build, Manage and Run Apps in Containers
|
||||
* ⭐ **[portainer](https://portainer.io/)**, [sudobox](https://sudobox.io/) / [Discord](https://discord.gg/Ebh9rKQ5Ws), [yacht](https://yacht.sh/), [moncho](https://moncho.github.io/dry/) or [podman](https://podman.io/) / [2](https://podman-desktop.io/) - Container Managers
|
||||
* ⭐ **[portainer](https://portainer.io/)**, [sudobox](https://sudobox.io/) / [Discord](https://discord.gg/Ebh9rKQ5Ws), [yacht](https://yacht.sh/), [moncho](https://moncho.github.io/dry/) or [podman](https://podman.io/) - 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
|
||||
* [Docker Desktop](https://www.docker.com/products/docker-desktop/) - Docker Desktop App
|
||||
@ -415,7 +493,7 @@
|
||||
* [Stein](https://steinhq.com/) - Turn Google Sheets into Database API
|
||||
* [Lanyard](https://github.com/Phineas/lanyard) / [Discord](https://discord.gg/lanyard) - Export Discord Rich Presence to API Endpoint / Websocket
|
||||
* [Telegram Bot API](https://core.telegram.org/bots) / [GitHub](https://github.com/tdlib/telegram-bot-api) or [PHP Telegram Bot](https://github.com/php-telegram-bot/core) - Telegram Bot API
|
||||
* [cf-workers-telegram-bot](https://t.me/TuxRobot) / [GitHub](https://github.com/codebam/cf-workers-telegram-bot) - Serverless Telegram Bot
|
||||
* [cf-workers-telegram-bot](https://t.me/TuxRobot) / [Github](https://github.com/codebam/cf-workers-telegram-bot) - Serverless Telegram Bot
|
||||
* [Perspective API](https://www.perspectiveapi.com/) - Toxicity Reduction API
|
||||
* [Plaid](https://plaid.com/) - Financial Account API / [GitHub](https://github.com/plaid)
|
||||
* [PDF Bot](https://github.com/esbenp/pdf-bot) - A Node queue API for generating PDFs
|
||||
@ -424,8 +502,7 @@
|
||||
|
||||
## ▷ Machine Learning
|
||||
|
||||
* 🌐 **[LiveBench](https://livebench.ai/)** - LLM Benchmarks / Leaderboards
|
||||
* 🌐 **[Awesome Machine Learning](https://github.com/josephmisiti/awesome-machine-learning)**, [Caffee](https://caffe.berkeleyvision.org/) / [GitHub](https://github.com/BVLC/caffe), [SuperAGI](https://superagi.com/) / [GitHub](https://github.com/TransformerOptimus/SuperAGI), [Rasa](https://rasa.com/docs/rasa/) or [OpenNN](https://www.opennn.net/) / [GitHub](https://github.com/Artelnics/OpenNN) - Machine Learning Frameworks
|
||||
* 🌐 **[Awesome Machine Learning](https://github.com/josephmisiti/awesome-machine-learning)**, [Caffee](https://caffe.berkeleyvision.org/) / [Github](https://github.com/BVLC/caffe), [SuperAGI](https://superagi.com/) / [GitHub](https://github.com/TransformerOptimus/SuperAGI), [Rasa](https://rasa.com/docs/rasa/) or [OpenNN](https://www.opennn.net/) / [Github](https://github.com/Artelnics/OpenNN) - Machine Learning Frameworks
|
||||
* 🌐 **[Awesome List of Awesomes](https://github.com/Nachimak28/awesome-list-of-awesomes)**, [Awesome ML](https://github.com/underlines/awesome-marketing-datascience/), [Awesome LLM JSON](https://github.com/imaurer/awesome-llm-json), [CyberCowboy](https://local-llm.cybercowboy.de) or [ML_Resources](https://github.com/tunguz/ML_Resources) - Machine Learning Resources
|
||||
* 🌐 **[Awesome Google Colab](https://github.com/firmai/awesome-google-colab)** - Machine Learning Collabs
|
||||
* 🌐 **[Awesome Machine Learning Art](https://github.com/vibertthio/awesome-machine-learning-art)** - Machine Learning Art Resources
|
||||
@ -466,103 +543,6 @@
|
||||
|
||||
***
|
||||
|
||||
# ► Game Dev Tools
|
||||
|
||||
* 🌐 **[Awesome Game Dev](https://github.com/Calinou/awesome-gamedev)** - Game Dev Resources
|
||||
* 🌐 **[Awesome One Person Games](https://github.com/Yonaba/awesome-one-person-games)** - Single Dev Game Examples
|
||||
* 🌐 **[Awesome Game Production](https://github.com/vhladiienko/awesome-game-production)** - Game Production Resources
|
||||
* ↪️ **[Learn Game Development](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/dev-tools#wiki_.25B7_game_development)**
|
||||
* [Haxe](https://haxe.org/) - Cross-platform Compiler / [Resources](https://github.com/Dvergar/awesome-haxe-gamedev)
|
||||
* [CHIP-8 Research](https://chip-8.github.io/) - CHIP-8 Research
|
||||
* [HiddenPalace](https://hiddenpalace.org/) - Game Development Media Archive
|
||||
* [Tommti Systems](https://www.tommti-systems.de/go.html?http://www.tommti-systems.de/main-Dateien/files.html) - 3D Benchmark Tools
|
||||
* [XeSS](https://github.com/intel/xess) - Increase Framerate of Game
|
||||
* [libGDX](https://libgdx.com/) - Java Game Dev Framework / [Resources](https://github.com/rafaskb/awesome-libgdx)
|
||||
* [AMD Capsaicin Framework](https://gpuopen.com/capsaicin/) - Direct3D 12 Framework
|
||||
* [Serpent.ai](http://serpent.ai/) - Game Agent Framework
|
||||
* [Faux on 3D](https://gizmo199.itch.io/fauxton3d) - Sprite Stacking Framework
|
||||
* [Phaser](https://phaser.io/) - Mobile HTML5 Game Framework
|
||||
* [PlayCanvas](https://playcanvas.com/) - Build HTML5 Visualizations / Games
|
||||
* [Tracy Profiler](https://github.com/wolfpld/tracy) - Frame Profiler
|
||||
* [PlanetSide](https://planetside.co.uk/) - CG Environment Generator
|
||||
* [Doshaven Programming List](https://www.doshaven.eu/programming-tools/) - DOS Game Creator Tools
|
||||
* [Fantasy Consoles / Computers](https://github.com/paladin-t/fantasy) - List of Fantasy Consoles and Computers
|
||||
* [Kaboomjs](https://kaboomjs.com/) - Quickly Make Games with JavaScript
|
||||
* [inkle](https://www.inklestudios.com/ink/) - Game Narrative Scripting Language
|
||||
* [Mansion Generator](https://watabou.itch.io/procgen-mansion) - Procedural Mansions Generator
|
||||
* [Loot](https://www.lootproject.com/) - Randomized Adventure Game Gear
|
||||
* [Electronic Arts GitHub](https://github.com/electronicarts) - EA GitHub Repos
|
||||
* [Xelu's Controller Prompts](https://thoseawesomeguys.com/prompts/) - Free Game Prompts / [Video](https://youtu.be/d6GtGbI-now)
|
||||
* [Bookshelf](https://github.com/Darkhax-Minecraft/Bookshelf) - Minecraft Mod Code Support
|
||||
* [VEEDI](https://www.veedi.com/) - Create Game Walkthrough Videos
|
||||
* [N64Recomp](https://github.com/N64Recomp/N64Recomp) - Recompile N64 Games into .exe
|
||||
* [Basic Computer Games](https://github.com/coding-horror/basic-computer-games) - Basic Computer Game Examples
|
||||
|
||||
***
|
||||
|
||||
## ▷ Game Engines
|
||||
|
||||
* 🌐 **[Awesome Game Engine](https://github.com/stevinz/awesome-game-engine-dev)** - Game Engine Development Resources
|
||||
* 🌐 **[EnginesDatabase](https://enginesdatabase.com/)** - Game Engines Database
|
||||
* ↪️ **[2D Only Engines](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_2d_game_engines)**
|
||||
* ↪️ **[3D Only Engines](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_3d_game_engines)**
|
||||
* ⭐ **[Godot](https://godotengine.org/)** / [GitHub](https://github.com/godotengine) / [Resources](https://github.com/godotengine/awesome-godot) / [Input Actions](https://github.com/Orama-Interactive/Keychain)
|
||||
* [Unity](https://unity.com/products/unity-personal)
|
||||
* Unity Tools - [Cheat Sheet](https://github.com/NaomiLe1811/Unity_Cheat_Sheet) / [Unity / XNA Framework](https://github.com/BepInEx/BepInEx) / [Post Processing Pipeline](https://github.com/GarrettGunnell/Post-Processing) / [Node Editor](https://github.com/Siccity/xNode) / [Texture Import](https://github.com/keijiro/Metatex)
|
||||
* [GDevelop](https://gdevelop.io/) / [GitHub](https://github.com/4ian/GDevelop)
|
||||
* [Defold](https://defold.com/)
|
||||
* [Bevy Engine](https://bevyengine.org/) / [Extensions](https://bevy-cheatbook.github.io/setup/unofficial-plugins.html)
|
||||
* [ursina engine](https://www.ursinaengine.org/)
|
||||
* [stride3d](https://www.stride3d.net/) / [GitHub](https://github.com/stride3d/stride)
|
||||
* [cocos](https://www.cocos.com/en/) / [GitHub](https://github.com/cocos2d/cocos2d-x)
|
||||
* [microStudio](https://microstudio.itch.io/microstudio)
|
||||
* [AnyRPG](https://www.anyrpg.org/) - RPG Engine
|
||||
* [RPG Playground](https://rpgplayground.com/) - Simple RPG Creator
|
||||
* [Playerio](https://playerio.com/) - Online Game Engine
|
||||
* [stencyl](https://www.stencyl.com/) - Codeless Game Engine
|
||||
|
||||
***
|
||||
|
||||
## ▷ Asset Creation
|
||||
|
||||
* ↪️ **[Download Game Assets](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_game_assets)**
|
||||
* ↪️ **[3D Models / Modeling Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/img-tools#wiki_.25B7_3d_models)**
|
||||
* ↪️ **[Design Tools / Resources](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/img-tools/)**
|
||||
* ↪️ **[Art Resources](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/edu/#wiki_.25B7_art_.2F_editing)**
|
||||
* ↪️ **[Writing Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/text-tools/#wiki_.25B7_writing_tools)**
|
||||
* [Nuklear](https://github.com/Immediate-Mode-UI/Nuklear) - Game GUI Creator
|
||||
* [HUDSxGUIS](https://www.hudsandguis.com/) - UI Design Concepts
|
||||
* [SPARTAN Procedural](https://pnjeffries.itch.io/spartan-procjam-edition) - Procedural Tile Generator
|
||||
* [Bleeper](https://pixwlk.itch.io/bleeper) or [jfxr](https://jfxr.frozenfractal.com/) - Game Sound Effects Creators
|
||||
* [Engine Simulator](https://www.engine-sim.parts/) - Engine Sound Simulator / [GitHub](https://github.com/ange-yaghi/engine-sim)
|
||||
* [The Sounds Resource](https://www.sounds-resource.com/) - Game Sounds Examples
|
||||
* [EZ Conversion](https://spacefoon.itch.io/ez-game-audio-format-conversion) - Game Audio Converter
|
||||
|
||||
***
|
||||
|
||||
## ▷ Map Creators / Editors
|
||||
|
||||
* ⭐ **[SpriteFusion](https://www.spritefusion.com/)** - Tilemap Editor / [Discord](https://discord.gg/8sCEAspmBV)
|
||||
* [MapEditor](https://www.mapeditor.org/) or [Tilesetter](https://www.tilesetter.org/) - Level Editors
|
||||
* [LDtk](https://ldtk.io/) or [Ogmo Editor](https://ogmo-editor-3.github.io/) - 2D Level Editors
|
||||
* [CharPad](https://subchristsoftware.itch.io/charpad-c64-free) - Commodore 64 Graphics Editor
|
||||
* [Fantasy Map Generator](https://azgaar.github.io/Fantasy-Map-Generator/) - Fantasy Map Generator
|
||||
* [Inkarnate](https://inkarnate.com/) - Fantasy Map Editor
|
||||
* [HexHTML](https://hextml.playest.net/) - Hexagon Fantasy Map Editor
|
||||
* [ProFantasy](https://rpgmaps.profantasy.com/) - Fantasy Map Tutorials
|
||||
* [Medieval Fantasy City Generator](https://watabou.itch.io/medieval-fantasy-city-generator) - Medieval Fantasy City Generator
|
||||
* [donjon](https://donjon.bin.sh/) - RPG Resources / Tools
|
||||
* [RPG Map II](https://deepnight.itch.io/tabletop-rpg-map-editor) - RPG Map Editor
|
||||
* [MapTool](https://www.rptools.net/toolbox/maptool/) - Virtual Tabletop for RPG Games
|
||||
* [Inkwell Ideas](https://inkwellideas.com/free-tools/) - Free Map Tools
|
||||
* [Neighbourhood](https://watabou.itch.io/neighbourhood) - Neighborhood Map Generator
|
||||
* [Laigter](https://azagaya.itch.io/laigter) - Map Generator for 2D Sprites
|
||||
* [Dungeon Scrawl](https://probabletrain.itch.io/dungeon-scrawl) - Dungeon Mapmaking Tool / [Subreddit](https://www.reddit.com/r/dungeonscrawl/) / [Discord](https://discord.com/invite/RxyZyXg)
|
||||
* [Dungeon Map Doodler](https://dungeonmapdoodler.com/) - Draw Dungeon & Terrain Maps
|
||||
* [One Page Dungeon](https://watabou.itch.io/one-page-dungeon) - Single-page Dungeon Map Generator
|
||||
|
||||
***
|
||||
|
||||
# ► IDEs / Code Editors
|
||||
|
||||
* ↪️ **[Text Editors / Notes](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/text-tools#wiki_.25BA_text_editors_.2F_notes)**
|
||||
@ -573,7 +553,6 @@
|
||||
* ⭐ **[WebDen](https://webden.dev/)**, [Sharplab](https://sharplab.io/), [tech.io](https://tech.io/), [CodingGround](https://www.tutorialspoint.com/codingground.htm) or [Online Tools](https://onlinetool.io/) - Code Playgrounds
|
||||
* [Selenium](https://www.selenium.dev/), [PlayWright](https://playwright.dev/) or [Huginn](https://github.com/huginn/huginn) - Browser Automation
|
||||
* [Heynote](https://heynote.com/) - Code Editor / Notepad
|
||||
* [Edna](https://edna.arslexis.io/) - Code Editor / Notepad
|
||||
* [JetBrains](https://education.github.com/pack) - Code Editor / [License Server](https://github.com/crazy-max/docker-jetbrains-license-server) / [Free Method](https://rentry.co/FMHYBase64#jetbrain-ide)
|
||||
* [Bluefish](https://bluefish.openoffice.nl/index.html) - [Templates](https://templates.openoffice.org/en)
|
||||
* [CudaText](https://cudatext.github.io/) - Code Editor
|
||||
@ -615,22 +594,9 @@
|
||||
|
||||
* 🌐 **[cloud](https://gist.github.com/imba-tjd/d73258f0817255dbe77d64d40d985e76#file-cloud-md)** - Cloud Platform Index
|
||||
* ↪️ **[Code Collaboration Platforms](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/text-tools#wiki_.25B7_text_.2F_code_collaboration)**
|
||||
* ⭐ **[goormIDE](https://ide.goorm.io/)** - Cloud IDE
|
||||
* ⭐ **[goormIDE](https://ide.goorm.io/)**, [Fleet](https://www.jetbrains.com/fleet/), [CodeTasty](https://codetasty.com/), [Replit](https://replit.com/), [BoostNote](https://boostnote.io/), [Aither](https://github.com/enoki-inc/aither), [Deta](https://deta.space/), [TerraForm](https://www.terraform.io/), [Atheos](https://www.atheos.io/) / [GitHub](https://github.com/Atheos/Atheos), [Datalore](https://datalore.jetbrains.com/), [DeepNote](https://deepnote.com/), [Cloud9](https://aws.amazon.com/cloud9/) or [Glitch](https://glitch.com/) / [Replit Import](https://replit.com/glitch) / [GitHub](https://github.com/m3o/m3o) - Cloud IDEs
|
||||
* ⭐ **[CodeSandbox](https://codesandbox.io/)**, [StackBlitz](https://stackblitz.com/) or [GitPod](https://www.gitpod.io/) - VSCode Cloud IDE
|
||||
* ⭐ **[judge0](https://ide.judge0.com/)** - Online Code Editor / [Discord](https://discord.com/invite/GRc3v6n)
|
||||
* [Fleet](https://www.jetbrains.com/fleet/) - Cloud IDE
|
||||
* [CodeTasty](https://codetasty.com/) - Cloud IDE
|
||||
* [Replit](https://replit.com/) - Cloud IDE
|
||||
* [BoostNote](https://boostnote.io/) - Cloud IDE
|
||||
* [Moonbit](https://www.moonbitlang.com/) - Cloud IDE
|
||||
* [Aither](https://github.com/enoki-inc/aither) - Cloud IDE
|
||||
* [Deta](https://deta.space/) - Cloud IDE
|
||||
* [TerraForm](https://www.terraform.io/) - Cloud IDE
|
||||
* [Atheos](https://www.atheos.io/) - Cloud IDE / [GitHub](https://github.com/Atheos/Atheos)
|
||||
* [Datalore](https://datalore.jetbrains.com/) - Cloud IDE
|
||||
* [DeepNote](https://deepnote.com/) - Cloud IDE
|
||||
* [Cloud9](https://aws.amazon.com/cloud9/) - Cloud IDE
|
||||
* [Glitch](https://glitch.com/) - Cloud IDE / [Replit Import](https://replit.com/glitch) / [GitHub](https://github.com/m3o/m3o)
|
||||
* [JSFiddle](https://jsfiddle.net/) - Online Code Editor
|
||||
* [Collabedit](https://collabedit.com/) - Online Code Editor
|
||||
* [Portacode](https://portacode.com/) - Online Code Editor
|
||||
@ -666,6 +632,12 @@
|
||||
* [neovide](https://neovide.dev), [gnvim](https://github.com/vhakulinen/gnvim), [nvui](https://github.com/rohit-px2/nvui), [Neovim wiki##gui](https://github.com/neovim/neovim/wiki/Related-projects##gui) - Neovim GUIs
|
||||
* [instant.nvim](https://github.com/jbyuki/instant.nvim) - Collaborative Neovim Editing
|
||||
* [chatgpt.nvim](https://github.com/terror/chatgpt.nvim) - ChatGPT in Neovim
|
||||
* [Vim Cheatsheet](https://i.ibb.co/FbdMMHN/460e75dd8543.png) or [rTorr](https://vim.rtorr.com/) - Vim Editor Cheat Sheets
|
||||
* [Vim University](https://github.com/wincent/vim-university) - Vim Tips
|
||||
* [VimTip](https://vim.fandom.com/wiki/Category:VimTip) - Vim Editor Tips
|
||||
* [OpenVim](https://www.openvim.com/) - Interactive Vim Tutorial
|
||||
* [Vim Adventures](https://vim-adventures.com/) - Vim Learning Game
|
||||
* [Vim Golf](https://www.vimgolf.com/) - Vim Challenges
|
||||
* [Vim Plug](https://github.com/junegunn/vim-plug), [vim-pathogen](http://www.vim.org/scripts/script.php?script_id=2332) / [GitHub](https://github.com/tpope/vim-pathogen) or [Shougo](https://github.com/Shougo/dein.vim) - Vim Plugin Managers
|
||||
* [VimAwesome](https://vimawesome.com/) - Vim Plugins
|
||||
* [nerdtree](https://github.com/preservim/nerdtree) - Vim Tree Explorer
|
||||
@ -678,7 +650,7 @@
|
||||
|
||||
## ▷ VSCode Tools
|
||||
|
||||
* 🌐 **[Awesome VSC Extensions](https://hl2guide.github.io/Awesome-Visual-Studio-Code-Extensions/)**, [2](https://marketplace.visualstudio.com/) - VSCode Extensions
|
||||
* 🌐 **[Awesome VSC Extensions]](https://hl2guide.github.io/Awesome-Visual-Studio-Code-Extensions/)**, [2](https://marketplace.visualstudio.com/) - VSCode Extensions
|
||||
* [github-vscode-icons](https://github.com/dderevjanik/github-vscode-icons) - VSCode Icons
|
||||
* [chatgpt-vscode](https://github.com/mpociot/chatgpt-vscode) - VSCode ChatGPT
|
||||
* [Open VSX](https://open-vsx.org/) - Open VSX Registry
|
||||
@ -706,16 +678,6 @@
|
||||
* ↪️ **[Programming / Coding Tutorials](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_coding_tutorials)**
|
||||
* ⭐ **[freeCodeCamp](https://www.freecodecamp.org/)** - Programming / Courses / Interactive
|
||||
* ⭐ **[StackOverflow](https://stackoverflow.com/)** / [Frontend](https://code.whatever.social/) or [DecodingDevOps](https://www.decodingdevops.com/) - Developer Q&A
|
||||
* ⭐ **[Git Cheatsheet](https://www.ndpsoftware.com/git-cheatsheet.html#loc=index;)** or [Git Commands](https://gabrieldejesus.github.io/git-commands/) / [2](https://github.com/gabrieldejesus/git-commands) - Git Command Lists
|
||||
* ⭐ **[OpenVim](https://openvim.com/)** - Interactive Vim Tutorial
|
||||
* [First Timers Only](https://www.firsttimersonly.com/) or [First Contributions](https://firstcontributions.github.io/) - Contribution Guides for Beginners
|
||||
* [Git Guide](https://fateen45.notion.site/Git-GitHub-61bc81766b2e4c7d9a346db3078ce833) or [Git Tips](https://github.com/git-tips/tips) - Git Guides / Tips
|
||||
* [Oh My Git!](https://ohmygit.org/) or [Oh Shit, Git!?!](https://ohshitgit.com/) - Git Learning Game
|
||||
* [Git+ Coach](https://github.com/vishal2376/git-coach) - Git Learning App
|
||||
* [Git Tutorial](https://4geeksacademy.github.io/git-interactive-tutorial/) - Interactive Git Tutorial
|
||||
* [Learn Git Branching](https://learngitbranching.js.org/) - Interactive Git Branching Guide
|
||||
* [Git-it](https://github.com/jlord/git-it-electron) - Learn CLI Git & GitHub
|
||||
* [Git Time](https://git.bradwoods.io/) - Git Version Control System Learning Game
|
||||
* [Audio Dev](https://audiodev.blog/newbie-resources/) - Audio Programming Learning Resources
|
||||
* [DZone](https://dzone.com/) - Developer Tutorials
|
||||
* [Dev.tube](https://dev.tube/) - Developer Talks
|
||||
@ -743,18 +705,8 @@
|
||||
* [Software Engineering Interview Preparation](https://github.com/orrsella/soft-eng-interview-prep) - Software Engineer Interview Preparation
|
||||
* [system-design-primer](https://github.com/donnemartin/system-design-primer) - Large Scale System Design Guides
|
||||
* [LearnToCloud](https://learntocloud.guide/) - Cloud Computing Guide
|
||||
* [Swift Playgrounds](https://developer.apple.com/tutorials/swiftui) - Learn Swift UI / [Samples](https://developer.apple.com/tutorials/sample-apps)
|
||||
* [LearnYouHaskell](http://learnyouahaskell.com/chapters) - Haskell Guide
|
||||
* [Vim Cheatsheet](https://i.ibb.co/FbdMMHN/460e75dd8543.png) or [rTorr](https://vim.rtorr.com/) - Vim Editor Cheat Sheets
|
||||
* [Vim University](https://github.com/wincent/vim-university) - Vim Tips
|
||||
* [VimTip](https://vim.fandom.com/wiki/Category:VimTip) - Vim Editor Tips
|
||||
* [Vim Adventures](https://vim-adventures.com/) - Vim Learning Game
|
||||
* [Vim Golf](https://www.vimgolf.com/) - Vim Challenges
|
||||
* [High Assurance Rust](https://highassurance.rs/) - Software Development Guide
|
||||
* [Learn SQL](https://sqlbolt.com/) - SQL Lessons
|
||||
* [SQL PD](https://sqlpd.com/) or [SQL Easy](https://www.sql-easy.com/) - SQL Learning Games
|
||||
* [PostgreSQL Tutorial](https://www.postgresqltutorial.com/) - PostgreSQL Tutorial
|
||||
* [MySQL Tutorial](https://www.mysqltutorial.org/) - MySQL Tutorial
|
||||
* [LearnOpenGL](https://learnopengl.com/) - Learn OpenGL
|
||||
* [Devops Exercises](https://github.com/bregman-arie/devops-exercises) - DevOps Exercises
|
||||
* [90DaysOfDevOps](https://github.com/MichaelCade/90DaysOfDevOps) - Learn DevOps
|
||||
@ -766,53 +718,11 @@
|
||||
|
||||
***
|
||||
|
||||
## ▷ Web Development
|
||||
|
||||
* 🌐 **[MDN](https://developer.mozilla.org/)** or [Web Dev Resources](https://joshjoshuap-webdevresources.vercel.app/) - Web Dev Learning Resources
|
||||
* ⭐ **[Odin Project](https://www.freecodecamp.org/learn/the-odin-project/)**, [2](https://www.theodinproject.com/) - Programming / Courses / Interactive / [Discord](https://discord.com/invite/fbFCkYabZB)
|
||||
* ⭐ **[FullStackOpen](https://fullstackopen.com/en/)** - Full Stack Course
|
||||
* ⭐ **[LandChad](https://landchad.net/)** or [learn.sadgrl.online](https://learn.sadgrl.online/) - Site Development Guides
|
||||
* ⭐ **[Learn to Code HTML & CSS](https://learn.shayhowe.com/)** - HTML/CSS Course
|
||||
* ⭐ **[PHP: The Right Way](https://phptherightway.com/)**, [Learn PHP](https://odan.github.io/learn-php/) or [PHP Tutorial](https://www.phptutorial.net/) - Learn PHP
|
||||
* ⭐ **[JavaScript.info](https://javascript.info/)**, [Patterns.dev](https://www.patterns.dev/) or [30 Days Of JavaScript](https://github.com/Asabeneh/30-Days-Of-JavaScript) - JavaScript Learning Sites
|
||||
* [Web Dev for Beginners](https://microsoft.github.io/Web-Dev-For-Beginners/) - Web Dev Course
|
||||
* [Aquent Gymnasium](https://thegymnasium.com/) or [TheValleyOfCode](https://thevalleyofcode.com/) - Web Dev Tutorials
|
||||
* [Dash](https://dash.generalassemb.ly/) - Web Dev Courses
|
||||
* [Web Skills](https://andreasbm.github.io/web-skills/), [web.dev](https://web.dev/learn) or [Encodedna](https://www.encodedna.com/) - Web Dev Guides
|
||||
* [Codevolution](https://www.youtube.com/@Codevolution) - Web Dev Video Lessons
|
||||
* [Local-First Web](https://localfirstweb.dev/) - Local-First Web Development Guide
|
||||
* [DOM Events](https://domevents.dev/) - Learn about DOM Events
|
||||
* [backendlore](https://github.com/fpereiro/backendlore) - Backend Coding Guide
|
||||
* [backend-challenges](https://github.com/CollabCodeTech/backend-challenges) - Backend Challenges for Practice
|
||||
* [Full Stack Solana Development Guide](https://dev.to/edge-and-node/the-complete-guide-to-full-stack-solana-development-with-react-anchor-rust-and-phantom-3291) - [Examples](https://github.com/dabit3/complete-guide-to-full-stack-solana-development)
|
||||
* [STPG](https://stpg-tk.netlify.app/guides/) - Startpage Creation Guides / [Discord](https://discord.com/invite/ExAGgVR)
|
||||
* [Web Design in 4 Minutes](https://jgthms.com/web-design-in-4-minutes/) or [Strml](https://www.strml.net/) - Interactive Web Design Tutorial
|
||||
* [WebGL and GLSL Workshop](https://mattdesl.github.io/workshop-webgl-glsl/) - Interactive WebGL / GLSL Tutorial
|
||||
* [css-animation](https://css-animations.io/) - CSS Animation Tutorial
|
||||
* [100DayCSS](https://100dayscss.com/) , [CSS Challenges](https://css-challenges.com/) or [PlayCSS](https://playcss.app/) - CSS Challenges
|
||||
* [Codepip](https://codepip.com/games/), [Grid Garden](https://cssgridgarden.com/), [CSS Battle](https://cssbattle.dev/), [CSS Speedrun](https://css-speedrun.netlify.app/), [CodingFantasy](https://codingfantasy.com/) or [CSS Diner](https://flukeout.github.io/) - CSS Learning Games
|
||||
* [Guess CSS](https://www.guess-css.app/) - CSS Guessing Game
|
||||
* [Flexbox Froggy](https://flexboxfroggy.com/), [FlexboxDefense](http://www.flexboxdefense.com/) or [KnightsoftheFlexboxTable](https://knightsoftheflexboxtable.com/) - CSS Flexbox Learning Games
|
||||
* [DefensiveCSS](https://defensivecss.dev/) - CSS Tips
|
||||
* [LearnCSSGrid](https://learncssgrid.com/) or [GridByExample](https://gridbyexample.com/) - CSS Grid Guides
|
||||
* [Leaflet](https://leafletjs.com/) - JavaScript Library for Interactive Maps
|
||||
* [You Don't Know JS](https://github.com/getify/You-Dont-Know-JS) or [EloquentJavaScript](https://eloquentjavascript.net/) - JavaScript Learning Books
|
||||
* [JavaScript Questions](https://github.com/lydiahallie/javascript-questions) or [JavaScriptQuiz](https://javascriptquiz.com/) - JavaScript Questions for Practice
|
||||
* [33 JS Concepts](https://github.com/leonardomso/33-js-concepts) - Useful JavaScript Concepts
|
||||
* [You-Dont-Need-jQuery](https://github.com/camsong/You-Dont-Need-jQuery) - JavaScript Query Style Events Guide
|
||||
* [Airbnb JavaScript Style Guide](https://github.com/airbnb/javascript) - JavaScript Style Guide
|
||||
* [Untrusted](https://alexnisnevich.github.io/untrusted/) - JavaScript Learning Game
|
||||
* [HTML DOM](https://phuoc.ng/collection/html-dom/) - Learn DOM Manipulation
|
||||
* [HTMLDog](https://htmldog.com/) - HTML/CSS and JavaScript Tutorials
|
||||
|
||||
***
|
||||
|
||||
## ▷ Computer Science
|
||||
|
||||
* 🌐 **[CompSciLib](https://www.compscilib.com/)** - Computer Science Tools
|
||||
* ⭐ **[TeachYourselfComputerScience](https://teachyourselfcs.com/)** - Computer Science Book Recommendations
|
||||
* ⭐ **[Open Source Society University (OSSU)](https://github.com/ossu/computer-science)** / [PT-BR](https://github.com/ossu/computer-science-br) / [CN](https://github.com/ossu/computer-science-cn) - Computer Science Roadmap
|
||||
* ⭐ **[NandGame](https://nandgame.com/)** - Computer Building Puzzle
|
||||
* [CS1000](https://cs1000.surge.sh/) - Computer Science / Software Engineering
|
||||
* [Tech Dev Guide](https://techdevguide.withgoogle.com/) - Computer Science Google Courses
|
||||
* [Big-O Cheatsheet](https://www.bigocheatsheet.com/) - Computer Science Complexities Cheatsheet
|
||||
@ -826,7 +736,7 @@
|
||||
* [Computerphile](https://www.youtube.com/@Computerphile/) or [CSDojo](https://www.youtube.com/@CSDojo) - Computer Science YouTube Channels
|
||||
* [ApressOpen](https://www.apress.com/us/apress-open/apressopen-titles) - Computer Science Books
|
||||
* [Papers We Love](https://paperswelove.org/) - Computer Science Research Papers
|
||||
* [CS Academy](https://csacademy.com/) - Interactive Computer Science Lessons
|
||||
* [NandGame](https://nandgame.com/) - Computer Building Puzzle
|
||||
* [From Nand To Tetris](https://www.nand2tetris.org/course) - Computer Building Lesson
|
||||
* [Copetti](https://www.copetti.org/) - In-depth Console Architecture Analysis / [GitHub](https://github.com/flipacholas/Architecture-of-consoles)
|
||||
* [Web Browser Engineering](https://browser.engineering/) - Learn about Browser Engineering
|
||||
@ -838,7 +748,6 @@
|
||||
## ▷ Data Science
|
||||
|
||||
* 🌐 **[Awesome DataScience](https://github.com/academic/awesome-datascience)** - Data Science Resources
|
||||
* 🌐 **[Data Engineer Handbook](https://github.com/DataExpert-io/data-engineer-handbook)** - Data Engineer Resources
|
||||
* ⭐ **[Open Source Society University (OSSU](https://github.com/ossu/data-science)** - Data Science Roadmap
|
||||
* [Mage](https://www.mage.ai/) - Data Science Pipelines
|
||||
* [Data Science Resources](https://rentry.co/FMHYBase64#data-science-resources) - Data Science Learning Resources
|
||||
@ -874,7 +783,6 @@
|
||||
* [Algorithm Visualizer](https://algorithm-visualizer.org/) or [Sorting Algorithms Visuallizer](https://sadanandpai.github.io/algo-visualizers/#/sorting-visualizer/bubble) / [GitHub](https://github.com/sadanandpai/sorting-visualizer) - Visualize Code Algorithms
|
||||
* [The Algorithms](https://the-algorithms.com/) - Algorithms Index
|
||||
* [CSES Problemset](https://cses.fi/problemset/) - Collection of Algorithmic Programming Problems
|
||||
* [Memery Spy](https://memory-spy.wizardzines.com/) - Learn how Bytes Represent Variables
|
||||
|
||||
***
|
||||
|
||||
@ -899,48 +807,6 @@
|
||||
|
||||
***
|
||||
|
||||
## ▷ Cybersecurity
|
||||
|
||||
* 🌐 **[Free Cyber Resources](https://github.com/gerryguy311/Free_CyberSecurity_Professional_Development_Resources)**, [BlueTeam Tools](https://github.com/A-poc/BlueTeam-Tools) or [Applied Cybersecurity](https://www.nist.gov/itl/applied-cybersecurity/nice/resources/online-learning-content) - Cybersecurity Learning Resources
|
||||
* 🌐 **[CTF Sites](https://ctfsites.github.io/)**, [echoCTF.RED](https://echoctf.red/), [picoCTF](https://picoctf.org/), [CTF Beginners Guide](https://jaimelightfoot.com/blog/so-you-want-to-ctf-a-beginners-guide/) or [CTFLearn](https://ctflearn.com/) - CTF Challenges / Resources
|
||||
* ⭐ **[crackmes.one](https://crackmes.one/)** / [Discord](https://discord.com/invite/2pPV3yq), [Hackers101](https://www.hacker101.com/), [SmashTheStack](https://smashthestack.org/), [WebHacking](https://webhacking.kr/) or [DefendTheWeb](https://defendtheweb.net/) - Cybersecurity Challenges
|
||||
* ⭐ **[HackTricks](https://book.hacktricks.xyz/)** - Practical Penetration Testing & Security Auditing Tips
|
||||
* [Skills for All](https://skillsforall.com/) or [90DaysOfCyberSecurity](https://github.com/farhanashrafdev/90DaysOfCyberSecurity) - Cybersecurity Courses
|
||||
* [TryHackMe](https://tryhackme.com/), [Hack The Box](https://www.hackthebox.com/) or [OpenSecurityTraining2](https://opensecuritytraining.info/) - Cybersecurity Lessons
|
||||
* [Cyber Talent Kids](https://cybertalentskids.com/) or [Teach Yourself Info Sec](https://teachyourselfinfosec.com/) - Learn About Cybersecurity
|
||||
* [pwn.college](https://pwn.college/) - Cybersecurity Practice
|
||||
* [OverTheWire](https://overthewire.org/wargames/) - Cybersecurity Learning Game
|
||||
* [Hacksplaining](https://www.hacksplaining.com/) - Developer Security Lessons
|
||||
* [MicroCorruption](https://microcorruption.com/) - Learn Reverse Engineering / Cybersecurity
|
||||
* [OWASP Cheatsheet](https://cheatsheetseries.owasp.org/) - Application Security Guide
|
||||
* [John Hammond](https://www.youtube.com/@_JohnHammond) or [LowLevelLearning](https://www.youtube.com/@LowLevelLearning/) - Cybersecurity YouTube Tutorials
|
||||
* [Pentesting Bible](https://github.com/blaCCkHatHacEEkr/PENTESTING-BIBLE) or [Juice Shop](https://owasp.org/www-project-juice-shop/) - Learn Pentesting
|
||||
* [How DNS Works](https://howdns.works/) - Learn DNS
|
||||
* [How DNSSEC Works](https://howdnssec.works/) - Learn DNSSEC
|
||||
* [sha256_project](https://github.com/oconnor663/sha256_project) or [cryptohack](https://cryptohack.org/) - Cryptography Learning
|
||||
* [How HTTPS Works](https://howhttps.works/) - Learn HTTPS
|
||||
|
||||
***
|
||||
|
||||
## ▷ Game Development
|
||||
|
||||
* ⭐ **[Learn Gamedev](https://github.com/notpresident35/awesome-learn-gamedev)** - Resources
|
||||
* ⭐ **[MagicTools](https://github.com/ellisonleao/magictools)** - Resources
|
||||
* ⭐ **[develop.games](https://www.develop.games/)** - Game Dev Guides
|
||||
* ⭐ **[Brackeys](https://www.youtube.com/channel/UCYbK_tjZ2OrIZFBvU6CCMiA)** - Game Dev Tutorials
|
||||
* ⭐ **[r/gamedev](https://www.reddit.com/r/gamedev/)** - Reddit Community
|
||||
* [Newgrounds Wiki: Game Dev Resources](https://www.newgrounds.com/wiki/creator-resources/game-dev-resources) - Resources
|
||||
* [The VG Resource](https://www.vg-resource.com/) - Resources
|
||||
* [PICO-8](https://mboffin.itch.io/pico8-educational-toolset) - Basic Game Dev Concepts / [Web Version](https://www.pico-8-edu.com/)
|
||||
* [From Zero To Hero](https://therealpenaz91.itch.io/2dgd-f0th) - 2D Game Dev Book
|
||||
* [SebastianLague](https://www.youtube.com/c/SebastianLague/playlists?view=50&sort=dd&shelf_id=4) - Game Dev Tutorials
|
||||
* [Trig for Games](https://demoman.net/?a=trig-for-games) - Trigonometry Lessons for Games
|
||||
* [Game Math](https://gamemath.com/book/intro.html) - Mathematics Lessons for Game Devs
|
||||
* [Graphics Workshop](https://github.com/ekzhang/graphics-workshop) - Learn Computer Graphics
|
||||
* [QB64SourceCode](https://www.qb64tutorial.com/) - QB64 Game Programming Tutorials
|
||||
|
||||
***
|
||||
|
||||
# ► Programming Languages
|
||||
|
||||
* 🌐 **[Awesome Cheatsheets](https://lecoupa.github.io/awesome-cheatsheets/)**, **[QuickRef.me](https://quickref.me/)**, [HowDoI](https://github.com/gleitz/howdoi), [OverApi](https://overapi.com/) or [Cheat Sheets](http://www.cheat-sheets.org/) - Programming Cheat Sheets
|
||||
@ -970,7 +836,7 @@
|
||||
* 🌐 **[Awesome Python](https://awesome-python.com/)** - Python Resources
|
||||
* 🌐 **[Python Discord](https://pythondiscord.com/resources/)**, [Python Programming Hub](https://github.com/Tanu-N-Prabhu/Python) or [Python Reference](https://github.com/rasbt/python_reference) - Python Learning Resources
|
||||
* ⭐ **[Automate The Boring Stuff](https://automatetheboringstuff.com/)** - Python Automation Book
|
||||
* [30 Days Of Python](https://github.com/Asabeneh/30-Days-Of-Python) or [Hitchhiker’s Guide to Python](https://docs.python-guide.org/) - Python Guides
|
||||
* [30 Days Of Python](https://github.com/Asabeneh/30-Days-Of-Python) - Python Guide
|
||||
* [Python AI](https://community.uuki.live/course/tdb3Vsl1/python-course/aitutor) - AI Python Tutor
|
||||
* [CodingBat](https://codingbat.com/python) or [PyQuickie](https://chromewebstore.google.com/detail/pyquickie/okpdnfgpbpifbncoleieajiblmebbkci) - Python Practice
|
||||
* [Python4Everyone](https://py4e.com/), [A Byte of Python](https://python.swaroopch.com/), [Hypermodern Python](https://cjolowicz.github.io/posts/hypermodern-python-01-setup/), [DataCamp](https://www.datacamp.com/), [Learn Python](https://www.learnpython.org/), [Learn-Python](https://github.com/trekhleb/learn-python) or [Magical Universe](https://github.com/zotroneneis/magical_universe) - Learn Python
|
||||
@ -1002,7 +868,7 @@
|
||||
* [Learn C](https://www.learn-c.org/) - C Tutorial
|
||||
* [RoslynPad](https://roslynpad.net/) - C# Editor
|
||||
* [RoslynQuoter](https://roslynquoter.azurewebsites.net/) - C# Syntax Tree API Viewer
|
||||
* [C++ Core Guidelines](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines) - C++ Best Practices Guidelines / [GitHub](https://github.com/isocpp/CppCoreGuidelines)
|
||||
* [C++ Core Guidelines](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines) - C++ Best Practices Guidelines / [Github](https://github.com/isocpp/CppCoreGuidelines)
|
||||
* [Modern C++ Programming](https://github.com/federico-busato/Modern-CPP-Programming) - Modern C++ Course
|
||||
* [Learn C++](https://www.learncpp.com/) - Learn C++
|
||||
* [CppDeveloperRoadmap](https://salmer.github.io/CppDeveloperRoadmap/) - Learn C++
|
||||
@ -1035,7 +901,26 @@
|
||||
|
||||
# ► Web Development
|
||||
|
||||
* 🌐 **[MDN](https://developer.mozilla.org/)** or [Web Dev Resources](https://joshjoshuap-webdevresources.vercel.app/) - Web Dev Learning Resources
|
||||
* 🌐 **[Frontend Developers](https://github.com/andrew--r/channels)** or [Web Dev / Programming YouTube Channels](https://rentry.co/cozqr) - Web Dev YouTube Channel Indexes
|
||||
* ⭐ **[Odin Project](https://www.freecodecamp.org/learn/the-odin-project/)**, [2](https://www.theodinproject.com/) - Programming / Courses / Interactive / [Discord](https://discord.com/invite/fbFCkYabZB)
|
||||
* ⭐ **[FullStackOpen](https://fullstackopen.com/en/)** - Full Stack Course
|
||||
* ⭐ **[LandChad](https://landchad.net/)** or [learn.sadgrl.online](https://learn.sadgrl.online/) - Site Development Guides
|
||||
* ⭐ **[Learn to Code HTML & CSS](https://learn.shayhowe.com/)** - HTML/CSS Course
|
||||
* [HTMLDog](https://htmldog.com/) - HTML/CSS and JavaScript Tutorials
|
||||
* [Web Dev for Beginners](https://microsoft.github.io/Web-Dev-For-Beginners/) - Web Dev Course
|
||||
* [Aquent Gymnasium](https://thegymnasium.com/) - Web Dev Tutorials
|
||||
* [Dash](https://dash.generalassemb.ly/) - Web Dev Courses
|
||||
* [Web Skills](https://andreasbm.github.io/web-skills/), [web.dev](https://web.dev/learn) or [Encodedna](https://www.encodedna.com/) - Web Dev Guides
|
||||
* [Codevolution](https://www.youtube.com/@Codevolution) - Web Dev Video Lessons
|
||||
* [Local-First Web](https://localfirstweb.dev/) - Local-First Web Development Guide
|
||||
* [DOM Events](https://domevents.dev/) - Learn about DOM Events
|
||||
* [backendlore](https://github.com/fpereiro/backendlore) - Backend Coding Guide
|
||||
* [backend-challenges](https://github.com/CollabCodeTech/backend-challenges) - Backend Challenges for Practice
|
||||
* [Full Stack Solana Development Guide](https://dev.to/edge-and-node/the-complete-guide-to-full-stack-solana-development-with-react-anchor-rust-and-phantom-3291) - [Examples](https://github.com/dabit3/complete-guide-to-full-stack-solana-development)
|
||||
* [STPG](https://stpg-tk.netlify.app/guides/) - Startpage Creation Guides / [Discord](https://discord.com/invite/ExAGgVR)
|
||||
* [Web Design in 4 Minutes](https://jgthms.com/web-design-in-4-minutes/) or [Strml](https://www.strml.net/) - Interactive Web Design Tutorial
|
||||
* [WebGL and GLSL Workshop](https://mattdesl.github.io/workshop-webgl-glsl/) - Interactive WebGL / GLSL Tutorial
|
||||
* [Prepostseo](https://prepostseo.com/), [SEOMagnifier](https://seomagnifier.com/), [LearningSEO.io](https://learningseo.io/) or [SEO Cheat Sheet](https://seo-cheat-sheet.9elements.com/) - SEO Tools / Resources
|
||||
|
||||
***
|
||||
@ -1054,6 +939,7 @@
|
||||
* [AiToHTML](http://ai2html.org/) - Illustrator to HTML Converter
|
||||
* [gd2md-html](https://github.com/evbacher/gd2md-html) - Convert Google Doc to HTML
|
||||
* [HEAD](https://htmlhead.dev/) - HTML head Element Guide
|
||||
* [HTML DOM](https://phuoc.ng/collection/html-dom/) - Learn DOM Manipulation
|
||||
* [APlayer](http://aplayer.js.org) - HTML Audio Player
|
||||
* [DPlayer](https://dplayer.diygod.dev/) - HTML Video Player
|
||||
* [xgplayer](https://h5player.bytedance.com/en/) - HTML5 Video Player
|
||||
@ -1067,6 +953,13 @@
|
||||
* [BEM Cheat Sheet](https://bem-cheat-sheet.9elements.com/) - BEM Cheat Sheet
|
||||
* [CSS Cheat Sheet](https://docs.emmet.io/cheat-sheet/), [SmolCSS](https://smolcss.dev/) or [CSS Tricks](https://css-tricks.com/snippets/) - CSS Cheat Sheets
|
||||
* [Easings](https://easings.net/) - CSS Animation Cheat Sheet
|
||||
* [css-animation](https://css-animations.io/) - CSS Animation Tutorial
|
||||
* [100DayCSS](https://100dayscss.com/) , [CSS Challenges](https://css-challenges.com/) or [PlayCSS](https://playcss.app/) - CSS Challenges
|
||||
* [Codepip](https://codepip.com/games/), [Grid Garden](https://cssgridgarden.com/), [CSS Battle](https://cssbattle.dev/), [CSS Speedrun](https://css-speedrun.netlify.app/), [CodingFantasy](https://codingfantasy.com/) or [CSS Diner](https://flukeout.github.io/) - CSS Learning Games
|
||||
* [Guess CSS](https://www.guess-css.app/) - CSS Guessing Game
|
||||
* [Flexbox Froggy](https://flexboxfroggy.com/), [FlexboxDefense](http://www.flexboxdefense.com/) or [KnightsoftheFlexboxTable](https://knightsoftheflexboxtable.com/) - CSS Flexbox Learning Games
|
||||
* [DefensiveCSS](https://defensivecss.dev/) - CSS Tips
|
||||
* [LearnCSSGrid](https://learncssgrid.com/) or [GridByExample](https://gridbyexample.com/) - CSS Grid Guides
|
||||
* [CSSLayout](https://phuoc.ng/collection/css-layout/), [CSS Layout Generator](https://layout.bradwoods.io/), [BoxBox](https://seansleblanc.itch.io/boxboxhtml) or [CSSGridGenerator](https://cssgrid-generator.netlify.app/) - CSS Layout / Grid Generators
|
||||
* [You Don't Need JavaScript](https://github.com/you-dont-need/You-Dont-Need-JavaScript) - CSS Demos
|
||||
* [CSSPeeper](https://csspeeper.com/) - Smart CSS Viewer
|
||||
@ -1096,7 +989,7 @@
|
||||
* [Gradient Animator](https://www.gradient-animator.com/) - Animated CSS Gradient Generator
|
||||
* [147colors](https://147colors.com/) - CSS Color Pickers
|
||||
* [FilterBlend](https://ilyashubin.github.io/FilterBlend/) - CSS Blend Modes
|
||||
* [Animista](https://animista.net/), [Woah.css](https://www.joerezendes.com/projects/Woah.css/), [Magic CSS](https://minimamente.com/project/magic/) or [Animate.css](https://animate.style/) - CSS Animations
|
||||
* [Animista](https://animista.net/), [Woah.css](https://www.joerezendes.com/projects/Woah.css/) or [Animate.css](https://animate.style/) - CSS Animations
|
||||
* [transition.css](https://www.transition.style/) - CSS Transitions
|
||||
|
||||
***
|
||||
@ -1106,6 +999,14 @@
|
||||
* 🌐 **[Awesome JavaScript](https://github.com/sorrycc/awesome-javascript)** - JavaScript Resources
|
||||
* ↪️ **[TypeScript Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage/#wiki_typescript_tools)**
|
||||
* ↪️ **[Vue Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage/#wiki_vue_tools)**
|
||||
* ⭐ **[JavaScript.info](https://javascript.info/)**, [Patterns.dev](https://www.patterns.dev/) or [30 Days Of JavaScript](https://github.com/Asabeneh/30-Days-Of-JavaScript) - JavaScript Learning Sites
|
||||
* [Leaflet](https://leafletjs.com/) - JavaScript Library for Interactive Maps
|
||||
* [You Don't Know JS](https://github.com/getify/You-Dont-Know-JS) or [EloquentJavaScript](https://eloquentjavascript.net/) - JavaScript Learning Books
|
||||
* [JavaScript Questions](https://github.com/lydiahallie/javascript-questions) or [JavaScriptQuiz](https://javascriptquiz.com/) - JavaScript Questions for Practice
|
||||
* [33 JS Concepts](https://github.com/leonardomso/33-js-concepts) - Useful JavaScript Concepts
|
||||
* [You-Dont-Need-jQuery](https://github.com/camsong/You-Dont-Need-jQuery) - JavaScript Query Style Events Guide
|
||||
* [Airbnb JavaScript Style Guide](https://github.com/airbnb/javascript) - JavaScript Style Guide
|
||||
* [Untrusted](https://alexnisnevich.github.io/untrusted/) - JavaScript Learning Game
|
||||
* [JavaScripting](https://www.javascripting.com/) - JavaScript Libraries
|
||||
* [Vanilla List](https://vanillalist.top/) - Vanilla JavaScript Repository
|
||||
* [RunKit](https://runkit.com/) - Browser JavaScript Sandbox
|
||||
@ -1125,7 +1026,7 @@
|
||||
|
||||
* ⭐ **[React](https://react.dev/)** - JS Library
|
||||
* [OpenChakra](https://openchakra.app/) or [Plate](https://platejs.org/) - React Code Editors
|
||||
* [React Suite](https://rsuitejs.com/) or [Radix UI](https://www.radix-ui.com/) - React Components
|
||||
* [React Suite](https://rsuitejs.com/) - React Components
|
||||
* [Bulletproof React](https://github.com/alan2207/bulletproof-react) - React App Architecture
|
||||
* [React Native Apps](https://github.com/ReactNativeNews/React-Native-Apps/) - React App Examples
|
||||
* [Aspect](https://sample-code.aspect.app/) - Copy React Code from Any Site
|
||||
@ -1151,6 +1052,7 @@
|
||||
## ▷ PHP
|
||||
|
||||
* 🌐 **[Awesome PHP](https://github.com/ziadoz/awesome-php)** - PHP Resources
|
||||
* ⭐ **[PHP: The Right Way](https://phptherightway.com/)**, [Learn PHP](https://odan.github.io/learn-php/) or [PHP Tutorial](https://www.phptutorial.net/) - Learn PHP
|
||||
* [XAMPP](https://www.apachefriends.org/) - PHP Development Environment
|
||||
* [PHP Beautifier](https://phpbeautifier.com/) - PHP Formatter
|
||||
* [Clean Code PHP](https://github.com/piotrplenik/clean-code-php) - Clean Code for PHP
|
||||
@ -1171,7 +1073,7 @@
|
||||
* ⭐ **[EmulatorJS](https://emulatorjs.org/)** - Embed Emulators on Websites
|
||||
* ⭐ **[GoAccess](https://goaccess.io/)** - Web Log Analyzer / [GitHub](https://github.com/allinurl/goaccess)
|
||||
* [Website Planet Tools](https://www.websiteplanet.com/webtools/), [Dan's Tools](https://www.danstools.com/), [Webdesign Assistant](https://webdesign-assistant.com/), [xWebTools](https://www.xwebtools.com/), [Tiny Helpers](https://tiny-helpers.dev/), [Browserling Tools](https://www.browserling.com/tools/), [WebCode](https://webcode.tools/), [Web Toolbox](https://web-toolbox.dev/en), [ToolCool](https://toolcool.org/) or [CSSAuthor](https://cssauthor.com/) - Site Development Tools
|
||||
* [Grav](https://getgrav.org/) - Flat-File CMS / [GitHub](https://github.com/getgrav/grav)
|
||||
* [Grav](https://getgrav.org/) - Flat-File CMS
|
||||
* [Flux](https://www.runonflux.io/) - Decentralized Cloud Infrastructure
|
||||
* [URLPages](http://jstrieb.github.io/urlpages) / [GitHub](https://github.com/jstrieb/urlpages) - Store Entire Pages in URLs
|
||||
* [Shoelace](https://shoelace.style/), [Fast](https://www.fast.design/) or [Elix](https://component.kitchen/elix) - Web Component libraries
|
||||
@ -1209,7 +1111,6 @@
|
||||
* [Brython](https://brython.info/) - Python 3 Web Scripting Language
|
||||
* [BuiltWith](https://builtwith.com/) - Find Out What Sites are Built With
|
||||
* [Bug](https://auz.github.io/Bug/) - Add Crawling Bugs to Website
|
||||
* [LibreCaptcha](https://github.com/librecaptcha/lc-core) or [mCaptcha](https://mcaptcha.org/) - Privacy-based Captcha Systems
|
||||
* [OneLinePlayer](https://onelineplayer.com/) - Vimeo / Dropbox Video Player
|
||||
* [SCM Music Player](https://www.scmplayer.net/), [WebAMP](https://webamp.org/), [cassette-yt](https://saint-images.github.io/player.html) or [webdeckplayer](https://webdeckplayer.neocities.org/) - Site Audio / Music Players
|
||||
* [Stream Defence](https://www.streamdefence.com/) - Website Video Backup System
|
||||
@ -1231,13 +1132,14 @@
|
||||
* [BawkBox](https://bawkbox.com/) - Website Widgets
|
||||
* [SDWebImage](https://github.com/SDWebImage/SDWebImage) - Asynchronous Image Downloader
|
||||
* [ApexCharts](https://apexcharts.com/) - Add Charts to Site
|
||||
* [LibreCaptcha](https://github.com/librecaptcha/lc-core) or [mCaptcha](https://mcaptcha.org/) - Captcha Systems
|
||||
* [Democaptcha](https://democaptcha.com/demo-form-eng/hcaptcha.html) or [ReCAPTCHA Demo](https://www.google.com/recaptcha/api2/demo) / [GitHub](https://patrickhlauke.github.io/recaptcha/) - Captcha Demo's
|
||||
* [The SSO Wall of Shame](https://sso.tax/) - Vendors without Built-in SSO
|
||||
* [Remarkbox](https://www.remarkbox.com/) or [HTML Comment Box](https://www.htmlcommentbox.com/) - Site Comment Systems
|
||||
* [CBox](https://www.cbox.ws/), [Typebot](https://typebot.io/) or [Tawk](https://www.tawk.to/) - Embedded Chat App
|
||||
* [Pay 2 Email](https://pay2.email/) - Simple Website Contact Form
|
||||
* [Seventy Seven](https://www.seventy-seven.dev/) - Customer Support Tool
|
||||
* [Chaindesk](https://www.chaindesk.ai/) - AI Chatbot for Customer Support
|
||||
* [Formshare](https://formshare.ai/) - AI Form / Feedback Builder
|
||||
* [Twitcker](https://twitcker.com/) - Add Twitter Feed Ticker to Site
|
||||
* [Curator](https://curator.io/) - Embed Social Media Feeds
|
||||
* [MinIO](https://min.io/) or [Filebase](https://filebase.com/) - Cloud Native Object Storage
|
||||
@ -1340,7 +1242,7 @@
|
||||
* [Lorem.space](https://lorem.space/), [Placeholdifier](https://github.com/pomber/placeholdifier), [PlaceHolder](https://placeholder.pics/), [PicSum](https://picsum.photos/) or [FakeIMG](https://fakeimg.pl/) - Site Placeholder Images
|
||||
* [MinimalAvatars](https://minimalavatars.com/) - Minimal Site Avatars
|
||||
* [Visiwig](https://www.visiwig.com/) - Copy / Paste Site Graphics
|
||||
* [WebDesigner](https://webdesigner.withgoogle.com/), [T3](https://github.com/tooll3/t3), [Theatre.js](https://www.theatrejs.com/) / [GitHub](https://github.com/theatre-js/theatre), [GSAP](https://gsap.com/), [Stylie](https://jeremyckahn.github.io/stylie/), [RenderForest](https://www.renderforest.com), [Mantra](https://jeremyckahn.github.io/mantra/) or [Lottielab](https://www.lottielab.com/) - Create Motion Graphics
|
||||
* [WebDesigner](https://webdesigner.withgoogle.com/), [T3](https://github.com/tooll3/t3), [Theatre.js](https://www.theatrejs.com/) / [GitHub](https://github.com/theatre-js/theatre), [GSAP](https://gsap.com/), [Stylie](https://jeremyckahn.github.io/stylie/), [RenderForest](https://www.renderforest.com), [Mantra](https://jeremyckahn.github.io/mantra/) - Create Interactive Motion Graphics
|
||||
* [useAnimations](https://useanimations.com/index.html) or [LordIcon](https://lordicon.com/) - Animated Icons
|
||||
* [Cursor Effects](https://tholman.com/cursor-effects/) - 90's Style Cursors
|
||||
* [NakerApp](https://app.naker.io/back/) - Interactive Background Maker
|
||||
@ -1354,7 +1256,8 @@
|
||||
* 🌐 **[Awesome Cloudflare](https://github.com/irazasyed/awesome-cloudflare)** - Cloudflare Resources
|
||||
* 🌐 **[VPS Comparison Chart](https://lowendstock.com/deals/)** or [Bitcoin VPS](https://bitcoin-vps.com/) - VPS Comparisons
|
||||
* ↪️ **[Free Webhosting Sites](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_free_webhosting_sites)**
|
||||
* ↪️ **[Domain Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/internet-tools#wiki_.25B7_domain_.2F_dns)**
|
||||
* ↪️ **[Domain Info Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_domain_info_tools)**
|
||||
* ↪️ **[Domain Availability](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_domain_availability)**
|
||||
* ⭐ **[Offshore.CAT](https://offshore.cat/)** - DMCA Ignoring Hosting List
|
||||
* ⭐ **[Check-Host](https://check-host.net/)**, [StatPing](https://github.com/statping/statping), [Uptime](https://betterstack.com/uptime), [Uptime Kuma](https://github.com/louislam/uptime-kuma), [Highlight](https://www.highlight.io/), [AreWeDown?](https://github.com/shukriadams/arewedown), [UptimeRobot](https://uptimerobot.com/) or [24x7](https://www.site24x7.com/tools.html) - Site Uptime Monitors
|
||||
* [GoodBadISPs](https://gitlab.torproject.org/legacy/trac/-/wikis/doc/GoodBadISPs) - Best ISPs for Tor Hosting
|
||||
@ -1368,9 +1271,9 @@
|
||||
* [HaveIBeenSquatted](https://haveibeensquatted.com) - Typosquatting Discovery Tool
|
||||
* [iana](https://www.iana.org/), [arin](https://www.arin.net/), [lacnic](https://www.lacnic.net/), [afrinic](https://www.afrinic.net/) or [apnic](https://www.apnic.net/) - Internet Registry Sites
|
||||
* [takingnames](https://takingnames.io/blog/instant-subdomains), [GetFreeDomain](https://www.getfreedomain.name/) or [EU.org](https://nic.eu.org/) / [2](https://nic.ua/en/domains/.pp.ua) - Free Subdomains
|
||||
* [TheDev](https://thedev.id/) - Free Developer Subdomains
|
||||
* [is-a.dev](https://www.is-a.dev/) or [JS.ORG](https://js.org/) - Developer Homepages
|
||||
* [JS.ORG](https://js.org/) - Free subdomain for JavaScript Developers
|
||||
* [Homepage](https://github.com/benphelps/homepage), [Flame](https://github.com/pawelmalak/flame), [Homer](https://github.com/bastienwirtz/homer) or [Dashy](https://dashy.to/) / [GitHub](https://github.com/lissy93/dashy) - Home Server Startpages
|
||||
* [TheDev](https://thedev.id/) - Free Developer Subdomains
|
||||
* [redirect.name](https://redirect.name/) - URL Forwarding
|
||||
* [PingDom](https://tools.pingdom.com) - Ping Website
|
||||
* [Kener](https://kener.ing/) - Self-Hosted Status Page
|
||||
@ -1462,9 +1365,38 @@
|
||||
|
||||
***
|
||||
|
||||
# ► Cybersecurity Tools
|
||||
# ► Cybersecurity
|
||||
|
||||
* 🌐 **[Free Cyber Resources](https://github.com/gerryguy311/Free_CyberSecurity_Professional_Development_Resources)**, [BlueTeam Tools](https://github.com/A-poc/BlueTeam-Tools) or [Applied Cybersecurity](https://www.nist.gov/itl/applied-cybersecurity/nice/resources/online-learning-content) - Cybersecurity Learning Resources
|
||||
* 🌐 **[CTF Sites](https://ctfsites.github.io/)**, [echoCTF.RED](https://echoctf.red/), [picoCTF](https://picoctf.org/), [CTF Beginners Guide](https://jaimelightfoot.com/blog/so-you-want-to-ctf-a-beginners-guide/) or [CTFLearn](https://ctflearn.com/) - CTF Challenges / Resources
|
||||
* ⭐ **[crackmes.one](https://crackmes.one/)** / [Discord](https://discord.com/invite/2pPV3yq), [Hackers101](https://www.hacker101.com/), [SmashTheStack](https://smashthestack.org/), [WebHacking](https://webhacking.kr/) or [DefendTheWeb](https://defendtheweb.net/) - Cybersecurity Challenges
|
||||
* [Skills for All](https://skillsforall.com/) or [90DaysOfCyberSecurity](https://github.com/farhanashrafdev/90DaysOfCyberSecurity) - Cybersecurity Courses
|
||||
* [TryHackMe](https://tryhackme.com/), [Hack The Box](https://www.hackthebox.com/) or [OpenSecurityTraining2](https://opensecuritytraining.info/) - Cybersecurity Lessons
|
||||
* [Cyber Talent Kids](https://cybertalentskids.com/) or [Teach Yourself Info Sec](https://teachyourselfinfosec.com/) - Learn About Cybersecurity
|
||||
* [pwn.college](https://pwn.college/) - Cybersecurity Practice
|
||||
* [OverTheWire](https://overthewire.org/wargames/) - Cybersecurity Learning Game
|
||||
* [Hacksplaining](https://www.hacksplaining.com/) - Developer Security Lessons
|
||||
* [MicroCorruption](https://microcorruption.com/) - Learn Reverse Engineering / Cybersecurity
|
||||
* [OWASP Cheatsheet](https://cheatsheetseries.owasp.org/) - Application Security Guide
|
||||
* [John Hammond](https://www.youtube.com/@_JohnHammond) or [LowLevelLearning](https://www.youtube.com/@LowLevelLearning/) - Cybersecurity YouTube Tutorials
|
||||
|
||||
***
|
||||
|
||||
## ▷ Pen Testing
|
||||
|
||||
* 🌐 **[Awesome Pen Testing](https://github.com/enaqx/awesome-pentest)** - Penetration Testing Resources
|
||||
* 🌐 **[Awesome Hacking](https://github.com/Hack-with-Github/Awesome-Hacking)** - Pentesting / Security Index
|
||||
* ⭐ **[HackTricks](https://book.hacktricks.xyz/)** - Practical Penetration Testing & Security Auditing Tips
|
||||
* [Pentesting Bible](https://github.com/blaCCkHatHacEEkr/PENTESTING-BIBLE) or [Juice Shop](https://owasp.org/www-project-juice-shop/) - Learn Pentesting
|
||||
* [Metasploit](https://www.metasploit.com/) / [Cheatsheet](https://www.comparitech.com/net-admin/metasploit-cheat-sheet/) - Pentesting Framework
|
||||
* [MobileApp-Pentest-Cheatsheet](https://github.com/tanprathan/MobileApp-Pentest-Cheatsheet) - App Pentesting Cheatsheet
|
||||
* [Pentest Contracts](https://github.com/cure53/Contracts) - Security Contract Templates
|
||||
* [Kali NetHunter](https://store.nethunter.com/en/) or [AndroGuard](https://github.com/androguard/androguard) - Penetration Testing / Forensics Apps
|
||||
|
||||
***
|
||||
|
||||
## ▷ Cybersecurity Tools
|
||||
|
||||
* ↪️ **[Learn Cybersecurity](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/dev-tools/#wiki_.25B7_cybersecurity)**
|
||||
* ⭐ **[pyWhat](https://github.com/bee-san/pyWhat)** - File Analyzer
|
||||
* [Open Source Security Software](https://open-source-security-software.net/) - Cybersecurity Software
|
||||
* [Shisho](https://shisho.dev/) - Infrastructure Code Security Patcher
|
||||
@ -1489,9 +1421,8 @@
|
||||
|
||||
## ▷ Cybersecurity Indexes
|
||||
|
||||
* 🌐 **[Awesome Cyber Security](https://github.com/fabionoth/awesome-cyber-security)** - Cybersecurity Resources
|
||||
* 🌐 **[Awesome CI/CD Security](https://github.com/myugan/awesome-cicd-security)** - CI/CD Security Resources
|
||||
* 🌐 **[Awesome GPT Agents](https://github.com/fr0gger/Awesome-GPT-Agents)** - Cybersecurity GPT Agent Index
|
||||
* ⭐ **[Awesome Cyber Security](https://github.com/fabionoth/awesome-cyber-security)** - Cybersecurity Resources
|
||||
* ⭐ **[Awesome CI/CD Security](https://github.com/myugan/awesome-cicd-security)** - CI/CD Security Resources
|
||||
* [Advisory Database](https://github.com/github/advisory-database), [ThreatFox](https://threatfox.abuse.ch/) or [Att&ck](https://attack.mitre.org/) - Cybersecurity Defense Databases
|
||||
* [ThreatMap](https://threatmap.checkpoint.com/) or [CyberMap](https://cybermap.kaspersky.com/) - Live Malware Distribution Maps
|
||||
* [VirusShare](https://virusshare.com/), [PulseDive](https://pulsedive.com/) or [Malpedia](https://malpedia.caad.fkie.fraunhofer.de/) - Malware Search
|
||||
@ -1505,29 +1436,17 @@
|
||||
|
||||
***
|
||||
|
||||
## ▷ Pen Testing
|
||||
|
||||
* 🌐 **[Awesome Pen Testing](https://github.com/enaqx/awesome-pentest)** - Penetration Testing Resources
|
||||
* 🌐 **[Awesome Hacking](https://github.com/Hack-with-Github/Awesome-Hacking)** - Pentesting / Security Index
|
||||
* [Metasploit](https://www.metasploit.com/) / [Cheatsheet](https://www.comparitech.com/net-admin/metasploit-cheat-sheet/) - Pentesting Framework
|
||||
* [MobileApp-Pentest-Cheatsheet](https://github.com/tanprathan/MobileApp-Pentest-Cheatsheet) - App Pentesting Cheatsheet
|
||||
* [Pentest Contracts](https://github.com/cure53/Contracts) - Security Contract Templates
|
||||
* [Kali NetHunter](https://store.nethunter.com/en/) or [AndroGuard](https://github.com/androguard/androguard) - Penetration Testing / Forensics Apps
|
||||
|
||||
***
|
||||
|
||||
## ▷ DNS / Web Security
|
||||
|
||||
* ↪️ **[Free DNS Servers](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_free_dns_servers)**
|
||||
* ⭐ **[mess with dns](https://messwithdns.net/)** - Experiment with DNS
|
||||
* [How DNS Works](https://howdns.works/) - Learn DNS
|
||||
* [How DNSSEC Works](https://howdnssec.works/) - Learn DNSSEC
|
||||
* [DNS over HTTPS](https://github.com/curl/curl/wiki/DNS-over-HTTPS) - Encrypted DNS Providers & Resources
|
||||
* [DNSPerf](https://www.dnsperf.com/dns-providers-list/) - DNS Provider Rankings
|
||||
* [GRC DNSBench](https://www.grc.com/dns/benchmark.htm) - DNS Benchmark
|
||||
* [DNS Propagation](https://dnspropagation.net/) - DNS Checker
|
||||
* [MXToolBox](https://mxtoolbox.com/) - MX Record Lookup Tool
|
||||
* [DNSDumpster](https://dnsdumpster.com/), [DNS Watch](https://dnswatch.info), [DNSHistory](https://dnshistory.org/) or [WhatsMyDNS](https://whatsmydns.net/) - DNS Lookup / Security
|
||||
* [Web Check](https://web-check.xyz/), [NSLookup](https://www.nslookup.io/) or [dog](https://github.com/ogham/dog) - DNS Information Tools
|
||||
* [DuckDNS](https://www.duckdns.org/), [FreeDNS](https://freedns.afraid.org/), [dynu](https://dynu.com/), [NoIP](https://www.noip.com/) or [Desec](https://desec.io/) - Dynamic DNS Service
|
||||
* [WebAuthn](https://webauthn.guide/) - Web Authentication API - [Demo](https://webauthn.io/)
|
||||
* [Hydra](https://github.com/ory/hydra) - OAuth 2.0 Server / OpenID Connect Provider
|
||||
* [SuperTokens](https://supertokens.com/) or [Lucia](https://lucia-auth.com/) - User Authentication
|
||||
@ -1543,11 +1462,12 @@
|
||||
## ▷ Encryption / Certificates
|
||||
|
||||
* ⭐ **[Awesome Cryptography](https://github.com/sobolevn/awesome-cryptography)** - Cryptography Resources
|
||||
* [sha256_project](https://github.com/oconnor663/sha256_project) or [cryptohack](https://cryptohack.org/) - Cryptography Learning
|
||||
* [How HTTPS Works](https://howhttps.works/) - Learn HTTPS
|
||||
* [mitmproxy](https://mitmproxy.org) - Interactive HTTPS Proxy / [GitHub](https://github.com/mitmproxy/mitmproxy)
|
||||
* [HTTPToolkit](https://httptoolkit.com/) - Intercept, Debug, and Mock HTTP(S)
|
||||
* [mitmproxy](https://mitmproxy.org/) / [GitHub](https://github.com/mitmproxy/mitmproxy) - Analyze and modify HTTPS traffic
|
||||
* [Mozilla SSL](https://ssl-config.mozilla.org/) - SSL Configuration Generator
|
||||
* [Tailscale](https://tailscale.com/) - Secure Network VPN
|
||||
* [Hitch](https://www.varnish-software.com/community/hitch) - SSL / TLS Proxy / [GitHub](https://github.com/varnish/hitch)
|
||||
* [Let's Encrypt](https://letsencrypt.org/) or [Certbot](https://certbot.eff.org/) - Free TLS Certificates
|
||||
* [SSL for Free](https://www.sslforfree.com/) or [ZeroSSL](https://zerossl.com/) - Free SSL Certificates
|
||||
|
@ -140,8 +140,9 @@
|
||||
* ⭐ **[Mobilism](https://forum.mobilism.org/)** - [Mobile App](https://forum.mobilism.org/app/)
|
||||
* ⭐ **[soft98](https://soft98.ir/)** - Use [translator](https://addons.mozilla.org/en-US/firefox/addon/traduzir-paginas-web/)
|
||||
* ⭐ **[Game Bounty Software](https://gamebounty.world/software/)** - Download / [Discord](https://dsc.gg/gamebounty)
|
||||
* ⭐ **[Nsane Forums](https://www.nsaneforums.com/)** - Signup Required
|
||||
* ⭐ **[nsane.down](https://www.nsaneforums.com/)** - Signup Required
|
||||
* ⭐ **[Software CSE](https://cse.google.com/cse?cx=ae17d0c72fa6cbcd4)** - Multi-Site Software Search
|
||||
* [Taiwebs](https://en.taiwebs.com/) - Password: taiwebs.com
|
||||
* [AIOWares](https://www.aiowares.com/)
|
||||
* [TheMicroTech](https://programs.themicrotech.net/)
|
||||
* [DownloadHa](https://www.downloadha.com/) - Use [translator](https://addons.mozilla.org/en-US/firefox/addon/traduzir-paginas-web/)
|
||||
@ -149,8 +150,10 @@
|
||||
* [Softlay](https://www.softlay.com/downloads/)
|
||||
* [Mutaz](https://www.mutaz.pro/)
|
||||
* [Heidoc](https://www.heidoc.net/joomla/)
|
||||
* [AppDoze](https://appdoze.com/)
|
||||
* [AsanDL](http://asandl.com/) - Use [translator](https://addons.mozilla.org/en-US/firefox/addon/traduzir-paginas-web/)
|
||||
* [RetroSystemRevival](https://retrosystemsrevival.blogspot.com/)
|
||||
* [SamLab](https://samlab.ws/) - Use [translator](https://addons.mozilla.org/en-US/firefox/addon/traduzir-paginas-web/)
|
||||
* [ZOMBIE-WAREZ](https://pastebin.com/Mv32ibns)
|
||||
* [Libreware](https://t.me/Libreware), [PC Cracked Software](https://t.me/pc_cracked_softwares) - Telegram Channels
|
||||
* [Rarewares](https://www.rarewares.org/) - Rare Software
|
||||
@ -168,9 +171,11 @@
|
||||
* 🌐 **[Awesome Open Source](https://awesomeopensource.com/)**, [OpenAlternative](https://openalternative.co/), [Opensource Builders](https://opensource.builders/), [OSSSoftware](https://osssoftware.org/), [OSS Gallery](https://oss.gallery/), [Awesome OSS](https://github.com/RunaCapital/awesome-oss-alternatives), [Gadgeteer](https://gadgeteer.co.za/opensourcesoftware/) or [FossHub](https://www.fosshub.com/) - FOSS Indexes
|
||||
* 🌐 **[Awesome Free Software](https://github.com/johnjago/awesome-free-software)**, [Windows Ultimate Collection](https://xdaforums.com/t/windows-ultimate-collection-guides.4507867/), [Free Lunch](https://github.com/auctors/free-lunch), [MajorGeeks](https://www.majorgeeks.com/content/page/top_freeware_picks.html) or [TinyApps](https://tinyapps.org/) - Freeware Indexes
|
||||
* 🌐 **[Awesome Selfhosted](https://awesome-selfhosted.net/)**, [2](https://gitlab.com/awesome-selfhosted/awesome-selfhosted) or [Selfh.st](https://selfh.st/apps/) - Selfhosted Software Indexes
|
||||
* 🌐 **[Adobe Alternatives](https://github.com/KenneyNL/Adobe-Alternatives)** - Adobe Software Alternative Index
|
||||
* 🌐 **[Awesome Python Applications](https://github.com/mahmoud/awesome-python-applications)** - Python App Index
|
||||
* ↪️ **[Git Project Indexes](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_git_projects)**
|
||||
* ↪️ **[Software Package Managers](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/system-tools#wiki_.25B7_package_managers)**
|
||||
* ↪️ **[Alternative Software Sites](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_alternative_software_.2F_app_sites)**
|
||||
* ⭐ **[FluentStore](https://github.com/yoshiask/FluentStore)** - Microsoft Store Frontend
|
||||
* ⭐ **[store.rg](https://store.rg-adguard.net/)** - Paid Microsoft Store Link Generator / [Guide](https://rentry.co/paidAppsMsStore)
|
||||
* [SourceForge](https://sourceforge.net/)- FOSS Repositories
|
||||
@ -191,21 +196,6 @@
|
||||
|
||||
***
|
||||
|
||||
## ▷ Alt Software Sites
|
||||
|
||||
* ⭐ **[AlternativeTo](https://alternativeto.net/)** - Crowdsourced Recommendations
|
||||
* [Adobe Alternatives](https://github.com/KenneyNL/Adobe-Alternatives) - Adobe Software Alternative Index
|
||||
* [SaaSHub](https://www.saashub.com/)
|
||||
* [Alternative.me](https://alternative.me/)
|
||||
* [opensourcealternative.to](https://www.opensourcealternative.to/) - Open-source Alternatives
|
||||
* [TopAlter.com](https://topalter.com/)
|
||||
* [ListAlternative](https://www.listalternative.com/)
|
||||
* [Alternative Internet](https://github.com/redecentralize/alternative-internet)
|
||||
* [Appmus](https://appmus.com/)
|
||||
* [SimilarSiteSearch](https://www.similarsitesearch.com/), [Sitelike.org](https://www.sitelike.org/), [SitesLike](https://www.siteslike.com/) - Similar Site Lists
|
||||
|
||||
***
|
||||
|
||||
## ▷ [Linux Software](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/linux#wiki_.25B7_software_sites)
|
||||
|
||||
***
|
||||
|
@ -7,9 +7,9 @@
|
||||
# ► Documentaries
|
||||
|
||||
* ⭐ **[IHaveNoTV](https://ihavenotv.com)**
|
||||
* ⭐ **[DocumentaryArea](https://www.documentaryarea.com/)** / [Remove Watermark](https://github.com/skitts4code/Clear-Mark) (or use PIP)
|
||||
* ⭐ **[DocumentaryArea](https://www.documentaryarea.com/)** / Use PIP to remove watermark
|
||||
* ⭐ **[DocPlus](https://www.docplus.com/)**
|
||||
* ⭐ **[1337x Documentaries](https://1337x.to/top-100-documentaries)** / Torrent
|
||||
* ⭐ **[1337x Documentaries](https://1337x.to/top-100-documentaries)** / [Avoid Software / Games](https://pastebin.com/8AaMuz5u)
|
||||
* [LearnOutLoud](https://www.learnoutloud.com/)
|
||||
* [Top Documentary Films](https://topdocumentaryfilms.com/)
|
||||
* [Media Burn Archive](https://mediaburn.org/)
|
||||
@ -92,7 +92,6 @@
|
||||
* [FreeCourseSite](https://freecoursesite.com/), [2](https://freecoursesites.com/) - Courses
|
||||
* [technet24](https://technet24.ir/category/videos) - Courses
|
||||
* [AfraTafreeh](https://afratafreeh.com/) - Courses
|
||||
* [InfiCourses](https://www.inficourses.com/) - Courses
|
||||
* [Free-Courses-For-Everyone](https://github.com/MasterBrian99/Free-Courses-For-Everyone) - Courses
|
||||
* [WEBCHARMERS](https://t.me/WEBCHARMERS) - Courses / Telegram
|
||||
* [FreebieCourses](https://t.me/freebiecourses) - Courses / Telegram
|
||||
@ -120,12 +119,8 @@
|
||||
|
||||
# ► Learning Sites
|
||||
|
||||
* 🌐 **[The Free Learning List](https://freelearninglist.org/)** - Learning Resources
|
||||
* 🌐 **[Learn Anything](https://learn-anything.xyz/)** - Learning Resource Search / [Free Method](https://rentry.co/FMHYBase64#learn-anything)
|
||||
* 🌐 **[Wakelet](https://wakelet.com/explore)** - Learning Resources
|
||||
* 🌐 **[WISC](https://www.wisc-online.com/)** - Learning Resources
|
||||
* 🌐 **[The Free Learning List](https://freelearninglist.org/)**, [Learning Lab](https://learn.uno/), [Quester](https://quester.io/), [AFAIK](https://afaik.io/) / [Discord](https://discord.gg/mMNwRvWM8s), [TutorAI](https://www.tutorai.me/), [Learn Anything](https://learn-anything.xyz/) / [Free Method](https://rentry.co/FMHYBase64#learn-anything) or [WISC](https://www.wisc-online.com/) - Learning Resources
|
||||
* 🌐 **[Awesome Educational Games](https://github.com/yrgo/awesome-educational-games)** - Educational Games Index
|
||||
* 🌐 **[IQ Tests](https://redd.it/146fmpr)** - IQ Test Sites / Accuracy Ratings
|
||||
* ↪️ **[Ebook Sites](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/reading#wiki_.25BA_educational_books)**
|
||||
* ↪️ **[Typing Tests / Games](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/text-tools#wiki_.25B7_typing_lessons)**
|
||||
* ↪️ **[Survival / Prepping](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_survival)**
|
||||
@ -134,11 +129,9 @@
|
||||
* ⭐ **[/r/educationalgifs](https://reddit.com/r/educationalgifs)** - Learn With GIFs
|
||||
* ⭐ **[/r/explainlikeimfive](https://www.reddit.com/r/explainlikeimfive/)** - Have Anything Explained Very Simply
|
||||
* ⭐ **[The Punctuation Guide](https://www.thepunctuationguide.com/)** - Punctuation Guide
|
||||
* [AFAIK](https://afaik.io/) - Learning Map / [Discord](https://discord.gg/mMNwRvWM8s)
|
||||
* [Open Educational Resources](https://cdn-infographic.pressidium.com/wp-content/uploads/How-to-Search-for-Open-Educational-Resources-Infographic.jpg) - How to search for Open Educational Resources
|
||||
* [AnimaGraffs](https://animagraffs.com/) - Animated Infographs
|
||||
* [Eylenburg](https://eylenburg.github.io/) - Infographs, Maps & Papers
|
||||
* [Memory Toys](https://memory.toys/), [Dual N-Back](https://dualn-back.com/) or [BrainScale](https://brainscale.net/) - Memory Tests / Training
|
||||
* [Matthen](https://blog.matthen.com/) - Math & Science Animations
|
||||
* [Information Is Beautiful](https://informationisbeautiful.net/) - Data / Information / Infographics / Visualizations
|
||||
* [Lucid](https://apps.apple.com/us/app/imprint-learn-visually/id1482780647) - Visual Learning Guides / iOS
|
||||
@ -149,22 +142,13 @@
|
||||
* [CuriousCat](https://curiouscat.live/) or [RetroSpring](https://retrospring.net/) - Q&A Communities
|
||||
* [LitCharts](https://www.litcharts.com/) - Literature Guides
|
||||
* [Bridge Command](https://www.bridgecommand.co.uk/) - Bridge Command Ship Simulator
|
||||
* [Appropedia](https://www.appropedia.org/) - Sustainability Wiki
|
||||
* [British & Exotic Mineralogy](https://www.c82.net/mineralogy/) - Mineralogy Database
|
||||
* [AirVectors](https://www.airvectors.net/) - Aircraft Wiki
|
||||
* [Rookie Road]( https://www.rookieroad.com/) - Sport Guides
|
||||
* [Animated Knots](https://www.animatedknots.com/) or [NetKnots](https://www.netknots.com/) - Learn to Tie Knots
|
||||
* [Ian's Shoelace Site](https://www.fieggen.com/shoelace/) - Learn to Tie Shoelaces
|
||||
* [Perry Morse](https://www.perry.qa/morse), [Morse Typing Trainer](https://morse.withgoogle.com/learn/) or [ICWO](https://lcwo.net/) - Learn / Practice Morse Code
|
||||
* [Lock Picking 101](https://www.lockpicking101.com/) - Lock Picking Forum
|
||||
* [diyhpluswiki](https://diyhpl.us/wiki/) - DIY Biohacking
|
||||
* [BeatBlackjack](https://www.beatblackjack.org/) - Learn Blackjack Card Counting
|
||||
* [ActivistHandbook](https://activisthandbook.org/) - Campaigning / Activism Guides
|
||||
* [Erowid](https://www.erowid.org/) - Psychoactive Information
|
||||
* [PsychonautWiki](https://psychonautwiki.org/wiki/Main_Page) - Phychonauts Wiki
|
||||
* [Shroomery](https://www.shroomery.org/) - Magic Mushroom Forum
|
||||
* [HerbologyY](https://t.me/HerbologyY) - Herbology / Telegram
|
||||
* [HypnosisChatBooks](https://t.me/HypnosisChatBooks) - Hypnosis / Telegram
|
||||
* [P2PU](https://www.p2pu.org/) - Join Learning Groups Using Free Courses
|
||||
|
||||
***
|
||||
@ -178,6 +162,7 @@
|
||||
* [HistoryMaps](https://history-maps.com/) - Learn History Visually
|
||||
* [Smithsonian Institution Archives](https://siarchives.si.edu/) - Historical Photos / Documents
|
||||
* [Imperial War Museums](https://www.iwm.org.uk/) - Historic War Footage
|
||||
* [NaturalHistory](https://naturalhistory.si.edu/visit/virtual-tour) - Natural History Museum Virtual Tour
|
||||
* [Museo](https://museo.app/) - Museum Search
|
||||
* [Wonderous](https://play.google.com/store/apps/details?id=com.gskinner.flutter.wonders) - Learn About Ancient Structures
|
||||
* [Letters of Note](https://news.lettersofnote.com/) - Historical Letters
|
||||
@ -185,9 +170,6 @@
|
||||
* [EyewitnesstoHistory](http://www.eyewitnesstohistory.com/index.html) - Historical Eyewitness Testimonies
|
||||
* [ManuscriptMiniatures](https://manuscriptminiatures.com/) - Medieval Manuscript Images
|
||||
* [TimeGuessr](https://timeguessr.com/) - Historical GeoGuessr
|
||||
* [BlackPast](https://www.blackpast.org/) - African History Encyclopedia
|
||||
* [Mission US](https://www.mission-us.org/) - American History Learning Games
|
||||
* [Royal Constellations](https://royalconstellations.visualcinnamon.com/) - Royal Family Ancestral Visualization
|
||||
* [Sciphilos](https://sciphilos.info/) - Historical Discovery Timeline
|
||||
* [Royal Armouries Collections](https://royalarmouries.org/collection/) - Ancient Armaments Museum
|
||||
* [NuclearWeaponArchive](https://nuclearweaponarchive.org/) - Nuclear Weapons History
|
||||
@ -196,7 +178,6 @@
|
||||
* [Historical Recipes](https://l-lists.com/en/lists/55cbww.html) - Historical Recipes Site Index
|
||||
* [ChinesePosters](https://chineseposters.net/) - Chinese Propaganda Poster History
|
||||
* [Arachne](https://arachne.dainst.org/) - Ancient Sculpture Image Archive
|
||||
* [SmartHistory](https://smarthistory.org/) - Art / Cultural Object History
|
||||
* [CARI](https://cari.institute/) - Design Aesthetics History
|
||||
* [Historical Fashion](https://docs.google.com/document/d/1R8eulTsb9Zlc7h2H917dNJZS9s0rIq9OAu7LpSS9F2k/) - Historical Fashion History
|
||||
* [PessimistsArchive](https://pessimistsarchive.org/) - Historical Technological Pessimism Archive
|
||||
@ -314,7 +295,6 @@
|
||||
* [AntipodesMap](https://www.antipodesmap.com/) - Find Antipodes
|
||||
* [The True Size](https://thetruesize.com/) or [True Size of Countries](https://truesizeofcountries.com/) - Compare Country Size
|
||||
* [Location Data](https://locationdata.us/) or [NationsEncyclopedia](https://www.nationsencyclopedia.com/) - Location / Population Data
|
||||
* [City Data](https://www.city-data.com/) - US City Data
|
||||
* [Global Consciousness Project](https://gcpdot.com/) - Real-Time Global Consciousness Data
|
||||
* [If It Were My Home](https://www.ifitweremyhome.com/), [GlobalEdge](https://globaledge.msu.edu/) or [MyLifeElsewhere](https://www.mylifeelsewhere.com/) - Country Data Comparisons
|
||||
* [WorldPoverty](https://worldpoverty.io/) - World Poverty Data
|
||||
@ -350,7 +330,7 @@
|
||||
* [European License Plate Map](https://i.redd.it/wcazzhjir8941.png) - European License Plate Map
|
||||
* [Symbols](https://www.symbols.com/) - Symbol Database
|
||||
* [Flag Guesser](https://flagguesser.com/) - Flag Quizzes
|
||||
* [FlagLog](https://www.flaglog.com/), [Flags of the World](https://i.redd.it/lxtu47hf5ll51.jpg) or [Flaglookup](https://flaglookup.com/) - Flag Databases
|
||||
* [Flags of the World](https://i.redd.it/lxtu47hf5ll51.jpg) or [Flaglookup](https://flaglookup.com/) - Flag Databases
|
||||
* [Flag Stories](https://flagstories.co/) - Flag Design Breakdowns
|
||||
* [PrideFlags](https://www.prideflags.org/) - LGBT Flag Index
|
||||
* [Hate on Display](https://www.adl.org/hate-symbols) - Hate Symbol Database
|
||||
@ -405,7 +385,6 @@
|
||||
* [NaturalHistory](https://naturalhistory.si.edu/visit/virtual-tour) - Natural History Museum Virtual Tour
|
||||
* [Digital Giza](https://giza.mused.org/) - Great Pyramid Virtual Tours
|
||||
* [Persepolis Reimagined](https://persepolis.getty.edu/) - Explore Persepolis Recreation
|
||||
* [WW2 in 100 Objects](https://www.tweedewereldoorlog.nl/100voorwerpen/en/virtual-tour/) - WW2 Museum Virtual Tour
|
||||
* [Spitfire Panorama](https://www.haraldjoergens.com/panoramas/spitfire-td314/files/) - Spitfire Mark IX Cockpit Interactve Panorama
|
||||
* [Virtual Vist Tours](https://www.virtualvisittours.com/) - Ireland Virtual Tours
|
||||
* [Matterport](https://matterport.com/discover) - Explore Real Places Digitally
|
||||
@ -506,7 +485,6 @@
|
||||
* [Clear Dark Sky](https://cleardarksky.com/) - Star Gazing Weather Forecasts
|
||||
* [Dark Site Finder](https://darksitefinder.com/), [DarkSkyMap](https://darkskymap.com/) or [GoStarGazing](https://gostargazing.co.uk/) - Star Gazing Site Locators
|
||||
* [SpaceEngine](https://spaceengine.org/) - Universe Simulator / [Old Versions](https://forum.spaceengine.org/viewtopic.php?t=182)
|
||||
* [TheCMB](http://thecmb.org/) - 3D Cosmic Microwave Background Model
|
||||
|
||||
***
|
||||
|
||||
@ -646,7 +624,6 @@
|
||||
* [Backyard Chickens](https://www.backyardchickens.com/) - Chicken Raising Forum
|
||||
* [DinosaurPictures](https://dinosaurpictures.org/) - Dinosaur Info / Images
|
||||
* [Pteros](https://www.pteros.com/) - Pterosaur Database
|
||||
* [WFO](https://www.worldfloraonline.org/) - Plant Database
|
||||
|
||||
***
|
||||
|
||||
@ -706,6 +683,7 @@
|
||||
* 🌐 **[Language Links](https://docs.google.com/spreadsheets/d/1EGPFLFJdyKGKjh8LXXA099ddf1yB6ZQgr_mmtBnYCy8)** or [/r/LanguageLearning Resources](https://www.reddit.com/r/languagelearning/wiki/index) - Language Learning Resources
|
||||
* 🌐 **[Speechling](https://speechling.com/tools)** - Language Learning Tools
|
||||
* 🌐 **[LexiLogos](https://www.lexilogos.com/english/index.htm)** - Multi-Language Dictionary Index
|
||||
* ↪️ **[Language Learning Networks](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_language_learning_networks)**
|
||||
* ↪️ **[Languages & Linguistics](https://rentry.co/FMHYBase64#languages-linguistics)**
|
||||
* ↪️ **[Translation Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/text-tools#wiki_.25B7_translators)**
|
||||
* ⭐ **[Duolingo](https://rentry.co/FMHYBase64#duolingo)** / [Tips](https://duome.eu/tips), [Memrise](https://rentry.co/FMHYBase64#memrise), [LingoDeer](https://www.lingodeer.com/) or [Busuu](https://rentry.co/FMHYBase64#busuu) - Language Learning Lessons
|
||||
@ -725,28 +703,15 @@
|
||||
* [LanguageGuide](https://www.languageguide.org/) - Visual Language Learning
|
||||
* [clozemaster](https://www.clozemaster.com/) - Context-Based Language Learning
|
||||
* [Sounter](https://sounter.com/), [LingoClip](https://lingoclip.com/) or [LyricFluent](https://lyricfluent.com/) - Learn Languages via Music
|
||||
* [IPA Reader](http://ipa-reader.xyz/) - International Phonetic Alphabet Reader
|
||||
* [Language Roadmap](https://languageroadmap.com/) - Foreign Language Media Difficulty Guide
|
||||
* [Hey! Lingo](https://www.heylingo.com/) or [LearnWithOliver](https://www.learnwitholiver.com/) - Language Learning Flashcards
|
||||
* [MyLanguages](https://mylanguages.org/) or [50Languages](https://www.50languages.com/) - Grammar / Vocabulary Language Learning
|
||||
* [MyLanguages](https://mylanguages.org/) - Grammar / Vocabulary Language Learning
|
||||
* [Vocatra](https://esite.ch/vocatra/) - Vocabulary Trainer
|
||||
* [Verbix](https://www.verbix.com/) - Verb Conjugator
|
||||
* [ListLang](https://www.listlang.com/) - Most Used Words in Any Language
|
||||
* [Alphabetpedia](https://www.alphabetpedia.com/) - Multiple Language Alphabets
|
||||
* [wehewehe](https://wehewehe.org/) - Hawaiian Dictionary
|
||||
|
||||
***
|
||||
|
||||
## ▷ Language Exchange
|
||||
|
||||
* 🌐 **[The Language Exchange Network](https://redd.it/5m5426)**, [2](https://docs.google.com/document/d/14is9MfGfKC-ptDhXGWLQFYSAaWTJSnUxj6zK0RGqNIk/) - Language Exchange Communities / [Discord](https://discord.gg/jxcVmHJ)
|
||||
* [InterPals](https://www.interpals.net/)
|
||||
* [Tandem](https://www.tandem.net/)
|
||||
* [Conversation Exchange](https://www.conversationexchange.com/)
|
||||
* [RhinoSpike](https://rhinospike.com/)
|
||||
* [Conversly](https://www.conversly.ai/)
|
||||
* [Lang-8](https://lang-8.com/)
|
||||
* [LangX](https://Langx.io/)
|
||||
* [Polyglot](https://polyglotclub.com/)
|
||||
* [Polyglot](https://polyglotclub.com/) - Offline Language Exchange
|
||||
|
||||
***
|
||||
|
||||
@ -886,7 +851,6 @@
|
||||
* [LingYourLanguage](https://lingyourlanguage.com/) or [Language Squad](https://www.languagesquad.com/) - Language Identification Test
|
||||
* [LocalLingual](https://localingual.com/) or [DialectArchive](https://www.dialectsarchive.com/globalmap) - Listen to Accents
|
||||
* [Interactive IPA Chart](https://www.ipachart.com/) - Learn Phonetic Alphabet Symbols
|
||||
* [IPA Reader](http://ipa-reader.xyz/) - International Phonetic Alphabet Reader
|
||||
* [Asian Script Differentiation Guide](https://i.ibb.co/f1YwHBM/50cb83cedf34.png)
|
||||
* [Omniglot](https://omniglot.com/) - Writing System & Language Encyclopedia
|
||||
* [Plover](https://www.openstenoproject.org/plover/) - Stenography Engine / [GitHub](https://github.com/openstenoproject/plover) / [Discord](https://discord.gg/NAzMz7C3wq)
|
||||
@ -897,6 +861,7 @@
|
||||
|
||||
* 🌐 **[nanoHUB](https://nanohub.org/)** - Nanotechnology Tools
|
||||
* 🌐 **[5th STAAR Resource Curation](https://docs.google.com/document/d/1vxxEKhZe_7dd1XIxl_sETsqP__Rf-yPAnBhtwf8huKU/edit?usp=drivesdk)** - Grade School Tools
|
||||
* 🌐 **[IQ Tests](https://redd.it/146fmpr)** - IQ Test Sites / Accuracy Ratings
|
||||
* ↪️ **[Presentation Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_presentation_tools)**
|
||||
* ↪️ **[Data Visualization](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_data_visualization_tools)**
|
||||
* ↪️ **[Grammar / Spell Check](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/text-tools#wiki_.25B7_grammar_check)**
|
||||
@ -924,7 +889,7 @@
|
||||
* ↪️ **[Documents / Articles](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/reading#wiki_.25B7_documents_.2F_articles)**
|
||||
* ⭐ **[StudyLion](https://lionbot.org)** - Study Tracker / Productivity Discord Bot / [GitHub](https://github.com/StudyLions/StudyLion)
|
||||
* ⭐ **[StudyKit](https://studykit.app/)**, [Knowt](https://knowt.com/), [Quizlet](https://quizlet.com/), [Shmoop](https://www.shmoop.com/) or [SparkNotes](https://www.sparknotes.com/) - Quizzes / Study Material / [Show Hidden](https://greasyfork.org/en/scripts/423872)
|
||||
* ⭐ **[Anki](https://apps.ankiweb.net/)** / [Add-ons](https://ankiweb.net/shared/addons) / [Decks](https://ankiweb.net/shared/decks) / [Awesome Anki](https://github.com/tianshanghong/awesome-anki), [StudyLib](https://www.studylib.net/), [RemNote](https://www.remnote.com/), [Flippity](https://www.flippity.net/), [Flashcard Machine](https://www.flashcardmachine.com/), [Flashka](https://www.flashka.ai/) or [NoteKnight](https://www.noteknight.com) - Flashcard Tools
|
||||
* ⭐ **[Anki](https://apps.ankiweb.net/)** / [Add-ons](https://ankiweb.net/shared/addons) / [Decks](https://ankiweb.net/shared/decks) / [Awesome Anki](https://github.com/tianshanghong/awesome-anki), [StudyLib](https://www.studylib.net/), [RemNote](https://www.remnote.com/), [Flippity](https://www.flippity.net/), [Flashcard Machine](https://www.flashcardmachine.com/) or [Flashka](https://www.flashka.ai/) - Flashcard Tools
|
||||
* ⭐ **[Coursicle](https://www.coursicle.com/)** - Class Schedule Tracker / Android
|
||||
* ⭐ **[OpenSyllabus](https://opensyllabus.org/)** - Syllabus Search / Info
|
||||
* ⭐ **[Refseek](https://www.refseek.com/)**, [Explorer](https://explorer.globe.engineer/), [Occamm](https://www.occamm.com/) or [Merlot](https://www.merlot.org/merlot/index.htm) - Academic Search Engines
|
||||
@ -936,6 +901,7 @@
|
||||
* [cb2bib](https://www.molspaces.com/cb2bib/) - Reference Extractors / Managers
|
||||
* [ExpertFile](https://expertfile.com/) or [ExpertiseFinder](https://expertisefinder.com/) - Industry / Academic Expert Search
|
||||
* [Catma](https://catma.de/) - Research Markup & Analysis Tool
|
||||
* [BookStack](https://www.bookstackapp.com/) - Self-Hosted Information Manager
|
||||
* [OpenRefine](https://openrefine.org/) - Data Cleaning
|
||||
* [Taguette](https://app.taguette.org/) - Data Analysis Document Tagging
|
||||
* [Lurnby](https://www.lurnby.com) / [GitHub](https://github.com/Roznoshchik/Lurnby) or [StringMark](https://www.stringmark.com/) - Research Highlighting Tools
|
||||
@ -948,7 +914,6 @@
|
||||
* [LearnedEasy](https://learnedeasy.com/) - Create Summaries / Quizzes from Books
|
||||
* [SearchifyX](https://github.com/daijro/SearchifyX) - Search Flashcards
|
||||
* [ForgetMeNot](https://github.com/tema6120/ForgetMeNot) - Flashcard Mobile App
|
||||
* [BookFlashCard](https://www.bookflashcard.com/) - Turn Books into Flashcards
|
||||
* [Homeworkify](https://homeworkify.st/), [TheQuizing](https://www.thequizing.com/), [Get Unstuck](https://socratic.org/) or [Brainly](https://brainly.com/) / [Limit Bypass](https://greasyfork.org/en/scripts/430355) - Homework Help Bots / Communities
|
||||
* [Toppr](https://www.toppr.com/), [FreeOnlineTest](https://www.freeonlinetest.in/) or [AE Old (Discord)](https://discord.gg/VCXGudY) - Test Practice & Homework Help
|
||||
* [DoubtNut](https://www.doubtnut.com/) - Exam Solutions / Help
|
||||
|
@ -36,14 +36,13 @@
|
||||
|
||||
## ▷ Download Managers
|
||||
|
||||
* ⭐ **[JDownloader](https://jdownloader.org/jdownloader2)** - Download Manager / [Debloat](https://rentry.org/jdownloader2) / [Dark Theme](https://redd.it/q3xrgj) / [Dracula Theme](https://draculatheme.com/jdownloader2)
|
||||
* ⭐ **[Go Speed](https://gopeed.com/)** - Download Manager / [GitHub](https://github.com/GopeedLab/gopeed) / [Extension](https://github.com/GopeedLab/browser-extension) / [Plugins](https://github.com/search?q=topic%3Agopeed-extension&type=repositories)
|
||||
* ⭐ **[IDM](https://rentry.co/FMHYBase64#idm)** - Download Manager
|
||||
* ⭐ **[JDownloader](https://jdownloader.org/jdownloader2)** - Download Manager / [Debloat](https://rentry.org/jdownloader2) / [Captcha Solver](https://github.com/cracker0dks/CaptchaSolver) / [Dark Theme](https://redd.it/q3xrgj) / [Dracula Theme](https://draculatheme.com/jdownloader2)
|
||||
* ⭐ **[Gopeed](https://gopeed.com/)** - Download Manager / [GitHub](https://github.com/GopeedLab/gopeed) / [Extension](https://github.com/GopeedLab/browser-extension) / [Plugins](https://github.com/search?q=topic%3Agopeed-extension&type=repositories)
|
||||
* [XDM](https://xtremedownloadmanager.com/) - Download Manager / [GitHub](https://github.com/subhra74/xdm)
|
||||
* [Motrix](https://www.motrix.app/) or [imFile](https://github.com/imfile-io/imfile-desktop) - Download Manager / [GitHub](https://github.com/agalwood/Motrix)
|
||||
* [aria2](https://aria2.github.io/) or [Persepolis](https://persepolisdm.github.io/) - Terminal Download Manager / [GitHub](https://github.com/aria2/aria2) / [Download Bot](https://github.com/gaowanliang/DownloadBot) / [WebUI](https://github.com/ziahamza/webui-aria2), [2](https://ariang.mayswind.net/)
|
||||
* [aria2](https://aria2.github.io/) - Terminal Download Manager / [GitHub](https://github.com/aria2/aria2) / [Download Bot](https://github.com/gaowanliang/DownloadBot) / [GUI](https://github.com/persepolisdm/persepolis) / [Frontend](https://ariang.mayswind.net/) / [WebUI](https://github.com/ziahamza/webui-aria2) / [GUI](https://persepolisdm.github.io/)
|
||||
* [FDM](https://www.freedownloadmanager.org/) - Download Manager / [YTDL Addon](https://github.com/meowcateatrat/elephant) / [Note](https://pastebin.com/Vgwf3avH)
|
||||
* [ArrowDL](https://github.com/setvisible/ArrowDL/) - Download Manager
|
||||
* [pyLoad](https://pyload.net/) - Lightweight Download Manager
|
||||
* [File Centipede](https://filecxx.com/) - Upload / Download Manager
|
||||
* [DownThemAll](https://www.downthemall.org/) or [Turbo Download Manager](https://add0n.com/turbo-download-manager-v2.html) / [GitHub](https://github.com/inbasic/turbo-download-manager-v2/) - Download Management Extensions
|
||||
@ -75,7 +74,7 @@
|
||||
|
||||
## ▷ File Converters
|
||||
|
||||
* 🌐 **[.to Sites](https://rentry.co/tosites)** - File Converters Index
|
||||
* 🌐 **[.to Sites](https://rentry.co/nsq29)** - File Converters Index
|
||||
* ⭐ **[File Converter](https://file-converter.io/)** / [GitHub](https://github.com/Tichau/FileConverter) - Convert / Compress Files
|
||||
* ⭐ **[CloudConvert](https://cloudconvert.com/)** - Convert Files / 1 GB Limit
|
||||
* [Pandoc](https://pandoc.org/) - Document Converter
|
||||
@ -241,15 +240,19 @@
|
||||
* [View-only PDF](https://rentry.co/cm4b7) - Download View-Only PDF on GDrive
|
||||
* [online2pdf](https://online2pdf.com/) or [2PDFConverter](https://www.2pdfconverter.com/) - Convert Files to PDF
|
||||
* [PDFConverter](https://www.pdfconverter.com/) or [PDFconvert](https://docupub.com/pdfconvert/) - PDF File Converters
|
||||
* [Adobe Compress PDF](https://www.adobe.com/acrobat/online/compress-pdf.html) - PDF Compressor
|
||||
* [PDF Mergy](https://pdfmerge.w69b.com/) or [PDFSnake](https://pdfsnake.app/) - Merge PDF Files
|
||||
* [Adobe Word Converter](https://www.adobe.com/acrobat/online/word-to-pdf.html) - Word to PDF Converter
|
||||
* [PDFLayoutTextStripper](https://github.com/JonathanLink/PDFLayoutTextStripper) - PDF to Text Converter
|
||||
* [VancedPDF](https://vancepdf.com/) or [PDFtoWordConverter](https://xodo.com/pdf-to-word-converter) - PDF to Word Converter
|
||||
* [Marker](https://github.com/VikParuchuri/marker) - PDF to Markdown
|
||||
* [Adobe Excel to PDF](https://www.adobe.com/acrobat/online/excel-to-pdf.html) - Convert Excel Files to PDF
|
||||
* [Images to PDF](https://github.com/Swati4star/Images-to-PDF) or [Adobe Converter](https://www.adobe.com/acrobat/online/jpg-to-pdf.html) - Image to PDF Converter
|
||||
* [PDFCrowd](https://pdfcrowd.com/), [HTMLaPDF](https://www.htmlapdf.com/), [TailWindPDF](https://tailwindpdf.com/) or [wkhtmltopdf](https://wkhtmltopdf.org/) - HTML to PDF / Image Converter
|
||||
* [Issuu](https://issuu.com/) - Convert PDF Files to Webpages, Flipbooks, Brochures & More / [Downloader](https://docdownloader.com/), [2](https://vebuka.com/)
|
||||
* [WebToPDF](https://webtopdf.com/) or [Percollate](https://github.com/danburzo/percollate) - Webpage to PDF Converters
|
||||
* [GraphPaper](https://incompetech.com/graphpaper/) - PDF Graphs
|
||||
* [PPT To PDF](https://www.adobe.com/acrobat/online/ppt-to-pdf.html) - Convert PowerPoint to PDF Adobe
|
||||
* [Aspose](https://products.aspose.app/pdf/annotation) or [pdf-unstamper](https://github.com/hwding/pdf-unstamper) - PDF Watermark Remover
|
||||
* [Scan Your PDF](https://www.scanyourpdf.com/) - Make PDFs look Scanned
|
||||
* [PDF Fixer](https://pdffixer.com/) - Repair Damaged PDFs
|
||||
@ -258,7 +261,6 @@
|
||||
* [Google Drive PDF Downloader](https://github.com/zeltox/Google-Drive-PDF-Downloader) - Download Protected GDrive PDFs
|
||||
* [PDFCoffee](https://pdfcoffee.com/) - Upload PDF, Word or PowerPoint Files
|
||||
* [Adobe Sign](https://www.adobe.com/acrobat/online/sign-pdf.html) - Fill & sign a PDF
|
||||
* [PrintFriendly](https://www.printfriendly.com/) - Printer Formatting Tools
|
||||
|
||||
***
|
||||
|
||||
@ -274,15 +276,16 @@
|
||||
* ⭐ **[1fichier.com](https://1fichier.com/)** - 300GB / 15 Days (30 Days With Account)
|
||||
* ⭐ **[file.haus](https://filehaus.top/)** - 200GB / Forever / [.pk](https://filehaus.pk/) / [.su](https://filehaus.su/) / [.onion](http://fileha3hjvudqs2moembtaegnpjo5ptec3tomf5dlxx6ydwtajkkahyd.onion/) / [.i2p](http://xr256v4weabr3rdz3nqzb27bv3gkwjisuf2d57urqtmh3gx3w7da.b32.i2p/) / [.loki](http://nipqehne9zrtpryw6ig5y9gu7c8gwt8ymrrncufxg1g8wf5t4rqo.loki/) / [Discord](https://discord.gg/5Ac25XZfv6) / [Telegram](https://t.me/tsutajanet)
|
||||
* ⭐ **[Send.cm](https://send.cm/)** - 100GB / 15 Days
|
||||
* ⭐ **[Cipher Files](https://cipherfiles.com/)** - 5GB / Forever / [Discord](https://discord.gg/DmRhftYcvN)
|
||||
* ⭐ **[Pillowcase](https://pillowcase.su/)** - Audio File Host / 200MB (500MB With Account) / Forever
|
||||
* ⭐ **[Catbox](https://catbox.moe/)** - 200MB / Forever
|
||||
* ⭐ **[Qiwi](https://qiwi.gg)** - Account Required / [Note](https://pastebin.com/QJDbgtRJ)
|
||||
* ⭐ **[HIDAN](https://hidan.sh/)** - Unlimited / 10+ Days (from upload)
|
||||
* ⭐ **[Pixeldrain](https://pixeldrain.com/)** - 20GB / 120 Days / [Discord](https://discord.gg/TWKGvYAFvX)
|
||||
* ⭐ **Pixeldrain Tools** - [Speedtest](https://pixeldrain.com/speedtest) / [Limit Bypass](https://pixeldrain-bypass.cybar.xyz) / [Limit Bypass Userscript](https://greasyfork.org/en/scripts/491326-pixeldrain-download-bypass)
|
||||
* [MultiUp.io](https://multiup.io/) / [Extract / Upload](https://github.com/Reddiepoint/MultiUp-Direct), [MirrorAce](https://mirrorace.com/), or [Mirrored.to](https://www.mirrored.to/) - Multi Host Uploaders
|
||||
* [Z-o-o-m](https://z-o-o-m.eu/) - Multi-Host Upload Desktop App
|
||||
* [MixDrop](https://mixdrop.ag/) - Unlimited / 60 Days / Account Required
|
||||
* [Qiwi](https://qiwi.gg) - Account Required
|
||||
* [Filebin](https://filebin.net/) - Unlimited / 6 Days / [Warning](https://pastebin.com/W0j4VDAN)
|
||||
* [file.kiwi](https://file.kiwi/) - Unlimited / [File Expiry Explanation](https://file.kiwi/en/price)
|
||||
* [FEX.NET](https://fex.net/) - 100GB / 7 Days
|
||||
@ -396,22 +399,22 @@
|
||||
* ⭐ **[Cyberduck](https://cyberduck.io/)** - Libre Server / Cloud Storage Browser
|
||||
* [Cloud Storage Archiving Guide](https://pastebin.com/kLhLHsXg) - How To Safely Archive Files on Cloud Storage Sites
|
||||
* [terabox](https://terabox.com/) - 1TB Free / $3.50 for 2TB / [Downloader](https://indexsubtitle.cc/terabox-direct-link-generator)
|
||||
* [dropbox](https://www.dropbox.com/) - 1 or 2 GB Free / ~$5 for 1TB / [Client](https://github.com/SamSchott/maestral)
|
||||
* [CyberFile](https://cyberfile.me/) - 1TB Free
|
||||
* [dropbox](https://www.dropbox.com/) - 5GB Free / ~$5 for 1TB / [Client](https://github.com/SamSchott/maestral)
|
||||
* [mediafire](https://www.mediafire.com/) - 10GB Free / $5.83 for 1TB
|
||||
* [icedrive](https://icedrive.net/) - 10GB Free / $5 for 1TB
|
||||
* [PCloud](https://www.pcloud.com/) - 10GB Free / ~$4.16 for 1TB
|
||||
* [JumpShare](https://jumpshare.com/) - 2GB Free / $8.25 for 1TB
|
||||
* [CyberFile](https://cyberfile.me/) - 10GB Free
|
||||
* [MrOwl](https://www.mrowl.com/) - 10GB Free / ~$16.67 for 1TB
|
||||
* [storj](https://www.storj.io/) - 25GB Free / ~$4 for 1TB
|
||||
* [Blomp](https://www.blomp.com/) - 20GB Free / ~$3 for 2TB
|
||||
* [internxt](https://internxt.com/) - 10GB Free / ~4.85 for 1TB
|
||||
* [1Cloud File](https://1cloudfile.com/) - 10GB Free
|
||||
* [xpipe](https://xpipe.io) - Remote File Manager
|
||||
* [bookmarkfs](https://github.com/CoolElectronics/bookmarkfs) - Chrome's Profile Sync Cloud Storage
|
||||
* [InfiniDrive](https://github.com/nicomda/InfiniDrive) - Amazon Prime Photos Cloud Storage
|
||||
* [OneDriveFly](https://github.com/Tai7sy/OneDriveFly) or [OneDrive Vercel Index](https://ovi.swo.moe/) - OneDrive Indexes
|
||||
* [Fix-OneDrive-Zip](https://github.com/pmqs/Fix-OneDrive-Zip) - Fix OneDrive Zip Files >4gb
|
||||
* [Microsoft-E5-Auto-Renewal](https://github.com/TheCaduceus/Microsoft-E5-Auto-Renewal) - Developer E5 Auto Renewal
|
||||
* [Koofr](https://koofr.eu/) - Cloud Storage Manager
|
||||
* [SpaceDrive](https://www.spacedrive.com/) - Cloud Storage Manager
|
||||
* [CarotDAV](http://rei.to/carotdav_en.html) - Cloud Storage Manager
|
||||
|
@ -13,18 +13,17 @@
|
||||
* 🌐 **[/r/PiratedGames Mega](https://rentry.org/pgames)** / [Discord](https://discord.gg/dZWwhUy) - Game Piracy Megathread
|
||||
* 🌐 **[CS.RIN Mega](https://cs.rin.ru/forum/viewtopic.php?f=10&t=95461)** - Game Piracy Megathread
|
||||
* 🌐 **[privateersclub](https://megathread.pages.dev/)** - Game Piracy Megathread / [Discord](https://discord.gg/jz8dUnnD6Q)
|
||||
* 🌐 **[Wotaku](https://wotaku.moe/games)** - Otaku game Index / [Discord](https://discord.gg/vShRGx8ZBC)
|
||||
* 🌐 **[EverythingMoe](https://everythingmoe.com/?nsfw=true#section-game)** - Otaku Games Index / [Discord](https://discord.gg/GuueaDgKdS)
|
||||
* ↪️ **[Scene Release Trackers](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_scene_release_trackers)**
|
||||
* ⭐ **[GamesDrive](https://gamesdrive.net/)** - Download / [Discord](https://discord.gg/wXdNEhf73x) / [Divolt](https://gamesdrive.divolt.xyz/) / [Telegram](https://t.me/+qkrAOiq7k7ozNzRk)
|
||||
* ⭐ **[CS.RIN.RU](https://cs.rin.ru/forum)** - Download / Forum / [Status](https://csrinstaff.writeas.com/) / [Enhancement Mod](https://github.com/SubZeroPL/cs-rin-ru-enhanced-mod) / [Steam Buttons](https://github.com/Altansar69/CS.RIN.RU-Enhanced-external) / [Onion](http://csrinrutkb3tshptdctl5lyei4et35itl22qvk5ktdcat6aeavy6nhid.onion/forum)
|
||||
* ⭐ **[SteamRIP](https://steamrip.com/)** - Download / Torrent / Pre-Installs / [Discord](https://discord.gg/ycDt32VpPH) / pw: 1234 or steamrip.com
|
||||
* ⭐ **[Torrminatorr](https://forum.torrminatorr.com/)** - Download
|
||||
* ⭐ **[GOG Games](https://gog-games.to/)** - Download / [.onion](http://goggamespyi7b6ybpnpnlwhb4md6owgbijfsuj6z5hesqt3yfyz42rad.onion/)
|
||||
* ⭐ **[Ova Games](https://www.ovagames.com/)** - Download / [Bypass All Shortlinks Required](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/adblock-vpn-privacy#wiki_.25B7_redirect_bypass)
|
||||
* ⭐ **[Online Fix](https://online-fix.me/)** - Download / Torrent / Multiplayer / [Discord](https://discord.gg/yExgFYncMD)
|
||||
* ⭐ **[SteamGG](https://steamgg.net/)** - Download / Pre-Installs / [Discord](https://discord.gg/3A9gpx8XeJ)
|
||||
* ⭐ **[Game Bounty](https://gamebounty.world/)** - Download / [Discord](https://dsc.gg/gamebounty)
|
||||
* ⭐ **[GOG Games](https://gog-games.to/)** - Download / [.onion](http://goggamespyi7b6ybpnpnlwhb4md6owgbijfsuj6z5hesqt3yfyz42rad.onion/)
|
||||
* ⭐ **[Online Fix](https://online-fix.me/)** - Download / Torrent / Multiplayer / [Discord](https://discord.gg/yExgFYncMD)
|
||||
* ⭐ **[SteamGG](https://steamgg.net/)** - Download / Pre-Installs / [Discord](https://discord.gg/3A9gpx8XeJ)
|
||||
* ⭐ **[Ova Games](https://www.ovagames.com/)** - Download / [Bypass All Shortlinks Required](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/adblock-vpn-privacy#wiki_.25B7_redirect_bypass)
|
||||
* ⭐ **[FreeToGame](https://www.freetogame.com/games)**, [Acid Play](https://acid-play.com/) or [/v/ Recs](https://vsrecommendedgames.fandom.com/wiki/Freeware_Games) - F2P Games / [Trackers](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/misc#wiki_.25BA_free_stuff)
|
||||
* ⭐ **[Game Download CSE](https://cse.google.com/cse?cx=006516753008110874046:cbjowp5sdqg)**, [Game Torrent CSE](https://cse.google.com/cse?cx=006516753008110874046:pobnsujblyx), [Rezi Search](https://rezi.one/), [Rave Search](https://idleendeavor.github.io/gamesearch/) / [2](https://ravegamesearch.pages.dev/) or [/r/PiratedGames CSE](https://cse.google.com/cse?cx=20c2a3e5f702049aa) - Multi-Site Search Engines
|
||||
* [g4u](https://g4u.to/) - Download / pw: 404
|
||||
@ -38,14 +37,13 @@
|
||||
* [World of PC Games](https://worldof-pcgames.net/) - Download / [Discord](https://discord.com/invite/xzFH2yXs) / [Site Info](https://rentry.org/ikc3x8bt) / Use Adblocker
|
||||
* [IWannaPlay](https://sites.google.com/view/iwannaplay/список-игр) - Download / Telegram Required
|
||||
* [IRC Games](https://redd.it/x804wg) - Download Games via IRC
|
||||
* [itch.io](https://itch.io/games/new-and-popular/featured/free), [Killed By A Pixel](https://frankforce.com/all-games/), [Gamdie](https://gamdie.com/), [Indie Rentry](https://rentry.org/hhtxv7ud), [DigiPen](https://games.digipen.edu/) or [Game Jolt](https://gamejolt.com/games?price=free) - Indie Games
|
||||
* [itch.io](https://itch.io/games/new-and-popular/featured/free), [Killed By A Pixel](https://frankforce.com/all-games/), [Gamdie](https://gamdie.com/), [DigiPen](https://games.digipen.edu/) or [Game Jolt](https://gamejolt.com/games?price=free) - Indie Games
|
||||
* itch.io Tools - [Downloader](https://github.com/Emersont1/itchio) / [Desktop](https://github.com/itchio/itch) / [Auto-Claim](https://github.com/Smart123s/ItchClaim)
|
||||
* [Alpha Beta Gamer](https://alphabetagamer.com/) - Play Games in Alpha / Beta Testing
|
||||
* [RPG Maker Games](https://rpgmaker.net/games/?name_filter=&engine=&status=&rating=&commercial=exclude&sort=&portal=None) - Games made via RPG Maker
|
||||
* [Locomalito](https://locomalito.com/) - Classic Game Remakes
|
||||
* [Necromanthus](https://necromanthus.com/) - 3D Shockwave Games
|
||||
* [VGPErson](https://vgperson.com/games/) - Simple Japanese Games
|
||||
* [SAGE](https://sagexpo.org/) - Sonic Fan Games / [Discord](https://discord.sonicfangameshq.com/)
|
||||
* [Clone Hero](https://clonehero.net/) - Guitar Hero Clone / [Setlists](https://rentry.co/FMHYBase64#setlists), [2](https://customsongscentral.com/), [3](https://rentry.co/FMHYBase64#frif-drive) / [Wii Controller Support](https://github.com/Meowmaritus/WiitarThing) / [Custom Client](https://clonehero.scorespy.online)
|
||||
* [DoujinStyle](https://doujinstyle.com) - Doujin Games / [Discord](https://discord.com/invite/z2QDFdA)
|
||||
* [MoriyaShrine](https://moriyashrine.org/) - Touhou Games
|
||||
@ -64,15 +62,13 @@
|
||||
* ⭐ **[KaOsKrew](https://www.kaoskrew.org/)** - Download / Torrent / [Discord](https://discord.com/invite/WF2pqPTFBs)
|
||||
* ⭐ **[FitGirl Repacks](https://fitgirl-repacks.site/)** - Download / Torrent / ROM Repacks / [Discord](https://discord.gg/Up3YARe4RW)
|
||||
* ⭐ **[M4CKD0GE Repacks](https://m4ckd0ge-repacks.site/)** - Download / [Discord](https://discord.gg/693hNBdymb)
|
||||
* ⭐ **[ARMGDDN Browser](https://cs.rin.ru/forum/viewtopic.php?f=14&t=140593)** / [Telegram](https://t.me/ARMGDDNGames) - Download
|
||||
* ⭐ **[Gnarly Repacks](https://rentry.co/FMHYBase64#gnarly_repacks)** - Download / Password: gnarly
|
||||
* [Xatab Repacks](https://byxatab.com/) - Torrent
|
||||
* [ARMGDDN Browser](https://cs.rin.ru/forum/viewtopic.php?f=14&t=140593) / [Telegram](https://t.me/ARMGDDNGames) - Download
|
||||
* [Gnarly Repacks](https://rentry.co/FMHYBase64#gnarly_repacks) - Download
|
||||
* [ScOOt3r Repacks (Discord)](https://discord.gg/xe3Fys8Upy) - Download / Torrent
|
||||
* [Elamigos](https://elamigos.site/) - Download
|
||||
* [Tiny-Repacks](https://www.tiny-repacks.win) - Torrent
|
||||
* [DODI Repacks](https://dodi-repacks.site/) - Torrent / [Discord](https://discord.gg/uE273qJ) / [Forum](https://dodi-forums.win/) / [Opera Bypass](https://rentry.co/lootlink) / [Warning](https://pastebin.com/n5xS3v6k)
|
||||
* [FreeGOGPCGames](https://freegogpcgames.com/) - GOG Games Torrent Uploads / [Hash Note](https://pastebin.com/pNMj3nay), [2](https://i.ibb.co/XbF2dv1/image.png)
|
||||
* [DigitalZone](https://god0654.github.io/DigitalZone/ ) - Download / Portable Repacks
|
||||
* [Magipack](https://www.magipack.games), [CollectionChamber](https://collectionchamber.blogspot.com/) or [ClassicPCGames](https://archive.org/details/classicpcgames) - Retro PC Games
|
||||
* [~archive](https://websites.umich.edu/~archive/) - Retro PC / Mac Games
|
||||
|
||||
@ -103,7 +99,6 @@
|
||||
* 🌐 **[OSGL](https://trilarion.github.io/opensourcegames/)**, [Awesome Open Source Games](https://github.com/michelpereira/awesome-open-source-games) or [LibreGameWiki](https://libregamewiki.org/List_of_games) - Open-Source Games
|
||||
* 🌐 **[Awesome Game Remakes](https://github.com/radek-sprta/awesome-game-remakes)** or [Game Clones](https://osgameclones.com/) - Open-Source Remakes
|
||||
* 🌐 **[Awesome Terminal Games](https://ligurio.github.io/awesome-ttygames/)** - ASCII Terminal Games
|
||||
* 🌐 **[Kliktopia](https://kliktopia.org/)** - Klik Games
|
||||
* ⭐ **[OpenRCT2](https://openrct2.io/)**, [2](https://openrct2.org/) - Open-Source RollerCoaster Tycoon 2
|
||||
* [Minetest](https://www.minetest.net/) or [Cassicube](https://www.classicube.net/) - Open-Source Minecraft Alternatives
|
||||
* [OpenFortress](https://openfortress.fun/) - Team Fortress 2 Mod
|
||||
@ -118,8 +113,6 @@
|
||||
* [YQuake2](https://www.yamagi.org/quake2/) - Quake 2 Source Port / [GitHub](https://github.com/yquake2/yquake2)
|
||||
* [Xonotic](https://xonotic.org/) - Open-source Modified Quake Engine FPS
|
||||
* [Silent Hill 2: Enhanced Edition](https://enhanced.townofsilenthill.com/SH2/) - Silent Hill 2 Mod Project
|
||||
* [SRB2](https://www.srb2.org/) - Open-Source Sonic Fan Game / [GitLab](https://git.do.srb2.org/STJr/SRB2)
|
||||
* [SRB2Kart](https://mb.srb2.org/threads/srb2kart.25868/) / [GitHub](https://github.com/STJr/Kart-Public) or [RingRacers](https://github.com/KartKrewDev/RingRacers) - Open-Source Sonic Kart Games
|
||||
* [Aleph One](https://alephone.lhowon.org/) - Open-Source Marathon Continuation
|
||||
* [REDRIVER2](https://github.com/OpenDriver2/REDRIVER2) - Driver 2 PC Port
|
||||
* [Streets of Rage Remake](https://sorr.forumotion.net/t838-new-streets-of-rage-remake-v5-2-download-and-info) - Streets of Rage Remake
|
||||
@ -228,13 +221,14 @@
|
||||
* [Vimms Lair](https://vimm.net/) - Emulators / ROMs
|
||||
* [SafeROMs](https://www.saferoms.com/) - Emulators / ROMs
|
||||
* [Gnarly Repacks](https://rentry.co/FMHYBase64#gnarly_repacks) - ROMs / Emulator Repacks
|
||||
* [ROM-Collections](https://rentry.co/FMHYBase64#rom-collections) - ROMs
|
||||
* [ROM-Collections](https://rentry.co/ROM-Collections) - ROMs
|
||||
* [WowROMs](https://wowroms.com/en) - ROMs
|
||||
* [Edge Emulation](https://edgeemu.net/) - ROMs
|
||||
* [Zophar's Domain](https://www.zophar.net/) - Emulators / ROM Hacks
|
||||
* [TheRomDepot](https://theromdepot.com/) - ROMs
|
||||
* [BlueRoms](https://www.blueroms.ws/) - Emulators / ROMs / Torrents
|
||||
* [Ghostware](https://rentry.co/FMHYBase64#ghostware) - ROMs
|
||||
* [Rom GDrive](https://rentry.co/FMHYBase64#rom-gdrive) - ROMs
|
||||
* [Arquivista ROMs](https://rentry.co/FMHYBase64#arquivista) - ROMs
|
||||
* [FinalBurn Neo](https://rentry.co/FMHYBase64#finalburn-neo) - ROMs / Zip
|
||||
* [Retrostic](https://www.retrostic.com/) - Emulators / ROMs
|
||||
@ -321,7 +315,7 @@
|
||||
* [QAOP](https://torinak.com/qaop/games) - ZX Spectrum
|
||||
* [MSXGamesWorld](https://www.msxgamesworld.com/) or [CheatMSX](https://www.cheatmsx.com/) - MSX Browser Emulators
|
||||
* [CommodoreGames](https://www.commodoregames.net/) or [C64Online](https://c64online.com/) - C64 Browser Emulators
|
||||
* [SMBGames](https://smbgames.be/) - Super Mario Browser Emulator
|
||||
* [Super Mario Bros](https://supermariobros.io/), [SuperMarioBrosGames](https://supermariobrosgames.com/) or [SMBGames](https://smbgames.be/) - Super Mario Browser Emulators
|
||||
* [SMWGames](https://www.smwgames.com/) - Hacked Super Mario World Browser Emulators
|
||||
* [Jelly Mario](https://jellymar.io/) - Jelly Super Mario
|
||||
* [Level Share Square](https://levelsharesquare.com/) - Custom Maps for Mario Fangames
|
||||
@ -337,7 +331,6 @@
|
||||
* [First-Person Tetris](https://firstpersontetris.com/) - Play Tetris in First Person
|
||||
* [Play Snake](https://playsnake.org/) - Retro Snake
|
||||
* [Google Maps Snake](https://snake.googlemaps.com/) - Google Snake
|
||||
* [Google Snake Mods](https://googlesnakemods.com/) - Google Snake Mods
|
||||
* [Snake-Game](https://www.onemotion.com/snake-game/) - 3D Snake
|
||||
* [TENNIS!](https://snek-vunderkind.vercel.app/games/tennis.html) - JavaScript Pong
|
||||
|
||||
@ -346,12 +339,12 @@
|
||||
# ► Browser Games
|
||||
|
||||
* ↪️ **[Interactive Text Adventures](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_text_adventures)**
|
||||
* ⭐ **[Flashpoint](https://flashpointarchive.org/)** / [Discord](https://discord.gg/Z4gGtJvvn8), [Flash by Night](http://www.flashbynight.com/) or [Flash Library](https://rentry.co/FMHYBase64#software-library-flash) - Flash Game Archives
|
||||
* ⭐ **[Ninja Kiwi Archive](https://ninjakiwi.com/archive)** - Ninja Kiwi / Bloons Archive
|
||||
* ⭐ **[Flashpoint](https://flashpointarchive.org/)** / [Discord](https://discord.gg/Z4gGtJvvn8) or [Flash Library](https://rentry.co/FMHYBase64#software-library-flash) - Flash Game Archives
|
||||
* ⭐ **[Ninjakiwi](https://ninjakiwi.com/archive)** - Flash Game Archives
|
||||
* ⭐ **[Allchemy](https://allchemy.io/)** or [Infinite Craft](https://neal.fun/infinite-craft/) / [Wiki](https://expitau.github.io/InfiniteCraftWiki/) / [Search](https://infinibrowser.zptr.cc/search) - Infinite Item Crafting Games
|
||||
* ⭐ **[Powerline.io](https://powerline.io/)** - Multiplayer Snake / [Discord](https://discord.com/invite/NckDSyb)
|
||||
* ⭐ **[QWOP](https://www.foddy.net/Athletics.html)** - Ragdoll Running Game
|
||||
* ⭐ **[TagPro](https://koalabeast.com/)** - Multiplayer Capture the Flag / [Discord](https://discord.com/invite/hhW3MDzrt3)
|
||||
* ⭐ **[TagPro](https://koalabeast.com/)** - Multiplyer Capture the Flag / [Discord](https://discord.com/invite/hhW3MDzrt3)
|
||||
* [Moo Moo](https://moomoo.io/) - Multiplayer Survival Game
|
||||
* [Slither.io](http://slither.io/) - Grow the Longest Worm
|
||||
* [Hexar.io](http://www.hexar.io/), [splix.io](https://splix.io/) or [paper-io](https://paper-io.com/) - Control the Map
|
||||
@ -406,7 +399,8 @@
|
||||
* [Miniplay](https://www.miniplay.com/) - Browser Games
|
||||
* [Yandex Games](https://yandex.com/games/) - Browser Games
|
||||
* [Spatial](https://www.spatial.io/) - 3D Browser Games
|
||||
* [Unblock KISD](https://sites.google.com/view/unblockkisd/), [Tyrone's Unblocked](https://sites.google.com/site/tyronesgamesez/) or [UBG365](https://ubg365.github.io/) / [Discord](https://discord.com/invite/jJXpcK6SFv) - Browser Games / Unblocked at Schools
|
||||
* [Unblock KISD](https://sites.google.com/view/unblockkisd/) - Browser Games (unblocked at schools)
|
||||
* [Tyrone's Unblocked](https://sites.google.com/site/tyronesgamesez/) - Browser Games (unblocked at schools)
|
||||
* [CoolMathGames](https://www.coolmathgames.com/) - Browser Game Site (disguised as edu games)
|
||||
* [FlashMuseum](https://flashmuseum.org/), [Flash Arch](https://flasharch.com/en) or [AlbinoBlackSheep](https://www.albinoblacksheep.com/games/) - Flash Games
|
||||
* [Arcade Prehacks](https://www.arcadeprehacks.com/), [SamsHackedGames](https://www.samshackedgames.com/) or [KongHack](https://konghack.com/) - Flash Game Hacks
|
||||
@ -444,11 +438,11 @@
|
||||
* [Venge](https://venge.io/) - PvP FPS
|
||||
* [kour.io](https://kour.io/) - PvP FPS
|
||||
* [LolShot](https://lolshot.io/) - PvP FPS
|
||||
* [1v1.LOL](https://1v1.lol/) - 1v1 Building / Battle Simulator
|
||||
* [1v1.LOL](https://1v1.lol/) - 1v1 Building / Battle Sim
|
||||
* [ShellShock](https://www.shellshock.io/) - PvP FPS
|
||||
* [MiniRoyale](https://miniroyale.io/) - Battle Royale Game
|
||||
* [MiniRoyale](https://miniroyale.io/) - Battle Royal Game
|
||||
* [ZombsRoyale.io](https://zombsroyale.io/) - Top-Down Battle Royale
|
||||
* [Wings.io](https://wings.io/) - Multiplayer Plane Battles / [Discord](https://discord.com/invite/HQcTbuZByA)
|
||||
* [Wings.io](https://wings.io/) - Multiplyer Plane Battles / [Discord](https://discord.com/invite/HQcTbuZByA)
|
||||
* [Operius](https://mors-games.itch.io/operius) - Space Shooter
|
||||
* [Galaxies](https://playcanv.as/p/Ikq6Uk6A/) - Space Combat Game
|
||||
* [Tanki](https://tankionline.com/) or [Diep](https://diep.io/) - Online Team VS Team Tank Games
|
||||
@ -474,7 +468,7 @@
|
||||
* [FSHistory](https://s-macke.github.io/FSHistory/) - Play Classic Flight Simulator
|
||||
* [Hacker Wars](https://hackerwars.io/) or [SlaveHack2](https://www.slavehack2.com/) - Hacking Simulators
|
||||
* [Startup Simulator](https://toggl.com/startup-simulator/) - Startup Simulation Game
|
||||
* [Sim CB](https://benoitessiambre.com/macro.html) - Central Bank Simulator
|
||||
* [Sim CB](https://benoitessiambre.com/macro.html) - Central Bank Sim
|
||||
* [Orbity](https://orbity.io/game.php) - Spaceship Launching Game
|
||||
* [Plane Food Simulator](https://sheepandram.itch.io/pfs2021) - Plane Food Eating Game
|
||||
* [Alternate History Simulator](https://abw.blue/) - Write Alternate History
|
||||
@ -509,7 +503,6 @@
|
||||
* 🌐 **[Curlie Cards](https://curlie.org/en/Games/Video_Games/Recreation/Browser_Based/Cards)** - Card Game Index
|
||||
* 🌐 **[Curlie Yahtzee](https://curlie.org/en/Games/Video_Games/Recreation/Browser_Based/Dice/Yahtzee)** - Yahtzee Game Index
|
||||
* ⭐ **[WorldOfCardGames](https://worldofcardgames.com/)**, [CardGames.io](https://cardgames.io/), [247Games](https://www.247games.com/), [CardzMania](https://www.cardzmania.com/) or [World of Solitaire](https://worldofsolitaire.com/) - Multiplayer Card Games
|
||||
* [PartyProject](https://char64.itch.io/partyproject) - Mario Party Style Multiplayer Game
|
||||
* [FlyOrDie](https://www.flyordie.com/) - Multiplayer Card Games
|
||||
* [Playok](https://www.playok.com/) - Multiplayer Card Games
|
||||
* [PlayingCards](https://playingcards.io/) - Multiplayer Card Games
|
||||
@ -536,7 +529,6 @@
|
||||
* ↪️ **[Chess Learning Resources](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/edu#wiki_.25B7_chess)**
|
||||
* ⭐ **[lichess](https://lichess.org/)**, [GameKnot Chess](https://gameknot.com/), [SparkChess](https://www.sparkchess.com/) or [Chess.com](https://www.chess.com/) - Chess Platforms
|
||||
* ⭐ **lichess Tools** - [Mobile](https://lichess.org/mobile) / [Customize](https://prettierlichess.github.io/) / [Leagues](https://www.lichess4545.com/)
|
||||
* ⭐ **[Print Chess](https://www.printchess.com/)** - Printable Paper Chess Set
|
||||
* ⭐ **[Super Auto Pets](https://teamwood.itch.io/super-auto-pets)** - Pet Battle Game
|
||||
* [Warzone](https://www.warzone.com/) - RISK Clone
|
||||
* [Neptune's Pride](https://np4.ironhelmet.com/) - Space Strategy game
|
||||
@ -558,7 +550,6 @@
|
||||
* ⭐ **[MoreWords](https://www.morewords.com/)** , [PlayScrabble](https://playscrabble.com/)or [WordHub](https://wordhub.com/) - Scrabble
|
||||
* ⭐ **[Rubik’s Cube Explorer](https://iamthecu.be/)**, [Grubiks](https://www.grubiks.com/), [pCubes](https://twistypuzzles.com/forum/viewtopic.php?f=1&t=27054) or [The Cube](https://bsehovac.github.io/the-cube/) - Rubix Cubes / [Solver](https://rubiksolve.com/), [2](https://rubiks-cube-solver.com/)
|
||||
* ⭐ **[jiggie](https://jiggie.fun/)** - Custom Puzzles + Multiplayer
|
||||
* ⭐ **[Minesweeper.online](https://minesweeper.online/)** - Minesweeper
|
||||
* [Puzzle Party](https://artsandculture.google.com/experiment/puzzle-party/EwGBPZlIzv0KRw) - Multiplayer Jigsaws
|
||||
* [PuzzlePrime](https://www.puzzleprime.com/) - Problems / Puzzles
|
||||
* [Truncate](https://truncate.town/) - Crossword Strategy Game
|
||||
@ -606,7 +597,7 @@
|
||||
* [WarClicks](https://warclicks.com/) - Incremental War Game
|
||||
* [Goblin Bet](https://goblin.bet/) - Bet on 1v1 Monster Fights
|
||||
* [The First Alkahistorian](https://nagshell.github.io/elemental-inception-incremental/) - Incremental Elemental Game
|
||||
* [FactoryIdle](https://factoryidle.com/) - Factory Idle Simulator
|
||||
* [FactoryIdle](https://factoryidle.com/) - Factory Idle Sim
|
||||
* [Idlescape](https://www.play.idlescape.com/) - Idle MMORPG
|
||||
* [ProgressQuest](http://progressquest.com/) - Idle RPG
|
||||
* [Anti Matter Dimesions](https://ivark.github.io/) - Anti Matter Idle Game
|
||||
@ -649,7 +640,6 @@
|
||||
* [Guess The Year](https://guess-the-year.davjhan.com/) or [ChronoPhoto](https://www.chronophoto.app/) - Year Guessing Game
|
||||
* [Approved, or Not Approved?](https://approvednotapproved.com/) - Approved Advertising Guessing Game
|
||||
* [Wikitrivia](https://wikitrivia.tomjwatson.com/) - Guess Which Event Came First
|
||||
* [WhatBeatsRock](https://www.whatbeatsrock.com/) - Guess What Beats What
|
||||
* [LoLdle](https://loldle.net/) - League of Legends Wordle
|
||||
* [Minecraftle](https://minecraftle.zachmanson.com/) - Minecraft Crafting Style Wordle
|
||||
* [Squirdle](https://squirdle.fireblend.com/) - Pokémon Style Wordle
|
||||
@ -660,9 +650,9 @@
|
||||
|
||||
## ▷ Word Games
|
||||
|
||||
* 🌐 **[Awesome Wordle](https://github.com/prakhar897/awesome-wordle)**, [Wordles of the World](https://rwmpelstilzchen.gitlab.io/wordles/) or [Wordleverse](https://wordleverse.net/games) - Wordle Game Index
|
||||
* 🌐 **[Awesome Wordle](https://github.com/prakhar897/awesome-wordle)** - Wordle Game Index
|
||||
* ⭐ **[Wordle](https://www.nytimes.com/games/wordle/index.html)** - Original Wordle
|
||||
* ⭐ **[Wordle Analyzer](https://wordle-analyzer.com/)**
|
||||
* ⭐ **[Wordles of the World](https://rwmpelstilzchen.gitlab.io/wordles/)** - [Analyzer](https://wordle-analyzer.com/)
|
||||
* [JKLM.FUN](https://jklm.fun/) - Multiplayer Word Guessing Game
|
||||
* [Sqword](https://www.sqword.com/)
|
||||
* [Wordle Unlimited](https://wordleunlimited.org/)
|
||||
|
@ -80,7 +80,6 @@
|
||||
* [Bort](https://bort.io/) - Bookmark Manager / Dropbox Sync
|
||||
* [Bookmarklets Guide](https://rentry.co/bookmarklets-guide) - Useful Bookmarklets / Guide
|
||||
* [wallabag](https://wallabag.org/) - Save and Classify Articles
|
||||
* [SuperMemory](https://supermemory.ai/) - AI Bookmark App
|
||||
* [Sidebery](https://github.com/mbnuqw/sidebery) - Extension
|
||||
* [Bookmarks Organizer](https://github.com/cadeyrn/bookmarks-organizer) - Extension
|
||||
* [Centroly](https://centroly.com/) - Extension
|
||||
@ -151,26 +150,12 @@
|
||||
* [LinkSpace.Bio](https://linkspace.bio/)
|
||||
* [Campsite.bio](https://campsite.bio/)
|
||||
* [Taplink](https://taplink.at/)
|
||||
* [Lynk](https://lynk.id/)
|
||||
* [Linkezo](https://linkezo.com/)
|
||||
* [Hipolink](https://hipolink.net/)
|
||||
* [Linkr](https://linkr.com/)
|
||||
* [LinkPop](https://linkpop.com/)
|
||||
* [Mylinx](https://mylinx.cc/)
|
||||
* [LinkBun](https://linkbun.io)
|
||||
* [pronouns.cc](https://pronouns.cc/) - Share Preferred Pronouns
|
||||
* [seemless](https://www.linkinbio.website/) - Link in Bio for Tiktok & Instagram
|
||||
* [itsmy.fyi](https://itsmy.fyi/) - Create Homepage via Github Issues / [GitHub](https://github.com/rishi-raj-jain/itsmy.fyi)
|
||||
|
||||
***
|
||||
|
||||
## ▷ Captcha Tools
|
||||
|
||||
* ⭐ **[Buster](https://github.com/dessant/buster)** - Auto Captcha Solver
|
||||
* [NopeCHA](https://nopecha.com/) - Auto Captcha Solver / [Required Tokens](https://nopecha.com/manage) / [Discord](https://discord.com/invite/yj7cTYBQaw)
|
||||
* [Privacy Pass](https://github.com/cloudflare/pp-browser-extension) - Save Captcha Tokens
|
||||
* [Democaptcha](https://democaptcha.com/demo-form-eng/hcaptcha.html) - hCaptcha Demo
|
||||
* [ReCAPTCHA Demo](https://www.google.com/recaptcha/api2/demo) or [reCAPTCHA test](https://patrickhlauke.github.io/recaptcha/) - reCAPTCHA Demo's
|
||||
* [itsmy.fyi](https://itsmy.fyi/) - Create Homepage via Github Issues / [Github](https://github.com/rishi-raj-jain/itsmy.fyi)
|
||||
|
||||
***
|
||||
|
||||
@ -228,7 +213,7 @@
|
||||
* [Refseek](https://www.refseek.com/) - Academic Search Engine
|
||||
* [Sources.com](https://www.sources.com/) - Journalism Source Search
|
||||
* [GrayHatWarfare](https://buckets.grayhatwarfare.com/) or [OpenBuckets](https://openbuckets.io/) - Amazon s3 Buckets Search
|
||||
* [UserSearch](https://usersearch.org/), [Sherlock](https://sherlockproject.xyz/), [Maigret](https://github.com/soxoj/maigret), [Nexfil](https://github.com/thewhiteh4t/nexfil), [Lullar](https://lullar-com-3.appspot.com/), [Blackbird](https://github.com/p1ngul1n0/blackbird) or [WhatsMyName](https://whatsmyname.app/) - Username Search
|
||||
* [UserSearch](https://usersearch.org/), [Sherlock](https://sherlock-project.github.io/), [Maigret](https://github.com/soxoj/maigret), [Nexfil](https://github.com/thewhiteh4t/nexfil), [Lullar](https://lullar-com-3.appspot.com/), [Blackbird](https://github.com/p1ngul1n0/blackbird) or [WhatsMyName](https://whatsmyname.app/) - Username Search
|
||||
* [FindAGrave](https://findagrave.com/) - Gravestone Search
|
||||
* [Telegago](https://cse.google.com/cse?&cx=006368593537057042503:efxu7xprihg#gsc.tab=0) or [TG CSE](https://cse.google.com/cse?cx=006249643689853114236:a3iibfpwexa) - Telegram CSE
|
||||
* [ISearchFrom](http://isearchfrom.com/) - Change Location / Device for Google Search
|
||||
@ -258,6 +243,85 @@
|
||||
|
||||
***
|
||||
|
||||
## ▷ URL Tools
|
||||
|
||||
* 🌐 **[URLS-MTHRFCKR](https://github.com/whoisdsmith/urls-mthrfckr)** - Python URL Scripts
|
||||
* ↪️ **[Check if Sites are Down](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_down_site_checkers)**
|
||||
* ↪️ **[Encode / Decode URLs](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/text-tools#wiki_.25B7_encode_.2F_decode)**
|
||||
* ↪️ **[Reverse URL Search](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_domain_info_tools)**
|
||||
* ↪️ **[URL Unshorteners](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_url_unshorteners)**
|
||||
* ⭐ **[Flagfox](https://flagfox.wordpress.com/)** - Displays Country's Flag on Sites / [Adds Many URL Tools](https://i.ibb.co/N7Mq56Q/889730aa3863.png)
|
||||
* ⭐ **[HTTPStatus](https://httpstatus.io/)** - Check URL Status Codes / Redirect Chains
|
||||
* ⭐ **[Wiki Shortener](https://meta.wikimedia.org/wiki/Special:UrlShortener)** - Wiki URL Shortener
|
||||
* ⭐ **[Linqbin](https://linqbin.cc/)** - Temp Link Shortener / [GitHub](https://github.com/daniel-lxs/linqbin)
|
||||
* ⭐ **[t.ly](https://t.ly/)** - `t.ly/qqH6`
|
||||
* ⭐ **[is.gd](https://www.is.gd/)** - `is.gd/9dkISG`
|
||||
* ⭐ **[Reduced](https://reduced.to/)** - `reduced.to/nuwad`
|
||||
* [v.gd](https://v.gd/) - `v.gd/Gj8oLR`
|
||||
* [gg.gg](https://gg.gg/) - `gg.gg/oggp7`
|
||||
* [Linkify](https://creator.linkify.cz/) - `linkify.cz/1a0O`
|
||||
* [bitly](https://bitly.com/) - `bit.ly/3cmqPIu` / [Reveal URL](https://i.ibb.co/tQVKYRq/3a97e5dd64b2.png)
|
||||
* [TinyUrl](https://tinyurl.com/) - `tinyurl.com/twgf2ks` / [Reveal URL](https://i.ibb.co/Wv90gT4/0d2992342fc7.png)
|
||||
* [id](https://home.s.id/) - `s.id/EQBsg`
|
||||
* [Tiny.cc](https://tiny.cc/) - `tiny.cc/akl1mz`
|
||||
* [1kb](https://1kb.link/) - `1kb.link/acc0a`
|
||||
* [x.gd](https://x.gd/) `x.gd/rcg0Z`
|
||||
* [bom.so](https://bom.so/) - `bom.so/VevMJv`
|
||||
* [by.com.vn](https://by.com.vn/) - `by.com.vn/tKYeSo`
|
||||
* [sum.vn](https://sum.vn/) - `sum.vn/DTrXk`
|
||||
* [picsee](https://picsee.io/) - `psee.io/5pye68`
|
||||
* [soo.run](https://soo.run) - `soo.run/e0j07`
|
||||
* [pxmd](https://pxmd.co/) - `pxmd.co/8HDku`
|
||||
* [jii.li](https://jii.li/) - `jii.li/hNFXP`
|
||||
* [Rebrandly](https://www.rebrandly.com/) - `rb.gy/4m25hq` / [Extension](https://mybrowseraddon.com/g-url-shortener.html)
|
||||
* [zws](https://zws.im/) - `zws.im/`
|
||||
* [u.nu](https://u.nu/) - `u.nu/5nhzi`
|
||||
* [Kutt](https://kutt.it/) - `kutt.it/sQnBLz`
|
||||
* [wal.ee](https://wal.ee/) - `wal.ee/zluqo`
|
||||
* [n9.cl](https://n9.cl/) - `n9.cl/6gjfj`
|
||||
* [upto](https://upto.site/) - `upto.site/3e04d1`
|
||||
* [xy2.eu](https://xy2.eu/) - `xy2.eu/p7YP`
|
||||
* [goo.su](https://goo.su/) - `goo.su/7pNRjy7` / [Extension](https://chromewebstore.google.com/detail/free-link-shortener-goosu/clcoifeibkncgnegebeehkodandleohn)
|
||||
* [tny.im](https://tny.im) - `tny.im/rw-`
|
||||
* [ai6.net](https://ai6.net/) - `ai6.net/nm3tyz`
|
||||
* [SmartLinks](https://smartlnks.com/) - `smartlnks.com/Vjr0m`
|
||||
* [Emojied](https://emojied.net/), [vi8hl0c](https://xn--vi8hl0c.ws/) or [kn8h](https://xn--kn8h.to/)
|
||||
* [ShortShare](https://shortshare.app/) - Short Link App
|
||||
* [BR3F](https://www.br3f.com/) - Single-Click Short Links
|
||||
* [Anonymiz](https://anonymiz.com/shorten-url) - Anonymous URLs - `anonymiz.com/vwiq`
|
||||
* [Anon.to](https://anon.to/) - Anonymous URLs - `anon.to/7SWqpG`
|
||||
* [Thinfi](https://thinfi.com/) - Password protect a short URL - `thinfi.com/q8aw`
|
||||
* [ShortUrLinksbot](https://t.me/ShortUrLinksbot) or [ShortUrlBot](https://t.me/ShortUrlBot) - Telegram Link Shortener Bot
|
||||
* [suri](https://github.com/jstayton/suri) or [mpngin](https://github.com/thewalkingtoast/mpngin) - Self-Hosted Link Shorteners
|
||||
* [cuttly](https://cutt.ly/) - Multiple URL Tools
|
||||
* [ChangeDetection.io](https://github.com/dgtlmoon/changedetection.io), [urlwatch](https://thp.io/2008/urlwatch/), [Visualping](https://visualping.io/), [changd](https://github.com/paschmann/changd) or [FollowThatPage](https://www.followthatpage.com/) - Page Change Detection / Notification
|
||||
* [W.A.R. Links Checker Premium](https://greasyfork.org/en/scripts/2024) - Checks If File Links are Alive or Not
|
||||
* [Open Bulk URL](https://openbulkurl.com/) or [OpenAllURLs](https://www.openallurls.com/) - URL Bulk Opener
|
||||
* [ListURLs](https://listurls.com/) - URL List Generator
|
||||
* [CrowdTangle](https://apps.crowdtangle.com/chrome-extension) - Check Where Links Have Been Shared
|
||||
* [SpyOffers](https://www.spyoffers.com/) - Affiliate Link Checker
|
||||
* [Link-Lock](https://rekulous.github.io/link-lock/) - Encrypt & Decrypt Links with Passwords
|
||||
* [dcrypt.it](https://dcrypt.it/) - Decrypt Link Containers
|
||||
* [Linkify Plus Plus](https://greasyfork.org/scripts/4255) - [Core](https://github.com/eight04/linkify-plus-plus-core) / Turn Plain txt URLs into Links
|
||||
* [Perma](https://perma.cc/) - Permanent URLs
|
||||
* [Temporary-Url](https://www.temporary-url.com/) - Temporary URLs / QR Codes
|
||||
* [scrt.link](https://scrt.link/) - Single Use Links
|
||||
* [AmputatorBot](https://www.amputatorbot.com/) - Remove AMP from URLs
|
||||
* [HoverCode](https://hovercode.com/), [QR Code Generator](https://www.qr-code-generator.com/), [QRCode Monkey](https://www.qrcode-monkey.com/), [2qr](https://2qr.info/) or [link-to-qr](https://link-to-qr.com/) - QR Code Generator For URLs / Text
|
||||
* [AnyImage](https://anyimage.io/) - Create Social Card Links
|
||||
* [urlportal](https://raw.githubusercontent.com/gotbletu/shownotes/master/urlportal.sh) - Custom URL Handler
|
||||
* [Web Check](https://web-check.xyz/), [NSLookup](https://www.nslookup.io/) or [dog](https://github.com/ogham/dog) - DNS Information Tool
|
||||
* [DuckDNS](https://www.duckdns.org/), [FreeDNS](https://freedns.afraid.org/), [dynu](https://dynu.com/), [NoIP](https://www.noip.com/) or [Desec](https://desec.io/) - Dynamic DNS Service
|
||||
* [Site Worth Traffic](https://www.siteworthtraffic.com/) - Calculate Website Worth
|
||||
* [XML-Sitemaps](https://www.xml-sitemaps.com/) - Sitemap Creator
|
||||
* [CarbonDates](https://carbondate.cs.odu.edu/) - Check Site Creation Date
|
||||
* [SubDomainizer](https://github.com/nsonaniya2010/SubDomainizer), [Search Console](https://search.google.com/search-console/), [SubdomainFinder](https://subdomainfinder.c99.nl/) - Find Hidden Subdomains
|
||||
* [pyfuzz](https://github.com/AyoobAli/pyfuzz) - URL Fuzzing Tool
|
||||
* [Backlink Tool](https://backlinktool.io/) or [Index Kings](http://www.indexkings.com/) - URL Indexer
|
||||
* [Blocked](https://www.blocked.org.uk/) - UK ISP Site Blocking Test
|
||||
|
||||
***
|
||||
|
||||
## ▷ Chat Tools
|
||||
|
||||
* ↪️ **[IRC Clients / Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/download#wiki_.25B7_irc_tools)**
|
||||
@ -272,8 +336,7 @@
|
||||
* [BlueBubbles](https://bluebubbles.app/) - iMessage Client
|
||||
* [Atlus](https://github.com/amanharwara/altus) or [WAO](https://dedg3.com/wao/) - WhatsApp Clients
|
||||
* [WhatsApp-Chat-Exporter](https://wts.knugi.dev/) - WhatsApp Skype Chats
|
||||
* [WAIncognito](https://chromewebstore.google.com/detail/waincognito/alhmbbnlcggfcjjfihglopfopcbigmil) - Disable WhatsApp Read Receipts & Presence Updates
|
||||
* [Tom el Transcriptor](https://api.whatsapp.com/message/GO6PJ7A2GVKRK1) - WhatsApp Voice to Text Bot
|
||||
* [WAIncognito](https://chromewebstore.google.com/detail/waincognito/alhmbbnlcggfcjjfihglopfopcbigmil) - Disable WhatsApps Read Receipts & Presence Updates
|
||||
* [Skype Exports for Humans](https://becausecurious.me/skype_exports_for_humans) - Export Skype Chats
|
||||
* [TikTok Chat Reader](https://tiktok-chat-reader.zerody.one/) - Live TikTok Chat Reader
|
||||
* [Urlebird](https://urlebird.com/) - Third-Party TikTok with better UI
|
||||
@ -293,6 +356,29 @@
|
||||
|
||||
***
|
||||
|
||||
## ▷ Email Tools
|
||||
|
||||
* 🌐 **[Email Providers](https://en.wikipedia.org/wiki/Comparison_of_webmail_providers)** - Provider Comparisons
|
||||
* ↪️ **[Email Privacy](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/adblock-vpn-privacy#wiki_.25B7_email_privacy)**
|
||||
* ↪️ **[Email Clients](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_email_clients)**
|
||||
* ↪️ **[Temp Emails](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_temp_email_sites)**
|
||||
* ↪️ **[Anon Emails](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_send_anonymous_emails)**
|
||||
* ⭐ **[InboxReads](https://inboxreads.co/)** or [Readsom](https://readsom.com/) - Email Newsletter Archive
|
||||
* [Outlook](https://www.microsoft.com/en-us/microsoft-365/outlook/email-and-calendar-software-microsoft-outlook) or [cock.li](https://cock.li/) - Number-Free Email Services
|
||||
* [Delta Chat](https://delta.chat/en/) - Email Based Messenger
|
||||
* [Postsack](https://github.com/terhechte/postsack) - Email Visualizer
|
||||
* [Boomerang](https://www.boomeranggmail.com/), [NudgeMail](https://nudgemail.com/) or [FollowupThen](https://www.followupthen.com/) - Scheduled Email Sending & Reminders
|
||||
* [Email Tracker](https://snov.io/email-tracker), [GetNotify](https://www.getnotify.com/) or [Mailtrack](https://mailtrack.io/) - Email Engagement
|
||||
* [Epieos](https://epieos.com/) - Retrieve Info Linked to Email Address
|
||||
* [Holehe](https://github.com/megadose/holehe) - Find Accounts Connected to Emails
|
||||
* [Useplaintext](https://useplaintext.email/) - How-To Use Plaintext Email
|
||||
* [Docker Mailserver](https://docker-mailserver.github.io/docker-mailserver/edge/), [UnInbox](https://github.com/un/inbox) or [Mail-in a Box](https://mailinabox.email/) - Self-Hosted Email Servers
|
||||
* [Gmail Desktop](https://github.com/timche/gmail-desktop) - Gmail Desktop Client
|
||||
* [Got Your Back](https://github.com/GAM-team/got-your-back) - Backup Gmail Messages
|
||||
* [ExtractMailAddress](https://extractemailaddress.com/) - Extract Emails, URLs and Numbers from Text
|
||||
|
||||
***
|
||||
|
||||
## ▷ RSS Tools
|
||||
|
||||
* ⭐ **[All about RSS](https://github.com/AboutRSS/ALL-about-RSS)** / [Telegram](https://t.me/s/aboutrss), [RSSTango](https://rentry.org/rrstango), [To RSS](https://www.to-rss.xyz/), [Awesome RSS Feeds](https://github.com/plenaryapp/awesome-rss-feeds) or [RSS](https://gist.github.com/thefranke/63853a6f8c499dc97bc17838f6cedcc2) - RSS Feeds / Tools
|
||||
@ -300,7 +386,7 @@
|
||||
* ⭐ **[RSS Bridge](https://rss-bridge.org/bridge01/) / [GitHub](https://github.com/RSS-Bridge/rss-bridge)**, **[Feedless](https://feedless.org/)**, [MoRSS](https://morss.it/), [RSSHub](https://github.com/DIYgod/RSSHub), [Open RSS](https://openrss.org/), [RSS Please](https://rsspls.7bit.org/), [FetchRSS](https://fetchrss.com/), [Politepol](https://politepol.com/en/), [Janicek](https://feed.janicek.co/) or [FiveFilters](https://createfeed.fivefilters.org/) - RSS Feed Generators
|
||||
* [TheFeedReaderBot](https://thefeedreaderbot.com/) or [NewsBoat](https://newsboat.org/) - Console RSS Readers
|
||||
* [WebFeed](https://taoshu.in/webfeed/turn-browser-into-feed-reader.html) or [tt-rss](https://tt-rss.org/) - Web RSS Readers
|
||||
* [FreshRSS](https://freshrss.org/), [Fusion](https://github.com/0x2E/fusion) or [CommaFeed](https://www.commafeed.com/#/welcome) - Self-Hosted RSS Readers
|
||||
* [FreshRSS](https://freshrss.org/) or [CommaFeed](https://www.commafeed.com/#/welcome) - Self-Hosted RSS Readers
|
||||
* [Inoreader](https://www.inoreader.com/) - RSS Reader
|
||||
* [JungleReader](https://www.zajungle.com/) - RSS Reader
|
||||
* [Fluent Reader](https://hyliu.me/fluent-reader/) - RSS Reader
|
||||
@ -323,257 +409,11 @@
|
||||
|
||||
***
|
||||
|
||||
# ► URL Tools
|
||||
|
||||
* ↪️ **[Encode / Decode URLs](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/text-tools#wiki_.25B7_encode_.2F_decode)**
|
||||
* ⭐ **[Flagfox](https://flagfox.wordpress.com/)** - Displays Country's Flag on Sites / [Adds Many URL Tools](https://i.ibb.co/N7Mq56Q/889730aa3863.png)
|
||||
* ⭐ **[HTTPStatus](https://httpstatus.io/)** - Check URL Status Codes / Redirect Chains
|
||||
* ⭐ **[lychee](https://lychee.cli.rs/)** - URL Scanner / [GitHub](https://github.com/lycheeverse/lychee/)
|
||||
* [cuttly](https://cutt.ly/) - Multiple URL Tools
|
||||
* [ChangeDetection.io](https://github.com/dgtlmoon/changedetection.io), [urlwatch](https://thp.io/2008/urlwatch/), [Visualping](https://visualping.io/), [changd](https://github.com/paschmann/changd) or [FollowThatPage](https://www.followthatpage.com/) - Page Change Detection / Notification
|
||||
* [W.A.R. Links Checker Premium](https://greasyfork.org/en/scripts/2024) - Auto-check the status of File Host links.
|
||||
* [SpyOffers](https://www.spyoffers.com/) - Affiliate Link Checker
|
||||
* [Open Bulk URL](https://openbulkurl.com/) or [OpenAllURLs](https://www.openallurls.com/) - URL Bulk Opener
|
||||
* [CrowdTangle](https://apps.crowdtangle.com/chrome-extension) - Check Where Links Have Been Shared
|
||||
* [Link-Lock](https://rekulous.github.io/link-lock/) - Encrypt & Decrypt Links with Passwords
|
||||
* [dcrypt.it](https://dcrypt.it/) - Decrypt Link Containers
|
||||
* [Temporary-Url](https://www.temporary-url.com/) - Temporary URLs / QR Codes
|
||||
* [scrt.link](https://scrt.link/) - Single Use Links
|
||||
* [Linkify Plus Plus](https://greasyfork.org/scripts/4255) - Turn Plain Text URLs Into Links / [JS Library](https://github.com/eight04/linkify-plus-plus-core)
|
||||
* [AmputatorBot](https://www.amputatorbot.com/) - Remove AMP from URLs
|
||||
* [HoverCode](https://hovercode.com/), [QR Code Generator](https://www.qr-code-generator.com/), [QRCode Monkey](https://www.qrcode-monkey.com/), [2qr](https://2qr.info/) or [link-to-qr](https://link-to-qr.com/) - QR Code Generator For URLs / Text
|
||||
* [AnyImage](https://anyimage.io/) - Create Social Card Links
|
||||
* [Site Worth Traffic](https://www.siteworthtraffic.com/) - Calculate Website Worth
|
||||
* [XML-Sitemaps](https://www.xml-sitemaps.com/) - Sitemap Creator
|
||||
* [CarbonDates](https://carbondate.cs.odu.edu/) - Check Site Creation Date
|
||||
* [pyfuzz](https://github.com/AyoobAli/pyfuzz) - URL Fuzzing Tool
|
||||
* [Backlink Tool](https://backlinktool.io/) or [Index Kings](http://www.indexkings.com/) - URL Indexer
|
||||
* [Blocked](https://www.blocked.org.uk/) - UK ISP Site Blocking Test
|
||||
|
||||
***
|
||||
|
||||
## ▷ URL Shorteners
|
||||
|
||||
* ⭐ **[Wiki Shortener](https://meta.wikimedia.org/wiki/Special:UrlShortener)** - Wiki URL Shortener
|
||||
* ⭐ **[Linqbin](https://linqbin.cc/)** - Temp Link Shortener / [GitHub](https://github.com/daniel-lxs/linqbin)
|
||||
* ⭐ **[t.ly](https://t.ly/)** - `t.ly/qqH6`
|
||||
* ⭐ **[is.gd](https://www.is.gd/)** - `is.gd/9dkISG`
|
||||
* ⭐ **[Reduced](https://reduced.to/)** - `reduced.to/nuwad`
|
||||
* [v.gd](https://v.gd/) - `v.gd/Gj8oLR`
|
||||
* [gg.gg](https://gg.gg/) - `gg.gg/oggp7`
|
||||
* [Linkify](https://creator.linkify.cz/) - `linkify.cz/1a0O`
|
||||
* [bitly](https://bitly.com/) - `bit.ly/3cmqPIu` / [Reveal URL](https://i.ibb.co/tQVKYRq/3a97e5dd64b2.png)
|
||||
* [TinyUrl](https://tinyurl.com/) - `tinyurl.com/twgf2ks` / [Reveal URL](https://i.ibb.co/Wv90gT4/0d2992342fc7.png)
|
||||
* [id](https://home.s.id/) - `s.id/EQBsg`
|
||||
* [Tiny.cc](https://tiny.cc/) - `tiny.cc/akl1mz`
|
||||
* [1kb](https://1kb.link/) - `1kb.link/acc0a`
|
||||
* [x.gd](https://x.gd/) `x.gd/rcg0Z`
|
||||
* [bom.so](https://bom.so/) - `bom.so/VevMJv`
|
||||
* [by.com.vn](https://by.com.vn/) - `by.com.vn/tKYeSo`
|
||||
* [sum.vn](https://sum.vn/) - `sum.vn/DTrXk`
|
||||
* [picsee](https://picsee.io/) - `psee.io/5pye68`
|
||||
* [pxmd](https://pxmd.co/) - `pxmd.co/8HDku`
|
||||
* [jii.li](https://jii.li/) - `jii.li/hNFXP`
|
||||
* [u.nu](https://u.nu/) - `u.nu/5nhzi`
|
||||
* [Kutt](https://kutt.it/) - `kutt.it/sQnBLz`
|
||||
* [wal.ee](https://wal.ee/) - `wal.ee/zluqo`
|
||||
* [n9.cl](https://n9.cl/) - `n9.cl/6gjfj`
|
||||
* [upto](https://upto.site/) - `upto.site/3e04d1`
|
||||
* [xy2.eu](https://xy2.eu/) - `xy2.eu/p7YP`
|
||||
* [goo.su](https://goo.su/) - `goo.su/7pNRjy7` / [Chrome Extension](https://chromewebstore.google.com/detail/free-link-shortener-goosu/clcoifeibkncgnegebeehkodandleohn)
|
||||
* [ai6.net](https://ai6.net/) - `ai6.net/nm3tyz`
|
||||
* [SmartLinks](https://smartlnks.com/) - `smartlnks.com/Vjr0m`
|
||||
* [tny.im](https://tny.im) - Account Required / `tny.im/rw-`
|
||||
* [zws](https://zws.im/) - Zero Character Width Shortener / `zws.im/`
|
||||
* [Anonymiz](https://anonymiz.com/shorten-url) - Anonymous URLs / `anonymiz.com/vwiq`
|
||||
* [Anon.to](https://anon.to/) - Anonymous URLs / `anon.to/7SWqpG`
|
||||
* [Thinfi](https://thinfi.com/) - Password protect a short URL / `thinfi.com/q8aw`
|
||||
* [Emojied](https://emojied.net/), [vi8hl0c](https://xn--vi8hl0c.ws/) or [kn8h](https://xn--kn8h.to/) - Emoji URL Shorteners
|
||||
* [ShortShare](https://shortshare.app/) - Short Link App
|
||||
* [BR3F](https://www.br3f.com/) - Single-Click Short Links
|
||||
* [ShortUrLinksbot](https://t.me/ShortUrLinksbot) or [ShortUrlBot](https://t.me/ShortUrlBot) - Telegram Link Shortener Bot
|
||||
* [suri](https://github.com/jstayton/suri) or [mpngin](https://github.com/thewalkingtoast/mpngin) - Self-Hosted Link Shorteners
|
||||
|
||||
***
|
||||
|
||||
## ▷ URL Unshorteners
|
||||
|
||||
* ↪️ **[Redirect Bypassers](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/adblock-vpn-privacy/#wiki_.25B7_redirect_bypass)**
|
||||
* ⭐ **[urlex](https://urlex.org/)**
|
||||
* ⭐ **[CheckShortURL](https://checkshorturl.com/)**
|
||||
* [ExpandURL](https://www.expandurl.net/)
|
||||
* [Unshorten.it](https://unshorten.it/)
|
||||
* [WhereGoes](https://wheregoes.com/)
|
||||
* [urlxray](http://urlxray.com/)
|
||||
* [unshorten](https://unshorten.me/)
|
||||
* [linkunshorten](https://linkunshorten.com/)
|
||||
|
||||
***
|
||||
|
||||
## ▷ Down Site Checkers
|
||||
|
||||
* ⭐ **[Down for Everyone or Just Me](https://downforeveryoneorjustme.com/)**
|
||||
* ⭐ **[Is It Down Right Now](https://www.isitdownrightnow.com/)**
|
||||
* ⭐ **[Downdetector](https://downdetector.com/)** / [UK](https://downdetector.co.uk/)
|
||||
* [Is The Service Down?](https://istheservicedown.com/)
|
||||
* [Down.com](https://down.com/)
|
||||
* [websitedown](http://www.websitedown.info/)
|
||||
* [UpDown Radar](https://updownradar.com/)
|
||||
* [Dead Link Checker](https://www.deadlinkchecker.com/)
|
||||
* [Online Broken Link Checker](https://brokenlinkcheck.com/broken-links.php)
|
||||
* [Dr. Link Check](https://www.drlinkcheck.com/)
|
||||
* [HTTPStatus](https://httpstatus.io/)
|
||||
* [UpDownToday](https://updowntoday.com/)
|
||||
|
||||
***
|
||||
|
||||
## ▷ Domain / DNS
|
||||
|
||||
* ↪️ **[DNS / Web Security](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/dev-tools/#wiki_.25B7_dns_.2F_web_security)**
|
||||
* ↪️ **[Domain Availability](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_domain_availability)**
|
||||
* [LinkScope](https://accentusoft.com/), [URLDNA](https://urldna.io/) or [DNSlytics](https://dnslytics.com/) - Domain Investigation Tools
|
||||
* [Rankchart](https://rankchart.org/) - Multiple Domain Tools
|
||||
* [DNSTwist](https://dnstwist.it/) / [GitHub](https://github.com/elceef/dnstwist) or [DNSTwister](https://dnstwister.report/) - Phishing Domain Scanners
|
||||
* [WhoisRequest](https://whoisrequest.com/) - Whois Search
|
||||
* [Whois Lookup](https://whois.domaintools.com/) - Whois Search
|
||||
* [IPIP.NET](https://whois.ipip.net/) - Country / Region ASNs
|
||||
* [AtSameIP](https://atsameip.intercode.ca/) - Find websites on the same IP
|
||||
* [SubDomainizer](https://github.com/nsonaniya2010/SubDomainizer), [Google Search Console](https://search.google.com/search-console/) or [Subdomain Finder](https://subdomainfinder.c99.nl/) - Find Hidden Subdomains
|
||||
|
||||
***
|
||||
|
||||
# ► Email Tools
|
||||
|
||||
* 🌐 **[Email Providers](https://en.wikipedia.org/wiki/Comparison_of_webmail_providers)** - Provider Comparisons
|
||||
* ⭐ **[InboxReads](https://inboxreads.co/)** or [Readsom](https://readsom.com/) - Email Newsletter Archive
|
||||
* [Outlook](https://www.microsoft.com/en-us/microsoft-365/outlook/email-and-calendar-software-microsoft-outlook) or [cock.li](https://cock.li/) - Number-Free Email Services
|
||||
* [Delta Chat](https://delta.chat/en/) - Email Based Messenger
|
||||
* [Postsack](https://github.com/terhechte/postsack) - Email Visualizer
|
||||
* [Boomerang](https://www.boomeranggmail.com/), [NudgeMail](https://nudgemail.com/) or [FollowupThen](https://www.followupthen.com/) - Scheduled Email Sending & Reminders
|
||||
* [Email Tracker](https://snov.io/email-tracker), [GetNotify](https://www.getnotify.com/) or [Mailtrack](https://mailtrack.io/) - Email Engagement
|
||||
* [Epieos](https://epieos.com/) - Retrieve Info Linked to Email Address
|
||||
* [Holehe](https://github.com/megadose/holehe) - Find Accounts Connected to Emails
|
||||
* [Useplaintext](https://useplaintext.email/) - How-To Use Plaintext Email
|
||||
* [Docker Mailserver](https://docker-mailserver.github.io/docker-mailserver/edge/), [UnInbox](https://github.com/un/inbox) or [Mail-in a Box](https://mailinabox.email/) - Self-Hosted Email Servers
|
||||
* [Gmail Desktop](https://github.com/timche/gmail-desktop) - Gmail Desktop Client
|
||||
* [Got Your Back](https://github.com/GAM-team/got-your-back) - Backup Gmail Messages
|
||||
* [ExtractMailAddress](https://extractemailaddress.com/) - Extract Emails, URLs, and Numbers from Text
|
||||
* [BugMeNot](https://bugmenot.com/), [FreeAccount](https://freeaccount.biz/) or [Password Login](https://password-login.com/) - Access & Share Throwaway Accounts
|
||||
|
||||
***
|
||||
|
||||
## ▷ Email Clients
|
||||
|
||||
* ⭐ **[Betterbird](https://www.betterbird.eu/)**
|
||||
* ⭐ **[Thunderbird](https://www.thunderbird.net/en-US/)** - [Tray Icon](https://github.com/Ximi1970/systray-x)
|
||||
* ⭐ **[Mailspring](https://getmailspring.com/)** - [Themes](https://github.com/topics/mailspring-theme)
|
||||
* [Outlook](https://outlook.live.com/owa/)
|
||||
* [ElectronMail](https://github.com/vladimiry/ElectronMail)
|
||||
* [eM Client](https://www.emclient.com/)
|
||||
* [RainLoop](https://www.rainloop.net/)
|
||||
* [Roundcube](https://roundcube.net/)
|
||||
* [Spike](https://www.spikenow.com/)
|
||||
* [Canary](https://canarymail.io/)
|
||||
* [Twobird](https://www.twobird.com/)
|
||||
* [Kanmail](https://kanmail.io/)
|
||||
* [Wino](https://www.winomail.app/)
|
||||
|
||||
***
|
||||
|
||||
## ▷ Temp Mail
|
||||
|
||||
* **Note** - If you're looking for something more private and convenient, check out our [Email Aliasing](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/internet-tools#wiki_.25B7_email_aliasing) section. For details about tags, refer to [this resource](https://rentry.org/9i2uu6dx).
|
||||
|
||||
***
|
||||
|
||||
* ⭐ **[Smailpro](https://smailpro.com/)** - Gmail & Outlook / Forever / N/A / 20+ Domains
|
||||
* ⭐ **[Zemail](https://zemail.me/)** - Gmail / Forever / 1 Day / 7 Domains
|
||||
* ⭐ **[Emailnator](https://emailnator.com/)** - Gmail / Forever / 1 Day / 6 Domains
|
||||
* ⭐ **[burner.kiwi](https://burner.kiwi/)** - 1 Day / 1 Day / 3 Domains
|
||||
* ⭐ **[Tempr.email](https://tempr.email/en/)** - Forever / 1 Month / 50+ Domains
|
||||
* ⭐ **[Inboxes](https://inboxes.com/)** - Forever / 7 Days / 19 Domains
|
||||
* ⭐ **[Mail.tm](https://mail.tm/)** - 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)
|
||||
* ⭐ **[Guerrilla Mail](https://www.guerrillamail.com/)** - Forever / 1 Hour / 11 Domains / [SharkLasers](https://www.sharklasers.com/)
|
||||
* ⭐ **[temp-mail.io](https://temp-mail.io/)** - 1 Day / 1 Day / 12 Domains
|
||||
* [Bloody Vikings!](https://addons.mozilla.org/en-US/firefox/addon/bloody-vikings/) - Temp Email Extension
|
||||
* [TrashMail](https://trashmail.com/) - Email Forwarding Service
|
||||
* [Tmail.io](https://tmail.io/) - Gmail / Forever / 1 Day / 4 Domains
|
||||
* [22.Do](https://22.do/) - Gmail / 1 Day / 1 Day / 3 Domains
|
||||
* [Ago Gmail](https://www.agogmail.com/) - Gmail / 2 Domains
|
||||
* [Dispostable](https://www.dispostable.com/) - Forever / 2 Months / 1 Domain
|
||||
* [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/)
|
||||
* [instant-email.org](https://instant-email.org/) - Forever / 3 Days / 7 Domains
|
||||
* [Snapmail.cc](https://www.snapmail.cc/) - Forever / 2 Days / 3 Domains
|
||||
* [Mailnesia](https://mailnesia.com/) - Forever / 2 Days / 1 Domain
|
||||
* [Spambox](https://spambox.xyz/) or [Trashinbox](https://trashinbox.net/) - Forever / 1 Day / 4 Domains
|
||||
* [Maildrop](https://maildrop.cc/), [Trashmail](https://trashmail.ws/) or [temporary-email.com](https://temporary-email.com/) - Forever / 1 Day / 1 Domain
|
||||
* [cs.email](https://cs.email/) - Forever / 1 Hour / 12 Domains
|
||||
* [Temp Mail ID](https://tempmailid.com/) - Forever / 30 Mins / 2 Domains
|
||||
* [Email Generator](https://generator.email/), [Fake Email](https://email-fake.com/) or [TempM](https://tempm.com/) - Forever / N/A / 50+ Domains
|
||||
* [EduMail](https://edumail.icu/) - 1 Month / 1 Month / 10 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
|
||||
* [48hr.email](https://48hr.email/) - 2 Days / 2 Days / 7 Domains
|
||||
* [Tempmailo](https://tempmailo.com/) - 2 Days / 2 Days / N/A
|
||||
* [Vmail.DEV](https://vmail.dev/) - 1 Day / 1 Day / 2 Domains
|
||||
* [Mail.cx](https://mail.cx/) - 1 Day / 12 Hours / 5 Domains
|
||||
* [TemporaryMail.com](https://temporarymail.com/) - 6 Hours / 6 Hours / 7 Domains
|
||||
* [Moakt](https://www.moakt.com/) - 1 Hour / 1 Hour / 13 Domains
|
||||
* [MintEmail.com](https://www.mintemail.com/), [tempail.com](https://tempail.com/) or [tempmail.zone](https://tempmail.zone/) - 1 Hour / 1 Hour / 1 Domain
|
||||
* [tempmaili.com](https://tempmaili.com/) - N/A / 1 Hour / 1 Domain
|
||||
* [Mohmal](https://www.mohmal.com/en) - 45 Mins / 45 Mins / 1 Domain
|
||||
* [lite14.us](https://www.lite14.us/10minutemail/), [linshi-email.com](https://www.linshi-email.com/), [MinuteInbox](https://minuteinbox.com/), [10minemail.com](https://10minemail.com/), [10minutesemail.net](https://10minutesemail.net/), [10minutemail.net](https://10minutemail.net/) or [10minutemail.com](https://10minutemail.com/) - 10 Minute Lifespan Emails
|
||||
* [mail-temp.com](https://mail-temp.com/) or [emailfake.com](https://emailfake.com/) - 50+ Domains
|
||||
* [1secMail](https://www.1secmail.com/) - 8 Domains
|
||||
* [AnonymMail.net](https://anonymmail.net/), [Tmail.gg](https://tmail.gg/) or [Mail.td](https://mail.td/) - 5 Domains
|
||||
* [tempmail.email](https://tempmail.email/) - 3 Domains
|
||||
* [EmailOnDeck](https://www.emailondeck.com/), [EmailTemp](https://emailtemp.org/), [Haribu](https://haribu.net/) or [Maildax](https://maildax.com/) - 1 Domain
|
||||
* [tMail](https://tmailweb.com/) / [App](https://play.google.com/store/apps/details?id=com.clagt.tmail)
|
||||
* [Rainmail](https://rainmail.xyz/)
|
||||
* [Tmailor.com](https://tmailor.com/)
|
||||
* [More Sites](https://rentry.org/i3ozxg6f) - List of sites that didn't make it
|
||||
|
||||
***
|
||||
|
||||
## ▷ Anonymous Emails
|
||||
|
||||
* [5yMail](https://www.5ymail.com/)
|
||||
* [anonymousemail.me](https://anonymousemail.me/)
|
||||
* [Anonymouse](http://anonymouse.org/anonemail.html)
|
||||
* [Send Anonymous Email](http://www.sendanonymousemail.net/)
|
||||
* [Paranoia Remailer](https://remailer.paranoici.org/index.php)
|
||||
* [MailFreeOnline.com](https://www.mailfreeonline.com/home)
|
||||
|
||||
***
|
||||
|
||||
## ▷ Email Aliasing
|
||||
|
||||
* ⭐ **[SimpleLogin](https://simplelogin.io/)** - Email Aliasing / [GitHub](https://github.com/simple-login/app)
|
||||
* ⭐ **[addy.io](https://addy.io/)** - Email Aliasing / [GitHub](https://github.com/anonaddy/anonaddy)
|
||||
* ⭐ **[DuckDuckGo Email Protection](https://duckduckgo.com/email/)** - Email Aliasing
|
||||
* [Mailvelope](https://mailvelope.com/) - Email Aliasing Extension
|
||||
* [scr.im](http://scr.im/) - Email Aliasing
|
||||
* [altmails](https://altmails.com/) - Email Aliasing
|
||||
* [Mailgw](https://mailgw.com/) - Email Aliasing
|
||||
* [erine.email](https://erine.email/) - Email Aliasing
|
||||
* [33mail](https://33mail.com/) - Email Aliasing
|
||||
* [forwardemail](https://github.com/forwardemail/forwardemail.net) - Email Aliasing
|
||||
|
||||
***
|
||||
|
||||
## ▷ [Email Privacy](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/adblock-vpn-privacy/#wiki_.25B7_email_privacy)
|
||||
|
||||
***
|
||||
|
||||
# ► Browser Tools
|
||||
|
||||
* 🌐 **[Browser Comparisons](https://privacytests.org/)**, [2](https://avoidthehack.com/util/browser-comparison), [3](https://github.com/nerdyslacker/desktop-web-browsers)
|
||||
* ↪️ **[Privacy Browsers](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/adblock-vpn-privacy#wiki_.25BA_web_privacy)**
|
||||
* ⭐ **[BrowserBench](https://browserbench.org/)** or [WPT](https://wpt.fyi) - Browser Benchmark Tests
|
||||
* ⭐ **[WhatTrainIsItNow?](https://whattrainisitnow.com/)** - Track Firefox Releases
|
||||
* ⭐ **[Firefox Keyboard Shortcuts](https://support.mozilla.org/en-US/kb/keyboard-shortcuts-perform-firefox-tasks-quickly)**
|
||||
* ⭐ **[Chrome Keyboard Shortcuts](https://support.google.com/chrome/answer/157179)**
|
||||
* [VsyncTester](https://vsynctester.com/) - Browser VSYNC Test
|
||||
@ -603,6 +443,7 @@
|
||||
* [NoMoreEdge](https://github.com/KodeByWrath/NoMoreEdge), [Edge_Removal.bat](https://github.com/AveYo/fox/blob/main/Edge_Removal.bat) or [MSEdgeRedirect](https://github.com/rcmaehl/MSEdgeRedirect) - Redirect Microsoft Edge
|
||||
* [WhatIsMyBrowser](https://developers.whatismybrowser.com/) - User Agent Archive
|
||||
* [Irchiver](https://irchiver.com/) - Automatic Web Browser Screenshots
|
||||
* [BugMeNot](https://bugmenot.com/), [FreeAccount](https://freeaccount.biz/) or [Password Login](https://password-login.com/) - Access & Share Throwaway Accounts
|
||||
|
||||
***
|
||||
|
||||
@ -619,13 +460,16 @@
|
||||
* ↪️ **[Bookmark Managers](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/internet-tools#wiki_.25B7_bookmark_managers)**
|
||||
* ↪️ **[Tab Managers](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_tab_managers)**
|
||||
* ↪️ **[Customizable New Tab Page](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_browser_startpages)**
|
||||
* ⭐ **[Stylus](https://add0n.com/stylus.html)** - Custom Website Color Schemes / [User Styles](https://userstyles.world/), [2](https://uso.kkx.one/) / [Oldschool Styles](https://forum.spacehey.com/topic?id=90895)
|
||||
* ⭐ **[Stylus](https://add0n.com/stylus.html)** - Custom Website Color Schemes / [User Styles](https://userstyles.world/), [2](https://uso.kkx.one/)
|
||||
* ⭐ **[DarkReader](https://darkreader.org/)**, [Midnight Lizard](https://midnight-lizard.org/) or [Custom Dark Mode](https://mybrowseraddon.com/custom-dark-mode.html) - Dark Mode
|
||||
* ⭐ **[Zoom WE](https://pastebin.com/SpCdPywv)** or [Custom Page Zoom](https://mybrowseraddon.com/custom-page-zoom.html) - Improves Zoom Functionality
|
||||
* ⭐ **[ScrollAnywhere](https://pastebin.com/W3jwbBac)** - Improves Scrolling Functionality
|
||||
* ⭐ **[Clipboard2File](https://pastebin.com/JjDzqq8x)** - Upload Images from Clipboard
|
||||
* ⭐ **[Clipper](https://clipper.website/)** or [Copycat](https://github.com/BlackGlory/Copycat) - Copy Content in Multiple Formats
|
||||
* ⭐ **[Redirector](https://einaregilsson.com/redirector/)** - Page Redirector
|
||||
* ⭐ **[Feedbro](https://nodetics.com/feedbro/)**, [Brief](https://github.com/brief-rss/brief), [Smart-RSS](https://github.com/SmartRSS/Smart-RSS) or [Fraidycat](https://fraidyc.at/) - RSS Feed Readers
|
||||
* [Privacy Pass](https://github.com/cloudflare/pp-browser-extension) - Save Captcha Tokens
|
||||
* [NopeCHA](https://nopecha.com/) / [Required Tokens](https://nopecha.com/manage) / [Discord](https://discord.com/invite/yj7cTYBQaw), [Buster](https://github.com/dessant/buster) or [JKCS](https://git.coom.tech/araragi/JKCS) - Auto Captcha Solvers
|
||||
* [CRX Viewer](https://robwu.nl/crxviewer/) - View Extension Source Code
|
||||
* [Browserboost](https://browserboost.org/) - Add Features to Browsers
|
||||
* [Extensions CSE](https://cse.google.com/cse?cx=86d64a73544824102) - Multi-Site Extension Search
|
||||
@ -639,7 +483,7 @@
|
||||
* [Quick Tabs](https://github.com/babyman/quick-tabs-chrome-extension) - Quickly Switch between Current & Recently Closed Tabs
|
||||
* [Always Right](https://github.com/autonome/Always-Right/) - Always Open New Tabs to the Right
|
||||
* [User Agent Switcher](https://add0n.com/useragent-switcher.html) - Switch your User-Agent
|
||||
* [Auto Tab Discard](https://add0n.com/tab-discard.html), [Tab Wrangler](https://github.com/tabwrangler/tabwrangler) - Discard Inactive Tabs
|
||||
* [Auto Tab Discard](https://add0n.com/tab-discard.html), [Tab Wrangler](https://github.com/tabwrangler/tabwrangler), [The Marvellous Suspender](https://gioxx.org/chromeaddons/the-marvellous-suspender/) - Discard Inactive Tabs
|
||||
* [Snooze Tabs](https://github.com/bwinton/SnoozeTabs) - Temporarily Snooze Tabs
|
||||
* [AutoRefresh](https://autorefresh.io/) or [Tab Auto Refresh](https://mybrowseraddon.com/tab-auto-refresh.html) - Refresh Tabs
|
||||
* [Tab for a Cause](https://tab.gladly.io/) - New Tabs = Charity Donation
|
||||
@ -652,7 +496,7 @@
|
||||
* [OceanHero](https://oceanhero.today/) - Save the Ocean via Search
|
||||
* [Magnifying Glass](https://mybrowseraddon.com/magnifying-glass.html) - Magnify Webpages
|
||||
* [Print Edit WE](https://pastebin.com/LJeT3NyB) - Edit Pages to Make them Printable
|
||||
* [Grammarly](https://www.grammarly.com/) - Grammar Check
|
||||
* [Grammarly](https://www.grammarly.com/) - Grammar Checker
|
||||
* [PageZipper](https://www.printwhatyoulike.com/pagezipper) or [AutoPagerize](http://autopagerize.net/) - Merges a Sites "Next" Pages
|
||||
* [Turn Off the Lights](https://www.turnoffthelights.com/) or [Theater Mode](https://mybrowseraddon.com/theater-mode.html) - Play Videos in Theater Mode
|
||||
* [Zoom Redirector](https://github.com/arkadiyt/zoom-redirector) - Redirect Zoom Links to Web Client
|
||||
@ -669,7 +513,6 @@
|
||||
* [ColorZilla](https://www.colorzilla.com/) or [ColorFish](https://ui.vision/colorfish) - Color Picker
|
||||
* [Clippings](https://aecreations.io/clippings/index.php) or [Quick Copy](https://github.com/ramitmittal/quick-copy) - Clipboard Manager
|
||||
* [Emoji Addon](https://www.emojiaddon.com/) - Quickly Copy / Paste Emojis
|
||||
* [Copycat](https://github.com/BlackGlory/Copycat) - Copy Content in Multiple Formats
|
||||
* [Allow Right Click](https://add0n.com/allow-right-click.html) / [GitHub](https://github.com/lunu-bounir/allow-right-click) - Force Enable Right Click
|
||||
* [Copy Selection as Markdown](https://github.com/0x6b/copy-selection-as-markdown) - Copy Text as Markdown
|
||||
* [CopyFish](https://ocr.space/copyfish) - Grab Text from Images
|
||||
@ -680,7 +523,7 @@
|
||||
* [EditThisCookie](https://www.editthiscookie.com/) or [Cookie-Editor](https://cookie-editor.cgagnier.ca/) - Cookies Managers
|
||||
* [Get-cookies.txt](https://github.com/kairi003/Get-cookies.txt-LOCALLY) or [ExportCookies](https://github.com/rotemdan/ExportCookies) - Cookies Exporters
|
||||
* [Cookie-Editor](https://cookie-editor.com/) - Cooke Editor
|
||||
* [Link Gopher](https://sites.google.com/site/linkgopher/), [Link Extractor](https://link-extractor.cssnr.com/), [Copy Selected Links](https://addons.mozilla.org/en-US/firefox/addon/copy-selected-links/) or [CopyLinks++](https://github.com/MichelePezza/CopyLinksplusplus) - Extract / Copy Links on Webpages
|
||||
* [Link Gopher](https://sites.google.com/site/linkgopher/), [Copy Selected Links](https://addons.mozilla.org/en-US/firefox/addon/copy-selected-links/) or [CopyLinks++](https://github.com/MichelePezza/CopyLinksplusplus) - Extract / Copy Links on Webpages
|
||||
* [Distil](https://distill.io/) or [Update Scanner](https://sneakypete81.github.io/updatescanner/) - Page Change Detection / Notification
|
||||
* [Offline Mode](https://mybrowseraddon.com/offline-mode.html) - Disconnect Browser from the Internet
|
||||
* [Page Edit](https://mybrowseraddon.com/page-edit.html) - Turn Webpages into Editable Documents
|
||||
@ -702,7 +545,7 @@
|
||||
* [GoFullPage](https://gofullpage.com/), [Easy Screenshot](https://webextension.org/listing/screenshot.html) or [FireShot](https://addons.mozilla.org/en-GB/firefox/addon/fireshot/) - Full Page Screenshots
|
||||
* [Bulk URL Opener](https://bulkurlopener.com/) or [Open-Multiple-URLs](https://github.com/htrinter/Open-Multiple-URLs/) - Open Multiple URLs in One Click
|
||||
* [PronounDB](https://pronoundb.org/) - Pronoun Addon
|
||||
* [XKit](https://github.com/new-xkit/XKit) - Tumblr Enhancement Extension
|
||||
* [XKit](https://github.com/new-xkit/XKit) - Make Tumblr More Usable
|
||||
* [Tab Session Manager](https://tab-session-manager.sienori.com/), [Sessionic](https://github.com/navorite/sessionic) or [Session Buddy](https://sessionbuddy.com/) - Session Managers
|
||||
* [Peek](https://github.com/corbindavenport/peek) - Shows Images & Videos Behind Links & Thumbnails
|
||||
* [Edge Stats](https://edge-stats.com/) - Compare / Analyze Edge Extensions
|
||||
@ -728,13 +571,12 @@
|
||||
* [New Tab Override](https://www.soeren-hentzschel.at/firefox-webextensions/new-tab-override/) - Pick Site that Opens in New Tabs
|
||||
* [Multi Tabs](https://addons.mozilla.org/en-US/firefox/addon/search-multi-tabs/) - Multi Tab Word Search
|
||||
* [Search Site WE](https://addons.mozilla.org/en-US/firefox/addon/search-site-we/) - Search Current Domain
|
||||
* [LanguageTool](https://addons.mozilla.org/en-US/firefox/addon/languagetool/) - Grammar Check
|
||||
* [Firefox Color](https://color.firefox.com/) or [SwiftTheme](https://addons.mozilla.org/en-US/firefox/addon/swifttheme/) - Custom Firefox Theme Creation
|
||||
* [Simple Gesture](https://github.com/utubo/firefox-simple_gesture) or [Gesturefy](https://github.com/Robbendebiene/Gesturefy) - Mouse Gestures
|
||||
* [Happy Right-Click](https://addons.mozilla.org/en-US/firefox/addon/%E5%BF%AB%E4%B9%90%E5%8F%B3%E9%94%AE/) - Force Enable Right Click
|
||||
* [User-Agent String Switcher](https://addons.mozilla.org/en-US/firefox/addon/user-agent-string-switcher/) - Switch your User-Agent
|
||||
* [Always Visible](https://addons.mozilla.org/en-US/firefox/addon/always-visible/) - Always Active / On-Top Window
|
||||
* [SoundFixer](https://github.com/valpackett/soundfixer) or [600% Sound](https://addons.mozilla.org/en-US/firefox/addon/600-sound-volume/) - Fixes / Increase Browser Audio
|
||||
* [SoundFixer](https://github.com/valpackett/soundfixer) - Fixes Audio Playing in one Channel
|
||||
* [Read Aloud](https://readaloud.app/) - Text to Speech
|
||||
* [Sage-Like](https://addons.mozilla.org/en-US/firefox/addon/sage-like/) - RSS Feed Reader
|
||||
* [Want My RSS](https://github.com/Reeywhaar/want-my-rss) - Restores Firefox RSS Features
|
||||
@ -748,7 +590,6 @@
|
||||
* ⭐ **[chromium-web-store](https://github.com/NeverDecaf/chromium-web-store)** - Add Extensions to Ungoogled Chromium
|
||||
* ⭐ **[Foxified](https://foxified.org/)** - Use Firefox Extensions in Chrome
|
||||
* ⭐ **[Edge Chrome](https://greasyfork.org/en/scripts/439922)** - Use Edge Extensions in Chrome
|
||||
* ⭐ **[Clipper](https://clipper.website/)** - Copy Content in Multiple Formats
|
||||
* [WebCRX](https://webcrx.io/) - Install Chrome CRX Files
|
||||
* [Chrome Stats](https://chrome-stats.com/) - Compare / Analyze Chrome Extensions
|
||||
* [Extension Source Downloader](https://chromewebstore.google.com/detail/extension-source-download/dlbdalfhhfecaekoakmanjflmdhmgpea) - View Extension Source Code / [Guide](https://gist.github.com/paulirish/78d6c1406c901be02c2d)
|
||||
@ -809,6 +650,7 @@
|
||||
* ⭐ **Greasy Fork Tools** - [Enhancements](https://greasyfork.org/en/scripts/473830) / [Helper](https://greasyfork.org/en/scripts/393396) / [Tweaks](https://greasyfork.org/en/scripts/368183) / [Cleanup Script](https://greasyfork.org/en/scripts/12179) / [Themes](https://greasyfork.org/en/scripts/4336) / [Dark Theme](https://greasyfork.org/en/scripts/404443) / [Git Install](https://greasyfork.org/en/scripts/6456)
|
||||
* ⭐ **[Userscripts Guide](https://rentry.co/userscript-guide)**
|
||||
* ⭐ **[Picviewer CE+](https://greasyfork.org/en/scripts/24204)** - Image Viewing Tool
|
||||
* [Bypass Google Sorry](https://greasyfork.org/en/scripts/447130) - Bypass Google reCAPTCHA
|
||||
* [y2monkey](https://github.com/jijirae/y2monkey) - Download YouTube videos by pressing "SHIFT+D"
|
||||
* [r2monkey](https://github.com/jijirae/r2monkey) - Download Reddit videos by pressing "SHIFT+D"
|
||||
* [Remove Web Limits](https://greasyfork.org/en/scripts/28497) / [Mod](https://greasyfork.org/en/scripts/386908) - Force Enable Right Click
|
||||
@ -836,7 +678,6 @@
|
||||
|
||||
## ▷ Archive Services
|
||||
|
||||
* ↪️ **[4chan Archives](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/social-media#wiki_.25B7_4chan_archives)**
|
||||
* ⭐ **[Archive.org](https://archive.org/)** - Internet Archive
|
||||
* ⭐ **[Wayback Machine](https://web.archive.org/)** or **[Archive.is](https://archive.is/)** / [.li](https://archive.li/) / [.ph](https://archive.ph/) / [.vn](https://archive.vn/) / [.fo](https://archive.fo/) / [.md](https://archive.md/) - Archive Web Pages
|
||||
* ⭐ **Wayback Machine Tools** - [Downloader](https://github.com/jsvine/waybackpack) / [Browser Extension](https://github.com/internetarchive/wayback-machine-webextension), [2](https://vegetableman.github.io/vandal/) / [Script](https://github.com/overcast07/wayback-machine-spn-scripts) / [Auto Load](https://gitlab.com/gkrishnaks/WaybackEverywhere-Firefox)
|
||||
@ -844,6 +685,7 @@
|
||||
* ⭐ **[CachedView](https://cachedview.nl/)** or [Quick Cache](https://cybdetective.com/quickcacheandarhivesearch.html) - Aggregate Cache Results
|
||||
* [ArchiveTeam](https://wiki.archiveteam.org/index.php/Main_Page) - Archive Projects
|
||||
* [Perma.cc](https://perma.cc/) - Create Permalinks
|
||||
* [Ghost Archive](https://ghostarchive.org/) or [Megalodon](https://megalodon.jp/) - Archive Twitter Threads
|
||||
|
||||
***
|
||||
|
||||
@ -851,7 +693,6 @@
|
||||
|
||||
* 🌐 **[Awesome Web Archiving](https://github.com/iipc/awesome-web-archiving)** - Web Archiving Tools
|
||||
* 🌐 **[Webrecorder](https://webrecorder.net/)** - Open-source Archiving Tools
|
||||
* ↪️ **[Twitter Archiving](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/social-media#wiki_.25B7_twitter_archiving)**
|
||||
* ⭐ **[ArchiveBox](https://archivebox.io)** - Self-hosted Web Archiving / [GitHub](https://github.com/archivebox/archivebox)
|
||||
* ⭐ **[MarkDownload](https://github.com/deathau/markdownload)** or [MarkdownDown](https://markdowndown.vercel.app/) - Download Web Pages as Markdown Files
|
||||
* ⭐ **[HTTrack](https://www.httrack.com/)** / [Guide](https://rentry.co/cloneasite) - Website Downloader
|
||||
@ -891,12 +732,10 @@
|
||||
|
||||
* 🌐 **[Awesome OSINT](https://github.com/jivoi/awesome-osint)** - Awesome OSINT
|
||||
* ↪️ **[Photo Forensics](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/img-tools/#wiki_.25B7_photo_forensics)**
|
||||
* ↪️ **[Domain / DNS Info](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/internet-tools#wiki_.25B7_domain_.2F_dns)**
|
||||
* ⭐ **[IntelTechniques](https://inteltechniques.com/index.html)** or [OSINT Techniques](https://www.osinttechniques.com/) - OSINT Resources
|
||||
* ⭐ **[Analyst Research Tools](https://analystresearchtools.com/)** - Tools and Resources
|
||||
* [Osintracker](https://www.osintracker.com/) - Track Your Investigations
|
||||
* [Cyber Detective](https://cybdetective.com/) / [GitHub](https://github.com/cipher387) - Tools, Techniques, and Projects
|
||||
* [Harpoon](https://github.com/Te-k/harpoon) - OSINT CLI Tool
|
||||
* [Project Owl](https://discord.com/invite/projectowl) - OSINT Community
|
||||
* [OSINT Dojo](https://www.osintdojo.com/resources/) - OSINT Guides
|
||||
* [Hackers Arise OSINT](https://www.hackers-arise.com/osint) - OSINT Guides
|
||||
@ -927,4 +766,3 @@
|
||||
* [OSINT Resources](https://start.me/p/1kAP0b/osint-resources) - General Index
|
||||
* [OSINT Essentials](https://www.osintessentials.com/) - General Index
|
||||
* [OSINTgeek](https://osintgeek.de/tools) - General Index
|
||||
* [Awesome Telegram OSINT](https://github.com/ItIsMeCall911/Awesome-Telegram-OSINT) or [The OSINT Toolbox](https://github.com/The-Osint-Toolbox/Telegram-OSINT) - Telegram OSINT Indexes
|
||||
|
@ -38,10 +38,8 @@
|
||||
|
||||
## ▷ Linux Guides
|
||||
|
||||
* ↪️ **[Bash / CLI Cheat Sheets](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_cli_cheat_sheets)**
|
||||
* ⭐ **[Archwiki](https://wiki.archlinux.org/)** - Arch Linux Guide / [Manuals](https://man.archlinux.org/) / [TUI](https://codeberg.org/theooo/mantra.py)
|
||||
* ⭐ **[InstallGentoo](https://wiki.installgentoo.com/)** - Linux Guides
|
||||
* [GameShell](https://github.com/phyver/GameShell) - Unix Shell Learning Game
|
||||
* [Gentoo Wiki](https://wiki.gentoo.org/wiki/Main_Page) - Gentoo Guides
|
||||
* [HowToLinux](https://howtolinux.vercel.app) - Linux Guides
|
||||
* [HowtoForge](https://www.howtoforge.com/) - Linux Guides
|
||||
@ -59,7 +57,7 @@
|
||||
* 🌐 **[Awesome Gnome](https://github.com/Kazhnuz/awesome-gnome)** - GNOME Resources
|
||||
* ⭐ **[Ventoy](https://www.ventoy.net)** / [GitHub](https://github.com/ventoy/Ventoy) or [Impression](https://gitlab.com/adhami3310/Impression) - Create Bootable USB Linux Drives
|
||||
* ⭐ **[Btop](https://github.com/aristocratos/btop)**, **[fastfetch](https://github.com/fastfetch-cli/fastfetch)**, **[MangoHud](https://github.com/flightlessmango/MangoHud)**, [CPU-X](https://github.com/TheTumultuousUnicornOfDarkness/CPU-X), [Macchina](https://github.com/Macchina-CLI/macchina), [Archey4](https://github.com/HorlogeSkynet/archey4), [Hyfetch](https://github.com/hykilpikonna/hyfetch) or [s-tui](https://github.com/amanusk/s-tui) - System Info / Resource Monitors
|
||||
* ⭐ **[TimeShift](https://github.com/linuxmint/timeshift)** - System Restore / Backup
|
||||
* :star: **[TimeShift](https://github.com/linuxmint/timeshift)** - System Restore / Backup
|
||||
* [DistroSea](https://distrosea.com/), [anuraOS](https://github.com/MercuryWorkshop/anuraOS) - Linux Browser Emulator
|
||||
* [SysmonForLinux](https://github.com/Sysinternals/SysmonForLinux) - Monitor / Log System Activity
|
||||
* [screenFetch](https://github.com/KittyKatt/screenFetch) - Bash Screenshot Information Tool
|
||||
@ -84,9 +82,8 @@
|
||||
* [CoreELEC](https://coreelec.org) / [GitHub](https://github.com/CoreELEC/CoreELEC) or [LibreELEC](https://libreelec.tv/) - Kodi-Based Operating System
|
||||
* [WSL](https://learn.microsoft.com/en-us/windows/wsl/) - Run Linux on Windows / [Resources](https://github.com/sirredbeard/Awesome-WSL) / [Startup Launcher](https://github.com/nullpo-head/wsl-distrod) / [Wayland / X Server](https://github.com/microsoft/wslg)
|
||||
* [Boxes](https://wiki.gnome.org/Apps/Boxes) - Virtual Machine Manager
|
||||
* [fvwm](https://www.fvwm.org/) or [Linux-KVM](https://www.linux-kvm.org/page/Downloads) - Virtual Machines
|
||||
* [WebVM](https://webvm.io/) - Browser Virtual Machine / [Discord](https://discord.gg/yTNZgySKGa)
|
||||
* [OSX-KVM](https://github.com/kholia/OSX-KVM), [OneClick-macOS-Simple-KVM](https://notAperson535.github.io/OneClick-macOS-Simple-KVM) or [macOS-Simple-KVM](https://github.com/foxlet/macOS-Simple-KVM) - macOS Virtual Machines
|
||||
* [Linux-KVM](https://www.linux-kvm.org/page/Downloads) - Kernel-Based Virtual Machine
|
||||
* [OSX-KVM](<https://github.com/kholia/OSX-KVM>), [OneClick-macOS-Simple-KVM](<https://notAperson535.github.io/OneClick-macOS-Simple-KVM>) or [macOS-Simple-KVM](<https://github.com/foxlet/macOS-Simple-KVM>) - macOS Virtual
|
||||
* [kmon](https://kmon.cli.rs/) - Kernel Manager and Activity Monitor
|
||||
* [Kernel Map](https://makelinux.github.io/kernel/map/) - Interactive Linux Kernel Map
|
||||
* [SystemRescue](https://www.system-rescue.org/) or [Super Grub2 Disk](https://www.supergrubdisk.org/super-grub2-disk/) - Bootable System Rescue Toolkits
|
||||
@ -116,7 +113,7 @@
|
||||
***
|
||||
|
||||
* 🌐 **[Window Manager Index](https://wiki.archlinux.org/title/Window_manager)** - List of Window Managers
|
||||
* [awesomewm](https://github.com/awesomeWM/awesome) - Window Manager / [Arch Wiki](https://wiki.archlinux.org/title/Awesome)
|
||||
* ⭐ **[awesomewm](https://github.com/awesomeWM/awesome)** - Window Manager / [Arch Wiki](https://wiki.archlinux.org/title/Awesome)
|
||||
* [dwm](https://dwm.suckless.org) - Window Manager / [Arch Wiki](https://wiki.archlinux.org/title/Dwm)
|
||||
* [qtile](https://qtile.org/) - Window Manager / [Arch Wiki](https://wiki.archlinux.org/title/Qtile)
|
||||
* [xmonad](https://xmonad.org/) - Window Manager / [Arch Wiki](https://wiki.archlinux.org/title/Xmonad)
|
||||
@ -225,7 +222,6 @@
|
||||
* [Gromit MPX](https://github.com/bk138/gromit-mpx) - Screen Annotation
|
||||
* [Spectacle](https://apps.kde.org/spectacle/) - Screen Recorder / Clipping
|
||||
* [AV Linux](https://www.bandshed.net/avlinux/) - Video / Audio Editor
|
||||
* [REAL Video Enhancer](https://github.com/TNTwise/REAL-Video-Enhancer) - Video Upscaling
|
||||
* [4KTUBE](https://github.com/rishabh3354/4KTUBE) or [Video Downloader](https://github.com/Unrud/video-downloader) - Video Downloaders
|
||||
* [Peek](https://github.com/phw/peek) - Simple Video / GIF recorder
|
||||
* [Linux-Fake-Background-Webcam](https://github.com/fangfufu/Linux-Fake-Background-Webcam/) - Fake Webcam Background
|
||||
@ -252,7 +248,7 @@
|
||||
* [g4music](https://gitlab.gnome.org/neithern/g4music) - Audio Player
|
||||
* [dopamine](https://github.com/digimezzo/dopamine) - Audio Player
|
||||
* [AudioTube](https://invent.kde.org/multimedia/audiotube) - Audio Player
|
||||
* [Monophony](https://gitlab.com/zehkira/monophony) - YouTube Music Client
|
||||
* [Monophony](https://gitlab.com/Vistaus/monophony) - YouTube Music Client
|
||||
* [ytermusic](https://github.com/ccgauche/ytermusic/) - YouTube Music Downloader
|
||||
* [Deezer Linux](https://github.com/aunetx/deezer-linux) or [DZR](https://github.com/yne/dzr) - Deezer Clients
|
||||
* [Myuzi](https://gitlab.com/albanobattistella/myuzi) - Music Streaming App
|
||||
@ -272,13 +268,13 @@
|
||||
## ▷ Linux Images
|
||||
|
||||
* ⭐ **[Flameshot](https://flameshot.org/)** or [Scrot](https://github.com/resurrecting-open-source-projects/scrot) - Screenshot Tools
|
||||
* ⭐ **[TextSnatcher](https://textsnatcher.rf.gd/)** or [Frog](https://getfrog.app/) / [GitHub](https://github.com/TenderOwl/Frog/) - Image to Text
|
||||
* ⭐ **[TextSnatcher](https://textsnatcher.rf.gd/)** or [Frog](https://tenderowl.com/work/frog/) - Image to Text
|
||||
* [photoshopCClinux](https://github.com/Gictorbit/photoshopCClinux) - Linux Photoshop Installer
|
||||
* [V4L2Loopback](https://github.com/umlaeute/v4l2loopback) - Create Virtual Cameras
|
||||
* [Drawing](https://maoschanz.github.io/drawing/) - Drawing App
|
||||
* [Feh](https://feh.finalrewind.org/) or [NSXIV](https://github.com/nsxiv/nsxiv) - Image Viewer
|
||||
* [lsix](https://github.com/hackerb9/lsix) - View Images in Terminal
|
||||
* [Upscaler](https://gitlab.gnome.org/World/Upscaler) - Image Upscaler
|
||||
* [Upscaler](https://gitlab.com/TheEvilSkeleton/Upscaler) - Image Upscaler
|
||||
* [Trimage](https://trimage.org/) or [Curtail](https://github.com/Huluti/Curtail) - Image Compressor
|
||||
* [MkPosters](https://github.com/patrick-kidger/mkposters) - Turn Markdown Files into Posters
|
||||
* [Rapid](https://damonlynch.net/rapid/) - Quick Linux Photo Importer
|
||||
@ -289,7 +285,6 @@
|
||||
|
||||
* 🌐 **[Awesome-ttygames](https://github.com/ligurio/awesome-ttygames)** - Unix ASCII Games
|
||||
Linux Gaming Guide
|
||||
* 🌐 **[Are We Anti-Cheat Yet?](https://areweanticheatyet.com/)** - Anti-Cheat Game Database / GNU/Linux & Wine/Proton Compatibility
|
||||
* ⭐ **[Comprehensive Gaming Guide](https://linux-gaming.kwindu.eu/index.php?title=Main_Page)** / [2](https://github.com/rimsiw/linux-gaming-omg) / [3](https://web.archive.org/web/20221022121735/https://www.reddit.com/r/Piracy/comments/ndrtlf/comment/gyccwhk/?context=3) / [4](https://www.reddit.com/r/LinuxCrackSupport/wiki/index) - Linux Gaming Guides
|
||||
* ⭐ **[protondb](https://www.protondb.com/)**- Proton Compatibility Descriptions / [Steam Extension](https://github.com/Trsnaqe/protondb-community-extension)
|
||||
* ⭐ **[Lutris](https://lutris.net/)** - Games Manager
|
||||
@ -396,18 +391,16 @@ Linux Gaming Guide
|
||||
* [Rang3r](https://github.com/floriankunushevci/rang3r) - IP / Port Scanner
|
||||
* [sttr](https://github.com/abhimanyu003/sttr) - Base64 Encryption / Decryption TUI
|
||||
* [Knapsu](https://knapsu.eu/plex/) or [Cloudbox](https://cloudbox.works/) - Media Server
|
||||
* [ansible-hms-docker](https://github.com/ahembree/ansible-hms-docker) or [DockSTARTer](https://github.com/GhostWriters/DockSTARTer) - Automated Docker Media Server Setups
|
||||
* [ansible-hms-docker](https://github.com/ahembree/ansible-hms-docker) - Automated Media Server Setup
|
||||
* [Netflix Proxy](https://github.com/ab77/netflix-proxy/) - Streaming Service Proxy
|
||||
* [Docket-Jacket](https://github.com/linuxserver/docker-jackett) - Docker Jacket Container
|
||||
* [swizzin](https://swizzin.ltd/) - Seedbox for Ubuntu / Debian
|
||||
* [rtinst](https://github.com/arakasi72/rtinst) - Seedbox Installation Script for Ubuntu / Debian
|
||||
* [SeedSync](https://github.com/ipsingh06/seedsync) - Sync your Seedbox
|
||||
* [GNU Social](https://gnusocial.network/) - Self-Hosted Social Networking Platform
|
||||
* [Teams for Linux](https://github.com/IsmaelMartinez/teams-for-linux) - Collaboration Platform
|
||||
* [Hexchat](https://hexchat.github.io/), [Adium](https://adium.im/), [Polari](https://wiki.gnome.org/Apps/Polari), [Irssi](https://github.com/irssi/irssi) or [Weechat](https://weechat.org/) - IRC Clients
|
||||
* [Dino](https://dino.im/) - XMPP Client
|
||||
* [gurk-rs](https://github.com/boxdot/gurk-rs) - Signal Client
|
||||
* [ZapZap](https://rtosta.com/zapzap-web/) - WhatsApp Client
|
||||
* [YouTube-Viewer](https://github.com/trizen/youtube-viewer), [Pipe Viewer](https://github.com/trizen/pipe-viewer) or [Pipeline](https://gitlab.com/schmiddi-on-mobile/pipeline) - YouTube Clients
|
||||
* [Giara](https://aur.archlinux.org/packages/giara/) - Reddit Client
|
||||
* [BetterDiscordctl](https://github.com/bb010g/betterdiscordctl) - Modded Discord Client / [Guide](https://gist.github.com/ObserverOfTime/d7e60eb9aa7fe837545c8cb77cf31172)
|
||||
@ -423,8 +416,9 @@ Linux Gaming Guide
|
||||
|
||||
* 🌐 **[Linux File Backup](https://github.com/restic/others)** - File Backup App List
|
||||
* ⭐ **[Warpinator](https://github.com/linuxmint/warpinator)**, [rQuickshare](https://github.com/Martichou/rquickshare), [Magic Wormhole](https://github.com/magic-wormhole/magic-wormhole), [syncthing](https://syncthing.net/) / [Tray Support](https://martchus.github.io/syncthingtray/), [portal](https://github.com/SpatiumPortae/portal), [Zrok](https://zrok.io/), [Celeste](https://flathub.org/apps/details/com.hunterwittenborn.Celeste) / [2](https://snapcraft.io/celeste) or [Sharing](https://github.com/parvardegr/sharing) - File Sync Apps
|
||||
* ⭐ **[Baobab](https://gitlab.gnome.org/GNOME/baobab)**, **[lf](https://github.com/gokcehan/lf)**, [ranger](https://ranger.fm), [nnn](https://github.com/jarun/nnn), [clifm](https://github.com/leo-arch/clifm), [fm](https://github.com/mistakenelf/fm), [Superfile](https://github.com/yorukot/superfile), [Joshuto](https://github.com/kamiyaa/joshuto), [dut](https://codeberg.org/201984/dut), [gdu](https://github.com/dundee/gdu) or [NCDU](https://dev.yorhel.nl/ncdu) - Terminal File Manager / Disk Usage Analyzers
|
||||
* ⭐ **[Baobab](https://gitlab.gnome.org/GNOME/baobab)** - Disk Usage Analyzer
|
||||
* [ANGRYsearch](https://github.com/DoTheEvo/ANGRYsearch), [CatCLI](https://github.com/deadc0de6/catcli), [xplr](https://xplr.dev/) / [GitHub](https://github.com/sayanarijit/xplr) / [Discord](https://discord.com/invite/JmasSPCcz3), [logo-ls](https://github.com/Yash-Handa/logo-ls), [ugrep](https://ugrep.com) / [GitHub](https://github.com/Genivia/ugrep) or [Achoz](https://github.com/kcubeterm/achoz) - File Explorers
|
||||
* ⭐ **[lf](https://github.com/gokcehan/lf)**, [ranger](https://ranger.fm), [nnn](https://github.com/jarun/nnn), [clifm](https://github.com/leo-arch/clifm), [fm](https://github.com/mistakenelf/fm), [Superfile](https://github.com/yorukot/superfile), [Joshuto](https://github.com/kamiyaa/joshuto), [gdu](https://github.com/dundee/gdu) or [NCDU](https://dev.yorhel.nl/ncdu) - Terminal File Manager / Disk Usage Analyzers
|
||||
* [Dolphin](https://userbase.kde.org/Dolphin) or [SpaceFM](https://ignorantguru.github.io/spacefm/) - File Managers
|
||||
* [Collector](https://mijorus.it/projects/collector/) - File Drag & Drop
|
||||
* [Bash Upload](https://bashupload.com/) - Bash File Upload 50GB / 3 days
|
||||
@ -450,9 +444,9 @@ Linux Gaming Guide
|
||||
* 🌐 **[Awesome Shell](https://github.com/alebcay/awesome-shell)**, [tldr](https://github.com/tldr-pages/tldr/) or [AltBox](https://altbox.dev/) - Linux Shell Resources
|
||||
* 🌐 **[Awesome TUIs](https://github.com/rothgar/awesome-tuis)** or [TerminalTrove](https://terminaltrove.com/) - List of TUIs
|
||||
* ↪️ **[Linux Shell Index](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_command_line_shells)** or [Modern Unix](https://github.com/ibraheemdev/modern-unix)
|
||||
* ↪️ **[Bash / CLI Cheat Sheets](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_cli_cheat_sheets)**
|
||||
* ⭐ **[Alacritty](https://alacritty.org)**, **[Kitty](https://sw.kovidgoyal.net/kitty/overview/)**, [Simple Terminal](https://st.suckless.org/), [Wave](https://www.waveterm.dev/), [yakuake](https://apps.kde.org/yakuake/), [emacs-eat](https://codeberg.org/akib/emacs-eat) or [tabby](https://tabby.sh/) - Linux Terminals
|
||||
* ⭐ **[Shell GPT](https://github.com/TheR1D/shell_gpt)**, [2](https://github.com/jiacai2050/shellgpt) - AI Terminal Chatbot / GPT
|
||||
* [Liquidprompt](https://github.com/liquidprompt/liquidprompt) - Bash / Zsh Prompt
|
||||
* [utils](https://github.com/Loupeznik/utils) or [UsefulLinuxShellScripts](https://github.com/jackrabbit335/UsefulLinuxShellScripts) - Linux Shell Tool Scripts
|
||||
* [Gum](https://github.com/charmbracelet/gum) - Shell Script Creator
|
||||
* [ShellCheck](https://www.shellcheck.net/) - Shell Script Bug Check
|
||||
@ -462,7 +456,7 @@ Linux Gaming Guide
|
||||
* [bash_loading_animations](https://github.com/Silejonu/bash_loading_animations) - Bash Loading Animations
|
||||
* [bash-it](https://github.com/Bash-it/bash-it) or [Bashly](https://bashly.dannyb.co/) - Bash Frameworks
|
||||
* [zx](https://google.github.io/zx/) or [dax](https://github.com/dsherret/dax) - Write Complex Scripts
|
||||
* [Basher](https://www.basher.it/) or [bpkg](https://bpkg.sh/) - Bash Package Manager
|
||||
* [Basher](https://www.basher.it/) - Bash Script Package Manager
|
||||
* [yakuake](https://apps.kde.org/yakuake/) - Terminal Emulator
|
||||
* [XTerm](https://invisible-island.net/xterm/) - X Window System Terminal Emulator
|
||||
* [hush](https://github.com/hush-shell/hush) - Unix Shell
|
||||
@ -498,6 +492,7 @@ Linux Gaming Guide
|
||||
* [Polybar (X11)](https://github.com/polybar/polybar), [Iron Bar](https://github.com/JakeStanger/ironbar) (Wayland) or [Waybar](https://github.com/Alexays/Waybar) (Wayland) - Customizable Status Bars
|
||||
* [MacBuntu Transformation Pack](https://www.noobslab.com/2018/08/macbuntu-1804-transformation-pack-ready.html), [2](https://www.noobslab.com/2017/06/macbuntu-transformation-pack-ready-for.html) - Mac Theme
|
||||
* [Windows-10](https://b00merang.weebly.com/windows-10.html) - Windows 10 Theme
|
||||
* [La Capitaine](https://github.com/keeferrourke/la-capitaine-icon-theme), [Moka](https://snwh.org/moka), [Numix](https://github.com/numixproject/numix-icon-theme) or [Papirus](https://github.com/PapirusDevelopmentTeam/papirus-icon-theme) - Linux Icon Themes
|
||||
* [xScreensaver](https://www.jwz.org/xscreensaver/) - Linux Screensavers
|
||||
* [Fondo](https://github.com/calo001/fondo), [varietywalls](https://github.com/varietywalls/variety), [HydraPaper](https://hydrapaper.gabmus.org/), [styli.sh](https://github.com/thevinter/styli.sh) or [Komorebi](https://github.com/cheesecakeufo/komorebi) - Wallpaper Managers
|
||||
* [Video Wallpaper](https://github.com/ghostlexly/gpu-video-wallpaper) - Use Videos as Animated Wallpaper
|
||||
@ -518,7 +513,7 @@ Linux Gaming Guide
|
||||
* ⭐ **[NearDrop](https://github.com/grishka/NearDrop)** or [maestral](https://maestral.app/) - File Sharing Apps
|
||||
* ⭐ **[shottr](https://shottr.cc/)** or [MagicCap](https://magiccap.me/) - Screenshot Tool
|
||||
* ⭐ **[Aptonic](https://aptonic.com/)** - Mac Productivity App
|
||||
* ⭐ **[Alfred](https://www.alfredapp.com/)**, [Quicksilver](https://qsapp.com/) or [Raycast](https://www.raycast.com/) - Keystroke Launchers
|
||||
* ⭐ **[Alfred](https://www.alfredapp.com/)** or [Raycast](https://www.raycast.com/) - Keystroke Launchers
|
||||
* ⭐ **[CustomShortcuts](https://www.houdah.com/customShortcuts/)**, [Karabiner-Elements](https://karabiner-elements.pqrs.org/) or [ShortcutKeeper](https://shortcutkeeper.com/) - Custom Keyboard Shortcuts
|
||||
* ⭐ **[alt-tab-macos](https://alt-tab-macos.netlify.app/)** - Alt-Tab for Mac
|
||||
* ⭐ **[Fantastical](https://flexibits.com/fantastical)** - Calendar
|
||||
@ -562,7 +557,7 @@ Linux Gaming Guide
|
||||
* [Browserosaurus](https://browserosaurus.com/) - Browser Prompter
|
||||
* [Orion](https://kagi.com/orion/) - Browser w/ Chrome + Firefox Extension Support / [Discord](https://discord.com/invite/gKh5E6ys6D)
|
||||
* [Strongbox](https://strongboxsafe.com/) - Password Manager
|
||||
* [Maccy](https://maccy.app/), [ClipBook](https://clipbook.app/) or [TRex](https://trex.ameba.co/) - Clipboard Managers
|
||||
* [Maccy](https://maccy.app/) or [TRex](https://trex.ameba.co/) - Clipboard Managers
|
||||
* [Left on Read](https://leftonread.me/) or [PyPush](https://github.com/JJTech0130/pypush) / [Discord](https://discord.gg/BVvNukmfTC) - iMessage Clients
|
||||
* [LlamaChat](https://www.llamachat.app/) - Llama AI Chat
|
||||
* [MacBing](https://goodsnooze.gumroad.com/l/macbing) - Bing Chat
|
||||
@ -581,13 +576,11 @@ Linux Gaming Guide
|
||||
* [KeyPad](https://apps.apple.com/in/app/keypad-bluetooth-keyboard/id1491684442) - Connect Mac Keyboard to Mobile Devices
|
||||
* [Pinch](https://github.com/danqing/Pinch) - Trackpad Pinch to Zoom Gesture
|
||||
* [LinearMouse](https://linearmouse.app/) or [MacMouseFix](https://macmousefix.com/) - Mouse Remapping
|
||||
* [Scroll Reverser](https://pilotmoon.com/scrollreverser/) - Per-Device Scroll Settings
|
||||
* [KeyClu](https://sergii.tatarenkov.name/keyclu/support/) - Shortcut CheatSheet for Current Application
|
||||
* [rcmd](https://lowtechguys.com/rcmd/) - App Switcher Command Key
|
||||
* [KeyCastr](https://github.com/keycastr/keycastr) - Keystroke Visualizer
|
||||
* [MonitorControl](https://monitorcontrol.app/) - External Monitor Brightness / Volume Control
|
||||
* [BackgroundMusic](https://github.com/kyleneideck/BackgroundMusic) - Volume Mixer / Auto-Pause
|
||||
* [BatFi](https://micropixels.gumroad.com/l/batfi) - Battery Manager
|
||||
* [BatteryBuddy](https://batterybuddy.app/) - Cute Battery Indicator
|
||||
* [Bunch](https://bunchapp.co/) - Task Automation
|
||||
* [MacScripter](https://www.macscripter.net/) - Automation Forum
|
||||
@ -604,10 +597,10 @@ Linux Gaming Guide
|
||||
* [OnlySwitch](https://github.com/jacklandrin/OnlySwitch) - Menu Bar Toggle Switches
|
||||
* [Sloth](https://github.com/sveinbjornt/Sloth) - Process Manager
|
||||
* [pongoOS](https://github.com/checkra1n/pongoOS) - Mac Pre-Boot Executor
|
||||
* [Yabai](https://github.com/koekeishiya/yabai), [Amethyst](https://ianyh.com/amethyst/) / [GitHub](https://github.com/ianyh/Amethyst), [1Piece](https://app1piece.com/), [Spaces](https://spacesformac.xyz/), [Loop](https://github.com/MrKai77/Loop), [AeroSpace](https://github.com/nikitabobko/AeroSpace), [Phoenix](https://kasper.github.io/phoenix/) or [Rectangle](https://rectangleapp.com/) - Window Managers
|
||||
* [Yabai](https://github.com/koekeishiya/yabai), [Amethyst](https://ianyh.com/amethyst/) / [GitHub](https://github.com/ianyh/Amethyst), [1Piece](https://app1piece.com/), [Spaces](https://spacesformac.xyz/), [AeroSpace](https://github.com/nikitabobko/AeroSpace), [Phoenix](https://kasper.github.io/phoenix/) or [Rectangle](https://rectangleapp.com/) - Window Managers
|
||||
* [Later](https://getlater.app/) - Restore App Sessions
|
||||
* [AlDente](https://apphousekitchen.com/) - Charging Manager
|
||||
* [VMware](https://rentry.co/FMHYBase64#vmware) - Virtual Machine
|
||||
* [Unlocker](https://rentry.co/FMHYBase64#vmware) - VMware Unlocker
|
||||
* [USBMap](https://github.com/corpnewt/USBMap) - Map MacOS USB Ports
|
||||
* [MacVim](https://macvim.org/), [CodeEdit](https://www.codeedit.app/) or [AuroraEditor](https://auroraeditor.com/) - Code Editors
|
||||
* [iTerm2](https://iterm2.com/) - Replacements for Terminal
|
||||
@ -618,13 +611,12 @@ Linux Gaming Guide
|
||||
* [IconSet](https://github.com/tale/iconset) or [IconChamp](https://www.macenhance.com/iconchamp.html) - Custom System Icons
|
||||
* [Manila](https://github.com/neilsardesai/Manila) - Change Folder Colors
|
||||
* [Dynamic Wallpaper Club](https://dynamicwallpaper.club/) - Dynamic Wallpaper App
|
||||
* [wallpapper](https://github.com/mczachurski/wallpapper) or [Equinox](https://equinoxmac.com/) - Dynamic Wallpaper Creators
|
||||
* [wallpapper](https://github.com/mczachurski/wallpapper) - Dynamic Wallpaper Creator
|
||||
* [Plash](https://sindresorhus.com/plash) - Use Website as Wallpaper
|
||||
* [100 macOS Screensavers](https://github.com/bjdehang/100-macos-screensavers) - Minimalist Screensavers
|
||||
* [DarkModeBuddy](https://github.com/insidegui/DarkModeBuddy) or [ThemeKit](https://github.com/luckymarmot/ThemeKit) - System Dark Mode Apps
|
||||
* [Bootcamp Drivers](https://bootcampdrivers.com/) - Mac Bootcamp AMD Drivers
|
||||
* [IINA](https://iina.io/) - Video Player
|
||||
* [REAL Video Enhancer](https://github.com/TNTwise/REAL-Video-Enhancer) - Video Upscaling
|
||||
* [Gifski](https://sindresorhus.com/gifski) - Image to GIF Converter / [GitHub](https://github.com/sindresorhus/Gifski)
|
||||
* [Darkroom](https://apps.apple.com/us/app/darkroom-photo-video-editor/id953286746) - Image / Video Editor
|
||||
* [Kap](https://getkap.co) or [ScreenTimeLapse](https://github.com/wkaisertexas/ScreenTimeLapse) - Screen Recorders
|
||||
@ -689,12 +681,12 @@ Linux Gaming Guide
|
||||
|
||||
## ▷ Mac Gaming
|
||||
|
||||
* ⭐ **[Torrminatorr](https://forum.torrminatorr.com/)** - Mac Games
|
||||
* ⭐ **[Torrminatorr](https://forum.torrminatorr.com/)**
|
||||
* ⭐ **[AppleGamingWiki](https://applegamingwiki.com/)** - Mac Game Fixes / Compatibility
|
||||
* ⭐ **[Goldberg](https://github.com/inflation/goldberg_emulator)** - Steam Multiplayer Client Emulator
|
||||
* [SCNLOG](https://scnlog.me/) - Mac Games
|
||||
* [SCNLOG](https://scnlog.me/)
|
||||
* [Mac Source Ports](https://www.macsourceports.com/) - Run Old Mac Games
|
||||
* [HeroicGamesLauncher](https://heroicgameslauncher.com/) or [Mythic](https://getmythic.app/) / [Discord](https://discord.gg/58NZ7fFqPy) - Epic Games Launchers
|
||||
* [HeroicGamesLauncher](https://heroicgameslauncher.com/) / [GitHub](https://github.com/Heroic-Games-Launcher/HeroicGamesLauncher) - Epic Games Launcher
|
||||
* [Prism43](https://github.com/DomHeadroom/Prism43) - Prism Launcher / Unlocker
|
||||
* [NASOS](https://archive.org/download/nNASOS1.8/nNASOS1.8.zip) - Gamecube iso.dec to ISO Converter
|
||||
* [rbxfpsunlocker-osx](https://github.com/lanylow/rbxfpsunlocker-osx) - Roblox FPS Unlocker
|
||||
|
125
MISCGuide.md
125
MISCGuide.md
@ -46,7 +46,7 @@
|
||||
* ⭐ **[CS.RIN Mega](https://cs.rin.ru/forum/viewtopic.php?f=10&t=95461)** - Game Piracy Index
|
||||
* ⭐ **[privateersclub](https://megathread.pages.dev/)** - Game Piracy Index / [Discord](https://discord.gg/jz8dUnnD6Q)
|
||||
* ⭐ **[The Index](https://theindex.moe)** - Japanese Piracy Index / [Discord](https://discord.gg/Snackbox) / [Wiki](https://thewiki.moe/)
|
||||
* ⭐ **[Wotaku](https://wotaku.moe/)** - Otaku Index / [Discord](https://discord.gg/vShRGx8ZBC)
|
||||
* ⭐ **[Wotaku](https://wotaku.moe/)** - Otaku Index
|
||||
* ⭐ **[EverythingMoe](https://everythingmoe.com/)** - Otaku Media Index
|
||||
* [Delightful Creative Tools](https://codeberg.org/ADHDefy/delightful-creative-tools) - Media Creation Index
|
||||
* [refdesk.com](https://www.refdesk.com/toc.html) - Fact-checking Index
|
||||
@ -55,6 +55,20 @@
|
||||
* [ibiblio](https://www.ibiblio.org/) - Site / Tool Index
|
||||
* [unapothecary's terminal](https://unapothecary.neocities.org/websites) - Site / Tool Index
|
||||
* [mw.rat.bz](https://mw.rat.bz/index.html) - Site / Tool Index
|
||||
* [redshift](https://rdshft.net/links/) - Site / Tool Index
|
||||
|
||||
***
|
||||
|
||||
## ▷ Alternative Software Sites
|
||||
|
||||
* ⭐ **[AlternativeTo](https://alternativeto.net/)** - Crowdsourced Recommendations
|
||||
* [SaaSHub](https://www.saashub.com/)
|
||||
* [Alternative.me](https://alternative.me/)
|
||||
* [opensourcealternative.to](https://www.opensourcealternative.to/) - Open-source Alternatives
|
||||
* [TopAlter.com](https://topalter.com/)
|
||||
* [ListAlternative](https://www.listalternative.com/)
|
||||
* [Appmus](https://appmus.com/)
|
||||
* [SimilarSiteSearch](https://www.similarsitesearch.com/), [Sitelike.org](https://www.sitelike.org/), [SitesLike](https://www.siteslike.com/) - Similar Site Lists
|
||||
|
||||
***
|
||||
|
||||
@ -66,16 +80,17 @@
|
||||
* ⭐ **[IsThereAnyDeal](https://isthereanydeal.com/giveaways/)** - Games
|
||||
* [Free Games Claimer](https://github.com/vogler/free-games-claimer) - Auto-Claim Free Epic, Amazon, and GOG Games
|
||||
* [epicgames-freegames-node](https://github.com/claabs/epicgames-freegames-node) - Auto-Claim Free Epic Games
|
||||
* [SteamGifts](https://www.steamgifts.com/), [Free250](https://steam250.com/price/free), [/r/FreeGamesOnSteam](https://reddit.com/r/FreeGamesOnSteam) or [SteamDB](https://steamdb.info/upcoming/free/) - Steam Games
|
||||
* [SteamGifts](https://www.steamgifts.com/), [/r/FreeGamesOnSteam](https://reddit.com/r/FreeGamesOnSteam) or [SteamDB](https://steamdb.info/upcoming/free/) - Steam Games
|
||||
* [IndieGala](https://freebies.indiegala.com/) - Games
|
||||
* [FreeGameCodes](https://freegames.codes/) - Games / [Discord](https://discord.gg/ZmUbRcp)
|
||||
* [FreeToKeep](https://freetokeep.gg/) - Games
|
||||
* [/r/freegames](https://www.reddit.com/r/freegames/) - Games
|
||||
* [/r/RandomActsOfGaming](https://www.reddit.com/r/RandomActsOfGaming/) - Games
|
||||
* [TemporarilyFreeGames](https://t.me/temporarilyfreegames) - Games
|
||||
* [GamePower](https://www.gamerpower.com/) - Games
|
||||
* [ClaimFreeGames](https://claimfreegames.com/) - Games
|
||||
* [GrabFreeGames](https://grabfreegames.com/) - Games
|
||||
* [Epic Games Free](https://www.epicgames.com/store/en-US/free-games), [egsnotifier_bot](https://t.me/egsnotifier_bot) or [Epic Free Games](https://t.me/epicfreegames) - Free Epic Games
|
||||
* [Epic Games Free](https://www.epicgames.com/store/en-US/free-games), [egsnotifier_bot](https://t.me/egsnotifier_bot) or [Epic Free Games](https://t.me/epicfreegames) - Games
|
||||
* [EpicFreeGamesList](https://josephmate.github.io/EpicFreeGamesList/) - Epic Free Games List
|
||||
* [Steam Mods](https://store.steampowered.com/search/?maxprice=free&category1=997) - Steam Mods
|
||||
* [Freetchio](https://shaigrorb.github.io/freetchio/) - itch.io Games
|
||||
@ -182,7 +197,7 @@
|
||||
# ► Travel
|
||||
|
||||
* ⭐ **[Atlas Obscura](https://www.atlasobscura.com/)**, [Turas](https://turas.app/), [CountryReports](https://www.countryreports.org/), [Wikivoyage](https://www.wikivoyage.org), [WikiTravel](https://wikitravel.org/) or [Wanderlog](https://wanderlog.com/guides) - Travel Guides
|
||||
* ⭐ **[JourneyPlan](https://journeyplan.co)**, [RoamAround](https://www.roamaround.io/), [TravelPlan](https://www.travelplan-ai.com/#get-trip), [maps.gpt](https://maps.gptcall.net/) , [Holiwise](https://www.holiwise.com) or [Eddy](https://chat.eddytravels.com/) - Trip Planning
|
||||
* ⭐ **[JourneyPlan](https://journeyplan.co)**, [RoamAround](https://www.roamaround.io/), [TravelPlan](https://www.travelplan-ai.com/#get-trip) or [Eddy](https://chat.eddytravels.com/) - Trip Planning AIs
|
||||
* ⭐ **[twkids](https://www.twkids.app/)** - Find Theme Parks, Water Parks, Zoo's etc.
|
||||
* ⭐ **[Borderless](https://borderless.safetywing.com/)** - Travel Restrictions Guide
|
||||
* ⭐ **[MapChecking](https://www.mapchecking.com/)** - Crowd Size Estimation
|
||||
@ -251,7 +266,6 @@
|
||||
* [Countries](https://mledoze.github.io/countries/) - World Countries in JSON, CSV, XML, and YAML
|
||||
* [MapChart](https://mapchart.net/) or [Qgis](https://qgis.org/) - Create Custom Maps
|
||||
* [mapus](https://github.com/alyssaxuu/mapus) or [Scribble Maps](https://www.scribblemaps.com/create/) - Custom Location Map
|
||||
* [Dawarich](https://dawarich.app/) - Self-Hosted Google Maps Timeline Alternative / [Discord](https://discord.gg/pHsBjpt5J8)
|
||||
* [gpx.studio](https://gpx.studio/) - GPX File Editor
|
||||
* [OpenDroneMap](https://www.opendronemap.org/) - Drone Mapping Software
|
||||
* [Mobac](https://mobac.sourceforge.io/) - Mobile Atlas Creator
|
||||
@ -265,7 +279,7 @@
|
||||
## ▷ Navigation / Transport
|
||||
|
||||
* ⭐ **[Organic Maps](https://organicmaps.app/)**, **[OsmAnd](https://osmand.net/)** or [Magic Earth](https://www.magicearth.com/) - Mobile Maps
|
||||
* ⭐ **[OpenStreetMap](https://www.openstreetmap.org/)** - Online Maps / [Advanced Search](https://nominatim.openstreetmap.org/ui/search.html) / [Advanced Editor](https://level0.osmz.ru/) / [Overpass API GUI](https://overpass-turbo.eu/)
|
||||
* ⭐ **[OpenStreetMap](https://www.openstreetmap.org/)** - Online Maps / [Advanced Search](https://nominatim.openstreetmap.org/ui/search.html) / [Overpass API GUI](https://overpass-turbo.eu/)
|
||||
* ⭐ **[Google Maps](https://www.google.com/maps/)** - Online Maps / [Themes for Web Developers](https://snazzymaps.com/)
|
||||
* [GMaps WV](https://f-droid.org/packages/us.spotco.maps/) / [GitHub](https://gitlab.com/divested-mobile/maps) - Restricted Google Maps WebView Wrapper
|
||||
* [Bing Maps](https://www.bing.com/maps) - Online Maps
|
||||
@ -295,7 +309,7 @@
|
||||
|
||||
## ▷ Climate / Weather
|
||||
|
||||
* [Earth Observatory](https://earthobservatory.nasa.gov/global-maps), [Zoom Earth](https://zoom.earth/), [Earth Now](https://climate.nasa.gov/earth-now/), [Windy](https://www.windy.com/), [Earth](https://earth.nullschool.net/), [satellite-map.gosur](https://satellite-map.gosur.com/) or [Ventusky](https://www.ventusky.com/) - General Weather / Climate Maps
|
||||
* [Earth Observatory](https://earthobservatory.nasa.gov/global-maps), [Earth Now](https://climate.nasa.gov/earth-now/), [Windy](https://www.windy.com/), [Earth](https://earth.nullschool.net/), [satellite-map.gosur](https://satellite-map.gosur.com/) or [Ventusky](https://www.ventusky.com/) - General Weather / Climate Maps
|
||||
* [Netweather](https://www.netweather.tv/charts-and-data/global-jetstream) - Global Jetstream Forcast Map
|
||||
* [Cyclocane](https://www.cyclocane.com/) - Cyclone and Hurricane Tracker Map
|
||||
* [tornado.live](https://tornado.live/) - Real-time US Severe Weather Alerts Map
|
||||
@ -373,7 +387,6 @@
|
||||
|
||||
* [Open Infrastructure Map](https://openinframap.org/) - Global Infrastructure Map
|
||||
* [PowerOutage.us](https://poweroutage.us/) - US Power Outage Map
|
||||
* [CoverageMap](https://coveragemap.com/) - Cell Coverage Map
|
||||
* [CellMapper](https://www.cellmapper.net/) - Cell Tower Map
|
||||
* [Spectrum Ownership Map](https://specmap.sequence-omega.net/) - Cell Carrier FCC Spectrum Map
|
||||
* [WiGLE](https://wigle.net/) - Wireless Networks Map
|
||||
@ -441,8 +454,7 @@
|
||||
* ⭐ **[Upstract](https://upstract.com/)**
|
||||
* ⭐ **[QotNews](https://news.t0.vc/)** - Hacker News / Reddit / Lobsters / Tildes
|
||||
* ⭐ **[Anime Blog Tracker](https://aniblogtracker.com/)** - Anime News Blogs
|
||||
* [NewsMinimalist](https://www.newsminimalist.com/) or [Brief](https://www.brief.news/) - AI News Aggregators
|
||||
* [devo](https://github.com/karakanb/devo) - New Tab Page News Extension
|
||||
* [NewsMinimalist](https://www.newsminimalist.com/), [AllAINews](https://allainews.com/) or [Brief](https://www.brief.news/) - AI News Aggregators
|
||||
* [RealClearPolitics](https://www.realclearpolitics.com/), [Ground News](https://ground.news/), [AllSides](https://www.allsides.com/), [SPIDR](https://spidr.today/) or [LegibleNews](https://legiblenews.com/) - Political News / World Events
|
||||
* [Fark](https://www.fark.com/) - User-Curated News
|
||||
* [AlDaily](https://www.aldaily.com/) - Art / Philosophy / Literature News
|
||||
@ -490,7 +502,6 @@
|
||||
* [Medito](https://github.com/meditohq/medito-app) or [Heartfulness](https://www.heartfulnessapp.org/) - Meditation App
|
||||
* [Balance](https://balance.dvy.io/) - Challenge Anxious Thoughts with AI
|
||||
* [Plees Tracker](https://vmiklos.hu/plees-tracker/) - Sleep Tracker
|
||||
* [Safe Substance](https://safesubstance.com/), [TripSit](https://tripsit.me/) / [Discord](https://discord.gg/tripsit), [Drugs.com](https://www.drugs.com/) or [DrugBank](https://go.drugbank.com/) - Drug Information / Side Effects
|
||||
|
||||
***
|
||||
|
||||
@ -590,8 +601,8 @@
|
||||
|
||||
## ▷ Detoxing / Sobriety
|
||||
|
||||
* ⭐ **[Safe Substance](https://safesubstance.com/)**, [Drugs.com](https://www.drugs.com/) or [DrugBank](https://go.drugbank.com/) - Drug Information / Side Effects
|
||||
* ⭐ **[/r/NoSurf](https://www.reddit.com/r/nosurf/wiki/index)** - Digital Detox Community / [Discord](https://discordapp.com/invite/QFhXt2F)
|
||||
* [Farhan](https://github.com/tahaak67/Farhan), [LockMeOut](https://play.google.com/store/apps/details?id=vikesh.dass.lockmeout), [DetoxDroid](https://github.com/flxapps/DetoxDroid) or [StopScroll](https://play.google.com/store/apps/details?id=com.noscroll.antiscroll) - Control Phone Addiction
|
||||
* [The Freedom Model](https://www.thefreedommodel.org/ebooks/) - Addiction-Help Model / [Books](https://www.youtube.com/playlist?list=PLd6KCmnSpHuE29G2f9JXHMcZKbvzSdInw) / [Lessons](https://www.youtube.com/playlist?list=PLd6KCmnSpHuFBFw-ei2eTYJPrSoLuwBFL) / [Full Book](https://pastebin.com/0hDKEXnP)
|
||||
* [BreakFree](https://breakfree-2c089.web.app/) - Break Smoking Habits
|
||||
* [Sobriety](https://github.com/KiARC/Sobriety) - Sobriety Tracker
|
||||
@ -613,7 +624,7 @@
|
||||
* [CleanBrowsing](https://cleanbrowsing.org/filters/) - Family DNS Filters
|
||||
* [cringeMDb](https://cringemdb.com/), [Age Rating JuJu](https://www.ageratingjuju.com/), [CommonSenseMedia](https://www.commonsensemedia.org/) or [unconsenting media](https://www.unconsentingmedia.org) - Find SFW Movies
|
||||
* [Movie Parser](https://raskie.com/post/practical-ai-autodetecting-nsfw) - Detect NSFW Scenes in Movies / [GitHub](https://github.com/dynamite-ready/movie-parser)
|
||||
* [Puri.fy](https://pury.fi/), [Wingman Jr. Filter](https://addons.mozilla.org/en-US/firefox/addon/wingman-jr-filter/), [HaramBlur](https://linktr.ee/haramblur) or [NSFW-Filter](https://nsfw-filter.com/) - Block NSFW Images
|
||||
* [Puri.fy](https://pury.fi/) or [NSFW-Filter](https://nsfw-filter.com/) - Block NSFW Images
|
||||
* [Fortify](https://www.joinfortify.com/) - Porn Quitting Community
|
||||
* [SAA Recovery](https://saa-recovery.org/), [Cosa Recovery](https://cosa-recovery.org/) or [Smart Recovery](https://www.smartrecovery.org/) - Find Sex Addiction Meetings
|
||||
|
||||
@ -631,7 +642,7 @@
|
||||
* [OnSites](https://www.onsites.fyi/) - View / Share Interview Experiences
|
||||
* [JobBoardSearch](https://jobboardsearch.com/), [PromptYourJob](https://promptyourjob.com/), [CyberCoders](https://www.cybercoders.com/), [whoishiring](https://whoishiring.io/), [Toby Tools](https://rentry.co/qnu6x), [The Muse](https://www.themuse.com/search/) or [EuroJobs](https://eurojobs.com/) - Job Search
|
||||
* [50WaysToGetAJob](https://50waystogetajob.com/) - Interactive Job Search Guide
|
||||
* [RolePad](https://rolepad.com/) or [JobSync](https://github.com/Gsync/jobsync) - Job Search Managers
|
||||
* [RolePad](https://rolepad.com/) - Job Search Manager
|
||||
* [80,000 Hours](https://80000hours.org/), [O*NET](https://www.onetonline.org/) or [MyNextMove](https://www.mynextmove.org/) - Explore Career Options
|
||||
* [/r/careerguidance](https://www.reddit.com/r/careerguidance/) - Career Guidance Subreddit
|
||||
* [UseThis](https://usesthis.com/) - Career Interviews
|
||||
@ -646,7 +657,6 @@
|
||||
* [Contact Card](https://contact-card.vercel.app/) - Contact Card Generator
|
||||
* [MS Word Cover Page Templates](https://www.mswordcoverpages.com/) - Cover Page Templates
|
||||
* [PolyWork](https://www.polywork.com/) - Turn LinkedIn Profile to Personal Website
|
||||
* [Linkedin Preview](https://www.alarapp.com/en/linkedin-preview) - Preview Linkedin Posts
|
||||
* [Airtable](https://www.airtable.com/) or [Teatable](https://teable.io/) - Build Collaborative Apps
|
||||
* [WhoPaysWriters](http://whopayswriters.com/) - Freelance Writing Publications
|
||||
* [Creator Monetization Platforms](https://docs.google.com/spreadsheets/d/1ii59-tKBwsol4jGwVehXy-oaJfVLKUciwXtB2tuKqQg/edit#gid=0) - Monetization Platforms Comparisons
|
||||
@ -688,7 +698,6 @@
|
||||
* [sajilocv](https://sajilocv.com/)
|
||||
* [GotResumeBuilder](https://www.gotresumebuilder.com/)
|
||||
* [Resume.com](https://www.resume.com/)
|
||||
* [CvResumeNest](https://cvresumenest.com/)
|
||||
* [Resume.io](https://resume.io/)
|
||||
* [intelligentcv](https://www.intelligentcv.app/)
|
||||
* [cakeresume](https://www.cakeresume.com/)
|
||||
@ -703,7 +712,7 @@
|
||||
|
||||
## ▷ Remote Jobs
|
||||
|
||||
* 🌐 **[Awesome Remote Jobs](https://github.com/lukasz-madon/awesome-remote-job)** or [Established Remote](https://github.com/yanirs/established-remote) - Remote Job Resources
|
||||
* 🌐 **[Awesome Remote Jobs](https://github.com/lukasz-madon/awesome-remote-job)** - Remote Job Resources Index
|
||||
* ⭐ **[Real Work From Anywhere](https://www.realworkfromanywhere.com/)** - Global "Work-From-Anywhere" Job Board
|
||||
* [Overemployed](https://overemployed.com/) - Discuss Working 2+ Remote Jobs / [Subreddit](https://www.reddit.com/r/overemployed) / [Discord](https://discord.com/invite/a8VGhbZyek)
|
||||
* [WFH Companies India](https://github.com/abhagsain/WFH-Companies-India) - Work from Home Jobs in India
|
||||
@ -790,11 +799,11 @@
|
||||
* 🌐 **[/r/PersonalFinance Wiki](https://old.reddit.com/r/personalfinance/wiki/index)** or [UK Personal Finance](https://ukpersonal.finance/) - Financial Advice / Resources
|
||||
* 🌐 **[KYCNOT.ME](https://kycnot.me/)** - Non-KYC Exchanges / Services
|
||||
* ⭐ **[TradingView](https://www.tradingview.com/)**, [ticker](https://github.com/achannarasappa/ticker), [Candle](https://gitlab.com/cosmosapps/candle), [finviz](https://finviz.com/) or [Markets.sh](https://markets.sh/) - Stock Market Trackers
|
||||
* ⭐ **[Ghostfolio](https://ghostfol.io/)** / [Import](https://github.com/dickwolff/Export-To-Ghostfolio), [Maybe](https://hello.maybe.co/), [HomeBank](https://www.gethomebank.org/en/index.php), [Firefly III](https://firefly-iii.org/), [Money Manager EX](https://moneymanagerex.org/) or [Actual](https://github.com/actualbudget/actual) - Finance Managers
|
||||
* ⭐ **[Ghostfolio](https://ghostfol.io/)** / [Import](https://github.com/dickwolff/Export-To-Ghostfolio), [Maybe](https://hello.maybe.co/), [HomeBank](https://www.gethomebank.org/en/index.php), [Firefly III](https://firefly-iii.org/), [Money Manager EX](https://moneymanagerex.org/), [Paisa](https://github.com/RetroMusicPlayer/Paisa) or [Actual](https://github.com/actualbudget/actual) - Finance Managers
|
||||
* ⭐ **[Rotki](https://rotki.com/)** - Portfolio Manager
|
||||
* [Paisa](https://github.com/h4h13/paisa), [Ivy Wallet](https://github.com/Ivy-Apps/ivy-wallet), [money-manager](https://github.com/moneymanagerex/android-money-manager-ex),[Buckwheat](https://buckwheat.app/), [My Expenses](https://www.myexpenses.mobi/), [Cashew](https://play.google.com/store/apps/details?id=com.budget.tracker_app) or [Sushi](https://github.com/jerameel/sushi) - Android Finance / Expense Managers
|
||||
* [Ivy Wallet](https://github.com/Ivy-Apps/ivy-wallet), [money-manager](https://github.com/moneymanagerex/android-money-manager-ex),[Buckwheat](https://buckwheat.app/), [My Expenses](https://www.myexpenses.mobi/), [Cashew](https://play.google.com/store/apps/details?id=com.budget.tracker_app) or [Sushi](https://github.com/jerameel/sushi) - Android Finance Managers
|
||||
* [Denaro](https://github.com/NickvisionApps/Denaro) - Linux Finance Managers
|
||||
* [Ledger](https://ledger-cli.org/) or [hledger](https://hledger.org/index.html) - Accounting Systems
|
||||
* [Ledger](https://ledger-cli.org/) - CLI Accounting System
|
||||
* [financial_advice](https://github.com/emilepetrone/financial_lessons)or [r/povertyfinance wiki](https://www.reddit.com/r/povertyfinance/wiki/index/) - Financial Tips / Resources
|
||||
* [/r/BeerMoney](https://www.reddit.com/r/beermoney/) - Online Money Making Community
|
||||
* [Compound Interest Calculator](https://www.investor.gov/financial-tools-calculators/calculators/compound-interest-calculator) - Determine Compound Interest Money Growth
|
||||
@ -810,7 +819,6 @@
|
||||
* [Calculator](https://goldratestoday.net/gold-calculator/) - Gold Investment Calculators
|
||||
* [Kitco](https://www.kitco.com/) or [GoldRatesToday](https://goldratestoday.net/) - Gold Rate Calculators
|
||||
* [MortgageCalculator](https://www.mortgagecalculator.site/) - Mortgage Calculator
|
||||
* [Dopefolio](https://github.com/rammcodes/Dopefolio) - Developer Portfolio Template
|
||||
* [PortfolioVisualizer](https://www.portfoliovisualizer.com/) - Visualize Portfolio
|
||||
* [CoFolios](https://cofolios.com/) - Portfolio Sharing
|
||||
|
||||
@ -882,7 +890,7 @@
|
||||
* ⭐ **[PCPartPicker](https://pcpartpicker.com/)**, [Newegg PC Builder](https://www.newegg.com/tools/custom-pc-builder), [Build Redux](https://buildredux.com/), [CGDirector](https://www.cgdirector.com/pc-builder/) or [NZXTBld](https://nzxt.com/category/gaming-pcs/build) - PC Building Sites
|
||||
* ⭐ **[/r/PCMasterrace Wiki](https://www.reddit.com/r/pcmasterrace/wiki/builds/)**, [/r/BuildaPC Wiki](https://www.reddit.com/r/buildapc/wiki/index), [PC Tiers](https://pctiers.com/) or [Logical Increments](https://www.logicalincrements.com/) - PC Building Guides / **[Video](https://youtu.be/s1fxZ-VWs2U)**
|
||||
* ⭐ **[NanoReview](https://nanoreview.net/en)**, [Octoparts](https://octopart.com/), [Technical City](https://technical.city/), [TechPowerup](https://www.techpowerup.com/) or [Techspecs](https://techspecs.io/) - Hardware Comparisons
|
||||
* ⭐ **[rtings](https://www.rtings.com/)** - Hardware Reviews / Clear Cookies Reset Limit
|
||||
* ⭐ **[rtings](https://www.rtings.com/)** - Hardware Reviews
|
||||
* ⭐ **[Open Benchmarking](https://openbenchmarking.org/)** - Hardware Benchmarks
|
||||
* ⭐ **[GSMArena](https://www.gsmarena.com/)**, [PhoneDB](https://phonedb.net/), [GSMChoice](https://www.gsmchoice.com/en/) or [Kimovil](https://www.kimovil.com/en/) - Compare Phones / Prices
|
||||
* ⭐ **[CPUBenchmark](https://www.cpubenchmark.net/)** or [NoteBenchcheck](https://www.notebookcheck.net/Benchmarks-Tech.123.0.html) - GPU / CPU Benchmarks
|
||||
@ -899,12 +907,11 @@
|
||||
* [/r/SuggestALaptop](https://reddit.com/r/SuggestALaptop), [Jarrod's Tech](https://jarrods.tech/resources/) or [Noteb](https://noteb.com/) - Laptop Suggestions / [Discord](https://discord.gg/pes68JM)
|
||||
* [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
|
||||
* [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/) / [Wiki](https://discord.gg/mousereview) - Mouse Buying Guides
|
||||
* [Hackerboards](https://hackerboards.com/) - Single-Board Computer Comparisons
|
||||
* [Click Latencies](https://docs.google.com/spreadsheets/d/1-QI7-LY9Ul_DsVE4ZOqBQxqqqqrdJ04Ite8IY3AQMds/) - Mouse Click Latency Chart
|
||||
* [AudioScienceReview](https://www.audiosciencereview.com/forum/index.php) - Audio Equipment Discussion
|
||||
* [Scarbir](https://www.scarbir.com/) or [Crinacle](https://crinacle.com/) - Headset & Earphone Comparisons
|
||||
* [Squiglink](https://squig.link/) - Earphone / IEM Frequency Response Database
|
||||
* [MechGroupBuys](https://www.mechgroupbuys.com/) - Group Mechanical Keyboard Buying / [Discord](https://discord.com/invite/mechgroupbuys) / [Subreddit](https://www.reddit.com/r/MechGroupBuys/)
|
||||
* [PSU Tier List](https://cultists.network/140/psu-tier-list/) - PSU Buying Guide
|
||||
* [PC Monitors](https://pcmonitors.info/), [TFTCentral](https://tftcentral.co.uk/), [Monitor Hunter](https://docs.google.com/document/d/1illeNLsUfZ4KuJ9cIWKwTDUEXUVpplhUYHAiom-FaDo/), [DisplaySpecifications](https://www.displayspecifications.com/), [Monitor Spreadsheet](https://pastebin.com/tkmakRNW) or [DisplayNinja](https://www.displayninja.com/) - Monitor Buying Guides
|
||||
@ -912,7 +919,7 @@
|
||||
* [Erin's Audio Corner](https://www.erinsaudiocorner.com/), [Speakerzilla](https://speakerzilla.com/) or [Equipboard](https://equipboard.com/) - Audio Equipment Comparisons
|
||||
* [InStockAlert_DataLover](https://discord.gg/jd6KaBUHG4) or [Fixitfixitfixit](https://discord.gg/gpu) - GPU / Xbox / PS5 Drop Notifications / [Guide](https://youtu.be/2cBRW9FeQ3A)
|
||||
* [Don’t kill my app!](https://dontkillmyapp.com/) - Manufacturer Battery Life vs. App Functionality
|
||||
* [PhoneSized](https://phonesized.com/) or [HotSpot3D](https://www.hotspot3d.com/) - Phone Size Comparisons
|
||||
* [PhoneSized](https://phonesized.com/) - Phone Size Comparisons
|
||||
* [DXOMARK](https://www.dxomark.com/) - Smartphone Quality Testing
|
||||
* [Dumbphone Finder](https://dumbphones.pory.app/) - Dumbphone Comparisons
|
||||
* [Camera Decision](https://cameradecision.com/) or [Digicamfinder](https://digicamfinder.com/) - Compare Cameras
|
||||
@ -923,8 +930,7 @@
|
||||
## ▷ Games
|
||||
|
||||
* ⭐ **[IsThereAnyDeal](https://isthereanydeal.com/)**
|
||||
* ⭐ **[SteamDB](https://steamdb.info/sales/)** - Steam Sales
|
||||
* [Steam Coupons](https://pastebin.com/embed_iframe/i8ri7Ne7) - Updated List of Every Steam Coupon
|
||||
* ⭐ **[SteamDB](https://steamdb.info/sales/)**
|
||||
* [CheapShark](https://www.cheapshark.com/) / [Discord](https://discord.com/invite/cheapshark)
|
||||
* [/r/GameDeals](https://www.reddit.com/r/gamedeals)
|
||||
* [PSPrices](https://psprices.com/)
|
||||
@ -1007,7 +1013,7 @@
|
||||
* [Diff Checker](https://www.diffchecker.com/) - Check Differences in Text, Images, PDFs or Files
|
||||
* [Find Your Place](https://where-is-this.com/) - Find Places from Pictures
|
||||
* [Forebears](https://forebears.io/) or [BehindTheName](https://www.behindthename.com/) - Name Etymologies
|
||||
* [Pronouns List](https://pronounslist.com/) - List of Preferred Pronouns
|
||||
* [Pronouns List](https://pronounslist.com/) - List of Prefferred Pronouns
|
||||
* [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
|
||||
@ -1063,7 +1069,6 @@
|
||||
* ⭐ **[Super-Productivity](http://super-productivity.com)** - Time Tacker / Productivity App / To-Do List
|
||||
* ⭐ **[Habitica](https://habitica.com/)** - Achievement Style Productivity App
|
||||
* ⭐ **[Timeblocking](https://timeblocking.atomiclife.app/)** - Online Atomic Time Blocking
|
||||
* [Polyphasic Sleep](https://www.polyphasic.net/) - Polyphasic Sleep Guides / Community / [Discord](https://discord.gg/polyphasic-sleeping-249219704655183876)
|
||||
* [/r/GetMotivated](https://www.reddit.com/r/GetMotivated/) - Motivational Community
|
||||
* [Freeter](https://freeter.io) - Work Organizer / [GitHub](https://github.com/FreeterApp/Freeter)
|
||||
* [VisualizeHabit](https://visualizehabit.com/) - Habit Tracking
|
||||
@ -1127,7 +1132,6 @@
|
||||
* [Virtual World List](https://virtualworldslist.neocities.org/) - Virtual World List
|
||||
* [Monkey](https://www.monkey.app/) - Random Chat Rooms
|
||||
* [Wireclub](https://www.wireclub.com/) - Topic Chat Rooms
|
||||
* [MyCast](https://www.mycast.io/) - Dream Casting Discussions
|
||||
* [FandomPost](https://fandompost.vbulletin.net/) - Fandom Discussions
|
||||
* [AnimeSuki](https://forums.animesuki.com/), [AnimeUKNews](https://forums.animeuknews.net/) or [Fanverse](https://www.fanverse.org/) - Anime Discussion
|
||||
* [/r/Piracy](https://www.reddit.com/r/Piracy/) - Piracy Discussion
|
||||
@ -1139,7 +1143,7 @@
|
||||
* [Websleuths](https://www.websleuths.com/) - Crime Solving Forum
|
||||
* [Translation Party](https://www.translationparty.com/) - Translation Parties
|
||||
* [Status.Cafe](https://status.cafe/) - Share Current Status
|
||||
* [TwoCansAndAString](https://twocansandstring.com/), [Anonify](https://anonify.link/) or [TellOnMe](https://tellonym.me/) - Anonymous Q&A
|
||||
* [TwoCansAndAString](https://twocansandstring.com/) or [TellOnMe](https://tellonym.me/) - Anonymous Q&A
|
||||
* [Earth 2050](https://2050.earth/) - Future Predictions
|
||||
* [FutureMe](https://www.futureme.org/) or [MessageToTheFuture](https://messagetothefutu.re/) - Send Messages to Future Self
|
||||
* [PostSecret](https://postsecret.com/) - Share Secrets via Postcard
|
||||
@ -1168,7 +1172,6 @@
|
||||
* [Sudomemo](https://www.sudomemo.net/) or [Kaeru Gallery](https://gallery.kaeru.world/) - DS Flipnote Studio Galleries
|
||||
* [Toonami Remastered](https://www.toonamiremastered.com/) - Remastered Toonami Content
|
||||
* [ThisXDoesNotExist](https://thisxdoesnotexist.com/) - Realistic-Looking Fake Versions of Things
|
||||
* [ThisPersonNotExist](https://thispersonnotexist.org/) or [this-person-does-not-exist](https://this-person-does-not-exist.com/) - People That Don't Exist
|
||||
* [NotRealCats](https://notrealcats.com/) - Cats That Don't Exist
|
||||
* [Different Strokes](https://swsteffes.itch.io/different-strokes) - Online User-Made Art Gallery
|
||||
* [Creative Uncut](https://www.creativeuncut.com/) - Video Game Art
|
||||
@ -1189,7 +1192,6 @@
|
||||
* [paint.wtf](https://paint.wtf/) - Have an AI Judge your Art
|
||||
* [Chimera Painter](https://storage.googleapis.com/chimera-painter/index.html) - Chimera Generator
|
||||
* [MakeCoatOfArms](https://www.allfamilycrests.com/makecoatofarms.htm) - Coat of Arms Generator
|
||||
* [Where Is The Google Car](https://www.whereisthegooglecar.com/) - Google Car Images / Locations
|
||||
* [Web Neko](https://webneko.net/) - Nekos on the Web
|
||||
* [Uji](https://doersino.github.io/uji/) or [Turtletoy](https://turtletoy.net/) - Minimalist Art Generators
|
||||
* [Paint with Music](https://artsandculture.google.com/experiment/paint-with-music/YAGuJyDB-XbbWg) - Paint with Sound
|
||||
@ -1252,7 +1254,7 @@
|
||||
* [Just Type Stuff](https://web.archive.org/web/20191229101209/https://justtypestuff.com/) - Type Things into Existence
|
||||
* [deardiary](https://deardiary.wtf/) - Machine Learning Diary / [Concept Video](https://youtu.be/Zc3qayGmYZQ)
|
||||
* [Virtual x86](https://copy.sh/v86/) - x86-compatible OS Emulators
|
||||
* [PCjs Machines](https://www.pcjs.org/) or [Windows93](https://www.windows93.net/) - Classic Computer Emulators
|
||||
* [PCjs Machines](https://www.pcjs.org/) - Classic Computer Emulators
|
||||
* [Quantum Playground](https://www.quantumplayground.net/#/home) - Quantum Computer Simulator
|
||||
* [Cafe and Diner](https://www.cafeanddiner.com/) - Browser Mystery Game
|
||||
* [Terminal 00](https://angusnicneven.com/), [corru.observer](https://corru.observer/), [lomando](https://lomando.com/main.html), [angelangelangel](https://angelangelangelangelangel.com/) or [SilverLadder](http://www.silverladder.com/) - Cursed Sites / Horror Games
|
||||
@ -1281,7 +1283,7 @@
|
||||
* [Fold & Cut](https://www.onemotion.com/fold-cut-paper/) - Make Digital Paper Snowflakes
|
||||
* [Iceberger](https://joshdata.me/iceberger.html) - Draw an Iceberg, See how it Floats
|
||||
* [BubblesPop](https://bubblespop.netlify.app/), [2](https://brainteaser.top/bubblespop.html) - Pop Bubble Wrap
|
||||
* [OneMillionCheckboxes](https://onemillioncheckboxes.com/), [Checkbox Life](https://huth.me/checkbox-life/) or [Checkbox Olympics](https://checkbox.toys/) - Checkbox Games
|
||||
* [Checkbox Olympics](https://checkbox.toys/) - Checkbox Game
|
||||
* [Fidget Page](https://www.fidgetpage.com/) - Play with Fidget Spinner
|
||||
* [Keep calm and poke me.](https://calm.ovh/) - Poke & Pull
|
||||
* [Elastic Man](https://www.adultswim.com/etcetera/elastic-man/) - Elastic Morty
|
||||
@ -1330,7 +1332,6 @@
|
||||
* [Internet Map](https://internet-map.net/) - Map of the Internet
|
||||
* [Google Earth](https://www.google.com/earth/about/versions/) - Explore Earth
|
||||
* [Land Lines](https://lines.chromeexperiments.com/) - Explore Google Earth via Gestures
|
||||
* [QuarterMaester](https://quartermaester.info/) - Game of Thrones Map
|
||||
* [DamnInteresting](https://www.damninteresting.com/) - Interesting Stories
|
||||
* [The Cutting Room Floor](https://tcrf.net/The_Cutting_Room_Floor) - Unused Video Game Content Research
|
||||
* [SongMeanings](https://songmeanings.com/) - Discover Song Meanings
|
||||
@ -1360,7 +1361,6 @@
|
||||
* [Roadside America](https://www.roadsideamerica.com/) - Roadside Attractions
|
||||
* [Roller Coaster Database](https://rcdb.com/) - World Roller Coasters
|
||||
* [FirstVersions](https://www.firstversions.com/) - Find First Versions of Anything
|
||||
* [ConWorld](https://wiki.conworld.org/) - Constructed Worlds Wiki
|
||||
* [Pushing Pixels](https://www.pushing-pixels.org/fui/) or [Saji8k](https://www.saji8k.com/kit-fui/) - Imaginary UI from Movies
|
||||
* [Nestflix](https://nestflix.fun/) - Fictional Media in Media Database
|
||||
* [BrickLink Studio](https://www.bricklink.com/v2/build/studio.page) - Lego Building Software
|
||||
@ -1377,7 +1377,7 @@
|
||||
* [Michaelbach](https://michaelbach.de/ot/) - Optical Illusions
|
||||
* [Strobe Illusion](https://strobe.cool/) - Hallucination Illusion
|
||||
* [Notpron](http://www.notpron.com/) - Worlds Hardest Internet Riddle
|
||||
* [Fun Trivia](https://www.funtrivia.com/), [Sporcle](https://www.sporcle.com/), [uQuiz](https://uquiz.com/), [ARealMe](https://www.arealme.com/) or [JetPunk](https://www.jetpunk.com/) - Quiz / Trivia
|
||||
* [Fun Trivia](https://www.funtrivia.com/), [Sporcle](https://www.sporcle.com/), [ARealMe](https://www.arealme.com/) or [JetPunk](https://www.jetpunk.com/) - Quiz / Trivia
|
||||
* [Bestiefy](https://bestiefy.com/) - Friend Quizzes
|
||||
* [theOtaku](https://theotaku.com/quizzes) - Anime Personality Quizzes
|
||||
* [8dreams](https://8dreams.github.io/) - Political Alignment Test
|
||||
@ -1400,11 +1400,10 @@
|
||||
|
||||
## ▷ Random
|
||||
|
||||
* 🌐 **[Funny / Useless](https://rentry.org/aksry2vc)** - Funny / Useless Websites
|
||||
* 🌐 **[Funny / Useless Sites](https://rentry.org/aksry2vc)**
|
||||
* 🌐 **[Websites From Hell](https://websitesfromhell.net/)** - Shitty Websites
|
||||
* 🌐 **[404PageFound](https://www.404pagefound.com/)** - Old Websites
|
||||
* ↪️ **[Random Generators](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_random_generators)**
|
||||
* ⭐ **[Vijay's Virtual Vibes](https://vijaysvibes.uk/)** - Find Random Sites / [iFrame Version](https://vijaysvibes.uk/iframe-version.html)
|
||||
* ↪️ **[Random Sites](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_random_generators)** - Random Site Generators
|
||||
* ⭐ **[Project Random](https://0xbeef.co.uk/random)** or [The Red Button](https://clicktheredbutton.com/) - Random Video / Song Generators
|
||||
* ⭐ **[Copypasta Text](https://copypastatext.com/)** or [CopyPastaDB](https://copypastadb.com/) - Copypasta Databases
|
||||
* ⭐ **[CreepyPasta](https://www.creepypasta.com/)** - Creepypasta Database
|
||||
@ -1413,18 +1412,7 @@
|
||||
* ⭐ **[Drinking Game Zone](https://drinkinggamezone.com/)** - Drinking Games Encyclopedia
|
||||
* ⭐ **[PokeSmash](https://pokesmash.xyz/)** - Pokémon Smash or Pass
|
||||
* ⭐ **[Library of Babel](https://libraryofbabel.info/)** - Every Book of Past, Present, and Future
|
||||
* [The Red Button](https://clicktheredbutton.com/) - Find Random Sites
|
||||
* [BoredButton](https://www.boredbutton.com/) - Find Random Sites
|
||||
* [Sharkle!](https://sharkle.com/) - Find Random Sites
|
||||
* [The Useless Web](https://theuselessweb.com/), [2](https://theuselessweb.site/) - Find Random Sites
|
||||
* [JumpStick](https://jumpstick.app/) - Find Random Sites
|
||||
* [OpenBulkURL](https://openbulkurl.com/random/) - Find Random Sites
|
||||
* [The Forest](https://theforest.link/) - Find Random Sites
|
||||
* [WhatsMYIP](http://random.whatsmyip.org/) - Find Random Sites
|
||||
* [Random-Website](https://random-website.com/) - Find Random Sites
|
||||
* [Wilderness Land](https://wilderness.land/) - Find Random Sites
|
||||
* [CloudHiker](https://cloudhiker.net/) - Find Random Sites
|
||||
* [Moonjump](https://moonjump.app/) - Find Random Sites
|
||||
* [Bouncing DVD Logo](https://www.bouncingdvdlogo.com/) - DVD Logo Screen
|
||||
* [Things to Do](https://randomthingstodo.com/), [HobbyGenerator](https://hobbygenerator.com/) or [TheZen](https://thezen.zone/) - Activity Suggestions
|
||||
* [BoozeTube](https://boozetube.netlify.app/) - Turn Videos in Drinking Games
|
||||
* [rrrather](https://rrrather.com/) - Would You Rather
|
||||
@ -1453,7 +1441,13 @@
|
||||
* [Satania](https://satania.moe/) - Satania Waifu / [GitHub](https://github.com/Pizzacus/satania.moe)
|
||||
* [Skynet](https://pierrepapierciseaux.net/.skynet/?lang=en) - View Websites like they're from the 90's
|
||||
* [CameronsWorld](https://www.cameronsworld.net/) - 90's Themed Website
|
||||
* [World's Highest Website](https://worlds-highest-website.com/) - World's Longest Website
|
||||
* [Classic GTA Sites](https://classicgtasites.com/) - Original GTA Site
|
||||
* [Space Jam 1996](https://www.spacejam.com/1996/) - Original Space Jam Site
|
||||
* [Mario Mayhem](https://www.mariomayhem.com/) - Mario Fansite
|
||||
* [ILoveJarJarBinks](https://ilovejarjarbinks.tripod.com/) - Jar Jar Binks Fansite
|
||||
* [User Inyerface](https://userinyerface.com/) - Worlds Most Annoying Website
|
||||
* [TheMostAmazingWebsiteOnTheInternet](http://www.themostamazingwebsiteontheinternet.com/) - The Internets Best Website
|
||||
* [Objection!](https://objection.lol/) - Ace Attorney Objecting on Your Behalf
|
||||
* [The Death Generator](https://deathgenerator.com/) - Video Game Text Generator
|
||||
* [IASIP App](https://iasip.app/) - It's Always Sunny Title Generator
|
||||
@ -1473,3 +1467,28 @@
|
||||
* [Hair on Screen](https://chromewebstore.google.com/detail/hair-on-screen/egkikapjpndmjflbjjoondbihalgdjco) - Fake Hair on Screen Prank
|
||||
* [Hacktyper](https://hackertyper.net/), [Hoacks](https://hoacks.com/) or [Geektyper](https://geektyper.com/) - Fake Hacking Screen
|
||||
* [VeryLegit](https://verylegit.link/) or [Urlify](http://urlify.io/) - Make links look shady
|
||||
* [Busy Simulator](https://busysimulator.com/) - Pretend You're Busy
|
||||
* [PointerPointer](https://pointerpointer.com/) - Get Your Pointer Pointed At
|
||||
* [Splits](https://mana.works/splits) - Split or Fall
|
||||
* [Moments of Happiness](https://moments.epic.net/) - Animated WebGL Animals
|
||||
* [Pablo The Flamingo](https://pablotheflamingo.com/) - Party with Pablo
|
||||
* [The Pug in the Rug](https://puginarug.com/) - Watch the Pug be in the Rug
|
||||
* [MTA](http://mta.me/) - Create Sounds via NY Subway Movement
|
||||
* [Robotics.ovh](https://robotics.ovh/) - Robotics Dance
|
||||
* [StaggeringBeauty](http://www.staggeringbeauty.com/) - Party Worm (Warning: Contains Flashing Images)
|
||||
* [Slap Kirk](https://www.slapkirk.com/) - Slap Captain Kirk
|
||||
* [Slap Chris](https://slapchris.com/) - Slap Chris Rock
|
||||
* [Eel Slap](https://www.eelslap.com/) - Slap Guy with Eel
|
||||
* [Slide Ventura](https://slideventura.com/) - Ace Ventura Sliding Door Simulator
|
||||
* [CAT BOUNCE!](https://cat-bounce.com/) - Bounce Cats
|
||||
* [Long Doge Challenge](https://longdogechallenge.com/) - Worlds Longest Doge
|
||||
* [Endless Horse](http://endless.horse/) - Worlds Longest Horse
|
||||
* [Money printer go BRRR](https://brrr.money/) - Print it, baby!
|
||||
* [You wouldn't steal a website](https://youwouldntsteala.website/) - Steal a Website
|
||||
* [Shell Color Scripts](https://gitlab.com/dwt1/shell-color-scripts) - Terminal Color Scripts
|
||||
* [Bad Licenses](https://github.com/ErikMcClure/bad-licenses) - Funny Open Source Licenses Index
|
||||
* [Vim Cubed](https://github.com/oakes/vim_cubed) - Generate Cube Vim Text Editor
|
||||
* [Typewaiter](https://oisinmoran.com/typewaiter) - Endlessly Moving Typewriter
|
||||
* [Fontbutts](https://fontbutts.netlify.app/) - Create Butts with Different Fonts
|
||||
* [Do not open the door](http://mexicans.eu/) - Don't you dare...
|
||||
* [Dial-Up Sound](https://www.dialupsound.com/) - Dial-Up Sounds
|
||||
|
@ -30,9 +30,8 @@
|
||||
* [XVideos](https://www.xvideos.com/)
|
||||
* [PlayHDPorn](https://www.playhdporn.com/)
|
||||
* [SpankBang](https://spankbang.com/)
|
||||
* [goodporn](https://goodporn.se/)
|
||||
* [goodporn](https://goodporn.to/), [2](https://goodporn.se/)
|
||||
* [neporn](https://neporn.com/)
|
||||
* [FreePornVideos](https://www.freepornvideos.xxx/)
|
||||
* [BananaMovies](https://bananamovies.org/)
|
||||
* [xHamster](https://xhamster.com/)
|
||||
* [PornHub](https://www.pornhub.com/) / [Add Features](https://sleazyfork.org/en/scripts/380711), [2](https://codeberg.org/aolko/userscripts/wiki/PH-toolbox) / [DL Script](https://gist.github.com/Riboe/58acabe04abe74421e88b4269cbdf41e)
|
||||
@ -81,7 +80,7 @@
|
||||
|
||||
***
|
||||
|
||||
## ▷ Adult Movies / Grindhouse
|
||||
## ▷ NSFW Movies
|
||||
|
||||
* ⭐ **[NSFW Movie Site Search](https://cse.google.com/cse?cx=006516753008110874046:3-svpblbro8)** / [2](https://cse.google.com/cse?cx=b5a63746fc84a456d)
|
||||
* ⭐ **[Film1k](https://www.film1k.com/)**
|
||||
@ -98,6 +97,7 @@
|
||||
* [VintageClassix](http://www.vintageclassix.com/)
|
||||
* [paradisehill](https://en.paradisehill.cc/)
|
||||
* [Cat3Movies](https://cat3movie.org/)
|
||||
* [PornDune](https://porndune.com/)
|
||||
* [pornxtheatre](https://pornxtheatre.com/)
|
||||
* [AdultLoad](https://adultload.ws/)
|
||||
* [WIPFilms](https://wipfilms.net/)
|
||||
@ -126,7 +126,6 @@
|
||||
* [JAVMost](https://www5.javmost.com/)
|
||||
* [Javfinder](https://javfinder.sb/)
|
||||
* [avjoy](https://avjoy.me/)
|
||||
* [91Porna](https://91porna.com/)
|
||||
* [OPJAV](https://opjav.com/)
|
||||
* [91rb](https://91rb.net/)
|
||||
* [JavFun](https://asian.javfun.me/)
|
||||
@ -311,7 +310,6 @@
|
||||
|
||||
## ▷ Hentai Anime
|
||||
|
||||
* 🌐 **[Wotaku](https://wotaku.moe/nsfw#anime)** - Hentai Anime Index / [Discord](https://discord.gg/vShRGx8ZBC)
|
||||
* 🌐 **[The Index](https://theindex.moe/library/hentai)** or [Best Hentai Sites](https://besthentaisites.github.io/) - Hentai Site Lists
|
||||
* 🌐 **[EverythingMoe](https://everythingmoe.com/?nsfw=true#section-hentai)** - Hentai Sites Index
|
||||
* 🌐 **[/cumg/](https://rentry.co/coom)** - Hentai Resources
|
||||
@ -380,7 +378,6 @@
|
||||
|
||||
## ▷ Hentai Manga / Comics
|
||||
|
||||
* 🌐 **[Wotaku](https://wotaku.moe/nsfw#manga)** - Hentai Manga Index / [Discord](https://discord.gg/vShRGx8ZBC)
|
||||
* 🌐 **[EverythingMoe](https://everythingmoe.com/?nsfw=true#section-hentairead)** - Hentai Manga / Comics Index
|
||||
* ⭐ **[E-Hentai](https://e-hentai.org/)** or [ExHentai](https://exhentai.org/) - Hentai Manga / Comics
|
||||
* ⭐ **E-Hentai Tools** - [Android Client](https://github.com/honjow/FEhViewer) / [Deleted Galleries](https://panda.chaika.moe/) / [Downloader](https://gitlab.com/squishydreams/pandaforever), [2](https://github.com/ccloli/E-Hentai-Downloader)
|
||||
@ -390,7 +387,7 @@
|
||||
* ⭐ **[NHentai](https://nhentai.net/)** - Hentai Manga
|
||||
* ⭐ **NHentai Tools** - [Android Client](https://github.com/Dar9586/NClientV2), [2](https://ttdyce.com/apps/nhviewer/) / [Downloader](https://github.com/RicterZ/nhentai), [2](https://nhentaidownloader.zirk.eu/)
|
||||
* ⭐ **[Mihon](https://mihon.app/)** - Manga Reader
|
||||
* ⭐ **Mihon Tools** - [Extensions](https://keiyoushi.github.io/extensions/), [2](https://discord.gg/3FbCpdKbdY), [3](https://wotaku.moe/guides/tech/repo) / [Official Forks](https://mihon.app/forks/), [2](https://github.com/null2264/yokai), [3](https://github.com/nekomangaorg/Neko)
|
||||
* ⭐ **Mihon Tools** - [Extensions](https://keiyoushi.github.io/extensions/), [2](https://discord.gg/3FbCpdKbdY) / [Official Forks](https://mihon.app/forks/), [2](https://github.com/null2264/yokai), [3](https://github.com/nekomangaorg/Neko)
|
||||
* ⭐ **[Anime-Sharing](https://www.anime-sharing.com/#downloads-requests)** - Hentai Manga DDL
|
||||
* ⭐ **[Nyaa Sukebei](https://sukebei.nyaa.si/)** - Hentai Manga Torrents
|
||||
* ⭐ **[Wholesome Hentai](https://wholesomelist.com/)** - Wholesome Manga Index
|
||||
@ -470,13 +467,11 @@
|
||||
|
||||
## ▷ Games
|
||||
|
||||
* 🌐 **[Wotaku](https://wotaku.moe/nsfw#games)** - Eroge Index / [Discord](https://discord.gg/vShRGx8ZBC)
|
||||
* 🌐 **[EverythingMoe](https://everythingmoe.com/?nsfw=true#section-games)** - Hentai Games Index
|
||||
* ⭐ **[F95Zone](https://f95zone.to/)**
|
||||
* ⭐ **[Nyaa Sukebei](https://sukebei.nyaa.si/)**
|
||||
* ⭐ **[Anime-Sharing](https://www.anime-sharing.com/#downloads-requests)** - Hentai Games DDL
|
||||
* [Ryuugames](https://ryuugames.com/)
|
||||
* [VNPocket](https://vnpocket.com)
|
||||
* [CPG Repacks](https://cpgrepacks.site) - [Discord](https://discord.gg/dtBSZ9N)
|
||||
* [PornDude Games](https://theporndude.com/best-porn-games), [2](https://theporndude.com/free-sex-games)
|
||||
* [The Asenheim Project](https://www.asenheim.org) / [Play Online](https://tss.asenheim.org/)
|
||||
@ -578,6 +573,7 @@
|
||||
|
||||
* 🌐 **[MyGaySites](https://mygaysites.com/)** - Gay Porn Site Index
|
||||
* [PlayHDPorn Gay](https://www.playhdporn.com/categories/gay/)
|
||||
* [Gay-Hotfile](https://gay-hotfile.errio.net/) - Downloads
|
||||
* [Yupdates](https://yupdates.neocities.org/) - Gay Porn Artwork / [Drives](https://cat.yupdates.art/) / [Discord](https://discord.com/invite/ECFKuBawQg)
|
||||
* [PBC](https://pbc.xxx/) - Gay Porn Encyclopedia
|
||||
* [MyReadingManga](https://myreadingmanga.info/) - LGBTQ+ Hentai
|
||||
|
@ -32,7 +32,7 @@
|
||||
|
||||
## ▷ Streaming / البث
|
||||
|
||||
* ⭐ **[FaselHD](https://www.faselhd.world/)** - Movies / TV / Anime / Sub / 1080p / Use Adblocker
|
||||
* ⭐ **[FaselHD](https://www.faselhds.world/)** - Movies / TV / Anime / Sub / 1080p / Use Adblocker
|
||||
* ⭐ **[RunTV](https://runtv.cc/)** - Anime / Sub / 1080p
|
||||
* [ArabLionz](https://arlionztv.pro/) - Movies / TV / Sub / 1080p
|
||||
* [egydead](https://egydead.space/) - Movies / TV / Anime / Sub / 1080p
|
||||
@ -211,7 +211,7 @@
|
||||
|
||||
## ▷ Reading / 阅读
|
||||
|
||||
* ⭐ **[69xinshu](https://69shuba.cx/)** - Fiction
|
||||
* ⭐ **[69xinshu](https://www.69shu.top/)** - Fiction
|
||||
* [Jiumo](https://www.jiumodiary.com/) - Book Search Engine
|
||||
* [BooksThatMakeYouThink](https://t.me/BooksThatMakeYouThink) - Nonfiction
|
||||
* [AutumnWindBookstore](https://www.qiufengshuwu.com/) - Fiction
|
||||
@ -492,13 +492,13 @@
|
||||
|
||||
* [AB-Maps](https://www.abmaps.com/) - Map Tool
|
||||
* [WizdomSubs](https://wizdom.xyz/) or [Ktuvit](https://www.ktuvit.me/) - Subtitles
|
||||
* [TranslationsMovieHEB](https://t.me/translationsmoviesheb) - Request Subtitle Translations
|
||||
|
||||
## ▷ Streaming / הזרמה
|
||||
|
||||
* [Walla VODs](https://vod.walla.co.il/) - Movies / TV
|
||||
* [Watch It](https://israwatch.cc/), [2](https://wallaflix.com/) - TV
|
||||
* [TVFeel](https://tvfeel.cc/) - TV
|
||||
* [TVFeel](https://tvfeel.cc/) - Movies / TV
|
||||
* [Sdarot (clone)](https://sdarot-flix.com/) - TV
|
||||
* [Zobi](https://zobi.pw/) - TV
|
||||
* [JFC](https://jfc.org.il/) - Israel Movie Archive
|
||||
* [Animeil-TV](https://www.animeil-tv.com/) - Anime / [Telegram](https://t.me/AnimeILTVDiscussion)
|
||||
@ -507,7 +507,6 @@
|
||||
|
||||
## ▷ Downloading / הורדה
|
||||
|
||||
* [AnimeBlood](https://animebloodsub.net/) - Anime / Download / Sub
|
||||
* [ultsub](https://ultsub.co.il/) - Anime / Sub / [Discord](https://discord.gg/4Bc8b2W) / [Telegram](https://t.me/UltSub)
|
||||
|
||||
***
|
||||
@ -532,7 +531,7 @@
|
||||
## ▷ Downloading
|
||||
|
||||
* ⭐ **[OlaMovies](https://olamovies.rent/)** - Movies / TV / Sub / Dub / 1080p / 4K / [Telegram](https://t.me/olamovies_officialv6)
|
||||
* ⭐ **[VegaMovies](https://vegamovies.nz/)** - Movies / TV / Anime / 1080p / 4K / [Telegram](https://telegram.dog/VegamoviesTo_Official)
|
||||
* ⭐ **[VegaMovies](https://vegamovies.ist/)** - Movies / TV / Anime / 1080p / 4K / [Telegram](https://telegram.dog/VegamoviesTo_Official)
|
||||
* ⭐ **[MultiMovies](https://multimovies.space/)** - Movies / TV / Anime / Sub / Dub / 1080p / [Telegram](https://telegram.me/multimoviesfun)
|
||||
* ⭐ **[MkvCinemas](https://mkvcinemas.cymru/)** - Movies / TV / Anime / Sub / Dub / 1080p / 4K / [Telegram](https://t.me/+WzLYNDSawQk1MTk1)
|
||||
* ⭐ **[MoviesMod](https://moviesmod.life/)** - Movies / TV / Sub / Dub / 1080p / [Telegram](https://telegram.dog/moviesmodorg) / [Bypass](https://greasyfork.org/en/scripts/474747)
|
||||
@ -600,6 +599,7 @@ https://aniwow.in/ has only dubs though
|
||||
* [OnlineMoviesHindi](https://111.90.159.132/) - Movies / TV / Sub / Dub / 720p
|
||||
* [Mp4Moviez](https://www.mp4moviez.bingo/) - Movies / TV / 480p / [Telegram](https://t.me/mp4moviezofficial1)
|
||||
* [aFimlyWap](https://www.afilmywap.org.vc/) - Movies / TV / 480p / [Telegram](https://telegram.me/+QkTcitP80VplMzhl)
|
||||
* [NamasteSerials](https://namasteserials.com/) - TV / Sub / Dub / 720p
|
||||
* [Cloudy](https://cloudy.pk/) - Movies / TV / Cartoons / Sub / Dub / 720p / [Telegram](https://t.me/cloudy_pk)
|
||||
* [MovieHDPlus](https://www.moviehdplus.com/) - South Asian Movies / TV / Sub / Dub / 720p
|
||||
* [HindiPix](https://hindipix.com/) - Movies / TV / Dub / 720p
|
||||
@ -673,7 +673,7 @@ https://aniwow.in/ has only dubs though
|
||||
|
||||
* 🌐 **[The Italian Corsairs](https://rentry.co/the-italian-corsairs)** - Piracy Sites List
|
||||
|
||||
## ▷ Downloading / Scaricare
|
||||
## ▷ Downloading
|
||||
|
||||
* [eurekaddl](https://eurekaddl.makeup/) - Video / Audio / Books / Magazines / Newspapers / Comics / NSFW / Sub / 1080p
|
||||
* [OverDay](https://overday.info/) - Courses / Books
|
||||
@ -696,7 +696,7 @@ https://aniwow.in/ has only dubs though
|
||||
* [AnimeWorld](https://www.animeworld.so/) - Anime / Sub / 1080p
|
||||
* [Ovovideo](http://ovovideo.com/) - Video Encyclopedia
|
||||
|
||||
## ▷ Reading / Leggere
|
||||
## ▷ Reading
|
||||
|
||||
* [LiberLiber](https://liberliber.it/opere/libri/) - Books
|
||||
* [hastateam](https://ddt.hastateam.com/) - Manga
|
||||
@ -725,6 +725,7 @@ https://aniwow.in/ has only dubs though
|
||||
* [jpddl](https://jpddl.com/) - Manga / Raw Anime / Music / Drama / 1080p
|
||||
* [JPLearner](http://www.jplearner.to/) - Video / Manga / Raw Anime / Magazines / 1080p
|
||||
* [Sukidesuost](https://sukidesuost.info/) - Music / MP3 / FLAC
|
||||
* [HikariNoAkari](https://hikarinoakari.com/) - Music / MP3 / FLAC
|
||||
* [JPop Singles](https://www.jpopsingles.eu/) - Music / MP3 / FLAC
|
||||
* [Doujin Cafe (Discord)](https://discord.gg/doujincafe) - Music / MP3 / FLAC
|
||||
* [DoujinStyle](https://doujinstyle.com/) - Music / MP3 / FLAC
|
||||
@ -869,8 +870,18 @@ https://aniwow.in/ has only dubs though
|
||||
* [Patoghu](https://patoghu.com/) - Software / Games
|
||||
* [Old Persian Games](https://oldpersiangames.org/) - Iranian Games
|
||||
* [Download.ir](https://download.ir/) - Video / Software / ROMs / Books
|
||||
* [dlfars](https://dlfars.ir/) - Movies / TV / Anime / Sub / 1080p
|
||||
* [Film2Media](https://www.f2mx.ir/) - Movies / TV / Dub / 1080p
|
||||
* [AIOFilm](https://aiofilm.ir/) - Movies / TV / Anime / Sub / 1080p
|
||||
* [dlrozaneh](https://dlrozaneh.ir/) - Movies / Sub / Dub / 1080p
|
||||
* [DigiMovie](https://digimoviez.com/) - Movies / TV / Sub / Dub / 1080p
|
||||
* [Tikfilmz](https://tikfilmz.ir/) - Movies / TV / Sub / 1080p
|
||||
* [GanjDL](http://www.ganjdl.ir/) - Movies / TV / Sub / Dub / 1080p
|
||||
* [KaranMovie](https://karanmovie.org/) - Movies / TV / Sub / Dub / 1080p
|
||||
* [HamrahMovies](https://hamrahmoviez.ir/) - Movies / TV / Sub / Dub / 1080p / [Telegram](https://t.me/hamrahmovieesir)
|
||||
* [HexDL](https://hexdl.com/) - Movies / TV / Cartoons / Dub / 1080p
|
||||
* [pishgammovie](https://pishgammovie.ir/) - Movies / TV / Dub / 1080p
|
||||
* [CenterDL](https://centerdl.ir/) - Movies / TV / Sub / Dub / 1080p
|
||||
* [iranianfilmarch](https://t.me/iranianfilmarch) - Iranian Movies / 1080p
|
||||
* [AnimeSubtitle](https://animesubtitle.ir/) - Anime Subtitles
|
||||
* [FLACColdSong](https://t.me/flacoldsong) - Music / FLAC
|
||||
@ -1014,7 +1025,7 @@ https://aniwow.in/ has only dubs though
|
||||
## ▷ Streaming / Transmitindo
|
||||
|
||||
* ⭐ **[Braflix](https://www.braflix.ru/)** - Movies / TV / Anime / Dub / 4K / 1080p
|
||||
* ⭐ **[CriaFlix](https://criaflix.live/)** - Movies / TV / Anime / 1080p / [Discord](https://discord.com/z72kQpKRUP)
|
||||
* ⭐ **[CriaFlix](https://criaflix.live/)** - Movies / TV / Anime / 1080p
|
||||
* ⭐ **[Gyn Cursos](https://gyncursos.com.br)**, **[Curso em Vídeo](https://www.cursoemvideo.com)**, **[iEstudar Cursos](https://iestudar.com)** or **[Pensar Cursos](https://www.pensarcursos.com.br)** - Courses
|
||||
* [WarezCDN](https://warezcdn.com) - API for Movies / TV / Anime
|
||||
* [Vizer](https://vizertv.in/) - Movies / TV / Anime / Sub / Dub / 1080p
|
||||
@ -1092,6 +1103,7 @@ https://aniwow.in/ has only dubs though
|
||||
* [Arte HQs](http://www.artehqs.com.br) - Comics
|
||||
* [Tropa BR](https://tropabrscans.blogspot.com) - Comics
|
||||
* [Banda Desenhada](https://bandadesenhada-pt.blogspot.com/) - Comics
|
||||
* [Mangás Chan](https://mangaschan.com) - Manga
|
||||
* [Kiniga](https://kiniga.com) - Light Novels
|
||||
* [Novel Mania](https://novelmania.com.br) - Light Novels
|
||||
* [Central Novel](https://centralnovel.com) - Light Novels
|
||||
@ -1183,10 +1195,9 @@ https://aniwow.in/ has only dubs though
|
||||
* [World Art](http://www.world-art.ru/) - Movie / Anime / Game Reviews and Art Display
|
||||
* [Cute Chan](https://kpop.re/) - K-Pop Imageboard
|
||||
|
||||
## ▷ Downloading / Скачивание
|
||||
## ▷ Downloading / Скачивать
|
||||
|
||||
* ⭐ **[4PDA](https://4pda.to/forum/)** - Android / iOS / [App](https://github.com/slartus/4pdaClient-plus)
|
||||
* [Androeed](https://androeed.store/), [2](https://androeed.ru/) - Android
|
||||
* ⭐ **[4PDA](https://4pda.to/forum/)** - Android / iOS
|
||||
* [m0nkrus](https://w14.monkrus.ws/) or [DC Hublist](https://dchublist.ru/hubs/) - Software
|
||||
* [CWER](http://cwer.ru/), [2](http://cwer.ws/) - Video / Audio / Games / Books
|
||||
* [2BakSa](http://2baksa.ws/) - Video / Audio / Books
|
||||
@ -1197,9 +1208,10 @@ https://aniwow.in/ has only dubs though
|
||||
* [MetalArea](https://metalarea.org/) or [MDCORE](https://vk.com/mdcore) - Metal / MP3
|
||||
* [MDROCK](https://vk.com/mdrock) - Rock / MP3
|
||||
* [KinoSoundtrack](https://www.kinosoundtrack.com/) - Soundtracks / MP3
|
||||
* [KinoMuzic](https://kinomuzic.ru/) - Soundtracks / Audiobooks / MP3 / FLAC
|
||||
* [Course Hunter](https://coursehunter.net/) or [Sliwbl](https://s1.sliwbl.com/) - Programming Courses
|
||||
|
||||
## ▷ Torrenting / Торрентинг
|
||||
## ▷ Torrenting / Пиратить
|
||||
|
||||
* 🌐 **[toptracker](https://toptracker.ru/)** - Torrent Site List
|
||||
* 🌐 **[UpTracker](https://www.uptracker.ru/)** - Torrent Tracker Index
|
||||
@ -1229,7 +1241,7 @@ https://aniwow.in/ has only dubs though
|
||||
* [Selezen](https://www.selezen.club/) - Movies
|
||||
* [RGFootball](http://rgfootball.net/) - Sports
|
||||
|
||||
## ▷ Streaming / Стриминг
|
||||
## ▷ Streaming / Транслировать
|
||||
|
||||
* ⭐ **[rezka](https://rezka.ag/)**, [2](https://hdrezka.ag/) - Movies / TV / Anime / Sub / Dub / 4K / 1080p
|
||||
* ⭐ **[KinoProfi](https://content.kinoprofi.club/)** - Movies / TV / Cartoons / Dub / 1080p
|
||||
@ -1282,7 +1294,7 @@ https://aniwow.in/ has only dubs though
|
||||
* [Teach.in](https://teach-in.ru/) - Lectures
|
||||
* [videotuts](https://videotuts.ru/) - Design Video Tutorials
|
||||
|
||||
## ▷ Reading / Чтение
|
||||
## ▷ Reading / читать
|
||||
|
||||
* ⭐ **[CyberLeninka](https://cyberleninka.ru/)** - Articles / Educational / Scientific / Legal
|
||||
* ⭐ **[Lib.ru](http://lib.ru/)** - Books
|
||||
@ -1298,6 +1310,7 @@ https://aniwow.in/ has only dubs though
|
||||
* [libking](https://libking.ru/) - Books
|
||||
* [rulit](https://www.rulit.me/) - Books
|
||||
* [bookscafe](https://bookscafe.net/) - Books / NSFW
|
||||
* [KinoMuzic](https://kinomuzic.ru/) - Books / Soundtracks
|
||||
* [MirKnig.sur](https://mirknig.su/) - Books / Fiction / Nonfiction
|
||||
* [saitknigi](https://ru.sait-knigi.ru/) - Books / Audiobooks
|
||||
* [Litgu.ru](https://litgu.ru/) - Books / Audiobooks
|
||||
@ -1420,7 +1433,6 @@ https://aniwow.in/ has only dubs though
|
||||
* ⭐ **[Grantorrent.wtf](https://grantorrent.wtf/)** - Movies / TV / Documentaries / Castilian
|
||||
* ⭐ **[Elitetorrent](https://www.elitetorrent.wf/)** - Movies / TV / Anime / Castilian / Latino / VOSE
|
||||
* [Descargas2020](https://descargas2020.net/) - Movies / TV
|
||||
* [Wolfmax4k](https://wolfmax4k.com/) - Movies / TV / 4K / 1080p
|
||||
* [EsmeraldaTorrent](https://esmeraldatorrent.com/) - Movies / TV / Castilian
|
||||
* [CalidadTorrent](https://calidadtorrent.com/) - Movies / TV / Documentaries / Castilian
|
||||
* [PediaTorrent](https://pediatorrent.com/) - Movies / TV / Documentaries / Castilian
|
||||
@ -1444,8 +1456,8 @@ https://aniwow.in/ has only dubs though
|
||||
* ⭐ **[Cuevana](https://cuevana.si/)** - Movies / TV / Anime / 1080p / Latino
|
||||
* ⭐ **[LaQuay TDT Channels](https://www.tdtchannels.com/) / [GitHub](https://github.com/LaQuay/TDTChannels)** - Live TV / Live Radio / IPTV / Castilian
|
||||
* ⭐ **[El Plan](https://www.reddit.com/user/No_Land656)** - Live Sports Acestream IDs
|
||||
* ⭐ **[Flipax](https://flipax.es/)** - Live Sports
|
||||
* [PlayDede](https://playdede.eu/) - Movies / TV / Anime / 1080p / Castilian / Latino / [Telegram](https://t.me/s/playdedeinformacion)
|
||||
* ⭐ **[Flipax](https://jepsikuydo1.foroactivo.com/h1-agenda)** - Live Sports
|
||||
* [PlayDede](https://playdede.us/) - Movies / TV / Anime / 1080p / Castilian / Latino / [Telegram](https://t.me/s/playdedeinformacion)
|
||||
* [Zonaleros](https://www.zona-leros.com/peliculas-hd-online-lat) - Movies / TV / 1080p / Latino
|
||||
* [Solo Latino](https://sololatino.net/) - Movies / TV / Anime / 1080p / Latino
|
||||
* [PelisPlusHD.nz](https://pelisplushd.nz/) - Movies / TV / Anime / Latino / [Telegram](https://t.me/pelisplushd_nu)
|
||||
@ -1701,7 +1713,6 @@ https://aniwow.in/ has only dubs though
|
||||
* ⭐ **[J2team](https://www.facebook.com/groups/j2team.community)** - Tech Community
|
||||
* ⭐ **[Unikey](https://www.unikey.org/en/)**, [Vietkey](https://vietkey.com.vn/) or [EVkey](https://evkeyvn.com/) - Vietnamese Typing Software
|
||||
* [Quantrimang](https://quantrimang.com/), [Anonyviet](https://anonyviet.com/) - Tech News
|
||||
* [VozForums](https://vozforum.org/) - Tech Forum
|
||||
* [Phudeviet](http://phudeviet.org/) - Subtitles
|
||||
* [CocCoc](https://coccoc.com/search) - Search
|
||||
* [Speedtest](https://speedtest.vn/), [Vinahost](https://speedtest.vinahost.vn/) - Internet Speed Test
|
||||
|
@ -51,7 +51,7 @@
|
||||
# ► Ebooks
|
||||
|
||||
* ↪️ **[Telegram Ebook Channels](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_telegram_ebook_download)**
|
||||
* ⭐ **[Anna’s Archive](https://annas-archive.org/)**, [2](https://annas-archive.se/), [3](https://annas-archive.li/), [4](https://annas-archive.gs/) - Books / Comics / Educational / [Expand Downloads](https://greasyfork.org/en/scripts/494262) / [Host Mirror](https://annas-archive.se/mirrors)
|
||||
* ⭐ **[Anna’s Archive](https://annas-archive.org/)**, [2](https://annas-archive.gs/), [3](https://annas-archive.se/) - Books / Comics / Educational / [Expand Downloads](https://greasyfork.org/en/scripts/494262)
|
||||
* ⭐ **[Library Genesis](https://libgen.is)** - Books / Comics / Manga / [Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_libgen_tools) / [Mirrors](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_libgen__mirrors)
|
||||
* ⭐ **[Z-Library](https://singlelogin.re/)**, [2](https://singlelogin.rs/) - Books / Comics / Educational / [Desktop / Extensions](https://zlibrary-qq.re/), [2](https://go-to-library.sk/) / [.Onion](http://loginzlib2vrak5zzpcocc3ouizykn6k5qecgj2tzlnab5wcbqhembyd.onion/) / [Subreddit](https://www.reddit.com/r/zlibrary/) / [Telegram](https://t.me/zlibrary_official)
|
||||
* ⭐ **[Liber3](https://liber3.eth.limo/)** - Books / [Telegram](https://t.me/liber3eth)
|
||||
@ -269,7 +269,6 @@
|
||||
* [Booksie](https://www.booksie.com/) - Short Stories
|
||||
* [Vestal Review](https://www.vestalreview.net/) - Short Stories
|
||||
* [Library of Short Stories](https://www.libraryofshortstories.com/) - Short Stories
|
||||
* [Vocal Media](https://vocal.media/fiction/) - Short Stories
|
||||
* [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
|
||||
* [Fim Fiction](https://www.fimfiction.net/) - MLP Fanfiction
|
||||
@ -294,9 +293,17 @@
|
||||
* [VGArtbooks](https://vk.com/vgartbooks) - Video Game Artbooks
|
||||
* [Deep-Blue-Sea](http://library.deep-blue-sea.net/) - Self-Help
|
||||
* [The Eldritch Dark](http://www.eldritchdark.com/) - Clark Ashton Smith
|
||||
* [Appropedia](https://www.appropedia.org/) - Sustainability Wiki
|
||||
* [Auto-Brochures.com](https://www.auto-brochures.com/) - Auto Brochures
|
||||
* [QSL](https://rentry.co/FMHYBase64#qsl) - Ham Radio & Antenna Books
|
||||
* [Film Books](https://rentry.co/FMHYBase64#film-books) - Film Books
|
||||
* [FoodTimeLine](https://www.foodtimeline.org/) - Food History
|
||||
* [Erowid](https://www.erowid.org/) - Psychoactive Information
|
||||
* [PsychonautWiki](https://psychonautwiki.org/wiki/Main_Page) - Phychonauts Wiki
|
||||
* [Shroomery](https://www.shroomery.org/) - Magic Mushroom Forum
|
||||
* [HerbologyY](https://t.me/HerbologyY) - Herbology / Telegram
|
||||
* [Film Books](https://rentry.co/FMHYBase64#film-books) - Books about Films
|
||||
* [HypnosisChatBooks](https://t.me/HypnosisChatBooks) - Hypnosis / Telegram
|
||||
* [diyhpluswiki](https://diyhpl.us/wiki/) - DIY Biohacking
|
||||
* [The Trove](https://web.archive.org/web/20210614215400/https://thetrove.is/) - Books / Fantasy / TTRPG
|
||||
* [DriveThruRPG](https://www.drivethrurpg.com/browse.php?pfrom=&pto=0&x=0&y=0) or [TTRPG Torrent](https://rentry.co/FMHYBase64#ttrpg-books) - TTRPG Books
|
||||
* [Trans Reads](https://transreads.org/) - Transgender-focused Literature
|
||||
@ -307,6 +314,7 @@
|
||||
* [Red Texts](https://redtexts.org/) - Communism
|
||||
* [Communism Essays / FAQs](https://dessalines.github.io/essays) - Communism
|
||||
* [Third World Traveler](https://thirdworldtraveler.com/) - Human Rights / Conspiracies / Anti-War
|
||||
* [Rookie Road]( https://www.rookieroad.com/) - Sport Guides
|
||||
|
||||
***
|
||||
|
||||
@ -356,7 +364,7 @@
|
||||
|
||||
## ▷ Manga
|
||||
|
||||
* 🌐 **[Wotaku](https://wotaku.moe/websites#manga)** - Manga Sites Index / [Discord](https://discord.gg/vShRGx8ZBC)
|
||||
* 🌐 **[Wotaku](https://wotaku.moe/websites#manga)** - Manga Sites Index
|
||||
* 🌐 **[The Index](https://theindex.moe/library/manga)** - Manga Sites Index / [Discord](https://discord.gg/Snackbox) / [Wiki](https://thewiki.moe/)
|
||||
* 🌐 **[EverythingMoe](https://everythingmoe.com/#section-manga)** - Manga Sites Index / [Discord](https://discord.gg/GuueaDgKdS)
|
||||
* ↪️ **[Manga Readers / Managers](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_manga_readers)**
|
||||
@ -430,7 +438,6 @@
|
||||
|
||||
## ▷ Light Novels
|
||||
|
||||
* 🌐 **[Wotaku](https://wotaku.moe/websites#novels)** - Light Novel Index / [Discord](https://discord.gg/vShRGx8ZBC)
|
||||
* 🌐 **[EverythingMoe](https://everythingmoe.com/#section-novel)** - Light Novel Sites Index / [Discord](https://discord.gg/GuueaDgKdS)
|
||||
* 🌐 **[The Index](https://theindex.moe/library/novels)** - Light Novel Site Index / [Discord](https://discord.gg/Snackbox) / [Wiki](https://thewiki.moe/)
|
||||
* ⭐ **[Novel Updates](https://www.novelupdates.com/)**
|
||||
@ -776,7 +783,10 @@
|
||||
* ⭐ **[Nexus search](https://t.me/nexus_search/94)**, [2](https://t.me/nexus_search/214) - Science / Articles
|
||||
* [Wikisource](https://en.wikisource.org) - Poetry / Text / Documents
|
||||
* [Heystacks](https://heystacks.com/) - Public Google Docs
|
||||
* [PDFSlide](https://pdfslide.net/) - Document Search
|
||||
* [IDoc](https://idoc.pub/) - Document Search
|
||||
* [VDocuments](https://vdocuments.site/) - Document Search
|
||||
* [docplayer](https://docplayer.net/) - Document Search
|
||||
* [Higher Intellect](https://preterhuman.net/) - Document Search
|
||||
* [qDoc](https://idoc.tips/) - Document Search
|
||||
* [Doc Search](https://parksdigital.com/doc-search/) - Document Search
|
||||
@ -855,7 +865,7 @@
|
||||
* ⭐ **[GoodReads](https://www.goodreads.com/)** / [Frontend](https://github.com/nesaku/BiblioReads) - Books / Comics / Manga / [Ratings Filter](https://www.book-filter.com/)
|
||||
* ⭐ **[TasteDive](https://tastedive.com/)** - Books
|
||||
* ⭐ **[StoryGraph](https://www.thestorygraph.com/)** - Books
|
||||
* ⭐ **[The Greatest Books](https://www.thegreatestbooks.org/)** - Book Recommendations / [Download](https://rentry.co/FMHYBase64#top-200)
|
||||
* ⭐ **[The Greatest Books](https://www.thegreatestbooks.org/)** - Book Recommendations
|
||||
* ⭐ **[MyAnimeList](https://myanimelist.net/)** - Manga / Light Novels / [Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_myanimelist_tools)
|
||||
* ⭐ **[Anilist](https://anilist.co/home)** - Manga / Light Novels / Manhwa / Manhua / [Wrapper](https://github.com/butterstroke/Anilist-Node) / [Extras](https://greasyfork.org/en/scripts/370473-automail)
|
||||
* ⭐ **[MangaUpdates](https://www.mangaupdates.com/)** - Manga (Has Obscure Stuff)
|
||||
@ -925,16 +935,15 @@
|
||||
* ⭐ **[Calibre](https://calibre-ebook.com/)** - Ebook Reader / PC / Android / iOS
|
||||
* ⭐ **[EinkBro](https://github.com/plateaukao/einkbro)** - E-Ink Browser
|
||||
* [Postlight](https://reader.postlight.com/), [Reader Mode](https://readermode.io/) or [Tranquility](https://addons.mozilla.org/en-GB/firefox/addon/tranquility-1/) - Article Readers / Managers
|
||||
* [Librum](https://librumreader.com) / [GitHub](https://github.com/Librum-Reader/Librum) - Ebook Reader / PC / Linux / Mac
|
||||
* [EBook Reader](https://epub-reader.online/) - Ebook Reader / PC / Android / iOS / Mac
|
||||
* [KoReader](https://koreader.rocks/) - Ebook Reader / PC / Android / [GitHub](https://github.com/koreader/koreader)
|
||||
* [Jane Reader](https://janereader.com/) - Ebook Reader / PC / Mac
|
||||
* [FBReader](https://fbreader.org/) - Ebook Reader / PC / Android / iOS
|
||||
* [Librum](https://librumreader.com) / [GitHub](https://github.com/Librum-Reader/Librum) - Ebook Reader / PC / Linux / Mac
|
||||
* [Thorium](https://thorium.edrlab.org/) - Ebook Reader / PC / Mac / Linux
|
||||
* [Jane Reader](https://janereader.com/) - Ebook Reader / PC / Mac
|
||||
* [Okular](https://okular.kde.org/) - PDF / Linux / PC / Mac
|
||||
* [Aquile Reader](https://apps.microsoft.com/detail/9p08t4jltqnk) - Ebook Reader / PC
|
||||
* [Icecream Reader](https://icecreamapps.com/Ebook-Reader/) - Ebook Reader / PC
|
||||
* [Foliate](https://johnfactotum.github.io/foliate/) - Ebook Reader / Linux
|
||||
* [Adobe Acrobat](https://acrobat.adobe.com/us/en/acrobat/pdf-reader.html) - PDF / PC
|
||||
* [qPDFview](https://launchpad.net/qpdfview) - PDF / PC
|
||||
* [mupdf](https://mupdf.com/) - PDF / PC
|
||||
* [Evince](https://wiki.gnome.org/Apps/Evince) - PDF / DjVu Reader / Linux
|
||||
|
255
STORAGE.md
255
STORAGE.md
@ -29,10 +29,11 @@
|
||||
* ⭐ **[Yandex](https://yandex.com/)**
|
||||
* ⭐ **[Ecosia](https://www.ecosia.org/)** - [Firefox](https://addons.mozilla.org/en-US/firefox/addon/ecosia-the-green-search/) / [Chrome](https://chromewebstore.google.com/detail/ecosia-the-search-engine/eedlgdlajadkbbjoobobefphmfkcchfk)
|
||||
* [Leta](https://leta.mullvad.net) - Mullvad VPN required
|
||||
* [You](https://you.com/) - [AI Search](https://you.com/search?q=who+are+you&fromSearchBar=true&tbm=youchat)
|
||||
* [MWMBL](https://mwmbl.org/) - [GitHub](https://github.com/mwmbl/mwmbl)
|
||||
* [Presearch](https://presearch.com/) - [GitHub](https://github.com/presearchofficial)
|
||||
|
||||
[Bing](https://www.bing.com/), [Lycos](https://www.lycos.com/), [WebCrawler](https://www.webcrawler.com/), [Million Short](https://millionshort.com/), [Andi](https://andisearch.com/), [Excite](https://search.excite.com/), [Metacrawler](https://www.metacrawler.com/), [Carrot2](https://search.carrot2.org/#/web), [4Search](https://www.4search.com/), [Info.com](https://www.info.com/), [Yahoo](https://www.yahoo.com/), [FrogFind!](http://frogfind.com/), [Visymo Search](https://search.visymo.com/), [AOL](https://search.aol.com/), [All in One](https://all-io.net/), [All the Internet](https://www.alltheinternet.com/), [eTools.ch](https://www.etools.ch/), [BizNar](https://biznar.com/biznar/desktop/en/search.html), [WorldWideScience](https://worldwidescience.org/), [ZincSearch](https://github.com/zincsearch/zincsearch), [Whoogle Search](https://benbusby.com/projects/whoogle-search/), [infospace](https://www.infospace.com/), [2lingual](https://www.2lingual.com/), [alexandria.org](https://www.alexandria.org/)
|
||||
[Bing](https://www.bing.com/), [Lycos](https://www.lycos.com/), [WebCrawler](https://www.webcrawler.com/), [Million Short](https://millionshort.com/), [Andi](https://andisearch.com/), [Excite](https://search.excite.com/), [Metacrawler](https://www.metacrawler.com/), [entireweb](https://www.entireweb.com/), [Carrot2](https://search.carrot2.org/#/web), [4Search](https://www.4search.com/), [Info.com](https://www.info.com/), [Yahoo](https://www.yahoo.com/), [FrogFind!](http://frogfind.com/), [Visymo Search](https://search.visymo.com/), [AOL](https://search.aol.com/), [All in One](https://all-io.net/), [All the Internet](https://www.alltheinternet.com/), [eTools.ch](https://www.etools.ch/), [BizNar](https://biznar.com/biznar/desktop/en/search.html), [WorldWideScience](https://worldwidescience.org/), [ZincSearch](https://github.com/zincsearch/zincsearch), [Whoogle Search](https://benbusby.com/projects/whoogle-search/), [infospace](https://www.infospace.com/), [2lingual](https://www.2lingual.com/), [alexandria.org](https://www.alexandria.org/)
|
||||
|
||||
***
|
||||
|
||||
@ -62,9 +63,7 @@
|
||||
|
||||
## Android Note Apps
|
||||
|
||||
* ⭐ **[Easy Notes](https://github.com/Kin69/EasyNotes)**
|
||||
|
||||
[Markor](https://fossdroid.com/a/markor.html), [sNotz](https://sunilpaulmathew.github.io/sNotz/), [Google Keep](https://play.google.com/store/apps/details?id=com.google.android.keep), [Bundled Notes](https://play.google.com/store/apps/details?id=com.xaviertobin.noted), [ColorNote](https://www.colornote.com/), [Notion](https://www.notion.so/), [Joplin](https://joplinapp.org/), [Notebook](https://www.zoho.com/notebook/), [UpNote](https://play.google.com/store/apps/details?id=com.getupnote.android), [OneNote](https://support.microsoft.com/en-us/office/microsoft-onenote-for-android-46b4b49d-2bef-4746-9c30-6abb5e20b688), [neutriNote](https://github.com/appml/neutrinote), [Writer Plus](https://play.google.com/store/apps/details?id=co.easy4u.writer), [Orgzly](https://github.com/orgzly-revived/orgzly-android-revived), [Justnote](https://justnote.cc/), [Note to Self](https://play.google.com/store/apps/details?id=com.makenotetoself), [Noto](https://github.com/alialbaali/Noto), [Obsidian](https://obsidian.md/mobile), [Saber](https://github.com/saber-notes/saber) (tablets), [Quillpad](https://quillpad.github.io/), [Spooky](https://theachoem.github.io/spooky-mb/), [Moe Memos](https://memos.moe/), [Ara Note](https://github.com/hashemi-hossein/ara-note), [Notally](https://github.com/OmGodse/Notally), [Omni Notes](https://omninotes.app/), [Walling](https://play.google.com/store/apps/details?id=app.walling.mandroid), [Orion](https://play.google.com/store/apps/details?id=com.orion.notein.global), [memos](https://memos.moe/), [NotiNotes](https://github.com/Yanndroid/NotiNotes), [DailyNote](https://play.google.com/store/apps/details?id=com.akapps.dailynote), [Workflowy](https://play.google.com/store/apps/details?id=com.workflowy.android), [OpenNote](https://github.com/YangDai2003/OpenNote-Compose), [NotePad](https://github.com/mshdabiola/NotePad)
|
||||
[Markor](https://fossdroid.com/a/markor.html), [sNotz](https://sunilpaulmathew.github.io/sNotz/), [Google Keep](https://play.google.com/store/apps/details?id=com.google.android.keep), [Bundled Notes](https://play.google.com/store/apps/details?id=com.xaviertobin.noted), [ColorNote](https://www.colornote.com/), [Notion](https://www.notion.so/), [Joplin](https://joplinapp.org/), [Notebook](https://www.zoho.com/notebook/), [UpNote](https://play.google.com/store/apps/details?id=com.getupnote.android), [OneNote](https://support.microsoft.com/en-us/office/microsoft-onenote-for-android-46b4b49d-2bef-4746-9c30-6abb5e20b688), [neutriNote](https://github.com/appml/neutrinote), [Writer Plus](https://play.google.com/store/apps/details?id=co.easy4u.writer), [Orgzly](https://github.com/orgzly-revived/orgzly-android-revived), [Justnote](https://justnote.cc/), [Note to Self](https://play.google.com/store/apps/details?id=com.makenotetoself), [Noto](https://github.com/alialbaali/Noto), [Obsidian](https://obsidian.md/mobile), [Saber](https://github.com/saber-notes/saber) (tablets), [Quillpad](https://quillpad.github.io/), [Spooky](https://theachoem.github.io/spooky-mb/), [Moe Memos](https://memos.moe/), [Ara Note](https://github.com/hashemi-hossein/ara-note), [Notally](https://github.com/OmGodse/Notally), [Omni Notes](https://omninotes.app/), [Walling](https://play.google.com/store/apps/details?id=app.walling.mandroid), [Orion](https://play.google.com/store/apps/details?id=com.orion.notein.global), [memos](https://memos.moe/), [NotiNotes](https://github.com/Yanndroid/NotiNotes), [DailyNote](https://play.google.com/store/apps/details?id=com.akapps.dailynote), [Workflowy](https://play.google.com/store/apps/details?id=com.workflowy.android), [OpenNote](https://github.com/YangDai2003/OpenNote-Compose) [Easy Notes](https://github.com/Kin69/EasyNotes)
|
||||
|
||||
### To-Do Apps
|
||||
|
||||
@ -89,7 +88,7 @@
|
||||
* ⭐ **[VLC](https://www.videolan.org/vlc/download-android.html)**
|
||||
* ⭐ **[Just Player](https://github.com/moneytoo/Player)**
|
||||
|
||||
[MX Player](https://rentry.co/FMHYBase64#mx-player) / [Codec](https://github.com/USBhost/MX_FFmpeg), [mpv-android](https://github.com/mpv-android/mpv-android), [Nova Video Player](https://github.com/nova-video-player), [Fermata Media Player](https://github.com/AndreyPavlenko/Fermata), [Aos AVP](https://github.com/nova-video-player/aos-AVP), [SPlayer](https://splayer.dev/), [Next Player](https://github.com/anilbeesetti/nextplayer), [M3UAndroid](https://github.com/realOxy/M3UAndroid) / [Telegram](https://t.me/m3u_android), [Audiofy](https://github.com/iZakirSheikh/Audiofy)
|
||||
[MX Player](https://rentry.co/FMHYBase64#mx-player) / [Codec](https://github.com/USBhost/MX_FFmpeg), [mpv-android](https://github.com/mpv-android/mpv-android), [Nova Video Player](https://github.com/nova-video-player), [Fermata Media Player](https://github.com/AndreyPavlenko/Fermata), [Aos AVP](https://github.com/nova-video-player/aos-AVP), [SPlayer](https://splayer.dev/), [Next Player](https://github.com/anilbeesetti/nextplayer), [M3UAndroid](https://github.com/realOxy/M3UAndroid) / [Telegram](https://t.me/m3u_android)
|
||||
|
||||
***
|
||||
|
||||
@ -99,7 +98,7 @@
|
||||
* [Really Good Emails](https://reallygoodemails.com/) - Product Email Mobile Designs and Templates
|
||||
* [Screen from Traction](https://screen.traction.one/) - Create App Screenshots
|
||||
|
||||
[Previewed](https://previewed.app/), [Mockup World](https://www.mockupworld.co/), [DeviceShots](https://deviceshots.com/), [DeviceFrames](https://deviceframes.com/), [shots.so](https://shots.so/), [medialoot](https://medialoot.com/free-mockups/), [MockMagic](https://www.mockmagic.com/), [MockupsForFree](https://mockupsforfree.com/), [zippypixels](https://zippypixels.com/), [Mockuphone](https://mockuphone.com/), [TheMockupClub](https://themockup.club/), [RiseShot](https://www.riseshot.com/), [Upmock](https://www.upmock.io/), [LS Graphics](https://www.ls.graphics/), [Picasso](https://www.picassoapp.ca/), [minimalmockups](https://www.minimalmockups.com/), [mrmockup](https://mrmockup.com/free-mockups/), [mockupnest](https://mockupnest.com/)
|
||||
[Previewed](https://previewed.app/), [Mockup World](https://www.mockupworld.co/), [DeviceShots](https://deviceshots.com/), [DeviceFrames](https://deviceframes.com/), [shots.so](https://shots.so/), [medialoot](https://medialoot.com/free-mockups/), [MockMagic](https://www.mockmagic.com/), [MockupsForFree](https://mockupsforfree.com/), [zippypixels](https://zippypixels.com/), [Mockuphone](https://mockuphone.com/), [TheMockupClub](https://themockup.club/), [RiseShot](https://www.riseshot.com/), [Upmock](https://www.upmock.io/), [LS Graphics](https://www.ls.graphics/), [Picasso](https://www.picassoapp.ca/)
|
||||
|
||||
***
|
||||
|
||||
@ -111,20 +110,6 @@
|
||||
|
||||
***
|
||||
|
||||
***
|
||||
|
||||
## Background Removers
|
||||
|
||||
* ⭐ **[Remove Background Web](https://huggingface.co/spaces/Xenova/remove-background-web)**
|
||||
|
||||
[remove.bg](https://www.remove.bg/), [RemoveBG-GIMP](https://github.com/manu12121999/RemoveBG-GIMP), [BGBye](https://fyrean.itch.io/bgbye-background-remover), [Rembg](https://github.com/danielgatis/rembg), [Adobe Express Background Remover](https://www.adobe.com/express/feature/image/remove-background), [magic-copy](https://github.com/kevmo314/magic-copy)
|
||||
|
||||
### Object Removers
|
||||
|
||||
[Lama Cleaner](https://lama-cleaner-docs.vercel.app/), [Inpaint](https://theinpaint.com/), [Magic Eraser](https://magicstudio.com/magiceraser), [Remover](https://remover.zmo.ai/), [IOPaint](https://github.com/Sanster/IOPaint), [Cleanup.pictures](https://cleanup.pictures/), [ObjectRemover](https://objectremover.com/), [Segment Anything](https://segment-anything.com/), [ImageCleanr](https://www.imagecleanr.com), [Samist](https://github.com/dibrale/samist), [hama](https://www.hama.app/), [sd-webui-segment-anything](https://github.com/continue-revolution/sd-webui-segment-anything)
|
||||
|
||||
***
|
||||
|
||||
## Browser eBook Readers
|
||||
|
||||
* ⭐ **[Reader View](https://webextension.org/listing/chrome-reader-view.html)**, [2](https://mybrowseraddon.com/reader-view.html)
|
||||
@ -147,7 +132,7 @@
|
||||
* [TabWave](https://www.tabwave.app/) - Minimal / Productivity New Tab
|
||||
* [Tabiverse](https://pastebin.com/tApHRJDv) / [Discord](https://discord.gg/MUgRGwE)
|
||||
|
||||
[Minimal Startpage](https://github.com/deepjyoti30/startpage), [hexagonTab](https://github.com/zombieFox/hexagonTab), [CaretTab](https://www.carettab.com/), [mesmerized](https://mesmerized.me/), [Bonjourr](https://bonjourr.fr/), [Perfect Home](https://github.com/perfect-things/perfect-home), [Yet Another Speed Dial](https://github.com/conceptualspace/yet-another-speed-dial), [Tabliss](https://tabliss.io/), [Infinity New Tab](https://en.infinitynewtab.com/), [b2ntp](https://d3ward.github.io/b2ntp/), [Terminal-style new tab page](https://github.com/midnitefox/Nord-Theme-Ports-and-Assets/tree/main/custom-start-page), [Renewed Tab](https://renewedtab.com/), [Anori](https://anori.app/), [Momentum](https://momentumdash.com/), [NightTab](https://github.com/zombieFox/nightTab)
|
||||
[Minimal Startpage](https://github.com/deepjyoti30/startpage), [hexagonTab](https://github.com/zombieFox/hexagonTab), [CaretTab](https://www.carettab.com/), [mesmerized](https://mesmerized.me/), [Bonjourr](https://bonjourr.fr/), [Perfect Home](https://github.com/perfect-things/perfect-home), [Yet Another Speed Dial](https://github.com/conceptualspace/yet-another-speed-dial), [Tabliss](https://tabliss.io/), [Infinity New Tab](https://en.infinitynewtab.com/), [b2ntp](https://d3ward.github.io/b2ntp/), [Terminal-style new tab page](https://github.com/midnitefox/Nord-Theme-Ports-and-Assets/tree/main/custom-start-page), [Renewed Tab](https://renewedtab.com/), [Anori](https://anori.app/), [Momentum](https://momentumdash.com/)
|
||||
|
||||
***
|
||||
|
||||
@ -155,7 +140,7 @@
|
||||
|
||||
* ⭐ **[Linux Command Library](https://linuxcommandlibrary.com/)**
|
||||
|
||||
[Awesome for One Liner](https://github.com/sheepla/awesome-for-oneliner), [You Don't Need GUI](https://github.com/you-dont-need/You-Dont-Need-GUI), [Helmanual](https://helpmanual.io/), [CommandlineFU](https://www.commandlinefu.com/), [how2](https://github.com/santinic/how2), [Bash Academy](https://guide.bash.academy/), [ss64 Bash](https://ss64.com/bash/), [Bash Oneliner](https://onceupon.github.io/Bash-Oneliner/), [navi](https://github.com/denisidoro/navi)
|
||||
[Awesome for One Liner](https://github.com/sheepla/awesome-for-oneliner), [You Don't Need GUI](https://github.com/you-dont-need/You-Dont-Need-GUI), [Helmanual](https://helpmanual.io/), [CommandlineFU](https://www.commandlinefu.com/), [how2](https://github.com/santinic/how2), [Bash Academy](https://guide.bash.academy/), [ss64 Bash](https://ss64.com/bash/), [Bash Oneliner](https://onceupon.github.io/Bash-Oneliner/)
|
||||
|
||||
***
|
||||
|
||||
@ -171,7 +156,7 @@
|
||||
|
||||
## Collaboration Platforms
|
||||
|
||||
[Doozy](https://doozy.live/), [Zulip](https://zulip.com/), [LucidSpark](https://lucidspark.com/), [Miro](https://miro.com/), [Mattermost](https://mattermost.com/), [Twake](https://twake.app/), [Asana](https://asana.com/), [Freedcamp](https://freedcamp.com/), [Lumeer](https://www.lumeer.io/), [Slab](https://slab.com/), [Focalboard](https://www.focalboard.com/), [WeKan](https://wekan.github.io/), [Kanboard](https://kanboard.org/), [Mural](https://www.mural.co/), [Dendron](https://www.dendron.so/), [Trello](https://trello.com/), [Planka](https://planka.app/), [Taskcafe](https://github.com/JordanKnott/taskcafe), [Room](https://room.sh/), [Atlassian](https://www.atlassian.com/), [linear](https://linear.app/), [ScreenRec](https://screenrec.com/), [nino](https://nino.app/), [Creately](https://creately.com/)
|
||||
[Doozy](https://doozy.live/), [Zulip](https://zulip.com/), [LucidSpark](https://lucidspark.com/), [Miro](https://miro.com/), [Mattermost](https://mattermost.com/), [Twake](https://twake.app/), [Asana](https://asana.com/), [Freedcamp](https://freedcamp.com/), [Lumeer](https://www.lumeer.io/), [Slab](https://slab.com/), [Focalboard](https://www.focalboard.com/), [WeKan](https://wekan.github.io/), [Kanboard](https://kanboard.org/), [Mural](https://www.mural.co/), [Dendron](https://www.dendron.so/), [Trello](https://trello.com/), [Planka](https://planka.app/), [Taskcafe](https://github.com/JordanKnott/taskcafe), [Room](https://room.sh/), [Atlassian](https://www.atlassian.com/), [linear](https://linear.app/), [ScreenRec](https://screenrec.com/), [nino](https://nino.app/)
|
||||
|
||||
***
|
||||
|
||||
@ -195,7 +180,7 @@
|
||||
|
||||
* ⭐ **[Cover Search Engine](https://covers.musichoarders.xyz)**
|
||||
|
||||
[Album Art Downloader](https://sourceforge.net/projects/album-art/), [kunst](https://github.com/sdushantha/kunst), [Apple-Music-Animated-Artwork-Fetcher](https://github.com/bunnykek/Apple-Music-Animated-Artwork-Fetcher), [Classic Rock Covers](https://www.classic-rock-covers.com/), [Apple Artwork](https://artwork.thekvt.eu.org/), [albumart.digital](https://albumart.digital/), [spotifycover](https://www.spotifycover.art/)
|
||||
[Album Art Downloader](https://sourceforge.net/projects/album-art/), [kunst](https://github.com/sdushantha/kunst), [Apple-Music-Animated-Artwork-Fetcher](https://github.com/bunnykek/Apple-Music-Animated-Artwork-Fetcher), [Classic Rock Covers](https://www.classic-rock-covers.com/), [Apple Artwork](https://artwork.thekvt.eu.org/), [albumart.digital](https://albumart.digital/)
|
||||
|
||||
***
|
||||
|
||||
@ -271,7 +256,7 @@
|
||||
* ⭐ **[1Hosts](https://o0.pages.dev/)**
|
||||
* ⭐ **[OISD](https://oisd.nl/)**
|
||||
|
||||
[hBlock](https://github.com/hectorm/hblock), [someonewhocares](https://someonewhocares.org/hosts/), [MVPS HOSTS](https://winhelp2002.mvps.org/hosts.htm), [Hosts File Aggregator](https://github.com/StevenBlack/hosts), [Spamhaus](https://www.spamhaus.org/), [Anudeep's Blacklist](https://github.com/anudeepND/blacklist), [Lightswitch05](https://www.github.developerdan.com/hosts/), [black-mirror](https://github.com/T145/black-mirror), [Scam Blocklist](https://github.com/durablenapkin/scamblocklist), [hBlock](https://hblock.molinero.dev/), [Additional Undesired Hosts](https://github.com/DRSDavidSoft/additional-hosts), [neodevhost](https://github.com/neodevpro/neodevhost), [Piperun's IP-Logger Filter](https://github.com/piperun/iploggerfilter), [GoodbyeAds](https://jerryn70.github.io/GoodbyeAds/), [mullvad blocklists](https://github.com/mullvad/dns-blocklists)
|
||||
[hBlock](https://github.com/hectorm/hblock), [someonewhocares](https://someonewhocares.org/hosts/), [MVPS HOSTS](https://winhelp2002.mvps.org/hosts.htm), [Hosts File Aggregator](https://github.com/StevenBlack/hosts), [Spamhaus](https://www.spamhaus.org/), [Anudeep's Blacklist](https://github.com/anudeepND/blacklist), [Lightswitch05](https://www.github.developerdan.com/hosts/), [black-mirror](https://github.com/T145/black-mirror), [Scam Blocklist](https://github.com/durablenapkin/scamblocklist), [hBlock](https://hblock.molinero.dev/), [Additional Undesired Hosts](https://github.com/DRSDavidSoft/additional-hosts), [neodevhost](https://github.com/neodevpro/neodevhost), [Piperun's IP-Logger Filter](https://github.com/piperun/iploggerfilter), [GoodbyeAds](https://jerryn70.github.io/GoodbyeAds/), [mullvad blocklists](https://github.com/mullvad/dns-blocklists), [The Block List Project](https://github.com/blocklistproject/Lists##the-block-list-project)
|
||||
|
||||
***
|
||||
|
||||
@ -281,18 +266,46 @@
|
||||
|
||||
***
|
||||
|
||||
## Domain Info Tools
|
||||
|
||||
* [DNSTwist](https://dnstwist.it/) or [DNSTwister](https://dnstwister.report/) / [Github](https://github.com/elceef/dnstwist)
|
||||
|
||||
[WhoisRequest](https://whoisrequest.com/), [Rankchart](https://rankchart.org/), [Harpoon](https://hakin9.org/harpoon-osint-cli-tool/), [MXToolBox](https://mxtoolbox.com/DNSLookup.aspx), [Whois Lookup](https://whois.domaintools.com/), [IPIP.NET](https://whois.ipip.net/), [WebStatsDomain](https://webstatsdomain.org/), [AtSameIP](https://atsameip.intercode.ca/), [DNSlytics](https://dnslytics.com/), [AnalyzeID](https://analyzeid.com/), [LinkScope](https://accentusoft.com/)
|
||||
|
||||
***
|
||||
|
||||
## DOS Games
|
||||
|
||||
[DOS Games Archive](https://www.dosgamesarchive.com/), [DOSBox](https://www.dosbox.com/), [DOS HAVEN](https://www.doshaven.eu/), [The Software Library](https://archive.org/details/softwarelibrary_msdos), [Best Old Games](https://www.bestoldgames.net/), [DOSGames](https://dosgames.com/), [PlayDOSGames](https://www.playdosgames.com/), [RGB Classic Games](https://www.classicdosgames.com/), [Abandonware DOS](https://www.abandonwaredos.com/), [Online DOS games](https://dos.zczc.cz/), [Classic Games](https://classicdosgames.com/)
|
||||
|
||||
***
|
||||
|
||||
## Down Site Checkers
|
||||
|
||||
* ⭐ **[Down for Everyone or Just Me](https://downforeveryoneorjustme.com/)**
|
||||
* ⭐ **[Is It Down Right Now](https://www.isitdownrightnow.com/)**
|
||||
|
||||
[Is The Service Down?](https://istheservicedown.com/), [Down.com](https://down.com/), [Downdetector](https://downdetector.com/), [websitedown](http://www.websitedown.info/), [UpDown Radar](https://updownradar.com/), [lychee](https://lychee.cli.rs/#/), [Dead Link Checker](https://www.deadlinkchecker.com/), [Online Broken Link Checker](https://brokenlinkcheck.com/broken-links.php), [Dr. Link Check](https://www.drlinkcheck.com/), [HTTPStatus](https://httpstatus.io/), [UpDownToday](https://updowntoday.com/)
|
||||
|
||||
***
|
||||
|
||||
## Email Clients
|
||||
|
||||
* ⭐ **[Betterbird](https://www.betterbird.eu/)**
|
||||
* ⭐ **[Thunderbird](https://www.thunderbird.net/en-US/)** - [Tray Icon](https://github.com/Ximi1970/systray-x)
|
||||
* ⭐ **[Mailspring](https://getmailspring.com/)** - [Themes](https://github.com/topics/mailspring-theme)
|
||||
* [Outlook](https://outlook.live.com/owa/)
|
||||
|
||||
[ElectronMail](https://github.com/vladimiry/ElectronMail), [eM Client](https://www.emclient.com/), [RainLoop](https://www.rainloop.net/), [Roundcube](https://roundcube.net/), [Spike](https://www.spikenow.com/), [Canary](https://canarymail.io/), [Twobird](https://www.twobird.com/), [Kanmail](https://kanmail.io/), [Wino](https://www.winomail.app/)
|
||||
|
||||
***
|
||||
|
||||
## Encrypted Android Messengers
|
||||
|
||||
* ⭐ **[Signal](https://signal.org/#signal)**
|
||||
* ⭐ **[Briar](https://briarproject.org/)**
|
||||
|
||||
[Status](https://status.im/), [Confide](https://play.google.com/store/apps/details?id=cm.confide.android), [ChatSecure](https://ballinger.io/apps/chatsecure/), [Snikket](https://snikket.org/), [RetroShare](https://retroshare.cc/), [BiP](https://bip.com/en/), [Olvid](https://olvid.io/en/), [Berty](https://berty.tech/), [OpenKeychain](https://www.openkeychain.org/), [NewNode](https://newnode.com/), [Kontalk](https://www.kontalk.org/), [Wire](https://wire.com/en/download/), [Databag](https://github.com/balzack/databag)
|
||||
[Status](https://status.im/), [Confide](https://play.google.com/store/apps/details?id=cm.confide.android), [ChatSecure](https://ballinger.io/apps/chatsecure/), [Snikket](https://snikket.org/), [RetroShare](https://retroshare.cc/), [BiP](https://bip.com/en/), [Olvid](https://olvid.io/en/), [Berty](https://berty.tech/), [OpenKeychain](https://www.openkeychain.org/), [NewNode](https://newnode.com/), [Kontalk](https://www.kontalk.org/), [Wire](https://wire.com/en/download/)
|
||||
|
||||
**Video / Text**
|
||||
|
||||
@ -333,7 +346,7 @@
|
||||
|
||||
### Wikipedia Tools
|
||||
|
||||
[Top Pages](https://top.hatnote.com/) / [Deleted Pages](https://deletionpedia.org/en/Main_Page) / [Page Connections](https://hyperleap.com/) / [Dark Mode](https://en.wikipedia.org/wiki/Wikipedia:Dark_mode) / [TUI](https://github.com/yashsinghcodes/wik) / [Offline View](http://cdpedia.python.org.ar/index.en.es.html) / [Extract Text](https://github.com/attardi/wikiextractor) / [Extract Markdown](https://substance.reorx.com/) / [Shorten URLs](https://meta.wikimedia.org/wiki/Special:UrlShortener) / [Location Search](https://wikinearby.toolforge.org/)
|
||||
[Top Pages](https://top.hatnote.com/) / [Deleted Pages](https://deletionpedia.org/en/Main_Page) / [Page Connections](https://hyperleap.com/) / [Dark Mode](https://en.wikipedia.org/wiki/Wikipedia:Dark_mode) / [TUI](https://github.com/yashsinghcodes/wik) / [Offline View](http://cdpedia.python.org.ar/index.en.es.html) / [Extract Text](https://github.com/attardi/wikiextractor) / [Shorten URLs](https://meta.wikimedia.org/wiki/Special:UrlShortener) / [Location Search](https://wikinearby.toolforge.org/)
|
||||
|
||||
***
|
||||
|
||||
@ -341,7 +354,7 @@
|
||||
|
||||
* ⭐ **[Neal.fun](https://neal.fun/)**
|
||||
|
||||
[Oimo](https://oimo.io/works), [AIDN](https://aidn.jp/), [Neave](https://codepen.io/neave) / [2](https://neave.com/), [BoredHumans](https://boredhumans.com/), [puissant](https://sandwichpuissant.net/), [Mr.doob](https://mrdoob.com/), [Bimble Space](https://in.bimble.space/toys), [Creative Tech Guy](https://creativetechguy.com/), [Just For Fun](https://justforfun.io/), [Andrew Marsh](https://andrewmarsh.com/software), [JenniferDewalt](https://jenniferdewalt.com/), [Chrome Experiments](https://experiments.withgoogle.com/collection/chrome), [yezi](https://yezi.itch.io/), [topster](https://topster.net/), [p5aholic](https://experiments.p5aholic.me/), [vole.wtf](https://vole.wtf/), [WilliamHoza](https://williamhoza.com/misc/), [Rinkworks](http://www.rinkworks.com/), [Orteil](https://orteil.dashnet.org/), [funwebsite](https://funwebsite.fun/), [Toms.Toys](https://toms.toys/), [Pointless Sites](https://www.pointlesssites.com/), [The Scientific Place](https://scientific.place/), [Aiza Lab](https://lab.aizastudio.com/)
|
||||
[Oimo](https://oimo.io/works ), [AIDN](https://aidn.jp/), [Neave](https://codepen.io/neave) / [2](https://neave.com/), [BoredHumans](https://boredhumans.com/), [puissant](https://sandwichpuissant.net/), [Mr.doob](https://mrdoob.com/), [Bimble Space](https://in.bimble.space/toys), [Creative Tech Guy](https://creativetechguy.com/), [Just For Fun](https://justforfun.io/), [Andrew Marsh](https://andrewmarsh.com/software), [JenniferDewalt](https://jenniferdewalt.com/), [Chrome Experiments](https://experiments.withgoogle.com/collection/chrome), [yezi](https://yezi.itch.io/), [topster](https://topster.net/), [p5aholic](https://experiments.p5aholic.me/), [vole.wtf](https://vole.wtf/), [WilliamHoza](https://williamhoza.com/misc/), [Rinkworks](http://www.rinkworks.com/), [Orteil](https://orteil.dashnet.org/), [funwebsite](https://funwebsite.fun/), [Toms.Toys](https://toms.toys/), [Pointless Sites](https://www.pointlesssites.com/), [The Scientific Place](https://scientific.place/)
|
||||
|
||||
***
|
||||
|
||||
@ -415,62 +428,53 @@
|
||||
* ⭐ **[vercel](https://vercel.com/)**
|
||||
* ⭐ **[netlify](https://www.netlify.com/)**
|
||||
* ⭐ **[sourcehut pages](https://srht.site/)**
|
||||
* [is-a.dev](https://www.is-a.dev/) - Developer Homepages
|
||||
|
||||
[codeberg](https://codeberg.page/), [profreehost](https://profreehost.com/), [000webhost](https://www.000webhost.com/), [infinityfree](https://infinityfree.net/), [openshift](https://www.redhat.com/en/technologies/cloud-computing/openshift), [cloudaccess](https://www.cloudaccess.net/), [Gitlab Pages](https://docs.gitlab.com/ee/user/project/pages/index.html), [glitch](https://glitch.com/), [biz.nf](https://www.biz.nf/), [coolify](https://coolify.io/), [wix](https://www.wix.com/), [byet.host](https://byet.host/free-hosting), [webs](https://www.webs.com/), [yola](https://www.yola.com/), [WordPress](https://wordpress.com/) / [2](https://wordpress.org/), [jimdo](https://www.jimdo.com/), [awardspace](https://www.awardspace.com/), [pythonanywhere](https://www.pythonanywhere.com/), [droppages](https://droppages.com/), [Zeronet](https://cheapskatesguide.org/articles/zeronet-site.html), [Zeronet 2](https://zeronet.io/docs/site_development/getting_started/), [ibm cloud](https://www.ibm.com/cloud/free), [hubzilla](https://zotlabs.org/page/zotlabs/home), [site123](https://www.site123.com/), [hostbreak](https://hostbreak.com/web-hosting/free), [tilda](https://tilda.cc/), [BitBucket](https://support.atlassian.com/bitbucket-cloud/docs/publishing-a-website-on-bitbucket-cloud/), [render](https://render.com/), [Fleek](https://fleek.co/), [stormkit](https://www.stormkit.io/), [freehosting](https://freehosting.host/), [freewebhostingarea](https://www.freewebhostingarea.com/), [milkshake](https://milkshake.app/), [ikoula](https://www.ikoula.com/), [fanspace](http://www.fanspace.com/), [dotera](https://dotera.net/), [fc2](https://web.fc2.com/en/), [w3schools](https://www.w3schools.com/spaces/), [freehostia](https://www.freehostia.com/), [olitt](https://www.olitt.com/), [uhostfull](https://www.uhostfull.com/), [x10hosting](https://x10hosting.com/), [lenyxo](https://lenyxo.com/freehosting/), [yunohost](https://yunohost.org/), [1freehosting](https://www.1freehosting.net/), [5gb.club](http://www.5gb.club/free-hosting.php?i=1), [ultifreehosting](https://ultifreehosting.com/), [aeonfree](https://aeonfree.com/), [bravenet](https://www.bravenet.com/), [atspace](https://www.atspace.com/), [aava](https://aava.dy.fi/), [netlib](https://netlib.re/), [unison](https://www.unison.cloud/), [tinkerhost](https://tinkerhost.net/)
|
||||
[codeberg](https://codeberg.page/), [profreehost](https://profreehost.com/), [000webhost](https://www.000webhost.com/), [infinityfree](https://infinityfree.net/), [openshift](https://www.redhat.com/en/technologies/cloud-computing/openshift), [cloudaccess](https://www.cloudaccess.net/), [Gitlab Pages](https://docs.gitlab.com/ee/user/project/pages/index.html), [glitch](https://glitch.com/), [biz.nf](https://www.biz.nf/), [coolify](https://coolify.io/), [wix](https://www.wix.com/), [byet.host](https://byet.host/free-hosting), [webs](https://www.webs.com/), [yola](https://www.yola.com/), [WordPress](https://wordpress.com/) / [2](https://wordpress.org/), [jimdo](https://www.jimdo.com/), [awardspace](https://www.awardspace.com/), [pythonanywhere](https://www.pythonanywhere.com/), [droppages](https://droppages.com/), [Zeronet](https://cheapskatesguide.org/articles/zeronet-site.html), [Zeronet 2](https://zeronet.io/docs/site_development/getting_started/), [ibm cloud](https://www.ibm.com/cloud/free), [hubzilla](https://zotlabs.org/page/zotlabs/home), [site123](https://www.site123.com/), [hostbreak](https://hostbreak.com/web-hosting/free), [tilda](https://tilda.cc/), [BitBucket](https://support.atlassian.com/bitbucket-cloud/docs/publishing-a-website-on-bitbucket-cloud/), [render](https://render.com/), [Fleek](https://fleek.co/), [stormkit](https://www.stormkit.io/), [freehosting](https://freehosting.host/), [freewebhostingarea](https://www.freewebhostingarea.com/), [milkshake](https://milkshake.app/), [ikoula](https://www.ikoula.com/), [fanspace](http://www.fanspace.com/), [dotera](https://dotera.net/), [fc2](https://web.fc2.com/en/), [w3schools](https://www.w3schools.com/spaces/), [freehostia](https://www.freehostia.com/), [olitt](https://www.olitt.com/), [uhostfull](https://www.uhostfull.com/), [x10hosting](https://x10hosting.com/), [lenyxo](https://lenyxo.com/freehosting/), [yunohost](https://yunohost.org/), [1freehosting](https://www.1freehosting.net/), [5gb.club](http://www.5gb.club/free-hosting.php?i=1), [ultifreehosting](https://ultifreehosting.com/), [aeonfree](https://aeonfree.com/), [bravenet](https://www.bravenet.com/), [atspace](https://www.atspace.com/), [aava](https://aava.dy.fi/), [netlib](https://netlib.re/), [unison](https://www.unison.cloud/)
|
||||
|
||||
***
|
||||
|
||||
## Game Assets
|
||||
## Game Development Assets
|
||||
|
||||
* [Kenney](https://www.kenney.nl/) - Free Game Assets
|
||||
* [Dev Assets](https://devassets.com/) - Free Game Assets
|
||||
* [Game UI Database](https://www.gameuidatabase.com/) - Game UI Database
|
||||
* [Game-icons](https://game-icons.net/) - Game Icons
|
||||
* [r/GameAssets](https://www.reddit.com/r/gameassets/) - Reddit Community
|
||||
* [UnityAssets4Free](https://unityassets4free.com/) - Free Paid Unity Assets
|
||||
* [Incern](https://www.incern.org/) - Free Unity Assets
|
||||
* [AssetRipper](https://github.com/AssetRipper/AssetRipper) / [Discord](https://discord.gg/XqXa53W2Yh) or [AssetStudio](https://github.com/zhangjiequan/AssetStudio) - Extract Assets from Unity Files
|
||||
* [CraftPix](https://craftpix.net/freebies/) - 2D Game Assets
|
||||
* [xonotic](https://github.com/xonotic) or [Warsow](https://github.com/Warsow) - FPS Game Assets
|
||||
* [GameDev Market](https://www.gamedevmarket.net/) - Assets for Indie Developers
|
||||
* [OpenGameArt.org](https://opengameart.org/) - Game Art Community
|
||||
* [UnityFreaks](https://www.unityfreaks.com/) or [GameDevUE](https://t.me/GameDevUE) - Unity & Unreal Engine Assets
|
||||
* [SteamGridDB](https://www.steamgriddb.com/) - Custom Video Game Assets
|
||||
* [CraftPix](https://craftpix.net/freebies/)
|
||||
* [Kenney](https://www.kenney.nl/)
|
||||
* [/r/GameAssets](https://www.reddit.com/r/gameassets/)
|
||||
* [UnityAssets4Free](https://unityassets4free.com/)
|
||||
* [Open Game Art](https://opengameart.org/)
|
||||
* [UnityFreaks](https://www.unityfreaks.com/)
|
||||
* [GameDevUE](https://t.me/GameDevUE)
|
||||
* [SteamGridDB](https://www.steamgriddb.com/)
|
||||
* [DevAssets](https://devassets.com/)
|
||||
* [Incern](https://www.incern.org/)
|
||||
* [GameDevAssets](https://www.gamedevmarket.net/category/3d/?type=free)
|
||||
* [xonotic](https://github.com/xonotic) - FPS Game Assets
|
||||
* [Vanguard](https://github.com/VanguardDev/Vanguard) / [2](https://project-vanguard.netlify.app/index.html) - FPS Game Assets
|
||||
* [Warsow](https://github.com/Warsow) - FPS Game Assets
|
||||
|
||||
***
|
||||
|
||||
## Game Engines
|
||||
|
||||
### 2D Game Engines
|
||||
|
||||
* [Torque2D](https://github.com/TorqueGameEngines/Torque2D) / [Discord](https://discord.com/invite/qdAZxT4)
|
||||
* [starling](https://gamua.com/starling/) / [GitHub](https://github.com/Gamua/Starling-Framework)
|
||||
* [LÖVE](https://love2d.org/) / [Resources](https://github.com/love2d-community/awesome-love2d)
|
||||
* [GB Studio](https://www.gbstudio.dev/) / [GitHub](https://github.com/chrismaltby/gb-studio) / [Subreddit](https://www.reddit.com/r/gbstudio) / [Discord](https://discord.com/invite/bxerKnc)
|
||||
* [GameMaker](https://gamemaker.io/) / [Resources](https://github.com/bytecauldron/awesome-gamemaker) / [Online](https://yellowafterlife.github.io/GMEdit/)
|
||||
* [Arcade Game Designer](https://jonathan-cauldwell.itch.io/arcade-game-designer) / [Multi-platform](https://jonathan-cauldwell.itch.io/multi-platform-arcade-game-designer)
|
||||
* [HaxeFlixel](https://haxeflixel.com/)
|
||||
* [Flame](https://flame-engine.org/)
|
||||
* [Pixelbox](https://pixwlk.itch.io/pixelbox)
|
||||
* [PQ93](https://charliezip.itch.io/pq93)
|
||||
* [Bitsy](https://make.bitsy.org/)
|
||||
* [Script 8](https://script-8.github.io/)
|
||||
* [Tic80](https://tic80.com/)
|
||||
* [Byond](https://www.byond.com/)
|
||||
* [Scratch](https://scratch.mit.edu/)
|
||||
|
||||
### 3D Game Engines
|
||||
|
||||
* ⭐ **[Unreal Engine](https://www.unrealengine.com/)**
|
||||
* ⭐ **Unreal Engine Tools** - [Unlocker](https://framedsc.com/GeneralGuides/universal_ue4_consoleunlocker.htm) / [Megascans](https://quixel.com/megascans) / [Model Viewer](https://www.gildor.org/en/projects/umodel) / [UPK Explorer](https://www.nexusmods.com/site/mods/587), [Wiki](https://www.pcgamingwiki.com/wiki/UPK_Explorer), [Discord](https://discord.gg/9KPvQ4H)
|
||||
* ⭐ **[Game Engine Collection](https://github.com/collections/game-engines)**
|
||||
* ⭐ **[Unreal Engine](https://www.unrealengine.com/)** / [Python](https://github.com/20tab/UnrealEnginePython) / [C#](https://gamefromscratch.com/getting-started-with-unrealclr/) / [3D Scans](https://quixel.com/megascans) / [File Explorer](https://github.com/4sval/FModel), [2](https://fmodel.app/) / [Console Unlocker](https://framedsc.com/GeneralGuides/universal_ue4_consoleunlocker.htm)
|
||||
* ⭐ **[Godot](https://godotengine.org/)** / [Resources](https://github.com/godotengine/awesome-godot) / [Input Actions](https://github.com/Orama-Interactive/Keychain)
|
||||
* [RPG Playground](https://rpgplayground.com/) - Simple RPG Creator
|
||||
* [Spring RTS](https://springrts.com/ ) - 3D RTS Game Engine
|
||||
* [Archives Explorer](https://fmodel.app/)
|
||||
* [Cave Engine](https://unidaystudio.itch.io/cave-engine)
|
||||
* [Panda3D](https://www.panda3d.org/)
|
||||
* [OpenXRay](https://github.com/OpenXRay) / [Discord](https://discord.com/invite/sjRMQwv)
|
||||
* [cryengine](https://www.cryengine.com/) / [Discord](https://discord.com/invite/cryengine)
|
||||
* [armory3d](https://armory3d.org/) / [GitHub](https://github.com/armory3d/armory)
|
||||
* [torque3d](https://torque3d.org/) / [GitHub](https://github.com/TorqueGameEngines/Torque3D) / [Discord](https://discord.com/invite/qdAZxT4)
|
||||
* [Playerio](https://playerio.com/) - Online Game Engine
|
||||
* [stencyl](https://www.stencyl.com/) - Codeless Game Engine
|
||||
|
||||
### 2D / 3D Engines
|
||||
|
||||
[Unity](https://unity.com/products/unity-personal) / [Cheat Sheet](https://github.com/NaomiLe1811/Unity_Cheat_Sheet) / [Patcher](https://github.com/BepInEx/BepInEx), [Defold](https://defold.com/), [Bevy Engine](https://bevyengine.org/), / [Extensions](https://bevy-cheatbook.github.io/setup/unofficial-plugins.html), [ursina engine](https://www.ursinaengine.org/), [stride3d](https://www.stride3d.net/) / [GitHub](https://github.com/stride3d/stride), [cocos](https://www.cocos.com/en/) / [GitHub](https://github.com/cocos2d/cocos2d-x), [microStudio](https://microstudio.itch.io/microstudio), [GDevelop](https://4ian.itch.io/gdevelop) / [2](https://gdevelop.io/)
|
||||
|
||||
### 2D Engines
|
||||
|
||||
[Torque2D](https://github.com/TorqueGameEngines/Torque2D) / [Discord](https://discord.com/invite/qdAZxT4), [starling](https://gamua.com/starling/) / [GitHub](https://github.com/Gamua/Starling-Framework), [HaxeFlixel](https://haxeflixel.com/), [GB Studio](https://www.gbstudio.dev/) / [GitHub](https://github.com/chrismaltby/gb-studio) / [Subreddit](https://www.reddit.com/r/gbstudio) / [Discord](https://discord.com/invite/bxerKnc), [Flame](https://flame-engine.org/), [GameMaker](https://gamemaker.io/) / [Online](https://yellowafterlife.github.io/GMEdit/), [Arcade Game Designer](https://jonathan-cauldwell.itch.io/multi-platform-arcade-game-designer) / [2](https://jonathan-cauldwell.itch.io/arcade-game-designer)
|
||||
[Pixelbox](https://pixwlk.itch.io/pixelbox), [PQ93](https://charliezip.itch.io/pq93), [Bitsy](https://make.bitsy.org/), [Script 8](https://script-8.github.io/), [Tic80](https://tic80.com/), [Byond](https://www.byond.com/), [LÖVE](https://love2d.org/), [Scratch](https://scratch.mit.edu/)
|
||||
|
||||
### 3D Engines
|
||||
|
||||
[Cave Engine](https://unidaystudio.itch.io/cave-engine), [OpenXRay](https://github.com/OpenXRay) / [Discord](https://discord.com/invite/sjRMQwv), [cryengine](https://www.cryengine.com/) / [Discord](https://discord.com/invite/cryengine), [armory3d](https://armory3d.org/) / [GitHub](https://github.com/armory3d/armory), [torque3d](https://torque3d.org/) / [GitHub](https://github.com/TorqueGameEngines/Torque3D) / [Discord](https://discord.com/invite/qdAZxT4), [Panda3D](https://www.panda3d.org/)
|
||||
|
||||
***
|
||||
|
||||
@ -485,16 +489,15 @@
|
||||
|
||||
## Geometry Dash Demon Lists
|
||||
|
||||
* ⭐ **[Pointercrate](https://pointercrate.com/demonlist/)** - Original Demon List / [Stats Viewer](https://pointercrate.com/demonlist/statsviewer/)
|
||||
* [Challenge List](https://challengelist.gd/challenges/) - Challenge Level List
|
||||
* [AREDL](https://aredl.net/) - All Rated Extreme Demons List
|
||||
* [UDL](https://udl.pages.dev/) - Unrated Demons List
|
||||
* [DemonList](https://demonlist.com/platformer/rated) - Platformer Demon List
|
||||
* [IDL](https://insanedemonlist.com/) - Insane Demon List
|
||||
* [MobileWRList](https://gdmobilewrlist.com/main) - Mobile World Records List
|
||||
* [HRR Mobile List](https://mobilepointercrate.com/) - High Refresh Rate Mobile List
|
||||
* ⭐ **[Original Demon List](https://pointercrate.com/demonlist/)**
|
||||
* [Challenge List](https://challengelist.gd/challenges/)
|
||||
* [Unrated Demons List](https://udl.pages.dev/#/)
|
||||
* [Rated Extremes List](https://aredl.net/list/86407629)
|
||||
* [Demon List](https://www.demonlist.com/)
|
||||
* [Impossible Levels List](https://docs.google.com/document/d/1byBf60vW_Tq7TjQPyniBxQ1Iw9CtSURJU4_Cl1IziqY/edit)
|
||||
* [Nine Circles Demonlist](https://sites.google.com/view/nine-circles-demonlist/home)
|
||||
* [Nine Circles List](https://sites.google.com/view/nine-circles-demonlist/main-list)
|
||||
* [HRR Mobile List](https://mobilepointercrate.com/)
|
||||
* [60hz Mobile List](https://sites.google.com/view/gd-mobile-lists/top-100-demons-completed?authuser=0)
|
||||
|
||||
***
|
||||
|
||||
@ -560,6 +563,14 @@
|
||||
|
||||
***
|
||||
|
||||
## Language Learning Networks
|
||||
|
||||
* ⭐ **[The Language Exchange Network](https://discord.gg/jxcVmHJ)** / [2](https://redd.it/5m5426) / [3](https://docs.google.com/document/d/14is9MfGfKC-ptDhXGWLQFYSAaWTJSnUxj6zK0RGqNIk/)
|
||||
|
||||
[InterPals](https://www.interpals.net/), [Tandem](https://www.tandem.net/), [Conversation Exchange](https://www.conversationexchange.com/), [RhinoSpike](https://rhinospike.com/), [Conversly](https://www.conversly.ai/), [Lang-8](https://lang-8.com/)
|
||||
|
||||
***
|
||||
|
||||
## LaTeX Tools
|
||||
|
||||
* [Learn LaTeX](https://www.learnlatex.org/) - LaTeX Guide
|
||||
@ -592,13 +603,13 @@
|
||||
|
||||
## Linux Themes
|
||||
|
||||
[Gnome-Look](https://www.gnome-look.org/), [Themix](https://github.com/themix-project/themix-gui), [Arc](https://github.com/jnsh/arc-theme), [Material Ocean](https://github.com/material-ocean/material-ocean), [Ant](https://github.com/EliverLara/Ant), [xfce-look](https://www.xfce-look.org/), [UnixPorn](https://discord.gg/unixporn)
|
||||
[Gnome-Look](https://www.gnome-look.org/), [Themix](https://github.com/themix-project/themix-gui), [Arc](https://github.com/jnsh/arc-theme), [Flatablous Arc](https://github.com/andreisergiu98/arc-flatabulous-theme), [Material Ocean](https://github.com/material-ocean/material-ocean), [Ant](https://github.com/EliverLara/Ant), [xfce-look](https://www.xfce-look.org/), [UnixPorn](https://discord.gg/unixporn)
|
||||
|
||||
***
|
||||
|
||||
## Live Webcams
|
||||
|
||||
[EarthCam](https://www.earthcam.com/), [Explore](https://explore.org/), [Opentopia](http://www.opentopia.com/), [WebcamGalore](https://www.webcamgalore.com/), [WebcamTaxi](https://www.webcamtaxi.com/en/), [WorldCams](https://worldcams.tv/), [WorldCam](https://worldcam.eu/), [BalticLiveCam](https://balticlivecam.com/), [SkylineWebcams](https://www.skylinewebcams.com/en.html), [CamStreaner](https://camstreamer.com/live), [/r/controllablewebcams](https://reddit.com/r/controllablewebcams) / [Discord](https://discord.gg/wdjtevG), [PicTimo](https://www.pictimo.com/), [WXYZWebcams](https://wxyzwebcams.com/) [snoweye](https://www.snoweye.com/), [camscape](https://www.camscape.com/), [whatsupcams](https://www.whatsupcams.com/), [worldcam](https://www.worldcam.pl/), [webcamhopper](https://www.webcamhopper.com/), [explore.org](https://explore.org/livecams), [Windy Webcams](https://www.windy.com/-Webcams/webcams), [Insecam](http://www.insecam.org/en/), [Airport Webcams](https://airportwebcams.net/) (Airports), [TFLJamCams](https://www.tfljamcams.net/), [seattlesouthside](https://www.seattlesouthside.com/plan-your-trip/webcams/), [portugal-live](https://www.portugal-live.net/en/webcams.html), [livecamcroatia](https://www.livecamcroatia.com/en), [myrtlebeach](https://www.myrtlebeach.com/webcams/), [sootoday](https://www.sootoday.com/webcams), [interlochen](https://www.interlochen.org/webcasts/live-webcams), [whitehouse cam](https://whitehouse.gov1.info/webcam/), [yellowstone cam](https://www.nps.gov/yell/learn/photosmultimedia/webcams.htm), [carowinds](https://www.carowinds.com/live-video), [zellamsee](https://www.zellamsee-kaprun.com/en/live/webcams), [wpri](https://www.wpri.com/live-cams/), [hdontap](https://hdontap.com/), [floridakeyswebcams](https://floridakeyswebcams.tv/), [earthtv](https://www.earthtv.com/en), [geocam](https://www.geocam.ru/en/), [livefromiceland](https://livefromiceland.is/), [world-cam](https://en.world-cam.ru/), [mangolinkworld](https://www.mangolinkworld.com/), [mylivestreams](https://www.mylivestreams.com/live-streaming-cams/), [spain-grancanaria](https://www.spain-grancanaria.com/en/images-videos/webcams.html), [visitlondon](https://www.visitlondon.com/things-to-do/sightseeing/london-attraction/webcams-of-london), [ctsfl](https://www.ctsfl.us/cams/), [aruba](https://www.aruba.com/us/live-webcams-and-channels), [fogcam](https://www.fogcam.org/), [bigrigtravels](https://bigrigtravels.com/), [lochness](https://www.lochness.co.uk/livecam/), [abbeyroad](https://www.abbeyroad.com/crossing), [camsecure](https://www.camsecure.co.uk/Camsecure_Live_Demo_Index.html), [worldlivecamera](https://www.worldlivecamera.com/)
|
||||
[EarthCam](https://www.earthcam.com/), [Explore](https://explore.org/), [Opentopia](http://www.opentopia.com/), [WebcamGalore](https://www.webcamgalore.com/), [WebcamTaxi](https://www.webcamtaxi.com/en/), [WorldCams](https://worldcams.tv/), [WorldCam](https://worldcam.eu/), [BalticLiveCam](https://balticlivecam.com/), [SkylineWebcams](https://www.skylinewebcams.com/en.html), [CamStreaner](https://camstreamer.com/live), [/r/controllablewebcams](https://reddit.com/r/controllablewebcams) / [Discord](https://discord.gg/wdjtevG), [PicTimo](https://www.pictimo.com/), [WXYZWebcams](https://wxyzwebcams.com/) [snoweye](https://www.snoweye.com/), [camscape](https://www.camscape.com/), [whatsupcams](https://www.whatsupcams.com/), [worldcam](https://www.worldcam.pl/), [webcamhopper](https://www.webcamhopper.com/), [explore.org](https://explore.org/livecams), [Windy Webcams](https://www.windy.com/-Webcams/webcams), [Insecam](http://www.insecam.org/en/), [Airport Webcams](https://airportwebcams.net/) (Airports), [TFLJamCams](https://www.tfljamcams.net/), [seattlesouthside](https://www.seattlesouthside.com/plan-your-trip/webcams/), [portugal-live](https://www.portugal-live.net/en/webcams.html), [livecamcroatia](https://www.livecamcroatia.com/en), [myrtlebeach](https://www.myrtlebeach.com/webcams/), [sootoday](https://www.sootoday.com/webcams), [interlochen](https://www.interlochen.org/webcasts/live-webcams), [whitehouse cam](https://whitehouse.gov1.info/webcam/), [yellowstone cam](https://www.nps.gov/yell/learn/photosmultimedia/webcams.htm), [carowinds](https://www.carowinds.com/live-video), [zellamsee](https://www.zellamsee-kaprun.com/en/live/webcams), [wpri](https://www.wpri.com/live-cams/), [hdontap](https://hdontap.com/), [floridakeyswebcams](https://floridakeyswebcams.tv/), [earthtv](https://www.earthtv.com/en), [geocam](https://www.geocam.ru/en/), [livefromiceland](https://livefromiceland.is/), [world-cam](https://en.world-cam.ru/), [mangolinkworld](https://www.mangolinkworld.com/), [mylivestreams](https://www.mylivestreams.com/live-streaming-cams/), [spain-grancanaria](https://www.spain-grancanaria.com/en/images-videos/webcams.html), [visitlondon](https://www.visitlondon.com/things-to-do/sightseeing/london-attraction/webcams-of-london), [ctsfl](https://www.ctsfl.us/cams/), [aruba](https://www.aruba.com/us/live-webcams-and-channels), [fogcam](https://www.fogcam.org/), [bigrigtravels](https://bigrigtravels.com/), [lochness](https://www.lochness.co.uk/livecam/), [abbeyroad](https://www.abbeyroad.com/crossing), [camsecure](https://www.camsecure.co.uk/Camsecure_Live_Demo_Index.html), [ISS](https://www.nasa.gov/multimedia/nasatv/iss_ustream.html), [worldlivecamera](https://www.worldlivecamera.com/)
|
||||
|
||||
### Animal Cams
|
||||
|
||||
@ -643,7 +654,7 @@
|
||||
* ⭐ **Suwayomi Tools** - [Extensions](https://keiyoushi.github.io/), [2](https://discord.gg/3FbCpdKbdY) / [Desktop Client](https://github.com/Suwayomi/Tachidesk-Server)
|
||||
* ⭐ **[Houdoku](https://houdoku.org/)**
|
||||
|
||||
[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), [Mangayomi](https://github.com/kodjodevf/mangayomi), [Fukayo](https://github.com/JiPaix/Fukayo/), [Unyo](https://github.com/K3vinb5/Unyo)
|
||||
[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), [Mangayomi](https://github.com/kodjodevf/mangayomi), [Fukayo](https://github.com/JiPaix/Fukayo/)
|
||||
|
||||
### Self-Hosted
|
||||
|
||||
@ -653,7 +664,7 @@
|
||||
|
||||
## Markdown Editors
|
||||
|
||||
* ⭐ **[HedgeDoc](https://hedgedoc.org/)**
|
||||
* ⭐ **[HedgeDoc](https://hedgedoc.envs.net/)**
|
||||
* [zettlr](https://www.zettlr.com/)
|
||||
* [Dillinger](https://dillinger.io/)
|
||||
* [Notable](https://notable.app/)
|
||||
@ -665,9 +676,9 @@
|
||||
* [MarkdownLivePreview](https://markdownlivepreview.com/)
|
||||
* [Vrite](https://editor.vrite.io/)
|
||||
* [Markflowy](https://markflowy.vercel.app/)
|
||||
* [MindForger](https://www.mindforger.com/)
|
||||
* [Mindforger](https://github.com/dvorka/mindforger)
|
||||
* [PanWriter](https://panwriter.com/)
|
||||
* [MarkText](https://www.marktext.cc/)
|
||||
* [Mark Text](https://github.com/marktext/marktext)
|
||||
|
||||
***
|
||||
|
||||
@ -706,34 +717,26 @@
|
||||
* ⭐ **[Fabulously Optimized](https://download.fo) / [GitHub](https://github.com/Fabulously-Optimized/fabulously-optimized)**
|
||||
* ⭐ **[Simply Optimized](https://modrinth.com/modpack/sop)**
|
||||
* ⭐ **[Sodium](https://modrinth.com/mod/sodium)** / [Indium](https://github.com/comp500/Indium/) / [Extra](https://modrinth.com/mod/sodium-extra) / [Nvidia Rendering](https://github.com/MCRcortex/nvidium)
|
||||
* [Additive](https://modrinth.com/modpack/additive) - Additive Mod Pack
|
||||
|
||||
[OptiFine](https://optifine.net/), [Ferrite Core](https://modrinth.com/mod/ferrite-core), [Caffeine](https://github.com/CaffeineMC), [Lithium](https://modrinth.com/mod/lithium), [Ares](https://www.aresclient.com/), [VulkanMod](https://github.com/xCollateral/VulkanMod)
|
||||
|
||||
***
|
||||
|
||||
## Minecraft Hosting
|
||||
## Minecraft Servers
|
||||
|
||||
* 🌐 **[FMHL](https://fmhl.devloo.xyz/)** - Free Minecraft Hosts List
|
||||
* [MineColab](https://colab.research.google.com/github/thecoder-001/MineColab/blob/master/MineColab.ipynb) / [GitHub](https://github.com/thecoder-001/MineColab)
|
||||
* [MineFort](https://minefort.com/)
|
||||
* [Aternos](https://aternos.org/)
|
||||
* [oracle-cloud](https://www.setup.md/guides/oracle-cloud) / [Tutorial](https://blogs.oracle.com/developers/post/how-to-set-up-and-run-a-really-powerful-free-minecraft-server-in-the-cloud)
|
||||
* [fps](https://fps.ms/)
|
||||
* ⭐ **[Playit.gg](https://playit.gg/)** - [Discord](https://discord.gg/AXAbujx)
|
||||
* [MineColab](https://colab.research.google.com/github/thecoder-001/MineColab/blob/master/MineColab.ipynb) - [GitHub](https://github.com/thecoder-001/MineColab)
|
||||
* [LazyMc](https://github.com/timvisee/lazymc) - Idle Minecraft Server
|
||||
|
||||
[MineFort](https://minefort.com/), [Minehut](https://minehut.com/), [Aternos](https://aternos.org/), [Cuberite](https://cuberite.org/), [FMHL](http://fmhl.free.nf/) / [GitHub](https://github.com/Myuui/Free-Minecraft-Hosts), [Pufferfish](https://github.com/pufferfish-gg/Pufferfish), [Paper](https://papermc.io/software/paper), [oracle-cloud ](https://www.setup.md/guides/oracle-cloud), [mcho](https://mcho.st/), [fps](https://fps.ms/), [World Host](https://modrinth.com/mod/world-host)
|
||||
|
||||
### Minecraft Server Tools
|
||||
|
||||
* ⭐ **[Playit.gg](https://playit.gg/)** - Global Proxy [Discord](https://discord.gg/AXAbujx)
|
||||
* ⭐ **[paper-optimization](https://paper-chan.moe/paper-optimization/)** or [minecraft-optimization](https://github.com/YouHaveTrouble/minecraft-optimization) - Server Optimization Guides
|
||||
* [Setup.md](https://setup.md/) - Server Admin Guides
|
||||
* [CraftyControl](https://craftycontrol.com/), [MCSManager](https://mcsmanager.com/) or [Fork](https://www.fork.gg/) - Minecraft Server Managers
|
||||
* [Minekube Connect](https://connect.minekube.com/) - Ingress Tunnel for Minecraft Servers
|
||||
* [mclo.gs](https://mclo.gs/) - Minecraft Log Sharing / Analyzing
|
||||
* [LazyMc](https://github.com/timvisee/lazymc) - Idle Minecraft Server
|
||||
* [auto-mcs](https://www.auto-mcs.com/) - Easy Server Setup
|
||||
* [Cuberite](https://cuberite.org/) - Server Setup
|
||||
* [World Host](https://modrinth.com/mod/world-host) - No Server Single Player
|
||||
* [Pufferfish](https://github.com/pufferfish-gg/Pufferfish), [Purpur](https://purpurmc.org/) / [Discord](https://purpurmc.org/discord) or [Paper](https://papermc.io/software/paper) - Performance Enhancement Servers
|
||||
|
||||
***
|
||||
|
||||
@ -904,11 +907,10 @@
|
||||
|
||||
### Live Radio
|
||||
|
||||
* ⭐ **[Radio Garden](https://radio.garden/)** - Worldwide Radio Globe
|
||||
* ⭐ **[List of Internet Radio Stations](https://en.wikipedia.org/wiki/List_of_Internet_radio_stations)**
|
||||
* ⭐ **[Radio Browser](https://www.radio-browser.info/users)** - Radio App / Site Index
|
||||
|
||||
[iHeartRadio](https://www.iheart.com/), [OnlineRadioBox](https://onlineradiobox.com/), [LiveOnlineRadio](https://liveonlineradio.net/), [WebSDR](http://www.websdr.org/), [System Bus Radio](https://fulldecent.github.io/system-bus-radio/), [myTuner](https://mytuner-radio.com/), [Radio Browser](https://www.radio-browser.info/), [Zeno](https://zeno.fm/), [TuneYou](https://tuneyou.com/), [Tvradiotuner](https://tvradiotuner.com/), [Instant.audio](https://instant.audio/), [Radiodeck](https://www.radiodeck.com/), [VRadio](https://www.akouradio.com/), [WorldRadioMap](https://worldradiomap.com/), [Streema](https://streema.com/), [vTuner](https://vtuner.com/setupapp/guide/asp/BrowseStations/startpage.asp), [Radio.net](https://www.radio.net/), [TheOneStopRadio](https://theonestopradio.com/), [Radio Guide](https://www.radioguide.fm/), [Xiph](https://dir.xiph.org/), [raddio](https://raddio.net/), [WProject](https://wproject.vercel.app/)
|
||||
[iHeartRadio](https://www.iheart.com/), [OnlineRadioBox](https://onlineradiobox.com/), [LiveOnlineRadio](https://liveonlineradio.net/), [WebSDR](http://www.websdr.org/), [System Bus Radio](https://fulldecent.github.io/system-bus-radio/), [myTuner](https://mytuner-radio.com/), [Radio Browser](https://www.radio-browser.info/), [Zeno](https://zeno.fm/), [TuneYou](https://tuneyou.com/), [Tvradiotuner](https://tvradiotuner.com/), [Instant.audio](https://instant.audio/), [Radiodeck](https://www.radiodeck.com/), [VRadio](https://www.akouradio.com/), [WorldRadioMap](https://worldradiomap.com/), [Streema](https://streema.com/), [vTuner](https://vtuner.com/setupapp/guide/asp/BrowseStations/startpage.asp), [Radio.net](https://www.radio.net/), [TheOneStopRadio](https://theonestopradio.com/), [Radio Guide](https://www.radioguide.fm/), [Xiph](https://dir.xiph.org/), [raddio](https://raddio.net/)
|
||||
|
||||
### Internet Radio
|
||||
|
||||
@ -924,6 +926,10 @@
|
||||
|
||||
[r.sine.com](https://r.sine.com/index), [Pretty Flix](https://cvines528.github.io/Pretty-Flix/), [Cameron.Red](https://cameron.red/imgur/), [Funnyjunk](https://funnyjunk.com/), [f0ck](https://f0ck.me/), [ImgFlip](https://imgflip.com/), [9Gag](https://9gag.com/), [Thread-Puller](https://thread-puller.party/), [IWasteSoMuchTime](https://www.iwastesomuchtime.com/), [iFunny](https://ifunny.co/), [KongouCheats](https://kongoucheats.com/), [RandomWaffle](https://randomwaffle.gbs.fm/), [Wimp.com](https://www.wimp.com/), [Heahy](https://www.heahy.com/), [z0r](https://z0r.de/)
|
||||
|
||||
### Random Sites
|
||||
|
||||
[Vijay's Virtual Vibes](https://vijaysvibes.uk/), [The Red Button](https://clicktheredbutton.com/), [BoredButton](https://www.boredbutton.com/), [Sharkle!](https://sharkle.com/), [The Useless Web](https://theuselessweb.com/) / [2](https://theuselessweb.site/), [JumpStick](https://jumpstick.app/), [OpenBulkURL](https://openbulkurl.com/random/), [The Forest](https://theforest.link/), [WhatsMYIP](http://random.whatsmyip.org/), [Random-Website](https://random-website.com/), [Wilderness Land](https://wilderness.land/), [CloudHiker](https://cloudhiker.net/), [Moonjump](https://moonjump.app/)
|
||||
|
||||
***
|
||||
|
||||
## Remove Vocals
|
||||
@ -953,6 +959,12 @@
|
||||
|
||||
***
|
||||
|
||||
## Send Anonymous Emails
|
||||
|
||||
[5ymail](https://www.5ymail.com/), [anonymousemail](https://anonymousemail.me/), [anonymouse](http://anonymouse.org/anonemail.html), [sendanonymousemail](http://www.sendanonymousemail.net/), [Remailer](https://remailer.paranoici.org/index.php), [mailfreeonline](https://www.mailfreeonline.com/home)
|
||||
|
||||
***
|
||||
|
||||
## Site Legitimacy Check
|
||||
|
||||
* ⭐ **[URL Void](https://www.urlvoid.com/)**
|
||||
@ -963,7 +975,7 @@
|
||||
|
||||
## SMS Verification Sites
|
||||
|
||||
[2ndline](https://www.2ndline.co/), [TextNow](https://www.textnow.com/), [smspool](https://www.smspool.net/free-sms-verification), [GetFreeSMSNUmber](https://getfreesmsnumber.com/), [SMS Receive](https://sms-receive.net/), [Receive SMS Online](https://www.receivesmsonline.net/), [receivesmsonline](https://receivesmsonline.in/), [My Trash Mobile](https://www.mytrashmobile.com/), [freesmsverification](http://freesmsverification.com/), [temp-sms](https://temp-sms.org/), [temporary-phone-number](https://temporary-phone-number.com/), [spoofbox](https://www.spoofbox.com/en/tool/trash-mobile/number), [receive-sms-online](https://www.receive-sms-online.info/), [smsfinders](https://smsfinders.com/), [yunjisms](https://yunjisms.xyz/), [smscodeonline](https://smscodeonline.com/), [mianfeijiema](https://mianfeijiema.com/), [jiemahao](https://jiemahao.com/), [storytrain](https://www.storytrain.info/), [Temp Number](https://temp-number.com/), [sms24](https://www.sms24.me/), [receive-smss](https://receive-smss.com), [freesmscenter](https://freesmscenter.com/), [receive-sms](https://receive-sms.cc/), [spytm](https://spytm.com/), [receive-sms-free](https://receive-sms-free.cc/), [tempsmss](https://tempsmss.com/), [quackr](https://quackr.io/), [smsnator](https://smsnator.online/), [InboxSMS](https://inboxsms.me/), [anonymsms](https://anonymsms.com/temporary-phone-number/), [onlinesim](https://onlinesim.io/), [Receive SMS Online Free](http://receivefreesms.com/), [sms-activate](https://sms-activate.org/en/freeNumbers), [proovl](https://proovl.com/numbers), [receivefreesms](http://receivefreesms.net/), [receivesmsonline](http://receivesmsonline.in/), [hs3x](http://hs3x.com/), [receiveonlinesms](http://receiveonlinesms.biz/), [freereceivesmsonline](http://freereceivesmsonline.com/), [shejiinn](https://www.shejiinn.com/), [jiemadi](https://www.jiemadi.com/en), [freephonenum](https://freephonenum.com/), [receivesmsonline](https://receivesmsonline.me/), [freereceivesmsonline](https://freereceivesmsonline.com/), [7sim](https://7sim.pro/), [jiemagou](https://www.jiemagou.com/en), [yunjiema](https://yunjiema.net/), [supercloudsms](https://supercloudsms.com/en), [us-phone-number](https://us-phone-number.com/), [shownumber](https://lothelper.com/en/shownumber), [receivesmsverification](https://receivesmsverification.com/), [yunduanxin](https://yunduanxin.net/), [bestsms](https://bestsms.xyz/), [114sim](https://www.bfsms.com/), [smsget](https://smsget.net/), [free-sms-receive](https://www.free-sms-receive.com/), [sms247](https://sms247.net/), [otp4free](https://www.otp4free.com/), [free-sms-receive](https://free-sms-receive.co/)
|
||||
[2ndline](https://www.2ndline.co/), [TextNow](https://www.textnow.com/), [smspool](https://www.smspool.net/free-sms-verification), [GetFreeSMSNUmber](https://getfreesmsnumber.com/), [SMS Receive](https://sms-receive.net/), [Receive SMS Online](https://www.receivesmsonline.net/), [receivesmsonline](https://receivesmsonline.in/), [My Trash Mobile](https://www.mytrashmobile.com/), [freesmsverification](http://freesmsverification.com/), [temp-sms](https://temp-sms.org/), [temporary-phone-number](https://temporary-phone-number.com/), [spoofbox](https://www.spoofbox.com/en/tool/trash-mobile/number), [receive-sms-online](https://www.receive-sms-online.info/), [smsfinders](https://smsfinders.com/), [yunjisms](https://yunjisms.xyz/), [smscodeonline](https://smscodeonline.com/), [mianfeijiema](https://mianfeijiema.com/), [jiemahao](https://jiemahao.com/), [storytrain](https://www.storytrain.info/), [Temp Number](https://temp-number.com/), [sms24](https://www.sms24.me/), [receive-smss](https://receive-smss.com), [freesmscenter](https://freesmscenter.com/), [receive-sms](https://receive-sms.cc/), [spytm](https://spytm.com/), [receive-sms-free](https://receive-sms-free.cc/), [tempsmss](https://tempsmss.com/), [quackr](https://quackr.io/), [smsnator](https://smsnator.online/), [InboxSMS](https://inboxsms.me/), [anonymsms](https://anonymsms.com/temporary-phone-number/), [onlinesim](https://onlinesim.io/), [Receive SMS Online Free](http://receivefreesms.com/), [sms-activate](https://sms-activate.org/en/freeNumbers), [proovl](https://proovl.com/numbers), [receivefreesms](http://receivefreesms.net/), [receivesmsonline](http://receivesmsonline.in/), [hs3x](http://hs3x.com/), [receiveonlinesms](http://receiveonlinesms.biz/), [freereceivesmsonline](http://freereceivesmsonline.com/), [shejiinn](https://www.shejiinn.com/), [jiemadi](https://www.jiemadi.com/en), [freephonenum](https://freephonenum.com/), [receivesmsonline](https://receivesmsonline.me/), [freereceivesmsonline](https://freereceivesmsonline.com/), [7sim](https://7sim.pro/), [jiemagou](https://www.jiemagou.com/en), [yunjiema](https://yunjiema.net/), [supercloudsms](https://supercloudsms.com/en), [us-phone-number](https://us-phone-number.com/), [shownumber](https://lothelper.com/en/shownumber), [receivesmsverification](https://receivesmsverification.com/), [yunduanxin](https://yunduanxin.net/), [bestsms](https://bestsms.xyz/), [114sim](https://www.bfsms.com/), [smsget](https://smsget.net/), [free-sms-receive](https://www.free-sms-receive.com/), [sms247](https://sms247.net/), [otp4free](https://www.otp4free.com/)
|
||||
|
||||
### No CC Required Trial Sites
|
||||
|
||||
@ -1055,6 +1067,28 @@
|
||||
|
||||
***
|
||||
|
||||
## Temp Email Sites
|
||||
|
||||
* ⭐ **[smailpro](https://smailpro.com/)** (gmail)
|
||||
* ⭐ **[Emailnator](https://www.emailnator.com/)** (gmail)
|
||||
* ⭐ **[Zemail](https://zemail.me/mailbox)** (gmail)
|
||||
* ⭐ **[Mail.tm](https://mail.tm/en)**
|
||||
* ⭐ **[inboxes](https://inboxes.com/)**
|
||||
* ⭐ **[Guerillamail](https://www.guerrillamail.com/)**
|
||||
* ⭐ **[kuku](https://m.kuku.lu/)**
|
||||
|
||||
[Adguard Temp Mail](https://adguard.com/en/adguard-temp-mail/overview.html), [48hr.email](https://48hr.email/), [10 Minute Mail](https://temp-mail.org/en/10minutemail), [tmail](https://tmail.io/), [Temp Mail](https://temp-mail.org/), [maildrop](https://maildrop.cc/), [mailinator](https://www.mailinator.com/), [mailnesia](https://mailnesia.com/), [Maildax](https://maildax.com/), [anonbox](https://anonbox.net/), [Generator.email](https://generator.email/), [Email on Deck](https://www.emailondeck.com/), [Mohmal](https://www.mohmal.com/en), [temporarymail](https://temporarymail.com/), [FakeMailGenerator](https://www.fakemailgenerator.com/), [emailfake](https://emailfake.com/), [tempmailo](https://tempmailo.com/), [10minutesemail](https://10minutesemail.net/), [tempm](https://tempm.com/), [tempail](https://tempail.com/), [eyepaste](https://www.eyepaste.com/), [mintemail](https://www.mintemail.com/), [sharklasers](https://www.sharklasers.com/), [yopmail](https://www.yopmail.com/en/), [mail.td](https://mail.td/), [dropmail](https://dropmail.me/en/), [cryptogmail](https://cryptogmail.com/), [inboxkitten](https://inboxkitten.com/), [anonymmail](https://anonymmail.net/), [tmailweb](https://tmailweb.com/), [one-off](https://one-off.email/), [tempr](https://tempr.email/en/), [fakemail](https://www.fakemail.net/), [email-generator](https://yopmail.com/en/email-generator), [moakt](https://www.moakt.com/), [linshi-email](https://www.linshi-email.com/en), [disposablemail](https://www.disposablemail.com/), [trashmail](https://trashmail.ws/), [fakermail](https://fakermail.com/), [10minutesmail](http://10minutesmail.com/), [mailtemp](https://mailtemp.top/), [temporary-email](https://temporary-email.com/), [tempmail.plus](https://tempmail.plus/en/), [mail-temp](https://mail-temp.com/), [easytrashmail](https://www.easytrashmail.com/), [1secmail](https://www.1secmail.com/), [fex](https://fex.plus/en/), [email-fake](https://email-fake.com/), [luxusmail](https://luxusmail.org/), [tempmail](https://tempmail.zone/), [spambox](https://spambox.xyz/), [tempmails](https://tempmails.net/), [receivemail](https://www.receivemail.org/), [rainmail](https://rainmail.xyz/), [tempemail](https://tempemail.co/), [burner](https://burner.kiwi/), [tempmail.altmails](https://tempmail.altmails.com/), [instant-email](https://instant-email.org/), [temp-mail.io](https://temp-mail.io/), [temp-inbox](https://temp-inbox.com/), [tempmaili](https://tempmaili.com/), [minuteinbox](https://minuteinbox.com/), [emailtemp](https://emailtemp.org/), [tempmailid](https://tempmailid.com/), [emaildrop](https://www.emaildrop.io/), [10minutemail](https://10minutemail.net/), [temprmail](https://temprmail.com/), [10minemail](https://10minemail.com/), [tempmail.email](https://tempmail.email/), [temps-mail.com](https://temps-mail.com/), [tempinbox](https://www.tempinbox.xyz/), [yopmail](https://yopmail.com/), [tmailor](https://tmailor.com/), [temp-mailbox](https://temp-mailbox.com/), [bottlemail](https://bottlemail.org/), [internxt](https://internxt.com/temporary-email), [tmail.gg](https://tmail.gg/en), [gettempemail](https://gettempemail.com/), [dispostable](https://www.dispostable.com/), [10minutemail](https://www.lite14.us/10minutemail/), [trashmail](https://trashmail.com/), [10minutemail.com](https://10minutemail.com/), [email.ml](https://email.ml/), [edumail](https://edumail.icu/), [snapmail](https://www.snapmail.cc/), [mailcatch](http://mailcatch.com/), [email1](https://email1.io/), [cs.email](https://cs.email/), [haribu](https://haribu.net/), [22.do](https://22.do/), [Mail.cx](https://mail.cx/), [YOPmail](https://yopmail.com/en/), [vmail](https://vmail.dev/), [trashinbox](https://trashinbox.net/)
|
||||
|
||||
### Telegram Temp Mail Bots
|
||||
|
||||
[Trashmail](https://github.com/etaxi341/TrashMailClient-TelegramBot), [TrashEmail](https://t.me/trashemail_bot), [smtpbot](https://t.me/smtpbot), [smtpbot](https://t.me/smtpbot), [DropmailBot](https://t.me/DropmailBot), [fakemailbot](https://t.me/fakemailbot)
|
||||
|
||||
### Temp Mail Extensions
|
||||
|
||||
[Bloody Vikings!](https://addons.mozilla.org/en-US/firefox/addon/bloody-vikings/)
|
||||
|
||||
***
|
||||
|
||||
## Telegram Anime Downloads
|
||||
|
||||
* https://t.me/Anime_Ocean_Backup
|
||||
@ -1148,6 +1182,15 @@
|
||||
|
||||
***
|
||||
|
||||
## URL Unshorteners
|
||||
|
||||
* ⭐ **[urlex](https://urlex.org/)**
|
||||
* ⭐ **[CheckShortURL](https://checkshorturl.com/)**
|
||||
|
||||
[ExpandURL](https://www.expandurl.net/), [Unshorten.it](https://unshorten.it/), [WhereGoes](https://wheregoes.com/), [urlxray](http://urlxray.com/), [unshorten](https://unshorten.me/), [linkunshorten](https://linkunshorten.com/)
|
||||
|
||||
***
|
||||
|
||||
## Vue Tools
|
||||
|
||||
* ⭐ **[Vue.js](https://vuejs.org/)** - JS Framework
|
||||
@ -1163,7 +1206,7 @@
|
||||
* ⭐ **[Hugo](https://gohugo.io/)**
|
||||
* ⭐ **[vitepress](https://vitepress.dev/)**
|
||||
|
||||
[retype](https://retype.com/), [Feather Wiki](https://feather.wiki/), [SouPalt](https://soupault.app/), [Barly](https://github.com/charludo/barely), [Zola](https://www.getzola.org/), [Jamstack Generators](https://jamstack.org/generators/), [Jekyll](https://jekyllrb.com/), [Tails](https://devdojo.com/tails), [vveb](https://www.vvveb.com/), [Potion](https://potion.so/), [8b](https://8b.com/), [WebFlow](https://webflow.com/), [EasyLogic](https://www.easylogic.studio/), [Universe](https://onuniverse.com/), [Website.com](https://www.website.com/), [GrapeDrop](https://grapedrop.com/), [Specctr](https://specctr.com/cloud/home), [Astro](https://astro.build/), [TypeDream](https://typedream.com/), [Processwire](https://processwire.com/), [Google Sites](https://sites.google.com/new), [AngelFire](https://www.angelfire.lycos.com/), [Odoo](https://www.odoo.com/app/website), [Docusaurus](https://github.com/facebook/docusaurus), [Docsify](https://docsify.js.org/)
|
||||
[retype](https://retype.com/), [Feather Wiki](https://feather.wiki/), [SouPalt](https://soupault.app/), [Barly](https://github.com/charludo/barely), [Zola](https://www.getzola.org/), [Jamstack Generators](https://jamstack.org/generators/), [Jekyll](https://jekyllrb.com/), [Tails](https://devdojo.com/tails), [vveb](https://www.vvveb.com/), [Potion](https://potion.so/), [8b](https://8b.com/), [WebFlow](https://webflow.com/), [EasyLogic](https://www.easylogic.studio/), [Universe](https://onuniverse.com/), [Website.com](https://www.website.com/), [GrapeDrop](https://grapedrop.com/), [Specctr](https://specctr.com/cloud/home), [Astro](https://astro.build/), [TypeDream](https://typedream.com/), [Processwire](https://processwire.com/), [Google Sites](https://sites.google.com/new), [AngelFire](https://www.angelfire.lycos.com/)
|
||||
|
||||
### Simple Site Creators
|
||||
|
||||
|
@ -6,12 +6,16 @@
|
||||
|
||||
# ► Social Media Tools
|
||||
|
||||
* ⭐ **[SocialBlade](https://socialblade.com/)** - Social Media Stats
|
||||
* ⭐ **[LiveCounts](https://livecounts.io/)** - Live Social Media Stats
|
||||
* [Social-Searcher](https://www.social-searcher.com/), [WeVerify](https://cse.google.com/cse?cx=006976128084956795641:ad1xj14zfap) or [Social Media CSE](https://cse.google.com/cse?cx=73dda67fd05b4405f#gsc.tab=1&gsc.sort=) - Social Media Search Engine
|
||||
* [Social Media Hacker List](https://github.com/MobileFirstLLC/social-media-hacker-list) - Social Media Apps / Tools
|
||||
* [SocialBlade](https://socialblade.com/) - Social Media Stats
|
||||
* [LiveCounts](https://livecounts.io/) - Live Social Media Stats
|
||||
* [ExportComments](https://exportcomments.com/) - Export Social Media Comments
|
||||
* [socid_extractor](https://github.com/soxoj/socid-extractor) - Extract Social Media User Info from Pages
|
||||
* [tumblr-utils](https://github.com/cebtenzzre/tumblr-utils) - Tumblr Utilities
|
||||
* [Tumblr Savior](https://bjornstar.com/tumblr-savior) - Tumblr Dashboard Filter
|
||||
* [TumblrOriginalPostFinder](https://jetblackcode.com/TumblrOriginalPostFinder) - Tumblr Post Finder
|
||||
* [Pillowfort](https://www.pillowfort.social/) or [Cohost](https://cohost.org/) - Tumblr Alternatives
|
||||
|
||||
***
|
||||
|
||||
@ -73,9 +77,9 @@
|
||||
* [ArmCord](https://github.com/ArmCord/ArmCord) - Discord Client Mod / Lightweight
|
||||
* [abaddon](https://github.com/uowuo/abaddon) - Discord Client Mod / Lightweight
|
||||
* [Discordo](https://github.com/ayn2op/discordo) - Discord Terminal Client
|
||||
* [discord-PWA](https://github.com/NeverDecaf/discord-PWA) - Discord PWA Client
|
||||
* [Unicord](https://github.com/UnicordDev/Unicord) - Discord Client for Windows / [Discord](https://discord.gg/64g7M5Y)
|
||||
* [Spacebar](https://github.com/spacebarchat/spacebarchat) - Self-hostable Discord Client
|
||||
* [discord-PWA](https://github.com/NeverDecaf/discord-PWA) - Discord PWA Client
|
||||
* [Dorion](https://github.com/SpikeHD/Dorion) - Lightweight Discord Client
|
||||
* [Dissent](https://github.com/diamondburned/dissent) - GTK4 Discord Client
|
||||
* [Discord Portable](https://portapps.io/app/discord-portable/) / [PTB PortApps](https://portapps.io/app/discord-ptb-portable/) - Portable Discord Stable
|
||||
@ -118,8 +122,7 @@
|
||||
## ▷ Discord Bots
|
||||
|
||||
* ⭐ **[FreeStuff Bot](https://freestuffbot.xyz/)** - Free Games Alert Bot
|
||||
* [FixEmbed](https://github.com/kenhendricks00/FixEmbed) - Fix Embeds on Discord Bot
|
||||
* [esmBot](https://github.com/esmBot/esmBot) - Image / Music Bot
|
||||
* [FixEmbed](https://github.com/kenhendricks00/FixEmbedBot) - Fix Embeds on Discord Bot
|
||||
* [NotQuiteNitro](https://nqn.blue/) - Discord Nitro Alternative
|
||||
* [fmbot](https://fmbot.xyz/) - Discord Voice Chat Scrobbling
|
||||
* [Chuu](https://github.com/ishwi/Chuu) - Last.fm Discord Bot
|
||||
@ -139,6 +142,7 @@
|
||||
## ▷ Server / Bot Indexes
|
||||
|
||||
* 🌐 **[Alternatives to MEE6](https://alternativestomee6.com/)** - MEE6 Alternatives / [Discord](https://discord.gg/WrbMdWHfNd)
|
||||
* ↪️ **[Discord ChatGPT Bots](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/ai#wiki_.25B7_chatgpt_tools)**
|
||||
* [DISBOARD](https://disboard.org/) - Server / Bot Index
|
||||
* [Discord Servers](https://discordservers.com/) - Server / Bot Index
|
||||
* [Discadia](https://discadia.com/) - Server / Bot Index
|
||||
@ -168,6 +172,7 @@
|
||||
|
||||
* ⭐ **[Reddit Enhancement Suite](https://redditenhancementsuite.com/)**, [Reddit Fix](https://greasyfork.org/en/scripts/404497-reddit-fix), [Reddit Extension](https://lawrenzo.com/p/reddit-extension), [RedditEnhancer](https://github.com/joelacus/RedditEnhancer) or [RedditMod2](https://greasyfork.org/en/scripts/29724-redditmod2) - Reddit Enhancement Extensions / Scripts
|
||||
* ⭐ **[Old Reddit Redirect](https://github.com/tom-james-watson/old-reddit-redirect)** - Redirect New Reddit to Old
|
||||
* ⭐ **[UI Revert Script](https://greasyfork.org/en/scripts/490130)** - Restore Reddit 2023 UI
|
||||
* [Photon](https://photon-reddit.com/), [reditr](https://reditr.com/), [RDX](https://rdx.overdevs.com/) or [redlib](https://github.com/redlib-org/redlib) - Reddit Frontends
|
||||
* [Reddit Login Bypass Script](https://pastebin.com/raw/sU5tqwep) - Bypass Reddit Login
|
||||
* [Beleave](https://beleave.virock.org/) - Bulk Subreddit Unsub Tool
|
||||
@ -366,9 +371,9 @@
|
||||
* [RapidTags](https://www.rapidtags.io/) - YouTube Tag Generators
|
||||
* [songs-to-youtube](https://github.com/7x11x13/songs-to-youtube) - Upload Audio to YouTube Automatically
|
||||
* [YouBit](https://github.com/MeViMo/youbit) - Use YouTube as File Host
|
||||
* [ytcropper](https://ytcropper.com/), [yt_clipper](https://github.com/exwm/yt_clipper), [Apps Golem](https://appsgolem.com/en/cut-youtube-video) or [YTCutter.com](https://ytcutter.com/) - Crop YouTube Videos / Create Clips
|
||||
* [ytcropper](https://ytcropper.com/), [yt_clipper](https://github.com/exwm/yt_clipper) or [YTCutter.com](https://ytcutter.com/) - Crop YouTube Videos / Create Clips
|
||||
* [YTStamps](https://ytstamps.netlify.app/) - Create Custom Start / End Times
|
||||
* [Solidpoint](https://solidpoint.ai/), [Glasp](https://glasp.co/youtube-summary), [Glarity](https://glarity.app/), [Quickvid](https://quickvid.vercel.app/), [Eightify](https://eightify.app/), [VideoGist](https://www.videogist.co/)[VideoHighlight](https://videohighlight.com/), [Clipnote](https://clipnote.ai/) or [Summarize](https://summarize.tech/)- Summarize YouTube Videos
|
||||
* [Solidpoint](https://solidpoint.ai/), [Glasp](https://glasp.co/youtube-summary), [Quickvid](https://quickvid.vercel.app/), [Eightify](https://eightify.app/), [VideoGist](https://www.videogist.co/) or [VideoHighlight](https://videohighlight.com/) - Summarize YouTube Videos
|
||||
* [Stepify](https://stepify.tech/) - Get Step-By-Step Tutorial of YT Video
|
||||
* [Recover My Video](https://www.recovermy.video/) - Recover Titles of Deleted / Private YouTube Videos
|
||||
* [Filmot Title Restorer](https://greasyfork.org/en/scripts/430202-filmot-title-restorer) - Restore Deleted YouTube Video Titles in Playlists
|
||||
@ -388,40 +393,6 @@
|
||||
|
||||
***
|
||||
|
||||
## ▷ Players / Frontends
|
||||
|
||||
* ⭐ **[SponsorBlock](https://sponsor.ajay.app/)** - Skip Sponsored YouTube Ads / [Chromecast](https://github.com/gabe565/CastSponsorSkip) / [Script](https://github.com/mchangrh/sb.js), [2](https://greasyfork.org/en/scripts/453320)
|
||||
* ⭐ **[Poke](https://poketube.fun/)** - YouTube Frontend / [Discord](https://discord.gg/Kqdn8CHacP)
|
||||
* ⭐ **[FreeTube](https://freetubeapp.io/)** - YouTube Frontend / [GitHub](https://github.com/FreeTubeApp/FreeTube)
|
||||
* ⭐ **[Invidious](https://invidious.io/)**, [Invuedious](https://github.com/bocchilorenzo/invuedious) or [Materialio](https://materialio.us/) - YouTube Frontends
|
||||
* ⭐ **Invidious Tools** - [Instances](https://api.invidious.io/), [2](https://redirect.invidious.io/) / [TUI](https://github.com/darkhz/invidtui)
|
||||
* ⭐ **[PKGA](https://greasyfork.org/en/scripts/442089)** or [YouTube WideScreen](https://greasyfork.org/en/scripts/409893) - Improved YouTube Cinema Mode
|
||||
* ⭐ **[Fast Forward YouTube Shorts](https://greasyfork.org/en/scripts/466438)** - Add Skip Keys to Shorts
|
||||
* [YouTube Notes](https://instadeq.com/youtube-notes/) - YouTube Note-Taking Frontend
|
||||
* [Campfire](https://campfire.gg), [Walrus](https://joinwalrus.tv/), [Sync-Tube](https://sync-tube.de/), [YouTube Party](https://youtubeparty.netlify.app/) or [Hergetto](https://hergetto.live/) - YouTube Watch Parties
|
||||
* [TwitchTheater](https://twitchtheater.tv/), [VidGrid](https://vidgrid.tk.gg/), [YouTube Multiplier](https://www.youtubemultiplier.com/) or [ViewSync](https://viewsync.net/) - Watch Multiple YouTube Videos
|
||||
* [CloudTube](https://tube.cadence.moe/) - YouTube Frontend
|
||||
* [Youtube-Clone-KMP](https://github.com/KhubaibKhan4/Youtube-Clone-KMP) - YouTube Frontend
|
||||
* [ViewTube](https://viewtube.wiki/) - YouTube Frontend
|
||||
* [Piped](https://github.com/TeamPiped/Piped) / [2](https://piped.kavin.rocks/) / [3](https://piped-material.১.net/) - YouTube Frontend
|
||||
* [PSTube](https://github.com/prateekmedia/pstube) - YouTube Frontend
|
||||
* [Youtube-local](https://github.com/user234683/youtube-local) or [yt-local](https://git.sr.ht/~heckyel/yt-local) - YouTube Frontend
|
||||
* [YouT-ube](https://www.yout-ube.com/) - YouTube Frontend
|
||||
* [yt.d0.cx](https://yt.d0.cx/) - YouTube Frontend
|
||||
* [Ytfzf](https://github.com/pystardust/ytfzf) or [YewTube](https://github.com/mps-youtube/yewtube) - Terminal YouTube Players
|
||||
* [Video Resumer](https://addons.mozilla.org/en-US/firefox/addon/video-resumer/) - Resume Videos Where You Left Off / [Note](https://pastebin.com/Jd1DJW8w)
|
||||
* [Looptube](https://www.looptube.xyz/) - Loop YouTube Videos / Segments
|
||||
* [Video Speed Controller](https://github.com/igrigorik/videospeed), [YouTube Web Tweaks](https://greasyfork.org/en/scripts/447802) or [TimerHooker](https://timer.palerock.cn/en/) - Control Speed of YouTube Videos
|
||||
* [Anilyzer](https://anilyzer.com/) - Watch YouTube Videos in Slow Motion / Frame by Frame
|
||||
* [Jump Cutter](https://github.com/WofWca/jumpcutter) - Skip Silent Parts of Videos
|
||||
* [YourCodecs](https://github.com/undecV/YourCodecs) - Enable / Disable Player Codecs
|
||||
* [YT CPU Tamer](https://greasyfork.org/en/scripts/431573), [YT JS Tamer](https://greasyfork.org/en/scripts/473972) or [Unhold YouTube](https://greasyfork.org/en/scripts/457205) - YouTube CPU Optimization
|
||||
* [Rotate YouTube Video](https://addons.mozilla.org/en-US/firefox/addon/rotate-youtube-video/) - Rotate YouTube Videos
|
||||
* [StretchSite](https://www.stretch.site/) or [Ultrawidify](https://github.com/tamius-han/ultrawidify) - Custom YouTube Aspect Ratio
|
||||
* [YouTube: Audio Only](https://greasyfork.org/en/scripts/484611) or [Audio Only YouTube](https://chromewebstore.google.com/detail/audio-only-youtube/pkocpiliahoaohbolmkelakpiphnllog) - Audio Only YouTube
|
||||
|
||||
***
|
||||
|
||||
## ▷ YouTube Downloaders
|
||||
|
||||
* 🌐 **[YT-DL GUI Index](https://www.reddit.com/r/youtubedl/wiki/info-guis)** - List of YT-DL GUIs
|
||||
@ -456,6 +427,44 @@
|
||||
|
||||
***
|
||||
|
||||
## ▷ YouTube Frontends
|
||||
|
||||
* ⭐ **[Poke](https://poketube.fun/)** - YouTube Frontend / [Discord](https://discord.gg/Kqdn8CHacP)
|
||||
* ⭐ **[FreeTube](https://freetubeapp.io/)** - YouTube Frontend / [GitHub](https://github.com/FreeTubeApp/FreeTube)
|
||||
* ⭐ **[Invidious](https://invidious.io/)**, [Invuedious](https://github.com/bocchilorenzo/invuedious) or [Materialio](https://materialio.us/) - YouTube Frontends
|
||||
* ⭐ **Invidious Tools** - [Instances](https://api.invidious.io/), [2](https://redirect.invidious.io/) / [TUI](https://github.com/darkhz/invidtui)
|
||||
* [YouTube Notes](https://instadeq.com/youtube-notes/) - YouTube Note-Taking Frontend
|
||||
* [CloudTube](https://tube.cadence.moe/) - YouTube Frontend
|
||||
* [Youtube-Clone-KMP](https://github.com/KhubaibKhan4/Youtube-Clone-KMP) - YouTube Frontend
|
||||
* [ViewTube](https://viewtube.wiki/) - YouTube Frontend
|
||||
* [Piped](https://github.com/TeamPiped/Piped) / [2](https://piped.kavin.rocks/) / [3](https://piped-material.১.net/) - YouTube Frontend
|
||||
* [PSTube](https://github.com/prateekmedia/pstube) - YouTube Frontend
|
||||
* [Youtube-local](https://github.com/user234683/youtube-local) or [yt-local](https://git.sr.ht/~heckyel/yt-local) - YouTube Frontend
|
||||
* [YouT-ube](https://www.yout-ube.com/) - YouTube Frontend
|
||||
* [yt.d0.cx](https://yt.d0.cx/) - YouTube Frontend
|
||||
|
||||
***
|
||||
|
||||
## ▷ YouTube Players
|
||||
|
||||
* ⭐ **[SponsorBlock](https://sponsor.ajay.app/)** - Skip Sponsored YouTube Ads / [Chromecast](https://github.com/gabe565/CastSponsorSkip) / [Script](https://github.com/mchangrh/sb.js), [2](https://greasyfork.org/en/scripts/453320)
|
||||
* ⭐ **[PKGA](https://greasyfork.org/en/scripts/442089)** or [YouTube WideScreen](https://greasyfork.org/en/scripts/409893) - Improved YouTube Cinema Mode
|
||||
* ⭐ **[Fast Forward YouTube Shorts](https://greasyfork.org/en/scripts/466438)** - Add Skip Keys to Shorts
|
||||
* [Campfire](https://campfire.gg), [Walrus](https://joinwalrus.tv/), [Sync-Tube](https://sync-tube.de/), [YouTube Party](https://youtubeparty.netlify.app/) or [Hergetto](https://hergetto.live/) - YouTube Watch Parties
|
||||
* [TwitchTheater](https://twitchtheater.tv/), [VidGrid](https://vidgrid.tk.gg/), [YouTube Multiplier](https://www.youtubemultiplier.com/) or [ViewSync](https://viewsync.net/) - Watch Multiple YouTube Videos
|
||||
* [Ytfzf](https://github.com/pystardust/ytfzf) or [YewTube](https://github.com/mps-youtube/yewtube) - Terminal YouTube Players
|
||||
* [Video Resumer](https://addons.mozilla.org/en-US/firefox/addon/video-resumer/) - Resume Videos Where You Left Off / [Note](https://pastebin.com/Jd1DJW8w)
|
||||
* [Video Speed Controller](https://github.com/igrigorik/videospeed), [YouTube Web Tweaks](https://greasyfork.org/en/scripts/447802) or [TimerHooker](https://timer.palerock.cn/en/) - Control Speed of YouTube Videos
|
||||
* [Anilyzer](https://anilyzer.com/) - Watch YouTube Videos in Slow Motion / Frame by Frame
|
||||
* [Jump Cutter](https://github.com/WofWca/jumpcutter) - Skip Silent Parts of Videos
|
||||
* [YourCodecs](https://github.com/undecV/YourCodecs) - Enable / Disable Player Codecs
|
||||
* [YT CPU Tamer](https://greasyfork.org/en/scripts/431573), [YT JS Tamer](https://greasyfork.org/en/scripts/473972) or [Unhold YouTube](https://greasyfork.org/en/scripts/457205) - YouTube CPU Optimization
|
||||
* [Rotate YouTube Video](https://addons.mozilla.org/en-US/firefox/addon/rotate-youtube-video/) - Rotate YouTube Videos
|
||||
* [StretchSite](https://www.stretch.site/) or [Ultrawidify](https://github.com/tamius-han/ultrawidify) - Custom YouTube Aspect Ratio
|
||||
* [YouTube: Audio Only](https://greasyfork.org/en/scripts/484611) or [Audio Only YouTube](https://chromewebstore.google.com/detail/audio-only-youtube/pkocpiliahoaohbolmkelakpiphnllog) - Audio Only YouTube
|
||||
|
||||
***
|
||||
|
||||
## ▷ YouTube Customization
|
||||
|
||||
* ⭐ **[Enhancer for YT](https://www.mrfdev.com/enhancer-for-youtube)**, [ImprovedTube](https://improvedtube.com/), [Tweaks for YT](https://inzk.dev/tweaks-for-youtube/) or [Magic Actions](https://www.chromeactions.com/) - YouTube Enhancement Extensions
|
||||
@ -466,7 +475,7 @@
|
||||
* [youtube-like-dislike-shortcut](https://github.com/avi12/youtube-like-dislike-shortcut) - Video Like / Dislike Hotkeys
|
||||
* [YT Not Interested Button on Hover](https://greasyfork.org/en/scripts/396936-yt-not-interested-in-one-click) - Easily Display Not Interested Button
|
||||
* [YouTube Fixes](https://greasyfork.org/en/scripts/405614) - YouTube Tweaks
|
||||
* [Focused YouTube](https://github.com/makaroni4/focused_youtube), [yt-neuter](https://github.com/mchangrh/yt-neuter) or [GoodTube](https://github.com/goodtube4u/goodtube) - Minimalist YouTube
|
||||
* [Focused YouTube](https://github.com/makaroni4/focused_youtube) or [GoodTube](https://github.com/goodtube4u/goodtube) - Minimalist YouTube
|
||||
* [YouTube Redux](https://github.com/omnidevZero/YouTubeRedux), [VORAPIS](https://vorapis.pages.dev/) / [Discord](https://vorapis.pages.dev/#/join_community) / [Features](https://greasyfork.org/en/scripts/485622) or [Cosmic Cat](https://github.com/cosmic-cat-yt/Cosmic-Cat) - Restore Classic YouTube Layout
|
||||
* [/r/OldYouTubeLayout](https://www.reddit.com/r/oldyoutubelayout/) - Classic YouTube Layout Subreddit
|
||||
* [Disable Rounded Buttons](https://greasyfork.org/en/scripts/453802) - Disable Rounded YouTube Buttons
|
||||
@ -577,11 +586,18 @@
|
||||
|
||||
* ⭐ **[Trends24](https://trends24.in/)** or [GetDayTrends](https://getdaytrends.com/) - Trending Hashtags Trackers
|
||||
* ⭐ **[/r/Twitter](https://reddit.com/r/Twitter)** - Twitter Subreddit
|
||||
* [Tumbl Backup Guide](https://docs.google.com/document/d/1yBWlk-yEgpSoEh3c9oLhz_kbLtUGqbqzOpCtJsvQgjI/), [TumblThree](https://tumblthreeapp.github.io/TumblThree/) or [Thread Safe](https://github.com/dkaslovsky/thread-safe) - Twitter / Tumblr Backup Tools
|
||||
* [Typefully](https://typefully.com/) - Schedule Tweets
|
||||
* [Chirr App](https://getchirrapp.com/) - Turn Articles into Twitter Threads / [Firefox](https://addons.mozilla.org/en-US/firefox/addon/chirr-app/) / [Chrome](https://chromewebstore.google.com/detail/chirr-app/cmbconaimdngicdnbpjnjocbpkdpmfkg)
|
||||
* [OneMillionTweetMap](https://onemilliontweetmap.com/) - Real-Time Tweet Map
|
||||
* [Klear](https://klear.com/free-tools/find-twitter-influencers) - Find Influencers
|
||||
* [FollowerWonk](https://followerwonk.com/) - Find / Analyze / Optimize Followers
|
||||
* [TwitterMediaHarvest](https://github.com/EltonChou/TwitterMediaHarvest) or [InThisTweet](https://inthistweet.app/) - Twitter Media Downloader
|
||||
* [GetVideoBot](https://twitsave.com/), [DownloadTwitterVideo](https://www.downloadtwittervideo.com/), [TwitterVid](https://twittervid.com/) or [sssTwitter](https://ssstwitter.com/) - Download Twitter Videos
|
||||
* [Pikaso](https://twitter.com/pikaso_me) - Twitter Screenshot Bot
|
||||
* [memory.lol](https://github.com/travisbrown/memory.lol/) - Twitter Account Archive
|
||||
* [Twitter Archive Parser](https://github.com/timhutton/twitter-archive-parser) or [twitter-web-exporter](https://github.com/prinsss/twitter-web-exporter) - Tweet Archivers
|
||||
* [Twayback Machine](https://staringispolite.github.io/twayback-machine/) - View Users' Old Tweets
|
||||
* [Scoutzen](https://www.scoutzen.com/twitter-lists/search) - Search Twitter Use Lists
|
||||
* [Hoaxy](https://hoaxy.osome.iu.edu/) - Twitter Info Spread Data
|
||||
* [tinfoleak](https://tinfoleak.com/) - View Your Geosocial Footprint
|
||||
@ -591,19 +607,6 @@
|
||||
|
||||
***
|
||||
|
||||
## ▷ Twitter Archiving
|
||||
|
||||
* [Thread Safe](https://github.com/dkaslovsky/thread-safe) - Twitter Backup Tool
|
||||
* [TwitterMediaHarvest](https://github.com/EltonChou/TwitterMediaHarvest) or [InThisTweet](https://inthistweet.app/) - Twitter Media Downloader
|
||||
* [GetVideoBot](https://twitsave.com/), [TwitterVid](https://twittervid.com/) or [sssTwitter](https://ssstwitter.com/) - Download Twitter Videos
|
||||
* [Pikaso](https://twitter.com/pikaso_me) - Twitter Screenshot Bot
|
||||
* [memory.lol](https://github.com/travisbrown/memory.lol/) - Twitter Account Archive
|
||||
* [Ghost Archive](https://ghostarchive.org/) or [Megalodon](https://megalodon.jp/) - Twitter Archive Services
|
||||
* [Twitter Archive Parser](https://github.com/timhutton/twitter-archive-parser) or [twitter-web-exporter](https://github.com/prinsss/twitter-web-exporter) - Tweet Archivers
|
||||
* [Twayback Machine](https://staringispolite.github.io/twayback-machine/) - View Users' Old Tweets
|
||||
|
||||
***
|
||||
|
||||
## ▷ Twitter Customization
|
||||
|
||||
* ⭐ **[Eight Dollars](https://github.com/wseagar/eight-dollars)** - Show Twitter Blue vs. Real Verified Users
|
||||
@ -662,19 +665,6 @@
|
||||
|
||||
***
|
||||
|
||||
# ► Tumblr Tools
|
||||
|
||||
* [Tumlook](https://www.tumlook.com/), [Tumgik](https://www.tumgik.com/) or [PriviBlur](https://github.com/syeopite/priviblur) - Tumblr Frontends
|
||||
* [Pillowfort](https://www.pillowfort.social/) or [Cohost](https://cohost.org/) - Tumblr Alternatives
|
||||
* [tumblr-utils](https://github.com/cebtenzzre/tumblr-utils) - Tumblr Utilities
|
||||
* [XKit](https://github.com/new-xkit/XKit) - Tumblr Enhancement Extension
|
||||
* [Tumblr Savior](https://bjornstar.com/tumblr-savior) - Tumblr Dashboard Filter
|
||||
* [tumbex](https://www.tumbex.com/) - Tumblr Search
|
||||
* [TumblrOriginalPostFinder](https://jetblackcode.com/TumblrOriginalPostFinder) - Tumblr Post Finder
|
||||
* [Tumbl Backup Guide](https://docs.google.com/document/d/1yBWlk-yEgpSoEh3c9oLhz_kbLtUGqbqzOpCtJsvQgjI/) or [TumblThree](https://tumblthreeapp.github.io/TumblThree/) - Tumblr Backup Tools
|
||||
|
||||
***
|
||||
|
||||
# ► Fediverse Tools
|
||||
|
||||
* 🌐 **[Fediverse.Party](https://fediverse.party/)** - Fediverse Software Index
|
||||
@ -708,7 +698,6 @@
|
||||
* [Mastodon Embed Timeline](https://gitlab.com/idotj/mastodon-embed-timeline) or [Mastofeed](https://mastofeed.com/) - Embedded Mastodon Feeds
|
||||
* [Cheap Bots, Toot Sweet!](https://cheapbotstootsweet.com/) - Create Bots
|
||||
* [emojos.in](https://emojos.in/) - Mastodon Custom Emoji Lists
|
||||
* [MastoMetrics](https://mastometrics.com/) - Mastodon Analytics
|
||||
|
||||
***
|
||||
|
||||
@ -717,7 +706,6 @@
|
||||
* ⭐ **[Lemmy Explorer](https://lemmyverse.net/)**, [Feddit Community Browser](https://browse.feddit.de/) or [Awesome Lemmy Instances](https://github.com/maltfield/awesome-lemmy-instances) - Lemmy Instances
|
||||
* ⭐ **[Lemmy Apps](https://join-lemmy.org/apps)** - Lemmy Client List
|
||||
* ⭐ **[Divisions by zero](https://lemmy.dbzer0.com/)** - Piracy Focused Instance
|
||||
* [Quiblr](https://quiblr.com/) - Lemmy Instance Browser
|
||||
* [Fediverser](https://portal.alien.top/) - Reddit to Lemmy Community Auto-Sync
|
||||
* [LemmyTools](https://github.com/howdy-tsc/LemmyTools) - Lemmy Improvement Extension
|
||||
|
||||
|
@ -10,7 +10,7 @@
|
||||
* 🌐 **[PC-Optimization-Hub](https://github.com/BoringBoredom/PC-Optimization-Hub)** - System Optimization Resources
|
||||
* ↪️ **[Gaming Optimization](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/games#wiki_.25B7_optimization_tools)**
|
||||
* ⭐ **[PowerToys](https://learn.microsoft.com/en-us/windows/powertoys/)**, [Sysinternals](https://learn.microsoft.com/en-us/sysinternals/) / [Suite](https://apps.microsoft.com/store/detail/sysinternals-suite/9P7KNL5RWT25) or [JaxCore](https://jaxcore.app/) - System Tools
|
||||
* ⭐ **[CPU-Z](https://www.cpuid.com/softwares/cpu-z.html)**, [winfetch](https://github.com/lptstr/winfetch), [CPU Fetch](https://github.com/Dr-Noob/cpufetch) or [GPU-Z](https://www.techpowerup.com/download/techpowerup-gpu-z/) - System Information Tools
|
||||
* ⭐ **[CPU-Z](https://www.cpuid.com/softwares/cpu-z.html)**, [winfetch](https://github.com/lptstr/winfetch) or [GPU-Z](https://www.techpowerup.com/download/techpowerup-gpu-z/) - System Information Tools
|
||||
* ⭐ **[SuperF4](https://stefansundin.github.io/superf4/)** or [FKill](https://github.com/sindresorhus/fkill-cli) - Process Killers
|
||||
* ⭐ **[AutoHotkey](https://www.autohotkey.com/)** / [Discord](https://discord.com/invite/Aat7KHmG7v), [AutoIt](https://www.autoitscript.com/) / [Resources](https://github.com/J2TEAM/awesome-AutoIt), [Power Automate](https://learn.microsoft.com/en-us/power-automate/desktop-flows/install), [sikulix](http://sikulix.com/) or [ChoEazyCopy](https://github.com/Cinchoo/ChoEazyCopy) - Task Automation
|
||||
* ⭐ **AutoHotkey Tools** - [Script Gen](https://www.ahkgen.com/) / [Resources](https://github.com/ahkscript/awesome-AutoHotkey)
|
||||
@ -27,7 +27,7 @@
|
||||
* [OfflineInsiderEnroll](https://github.com/abbodi1406/offlineinsiderenroll) - Enable Windows Insider without Account
|
||||
* [Google Assistant Desktop Client](https://github.com/Melvin-Abraham/Google-Assistant-Unofficial-Desktop-Client) or [Leon](https://getleon.ai/) - AI Assistant
|
||||
* [Rhasspy](https://rhasspy.readthedocs.io/en/latest/) - Voice Assistant
|
||||
* [OpenRecall](https://github.com/openrecall/openrecall) or [Windrecorder](https://github.com/yuka-friends/Windrecorder/) - Memory Search App / System Recorders
|
||||
* [Windrecorder](https://github.com/yuka-friends/Windrecorder/) - Memory Search App / System Recorder
|
||||
* [Time.is](https://time.is/) - Check Accuracy of System Clock
|
||||
* [G-Helper](https://github.com/seerge/g-helper) - Lightweight Armoury Crate Alternative
|
||||
|
||||
@ -46,6 +46,7 @@
|
||||
* [GhostBuster](https://bitbucket.org/wvd-vegt/ghostbuster/src/master/) or [Device Cleanup Tool](https://www.majorgeeks.com/files/details/device_cleanup_tool.html) - Remove Non-Present Devices
|
||||
* [Win11Debloat](https://github.com/Raphire/Win11Debloat) - Debloater
|
||||
* [Should I Remove It?](https://www.shouldiremoveit.com/) - Program Removal Guide
|
||||
* [Adobe Debloater](https://github.com/FlickyOs/Adobe-Debloater) - Debloat Adobe Apps
|
||||
|
||||
***
|
||||
|
||||
@ -60,7 +61,6 @@
|
||||
* [abbodi1406](https://forums.mydigitallife.net/threads/abbodi1406s-batch-scripts-repo.74197/), [BatUtil](https://github.com/abbodi1406/BatUtil) or [TechNet-Gallery](https://github.com/MScholtes/TechNet-Gallery) - System Scripts
|
||||
* [Win10 Widgets](https://win10widgets.com/) or [Eww](https://github.com/elkowar/eww) - Widgets for Windows
|
||||
* [Wintoys](https://apps.microsoft.com/store/detail/wintoys/9P8LTPGCBZXD) - System App Tweaking
|
||||
* [Kando](https://github.com/kando-menu/kando) - App Launcher / Pie Menu / [Discord](https://discord.gg/hZwbVSDkhy)
|
||||
* [Hunt and Peck](https://github.com/zsims/hunt-and-peck/) or [Cerebro App](https://cerebroapp.com/) - Improved System Navigation
|
||||
* [SmartSystemMenu](https://github.com/AlexanderPro/SmartSystemMenu) - Improved System Menu
|
||||
* [EasyContextMenu](https://www.sordum.org/7615/easy-context-menu-v1-6/) or [Nilesoft Shell](https://nilesoft.org/) - Improved Context Menus
|
||||
@ -72,7 +72,6 @@
|
||||
* [Taskbar Hide](https://www.eusing.com/hidewindows/bosskey.htm) - Easily Hide / Show Taskbar
|
||||
* [minimize-to-tray](https://sourceforge.net/projects/minimize-to-tray/) - Minimize Windows to Tray
|
||||
* [QuickLook](https://github.com/QL-Win/QuickLook) - macOS Quick Look for Windows
|
||||
* [TopNotify](https://github.com/SamsidParty/TopNotify) - Move Windows Notifications
|
||||
* [BurntToast](https://github.com/Windos/BurntToast) - Create and display Toast Notifications
|
||||
* [WinMute](https://github.com/lx-s/WinMute/) - Automatically Mute PC
|
||||
|
||||
@ -183,16 +182,10 @@
|
||||
## ▷ Virtual Machines
|
||||
|
||||
* ↪️ **[Android Emulators](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/android#wiki_.25BA_android_emulators)**
|
||||
* ⭐ **[VirtualBox](https://www.virtualbox.org/)** - Virtual Machine / [Portable](https://www.vbox.me/)
|
||||
* ⭐ **[VirtualBox](https://www.virtualbox.org/)** / [Portable](https://www.vbox.me/), [Looking Glass](https://looking-glass.io/), [Qemu](https://gitlab.com/qemu-project/qemu), [Hyper-V](https://learn.microsoft.com/en-us/virtualization/hyper-v-on-windows/), [fvwm](https://www.fvwm.org/) or [Denodo Test](https://community.denodo.com/test-drives/) - Virtual Machines / [Preinstalled VMS](https://www.osboxes.org/)
|
||||
* ⭐ **[Virt-Manager](https://virt-manager.org/)** or [Vagrantup](https://www.vagrantup.com/) - Virtual Machine Managers
|
||||
* ⭐ **[Hackintosh](https://hackintosh.com/)**, [Emaculation](https://www.emaculation.com/), [felixrieseberg](https://github.com/felixrieseberg/macintosh.js/) or [OneClick-macOS](https://github.com/notAperson535/OneClick-macOS-Simple-KVM) - macOS Virtual Machines
|
||||
* ⭐ **Hackintosh Tools** - [Guide](https://www.tonymacx86.com/) / [AMD Guide](https://chefkissinc.github.io/guide) / [Ryzen](https://github.com/mikigal/ryzen-hackintosh) / [XiaoMi](https://github.com/daliansky/XiaoMi-Pro-Hackintosh)
|
||||
* [VMware Workstation](https://blogs.vmware.com/workstation/2024/05/vmware-workstation-pro-now-available-free-for-personal-use.html) - Virtual Machine / [Signup Required](https://pastebin.com/JMdjhLyt)
|
||||
* [Looking Glass](https://looking-glass.io/) - Virtual Machine
|
||||
* [Qemu](https://gitlab.com/qemu-project/qemu) - Virtual Machine
|
||||
* [Hyper-V](https://learn.microsoft.com/en-us/virtualization/hyper-v-on-windows/) - Virtual Machine
|
||||
* [Denodo Test](https://community.denodo.com/test-drives/) - Virtual Machine
|
||||
* [OSBoxes](https://www.osboxes.org/) - Preinstalled Virtual Machine
|
||||
* [CollabVM](https://computernewb.com/collab-vm/) - Online Virtual Machines
|
||||
* [Virtual PC](https://www.microsoft.com/en-us/download/details.aspx?id=3243) - Windows XP Virtual Machine
|
||||
* [windows95](https://github.com/felixrieseberg/windows95) - Windows 95 in Electron
|
||||
@ -207,13 +200,15 @@
|
||||
|
||||
# ► Hardware Tools
|
||||
|
||||
* ↪️ **[PC Building / Shopping](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/misc#wiki_.25B7_electronics)**
|
||||
* ↪️ **[PC Building / Shopping](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/misc#wiki_.25BA_shopping)**
|
||||
* ⭐ **[PCPartPicker](https://pcpartpicker.com/)** - Build Calculators
|
||||
* ⭐ **[PSU Calculator](https://www.newegg.com/tools/power-supply-calculator/)** or [Power Supply Calculator](https://outervision.com/power-supply-calculator) - Find Compatible Power Supplies
|
||||
* [DeviceTests](https://devicetests.com/) - Multiple Device Tests
|
||||
* [NotCPUCores](https://github.com/rcmaehl/NotCPUCores), [ParkControl](https://bitsum.com/parkcontrol/), [QuickCPU](https://coderbag.com/product/quickcpu) or [Process Lasso](https://bitsum.com/) - CPU Optimizer
|
||||
* [Ozone3D](https://www.ozone3d.net/index_softwares.php) - System Benchmarking
|
||||
* [Testmem5](https://www.overclock.net/threads/memory-testing-with-testmem5-tm5-with-custom-configs.1751608/) - Memory Benchmarking
|
||||
* [SDIO](https://glenn.delahoy.com/snappy-driver-installer-origin), [Drivers Collection](https://driverscollection.com/), [Driverscape](https://www.driverscape.com/) or [DriverStoreExplorer](https://github.com/lostindark/DriverStoreExplorer) - Update / Install Missing Drivers
|
||||
* [PrintFriendly](https://www.printfriendly.com/) - Printer Formatting Tools
|
||||
* [VOGONS](https://www.vogons.org/) - Vintage Computer Hardware Forum
|
||||
|
||||
***
|
||||
@ -313,7 +308,6 @@
|
||||
* ⭐ **[geekhack](https://geekhack.org/)** or [KeebTalk](https://www.keebtalk.com/) - Keyboard Forums
|
||||
* [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
|
||||
* [Raw Accel](https://github.com/a1xd/rawaccel) - Mouse Acceleration Tool
|
||||
* [The Fastest Mouse Clicker](https://gitlab.com/mashanovedad/The-Fastest-Mouse-Clicker-for-Windows), [Alpha Clicker](https://github.com/robiot/AlphaClicker) or [AutoClicker Bookmarklet](https://autoclicker.glitch.me/) - Mouse Auto Clicker
|
||||
* [StrokeIt](https://www.tcbmi.com/strokeit/) or [StrokesPlus](https://www.strokesplus.net/) - Mouse Gestures
|
||||
* [Espanso](https://espanso.org/) - Typing Shortcuts / [GitHub](https://github.com/espanso/espanso)
|
||||
@ -323,7 +317,6 @@
|
||||
* [WhatPulse](https://whatpulse.org/) - Mouse / Keyboard Usage Analyzer
|
||||
* [Kmonad](https://github.com/kmonad/kmonad) - Keyboard Manager
|
||||
* [Deskhop](https://github.com/hrvach/deskhop) - Quickly Switch Devices between Computers
|
||||
* [Switchy](https://github.com/erryox/Switchy) - Switch Keyboard Languages w/ Button
|
||||
* [Is this good?](https://wiki.keyboard.gay/) - Custom Keyboard Guides
|
||||
* [DreyMaR's](https://dreymar.colemak.org/) - Keyboard Tips and Resources
|
||||
* [Keyboard University](https://keyboard.university/) or [KDB](http://xahlee.info/kbd/keyboarding.html) - Mechanical Keyboard Building Guides
|
||||
@ -404,7 +397,6 @@
|
||||
* [MemTest](https://www.memtest.org/) - Memory Diagnostic Tool
|
||||
* [Windows Repair Toolbox](https://windows-repair-toolbox.com/) - Multi-Tool Repair App
|
||||
* [Medicat](https://medicatusb.com/) - Computer Diagnostic / Recovery Toolkit
|
||||
* [PhoenixPE](https://github.com/PhoenixPE/PhoenixPE) - Recovery Environment
|
||||
* [OpenBoardData](https://openboarddata.org/) - Board Repair Data
|
||||
* [Magic Trace](https://github.com/janestreet/magic-trace) - Diagnose Performance Issues using Intel Processor Trace
|
||||
* [Intel BIOS Guide](https://docs.google.com/document/d/1s43_3YGJIy3zs0ZIksoOmxgrDKnu4ZNhhnXW_NiJZ0I/edit) - Intel BIOS Settings Explanation
|
||||
@ -448,8 +440,7 @@
|
||||
## ▷ Custom Themes
|
||||
|
||||
* 🌐 **[Awesome Ricing](https://github.com/fosslife/awesome-ricing)** or [Windows-Ricing](https://github.com/winthemers/wiki) - Windows Ricing Resources
|
||||
* ⭐ **[Dracula](https://draculatheme.com/)** - Custom App Themes / [Discord](https://discord.com/invite/yDcFsrYuq9)
|
||||
* ⭐ **[Catppuccin](https://catppuccin.com/)** - Custom App Themes / [Discord](https://discord.gg/r6Mdz5dpFc)
|
||||
* ⭐ **[Dracula](https://draculatheme.com/)** / [Discord](https://discord.com/invite/yDcFsrYuq9), [Catppuccin](https://github.com/catppuccin) / [Discord](https://discord.gg/r6Mdz5dpFc), [Something Beautiful](https://rosepinetheme.com/) / [Discord](https://discord.gg/r6wf35KVJW), [Aura Theme](https://github.com/daltonmenezes/aura-theme), [Windhawk](https://windhawk.net/) or [theme.park](https://theme-park.dev/) - Custom App Themes
|
||||
* ⭐ **[terminal.sexy](https://terminal.sexy/)**, [TerminalSplash](https://terminalsplash.com/), [Solarized](https://ethanschoonover.com/solarized) or [WindowsTerminalThemes](https://windowsterminalthemes.dev/) - Terminal Themes
|
||||
* [Windows 10 Themes](https://github.com/niivu/Windows-10-themes), [Windows 11 Themes](https://github.com/niivu/Windows-11-themes) or [VSThemes](https://vsthemes.org/en/) - Custom Windows Themes
|
||||
* [Chloechantelle Guide](https://www.ricing.chloechantelle.com/) or [Heliohost Guide](https://ninjasr.heliohost.org/w/lb/windows) - Windows Customization Guides
|
||||
@ -463,12 +454,7 @@
|
||||
* [SimpleClassicTheme](https://simpleclassictheme.nl/) - Classic Windows Theme
|
||||
* [Winmoes](https://winmoes.com/) - Anime Windows Themes / Wallpapers
|
||||
* [Desktops](https://deskto.ps/) - OS Theme Examples
|
||||
* [Macdows11](https://redd.it/pd5ha6) or [Macified Windows](https://github.com/Runixe786/Macified-Windows) - Win 11 Mac Theme Guides
|
||||
* [Rosé Pine](https://rosepinetheme.com/) - Custom App Themes / [Discord](https://discord.gg/r6wf35KVJW)
|
||||
* [Aura Theme](https://github.com/daltonmenezes/aura-theme) - Custom App Themes
|
||||
* [Windhawk](https://windhawk.net/) - Custom App Themes
|
||||
* [theme.park](https://theme-park.dev/) - Custom App Themes
|
||||
* [Totally Awesome List](https://forum.spacehey.com/topic?id=94545) - Oldschool App Themes
|
||||
* [Macdows11](https://redd.it/pd5ha6) - Windows 11 Mac Theme Guide
|
||||
* [AccentColorizer](https://github.com/krlvm/AccentColorizer) - Custom Windows Accent Color
|
||||
* [MicaForEveryone](https://github.com/MicaForEveryone/MicaForEveryone) - System Backdrop Customization
|
||||
* [Traffic Monitor](https://github.com/zhongyang219/TrafficMonitor/) - Network & Hardware Monitor Themes
|
||||
@ -479,45 +465,40 @@
|
||||
|
||||
## ▷ Wallpapers
|
||||
|
||||
* ⭐ **[wallhaven](https://wallhaven.cc/)** / [Downloader](https://github.com/eramdam/WallbaseDirectDownloader)
|
||||
* ⭐ **[Wallpaper Abyss](https://wall.alphacoders.com/)**
|
||||
* ⭐ **[Wallpaper Engine](https://rentry.co/FMHYBase64#wallpaper-engine)** - Wallpaper Manager / [PKG to Zip](https://github.com/TheRioMiner/Wallpaper-Engine-Pkg-to-Zip) / [Collections](https://www.wallpaperengine.space/collections), [2](https://steamcommunity.com/sharedfiles/filedetails/?id=2801058904) / [Workshop DL](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_steam_workshop_downloaders)
|
||||
* ⭐ **[wallhaven](https://wallhaven.cc/)** / [Downloader](https://github.com/eramdam/WallbaseDirectDownloader) - Wallpapers
|
||||
* ⭐ **[Wallpaper Abyss](https://wall.alphacoders.com/)** - Wallpapers
|
||||
* ⭐ **[Studio Ghibli Wallpapers](https://www.ghibli.jp/info/013772)** or [Ghibli Upscaled](https://rentry.co/FMHYBase64#ghibli-upscaled)
|
||||
* ⭐ **[LWP](https://github.com/jszczerbinsky/lwp)** - Move Wallpapers with Cursor
|
||||
* [Faerber](https://farbenfroh.io/) - Edit Wallpaper to Match Color Scheme
|
||||
* [Scenic Illustrations](https://www.pixeltrue.com/scenic-illustrations) - Landscape Wallpapers
|
||||
* [CoolBackgrounds](https://coolbackgrounds.io/) or [wallup](https://wallup.net/) - Customizable Wallpapers
|
||||
* [Simple Desktops](https://simpledesktops.com/), [Positron Dream](https://www.positrondream.com/) or [SetAsWall](https://www.setaswall.com/) - Minimalistic Wallpapers
|
||||
* [/r/LivingBackgrounds](https://reddit.com/r/LivingBackgrounds), [WALLegend](https://wallegend.net/en/) or [MoeWalls](https://moewalls.com/) - Animated Wallpapers
|
||||
* [AutoWall](https://github.com/SegoCode/AutoWall) - Turn Videos / GIFs to Live Wallpapers
|
||||
* [Screencaps](https://screencaps.us/) or [shot.cafe](https://shot.cafe/) - Movie / TV Wallpapers
|
||||
* [Anime Pictures](https://anime-pictures.net/), [N0va](https://n0vadp.hoyoverse.com), [Anime_WallpapersHD](https://t.me/Anime_WallpapersHD/), [WallpaperWaifu](https://wallpaperwaifu.com/) or [MyLiveWallpapers](https://mylivewallpapers.com/) - Anime Wallpapers
|
||||
* [Dracula Wallpapers](https://draculatheme.com/wallpaper) - Dracula Wallpapers
|
||||
* [WallpaperHub](https://www.wallpaperhub.app/) or [Windows Wallpaper Pack](https://drive.google.com/drive/folders/1-80cROdVY-GSwu9fGnJJyglcERKyJ-gP) - Windows Wallpapers
|
||||
* [Mac Walls](https://goo.gl/photos/HjY1hmo6p3jfFz8a7), [2](https://photos.google.com/share/AF1QipNNQyeVrqxBdNmBkq9ILswizuj-RYJFNt5GlxJZ90Y6hx0okrVSLKSnmFFbX7j5Mg?key=RV8tSXVJVGdfS1RIQUI0Q3RZZVhlTmw0WmhFZ2V3) - Mac Wallpapers
|
||||
* [Wallpapers.com](https://wallpapers.com/)
|
||||
* [WallpaperSafari](https://wallpapersafari.com/)
|
||||
* [WallpapersDen](https://wallpapersden.com/)
|
||||
* [WallpaperCave](https://wallpapercave.com/)
|
||||
* [Wallpaper Tip](https://wallpapertip.com/)
|
||||
* [4KWallpapers](https://4kwallpapers.com/)
|
||||
* [WallsPic](https://wallspic.com/)
|
||||
* [WallpaperFlare](https://www.wallpaperflare.com/)
|
||||
* [HDQwalls](https://hdqwalls.com/)
|
||||
* [UHD Wallpaper](https://www.uhdpaper.com/) - Wallpapers
|
||||
* [WallpapersCraft](https://wallpaperscraft.com/)
|
||||
* [wallha](https://wallha.com/)
|
||||
* [G_Walls](https://t.me/G_Walls) - TG Wallpapers
|
||||
* [pengwyn](https://t.me/pengwyn) - TG Wallpapers
|
||||
|
||||
***
|
||||
|
||||
## ▷ Wallpaper Managers
|
||||
|
||||
* ⭐ **[Wallpaper Engine](https://rentry.co/FMHYBase64#wallpaper-engine)** - Wallpaper Manager / [PKG to Zip](https://github.com/TheRioMiner/Wallpaper-Engine-Pkg-to-Zip) / [Collections](https://www.wallpaperengine.space/collections), [2](https://steamcommunity.com/sharedfiles/filedetails/?id=2801058904) / [Workshop DL](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_steam_workshop_downloaders)
|
||||
* [Lively](https://www.rocksdanister.com/lively/) - Live Wallpaper Manager
|
||||
* [DualMonitorBackgrounds](https://www.dualmonitorbackgrounds.com/) or [WallpaperFusion](https://www.wallpaperfusion.com/) - Dual Monitor Wallpapers
|
||||
* [ScreenPlay](https://screen-play.app/) - Wallpaper Manager
|
||||
* [backiee](https://apps.microsoft.com/store/detail/backiee-wallpaper-studio-10/9WZDNCRFHZCD) - Wallpaper Manager
|
||||
* [Awesome Wallpaper](https://awesome-wallpaper.com/) - Wallpaper Manager
|
||||
* [SuperPaper](https://github.com/hhannine/superpaper) - Wallpaper Manager
|
||||
* [Faerber](https://farbenfroh.io/) - Edit Wallpaper to Match Color Scheme
|
||||
* [Background Switcher](https://johnsad.ventures/software/backgroundswitcher/) - Multi-Host Wallpaper Switcher
|
||||
* [AutoWall](https://github.com/SegoCode/AutoWall) - Turn Videos / GIFs to Live Wallpapers
|
||||
* [Scenic Illustrations](https://www.pixeltrue.com/scenic-illustrations) - Landscape Wallpapers
|
||||
* [CoolBackgrounds](https://coolbackgrounds.io/) or [wallup](https://wallup.net/) - Customizable Wallpapers
|
||||
* [Simple Desktops](https://simpledesktops.com/), [Positron Dream](https://www.positrondream.com/) or [SetAsWall](https://www.setaswall.com/) - Minimalistic Wallpapers
|
||||
* [/r/LivingBackgrounds](https://reddit.com/r/LivingBackgrounds), [Lively](https://www.rocksdanister.com/lively/), [WALLegend](https://wallegend.net/en/) or [MoeWalls](https://moewalls.com/) - Animated Wallpapers
|
||||
* [DualMonitorBackgrounds](https://www.dualmonitorbackgrounds.com/) or [WallpaperFusion](https://www.wallpaperfusion.com/) - Dual Monitor Wallpapers
|
||||
* [Screencaps](https://screencaps.us/) or [shot.cafe](https://shot.cafe/) - Movie / TV Wallpapers
|
||||
* [Xbox Wallpapers](https://www.xbox.com/en-us/wallpapers/) - Game Wallpapers
|
||||
* [Anime Pictures](https://anime-pictures.net/), [N0va](https://n0vadp.hoyoverse.com), [Anime_WallpapersHD](https://t.me/Anime_WallpapersHD/), [WallpaperWaifu](https://wallpaperwaifu.com/) or [MyLiveWallpapers](https://mylivewallpapers.com/) - Anime Wallpapers
|
||||
* [Dracula Wallpapers](https://draculatheme.com/wallpaper) - Dracula Wallpapers
|
||||
* [WallpaperHub](https://www.wallpaperhub.app/) - Windows Wallpapers
|
||||
* [Mac Walls](https://goo.gl/photos/HjY1hmo6p3jfFz8a7), [2](https://photos.google.com/share/AF1QipNNQyeVrqxBdNmBkq9ILswizuj-RYJFNt5GlxJZ90Y6hx0okrVSLKSnmFFbX7j5Mg?key=RV8tSXVJVGdfS1RIQUI0Q3RZZVhlTmw0WmhFZ2V3) - Mac Wallpapers
|
||||
* [Wallpapers.com](https://wallpapers.com/) - Wallpapers
|
||||
* [WallpaperSafari](https://wallpapersafari.com/) - Wallpapers
|
||||
* [WallpapersDen](https://wallpapersden.com/) - Wallpapers
|
||||
* [WallpaperCave](https://wallpapercave.com/) - Wallpapers
|
||||
* [Wallpaper Tip](https://wallpapertip.com/) - Wallpapers
|
||||
* [4KWallpapers](https://4kwallpapers.com/) - Wallpapers
|
||||
* [WallsPic](https://wallspic.com/) - Wallpapers
|
||||
* [WallpaperFlare](https://www.wallpaperflare.com/) - Wallpapers
|
||||
* [HDQwalls](https://hdqwalls.com/) - Wallpapers
|
||||
* [UHD Wallpaper](https://www.uhdpaper.com/) - Wallpapers
|
||||
* [WallpapersCraft](https://wallpaperscraft.com/) - Wallpapers
|
||||
* [wallha](https://wallha.com/) - Wallpapers
|
||||
* [G_Walls](https://t.me/G_Walls) - TG Wallpapers
|
||||
* [pengwyn](https://t.me/pengwyn) - TG Wallpapers
|
||||
|
@ -19,13 +19,14 @@
|
||||
* [WindowTextExtractor](https://github.com/AlexanderPro/WindowTextExtractor) - Extract Text From Any Window
|
||||
* [Textify](https://ramensoftware.com/textify) - Copy Text from Any Dialog
|
||||
* [BeefText](https://beeftext.org/) - Text Substitution Tool
|
||||
* [Scanner](https://simon-knuth.github.io/scanner/index) or [NAPS2](https://www.naps2.com/) - Scanner Apps / [Github](https://github.com/simon-knuth/scanner)
|
||||
* [Scanner](https://simon-knuth.github.io/scanner/index) or [NAPS2](https://www.naps2.com/) - Scanner Apps / [github](https://github.com/simon-knuth/scanner)
|
||||
* [Text to Handwriting](https://saurabhdaware.github.io/text-to-handwriting/), [texttohandwriting](https://texttohandwriting.com/) or [HandWrittner](https://handwrittner.com/?lang=en) - Text to Handwriting Converters
|
||||
* [StegCloak](https://stegcloak.surge.sh/) - Hide Messages in Text
|
||||
* [telescopictext](https://www.telescopictext.org/) - Write Text Within Text
|
||||
* [quipqiup](https://www.quipqiup.com/) or [dCode](https://www.dcode.fr/en) - Cryptogram Solvers
|
||||
* [DocuSeal](https://www.docuseal.co/) - Free Document Signing
|
||||
* [TemplateLab](https://templatelab.com/) - Free Document Templates
|
||||
* [Butterick’s Practical Typography](https://practicaltypography.com/) - Typography Guide Book
|
||||
|
||||
***
|
||||
|
||||
@ -72,9 +73,9 @@
|
||||
* ⭐ **[DeepLX](https://github.com/OwO-Network/DeepLX)** or [DeepL](https://www.deepl.com/translator)
|
||||
* ⭐ **[Google Translate](https://translate.google.com/)**
|
||||
* ⭐ **[/r/Translator](https://www.reddit.com/r/translator/)** - Translation Request Community
|
||||
* ⭐ **[Translate Web Pages](https://github.com/FilipePS/Traduzir-paginas-web)** - Browser Extension
|
||||
* [Translate Web Pages](https://github.com/FilipePS/Traduzir-paginas-web), [OpenAI Translator](https://github.com/yetone/openai-translator), [Simple Translate](https://simple-translate.sienori.com/), [Saladict](https://saladict.crimx.com/), [Linguist Translator](https://github.com/translate-tools/linguist), [S3Translator](https://www.s3blog.org/s3translator.html), [Firefox Translations](https://addons.mozilla.org/en-US/firefox/addon/firefox-translations/), [ImmersiveTranslate](https://immersivetranslate.com/en/), [Mate Translate](https://gikken.co/mate-translate) or [ImTranslator](https://imtranslator.net/) - Translation Extensions
|
||||
* [Crow Translate](https://crow-translate.github.io/) or [Argos](https://github.com/argosopentech/argos-translate) - Translation Apps
|
||||
* [Translate Shell](https://www.soimort.org/translate-shell/) - Translation CLI / [Github](https://github.com/soimort/translate-shell)
|
||||
* [Translate Shell](https://www.soimort.org/translate-shell/) - Translation CLI / [github](https://github.com/soimort/translate-shell)
|
||||
* [OnlineDocTranslator](https://www.onlinedoctranslator.com/en/) - Document Translator
|
||||
* [Matecat](https://www.matecat.com) - Online Translation Editor
|
||||
* [LingoJam](https://lingojam.com/) - Create Translator
|
||||
@ -84,15 +85,6 @@
|
||||
* [OmegaT](https://omegat.org/) - Translation Memory Tool
|
||||
* [Morsecode World](https://morsecode.world/) or [MorseDecoder](https://morsedecoder.com/) - Morse Code / Binary Translators
|
||||
* [Emojify](https://madelinemiller.dev/apps/emojify/) - Emojify Text
|
||||
* [OpenAI Translator](https://github.com/yetone/openai-translator) - Browser Extension
|
||||
* [Simple Translate](https://simple-translate.sienori.com/) - Browser Extension
|
||||
* [Saladict](https://saladict.crimx.com/) - Browser Extension
|
||||
* [Linguist Translator](https://github.com/translate-tools/linguist) - Browser Extension
|
||||
* [S3Translator](https://www.s3blog.org/s3translator.html) - Browser Extension
|
||||
* [Firefox Translations](https://addons.mozilla.org/en-US/firefox/addon/firefox-translations/) - Browser Extension
|
||||
* [ImmersiveTranslate](https://immersivetranslate.com/en/) - Browser Extension
|
||||
* [Mate Translate](https://gikken.co/mate-translate) - Browser Extension
|
||||
* [ImTranslator](https://imtranslator.net/) - Browser Extension
|
||||
* [Papago](https://papago.naver.com/)
|
||||
* [Libretranslate](https://libretranslate.com/) / [2](https://github.com/LibreTranslate/LibreTranslate)
|
||||
* [Translate.com](https://www.translate.com/)
|
||||
@ -117,13 +109,11 @@
|
||||
|
||||
* [mp4grep](https://github.com/o-oconnell/mp4grep)
|
||||
* [SpeechTexter](https://www.speechtexter.com/)
|
||||
* [Revoldiv](https://revoldiv.com/)
|
||||
* [Vibe](https://thewh1teagle.github.io/vibe/)
|
||||
* [SpeechNotes](https://speechnotes.co/)
|
||||
* [LilySpeech](https://lilyspeech.com/)
|
||||
* [VoiceToText](https://voicetotext.org/)
|
||||
* [TalkTyper](https://talktyper.com/)
|
||||
* [Turboscribe](https://turboscribe.ai/)
|
||||
* [Dictation](https://dictation.io/speech)
|
||||
* [VoiceNotebook](https://voicenotebook.com/)
|
||||
|
||||
@ -133,8 +123,8 @@
|
||||
|
||||
* ⭐ **[CyberChef](https://gchq.github.io/CyberChef/)** - Encode / Decode Text
|
||||
* ⭐ **[Base64 Decode](https://www.base64decode.org/) / [Encode](https://www.base64encode.org/)** / [Dynamic](https://apps.maximelafarie.com/base64/) / [Chrome](https://chromewebstore.google.com/detail/base64-encoderdecoder/afdannbjainhcddbjjlhamdgnojibeoi), [2](https://chromewebstore.google.com/detail/base64-decode-copy/llcfmnginbnmkeddkjjellcimmffjdcf), [3](https://chromewebstore.google.com/detail/clip64-base64-decoder/hdneaoibdfdmifgfjjlkbkceanhjmgch) / [Firefox](https://addons.mozilla.org/en-US/firefox/addon/base64-decoder/) / [Opera](https://addons.opera.com/en/extensions/details/base64-encode-and-decode/)
|
||||
* [Ciphey](https://github.com/Ciphey/Ciphey) - Automated Decryption Tool
|
||||
* [Universal Encoding Tool](https://unenc.com/) - Encode / Convert Text
|
||||
* [Ciphey](https://github.com/Ciphey/Ciphey) - Automated Decryption Tool
|
||||
* [cryptii](https://cryptii.com/), [DenCode](https://dencode.com/) - Text / URL Encoding
|
||||
* [Online Tools](https://emn178.github.io/online-tools/index.html) - Text / URL Encoding and Decoding
|
||||
* [URL Decode](https://url-decode.com/) / [Encode](https://url-decode.com/tool/url-encode) - URL Encoding / Decoding
|
||||
@ -157,13 +147,11 @@
|
||||
|
||||
* ⭐ **[QuillBot AI](https://quillbot.com/)** - Text Rephrasing
|
||||
* ⭐ **[paraphrasetool](https://paraphrasetool.com/)** or [Rephrasely](https://rephrasely.com/) - Text Rephrasing
|
||||
* ⭐ **[Goblin.tools](https://goblin.tools/)** - Text Rephrasing
|
||||
* [Paraphraser](https://www.paraphraser.io/) - Text Rephrasing
|
||||
* [Paraphrase-Online](https://paraphrase-online.com/) - Text Rephrasing
|
||||
* [paraphrasingtool](https://paraphrasingtool.ai/) - Text Rephrasing
|
||||
* [SMMRY](https://smmry.com/) - Text Summary
|
||||
* [henshu](https://www.henshu.ai/) - Text Rephrasing
|
||||
* [WriteFull](https://www.writefull.com/) - Text Rephrasing
|
||||
* [Recast](https://www.letsrecast.ai/) - Text Summary
|
||||
|
||||
***
|
||||
@ -220,68 +208,55 @@
|
||||
|
||||
# ► Text Editors / Notes
|
||||
|
||||
* 🌐 **[List of Text Editors](https://en.wikipedia.org/wiki/List_of_text_editors)** - Text Editor / Notepad Index
|
||||
* 🌐 **[List of Text Editors](https://en.wikipedia.org/wiki/List_of_text_editors)** - Text Editor / Notepad Indexes
|
||||
* ↪️ **[Code Editors / IDEs](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/dev-tools#wiki_.25B7_ides_.2F_code_editors)**
|
||||
* ⭐ **[Notepad++](https://notepad-plus-plus.org/)** / [Markdown](https://nea.github.io/MarkdownViewerPlusPlus/)
|
||||
* ⭐ **[Microsoft Office](https://gravesoft.dev/office_c2r_links)**, [Office Tool](https://github.com/YerongAI/Office-Tool), [Custom Office](https://gravesoft.dev/office_c2r_custom), [LibreOffice](https://www.libreoffice.org/) or [Calligra](https://calligra.org/) - Office Suites
|
||||
* ⭐ **Microsoft Office Tools** - [Guide](https://redd.it/1814gmp) / [Activation](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/system-tools#wiki_.25B7_windows_activation) / [Hot Keys](https://i.ibb.co/0m9t95b/ebacd47bf83b.png) / [File Search](https://sourceforge.net/projects/office-search/)
|
||||
* ⭐ **[Obsidian](https://obsidian.md/)**
|
||||
* ⭐ **Obsidian Tools** - [Resources](https://github.com/kmaasrud/awesome-obsidian) / [Share Notes](https://noteshare.space/) / [Live Sync](https://github.com/vrtmrz/obsidian-livesync) / [Backup](https://github.com/denolehov/obsidian-git) / [ChatGPT Addon](https://github.com/logancyang/obsidian-copilot), [2](https://github.com/vasilecampeanu/obsidian-weaver)
|
||||
* ⭐ **[Notion](https://www.notion.so/)**
|
||||
* ⭐ **Notion Tools** - [Themes](https://notionthemes.yudax.me/) / [Templates](https://notionpages.com/) / [Resources](https://www.notioneverything.com/notion-world), [2](https://chief-ease-8ab.notion.site/List-of-200-Notion-Resources-e1b46cd365094265bd47b8a2b25bb41e) / [Guide](https://easlo.notion.site/Notion-Beginner-to-Advanced-8a492960b049433289c4a8d362204d20) / [Markdown Extractor](https://github.com/souvikinator/notion-to-md)
|
||||
* ⭐ **Notion Tools** - [Themes](https://notionthemes.yudax.me/) / [Templates](https://notionpages.com/) / [Resources](https://www.notioneverything.com/notion-world), [2](https://chief-ease-8ab.notion.site/List-of-200-Notion-Resources-e1b46cd365094265bd47b8a2b25bb41e) / [Guide](https://easlo.notion.site/Notion-Beginner-to-Advanced-8a492960b049433289c4a8d362204d20)
|
||||
* ⭐ **[Notesnook](https://notesnook.com/)**
|
||||
* ⭐ **[AnyType](https://anytype.io/)**
|
||||
* ⭐ **[Logseq](https://logseq.com/)**
|
||||
* [Mochi Cards](https://mochi.cards/) or [Silicon](https://github.com/cu/silicon) - Note-Taking / Study Tools
|
||||
* [BookStack](https://www.bookstackapp.com/) or [Siyuan](https://github.com/siyuan-note/siyuan) - Self-Hosted Information Managers
|
||||
* [Desklamp](https://desklamp.io/) - Reading / Note Taking / Highlighting Tool / [Guide](https://app.desklamp.io/read?id=46b203c6-d8df-453d-b546-95a8fa7a44b9&mode=explore)
|
||||
* [Note Garden](https://notegarden.io/) - Auto Courses
|
||||
* [FromScratch](https://fromscratch.rocks/) - Note Taking
|
||||
* [Kompad](https://kompad.vercel.app/) - Note Taking
|
||||
* [Note Garden](https://notegarden.io/) - Note-Taking / Auto Courses
|
||||
* [benotes](https://benotes.org/) - Self-hosted Bookmarks and Note Taking
|
||||
* [Saber](https://saber.adil.hanney.org/) - Crossplatform Handwritten Notes
|
||||
* [Trilium](https://github.com/zadam/trilium) - Note Taking
|
||||
* [UseMemos](https://usememos.com/) - Note Taking / [discord](https://discord.gg/tfPJa4UmAv)
|
||||
* [Tiddly](https://tiddlywiki.com/) - Note Taking / [Desktop](https://github.com/tiddly-gittly/TidGi-Desktop)
|
||||
* [Joplin](https://joplinapp.org/) - Note Taking / [Firefox](https://addons.mozilla.org/en-US/firefox/addon/joplin-web-clipper/) / [Chrome](https://chromewebstore.google.com/detail/joplin-web-clipper/alofnhikmmkdbbbgpnglcpdollgjjfeken-GB)
|
||||
* [Simplenote](https://simplenote.com/) - Crossplatform Note Taking
|
||||
* [Butterfly](https://docs.butterfly.linwood.dev/) - Handwritten Notes / [Discord](https://discord.com/invite/97zFtYN) / [Github](https://github.com/LinwoodDev/Butterfly)
|
||||
* [Butterfly](https://docs.butterfly.linwood.dev/) - Handwritten Notes / [discord](https://discord.com/invite/97zFtYN) / [github](https://github.com/LinwoodDev/Butterfly)
|
||||
* [EncryptPad](https://evpo.net/encryptpad/) - Encrypted Text Editor
|
||||
* [NotebookLM](https://notebooklm.google/) or [Raven](https://www.ravenotes.com/) - AI Note Taking
|
||||
* [Xournal++](https://xournalpp.github.io/) - Handwritten Notes / [Github](https://github.com/xournalpp/xournalpp)
|
||||
* [NotebookLM](https://notebooklm.google/) - AI Notes App
|
||||
* [Xournal++](https://xournalpp.github.io/) / [github](https://github.com/xournalpp/xournalpp) - Handwritten Notes
|
||||
* [Notepads](https://www.notepadsapp.com/) - Text Editor
|
||||
* [Xed](https://github.com/linuxmint/xed) - GTK3 Text Editor
|
||||
* [Zim Wiki](https://zim-wiki.org/) - Wiki Text Editor
|
||||
* [Flotes](https://flotes.app/) - Markdown Note Taking
|
||||
* [tomboy-ng](https://github.com/tomboy-notes/tomboy-ng) - TomBoy Based Text Editor
|
||||
* [Helix](https://helix-editor.com/) - Kakuone/Neovim Based Text Editor
|
||||
* [cherrytree](https://www.giuspen.net/cherrytree/) - Hierarchical Note Taking
|
||||
* [UseMemos](https://usememos.com/) / [Discord](https://discord.gg/tfPJa4UmAv)
|
||||
* [Tiddly](https://tiddlywiki.com/) / [Desktop](https://github.com/tiddly-gittly/TidGi-Desktop)
|
||||
* [Joplin](https://joplinapp.org/) / [Firefox](https://addons.mozilla.org/en-US/firefox/addon/joplin-web-clipper/) / [Chrome](https://chromewebstore.google.com/detail/joplin-web-clipper/alofnhikmmkdbbbgpnglcpdollgjjfeken-GB)
|
||||
* [FromScratch](https://fromscratch.rocks/)
|
||||
* [Trilium](https://github.com/zadam/trilium)
|
||||
* [Kompad](https://kompad.vercel.app/)
|
||||
* [Helix](https://helix-editor.com/) - Kakuone/Neovim Based Text Editor / [github](https://github.com/helix-editor/helix)
|
||||
* [MicroPad](https://getmicropad.com/)
|
||||
* [WriteDown](https://writedown.app/)
|
||||
* [Standard Notes](https://standardnotes.com/)
|
||||
* [KeyNote NF](https://github.com/dpradov/keynote-nf)
|
||||
* [Notes](https://www.get-notes.com/)
|
||||
* [TinyList](https://tinylist.app/)
|
||||
* [SilentNotes](https://www.martinstoeckli.ch/silentnotes/)
|
||||
* [SilentNotes](https://www.martinstoeckli.ch/silentnotes/) / [github](https://github.com/martinstoeckli/SilentNotes)
|
||||
* [QOwnNotes](https://www.qownnotes.org/)
|
||||
* [FastNotes](https://fastedit.frozenassassine.de/)
|
||||
* [Google Keep](https://keep.google.com/)
|
||||
* [LockBook](https://github.com/lockbook/lockbook)
|
||||
|
||||
***
|
||||
|
||||
## ▷ Office Suites
|
||||
|
||||
* ⭐ **[LibreOffice](https://www.libreoffice.org/)** - FOSS Office Suite
|
||||
* ⭐ **[OnlyOffice](https://www.onlyoffice.com/)** - FOSS Office Suite
|
||||
* ⭐ **[Microsoft Office](https://gravesoft.dev/office_c2r_links)** - Office Suite
|
||||
* ⭐ **Microsoft Office Tools** - [Activation](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/system-tools#wiki_.25B7_windows_activation) / [Activation Guide](https://redd.it/1814gmp) / [Hot Keys](https://support.microsoft.com/en-us/office/keyboard-shortcuts-in-microsoft-365-e765366f-24fc-4054-870d-39b214f223fd), [2](https://i.ibb.co/0m9t95b/ebacd47bf83b.png)
|
||||
* [Custom Office](https://gravesoft.dev/office_c2r_custom) - FOSS Office Suite
|
||||
* [Calligra](https://calligra.org/) - FOSS Office Suite
|
||||
|
||||
***
|
||||
|
||||
## ▷ Online Editors
|
||||
|
||||
* ⭐ **[Proton Docs](https://proton.me/drive/docs)** - Local / Cloud Saves
|
||||
* ⭐ **[takenote](https://takenote.dev/)** - Local Saves
|
||||
* ⭐ **[Zen](https://zen.unit.ms/)** - Local Saves
|
||||
* [Browserpad](https://browserpad.org/) - Local Saves
|
||||
@ -297,11 +272,10 @@
|
||||
* [Write Box](https://write-box.appspot.com/) - Local / Cloud Saves
|
||||
* [NimbleText](https://nimbletext.com/Live) - Cloud Saves
|
||||
* [ZippyJot](https://www.zippyjot.com/) - Cloud Saves
|
||||
* [KiloDoc](https://www.kilodoc.com/) - Cloud Saves
|
||||
* [Edit-Document](https://edit-document.com/) - Local / Cloud Saves
|
||||
* [TextSlave](https://www.textslave.com/) - Cloud Saves
|
||||
* [GhostText](https://ghosttext.fregante.com/) - Cloud Saves
|
||||
* [AnyTextEditor](https://anytexteditor.com/) - Cloud Saves
|
||||
* [TextSlave](https://www.textslave.com/)
|
||||
* [GhostText](https://ghosttext.fregante.com/)
|
||||
* [AnyTextEditor](https://anytexteditor.com/)
|
||||
* [KiloDoc](https://www.kilodoc.com/), [Edit-Document](https://edit-document.com/) or [GroupDocs](https://products.groupdocs.app/viewer/total) - Online Document Editors
|
||||
|
||||
***
|
||||
|
||||
@ -365,7 +339,6 @@
|
||||
* [Baserow](https://gitlab.com/baserow/baserow), [Framacalc](https://framacalc.org/), [NocoDB](https://github.com/nocodb/nocodb) or [AirTable](https://airtable.com/) - Collaborative Spreadsheets
|
||||
* [Jamovi](https://www.jamovi.org/) - Statistical Spreadsheets
|
||||
* [Excel Macro Mastery](https://excelmacromastery.com/vba-articles/) - Excel VBA Guides
|
||||
* [ExcelJet](https://exceljet.net/formulas) or [Excel Functions](https://www.excelfunctions.net/) - Excel Formulas
|
||||
* [Vertex42](https://www.vertex42.com/) - Excel Templates
|
||||
* [Plain Text Table](https://plaintexttools.github.io/plain-text-table/) - Text Tables
|
||||
* [EditCSVOnline](https://www.editcsvonline.com/) - Online CSV Editor
|
||||
@ -379,26 +352,22 @@
|
||||
## ▷ Writing Tools
|
||||
|
||||
* ↪️ **[AI Text Generators](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/ai#wiki_.25BA_text_generators)**
|
||||
* ⭐ **[Writer](https://www.gibney.org/writer)**, [FocusWriter](https://gottcode.org/focuswriter/), [Writemonkey](https://writemonkey.com/), [blank.page](https://blank.page/), [Telegra.ph](https://telegra.ph/) or [WriteNext](https://www.writenext.io/) - Distraction-Free Writing
|
||||
* ⭐ **[Writer](https://www.gibney.org/writer)**, [FocusWriter](https://gottcode.org/focuswriter/), [Writemonkey](https://writemonkey.com/), [blank.page](https://blank.page/) or [WriteNext](https://www.writenext.io/) - Distraction-Free Writing
|
||||
* ⭐ **[Manuskript](https://www.theologeek.ch/manuskript/)** - Writing Organizer / Planner
|
||||
* ⭐ **[NovelWriter](https://novelwriter.io/)** or [Bibisco](https://bibisco.com/) - Novel Editors
|
||||
* ⭐ **[Linked](https://uselinked.com/)**, [journaltxt](https://journaltxt.github.io/), [Gekri](https://gekri.com/), [Microsoft Journal](https://www.microsoft.com/en-us/garage/profiles/journal/), [Diarium](https://diariumapp.com/), [Gemlog](https://gemlog.blue/) or [jrnl.sh](https://jrnl.sh/) - Journal Apps / [Songs](https://deardiary.ai/)
|
||||
* ⭐ **[ChaoticShiny](http://chaoticshiny.com/)**, [Seventh Sanctum](https://www.seventhsanctum.com/), [Notebook.ai](https://www.notebook.ai/) or [WorldAnvil](https://www.worldanvil.com/) - Fantasy Writing Generators
|
||||
* [Tuesday JS](https://kirill-live.itch.io/tuesday-js) - Visual Novel Editor / [GitHub](https://github.com/Kirilllive/tuesday-js)
|
||||
* [RenPy](https://www.renpy.org/) - Visual Novel Editor / [GitHub](https://github.com/renpy/renpy)
|
||||
* [Fortelling](https://www.fortelling.app/) - Novel Plotting & Editing Workspace
|
||||
* [Infinite Story](https://infinite-story.com/), [Strand](https://strand.jinay.dev/), [Agora](https://www.agorawriter.com/) or [WriteAlong](https://www.writealong.io/) - Collaborative Writing / Feedback
|
||||
* [Infinite Story](https://infinite-story.com/), [Agora](https://www.agorawriter.com/) or [WriteAlong](https://www.writealong.io/) - Collaborative Writing / Feedback
|
||||
* [LanguageIsAVirus](https://www.languageisavirus.com/) - Writing Prompts
|
||||
* [Storylines](https://github.com/morning4coffe-dev/storylines) - Chapter Based Story Writing
|
||||
* [Twinery](https://twinery.org/) - Interactive Non-Linear Story Creator
|
||||
* [TextUSM](https://textusm.com/) - User Story Map Generator / [GitHub](https://github.com/harehare/textusm)
|
||||
* [Fortelling](https://www.fortelling.app/) - Novel Plotting & Editing Workspace
|
||||
* [Blackout Poetry](https://blackoutpoetry.glitch.me/) - Blackout Poetry Creator
|
||||
* [Idyll](https://idyll-lang.org/editor) - Create Interactive Essays / [Github](https://github.com/idyll-lang/idyll)
|
||||
* [Idyll](https://idyll-lang.org/editor) - Create Interactive Essays / [github](https://github.com/idyll-lang/idyll)
|
||||
* [Papyrus Author](https://www.papyrusauthor.com/) - Creative Writing Suite
|
||||
* [STARC](https://starc.app/) - Screen Writing Tool
|
||||
* [Unsell](https://www.unsell.design/) - Portfolio / Magazine Templates
|
||||
* [Rarebit](https://rarebit.neocities.org/) - Webcomics Template
|
||||
* [watchout4snakes](http://watchout4snakes.com/) - Generate Random Sentences, Phrases, Words etc.
|
||||
* [Glossary Generator](https://www.jamesmurdo.com/glossary_generator.html) - Generate Glossaries
|
||||
* [Fantasy Name Generators](https://www.fantasynamegenerators.com/) - Fantasy Name Generators
|
||||
* [PolyGlot](https://draquet.github.io/PolyGlot/) or [VulgarLang](https://www.vulgarlang.com/) - Spoken Language Construction Tools
|
||||
@ -411,7 +380,7 @@
|
||||
## ▷ To Do Lists
|
||||
|
||||
* ⭐ **[Goblin.tools](https://goblin.tools/)** - Automatic Task Breakdown and more
|
||||
* ⭐ **[TickTick](https://www.ticktick.com/)** / [Premium](https://rentry.co/FMHYBase64#tiktik)
|
||||
* ⭐ **[TickTick](https://www.ticktick.com/)**
|
||||
* [Columns](https://columns.app/) or [ChecklistGenerator](https://checklistgenerator.co/) - Checklists
|
||||
* [Wonder](https://wonder-bot.com/) - Remember Things Easily
|
||||
* [YearCompass](https://yearcompass.com/) - New Years Resolution Booklet
|
||||
|
@ -6,18 +6,19 @@
|
||||
|
||||
# ► Torrent Sites
|
||||
|
||||
**Warning** - It's best to avoid sites that allow anyone to make accounts when getting both software and games. Avoid users in the [Unsafe](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/unsafe-sites/) or [Untrusted](https://rentry.org/pgames#untrusted-uploaders) lists.
|
||||
**Warning** - It's best to avoid sites that allow anyone to upload without consequences when getting both software and games. Avoid users in the [Unsafe](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/unsafe-sites/) or [Untrusted](https://rentry.org/pgames#untrusted-uploaders) lists.
|
||||
|
||||
***
|
||||
|
||||
* ⭐ **[RuTracker](https://rutracker.org/)**, [2](https://rutracker.nl/), [3](https://rutracker.net/) - Video / Audio / Games / Software / Android / Comics / Magazines
|
||||
* ⭐ **RuTracker Tools** - [Addon](https://addons.mozilla.org/en-US/firefox/addon/rutracker_torrent_search/) / [Wiki](http://rutracker.wiki/) / [Rules](https://rutracker.org/forum/viewtopic.php?t=1045) / [Translator](https://github.com/FilipePS/Traduzir-paginas-web#install)
|
||||
* ⭐ **[TorrentGalaxy](https://torrentgalaxy.to/)** - Video / Audio / NSFW / [.onion](http://galaxy3yrfbwlwo72q3v2wlyjinqr2vejgpkxb22ll5pcpuaxlnqjiid.onion)
|
||||
* ⭐ **[m0nkrus](https://w14.monkrus.ws/)** - Adobe Software Archive / [Search Engine](https://monkrus.dvuzu.com/) / [Block Adobe](https://github.com/ignaciocastro/a-dove-is-dumb), [2](https://rentry.co/psnfoandhostblock)
|
||||
* ⭐ **[m0nkrus](https://w14.monkrus.ws/)** - Adobe Software Archive / [Search Engine](https://dvuzu.github.io/monkrus-search) / [How-to](https://rentry.co/adobesoftware) / [Block Adobe](https://rentry.co/psnfoandhostblock), [2](https://a.dove.isdumb.one/127.txt)
|
||||
* ⭐ **[Torrent CSE](https://cse.google.com/cse?cx=006516753008110874046:0led5tukccj)** / [CSE 2](https://cse.google.com/cse?cx=006516753008110874046:kh3piqxus6n) - Multi Site Search
|
||||
* [1337x](https://1337x.to/) - Video / Audio / NSFW
|
||||
* 1337x Tools - [Mirrors](https://1337x-status.org/), [2](https://1337x.to/about) / [User Ranks](https://i.ibb.co/WfNhvtB/ebc2def26433.png) / [Telegram Bot](https://t.me/search_content_bot), [2](https://github.com/xbIm/1337x-torrent-telegram-bot) / [IMDb Ratings](https://github.com/kotylo/1337imdb) / [Proxy](https://redd.it/tz7nyx), [2](https://pastebin.com/3n5K0QrP) [.onion](http://l337xdarkkaqfwzntnfk5bmoaroivtl6xsbatabvlb52umg6v3ch44yd.onion/) / [Magnets](https://greasyfork.org/en/scripts/373230) / [Timezone Fix](https://greasyfork.org/en/scripts/421635)
|
||||
* [1337x](https://1337x.to/) - Video / Audio / NSFW / [Avoid Software](https://pastebin.com/8AaMuz5u)
|
||||
* 1337x Tools - [Mirrors](https://1337x-status.org/), [2](https://1337x.to/about) / [User Ranks](https://i.ibb.co/WfNhvtB/ebc2def26433.png) / [Discord Bot](https://github.com/brandongallagher1999/1337x-Bot) / [Telegram Bot](https://t.me/search_content_bot), [2](https://github.com/xbIm/1337x-torrent-telegram-bot) / [IMDb Ratings](https://github.com/kotylo/1337imdb) / [Proxy](https://redd.it/tz7nyx), [2](https://pastebin.com/3n5K0QrP) [.onion](http://l337xdarkkaqfwzntnfk5bmoaroivtl6xsbatabvlb52umg6v3ch44yd.onion/) / [Enhancements](https://greasyfork.org/en/scripts/33379) / [Magnets](https://greasyfork.org/en/scripts/373230) / [Subtitles](https://greasyfork.org/en/scripts/29467) / [Timezone Fix](https://greasyfork.org/en/scripts/421635)
|
||||
* [GloTorrents](https://glodls.to) - Video / Audio / Books / NSFW
|
||||
* [MagnetDL](https://www.magnetdl.com/), [2]( https://www.magnetdl.org/) - Video / Audio / Books / [Onion](http://r5cena7erxpnxomyvoybuxh6fkgs55qqdg7bobf6yjx4j6vmywrqvlid.onion/)
|
||||
* [LimeTorrents](https://www.limetorrents.lol/) - Video / Audio / Books
|
||||
* [IsoHunt](https://isohunts.to/) or [IsoHunt.nz](https://isohunt.nz/) - Video / Audio / Books
|
||||
* [ExT](https://ext.to/), [2](https://search.extto.com/) - Video / Audio / Books
|
||||
@ -43,17 +44,16 @@
|
||||
* ⭐ **[Knaben](https://knaben.eu/)**
|
||||
* ⭐ **[SolidTorrents](https://solidtorrents.to/)**, [2](https://solidtorrents.eu/)
|
||||
* ⭐ **[Torrentz2](https://torrentz2.nz/)**
|
||||
* [iDope](https://idope.se)
|
||||
* [Bitsearch](https://bitsearch.to/)
|
||||
* [Torrent Finder](https://torrent-finder.com/)
|
||||
* [TorrentDownload](https://www.torrentdownload.info/)
|
||||
* [TorrentQuest](https://torrentquest.com/)
|
||||
* [TorrentCORE](https://torrentcore.xyz/)
|
||||
* [DaMag](https://damag.net/)
|
||||
* [Cleanbay](https://cleanbay.netlify.app/)
|
||||
* [Torrends](https://torrends.to/)
|
||||
* [CloudTorrents](https://cloudtorrents.com/)
|
||||
* [BTMET](https://btmet.com/)
|
||||
* [Torrents-CSV](https://torrents-csv.com/)
|
||||
* [FileMood](https://filemood.com/)
|
||||
* [BT4G](https://bt4gprx.com/)
|
||||
* [Torlock](https://www.torlock.com/), [2](https://www.torlock2.com/)
|
||||
@ -132,7 +132,7 @@
|
||||
* 🌐 **[QBT Themes](https://github.com/qbittorrent/qBittorrent/wiki/List-of-known-qBittorrent-themes)** - Themes Index
|
||||
* [qBitMF](https://github.com/qBitMF/qBitMF) - Multi-Connection Tool
|
||||
* [VueTorrent](https://github.com/WDaan/VueTorrent) - Web Clients
|
||||
* [qBitController](https://github.com/Bartuzen/qBitController) - Mobile Controllers
|
||||
* [QBT Manager](https://github.com/Yash-Garg/qBittorrent-Manager) or [qBitController](https://github.com/Bartuzen/qBitController) - Mobile Controllers
|
||||
* [Docker QBT](https://github.com/linuxserver/docker-qbittorrent) or [QBT VPN](https://github.com/binhex/arch-qbittorrentvpn) - Docker Builds
|
||||
* [QBT Mega](https://colab.research.google.com/github/Xavy-13/qbittorrent/blob/main/qBittorrent_MEGA.ipynb) - Mega Upload Script
|
||||
* [QBT Gdrive](https://colab.research.google.com/github/Xavy-13/qbittorrent/blob/main/qBittorrent.ipynb) - Gdrive Upload Script
|
||||
|
@ -12,7 +12,7 @@
|
||||
* [VCSI](https://github.com/amietn/vcsi) - Create Video Contact Sheets / Thumbnails
|
||||
* [VMAF](https://github.com/Netflix/vmaf) - Video Quality Assessment
|
||||
* [Video Llava](https://replicate.com/nateraw/video-llava) - Video Description AI
|
||||
* [VideoSmaller](https://www.videosmaller.com/), [YouCompress](https://www.youcompress.com/), [Compress Video Online](https://compress-video-online.com/), [8mb.video](https://8mb.video/) or [MP4Compress](https://www.mp4compress.com/) - Video Compressors
|
||||
* [TinyVid](https://kamua.com/tinyvid), [VideoSmaller](https://www.videosmaller.com/), [YouCompress](https://www.youcompress.com/), [Compress Video Online](https://compress-video-online.com/), [8mb.video](https://8mb.video/) or [MP4Compress](https://www.mp4compress.com/) - Video Compressors
|
||||
* [videoduplicatefinder](https://github.com/0x90d/videoduplicatefinder) - Duplicate Video Finder
|
||||
* [SimSwap](https://github.com/neuralchen/SimSwap) or [Roop](https://github.com/s0md3v/roop) - Video Face Swap Tools
|
||||
* [ImgBurn](https://www.majorgeeks.com/files/details/imgburn.html), [DVDStyler](https://www.dvdstyler.org/en/), [DeepBurner](https://www.deepburner.com/) or [Alcohol Soft](https://www.alcohol-soft.com/) - CD / DVD Burning
|
||||
@ -35,18 +35,11 @@
|
||||
* ⭐ **[DoodStream](https://doodstream.com/)** - 5GB / 60 Days / Account Required
|
||||
* ⭐ **[Litterbox](https://litterbox.catbox.moe/)** - 1GB / Temporary
|
||||
* ⭐ **[Catbox](https://catbox.moe/)** - 200MB / Forever
|
||||
* ⭐ **[Gofile](https://gofile.io/)** - Unlimited / 10 Days
|
||||
* ⭐ **[Send.cm](https://send.cm/)** - 100GB / 15 Days
|
||||
* ⭐ **[Pixeldrain](https://pixeldrain.com/)** - 20GB / 120 Days / [Discord](https://discord.gg/TWKGvYAFvX)
|
||||
* [VOE](https://voe.sx/) - Unlimited / 60 Days / 720p / Account Required
|
||||
* [MixDrop](https://mixdrop.ag/) - Unlimited / 60 Days / 720p / Account Required
|
||||
* [WolfStream](https://wolfstream.tv/) 30GB / 80 Days / Account Required
|
||||
* [FEX.NET](https://fex.net/) - 100GB / 7 Days
|
||||
* [Hexupload](https://www.hexupload.net/) or [AnonTransfer](https://anontransfer.com/) - 15GB / 30 Days
|
||||
* [Fastupload.io](https://fastupload.io/en) - 10GB / 30 Days (60 Days With Account)
|
||||
* [Vidoza](https://vidoza.net/) - 15GB / 15 Days / Account Required
|
||||
* [Streamtape](https://streamtape.com/) - 15GB / Account Required / [.to](https://streamtape.to/)
|
||||
* [Dubz](https://dubz.co/) - 200MB / Forever
|
||||
* [Streamable](https://streamable.com/) - 250MB / 2 Days (90 Days With Account)
|
||||
* [webmshare](https://webmshare.com/) - WebM & GIF Hosting / 20MB / Forever
|
||||
* [Videy](https://videy.co/) - MP4 only
|
||||
@ -77,18 +70,17 @@
|
||||
|
||||
* ⭐ **[HandBrake](https://handbrake.fr/)** - Video Encoding Software / [Guide](https://www.rapidseedbox.com/blog/guide-to-mastering-handbrake)
|
||||
* ⭐ **[FFmpeg](https://github.com/FFmpeg/FFmpeg)** or [Axiomui](https://axiomui.github.io/) - Tools to Process Multimedia
|
||||
* ⭐ **FFmpeg Tools** - [Autobuild](https://github.com/BtbN/FFmpeg-Builds), [2](https://github.com/m-ab-s/media-autobuild_suite) / [Guide](https://github.com/leandromoreira/ffmpeg-libav-tutorial), [2](https://ffmpeg.guide/) / [Cheat Sheet](https://gist.github.com/steven2358/ba153c642fe2bb1e47485962df07c730) / [Commands](https://alfg.dev/ffmpeg-commander/), [2](https://evanhahn.github.io/ffmpeg-buddy/) / [WebM Converter](https://argorar.github.io/WebMConverter/) / [Info Copy](https://github.com/4ndrs/PureMPV) / [Preview Filters](https://ffmpeg.lav.io/) / [AI Commands](https://github.com/gstrenge/llmpeg), [2](https://github.com/TejasQ/idli)
|
||||
* ⭐ **FFmpeg Tools** - [Autobuild](https://github.com/BtbN/FFmpeg-Builds), [2](https://github.com/m-ab-s/media-autobuild_suite) / [Guide](https://github.com/leandromoreira/ffmpeg-libav-tutorial), [2](https://ffmpeg.guide/) / [Cheat Sheet](https://gist.github.com/steven2358/ba153c642fe2bb1e47485962df07c730) / [Commands](https://alfg.dev/ffmpeg-commander/), [2](https://evanhahn.github.io/ffmpeg-buddy/) / [WebM Converter](https://argorar.github.io/WebMConverter/) / [Preview Filters](https://ffmpeg.lav.io/) / [AI Commands](https://github.com/gstrenge/llmpeg), [2](https://github.com/TejasQ/idli)
|
||||
* ⭐ **[MKVToolNix](https://mkvtoolnix.download/)** - MKV Editing Tools
|
||||
* ⭐ **[archived-things](https://sometimes-archives-things.github.io/archived-things/)**, [The Encoding Guide](https://encoding-guide.neocities.org/) or [Silentaperture](https://silentaperture.gitlab.io/mdbook-guide/) - Video Encoding Guides
|
||||
* ⭐ **[Disc Rip](https://nullish.cat/blog/disc-rip)** - Disc Ripping Guide / [Mirror](https://rentry.org/disc-rip)
|
||||
* ⭐ **[Basics to the Art of Remuxing](https://rentry.co/Remuxing)** - Learn how to Remux Videos
|
||||
* ⭐ **[Basics to the Art of Remuxing](https://rentry.co/Remuxing)** or [fs927](https://rentry.org/fs927) - Learn how to Remux Videos
|
||||
* [Swivel](https://www.newgrounds.com/wiki/creator-resources/flash-resources/swivel) - SWF to Video Converter
|
||||
* [DDVT](https://forum.doom9.org/showthread.php?t=183479) - Dolby Vision RPU Demuxing / Injecting / Editing
|
||||
* [MKV Muxing Batch GUI](https://github.com/yaser01/mkv-muxing-batch-gui) - Mux Videos
|
||||
* [XMedia Recode](https://www.xmedia-recode.de/en/) - Video Conversion
|
||||
* [staxrip](https://github.com/staxrip/staxrip/) - Video Encoding
|
||||
* [IFME](https://github.com/Anime4000/IFME) - Video Encoding
|
||||
* [Voukoder](https://www.voukoder.org/) - Video Encoding Plugin
|
||||
* [FastFlix](https://fastflix.org/) - Video Conversion / [GitHub](https://github.com/cdgriffith/FastFlix)
|
||||
* [NEAV1E](https://github.com/Alkl58/NotEnoughAV1Encodes), [Av1an](https://github.com/master-of-zen/Av1an) - AV1 Encoding
|
||||
* [Winnydows](https://winnydows.com/en/) - Video Conversion Software
|
||||
@ -105,6 +97,7 @@
|
||||
## ▷ Live Streaming
|
||||
|
||||
* 🌐 **[Awesome Streaming](https://github.com/juancarlospaco/awesome-streaming-tools)** or [StreamerFreebies](https://streamerfreebies.com/) - Live Streaming Resources
|
||||
* 🌐 **[Best VTuber](https://gist.github.com/emilianavt/cbf4d6de6f7fb01a42d4cce922795794)**, [VTResources](https://vtresources.carrd.co/) or [VTuber References](https://docs.google.com/spreadsheets/d/15UpI8GEqv22T45AD3L1EgcPB4l2Tvr64aDgLq7xZfMA/htmlview) - VTuber Tool Indexes
|
||||
* ⭐ **[OBS](https://obsproject.com/)** - Live Stream Manager
|
||||
* ⭐ **OBS Tools** - [Virtual Cam](https://obsproject.com/forum/resources/obs-virtualcam.949/) / [Tweaks](https://discord.gg/CTT) / [Effects](https://github.com/exeldro/obs-shaderfilter/) / [Keyboard Visualiser](https://github.com/ThoNohT/NohBoard) / [Background Remover](https://github.com/occ-ai/obs-backgroundremoval) / [Phone Controller](https://github.com/Kounex/obs_blade) / [WebRTC Server](https://github.com/GRVYDEV/Project-Lightspeed) / [Plugin Updater](https://ko-fi.com/s/0b5bd4536d)
|
||||
* [Stream Elements](https://streamelements.com/) - Streaming Service Manager
|
||||
@ -123,23 +116,12 @@
|
||||
* [ppInk](https://github.com/PubPub-zz/ppInk/), [glnk](https://github.com/geovens/gInk), [Annotate Screen](https://annotatescreen.com/) or [Live Draw](https://github.com/antfu/live-draw) - Screen Annotation
|
||||
* [Songify](https://songify.overcode.tv/) - Current Playing Song App
|
||||
* [StreamPi](https://stream-pi.com/) or [ODeck](https://github.com/willianrod/ODeck) - ElGato Streamdeck Alternatives
|
||||
* [real-url](https://github.com/wbt5/real-url) - Copy Live Stream URLs
|
||||
* [Chat-Downloader](https://github.com/xenova/chat-downloader) - Retrieve Chat Messages from Livestreams
|
||||
|
||||
***
|
||||
|
||||
## ▷ VTuber Tools
|
||||
|
||||
* 🌐 **[Runa's Archive](https://kekuwi.github.io/Runa-Archive)** - VTuber Resources
|
||||
* [Best VTuber](https://gist.github.com/emilianavt/cbf4d6de6f7fb01a42d4cce922795794) - VTuber Resources
|
||||
* [VTResources](https://vtresources.carrd.co/) - VTuber Resources
|
||||
* [VTuber Assets](https://discord.gg/acU3dFRtvC) - VTuber Resources
|
||||
* [VTuber Kit](https://kyuppin.itch.io/vtuber-kit) - VTuber App
|
||||
* [Inochi2D](https://inochi2d.com/) - VTuber App / [Discord](https://discord.com/invite/abnxwN6r9v)
|
||||
* [Vtube Studio](https://denchisoft.com/) - VTuber App
|
||||
* [VTuber Kit](https://kyuppin.itch.io/vtuber-kit), [Inochi2D](https://inochi2d.com/) / [Discord](https://discord.com/invite/abnxwN6r9v) or [Vtube Studio](https://denchisoft.com/) - VTuber Apps
|
||||
* [Kalidoface 3D](https://3d.kalidoface.com/), [VRoid](https://vroid.com/en/studio), [Animaze](https://www.animaze.us/) or [TransTube](https://girkovarpa.itch.io/transtube) - VTuber Characters
|
||||
* [avatarify-python](https://github.com/alievk/avatarify-python) or [veadotube](https://olmewe.itch.io/veadotube-mini) - Video Call Avatars
|
||||
* [VTuberized Logos](https://vtuber-style-logos.vercel.app/) - VTuber Style Logos
|
||||
* [real-url](https://github.com/wbt5/real-url) - Copy Live Stream URLs
|
||||
* [Chat-Downloader](https://github.com/xenova/chat-downloader) - Retrieve Chat Messages from Livestreams
|
||||
|
||||
***
|
||||
|
||||
@ -186,6 +168,7 @@
|
||||
* [Caracal Club](https://caracal.club/)
|
||||
* [CyTube](https://cytu.be/)
|
||||
* [VideoTogether](https://2gether.video/en-us/)
|
||||
* [PotatoLand](https://potato.land/)
|
||||
* [baked.live](https://baked.live/)
|
||||
* [Rave.io](https://rave.io/)
|
||||
* [twoseven](https://twoseven.xyz/)
|
||||
@ -252,7 +235,6 @@
|
||||
* [Chocolate](https://github.com/ChocolateApp/Chocolate) - Media Server
|
||||
* [SeaAnime](https://seanime.rahim.app/) - Anime Server
|
||||
* [Frames](https://github.com/Eleven-am/frames) - GDrive Server
|
||||
* [HTPC](https://r-htpc.github.io/wiki/) - Home Theater PC guides / [Subreddit](https://www.reddit.com/r/htpc/)
|
||||
* [MSX](https://msx.benzac.de/info/) - Web App
|
||||
* [ErsatzTV](https://ersatztv.org/) or [dizqueTV](https://github.com/vexorian/dizquetv) - Live Channel Media Servers
|
||||
* [YTDL-Sub](https://ytdl-sub.readthedocs.io/) - Add YouTube Channels to Media Servers
|
||||
@ -295,7 +277,6 @@
|
||||
|
||||
## ▷ Kodi Tools
|
||||
|
||||
* ⭐ **[Elementum](https://elementum.surge.sh/)** - Torrent Streaming / Trakt Sync
|
||||
* [EverythingKodi](https://rumble.com/c/EverythingKodi) - Kodi Addon Tutorials
|
||||
* [Kodi Builds Chart](https://kodiapps.com/builds-chart)
|
||||
* [r/Addons4Kodi](https://www.reddit.com/r/Addons4Kodi/) / [Tracker](https://kinkeadtech.com/best-kodi-streaming-addons/) / [Trending](https://kodiapps.com/addons-chart) - Kodi Addons
|
||||
@ -303,11 +284,7 @@
|
||||
* [quasar](https://quasar.surge.sh/) - Torrent Plugin
|
||||
* [IPTV Client](https://kodi.wiki/view/Add-on:PVR_IPTV_Simple_Client)
|
||||
* [Simkl](https://simkl.com/) - Media Tracker
|
||||
|
||||
|
||||
|
||||
It integrates with kodi to play movies from torrents. It is something like torrentio + stremio
|
||||
|
||||
* [Elementum](https://elementum.surge.sh/) - Trakt Sync
|
||||
* [mediaelch](https://github.com/komet/mediaelch) - Media Manager
|
||||
|
||||
***
|
||||
@ -318,8 +295,8 @@ It integrates with kodi to play movies from torrents. It is something like torre
|
||||
* ↪️ **[Twitch Video Downloaders](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/social-media#wiki_.25B7_twitch_downloaders)**
|
||||
* ⭐ **[Download Helper](https://www.downloadhelper.net/)**, [Cococut](https://cococut.net/), [FetchV](https://fetchv.net/) or [MPMux](https://mpmux.com/) - Extensions
|
||||
* ⭐ **[YT-DLP](https://github.com/yt-dlp/yt-dlp)** - Multi-Site / CLI / [Easy Installer](https://github.com/kazukikasama/youtube-dlp-gui-installer), [GUI](https://github.com/StefanLobbenmeier/youtube-dl-gui)
|
||||
* ⭐ **[cobalt](https://cobalt.tools/)** - Multi-Site / Online / [Instances](https://instances.hyper.lol/)
|
||||
* ⭐ **[9xbuddy](https://9xbuddy.com/)**, [2](https://9xbuddy.online/), [3](https://9xbuddy.in/) - Multi-Site / Online
|
||||
* ⭐ **[cobalt](https://cobalt.tools/)** - Multi-Site / Online
|
||||
* ⭐ **[9xbuddy](https://9xbuddy.com/)**, [2](https://9xbuddy.online/) or [3](https://9xbuddy.in/) - Multi-Site / Online
|
||||
* ⭐ **[Lux](https://github.com/iawia002/lux)** - Multi-Site / CLI
|
||||
* [VideoHelp Forum](https://forum.videohelp.com/) - All Things Media
|
||||
* [CD(R)M-Project](https://discord.gg/SYyvPxVyyW) - StreamFab Downloading Discord
|
||||
@ -395,7 +372,6 @@ It integrates with kodi to play movies from torrents. It is something like torre
|
||||
|
||||
## ▷ Online Editors
|
||||
|
||||
* ⭐ **[Pikimov](https://pikimov.com/)**
|
||||
* ⭐ **[Mastershot](https://mastershot.app/)**
|
||||
* [VideoInu](https://videoinu.com/)
|
||||
* [Clideo](https://clideo.com/)
|
||||
|
@ -8,49 +8,42 @@
|
||||
|
||||
## ▷ Multi Server
|
||||
|
||||
* ⭐ **[movie-web](https://erynith.github.io/movie-web-instances/)** - Movies / TV / Anime / 4K / 1080p / Ad-Free / [Docs](https://docs.sudo-flix.lol/) / [Add Sources](https://pastebin.com/RHXHtXJZ) / [Discord](https://discord.gg/EDYT5bjSvp)
|
||||
* ⭐ **[movie-web](https://erynith.github.io/movie-web-instances/)** - Movies / TV / Anime / 4K / 1080p / Ad-Free / [Docs](https://docs.sudo-flix.lol/) / [Add Sources](https://pastebin.com/VakYFMeC) / [Discord](https://discord.gg/EDYT5bjSvp)
|
||||
* ⭐ **[Braflix](https://www.braflix.ru/)** - Movies / TV / Anime / 4K / 1080p / [Discord](https://discord.com/invite/dexBcDVdEk)
|
||||
* ⭐ **[FMovies](https://fmovies24.to/)** - Movies / TV / Anime / 1080p / [Mirrors](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_fmovies_clones)
|
||||
* ⭐ **[Binged](https://binged.live/)**, [2](https://binge.lol/), [3](https://binged.in/) - Movies / TV / Anime / 4K / 1080p / [Discord](https://discord.gg/f2SvhcKCKS)
|
||||
* ⭐ **[FMovies](https://fmovies24.to/)** - Movies / TV / Anime / 1080p / [Mirrors](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_fmovies_clones)
|
||||
* ⭐ **[watch.lonelil](https://watch.lonelil.ru/)** - Movies / TV / Anime / 4K / 1080p / [Discord](https://discord.com/invite/BKts6Jb5sA) / [Telegram](https://t.me/watchlonelil)
|
||||
* ⭐ **[HydraHD](https://hydrahd.com/)** - Movies / TV / Anime / 1080p
|
||||
* ⭐ **[StreamFlix](https://watch.streamflix.one/)**, [2](https://watchamovie.today/), [3](https://streamflix.space/) - Movies / TV / Anime / 4K / 1080p / [Discord](https://discord.gg/C8fyfz5pYz)
|
||||
* ⭐ **[KipFlix](https://kipflix.space/)** - Movies / TV / Anime / 1080p / [Discord](https://discord.gg/tDKYeh9eQn)
|
||||
* ⭐ **[NunFlix](https://nunflix.com/)** - Movies / TV / Anime / 4K / 1080p / [Discord](https://discord.gg/CXVyfhgn26)
|
||||
* ⭐ **[VidPlay](https://vidplay.org/)** - Movies / TV / Anime / 1080p / [Note](https://pastebin.com/kXrVBceh)
|
||||
* ⭐ **[Rive](https://rivestream.live/)**, [2](https://rivestream.netlify.app/), [3](https://rivestream.xyz/), [4](https://cinemaos-v2.vercel.app/) - Movies / TV / Anime / 4K / 1080p / Ad-Free / [GitHub](https://github.com/Developabile/rive-next) / [Status](https://github.com/Developabile/rive-next/blob/dev/Domains.md) / [Discord](https://discord.gg/6xJmJja8fV)
|
||||
* ⭐ **[HydraHD](https://hydrahd.com/)** - Movies / TV / Anime / 1080p
|
||||
* ⭐ **[KipFlix](https://kipflix.vercel.app/)** - Movies / TV / Anime / 1080p / [Discord](https://discord.gg/tDKYeh9eQn)
|
||||
* ⭐ **[Watching Zone](https://www.watching.zone/)** - Movies / TV / Anime / 1080p
|
||||
* ⭐ **[StreamFlix](https://watch.streamflix.one/)**, [2](https://watchamovie.today/), [3](https://streamflix.space/) - Movies / TV / Anime / 4K / 1080p / [Discord](https://discord.gg/C8fyfz5pYz)
|
||||
* ⭐ **[SFlix](https://sflix.to/)** - Movies / TV / Anime / 1080p / [Mirrors](https://rentry.co/sflix)
|
||||
* ⭐ **[UpMovies](https://upmovies.net/)**, [2](https://flixwave.me/), [3](https://vumoo.mx/) - Movies / TV / Anime / 1080p / Use Adblock
|
||||
* ⭐ **[PrimeWire](https://www.primewire.tf/)** - Movies / TV / Anime / 1080p
|
||||
* [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
|
||||
* [WatchingZone](https://www.watching.zone/) - Movies / TV / Anime / 1080p
|
||||
* [Smashystream](https://smashystream.xyz/), [2](https://flix.smashystream.xyz/), [3](https://smashystream.com/) or [smashy.stream](https://smashy.stream/) (ad-free) - Movies / TV / Anime / 1080p
|
||||
* [Watch Autoembed](https://watch.autoembed.cc/) - Movies / TV / Anime / Drama / 1080p
|
||||
* [PrimeWire](https://www.primewire.tf/) - Movies / TV / Anime / 1080p
|
||||
* [Levidia](https://www.levidia.ch/), [2](https://supernova.to/), [3](https://www.goojara.to/) - Movies / TV / Anime / 1080p
|
||||
* [UpMovies](https://upmovies.net/), [2](https://flixwave.me/), [3](https://vumoo.mx/) - Movies / TV / Anime / 1080p / Use Adblock
|
||||
* [SFlix](https://sflix.to/) - Movies / TV / Anime / 1080p / [Mirrors](https://rentry.co/sflix)
|
||||
* [CinemaUnlocked](https://cinemaunlocked.com/) - Movies / TV / Anime / 1080p
|
||||
* [M4uFree](https://m4ufree.se/) - Movies / TV / Anime / 1080p / [Mirrors](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_m4ufree_clones)
|
||||
* [PlayFlix](https://playflix.ru/) - Movies / TV / Anime / 4K / 1080p
|
||||
* [CriaFlix](https://criaflix.live/) - Movies / TV / Anime / 1080p / [Discord](https://discord.com/z72kQpKRUP)
|
||||
* [123MoviesFree](https://ww2.123moviesfree.net/) - Movies / TV / Anime / 1080p
|
||||
* [Way2Movies](https://way2movies.vercel.app/) - Movies / TV / Anime / 4K
|
||||
* [WatchNest](https://watchnest.site/), [2](https://watchnest.top/), [3](https://watchnest.xyz/) - Movies / TV / Anime / 4K / 1080p / [Discord](https://discord.gg/n2sjPKcZ)
|
||||
* [Cinema Deck](https://cinemadeck.com/) - Movies / TV / Anime / 4K / 1080p / Ad-Free / [Discord](https://l.cinemadeck.com/discord)
|
||||
* [Yesmovies.pm](https://yesmovies.pm/) - Movies / TV / Anime / 1080p
|
||||
* [TVids](https://www.tvids.net/), [2](https://watch-tvseries.net/) - Movies / TV / Anime / 1080p
|
||||
* [Nova](https://novastream.top/) - Movies / TV / 1080p / [Github](https://github.com/ambr0sial/nova/)
|
||||
* [HollyMovieHD](https://hollymoviehd.cc/), [2](https://yeshd.net/), [3](https://novamovie.net/) - Movies / TV / Anime / 1080p / [Mirrors](https://hollymoviehd-official.com/)
|
||||
* [ProjectFreeTV](https://projectfreetv.sx/) - Movies / TV / 1080p
|
||||
* [Youplex](https://youplex.site/) - Movies / TV / Anime / 4K / 1080p / Ad-Free / [Telegram](https://t.me/youplexannouncments) / [Discord](https://discord.com/invite/5eWu9Vz6tQ)
|
||||
* [Rive](https://rivestream.vercel.app/), [2](https://rivestream.xyz/) - Movies / TV / Anime / 4K / 1080p / Ad-Free / [GitHub](https://github.com/Developabile/rive-next)
|
||||
* [HollyMovieHD](https://hollymoviehd.cc/), [YesHD](https://yeshd.net/) or [NovaMovie](https://novamovie.net/) - Movies / TV / Anime / 1080p / [Mirrors](https://hollymoviehd-official.com/)
|
||||
* [VidPlay](https://vidplay.org/) - Movies / TV / Anime / 1080p / Ad-Free / [Note](https://pastebin.com/kXrVBceh)
|
||||
* [YassFlix](https://yassflix.live/) - Movies / TV / Anime / 1080p / Ad-Free
|
||||
* [Seez](https://seez.su/), [2](https://watchwave-v2.vercel.app/watch) - Movies / TV / 1080p / [Discord](https://discord.com/invite/v5mSB8gvcm)
|
||||
* [RgShows](https://rgshows.vercel.app/) - Movies / TV / Anime / 4K / 1080p / [Discord](https://discord.com/invite/bosskingdom-comeback-1090560322760347649)
|
||||
* [PlayFlix](https://playflix.ru/) - Movies / TV / Anime / 4K / 1080p
|
||||
* [Seez](https://seez.su/) or [WatchWave](https://watchwave-v2.vercel.app/watch) - Movies / TV / 1080p / [Discord](https://discord.com/invite/v5mSB8gvcm)
|
||||
* [Movierr](https://movierr.online/) - Movies / TV / Anime / [Discord](https://discord.gg/sxKN424ZYK)
|
||||
* [EuroPixHD](https://europixhd.pro/) - Movies / TV / Anime / 1080p
|
||||
* [EMovies](https://emovies.si/) - Movies / TV / Anime / 1080p
|
||||
* [Downloads-Anymovies](https://www.downloads-anymovies.co/) - Movies / 1080p
|
||||
* [123MoviesFree](https://ww2.123moviesfree.net/) - Movies / TV / Anime / 1080p
|
||||
* [Yesmovies.pm](https://yesmovies.pm/) - Movies / TV / Anime / 1080p
|
||||
* [Cinema Deck](https://cinemadeck.com/) - Movies / TV / Anime / 4K / 1080p / Ad-Free / [Discord](https://l.cinemadeck.com/discord)
|
||||
* [TVids](https://www.tvids.net/) or [Watch-TvSeries](https://watch-tvseries.net/) - Movies / TV / Anime / 1080p
|
||||
* [Nova](https://novastream.top/) - Movies / TV / 1080p / [Github](https://github.com/ambr0sial/nova/)
|
||||
* [Levidia](https://www.levidia.ch/), [Supernova](https://supernova.to/) or [Goojara](https://www.goojara.to/) - Movies / TV / Anime / 1080p
|
||||
* [MoviesLair](https://movielair.cc/) - Movies / TV / 720p / [Discord](https://discord.gg/ZvRTYqTWtZ)
|
||||
* [uFlix](https://uflix.cc/) - Movies / TV / Anime / 720p
|
||||
* [nKiri](https://nkiri.cc/), [2](https://soapertv.cc/), [3](https://popcorntimeonline.cc/) - Movies / TV / 1080p / Ad-Free
|
||||
* [VidSrc](https://rentry.org/vidsrc) - VidSrc Hosting Sites
|
||||
* [AutoEmbed](https://autoembed.cc/), [2](https://autoembed.cc/anime/), [3](https://autoembed.cc/drama/) - Movies / TV / Anime / Drama / 1080p / API / [Discord](https://discord.com/invite/yGNnERKxh8) / [Telegram](https://t.me/auto_embed)
|
||||
* [GoMo](https://gomo.to/) - Movies / TV / Anime / API / 1080p
|
||||
* [SuperEmbed](https://www.superembed.stream/) - Movies / TV / API / 1080p
|
||||
* [2embed](https://www.2embed.cc/) - Movies / TV / API / 1080p
|
||||
@ -58,6 +51,7 @@
|
||||
* [VidSrc.me](https://vidsrc.me/) - Movies / TV / Anime / API / 1080p
|
||||
* [VidSrc.pro](https://vidsrc.pro/) - Movies / TV / Anime / API / 4K / 1080p
|
||||
* [SmashyStream API](https://embed.smashystream.com/) - Movies / TV / Anime / API / 1080p
|
||||
* [VidDroid](https://github.com/callisto-jovy/Viddroid) - Streaming App
|
||||
* [mov-cli](https://mov-cli.github.io/) - Streaming / Downloading CLI / [GitHub](https://github.com/mov-cli/mov-cli) / [Plugins](https://github.com/topics/mov-cli-plugin)
|
||||
* [TG-FileStreamBot](https://github.com/EverythingSuckz/TG-FileStreamBot) - Telegram File Streaming
|
||||
* [IMDb Scout](https://greasyfork.org/en/scripts/407284-imdb-scout-mod) - Add Stream Search Buttons to IMDb
|
||||
@ -66,21 +60,21 @@
|
||||
|
||||
## ▷ Single Server
|
||||
|
||||
* ⭐ **[EE3](https://ee3.me/)**, [2](https://rips.cc/) - Movies / 1080p / Invite Code: fmhy / Sign-Up Required
|
||||
* ⭐ **[EE3](https://ee3.me/)** or [RIPS](https://rips.cc/) - Movies / 1080p / Invite Code: fmhy / Sign-Up Required
|
||||
* ⭐ **[SusFlix](https://susflix.tv/)**, [2](https://www.susmovies.lol/), [3](https://sushbo.com/), [4](https://hbosus.com) - Movies / TV / Anime / 4K / 1080p / Ad-Free / Sign-Up Required / [Discord](https://discord.gg/BE7kTVezBN)
|
||||
* ⭐ **[NEPU](https://nepu.to/)** - Movies / TV / Anime / 1080p / [Discord](https://discord.gg/nepu)
|
||||
* ⭐ **[BFlix](https://w1.nites.is/)** - Movies / TV / 1080p
|
||||
* ⭐ **[BFlix](https://w1.nites.is/)** or [Lookmovie.plus](https://lookmovie.plus/) - Movies / TV / 1080p
|
||||
* ⭐ **[PressPlay](https://www.pressplay.top/)** - Movies / TV / 1080p / [Discord](https://discord.gg/r4QrghF4B9)
|
||||
* ⭐ **[YesMovies](https://yesmovies.ag/)**, [2](https://ww4.solarmovie.to/), [3](https://ww5.0123movie.net/), [4](https://ww1.putlocker.vip/) - Movies / TV / 1080p
|
||||
* ⭐ **[LookMovie](https://lookmovie2.to/)** - Movies / TV / 720p / [Mirrors](https://proxymirrorlookmovie.github.io/)
|
||||
* [Tubi](https://tubitv.com) - Movies / TV / 720p / Use Adblock / [Downloader](https://github.com/warren-bank/node-hls-downloader-tubitv) / US Only
|
||||
* [Cinewave](https://discord.gg/ZrnqNtnbPy) - Movies / TV / Anime / 1080p / Jellyfin Required
|
||||
* [Gir Society](https://discord.gg/WHxeZ3aTtb) - Movies / TV / Anime / 1080p / Plex Required
|
||||
* [OnionPlay](https://onionplay.se/) - Movies / TV / 1080p / [Mirrors](https://onionplay.network/)
|
||||
* [FshareTV](https://fsharetv.co/) - Movies / 1080p
|
||||
* [FossaTV](https://fossa.tv/), [2](https://tv.cross.moe/) - Movies / TV / 1080p
|
||||
* [FossaTV](https://fossa.tv/) or [CrossTV](https://tv.cross.moe/) - Movies / TV / 1080p
|
||||
* [Catflix](https://catflix.su/) - Movies / TV / 1080p / Ad-Free
|
||||
* [RidoMovies](https://ridomovies.tv/) - Movies / 1080p
|
||||
* [Ling.online](https://ling-online.net/en/videos/films/) - Movies / TV / 1080p
|
||||
* [UniqueStream](https://uniquestream.net/) - Movies / TV / 1080p
|
||||
* [English Movies](https://m.vk.com/english_movies) - Movies / 1080p
|
||||
* [StreamLord](http://www.streamlord.com/) - Movies / TV / 1080p
|
||||
@ -90,6 +84,7 @@
|
||||
* [GotyTV](https://gotytv.com/) - Movies / TV / 1080p / Requires Signup
|
||||
* [PopcornFlix](https://www.popcornflix.com/) - Movies / TV / 1080p
|
||||
* [Crackle](https://www.crackle.com/) - Movies / TV / 1080p / US Only
|
||||
* [Tubi](https://tubitv.com) - Movies / TV / 720p / Use Adblock / [Downloader](https://github.com/warren-bank/node-hls-downloader-tubitv) / US Only
|
||||
* [Freevee](https://www.amazon.com/gp/video/storefront/ref=atv_hm_hom_c_9zZ8D2_1_3?contentType=home&contentId=freetv) - Movies / TV / 1080p / US Only
|
||||
* [Roku](https://therokuchannel.roku.com/) - Movies / TV / 1080p / US Only
|
||||
* [Vudu](https://www.vudu.com/content/movies/uxpage/View-All-Free-Movies-TV/207) - Movies / TV / 1080p / US Only
|
||||
@ -117,34 +112,31 @@
|
||||
|
||||
## ▷ Anime Streaming
|
||||
|
||||
* 🌐 **[Wotaku](https://wotaku.moe/websites)** - Anime Streaming Index/ [Discord](https://discord.gg/vShRGx8ZBC)
|
||||
* 🌐 **[Wotaku](https://wotaku.moe/websites)** - Anime Streaming Index
|
||||
* 🌐 **[The Index](https://theindex.moe/library/anime)** - Anime Streaming Index / [Discord](https://discord.gg/Snackbox) / [Wiki](https://thewiki.moe/)
|
||||
* 🌐 **[EverythingMoe](https://everythingmoe.com/)** - Anime Streaming Index / [Discord](https://discord.gg/GuueaDgKdS)
|
||||
* ⭐ **[AniWave](https://aniwave.to/)** or [Anix](https://anix.to/), [2](https://animesuge.to/), [3](https://gogoanimex.to/home), [4](https://zoroxtv.to/) - Sub / Dub / 1080p / [Lite](https://lite.aniwave.to)
|
||||
* ⭐ **[HiAnime](https://hianime.to/)**, [2](https://4anime.gg/), [3](https://kaido.to/), [4](https://9animetv.to/), [5](https://anicrush.to/), [6](https://aniwatchtv.to/) - Sub / Dub / 1080p / [Auto-Focus](https://greasyfork.org/en/scripts/464019) / [Discord](https://discord.gg/hianime)
|
||||
* ⭐ **[AnimePahe](https://animepahe.ru/)** - Sub / 1080p / [Downloader](https://github.com/KevCui/animepahe-dl)
|
||||
* ⭐ **[KickAssAnime](https://kickassanime.mx/)** - Sub / Dub / 1080p / [Mirrors](https://watchanime.io/) / [Discord](https://discord.gg/qduzrvTG6p)
|
||||
* ⭐ **[Animetsu](https://animetsu.cc/)** - Sub / Dub / 1080p / [Discord](https://discord.com/invite/f2SvhcKCKS)
|
||||
* ⭐ **[AllManga](https://allmanga.to/)** - Sub / Dub / 1080p / [Discord](https://discord.gg/YbuYYUwhpP)
|
||||
* ⭐ **[GoGoAnime](https://gogoanime3.co/)**, [2](https://anitaku.to/), [3](https://daftanime.com/) - Sub / Dub / 1080p
|
||||
* ⭐ **[Animeflix](https://animeflix.gg/)**, [2](https://animeflix.li/) - Sub / Dub / 1080p / [Mirrors](https://animeflix.domains/)
|
||||
* ⭐ **[AllManga](https://allmanga.to/)** - Sub / Dub / 1080p / [](https://discord.gg/YbuYYUwhpP)
|
||||
* ⭐ **[GoGoAnime](https://gogoanime3.co/)**, [2](https://anitaku.to/) - Sub / Dub / 1080p
|
||||
* ⭐ **GoGoAnime Tools** - [Mirrors](https://gogotaku.info/) / [Download Script](https://greasyfork.org/en/scripts/465970) / [DL Guide](https://rentry.org/gogodlscript) / [Discord](https://discord.gg/kyVfcGuCCQ)
|
||||
* ⭐ **[Layendimator](https://github.com/Layendan/Layendanimator)**, [Akuse](https://github.com/akuse-app/Akuse), [Anikin](https://github.com/jerry08/Anikin), [Unyo](https://github.com/K3vinb5/Unyo) or [Miru Project](https://miru.js.org/en/) - Desktop Streaming Apps
|
||||
* ⭐ **[Layendimator](https://github.com/Layendan/Layendanimator)**, [Akuse](https://github.com/akuse-app/Akuse), [Anikin](https://github.com/jerry08/Anikin) or [Miru](https://miru.js.org/en/) - Desktop Streaming Apps
|
||||
* ⭐ **[Japanese Animated Film Classics](https://animation.filmarchives.jp/index.html)** - Japanese Animated Film Archive
|
||||
* ⭐ **[Anime Streaming CSE](https://cse.google.com/cse?cx=006516753008110874046:vzcl7wcfhei)** / [CSE 2](https://cse.google.com/cse?cx=006516753008110874046:mrfarx7-dxu) or [Kuroiru](https://kuroiru.co/) - Multi-Site Anime Search
|
||||
* [RiveKun](https://rivekun.rivestream.live/), [2](https://rivekun.pages.dev) - Sub / Dub / 1080p / Ad-Free / [GitHub](https://github.com/Developabile/rive-anime) / [Status](https://github.com/Developabile/rive-anime/blob/dev/Domains.md) / [Discord](https://discord.gg/6xJmJja8fV)
|
||||
* [AnimeCross](https://anime.cross.moe/) - Sub / 1080p / [Discord](https://discord.com/invite/3AxZvGArdm)
|
||||
* [AnimeHub](https://animehub.ac/) - Sub / Dub / 1080p
|
||||
* [Animixplay](https://animixplay.tube), [2](https://animixplay.name/), [3](https://animixplay.fun/) - Sub / Dub / 1080p
|
||||
* [AnimeOwl](https://animeowl.live/) - Sub / Dub / 1080p / [Discord](https://discord.com/invite/xHYcvdMvZ2)
|
||||
* [123Anime](https://123animes.ru/) - Sub / Dub / 1080p
|
||||
* [Ryuk](https://ryuk.to/) - Sub / Dub / 1080p
|
||||
* [Miruro](https://www.miruro.com/) - Sub / Dub / 1080p / [Discord](https://discord.gg/miruro)
|
||||
* [Anipulse](https://www.anipulse.to/) - Sub / Dub / 1080p / [Discord](https://discord.gg/KKuCUgSHVs)
|
||||
* [Kaguya](https://kaguya.app/) - Sub / 1080p / [Discord](https://discord.gg/382BEFfER6)
|
||||
* [Genoanime](https://genoanime.com/) - Sub / Dub / 1080p / [Discord](https://discord.com/invite/TMe9eVs2YY)
|
||||
* [AnimeHeaven](https://animeheaven.me/) - Sub / 1080p / [Discord](https://discord.com/invite/QmgSMYD)
|
||||
* [AnimeNana](https://animenana.com/) - Sub / 1080p
|
||||
* [AnimeZ](https://animez.org/) - Sub / 1080p
|
||||
* [Animension](https://animension.to/) - Sub / Dub / 1080p
|
||||
* [Animegg](https://www.animegg.org/) - Sub / Dub / 1080p
|
||||
* [YugenAnime](https://yugenanime.tv/) - Sub / Dub / 1080p / [Discord](https://discord.gg/MQqwQREyCz)
|
||||
@ -153,7 +145,6 @@
|
||||
* [KissAnime](https://kissanime.com.ru/) - Sub / Dub / 1080p / [Discord](https://discord.com/invite/w5ghWQG8uM) / [Mirrors](https://kissanime.help/)
|
||||
* [Animetake](https://animetake.tv/) - Sub / 1080p
|
||||
* [AnimeFox](https://animefox.in/) - Sub / Dub / 1080p
|
||||
* [Shinigamii](https://www.shinigamii.pw/) - Sub / 1080p
|
||||
* [Vanime](https://v.hopmarks.com/home) - Sub / Dub / 1080p
|
||||
* [BestDubbedAnime](https://bestdubbedanime.com/) - Dub / 1080p / [Discord](https://discord.com/invite/f2pHvauUPu)
|
||||
* [DubbedAnime](https://dubbedanime.biz/) - Sub / Dub / 1080p
|
||||
@ -178,6 +169,7 @@
|
||||
|
||||
## ▷ Cartoon Streaming
|
||||
|
||||
* ⭐ **[KimCartoon](https://kimcartoon.li/)** - 720p / [Discord](https://discord.com/invite/Zs67BcB6tm)
|
||||
* ⭐ **[WCO](https://www.wco.tv/)**, [2](https://www.wcofun.net/), [3](https://www.wcostream.tv/) - Anime / Cartoons / 720p / [Downloader](https://github.com/NobilityDeviant/Wcofun.com_Downloader)
|
||||
* [Kimcartoon.si](https://kimcartoon.si/) - Anime / Cartoons
|
||||
* [TopCartoons](https://www.topcartoons.tv/) - 720p
|
||||
@ -227,7 +219,6 @@
|
||||
* [LokLok](https://loklok.com/) - TV / Movies
|
||||
* [KissKH](https://kisskh.co/) - TV
|
||||
* [onedrama](https://onedrama.me/) - TV / Movies
|
||||
* [DramaFull](https://dramafull.net/) - TV / Movies
|
||||
* [Viki](https://www.viki.com/) - TV / Movies
|
||||
* [KDramaHood](https://kdramahood.com/home2/) - TV / Movies
|
||||
* [MyAsianTV](https://myasiantv.ac/) - TV / Movies
|
||||
@ -264,7 +255,7 @@
|
||||
* [Zero1Cine](https://zero1cine.com/) - AI Generated Films
|
||||
* [The Library of Congress](https://www.loc.gov/film-and-videos/) - Movies / Short Films
|
||||
* [USNationalArchives](https://www.youtube.com/@USNationalArchives) - Movies / Short Films
|
||||
* [Viddsee](https://www.viddsee.com/), [Shortverse](https://www.shortverse.com/explore), [MAFF](https://www.maff.tv/), [Short of the Week](https://www.shortoftheweek.com/), [Argo](https://web.watchargo.com/), [Shortly](https://watch.shortly.film/) or [Audpop](https://audpop.com/) - Short Films
|
||||
* [Viddsee](https://www.viddsee.com/), [MAFF](https://www.maff.tv/), [Short of the Week](https://www.shortoftheweek.com/), [Argo](https://web.watchargo.com/), [Shortly](https://watch.shortly.film/) or [Audpop](https://audpop.com/) - Short Films
|
||||
* [HuntleyArchives](https://www.huntleyarchives.com/) - Rare / Forgotten Short Films
|
||||
* [0xDB](https://0xdb.org/) - Rare Movies / [How-to](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/find-rare-movies#wiki_method_2_-_streaming)
|
||||
* [FootageFarm](https://footagefarm.com/) - Public Domain Films
|
||||
@ -275,7 +266,6 @@
|
||||
* [National Film Archive of Japan](https://meiji.filmarchives.jp/) - Japanese Film Archive
|
||||
* [TexasArchive](https://texasarchive.org/) - Texas Film Archive
|
||||
* [Chicago Film Archives](https://www.chicagofilmarchives.org/) - Chicago Film Archive
|
||||
* [MrWorldPremiere](https://mrworldpremiere.wf/) - Black Media Archive
|
||||
* [Eastern European Movies](https://easterneuropeanmovies.com/) - Eastern European Film Archive
|
||||
* [BFIPlayer](https://player.bfi.org.uk/free) or [BFI National Archive](https://www.bfi.org.uk/bfi-national-archive) - British Film Archive / UK VPN Required
|
||||
* [British Pathé](https://www.britishpathe.com/) - British Video Archive
|
||||
@ -284,9 +274,9 @@
|
||||
* [NFSA](https://www.nfsa.gov.au/) - Australian Film Archive
|
||||
* [NGA Taonga](https://www.ngataonga.org.nz/search-use-collection/search/) or [NZOnScreen](https://www.nzonscreen.com/) - New Zealand Video Archive
|
||||
* [NLS](https://www.nls.uk/), [2](https://movingimage.nls.uk/) - Scottish Film Archive
|
||||
* [Northern Ireland Screen](https://digitalfilmarchive.net/) or [IFI Archive](https://ifiarchiveplayer.ie/) - Irish Film Archives
|
||||
* [Northern Ireland Screen](https://digitalfilmarchive.net/) - Irish Film Archive
|
||||
* [Cinematheque](https://www.cinematheque.fr/henri/english/) - Rare French Film Archive
|
||||
* [Stiftung imai](https://stiftung-imai.de/), [Digitaler Lesesaal](https://digitaler-lesesaal.bundesarchiv.de/en) or [Film Portal](https://www.filmportal.de/en/videos) - German Video Archives
|
||||
* [Stiftung imai](https://stiftung-imai.de/) or [Film Portal](https://www.filmportal.de/en/videos) - German Video Archives
|
||||
* [35mm](https://35mm.online/en) - Polish Film Archive
|
||||
* [FilmPolski](https://filmpolski.pl/fp/index.php) - Polish Video Archive
|
||||
* [Danish Silent Film](https://www.stumfilm.dk/en/stumfilm) - Silent Danish Film Archive
|
||||
@ -364,18 +354,16 @@
|
||||
* ⭐ **[TOTV](http://totv.org/channels)** - TV / Sports
|
||||
* ⭐ **[watch.lonelil](https://watch.lonelil.ru/tv)** - TV / Sports / [Schedule](https://watch.lonelil.ru/schedule)
|
||||
* ⭐ **[DaddyLive](https://dlhd.sx/)** or [miztv](https://miztv.shop/), [2](https://miztv.ru/) - TV / Sport / [Discord](https://discord.gg/SgbjFVn6th)
|
||||
* [Braflix](https://www.braflix.ru/livestream/) - TV / Sports
|
||||
* [Braflix](https://www.braflix.ru/) - TV / Sports
|
||||
* [SusFlix](https://susflix.tv/) - TV / Sports / [Discord](https://discord.gg/BE7kTVezBN)
|
||||
* [Xumo Play](https://play.xumo.com/networks) - TV / US only
|
||||
* [Pluto](https://pluto.tv/live-tv), [2](https://app-lgwebos.pluto.tv/live-tv) - TV / Sports / US Only
|
||||
* [Time4TV](https://time4tv.online/) - TV / Sports
|
||||
* [time4tv.top](https://time4tv.top/) - TV / Sports
|
||||
* [NowMeTV](https://nowmaxtv.com/channel/english/) - TV
|
||||
* [LiveHDTV](https://www.livehdtv.com/) - TV
|
||||
* [CXtv](https://www.cxtvlive.com/) - TV / Sports
|
||||
* [TV247](https://tv247.us/) - TV / Sports
|
||||
* [TvFlix](https://tvflix.netlify.app/) - TV / Sports
|
||||
* [24LiveTV](https://24livetv.us/), [2](https://usatvgo.live/) - TV / Sports
|
||||
* [FreeInterTV](http://www.freeintertv.com/) - TV / Sports
|
||||
* [huhu.to](http://huhu.to/) or [oha.to](http://oha.to/) - TV / Sports
|
||||
* [vipotv](https://vipotv.com/) - TV / Sports
|
||||
@ -405,15 +393,15 @@
|
||||
* ⭐ **[FreeSports](https://freesports.to/)** or [TheHomeSport](https://thehomesport.com/) - Sports
|
||||
* ⭐ **[Sports Plus](https://en12.sportplus.live/)** - Sports
|
||||
* ⭐ **[VIP Box Sports](https://www.viprow.nu/)**, [2](https://vipleague.im/), [3](https://www.vipleague.la/), [4](https://www.vipbox.lc/) - Sports / [More Links](https://rentry.org/894dq2c9)
|
||||
* ⭐ **[Flowstreams](https://flowstreams.pw/)** - Sports / Live Events / [Discord](https://discord.gg/streams)
|
||||
* ⭐ **[SportsHub](https://sportshub.stream/)**, [2](https://reddit10.sportshub.stream/) - Sports
|
||||
* ⭐ **[TotalSportek](https://totalsportek.pro/)**, [2](https://www.totalsportek.to/) - Sports
|
||||
* ⭐ **[OlympicStreams](https://olympicstreams.co/)** - Sports
|
||||
* ⭐ **[Lord Latifi Streams](https://latifistreams.com/)** - Motorsports / Soccer / [Discord](https://discord.gg/6vr9CW7ZFa)
|
||||
* [Flowstreams](https://flowstreams.pw/) - Sports / [Discord](https://discord.gg/streams)
|
||||
* [Sportsurge.club](https://sportsurge.club/) - Sports
|
||||
* [StreamEast](https://www.thestreameast.to/v8/) - Sports
|
||||
* [1Stream](https://1stream.eu/) - Sports
|
||||
* [WeakSpell](https://weakspell.to/) - Sports
|
||||
* [AJ Sports](https://ajsportstv.ch/) - Sports
|
||||
* [First Row Sports](https://firstsrowsports.tv/) - Sports
|
||||
* [FSL](https://freestreams-live.my/) - Sports / [Discord](https://discord.gg/eXXJzDPchU)
|
||||
* [KobeStreams](http://watchkobestreams.info/) - Sports / [Discord](https://discord.com/invite/SEmFE8bdtR)
|
||||
@ -434,26 +422,23 @@
|
||||
* [p2pstreams](https://p2pstreams.live/) - Sports
|
||||
* [StrikeOut](https://strikeout.im/) - Sports
|
||||
* [Strims](https://strims.in/) - Sports
|
||||
* [uSport](https://usport.pro/) - Sports
|
||||
* [HesGoal](https://www.hesgoal.watch/) - Sports
|
||||
* [Sport-TV](https://sport-tv.live/) - Sports
|
||||
* [DudeStream](https://www.dudestream.com/) - Sports
|
||||
* [CricHD](https://crichdplayer.com/) - Sports
|
||||
* [CricHD.tv](https://v4.crichd.tv/) - Sports
|
||||
* [CricHD.stream](https://www.crichd.stream/) - Sports
|
||||
* [Rojadirecta](http://www.rojadirecta.eu/) - Sports / [Forum](http://forum.rojadirecta.es/)
|
||||
* [NFLBite](https://nflbite.tv/) - Football
|
||||
* [MLB66](https://mlb66.ir/) - Baseball
|
||||
* [MLBshows](https://mlbshow.com/) - Baseball
|
||||
* [BoxingStreams100](https://fight.boxingstreams100.com/) - Boxing
|
||||
* [Boxing Stream](https://boxingstream.ai/) - Boxing
|
||||
* [BoxingStreamLinks](https://boxingstreamlinks.com/) - Boxing
|
||||
* [MMA Streams](https://tonight.mmastreams.cc/) - MMA
|
||||
* [MMAStreamLinks](https://red3.mmastreamlinks.com/) - MMA
|
||||
* [LaCasadelTikiTaka](https://www.lacasadeltikitaka.net/) - Soccer / MMA
|
||||
* [SoccerOnline](https://socceronline.me/) - Soccer
|
||||
* [55Goal](https://55goal.com/) - Soccer
|
||||
* [Football](https://socceronline.me/) - Soccer
|
||||
* [StarPlay](https://3rd-delta.vercel.app/) - Soccer / Cricket
|
||||
* [Mazespin](https://mazespin.live/) - Motorsports / Soccer / Cycling
|
||||
* [NFLBite](https://nflbite.tv/) - Football
|
||||
* [MLB66](https://mlb66.ir/) - Baseball
|
||||
* [MLBshows](https://mlbshow.com/) - Baseball
|
||||
* [Aceztrims](https://aceztrims.pages.dev/) - Motorsports
|
||||
* [MotoGP](https://motogpstream.me/) - Motorsports
|
||||
* [DD12](https://dd12streams.com/) - Motorsports / [Discord](https://discord.com/invite/TTFE8Jfz7G)
|
||||
@ -461,7 +446,6 @@
|
||||
* [Formula 1 Streams](https://reddit.formula1stream.cc/) - Motorsports
|
||||
* [NHLstream](https://nhlstream.net/) - Hockey
|
||||
* [NHL66](https://nhl66.ir/) - Hockey
|
||||
* [OnHockey](http://onhockey.tv/) - Hockey
|
||||
* [NHLbite](https://nhlbite.com/) - Hockey
|
||||
* [/r/rugbystreams](https://www.reddit.com/r/rugbystreams/) - Rugby
|
||||
* [F1 Dashcam](https://f1-dash.com/) - F1 Live Stats
|
||||
@ -472,7 +456,6 @@
|
||||
## ▷ Sports Replays
|
||||
|
||||
* ⭐ **[720Pier](https://720pier.ru/)** - Sports Replays / Torrents / 1080p
|
||||
* ⭐ **[FullReplays](https://www.fullreplays.com/)** - Soccer Replays
|
||||
* ⭐ **[Basketball Video](https://basketball-video.com/)** - Basketball Replays / 1080p
|
||||
* ⭐ **[Fishker NFL](https://fishkernfl.com/)** - Football Replays / 720p
|
||||
* ⭐ **[Watch-Wrestling.eu](https://watch-wrestling.eu/)** - MMA / Wrestling Replays / 1080p
|
||||
@ -481,12 +464,11 @@
|
||||
* ⭐ **[Nascar Classics](https://classics.nascar.com/)** - Nascar Replays / 1080p
|
||||
* [SportsReplay](https://linktr.ee/suisports) - Sports Replays / [Basketball](https://watchreplay.net/) / [Motorsports](https://watchf1full.com/) / [MMA / Wrestling](https://watchmmafull.com/) / [Discord](https://discord.com/invite/2r4pj67gCv)
|
||||
* [MLBLive](https://mlblive.net/) - Baseball Replays
|
||||
* [FullReplays](https://www.fullreplays.com/) - Soccer Replays
|
||||
* [FootballOrigin](https://www.footballorgin.com/) - Soccer Replays
|
||||
* [123footy](https://123footy.com/) - Soccer Replays
|
||||
* [Footballia](https://footballia.net/), [2](https://footballia.eu/) - Soccer Replays
|
||||
* [Footyfull](https://footyfull.com/) - Soccer Replays
|
||||
* [/r/footballhighlights/](https://www.reddit.com/r/footballhighlights/) - Soccer Replays
|
||||
* [Full Match](https://fullmatch.info/) - Soccer Replays / Avoid Fake Download Buttons
|
||||
* [Sport Video](https://www.sport-video.org.ua/) - Sports Replays / Torrents
|
||||
* [WatchWrestling.ae](https://watchwrestling.ae/) - MMA / Wrestling Replays
|
||||
* [WatchWrestling.wtf](https://watchwrestling.wtf/) - MMA / Wrestling Replays
|
||||
@ -500,6 +482,7 @@
|
||||
* [AllTheBestFights](https://www.allthebestfights.com/) - MMA / Boxing / Kickboxing Replays
|
||||
* [TNA / Impact Replays](https://www.youtube.com/playlist?list=PLSadBNbijyoGV44wd96Fda7-GDYh9UktC) - TNA / Impact Wrestling Replays
|
||||
* [/r/MotorsportsReplays](https://reddit.com/r/MotorsportsReplays) - Motorsports Replays
|
||||
* [Lord Latifi Streams](https://latifistreams.com/) - Motorsports Replays / [Discord](https://discord.gg/6vr9CW7ZFa)
|
||||
* [FullMatchSports](https://fullmatchsports.cc/) - Motorsports Replays
|
||||
* [F1 Full Races](https://f1fullraces.com/) - Motorsports Replays
|
||||
* [Rugby24](https://rugby24.net/) - Rugby Replays
|
||||
@ -530,7 +513,7 @@
|
||||
* ⭐ **[PSARips](https://psa.wf/)** - Movies / TV / 4K
|
||||
* ⭐ **[OlaMovies](https://olamovies.rent/)** - Movies / TV / 4K / 1080p / [Telegram](https://t.me/olamovies_officialv6)
|
||||
* ⭐ **[LightDLMovies](https://lightdl.xyz/)**, [2](https://lightdlmovies.blogspot.com/) - Movies / TV / 1080p
|
||||
* ⭐ **[VegaMovies](https://vegamovies.nz/)** - Movies / TV / Anime / 1080p / 4K / [Telegram](https://telegram.dog/VegamoviesTo_Official)
|
||||
* ⭐ **[VegaMovies](https://vegamovies.ist/)** - Movies / TV / Anime / 1080p / 4K / [Telegram](https://telegram.dog/VegamoviesTo_Official)
|
||||
* ⭐ **[MovieParadise](https://movieparadise.org/)** - Movies / TV / 1080p / [Get Code](https://pastebin.com/5jTpFCCP) / Code unlocks faster file host (1fichier)
|
||||
* ⭐ **[Braflix](https://www.braflix.ru/)** - Movies / TV / Anime / 4K / 1080p / Account Required
|
||||
* ⭐ **[Drama Day](https://dramaday.me/)** - Asian Drama / 1080p
|
||||
@ -543,6 +526,7 @@
|
||||
* [StagaTV](https://www5.stagatv.com/) - Movies / TV / 1080p
|
||||
* [StarsDDL](https://starsddl.me/) - Movies / TV / 1080p
|
||||
* [Movies Ni Pipay](https://moviesnipipay.me/) - Movies / TV / 1080p
|
||||
* [FilmDuty](https://filmduty.com/) - Movies / TV / Anime / 1080p
|
||||
* [Downloads-Anymovies](https://www.downloads-anymovies.co/) - Movies / 1080p
|
||||
* [RLSXTVT](https://rlsxtvt.icu/) - Movies / TV / 1080p
|
||||
* [UHDMovies](https://uhdmovies.foo/) - Movies / 4K
|
||||
@ -556,7 +540,7 @@
|
||||
* [MovieSeriesTV](https://www.movieseriestv.net/) - Movies / TV / 1080p
|
||||
* [SeriesVault](https://seriesvault.win/) - TV / Anime / 1080p
|
||||
* [FilmFans](https://filmfans.org/) - Movies / 4K
|
||||
* [WorldFree4u](https://worldfree4u.pm/) - Movies / 1080p
|
||||
* [WorldFree4u](https://worldfree4u.wf/) - Movies / 1080p
|
||||
* [SSR Movies](https://ssrmovies.meme/) - Movies / TV / 1080p
|
||||
* [Best-MovieZ](https://www.best-moviez.ws/) - Movies / TV / 1080p
|
||||
* [SeriezLoaded NG](https://www.seriezloaded.com.ng/) - Movies / TV / 1080p
|
||||
@ -566,7 +550,6 @@
|
||||
* [TwitchDL](https://dl2.twitchdl.us/) - Movies / TV / Anime / 1080p
|
||||
* [SD Toons](https://sdtoons.in) - Movies / TV / Anime / 1080p
|
||||
* [PrivateMovieZ](https://privatemoviez.xyz/) - Movies / TV / 1080p
|
||||
* [FilmDuty](https://filmduty.com/) - Movies / TV / Anime / 1080p
|
||||
* [FilmGo](https://www.filmgo.live/) - Movies / TV / 720p
|
||||
* [FZMovies](https://fzmovies.host/), [2](https://fzmovies.net/) - Movies / 720p
|
||||
* [YourSerie](https://www.yourserie.com/) - Movies / TV / 720p
|
||||
@ -578,10 +561,9 @@
|
||||
* [Naijavault](https://www.naijavault.com/) - Movies / TV / 480p
|
||||
* [KimoiTV](https://www.kimoitv.com/) - Movies / TV / Anime / 360p
|
||||
* [/r/DownUnderTV](https://www.reddit.com/r/DownUnderTV/) - AU / NZ TV / 1080p
|
||||
* [MKVDrama](https://mkvdrama.org/) - Asian Drama / 1080p
|
||||
* [Sinflix](https://rentry.co/FMHYBase64#sinflix) - Asian Drama / 1080p
|
||||
* [CondensedAudioCatalog](https://condensedaudiocatalog.com/) - Asian Drama / 1080p
|
||||
* [nKiri](https://nkiri.com/) - Asian Drama / 720p
|
||||
* [nKiri](https://nkiri.com/) - Asian Drama / 720p
|
||||
* [DoraMax264](https://doramax264.com/) - Asian Drama / 480p
|
||||
* [Toku.fun](https://toku.fun/) - Japanese Superhero Movies / 360p
|
||||
* [Jackass Vault](https://discord.gg/ZH5MjcKmJJ) - Jackass Media Discord
|
||||
@ -593,11 +575,11 @@
|
||||
## ▷ Drives / Directories
|
||||
|
||||
* ⭐ **[Vadapav](https://vadapav.mov/)** - Movies / TV / Anime / [Enhancements](https://greasyfork.org/en/scripts/496099)
|
||||
* ⭐ **[Remux Collection](https://rentry.co/FMHYBase64#17tb-mega-drive)** - HD Movies
|
||||
* [188.165.227.112](https://rentry.co/FMHYBase64#188165227112) - Movies / TV
|
||||
* [ProSearch4Bot](https://t.me/ProSearch4Bot) - Movies
|
||||
* [Mobile movies request bot](https://t.me/cc_mmrequestbot) - Movies / 480p
|
||||
* [SolidarityCinema](https://www.solidaritycinema.com/) - Movies
|
||||
* [Remux Collection](https://rentry.co/FMHYBase64#17tb-mega-drive) - HD Movies
|
||||
* [4K Collection](https://rentry.co/FMHYBase64#4k-movie-collection) - HD Movies
|
||||
|
||||
***
|
||||
@ -608,7 +590,6 @@
|
||||
|
||||
***
|
||||
|
||||
* 🌐 **[Wotaku](https://wotaku.moe/websites#download)** - Anime Download Index / [Discord](https://discord.gg/vShRGx8ZBC)
|
||||
* 🌐 **[EverythingMoe](https://everythingmoe.com/#section-download)** - Anime DDL Index / [Discord](https://discord.gg/GuueaDgKdS)
|
||||
* 🌐 **[The Index DDL](https://theindex.moe/collection/ddl-communities)** - Anime DDL Sites / [Discord](https://discord.gg/Snackbox) / [Wiki](https://thewiki.moe/)
|
||||
* ↪️ **[Telegram Anime Downloads](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_telegram_anime_downloads)**
|
||||
@ -684,7 +665,7 @@
|
||||
# ► Torrent Sites
|
||||
|
||||
* ↪️ **[General Torrent Sites](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/torrent)**
|
||||
* ⭐ **[1337x Movies](https://1337x.to/movie-library/1/)** - Movies / TV / Anime
|
||||
* ⭐ **[1337x Movies](https://1337x.to/movie-library/1/)** - Movies / TV / Anime / [Avoid Software / Games](https://pastebin.com/8AaMuz5u)
|
||||
* ⭐ **[TorrentGalaxy Movies](https://torrentgalaxy.to/torrents.php?parent_cat=Movies)** - Movies / TV / Anime
|
||||
* ⭐ **[RuTracker Movies](https://rutracker.org/forum/index.php?c=2)** - Movies / TV / Anime / [Wiki](http://rutracker.wiki/) / [Rules](https://rutracker.org/forum/viewtopic.php?t=1045)
|
||||
* ⭐ **[Kinozal](https://kinozal.tv/)** - Movies / TV / 4K
|
||||
@ -738,7 +719,7 @@
|
||||
* ⭐ **[Trakt](https://trakt.tv/)** - TV / Anime / Movies / [Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_trakt_tools)
|
||||
* ⭐ **[Letterboxd](https://letterboxd.com/)** - Movies / [Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_letterboxd_tools)
|
||||
* ⭐ **[ICheckMovies](https://www.icheckmovies.com/)** - Movies / List Database / [Enhanced](https://greasyfork.org/en/scripts/11541-icheckmovies-enhanced)
|
||||
* ⭐ **[FlickMetrix](https://flickmetrix.com/)** - Combine IMDb, Rotten Tomatoes & Letterboxd Ratings
|
||||
* ⭐ **[FlixMetrix](https://flickmetrix.com/)** - Combine IMDb, Rotten Tomatoes & Letterboxd Ratings
|
||||
* ⭐ **[RatS](https://github.com/StegSchreck/RatS)** - Transfer Ratings between Services
|
||||
* ⭐ **[MyAnimeList](https://myanimelist.net/)** - Anime / [Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_myanimelist_tools)
|
||||
* ⭐ **[AniList](https://anilist.co/)** - Anime / [Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_anilist_tools) / [Discord](https://discord.com/invite/TF428cr)
|
||||
@ -824,14 +805,14 @@
|
||||
|
||||
* 🌐 **[elSubtitle](https://www.elsubtitle.com/)**, [SubConverter](https://subconverter.com/) or [Subtitle Tools](https://subtitletools.com/) - Subtitle Tools
|
||||
* ⭐ **[Substital](https://substital.com/)** or [Movie-Subtitles](https://github.com/gignupg/Movie-Subtitles) - External Subtitle Extensions
|
||||
* [DST](https://www.syedgakbar.com/projects/dst), [Aegisub](https://aegisub.org/), [Subtitle Workshop](https://www.uruworks.net/), [Jubler Subtitle](https://www.jubler.org/) or [Subtitld](https://subtitld.org/) - Subtitle Editor
|
||||
* ⭐ **[Subtitle Edit](https://www.nikse.dk/SubtitleEdit/Online)**, [DST](https://www.syedgakbar.com/projects/dst), [Aegisub](https://aegisub.org/), [Subtitle Workshop](https://www.uruworks.net/), [Jubler Subtitle](https://www.jubler.org/) or [Subtitld](https://subtitld.org/) - Subtitle Editor
|
||||
* [Penguin](https://github.com/carsonip/Penguin-Subtitle-Player) - External Subs Players
|
||||
* [Sub-Zero](https://github.com/pannal/Sub-Zero.bundle) - Plex Subtitles
|
||||
* [Adjust Subs Like a Pro](https://graph.org/Adjust-subtitles-in-seconds-like-a-pro-07-17) - Subtitle Syncing Guide
|
||||
* [Subshifter](https://subshifter.bitsnbites.eu/), [subsync](https://github.com/sc0ty/subsync), [ffsubsync](https://github.com/smacke/ffsubsync), [autosubsync-mpv](https://github.com/joaquintorres/autosubsync-mpv), [Alass](https://github.com/kaegi/alass), [autosubsync](https://github.com/oseiskar/autosubsync) - Sync Subtitles
|
||||
* [asstosrt-wasm](https://sorz.github.io/asstosrt-wasm/) - ASS / SSA to SRT Subtitles Converter
|
||||
* [RenameThemSubs](https://github.com/Eshaan7/RenameThemSubs) - Rename Sub Files to match Video
|
||||
* [Revoldiv](https://revoldiv.com/), [Subvert](https://subvert.dev/), [pyTranscriber](https://pytranscriber.github.io/), [Auto-Subtitle](https://www.veed.io/tools/auto-subtitle-generator-online), [FreeSubtitlesAI](https://freesubtitles.ai/), [Vibe](https://thewh1teagle.github.io/vibe/), [Turboscribe](https://turboscribe.ai/), [ecoute](https://github.com/SevaSk/ecoute) or [autosub](https://github.com/agermanidis/autosub), [2](https://github.com/BingLingGroup/autosub) - Video Transcribers
|
||||
* [Subvert](https://subvert.dev/), [pyTranscriber](https://pytranscriber.github.io/), [Auto-Subtitle](https://www.veed.io/tools/auto-subtitle-generator-online), [FreeSubtitlesAI](https://freesubtitles.ai/), [Vibe](https://thewh1teagle.github.io/vibe/), [ecoute](https://github.com/SevaSk/ecoute) or [autosub](https://github.com/agermanidis/autosub), [2](https://github.com/BingLingGroup/autosub) - Video Transcribers
|
||||
* [CCaptioner](https://github.com/gorhill/ccaptioner) - Add Subtitles to Videos / Extension
|
||||
* [subtitle.js](https://github.com/gsantiago/subtitle.js) - Parse and manipulate SRT (SubRip)
|
||||
* [TranslatesSubtitles](https://translatesubtitles.com/) or [FreeSubtitles](https://freesubtitles.org/)- Translate Subtitles
|
||||
@ -884,7 +865,7 @@
|
||||
* ↪️ **[Media Posters / Covers](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_covers_.2F_posters)**
|
||||
* ↪️ **[Media Soundtracks](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/audio#wiki_.25BA_media_soundtracks)**
|
||||
* ↪️ **[File Data Automation](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/file-tools#wiki_.25B7_data_automation)**
|
||||
* ⭐ **[FastStream](https://faststream.online/)** - Fragmentation Streaming Extension / [GitHub](https://github.com/Andrews54757/FastStream/)
|
||||
* ⭐ **[FastStream](https://github.com/Andrews54757/FastStream/)** - Fragmentation Streaming Extension
|
||||
* ⭐ **[DeepSearch](https://deepsearch.mycelebs.com/movie)**, [WhatsatMovie](https://whatsatmovie.com/) or [What is My Movie?](https://www.whatismymovie.com/) - Find Movies via Descriptions
|
||||
* ⭐ **[OpenVideo](https://openvideofs.github.io)** or [Stream-Bypass](https://github.com/ByteDream/stream-bypass) - Use Streaming Sites in Ad Free Player w/ subs, Speed Control & More
|
||||
* ⭐ **[WhereYouWatch](https://whereyouwatch.com/latest-reports/)**, [Movie Updates](https://play.google.com/store/apps/details?id=com.tashila.movieupdates) or [/r/movieleaks](https://reddit.com/r/movieleaks) - Movie Leak Notifications
|
||||
|
32
biome.json
32
biome.json
@ -1,32 +0,0 @@
|
||||
{
|
||||
"$schema": "https://biomejs.dev/schemas/1.8.3/schema.json",
|
||||
"extends": ["@taskylizard/biome-config"],
|
||||
"files": {
|
||||
"ignore": [".vitepress/**/*.vue", ".vitepress/vue-shim.d.ts"]
|
||||
},
|
||||
"formatter": {
|
||||
"enabled": false
|
||||
},
|
||||
"javascript": {
|
||||
"globals": [
|
||||
"defineNitroConfig",
|
||||
"eventHandler",
|
||||
"useRuntimeConfig",
|
||||
"readValidatedBody",
|
||||
"defineEventHandler"
|
||||
]
|
||||
},
|
||||
"linter": {
|
||||
"rules": {
|
||||
"style": {
|
||||
"useFilenamingConvention": {
|
||||
"level": "info",
|
||||
"options": {
|
||||
"filenameCases": ["camelCase", "PascalCase"]
|
||||
}
|
||||
},
|
||||
"noDefaultExport": "off"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
7
eslint.config.js
Normal file
7
eslint.config.js
Normal file
@ -0,0 +1,7 @@
|
||||
// @ts-check
|
||||
import tasky from '@taskylizard/eslint-config'
|
||||
|
||||
export default tasky({
|
||||
vue: true,
|
||||
browser: true
|
||||
})
|
193
gaming-tools.md
193
gaming-tools.md
@ -37,18 +37,17 @@
|
||||
* [Shmuplations](https://shmuplations.com/) - Japanese Developer Interviews
|
||||
* [Wiki.gg](https://wiki.gg/wikis/) - Game Wikis / [Redirector](https://support.wiki.gg/wiki/Redirect_to_wiki.gg)
|
||||
* [CSDb](https://csdb.dk/) or [GB64](https://gb64.com/index.php) - Commodore 64 Resources
|
||||
* [MORT](https://github.com/killkimno/MORT) - Real-time Game Text Translation
|
||||
* [Textractor](https://github.com/Artikash/Textractor) - Extract Text from Games / Visual Novels
|
||||
* [GARbro](https://github.com/morkt/GARbro/) - Browse / Extract Visual Novel Resources
|
||||
* [ConceptArt](https://vk.com/conceptart) - Video Game Concept Art
|
||||
* [FatmanTutorial](https://archive.org/details/fatmantutorial) - How-to Repack Games
|
||||
* [How Denuvo Works](https://rentry.co/denuvo)
|
||||
* [How Denuvo Works](https://rentry.co/denuvo) or [Reverse Engineer Denuvo V4](https://drive.google.com/file/d/1CupcQMOyxbtNUGGSnq8xhIZIxhDzToFT/)
|
||||
|
||||
***
|
||||
|
||||
## ▷ Steam / Epic
|
||||
|
||||
* 🌐 **[Steam Tool Collection](https://steamcommunity.com/sharedfiles/filedetails/?id=451698754)**, [steam.tools](https://steam.tools/) or [SteamInternals](https://cs.rin.ru/forum/viewtopic.php?f=10&t=65887) - Steam Tool Indexes
|
||||
* 🌐 **[Steam Tool Collection](https://steamcommunity.com/sharedfiles/filedetails/?id=451698754)** or [SteamInternals](https://cs.rin.ru/forum/viewtopic.php?f=10&t=65887) - Steam Tool Indexes
|
||||
* 🌐 **[Steam Deck Mods](https://docs.google.com/document/d/1TWhN9nCorKxut5O7UbPQPDhXLb-8C-CIoesB01yfhmY/)** - Steam Deck Mods / [Discord](https://discord.com/invite/SteamDeck)
|
||||
* ↪️ **[Steam Workshop Downloaders](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_steam_workshop_downloaders)**
|
||||
* ⭐ **[Koalageddon](https://github.com/acidicoala/Koalageddon/)** / [v2](https://github.com/acidicoala/Koalageddon2) - DLC Unlocker for Steam, Epic, Origin, EA and Uplay
|
||||
@ -70,7 +69,6 @@
|
||||
* [ScreamAPI](https://github.com/acidicoala/ScreamAPI) - Epic DLC Unlocker
|
||||
* [GetDataFromSteam-SteamDB](https://github.com/Sak32009/GetDataFromSteam-SteamDB) - Find SteamDB DLC Data / Create Configs
|
||||
* [SKSAppManifestGenerator](https://github.com/Sak32009/SKSAppManifestGenerator) - Create AppManifest Data
|
||||
* [Superheater](https://superheater.fgsfds.link/) - Fix / Patch Steam Games / [Discord](https://discord.gg/mWvKyxR4et)
|
||||
* [Depressurizer](https://github.com/Depressurizer/Depressurizer) - Steam Library Organizer
|
||||
* [Steam Art Manager](https://github.com/Tormak9970/Steam-Art-Manager) - Find / Manage Game Art
|
||||
* [Steam API Check Bypass](https://github.com/oureveryday/Steam-API-Check-Bypass) - Steam API Check Bypass
|
||||
@ -144,7 +142,7 @@
|
||||
* ⭐ **[MSI Kombustor](https://www.geeks3d.com/furmark/kombustor/)** - GPU Benchmark Test
|
||||
* ⭐ **[ProSettings](https://prosettings.net/)**, [Share Gaming Tweaks](https://www.tenforums.com/gaming/117377-share-gaming-tweaks-chec-my-comprehensive-list-will-blow-your-mind.html), [/r/OptimizedGaming](https://www.reddit.com/r/OptimizedGaming/), [SweetFX](https://sfx.thelazy.net/), [ENBSeries](http://enbdev.com) or [Use Gaming Tweaks](https://github.com/PrincessAkira/Use-Gaming-Tweaks) - Settings Optimization Guides
|
||||
* ⭐ **[DisplayMagician](https://displaymagician.littlebitbig.com/)** or [AutoActions](https://github.com/Codectory/AutoActions) - Per-Game Display Profiles
|
||||
* ⭐ **[Magpie](https://github.com/Blinue/Magpie)** or [Vuenxx](https://discord.gg/ASZjqrjWYf) / [Note](https://pastebin.com/DyQh6K0Q) - Free FSR 3 Mods
|
||||
* ⭐ **[Magpie](https://github.com/Blinue/Magpie)** or [Vuenxx](https://discord.gg/ASZjqrjWYf) / [Note](https://pastebin.com/DyQh6K0Q) - Free FSR 3 Mods / [Guide](https://rentry.co/fsr3-mod-guide)
|
||||
* [RagnoTech Optimization Catalog](https://ragnos1997.com/optimization-catalog/) or [TroubleChute](https://www.youtube.com/c/TroubleChute/featured) - Gaming Optimization Guides
|
||||
* [Calypto’s Latency Guide](https://docs.google.com/document/d/1c2-lUJq74wuYK1WrA_bIvgb89dUN0sj8-hO3vqmrau4/), [cancerogenoslab](https://sites.google.com/view/cancerogenoslab/) or [MikeMartin](https://www.mikemartin.co/) - FPS / Latency Guides
|
||||
* [OCAT](https://gpuopen.com/ocat/) / [GitHub](https://github.com/GPUOpen-Tools/ocat), [Rivatuner Statistics Server](https://www.guru3d.com/files-details/rtss-rivatuner-statistics-server-download.html), [CapFrameX](https://www.capframex.com/) or [Xbox Game Bar](https://rentry.co/WindowsFPS) - FPS Benchmarking
|
||||
@ -183,9 +181,70 @@
|
||||
|
||||
***
|
||||
|
||||
## ▷ Multiplayer Tools
|
||||
|
||||
* 🌐 **[Multiplayer Mods](https://docs.google.com/spreadsheets/d/e/2PACX-1vSV41AswEt3EpzSyd85YRVtoJaIIXWjtBy347dISJg4fs6xSNPqcgfsh76TxX_l-mnT7pjMlSqTW-87/pubhtml)** or [Unmoddable](https://unmoddable.com/) - Multiplayer Mods for Singleplayer Games
|
||||
* ⭐ **[Online Fix](https://online-fix.me/)** - Multiplayer Fix / [Discord](https://discord.gg/yExgFYncMD)
|
||||
* ⭐ **[Playit.gg](https://playit.gg/)** - Multiplayer Fix / [Discord](https://discord.gg/AXAbujx)
|
||||
* ⭐ **[TrackyServer](https://www.trackyserver.com/)** - Find Private Multiplayer Servers
|
||||
* ⭐ **[Find-PlayDate](https://www.find-playdate.com/)** - Find People to Play Games With
|
||||
* [Liquipedia](https://liquipedia.net/) - Competitve Gaming / Esports Wiki / [Discord](https://discord.com/invite/liquipedia)
|
||||
* [zerotier](https://www.zerotier.com/) - Multiplayer Fix
|
||||
* [Radmin](https://www.radmin-vpn.com/) - Multiplayer Fix / [Discord](https://discord.com/invite/8MapDM7m96)
|
||||
* [Hamachi](https://vpn.net/) - Multiplayer Fix
|
||||
* [NetMaker](https://www.netmaker.io/) - Multiplayer Fix
|
||||
* [Team XLink](https://www.teamxlink.co.uk/) - Multiplayer Fix / [Discord](https://discord.com/invite/XUS9n73KSP)
|
||||
* [ZLOEmu](https://zloemu.net/) - Multiplayer Fix
|
||||
* [DiIiS](https://github.com/blizzless/blizzless-diiis) - Open-Source Diablo III Local Server
|
||||
* [Server.pro](https://server.pro/) - Game Server Hosting
|
||||
* [Tilted Online](https://wiki.tiltedphoques.com/tilted-online/) / [GitHub](https://github.com/tiltedphoques/TiltedEvolution) - Multiplayer Skyrim & Fallout 4 / [Discord](https://discord.gg/skyrimtogether) / [Setup Guide](https://youtu.be/ytSftFoQQHA)
|
||||
* [NV:MP](https://nv-mp.com/) - Fallout: New Vegas Multiplayer / [Discord](https://discordapp.com/invite/mKVdhmEDrW)
|
||||
* [Insignia](https://insignia.live/) - Original Xbox Replacement Servers / [Discord](https://discord.gg/CWkdVdc)
|
||||
* [Project Cartographer](https://www.halo2.online/) - Halo 2 Online Servers
|
||||
* [Halo Custom Edition](https://www.haloce.org/) - Halo CE Online Servers
|
||||
* [Northstar](https://thunderstore.io/c/northstar/), [2](https://northstar.tf/) - Titanfall 2 Server Hosting & Modding / [GitHub](https://github.com/R2Northstar/Northstar/releases) / [Guide](https://rentry.org/northstar-guide) / [Discord](https://discord.gg/CEszSguY3A)
|
||||
* [CnCNet](https://cncnet.org/) - Multiplayer Command & Conquer / [Discord](https://discord.com/invite/aJRJFe5)
|
||||
* [Factorio.zone](https://factorio.zone/) - Free Factorio Servers
|
||||
* [Rusticaland](https://rusticaland.net/) - Free Rust Servers / [Discord](https://discord.com/invite/MD9RgdYhpf)
|
||||
* [Rust Labs](https://rustlabs.com/) - Rust Info / Tools
|
||||
* [Old School RuneScape](https://oldschool.runescape.com/) - Classic Runescape / [Discord](https://discord.com/invite/osrs)
|
||||
* [NolfRevival](http://nolfrevival.tk/) - NOLF, NOLF 2 & Contract Jack
|
||||
* [Mega Man Arena](https://www.megamanarena.com/) or [Megaman 2.5D](https://petersjostrand.com/) - Multiplayer Mega Man
|
||||
* [Toontown Rewritten](https://www.toontownrewritten.com/) - Toontown Multiplayer Revival
|
||||
* [Overwolf](https://www.overwolf.com/) - Create In-Game Overlay Apps
|
||||
* [Tracker.gg](https://tracker.gg/) - Game Leaderboards / Stats
|
||||
* [Plutonium](https://plutonium.pw/) - Black Ops 2 / MW3 Mod Project / [Discord](https://discord.gg/d95y8ah) / Requires Legit Copy
|
||||
* [t7patch](https://github.com/shiversoftdev/t7patch) - Black Ops 3 Crash Fix
|
||||
* [Venice Unleashed](https://veniceunleashed.net/) / [Discord](https://discord.com/invite/dpJwaVZ) or [Warsaw Revamped](https://warsaw-revamped.com/) / [Discord](https://discord.com/invite/C9Zrh4G) - Battlefield Mod Projects
|
||||
* [BF2142 Reclamation](https://battlefield2142.co/) - BF2142 Multiplayer Project / [Discord](https://discord.gg/MEwBW9U)
|
||||
* [Marne](https://marne.io/) - BF1 Multiplayer Project / [Discord](https://marne.io/discord)
|
||||
* [StatsVerse](http://statsverse.com/) - Battlefield Leaderboards
|
||||
* [Sym.gg](https://sym.gg/) - Battlefield Info & Weapon Stats / [Discord](https://discord.com/invite/RVRZ3RgYNP)
|
||||
* [PaladinsGuru](https://paladins.guru/) - Paladins Leaderboards / [Discord](https://discord.com/invite/5aKtMB7)
|
||||
* [TrueGameData](https://truegamedata.com/) - COD Leaderboards
|
||||
* [Warzone Loadout](https://warzoneloadout.games/) - Warzone Loadouts and Builds
|
||||
* [ET: Legacy](https://www.etlegacy.com/) - Wolfenstein Enemy Territory Multiplayer Project / [Discord](https://discord.com/invite/UBAZFys)
|
||||
* [Braytech](https://bray.tech/) - Destiny 2 Stats
|
||||
* [Leaf](https://leafapp.co/) or [HaloDataHive](https://halodatahive.com/) - Halo Infinite Leaderboards / Stats
|
||||
* [D4Builds](https://d4builds.gg/) - Diablo 4 Builds
|
||||
* [WoWProgress](https://www.wowprogress.com) or [CheckPVP](https://www.check-pvp.fr/) - WoW Rankings
|
||||
* [RaidPlan](https://raidplan.io/) - WoW Raid Planner / [Discord](https://discord.com/invite/mTuHsfb)
|
||||
* [FallGuysStats](https://github.com/ShootMe/FallGuysStats) or [Fallalytics](https://fallalytics.com/) - Fall Guys Stat Trackers
|
||||
* [Pancake Patcher](https://gamebanana.com/tools/7382) - Fall Guys String Patcher
|
||||
* [FallGuysDB](https://fallguys-db.pages.dev/) - Fall Guys Store & Show Rotations
|
||||
* [Fortnite Tracker](https://fortnitetracker.com/) - Fortnite Leaderboards / Stats
|
||||
* [FortniteEXP](https://www.fortnitexp.net/) - Fortnite XP Progression / Leveling Rates
|
||||
* [SaveTheWorldClaimer](https://github.com/PRO100KatYT/SaveTheWorldClaimer) - Fortnite Auto-Points Claimer
|
||||
* [Slippi](https://slippi.gg/) - Super Smash Bros Melee Online / [Discord](https://discord.com/invite/pPfEaW5)
|
||||
* [CrewLink](https://github.com/ottomated/CrewLink) - Among Us Proximity Chat
|
||||
* [Impostor](https://impostor.github.io/Impostor/) - Among Us Private Server / [Discord](https://discord.com/invite/Mk3w6Tb)
|
||||
* [VRCList](https://vrclist.com/) - Find VRChat Worlds / Signup Required
|
||||
|
||||
***
|
||||
|
||||
## ▷ Game Mods
|
||||
|
||||
* ⭐ **[ChronoCrash](https://www.chronocrash.com/forum/)** - Side Scrolling Modding Forum / [Games List](https://www.chronocrash.com/forum/resources/categories/openbor.2/)
|
||||
* ⭐ **[ChronoCrash](https://www.chronocrash.com/forum/)** - Game Modding Forum
|
||||
* ⭐ **[ModDB](https://moddb.com/)** - Game Mods
|
||||
* ⭐ **[Nexus Mods](https://www.nexusmods.com/)** - Game Mods / [Bulk Downloader](https://greasyfork.org/en/scripts/483337) / [Redirect Skip](https://greasyfork.org/en/scripts/394039) / [Discord](https://discord.com/invite/nexusmods)
|
||||
* ⭐ **[ModdingLinked](https://moddinglinked.com/)** - Bethesda Game Modding Guides / [Discord](https://discord.com/invite/S99Ary5eba)
|
||||
@ -203,18 +262,13 @@
|
||||
* [Top Mods](https://www.top-mods.com/) - PC Game Mods
|
||||
* [ProAsm](http://www.proasm.com/) - Retro Game Mods
|
||||
* [ProWrestlingMods](https://prowrestlingmods.io/) - Wrestling Game Mods / [Discord](https://discord.gg/ctUmSTueV3)
|
||||
* [KSP-CKAN](https://github.com/KSP-CKAN/CKAN/) - Kerbal Space Program Mod Loader
|
||||
* [Pre-Fortress 2](https://prefortress.com/) - TF1 Style TF2 Mod
|
||||
* [Unreal Archive](https://unrealarchive.org/index.html) - Unreal Tournament Mods, Maps, Skins etc.
|
||||
* [Quaddicted](https://www.quaddicted.com/) - Classic Quake Mods, Maps & Tools
|
||||
* [ZagruzkaMods](https://zagruzkamods.com/) or [GameJunkie](https://www.gamejunkie.pro/) - Simulator Game Mods
|
||||
* [ESO Addons](https://github.com/arviceblot/eso-addons) - Elder Scrolls Online Mod Manager
|
||||
* [Funky](https://pukmajster.github.io/funky/) - Left 4 Dead 2 Mod Manager
|
||||
* [Hidden Fallout 4 Mods](https://rentry.co/89gads), [2](https://docs.google.com/document/d/1Im5Mg-l2btRsYVOjaJa0slrjDcXNvi41J5pHw_Zuwqw/edit?usp=sharing) - Fallout 4 Mods Removed from Nexus
|
||||
* [UGX Mods](https://www.ugx-mods.com/) - COD Zombies Mods / [Discord](https://discord.gg/g9S2nSp)
|
||||
* [RimWorldBase](https://www.rimworldbase.com/) - RimWorld Mods
|
||||
* [PvZ Link Server](https://discord.gg/TySsGQWB5A) - Plants vs Zombies Mods
|
||||
* [NFL2KMod](https://www.nfl2kmod.com/) - NFL Game Mods
|
||||
* [StellarisMods](http://stellarismods.net/) - Stellaris Mods
|
||||
* [SMods](https://smods.ru/) - Cities: Skylines Mods
|
||||
* [MDMC](https://mdmc.moe/) - Muse Dash Mods / [Discord](https://discord.com/invite/mdmc)
|
||||
@ -282,12 +336,12 @@
|
||||
## ▷ Tracking / Discovery
|
||||
|
||||
* 🌐 **[Awesome Engineering Games](https://github.com/arcataroger/awesome-engineering-games)** - Engineering Games
|
||||
* ⭐ **[Glitchwave](https://glitchwave.com/)**, [Grouvee](https://www.grouvee.com/), [RankOne](https://www.rankone.global/), [InfiniteBacklog](https://infinitebacklog.net/) or [Backloggd](https://www.backloggd.com/) - Game Trackers
|
||||
* ⭐ **[OpenCritic](https://opencritic.com/)** - Critic Game Reviews / Ratings
|
||||
* ⭐ **[Glitchwave](https://glitchwave.com/)**, [Grouvee](https://www.grouvee.com/), [InfiniteBacklog](https://infinitebacklog.net/) or [Backloggd](https://www.backloggd.com/) - Game Trackers
|
||||
* ⭐ **[IGDB](https://www.igdb.com/)** or **[GiantBomb](https://www.giantbomb.com/games/)** - Game Database
|
||||
* ⭐ **[TasteDive](https://tastedive.com/games )**, [50GamesLike](https://www.50gameslike.com/), [Mythic Maps](https://mythicmap.com/) / [Discord](https://discord.gg/xw6cgmjDzB) or [/r/ifyoulikeblank](https://www.reddit.com/r/ifyoulikeblank/) - Game Recommendations
|
||||
* [Rec Charts](https://mega.nz/folder/kj5hWI6J#0cyw0-ZdvZKOJW3fPI6RfQ) - Game Recommendation Guides
|
||||
* [Incendar](https://incendar.com/) - Game Release Date Tracker
|
||||
* [OpenCritic](https://opencritic.com/) - Critic Game Reviews / Ratings
|
||||
* [GG App](https://ggapp.io/), [Gamelib](https://gamelib.app/explore), [Backloggery](https://backloggery.com/) or [Exophase](https://www.exophase.com/) - Game Trackers
|
||||
* [LaunchBox Games Database](https://gamesdb.launchbox-app.com/), [GameFAQs](https://gamefaqs.gamespot.com/), [Rawg](https://rawg.io/), [Moby Games](https://www.mobygames.com/), [rate.house](https://rate.house/chart/game), [listal](https://www.listal.com/) or [FrontierNav](https://frontiernav.net/) - Game Databases
|
||||
* [IMDb Advanced Search](https://www.imdb.com/search/) - Game Search
|
||||
@ -308,90 +362,8 @@
|
||||
* [Board Game Breakdown](https://boardgamebreakdown.com/) - Board Game Reviews
|
||||
* [MoreGamesLike](https://www.moregameslike.com/) or [Games Like Finder](https://gameslikefinder.com/) - Find Similar Games
|
||||
* [DigitalDreamDoor](https://digitaldreamdoor.com/pages/games.html) - List of the Best Games
|
||||
* [Are We Anti-Cheat Yet?](https://areweanticheatyet.com/) - Anti-Cheat Game Database / GNU/Linux or Wine/Proton Compatibility
|
||||
* [Unseen64](https://www.unseen64.net/) - Cancelled / Lost Games
|
||||
|
||||
***
|
||||
|
||||
# ► Multiplayer Tools
|
||||
|
||||
* ⭐ **[Find-PlayDate](https://www.find-playdate.com/)** - Find People to Play Games With
|
||||
* ⭐ **[Nucleus Co-op](https://github.com/SplitScreen-Me/splitscreenme-nucleus)** - Local Split-Screen PC Multiplayer
|
||||
* [Liquipedia](https://liquipedia.net/) - Competitve Gaming / Esports Wiki / [Discord](https://discord.com/invite/liquipedia)
|
||||
* [Overwolf](https://www.overwolf.com/) - Create In-Game Overlay Apps
|
||||
* [Tracker.gg](https://tracker.gg/) - Game Leaderboards / Stats
|
||||
* [StatsVerse](http://statsverse.com/) - Battlefield Leaderboards
|
||||
* [Sym.gg](https://sym.gg/) - Battlefield Info & Weapon Stats / [Discord](https://discord.com/invite/RVRZ3RgYNP)
|
||||
* [PaladinsGuru](https://paladins.guru/) - Paladins Leaderboards / [Discord](https://discord.com/invite/5aKtMB7)
|
||||
* [TrueGameData](https://truegamedata.com/) - COD Leaderboards
|
||||
* [Warzone Loadout](https://warzoneloadout.games/) - Warzone Loadouts and Builds
|
||||
* [Rust Labs](https://rustlabs.com/) - Rust Info / Tools
|
||||
* [ET: Legacy](https://www.etlegacy.com/) - Wolfenstein Enemy Territory Multiplayer Project / [Discord](https://discord.com/invite/UBAZFys)
|
||||
* [Braytech](https://bray.tech/) - Destiny 2 Stats
|
||||
* [Leaf](https://leafapp.co/) or [HaloDataHive](https://halodatahive.com/) - Halo Infinite Leaderboards / Stats
|
||||
* [D4Builds](https://d4builds.gg/) - Diablo 4 Builds
|
||||
* [WoWProgress](https://www.wowprogress.com) or [CheckPVP](https://www.check-pvp.fr/) - WoW Rankings
|
||||
* [RaidPlan](https://raidplan.io/) - WoW Raid Planner / [Discord](https://discord.com/invite/mTuHsfb)
|
||||
* [FallGuysStats](https://github.com/ShootMe/FallGuysStats) or [Fallalytics](https://fallalytics.com/) - Fall Guys Stat Trackers
|
||||
* [Pancake Patcher](https://gamebanana.com/tools/7382) - Fall Guys String Patcher
|
||||
* [FallGuysDB](https://fallguys-db.pages.dev/) - Fall Guys Store & Show Rotations
|
||||
* [Fortnite Tracker](https://fortnitetracker.com/) - Fortnite Leaderboards / Stats
|
||||
* [FortniteEXP](https://www.fortnitexp.net/) - Fortnite XP Progression / Leveling Rates
|
||||
* [SaveTheWorldClaimer](https://github.com/PRO100KatYT/SaveTheWorldClaimer) - Fortnite Auto-Points Claimer
|
||||
* [CrewLink](https://github.com/ottomated/CrewLink) - Among Us Proximity Chat
|
||||
|
||||
***
|
||||
|
||||
## ▷ Multiplayer Mods
|
||||
|
||||
* 🌐 **[Multiplayer Mods](https://docs.google.com/spreadsheets/d/e/2PACX-1vSV41AswEt3EpzSyd85YRVtoJaIIXWjtBy347dISJg4fs6xSNPqcgfsh76TxX_l-mnT7pjMlSqTW-87/pubhtml)** or [Unmoddable](https://unmoddable.com/) - Multiplayer Mods for Singleplayer Games
|
||||
* [Plutonium](https://plutonium.pw/) - Black Ops 2 / MW3 Mod Project / [Discord](https://discord.gg/d95y8ah) / Requires Legit Copy
|
||||
* [Venice Unleashed](https://veniceunleashed.net/) / [Discord](https://discord.com/invite/dpJwaVZ) or [Warsaw Revamped](https://warsaw-revamped.com/) / [Discord](https://discord.com/invite/C9Zrh4G) - Battlefield Mod Projects
|
||||
* [BF2142 Reclamation](https://battlefield2142.co/) - BF2142 Multiplayer Project / [Discord](https://discord.gg/MEwBW9U)
|
||||
* [Slippi](https://slippi.gg/) - Super Smash Bros Melee Online / [Discord](https://discord.com/invite/pPfEaW5)
|
||||
* [Marne](https://marne.io/) - BF1 Multiplayer Project / [Discord](https://marne.io/discord)
|
||||
* [Tilted Online](https://wiki.tiltedphoques.com/tilted-online/) / [GitHub](https://github.com/tiltedphoques/TiltedEvolution) - Multiplayer Skyrim & Fallout 4 / [Discord](https://discord.gg/skyrimtogether) / [Setup Guide](https://youtu.be/ytSftFoQQHA)
|
||||
* [NV:MP](https://nv-mp.com/) - Fallout: New Vegas Multiplayer / [Discord](https://discordapp.com/invite/mKVdhmEDrW)
|
||||
* [Nitrox](https://nitrox.rux.gg/) - Subnautica Multiplayer
|
||||
* [CnCNet](https://cncnet.org/) - Multiplayer Command & Conquer / [Discord](https://discord.com/invite/aJRJFe5)
|
||||
* [Old School RuneScape](https://oldschool.runescape.com/) - Classic Runescape / [Discord](https://discord.com/invite/osrs)
|
||||
* [Mega Man Arena](https://www.megamanarena.com/) or [Megaman 2.5D](https://petersjostrand.com/) - Multiplayer Mega Man
|
||||
* [NolfRevival](http://nolfrevival.tk/) - NOLF, NOLF 2 & Contract Jack
|
||||
* [Toontown Rewritten](https://www.toontownrewritten.com/) or [Corporate Clash](https://corporateclash.net/) - Toontown Multiplayer Revivals
|
||||
|
||||
***
|
||||
|
||||
## ▷ Multiplayer Fixes
|
||||
|
||||
* ⭐ **[Online Fix](https://online-fix.me/)** - LAN Multiplayer Fix / [Discord](https://discord.gg/yExgFYncMD)
|
||||
* ⭐ **[Playit.gg](https://playit.gg/)** - LAN Multiplayer Fix / [Discord](https://discord.gg/AXAbujx)
|
||||
* ⭐ **[zerotier](https://www.zerotier.com/)** - LAN Multiplayer Fix
|
||||
* [Radmin](https://www.radmin-vpn.com/) - LAN Multiplayer Fix / [Discord](https://discord.com/invite/8MapDM7m96)
|
||||
* [Hamachi](https://vpn.net/) - LAN Multiplayer Fix
|
||||
* [NetMaker](https://www.netmaker.io/) - LAN Multiplayer Fix
|
||||
* [Team XLink](https://www.teamxlink.co.uk/) - LAN Multiplayer Fix / [Discord](https://discord.com/invite/XUS9n73KSP)
|
||||
* [ZLOEmu](https://zloemu.net/) - LAN Multiplayer Fix
|
||||
* [t7patch](https://github.com/shiversoftdev/t7patch) - Black Ops 3 Crash Fix
|
||||
|
||||
***
|
||||
|
||||
## ▷ Multiplayer Servers
|
||||
|
||||
* ⭐ **[TrackyServer](https://www.trackyserver.com/)** - Find Private Multiplayer Servers
|
||||
* [Server.pro](https://server.pro/) - Game Server Hosting
|
||||
* [Impostor](https://impostor.github.io/Impostor/) - Among Us Private Server / [Discord](https://discord.com/invite/Mk3w6Tb)
|
||||
* [VRCList](https://vrclist.com/) - Find VRChat Worlds / Signup Required
|
||||
* [DiIiS](https://github.com/blizzless/blizzless-diiis) - Open-Source Diablo III Local Server
|
||||
* [Insignia](https://insignia.live/) - Original Xbox Replacement Servers / [Discord](https://discord.gg/CWkdVdc)
|
||||
* [Project Cartographer](https://www.halo2.online/) - Halo 2 Online Servers
|
||||
* [Halo Custom Edition](https://www.haloce.org/) - Halo CE Online Servers
|
||||
* [V4nguard (discord)](https://discord.com/invite/v4nguard-948590455715684393) - Alt Destiny 1 Servers
|
||||
* [Overwatch-Server-Selector](https://github.com/foryVERX/Overwatch-Server-Selector) - Overwatch Server Selector
|
||||
* [Northstar](https://thunderstore.io/c/northstar/), [2](https://northstar.tf/) - Titanfall 2 Server Hosting & Modding / [GitHub](https://github.com/R2Northstar/Northstar/releases) / [Guide](https://rentry.org/northstar-guide) / [Discord](https://discord.gg/CEszSguY3A)
|
||||
* [Factorio.zone](https://factorio.zone/) - Free Factorio Servers
|
||||
* [Rusticaland](https://rusticaland.net/) - Free Rust Servers / [Discord](https://discord.com/invite/MD9RgdYhpf)
|
||||
|
||||
|
||||
***
|
||||
|
||||
# ► Homebrew
|
||||
@ -413,7 +385,6 @@
|
||||
* [C-Xbox Tool](https://gbatemp.net/download/c-xbox-tool.7615/) - .XBE to ISO File Converter
|
||||
* [NKit](https://wiki.gbatemp.net/wiki/NKit) - Disc Image Processor
|
||||
* [NASOS](https://download.digiex.net/Consoles/GameCube/Apps/NASOSbeta1.rar) - Gamecube iso.dec to ISO Converter
|
||||
* [NESDev](https://www.nesdev.org/) - NES / SNES Dev Homebrew Guides / Forum
|
||||
* [hakchi2 CE](https://github.com/TeamShinkansen/Hakchi2-CE) / [Discord](https://discord.gg/UUvqsAR) - Add More Roms to NES/SNES Classic Mini
|
||||
* [Easy Guide to Making Amiibo](https://redd.it/5ywlol) - How to Make Your Own Amiibo
|
||||
|
||||
@ -439,7 +410,7 @@
|
||||
* ⭐ **[WiiUBrew](https://wiiubrew.org/wiki/Main_Page)** - WiiU Homebrew Wiki
|
||||
* ⭐ **[Wii U Hacks Guide](https://wiiu.hacks.guide/)** - Wii U Jailbreak Guide
|
||||
* ⭐ **[Wii Hacks Guide](https://wii.hacks.guide/)** - Wii Jailbreak Guides
|
||||
* ⭐ **[Wiimmfi](https://wiimmfi.de/)** or [WiiLink](https://wfc.wiilink24.com/) - Wii Multiplayer Servers
|
||||
* ⭐ **[Wiimmfi](https://wiimmfi.de/)** - Wii Multiplayer Servers
|
||||
* [Pretendo](https://pretendo.network/) - Wii U Network Replacement / [Discord](https://invite.gg/pretendo)
|
||||
* [/r/WiiUHacks](https://www.reddit.com/r/WiiUHacks/) - Wii U Homebrew Subreddit
|
||||
* [/r/WiiHacks](https://www.reddit.com/r/WiiHacks/) - Wii Homebrew Subreddit
|
||||
@ -481,14 +452,12 @@
|
||||
* [PS3 Disc Dumper](https://github.com/13xforever/ps3-disc-dumper) - Decrypted PS3 Disc Dumper
|
||||
* [PS3 Game Updater](https://www.psx-place.com/threads/ps3-game-updater-v1-5-psn-liberator-v0-96b-rudi-rastelli-adds-ps3p-pkg-ripper-support.3766/), [Rusty Pan](https://github.com/RainbowCookie32/rusty-psn) or [Manually Updated](http://demo.aldostools.org/updates.html) - Update PS3 Games
|
||||
* [PS3Themes](http://www.ps3-themes.com/) - PS3 Themes
|
||||
* [PSONE](https://psone.online/) - Play PS1 Games Online / PS3 Required / [Discord](https://discord.com/invite/uhZuGX9)
|
||||
* [PSXDev](https://www.psxdev.net/) - PS1 Development
|
||||
* [MemcardRex](https://shendosoft.blogspot.com/2014/01/memcardrex-18-released.html?m=1) - PS1 Save Transfer Tools / [Archive](https://archive.org/details/MemcardRex1.8)
|
||||
* [/r/VitaPiracy](https://www.reddit.com/r/VitaPiracy/) / [Discord](https://discord.gg/6Udcx2w) or [/r/VitaHacks](https://reddit.com/r/vitahacks/) - PSVita Homebrew Subreddits
|
||||
* [PSP Archive](https://psp-archive.github.io/) - PSP Homebrew Archive / [Discord](https://discord.gg/VZcjFvy3mT)
|
||||
* [VitaDB](https://vitadb.rinnegatamante.it/) - PS Vita Homebrews
|
||||
* [Vita Volume](https://gitlab.com/sinful-butterfly/vita-volume) - Set PS Vita Volume without Buttons
|
||||
* [PSPunk](https://www.pspunk.com/) - PSP Homebrew Info
|
||||
|
||||
***
|
||||
|
||||
@ -510,7 +479,6 @@
|
||||
* [ACPatterns](https://acpatterns.com/) - Animal Crossing Pattern Tool / [Discord](https://discord.com/invite/9rGkZNk)
|
||||
* [Hard Drop](https://harddrop.com/wiki/Tetris_Wiki) or [Tetris.wiki](https://tetris.wiki/) - Tetris Wikis
|
||||
* [Fumen](https://harddrop.com/fumen/) - Tetris Field Editor
|
||||
* [Minesweepergame.com](https://minesweepergame.com/) and [Minesweeper.online Wiki](https://minesweeper.online/help/gameplay) - All about Minesweeper
|
||||
* [WRCsetups](https://wrcsetups.com/) - WRC Setups
|
||||
* [Peacock](https://github.com/thepeacockproject/Peacock) - Hitman World of Assassination Server Replacement
|
||||
* [Useful Osu](https://github.com/CarbonUwU/Useful-osu) - Osu! Resources
|
||||
@ -548,13 +516,11 @@
|
||||
* 🌐 **[OptiFine Alternatives](https://optifine.alternatives.lambdaurora.dev/)** - OptiFine Alternatives for Fabric
|
||||
* 🌐 **[ChunkBase](https://www.chunkbase.com/apps/)** - Minecraft Map Tools
|
||||
* 🌐 **[TMC Links](https://gist.github.com/JoakimThorsen/e90bd7a588af25ae529530987d9acc8a)** - Technical Minecraft Resources
|
||||
* 🌐 **[ShaderLABS](https://shaderlabs.org/wiki/Main_Page)** - Shader Comparisons and Resources
|
||||
* 🌐 **[Minecraft TAS](https://minecrafttas.com/)** - All about Minecraft Tool-Assisted Speedruns
|
||||
* ↪️ **[Minecraft Server Hosts / Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_minecraft_hosting)**
|
||||
* ↪️ **[Minecraft Launchers](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_minecraft_launchers)** / [Beta](https://betacraft.uk/) / [Bedrock](https://bedrocklauncher.github.io/)
|
||||
* ↪️ **[Minecraft Servers / Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_minecraft_servers)**
|
||||
* ↪️ **[Minecraft Launchers](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_minecraft_launchers)** - [Beta](https://betacraft.uk/) / [Bedrock](https://bedrocklauncher.github.io/)
|
||||
* ↪️ **[Minecraft Mods](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_minecraft_mods)**
|
||||
* ↪️ **[Minecraft Optimization](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_minecraft_optimization_mods)**
|
||||
* ⭐ **[Eaglercraft](https://eaglercraft.com/)** - Browser Minecraft / [Note](https://pastebin.com/wpDZzgN5) / [Source](https://git.eaglercraft.rip/eaglercraft) / [Client](https://eaglercraftx1-8.github.io/1.8/resent4.0/index.html) / [Mod Client](https://eaglerforge.github.io/) / [Mod Search](https://eaglerrinth.github.io/) / [Code Mods](https://eaglerforge-builder.vercel.app/) / [Servers](https://servers.eaglercraft.com/) / [Eaglercrack](https://eaglercrack.net/)
|
||||
* ⭐ **[Eaglercraft](https://eaglercraft.com/)** - Browser Minecraft / [Note](https://pastebin.com/wpDZzgN5) / [Source](https://git.eaglercraft.rip/eaglercraft) / [Client](https://eaglercraftx1-8.github.io/1.8/resent4.0/index.html) / [Mod Client](https://eaglerforge.github.io/) / [Mod Search](https://eaglerrinth.github.io/) / [Code Mods](https://eaglerforge-builder.vercel.app/)
|
||||
* ⭐ **[Minecraft Wiki](https://minecraft.wiki/)** or [DigiMinecraft](https://www.digminecraft.com/) - Minecraft Resources / Guides
|
||||
* ⭐ **[MCModdingGuide](https://rentry.org/MCModdingGuide)** - Minecraft Modding Guide
|
||||
* ⭐ **[Couleur Tweak Tips](https://ctt.cx/)** - Minecraft Tweaks / Tips / [Discord](https://discord.gg/CTT)
|
||||
@ -578,7 +544,7 @@
|
||||
* [ViveCraft](https://www.vivecraft.org/) - VR Minecraft
|
||||
* [Skyclient](https://skyclient.co/) - Hypixel Asset Installer
|
||||
* [SkyCrypt](https://sky.shiiyu.moe/) - SkyBlock Stats
|
||||
* [Cubical](https://www.cubical.xyz/) / [Beta](https://beta.cubical.xyz/) - Minecraft Schematic Tool
|
||||
* [Cubical](https://www.cubical.xyz/) - Minecraft Schematic Tool
|
||||
* [Pixelart Builder](https://play.google.com/store/apps/details?id=com.electricfoal.photocrafter&hl=en&gl=US) or [PixelStacker](https://taylorlove.info/pixelstacker/) - Turn Photos into Minecraft Art
|
||||
* [ReplayMod](https://replaymod.com/) - Record Minecraft Game Sessions / [GitHub](https://github.com/ReplayMod/ReplayMod)
|
||||
* [GeyserMC](https://geysermc.org/) - Join Minecraft Java Servers with Bedrock Client / [Consoles](https://wiki.geysermc.org/geyser/using-geyser-with-consoles/)
|
||||
@ -591,8 +557,8 @@
|
||||
* [PVPRP](https://pvprp.com/) - Minecraft Texture Packs
|
||||
* [ShadersMods](https://shadersmods.com/) or [MinecraftShader](https://minecraftshader.com/) - Minecraft Shaders
|
||||
* [Iris Shaders](https://modrinth.com/mod/iris) - Fabric Shadermod for Minecraft
|
||||
* [Block Palettes](https://www.blockpalettes.com/) or [Block Colors](https://blockcolors.app/) - Block Color Palettes
|
||||
* [Laby](https://laby.net/) / [Discord](https://discord.com/invite/8JBMHDfWKp), [MinecraftSkins](https://www.minecraftskins.com/) or [MSkins](https://mskins.net/en) - Minecraft Skins
|
||||
* [Block Palettes](https://www.blockpalettes.com/) - Block Color Palettes
|
||||
* [Laby](https://laby.net/) - Minecraft User Search / Skin Library / [Discord](https://discord.com/invite/8JBMHDfWKp)
|
||||
* [Ely.by](https://ely.by/) - Skin System / Authorization
|
||||
* [Nova Skin](https://minecraft.novaskin.me/) or [Blockbench](https://www.blockbench.net/)- Minecraft Skin Editor
|
||||
* [MinecraftCapes](https://minecraftcapes.net/) or [Capes](https://modrinth.com/mod/capes) - Minecraft Capes
|
||||
@ -668,7 +634,7 @@
|
||||
* 🌐 **[GTAAll](https://www.gtaall.com/)**, [GTAInside](https://gtainside.com/), [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
|
||||
* ⭐ **[FiveM](https://fivem.net/)**, [alt:V](https://altv.mp/) or [RAGE](https://rage.mp/) - Modded GTAV Servers / Requires Legit Copy
|
||||
* ⭐ **[FiveM](https://fivem.net/)** - Modded GTAV Servers / Requires Legit Copy
|
||||
* ⭐ **[San Andreas: Multiplayer](https://www.sa-mp.mp/)** - Multiplayer GTA:SA / [Discord](https://discord.com/invite/samp)
|
||||
* ⭐ **[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
|
||||
@ -678,6 +644,7 @@
|
||||
* [OpenIV](https://openiv.com/) - Rockstar Game Modding Tool
|
||||
* [Gillian's GTA](https://gillian-guide.github.io/) - GTA IV Modding Guide
|
||||
* [GTA Connected](https://gtaconnected.com/) - Multiplayer Mod / GTA III, IV, VC, SC / [Discord](https://discord.gg/YSyasDa)
|
||||
* [GTA 5 Grand Roleplay](https://gta5grand.com/) - GTAV Roleplay Server
|
||||
* [D.E.P](https://www.definitive-edition-project.com/) - Fix GTA PC Port Bugs
|
||||
* [Vice City: Multiplayer](https://vc-mp.org/) - Mutiplayer GTA:VC
|
||||
|
||||
@ -700,7 +667,7 @@
|
||||
|
||||
## ▷ Mario Kart Tools
|
||||
|
||||
* ⭐ **[Retro Rewind](https://discord.gg/qbr3Y4PJFH)** - Retro MKW Tracks / Multiplayer / [Wiki](https://wiki.tockdom.com/wiki/Retro_Rewind) / [Auto-Updater](https://github.com/patchzyy/WheelWizard/releases) / [Setup Guide](https://redd.it/1dzerns)
|
||||
* ⭐ **[Retro Rewind](https://wiki.tockdom.com/wiki/Retro_Rewind)** - Retro MKW Tracks / Multiplayer / [Launcher / Updater](https://github.com/patchzyy/CT-MKWII-WPF)
|
||||
* ⭐ **[CTGP Revolution](https://www.chadsoft.co.uk/)** - Custom MKW Tracks / Multiplayer / Disc required
|
||||
* ⭐ **[Mario Kart Midnight](https://wiki.tockdom.com/wiki/Mario_Kart_Midnight)** - Custom MKW Tracks / Multiplayer
|
||||
* ⭐ **[MKWRs](https://mkwrs.com)** or [MKLeaderboards](https://www.mkleaderboards.com/) - Mario Kart Records / Videos
|
||||
@ -723,6 +690,7 @@
|
||||
* ↪️ **[GD Demon Lists](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_geometry_dash_demon_lists)**
|
||||
* ⭐ **[Geode](https://geode-sdk.org/)** - Mod Menu & Modding Framework
|
||||
* ⭐ **[GDDP](https://gddp.pro/)** or [GD Demon Ladder](https://gdladder.com/) - Practice & Improve Your Skills
|
||||
* ⭐ **[GDMegaOverlay](https://github.com/maxnut/GDMegaOverlay)** - GD Mega Hack Alternative / [Discord](https://discord.com/invite/nbDjEg7SSU)
|
||||
* [Soluble Texture Packs](https://solubletexturepacks.com/) - GD Texture Packs / [Manager](https://geode-sdk.org/mods/geode.texture-loader/)
|
||||
* [Spritesheet Splitter](https://gdcolon.com/gdsplitter/) - Split & Merge GD Spritesheets
|
||||
* [GD Save Explorer](https://gdcolon.com/gdsave/) - View Detailed Stats & Data of Save Files
|
||||
@ -745,13 +713,13 @@
|
||||
* 🌐 **[Roblox Archive](https://archive.roblonium.com/)** - Roblox Client Archive
|
||||
* ⭐ **[Roblox Account Manager](https://github.com/ic3w0lf22/Roblox-Account-Manager)** - Roblox Account Manager
|
||||
* ⭐ **[Rolimon's](https://www.rolimons.com/games)** or [RoMonitor Stats](https://romonitorstats.com/) - Roblox Experience Stats
|
||||
* ⭐ **[Bloxstrap](https://bloxstrap.pizzaboxer.xyz/)** - Roblox Player Bootstrapper / **[GitHub](https://github.com/pizzaboxer/bloxstrap)**
|
||||
* [Bloxstrap](https://github.com/pizzaboxer/bloxstrap) - Roblox Player Bootstrapper / [Dev Note](https://github.com/pizzaboxer/bloxstrap/wiki/Addressing-usability-problems-with-Bloxstrap-v2.5.4)
|
||||
* [RBXFPSUnlocker](https://github.com/axstin/rbxfpsunlocker) - Unlock Roblox FPS Cap
|
||||
* [Novetus](https://bitl.itch.io/novetus) - Self-Hosted Multi-version Roblox Client
|
||||
* [Roblox Studio Mod Manager](https://github.com/MaximumADHD/Roblox-Studio-Mod-Manager) - Roblox Studio Bootstrapper
|
||||
* [RoPro](https://ropro.io/), [Roblox+](https://chromewebstore.google.com/detail/roblox%20/jfbnmfgkohlfclfnplnlenbalpppohkm), [BTRoblox](https://twitter.com/AntiBoomz/status/1378597179556823040), [RoGold](https://rogold.live/) or [RoSeal](https://www.roseal.live/) - Enhance Roblox Website
|
||||
* [RBXServers](https://rbxservers.xyz/) or [Freevipservers](https://freevipservers.net/) - Roblox VIP Servers
|
||||
* [Roblox Web APIs](https://github.com/matthewdean/roblox-web-apis) - Roblox APIs
|
||||
* [ingame.clothing](https://ingame.clothing/) - Preview Avatar Clothing
|
||||
|
||||
***
|
||||
|
||||
@ -777,7 +745,6 @@
|
||||
* [Star Rail Station](https://starrailstation.com/), [Pokke's Library](https://pokkelibrary.com/) or [stardb.gg](https://stardb.gg/) - Honkai Star Rail Guides
|
||||
* [Seelie.me](https://seelie.me/) - Genshin / Star Rail Planner
|
||||
* [Genshin Center](https://genshin-center.com/) - Genshin Planner
|
||||
* [Genshin Optimizer](https://frzyc.github.io/genshin-optimizer/) - Genshin Impact Calculator / Artifact Optimizer
|
||||
* [Genshin Helper Doc](https://docs.google.com/spreadsheets/d/1gNxZ2xab1J6o1TuNVWMeLOZ7TPOqrsf3SshP5DLvKzI/htmlview?pru=AAABdXYM80o*xMxXJdNbCCZ-v9FLVh6EXg) - Genshin Builds Guide
|
||||
* [Grasscutter](https://grasscutter.io/) - Private Genshin Impact Servers / [Discord](https://discord.gg/T5vZU6UyeG)
|
||||
* [Genshin Impact FPS Unlocker](https://github.com/34736384/genshin-fps-unlock) - Unlock Genshin Impact FPS Cap
|
||||
|
36
img-tools.md
36
img-tools.md
@ -6,7 +6,7 @@
|
||||
|
||||
# ► Image Editing
|
||||
|
||||
* ↪️ **[Background / Object Removers](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_background_removers)**
|
||||
* ⭐ **[Remove Background Web](https://huggingface.co/spaces/Xenova/remove-background-web)**, [remove.bg](https://www.remove.bg/), [RemoveBG-GIMP](https://github.com/manu12121999/RemoveBG-GIMP), [Rembg](https://github.com/danielgatis/rembg), [Adobe Express Background Remover](https://www.adobe.com/express/feature/image/remove-background) or [magic-copy](https://github.com/kevmo314/magic-copy) - Background Removers
|
||||
* [Scribus](https://www.scribus.net/) - Page Layout & Typesetting Program
|
||||
* [FilmDev](https://filmdev.org/) - Film Development Recipes
|
||||
* [StyleCLIP](https://github.com/orpatashnik/StyleCLIP) - Text Driven Image Manipulation / [Video](https://youtu.be/5icI0NgALnQ)
|
||||
@ -16,6 +16,7 @@
|
||||
* [GradientArt](https://gra.dient.art/) or [TailBlend](https://tailblend.vercel.app/) - Gradient Editor
|
||||
* [VeoLuz](https://jaredforsyth.com/veoluz/) - Photon Path Art Tool
|
||||
* [Canvas](https://www.nvidia.com/en-us/studio/canvas/) - Turn Simple Art into Photo Realistic Landscapes
|
||||
* [Lama Cleaner](https://lama-cleaner-docs.vercel.app/), [Inpaint](https://theinpaint.com/), [Magic Eraser](https://magicstudio.com/magiceraser), [Remover](https://remover.zmo.ai/), [IOPaint](https://github.com/Sanster/IOPaint), [Cleanup.pictures](https://cleanup.pictures/), [ObjectRemover](https://objectremover.com/), [Segment Anything](https://segment-anything.com/), [ImageCleanr](https://www.imagecleanr.com), [Samist](https://github.com/dibrale/samist), [hama](https://www.hama.app/) or [sd-webui-segment-anything](https://github.com/continue-revolution/sd-webui-segment-anything) - Image Segmentation / Object Removal
|
||||
* [Supershots](https://superblog.ai/supershots/) - Add Backgrounds to Images
|
||||
* [Image Splitter](https://ruyili.ca/image-splitter/) - Split Images into Tiles
|
||||
* [PicFont](https://picfont.com/) - Add Text to Images
|
||||
@ -39,13 +40,14 @@
|
||||
* [Pinta Project](https://www.pinta-project.com/)
|
||||
* [Luna Paint](https://marketplace.visualstudio.com/items?itemName=Tyriar.luna-paint) - VS Code
|
||||
* [Gimel Studio](https://gimelstudio.github.io/)
|
||||
* [MagickUtils](https://github.com/n00mkrad/magick-utils)
|
||||
|
||||
***
|
||||
|
||||
## ▷ Online Editors
|
||||
|
||||
* ⭐ **[Lunapic](https://lunapic.com/)**
|
||||
* ⭐ **[Photopea](https://www.photopea.com/)** / [Ad Script](https://greasyfork.org/en/scripts/449961), [2](https://greasyfork.org/en/scripts/469575)
|
||||
* [Photopea](https://www.photopea.com/) / [Ad Script](https://greasyfork.org/en/scripts/449961), [2](https://greasyfork.org/en/scripts/469575)
|
||||
* [Pixlr](https://pixlr.com/)
|
||||
* [Photomate](https://photomate.dev/)
|
||||
* [BeFunky](https://www.befunky.com/)
|
||||
@ -317,7 +319,6 @@
|
||||
* [ArtBoard](https://artboard.studio/) - Design App
|
||||
* [VistaCreate](https://create.vista.com/) - Design App
|
||||
* [PosterMyWall](https://www.postermywall.com/) - Design App
|
||||
* [Kittl](https://app.kittl.com/) - Design App
|
||||
* [Kosmik](https://www.kosmik.app/) - Design Asset Manager
|
||||
* [Venngage](https://venngage.com/) - Infographic Design
|
||||
* [Bannery](https://bannery.app/) - Banner Design
|
||||
@ -397,7 +398,6 @@
|
||||
* [GraphixTree](https://graphixtree.com/)
|
||||
* [PSDLY](https://www.psdly.com/)
|
||||
* [Heroturko](https://heroturko1.com/)
|
||||
* [Unblast](https://unblast.com/)
|
||||
* [CGArchives](https://cgarchives.com/)
|
||||
* [CGPlugin](https://t.me/s/cgplugin)
|
||||
* [SearchGFX](https://searchgfx.com/)
|
||||
@ -467,7 +467,7 @@
|
||||
|
||||
# ► Download Images
|
||||
|
||||
* 🌐 **[2ndBrain](https://rentry.co/2ndBrain)** or [designer](https://start.me/p/jj0JAp/designer) - Image Download Site Indexes
|
||||
* 🌐 **[2ndBrain](https://rentry.co/2ndBrain)** or [designer](https://start.me/p/jj0JAp/designer) - Image Download Site Indexs
|
||||
* ↪️ **[Image Download Extensions](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_image_download_extensions)**
|
||||
* ↪️ **[Random Images](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_random_generators)**
|
||||
* ↪️ **[PNG Images / Clipart](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_png_images_.2F_clipart)**
|
||||
@ -596,18 +596,20 @@
|
||||
* ⭐ **[ImgOps](https://imgops.com/)** - Image Operations Meta-Tool
|
||||
* ⭐ **[AntiDupl](https://github.com/ermig1979/AntiDupl)** or [cbird](https://github.com/scrubbbbs/cbird) - Duplicate Image Removers
|
||||
* ⭐ **[Muzli](https://search.muz.li/)** - Design Inspiration Search
|
||||
* [PicSynth](https://www.picsynth.me/), [WebOasis Editors](https://weboasis.app/editors/), [RedKetchup](https://redketchup.io/), [Img2Go](https://www.img2go.com/), [fffuel](https://fffuel.co/) or [Mara](https://mara.photos/) - Multi-Tool Sites
|
||||
* [WebOasis Editors](https://weboasis.app/editors/), [RedKetchup](https://redketchup.io/), [Img2Go](https://www.img2go.com/), [fffuel](https://fffuel.co/) or [Mara](https://mara.photos/) - Multi-Tool Sites
|
||||
* [PhotoFeeler](https://www.photofeeler.com/) - Get Photo Feedback
|
||||
* [Picviewer CE+](https://github.com/hoothin/UserScripts/tree/master/Picviewer%20CE+) - Turn Webpages into Image Galleries
|
||||
* [Binternet](https://github.com/Ahwxorg/Binternet) - Pinterest Frontend
|
||||
* [/r/Photography Guide](https://www.reddit.com/r/photography/wiki/introduction) - Photography / Camera Guide
|
||||
* [PhotoEphemeris](https://photoephemeris.com/) - Photography Sunlight Calculator
|
||||
* [DataFilm](http://datafilm.io/) - Notebook for Film Photographers
|
||||
* [fSpy](https://fspy.io/) - Still Image Camera Matching
|
||||
* [GlanceBack](https://glanceback.info/) - Daily Webcam Photo Journal
|
||||
* [Image Color Summarizer](http://mkweb.bcgsc.ca/color-summarizer/) - Image Color Summarizer
|
||||
* [Image Colors](https://franciscouzo.github.io/image_colors/) - Image Color Scatter Plot
|
||||
* [Image Pixel Sorter](http://birdhat.org/misc/sort-pixels/) - Sort Pixels of Images
|
||||
* [odiff](https://github.com/dmtrKovalenko/odiff) or [Image Comparison Tool](https://jklgit.github.io/Image-Comparison-in-Browser/index.html) - Image Differences / Comparisons
|
||||
* [FontAwesomePS](http://creativedo.co/FontAwesomePS) - Photoshop Icon Manager
|
||||
* [Adobe Bridge](https://adobe.com/products/bridge.html) - Adobe Assets Manager
|
||||
* [detectron2](https://detectron2.readthedocs.io/) - Object / Human Detection
|
||||
* [behind!](https://github.com/kubuzetto/behind) - View Background Images
|
||||
@ -625,7 +627,7 @@
|
||||
* [FaceSwapApp](https://face-swap.app/) / [Discord](https://discord.gg/D8wYxUvwTD), [Swapface](https://swapface.org/) / [Discord](https://discord.com/invite/5yPew6Cy6a), [faceswap](https://faceswap.dev/), [AIFaceSwap](https://aifaceswap.io/), [face-swap](https://face-swap.io/), [Swapper](https://icons8.com/swapper) or [FaceFusion](https://github.com/facefusion/facefusion) - Face Swapping
|
||||
* [WiseTagger](https://github.com/0xb8/WiseTagger) - Image Tagger
|
||||
* [BooruDatasetTagManager](https://github.com/starik222/BooruDatasetTagManager) - Booru Image Tagger
|
||||
* [Cluttr](https://gitlab.com/bearjaws/cluttr), [Exif Sorter](https://www.amok.am/en/freeware/amok_exif_sorter/) or [TagStudio](https://github.com/TagStudioDev/TagStudio) - Image File Organizers / Managers
|
||||
* [Cluttr](https://gitlab.com/bearjaws/cluttr) or [TagStudio](https://github.com/TagStudioDev/TagStudio) - Image File Organizers
|
||||
* [Allusion](https://allusion-app.github.io/) - Reference Image Manager
|
||||
* [DigicamControl](https://digicamcontrol.com/) - Camera Controller
|
||||
* [Camera Wiki](http://camera-wiki.org/) - Camera Model Wiki
|
||||
@ -639,21 +641,14 @@
|
||||
|
||||
## ▷ Image to Text / OCR
|
||||
|
||||
* ↪️ **[AI Chatbots](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/ai#wiki_.25B7_online_chatbots)** - Most Chatbots have Built-in Image to Text
|
||||
* ⭐ **[Capture2Text](https://capture2text.sourceforge.net/)** - OCR Desktop App
|
||||
* ⭐ **[Text Grab](https://github.com/TheJoeFin/Text-Grab)** - Minimal OCR Windows Tool
|
||||
* [i2ocr](https://www.i2ocr.com/) or [OCR.SPACE](https://ocr.space/) - Online OCRs
|
||||
* [TextShot](https://github.com/ianzhao05/textshot) - Cross Platform OCR
|
||||
* [ImageScanOCR](https://github.com/ttop32/ImageScanOCR) - Windows OCR Tool
|
||||
* [Handwriting-OCR](https://github.com/Breta01/handwriting-ocr) - Handwriting OCR
|
||||
* [Project Naptha](https://projectnaptha.com/) - Automatic OCR while Browsing Images
|
||||
* [i2ocr](https://www.i2ocr.com/) - Online OCR
|
||||
* [OCR.SPACE](https://ocr.space/) - Online OCR
|
||||
* [2OCR](https://2ocr.com/) - Online OCR
|
||||
* [OnlineOCR](https://onlineocr.org/) - Online OCR
|
||||
* [NewOCR](https://www.newocr.com/) - Online OCR
|
||||
* [Extract Text from Image](https://brandfolder.com/workbench/extract-text-from-image) - Online OCR
|
||||
* [ImageToText](https://www.imagetotext.info/) - Online OCR
|
||||
* [OnlineOCR](https://www.onlineocr.net/) - Online OCR
|
||||
* [2OCR](https://2ocr.com/), [OnlineOCR](https://onlineocr.org/), [NewOCR](https://www.newocr.com/), [Extract Text from Image](https://brandfolder.com/workbench/extract-text-from-image), [ImageToText](https://www.imagetotext.info/) or [OnlineOCR](https://www.onlineocr.net/) - Online OCRs
|
||||
|
||||
***
|
||||
|
||||
@ -695,7 +690,6 @@
|
||||
* [Photoview](https://github.com/photoview/photoview)
|
||||
* [Photonix](https://photonix.org/)
|
||||
* [photos](https://github.com/nextcloud/photos/)
|
||||
* [imagestore](https://github.com/gregordr/imagestore)
|
||||
* [Memories](https://memories.gallery/)
|
||||
* [Piwigo](https://piwigo.org/)
|
||||
* [PiGallery 2](https://bpatrik.github.io/pigallery2/)
|
||||
@ -705,7 +699,6 @@
|
||||
* [Photofield](https://github.com/SmilyOrg/photofield)
|
||||
* [Google Photos Toolkit](https://github.com/xob0t/Google-Photos-Toolkit) - Manage / Delete Google Photos
|
||||
* [Google Takeout](https://takeout.google.com/) - Export from Google Photos / [Script](https://github.com/TheLastGimbus/GooglePhotosTakeoutHelper)
|
||||
* [GPhotos Guide](https://github.com/g8row/gphotos-guide) - Unlimited Google Photos Storage Guide
|
||||
|
||||
***
|
||||
|
||||
@ -726,7 +719,6 @@
|
||||
* [pasteboard](https://www.pasteboard.co/)
|
||||
* [picsur](https://picsur.org/)
|
||||
* [vgy](https://vgy.me/)
|
||||
* [Catimage](https://catimages.org/)
|
||||
* [i](https://tikolu.net/i/)
|
||||
* [tixte](https://tixte.com/)
|
||||
* [linkpicture](https://www.linkpicture.com/)
|
||||
@ -774,7 +766,7 @@
|
||||
* [Colors Wall](https://colorswall.com/) or [ColorKit](https://colorkit.co/color-palette-generator/) - Generate Random Color Palettes
|
||||
* [Color Palette Generator](https://www.degraeve.com/color-palette) or [Color Picker](https://imagecolorpicker.com/) - Generate Color Palettes from Images
|
||||
* [Color Kit](https://colorkit.io/) - Generate Color Palettes by Mixing 2 Colors
|
||||
* [Pigment](https://pigment.shapefactory.co/), [Eva Design System](https://colors.eva.design/), [Scale](https://hihayk.github.io/scale/), [copypalette](https://copypalette.app/), [Personal Color Analysis](https://www.personal-color-analysis.com/) or [Huey](https://huey.design/) - Simple Color Palette Generators
|
||||
* [Pigment](https://pigment.shapefactory.co/), [Eva Design System](https://colors.eva.design/), [Scale](https://hihayk.github.io/scale/), [copypalette](https://copypalette.app/) or [Huey](https://huey.design/) - Simple Color Palette Generators
|
||||
* [ColorBox](https://colorbox.io/), [hue.tools](https://hue.tools/), [Randoma11y](https://randoma11y.com/), [accessiblepalette](https://accessiblepalette.com/) or [colorcolor](https://colorcolor.in/) - Advanced Color Palette Generators
|
||||
* [Good Palette](https://goodpalette.io/), [Huemint](https://huemint.com/), [AI Colors](https://aicolors.co/) or [PaletteMaker](https://palettemaker.com/) - Generate UI Color Palettes
|
||||
* [Couleur.io](https://couleur.io/) - CSS Color Palettes Generator
|
||||
@ -807,7 +799,7 @@
|
||||
* 🌐 **[Photo OSINT](https://start.me/p/0PgzqO/photo-osint)** - Image OSINT Resources
|
||||
* ⭐ **[Fawkes](http://sandlab.cs.uchicago.edu/fawkes/)** or **[Lowkey](https://lowkey.umiacs.umd.edu/)** - Facial Cloaking
|
||||
* ⭐ **[FotoForensics](https://www.fotoforensics.com/)** or [Forensically](https://29a.ch/photo-forensics/) - Photo Forensics Tool
|
||||
* ⭐ **[GeoSpy](https://geospy.web.app/)**, [Picarta](https://picarta.ai/) / [Discord](https://discord.gg/g5BAd2UFbs) or [GeoEstimation](https://labs.tib.eu/geoestimation) - Estimate Image Geolocation
|
||||
* ⭐ **[GeoSpy](https://geospy.web.app/)** or [GeoEstimation](https://labs.tib.eu/geoestimation) - Estimate Image Geolocation
|
||||
* [Image Identification Project](https://www.imageidentify.com/) - Image Identification Tool
|
||||
* [StegOnline](https://stegonline.georgeom.net/image), [OpenStego](https://www.openstego.com/), [OpenPuff](https://embeddedsw.net/OpenPuff_Steganography_Home.html), [Steganography-PNG](https://pedrooaugusto.github.io/steganography-png/) / [GitHub](https://github.com/pedrooaugusto/steganography-png), [ImSter](https://github.com/DJayalath/ImSter), [stegano](https://bztsrc.gitlab.io/stegano/) or [stegpy](https://github.com/dhsdshdhk/stegpy) - Images Steganography Tools
|
||||
* [Aperisolve](https://aperisolve.fr/) / [2](https://www.aperisolve.com/) or [stegextract](https://github.com/evyatarmeged/stegextract) - Steganography Analysis Tool
|
||||
@ -817,7 +809,7 @@
|
||||
* [Schizoware](https://sourceforge.net/projects/schizoware/) - Image Name / Hash Randomizer
|
||||
* [BetterCensorship](https://bc.betterrepack.com/) - Censor and De-censor Images
|
||||
* [ViewEXIF](https://www.imgonline.com.ua/eng/exif-info.php), [Jimpl](https://jimpl.com/), [ExifData](https://exifdata.com/), [OnlineEXIFViewer](https://onlineexifviewer.com/), [ExifLooter](https://github.com/aydinnyunus/exifLooter), [CameraSummary](https://camerasummary.com/) or [JPEGsnoop](https://www.impulseadventure.com/photo/jpeg-snoop.html) - EXIF / Metadata Viewers
|
||||
* [exiftool](https://exiftool.org/), [2](https://github.com/FrankBijnen/ExifToolGui/), [ExifCleaner](https://exifcleaner.com/), [EXIFRemove](https://www.exifremove.com/), [scrambled-exif](https://gitlab.com/juanitobananas/scrambled-exif), [Metadata-Remover](https://github.com/Anish-M-code/Metadata-Remover), [adarsus](https://www.adarsus.com/en/remove-metadata-online-document-image-video/) or [VerExif](https://www.verexif.com/en/) - Remove Meta / EXIF Data
|
||||
* [exiftool](https://exiftool.org/), [ExifCleaner](https://exifcleaner.com/), [EXIFRemove](https://www.exifremove.com/), [scrambled-exif](https://gitlab.com/juanitobananas/scrambled-exif), [Metadata-Remover](https://github.com/Anish-M-code/Metadata-Remover), [adarsus](https://www.adarsus.com/en/remove-metadata-online-document-image-video/) or [VerExif](https://www.verexif.com/en/) - Remove Meta / EXIF Data
|
||||
* [Pic2Map](https://www.pic2map.com/) - Image EXIF data viewer with GPS support
|
||||
* [TheExifer](https://www.thexifer.net/index.php), [Photini](https://github.com/jim-easterbrook/Photini) - Image EXIF Data Editors
|
||||
* [Base64 Image](https://www.base64-image.de/) - Encrypt / Decrypt Images
|
||||
|
4
index.md
4
index.md
@ -8,8 +8,8 @@ hero:
|
||||
text: freemediaheckyeah
|
||||
tagline: The largest collection of free stuff on the internet!
|
||||
prelink:
|
||||
title: Check out Retro Rewind!
|
||||
link: /posts/Retro-Rewind
|
||||
title: Monthly Updates [June 2024]
|
||||
link: /posts/june-2024
|
||||
image:
|
||||
src: /test.png
|
||||
alt: FMHY Icon
|
||||
|
10
package.json
10
package.json
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "fmhy",
|
||||
"type": "module",
|
||||
"packageManager": "pnpm@9.4.0",
|
||||
"packageManager": "pnpm@9.0.4",
|
||||
"scripts": {
|
||||
"docs:dev": "vitepress dev",
|
||||
"docs:build": "vitepress build",
|
||||
@ -12,9 +12,7 @@
|
||||
"api:preview": "node .output/server/index.mjs",
|
||||
"og:dev": "x-satori -t ./.vitepress/hooks/Template.vue -c ./.vitepress/hooks/satoriConfig.ts --dev",
|
||||
"format": "prettier -w --cache --check .",
|
||||
"lint": "biome lint .",
|
||||
"lint:fix": "biome lint . --write",
|
||||
"lint:fix:unsafe": "biome lint . --write --unsafe",
|
||||
"lint": "eslint .vitepress -f pretty --cache",
|
||||
"postinstall": "nitropack prepare"
|
||||
},
|
||||
"dependencies": {
|
||||
@ -35,14 +33,14 @@
|
||||
"zod": "^3.22.4"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@biomejs/biome": "^1.8.3",
|
||||
"@iconify-json/carbon": "^1.1.28",
|
||||
"@iconify-json/heroicons-solid": "^1.1.11",
|
||||
"@iconify-json/twemoji": "^1.1.15",
|
||||
"@taskylizard/biome-config": "^1.0.1",
|
||||
"@taskylizard/eslint-config": "^1.1.1",
|
||||
"@types/fs-extra": "^11.0.4",
|
||||
"@types/node": "^20.11.15",
|
||||
"@types/nprogress": "^0.2.3",
|
||||
"eslint": "^8.56.0",
|
||||
"prettier": "^3.2.4",
|
||||
"tailwindcss": "^3.4.4"
|
||||
}
|
||||
|
2837
pnpm-lock.yaml
2837
pnpm-lock.yaml
File diff suppressed because it is too large
Load Diff
@ -1,99 +0,0 @@
|
||||
---
|
||||
title: Mario Kart Wii Retro Rewind
|
||||
description: Retro Rewind
|
||||
date: 2024-07-09
|
||||
next: false
|
||||
aside: left
|
||||
prev: false
|
||||
sidebar: false
|
||||
footer: true
|
||||
---
|
||||
# What is Retro Rewind?
|
||||
|
||||
[Retro Rewind](https://discord.gg/qbr3Y4PJFH) is a Mario Kart Wii custom track distribution that features ***every retro track*** from Super Mario Kart to Mario Kart 7, as well as some from Mario Kart 8 and Mario Kart Tour, totaling 152. Retro Rewind can be played online in public rooms with Dolphin Emulator, a Wii or WiiU.
|
||||
|
||||
It also features many [enhancements](https://ibb.co/RCckmdT) such as:
|
||||
|
||||
* Max VR has been increased from 9999 to 30000.
|
||||
* Thunderclouds are now [Mega Clouds](https://i.imgur.com/8H54rGH.mp4), which give Mega Mushrooms, rather than shrinking.
|
||||
* Added (optional) inside drift to all vehicles, meaning more of them are competitive.
|
||||
* Outside drift bikes have an extra level of mini turbo, and karts have three levels, similar to MK8DX.
|
||||
* Vehicles can brake while drifting, making all tracks playable, and more vehicles viable.
|
||||
* Ability to change or randomize vehicle/character combo between races.
|
||||
* Significantly faster menu animations and load times between races.
|
||||
* A online multiplayer version of Time Trials has been added.
|
||||
* Unpopular modes like 100cc and mirror have been removed from online.
|
||||
|
||||
***
|
||||
|
||||
# PC Setup Guide
|
||||
|
||||
1. Download Mario Kart Wii, or [dump your disc](https://youtu.be/36nNq49tfSM).
|
||||
1. Download [Dolphin](https://dolphin-emu.org/download/) and [extract it](https://fmhy.net/file-tools#file-archivers).
|
||||
1. Open Dolphins controller tab, set [gamecube port](https://i.ibb.co/SXtDkXt/image.png) to standard, press configure, and select your controller in the drop down menu. Go back to the controller tab, set [Wii Remote 1](https://i.ibb.co/wYk0R4L/image.png) to "Emulated Wii Remote," press configure, and select your mouse from the dropdown menu.
|
||||
1. Download [WheelWizard](https://github.com/patchzyy/WheelWizard/releases), go to settings, set the 3 paths, click save, select home, run the installer.
|
||||
1. Go back to settings, select "Launch Mii channel," create a Mii to use for your license, and that's it, you can now launch and play Retro Rewind via WheelWizard!
|
||||
|
||||
***
|
||||
|
||||
# Wii / WiiU Setup Guide
|
||||
|
||||
**Note** - This method requires a disc.
|
||||
|
||||
1. Install the Homebrew Channel using this [guide for Wii](https://wii.hacks.guide/) or this [guide for WiiU](https://youtu.be/w44Iz3HQuIo).
|
||||
1. Download [Retro Rewind](https://discord.gg/UxHmgNdPxw) and drag the files to your SD card.
|
||||
1. Plug your SD card into your Wii and launch Homebrew.
|
||||
1. You can launch Retro Rewind from here, but follow the steps below get get a Wii system channel / updater.
|
||||
1. Launch YAWM Modmii in Homebrew, select your SD card, and install the RetroRewind.wad for the console you're on. Thats it, you now have a Retro Rewind system channel and updater. If the channel updater wont work just download the files manually and replace them in your SD.
|
||||
|
||||
**[Video Guide](https://youtu.be/qH4ou21r8ic)**
|
||||
|
||||
***
|
||||
|
||||
# Things to Note
|
||||
|
||||
* WheelWizard can be slow, especially if you're installing RR for the first time, so it may be worth doing [manually](https://youtu.be/ZiQ7WAOlJOk) instead to speed up the process.
|
||||
|
||||
* You need to turn on things like inside drift, brake drifting, fast menus, and finishing times in the Retro Rewind settings.
|
||||
|
||||
* Retro Rewind uses a modified version of WiiLink, meaning it does NOT require a NAND to play online with Dolphin.
|
||||
|
||||
* If using your mouse as a wiimote isn't working well, try switching to "above tv" in Wii settings.
|
||||
|
||||
* To use a real gamecube controller on PC you'll need an [adapter](https://dolphin-emu.org/docs/guides/how-use-official-gc-controller-adapter-wii-u/).
|
||||
|
||||
* Online multiplayer Time Trials can be enabled in the top right of WheelWizard, or by right clicking mario kart in dolphin, selecting run with riivolution patches, enabling online TTs, and running the game.
|
||||
|
||||
* Open-Host can be enabled by pressing start or + on the Retro WFC friend menu. This will allow anyone to join your games via friend code, even if you don't have them added yourself.
|
||||
|
||||
* If you don't know anything about Mario Kart Wii, or why it has a cult following 16 years after its release, I'd suggest checking out [TWD98](https://www.youtube.com/@TWD98). Troy plays a lot, so its a good way to learn about the game and improve.
|
||||
|
||||
***
|
||||
|
||||
**Official Wiki**
|
||||
|
||||
https://wiki.tockdom.com/wiki/Retro_Rewind
|
||||
|
||||
**Discord Servers**
|
||||
|
||||
main: https://discord.gg/qbr3Y4PJFH
|
||||
|
||||
zpl: https://discord.gg/jczByGAqb6
|
||||
|
||||
**YouTube Channel**
|
||||
|
||||
https://www.youtube.com/@ZPL__/
|
||||
|
||||
**Online Rooms**
|
||||
|
||||
https://kevinvg207.github.io/rr-rooms/
|
||||
|
||||
https://ppeb.me/RetroRewind/
|
||||
|
||||
**Guide Links**
|
||||
|
||||
https://redd.it/1dzerns
|
||||
|
||||
https://fmhy.net/posts/Retro-Rewind
|
||||
|
||||
---
|
@ -1,112 +0,0 @@
|
||||
---
|
||||
title: Monthly Updates [July]
|
||||
description: July 2024 updates.
|
||||
date: 2024-07-01
|
||||
next: false
|
||||
aside: left
|
||||
prev: false
|
||||
sidebar: false
|
||||
footer: true
|
||||
---
|
||||
|
||||
# Tournament Results
|
||||
|
||||
We did another streaming sites tournament to help us better re-order and clean up the section. When we did this publicly the first time there was obvious cheating, so we decided to make this more private, and allowed only members with discord roles to vote. During each round we also had discussions about the sites which can be viewed in our discord polls channel. These discussions were taken into account when reordering, but for the most part we relied on the voting results.
|
||||
|
||||
In the end some sites managed to keep their previous spots, a few have been starred, unstarred, or even removed if they were low quality / broken. If you see a round with no votes either way, it means one of the sites was DQ'd.
|
||||
|
||||
## [Final Results](https://challonge.com/Multi_Host_Streaming.svg) / [Before vs. After](https://i.imgur.com/MXN0mR5.png)
|
||||
|
||||
We'll be doing more tournaments in the future, so make sure to join our discord if you want to be a part of them, and let us know which sections you'd like to see most.
|
||||
|
||||
***
|
||||
|
||||
# Wiki Updates
|
||||
|
||||
- Added [Stremio Tools](https://fmhy.net/videopiracyguide#stremio-tools) section to Streaming.
|
||||
|
||||
- Added [Video Generation](https://fmhy.net/ai#video-generation) section to AI.
|
||||
|
||||
- Added [Audio Transcription](https://fmhy.net/text-tools#audio-transcription) section to Text Tools.
|
||||
|
||||
- Added [System Audio](https://fmhy.net/system-tools#system-audio) and [USB / Bootloaders](https://fmhy.net/system-tools#usb-bootloaders) sections to System Tools.
|
||||
|
||||
- Added [Network Security](https://fmhy.net/adblockvpnguide#network-security) section to Privacy.
|
||||
|
||||
- Added [Fanfiction / Stories](https://fmhy.net/readingpiracyguide#fanfiction-stories) section to Reading.
|
||||
|
||||
- Added [Audio Metadata](https://fmhy.net/audiopiracyguide#audio-metadata) section to Audio.
|
||||
|
||||
- Added [Wayland Compositors](https://fmhy.net/linuxguide#wayland-compositors) section to Linux.
|
||||
|
||||
- Added [Latex Tools](https://fmhy.net/storage#latex-tools) section to Math.
|
||||
|
||||
- Turned [Email Tools](https://fmhy.net/internet-tools#email-tools) into a main section with subsections.
|
||||
|
||||
- Split Subtitle section into [Tools](https://fmhy.net/videopiracyguide#subtitles) and [Downloads](https://fmhy.net/videopiracyguide#download-subtitles).
|
||||
|
||||
- Added multiple (15) new sections to [Dev Tools](https://fmhy.pages.dev/devtools), and cleaned up a lot of old sections.
|
||||
|
||||
- Cleaned up [Video Hosts](https://fmhy.pages.dev/video-tools#video-file-hosts), [Image Optimization](https://fmhy.net/img-tools#image-optimization) and [Icons / Avatars](https://fmhy.net/img-tools#icons-avatars) sections.
|
||||
|
||||
- Started adding Non-English spellings (i.e. Chinese / 汉语方言) to titles in the [Non-Eng section](https://fmhy.pages.dev/non-english). We haven't been able to translate all the sections yet, so if you can help fill in the blanks please send your translations in the comments.
|
||||
|
||||
***
|
||||
|
||||
# Stars Added ⭐
|
||||
|
||||
- Starred [Hidan](https://fmhy.net/file-tools#file-hosts) in File Hosts. Fast, unlimited size, no account required, publishes when they remove files.
|
||||
|
||||
- Starred [Catppuccin](https://fmhy.net/system-tools#custom-themes) in Custom Themes. High quality pastel system app themes.
|
||||
|
||||
- Starred [Bio Link](https://fmhy.net/internet-tools#link-in-bio-sites) in Link in Bio Sites. Feature-rich, nice UI, stood out to us when going through the section.
|
||||
|
||||
- Starred [RetroAchievements](https://fmhy.net/gamingpiracyguide#emulators) in Emulators. Add achievements to retro games / ROMs.
|
||||
|
||||
- Starred [/r/Translator](https://www.reddit.com/r/translator/) in Translators. Allows you to request translations of almost anything.
|
||||
|
||||
- Starred [sdk.vercel](https://fmhy.net/ai#online-chatbots) in Online Chatbots. Chatbot playground with unlimited GPT-4o.
|
||||
|
||||
- Starred [FossifyOrg](https://fmhy.net/android-iosguide#foss-apks) in FOSS APKs. Covers most basic apps, minimal UI.
|
||||
|
||||
- Starred [Universal Android Debloater](https://fmhy.net/android-iosguide#optimization) in Android Optimization. Updated fork of original UAD.
|
||||
|
||||
- Starred [Amarok](https://fmhy.net/android-iosguide#android-privacy) in Android Privacy. Easily hide private files / apps on android.
|
||||
|
||||
- Starred [Sideloadly](https://fmhy.net/android-iosguide#ios-apps) in iOS Apps. Lightweight, simple setup, auto-updates apps.
|
||||
|
||||
- Starred [EeveeSpotify](https://fmhy.net/android-iosguide#ios-audio) in iOS Audio. Updated Spotify premium app now that spotilife has stopped working.
|
||||
|
||||
- Starred [S0undTV](https://fmhy.net/android-iosguide#smart-tv-firestick) in Firestick. Ad-free Twitch for Firestick.
|
||||
|
||||
- Starred [Uncyclopedia](https://fmhy.net/miscguide#random) in Fun Sites.
|
||||
|
||||
- Added star back to [Bloxstrap](https://fmhy.net/gaming-tools#roblox-tools). Most issues are being fixed and repo seems to be active again.
|
||||
|
||||
***
|
||||
|
||||
# Things Removed
|
||||
|
||||
- Unstarred Vimms, they thought it was trolls at first, but now [Lego and Sega](https://i.ibb.co/Dp9Kwk4/image.png) have both joined to take down games.
|
||||
|
||||
- Unstarred XDM + Motrix, neither is updated as often as other big DL managers and XDM gives people issues on mobile.
|
||||
|
||||
- Unstarred SKLauncher, its closed-source, cant download with adblock enabled, and we have better MC launchers listed anyways.
|
||||
|
||||
- Removed PrimeFlix as they've shutdown.
|
||||
|
||||
***
|
||||
|
||||
### [Previous Update Threads](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/updates)
|
||||
|
||||
***
|
||||
|
||||
### RSS Feed: https://fmhy.net/feed.rss
|
||||
|
||||
***
|
||||
|
||||
*Note - These update threads only contains major updates. If you're interested in seeing all minor changes you can follow our [Commits Page](https://github.com/fmhy/FMHYedit/commits/main) on GitHub or [Updates Channel](https://redd.it/17f8msf) in Discord. Also keep in mind that this thread will be deleted and [archived](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/updates) at the end of the month.*
|
||||
|
||||
---
|
||||
|
||||
---
|
33715
single-page
33715
single-page
File diff suppressed because it is too large
Load Diff
@ -1,32 +1,7 @@
|
||||
{
|
||||
"extends": "./.nitro/types/tsconfig.json"
|
||||
// "compilerOptions": {
|
||||
// "verbatimModuleSyntax": true,
|
||||
// "baseUrl": ".",
|
||||
// "module": "esnext",
|
||||
// "target": "esnext",
|
||||
// "lib": ["DOM", "ESNext"],
|
||||
// "strict": true,
|
||||
// "jsx": "preserve",
|
||||
// "esModuleInterop": true,
|
||||
// "skipLibCheck": true,
|
||||
// "moduleResolution": "node",
|
||||
// "resolveJsonModule": true,
|
||||
// "noUnusedLocals": true,
|
||||
// "strictNullChecks": true,
|
||||
// "forceConsistentCasingInFileNames": true,
|
||||
// "sourceMap": true,
|
||||
// "isolatedModules": true
|
||||
// },
|
||||
// "include": [
|
||||
// "**/*.vue",
|
||||
// "**/*.tsx",
|
||||
// "**/*.ts",
|
||||
// ".vitepress/**/**/*.ts",
|
||||
// ".vitepress/**/**/*.tsx",
|
||||
// ".vitepress/**/**/*.vue"
|
||||
// ],
|
||||
// "exclude": ["**/node_modules/**", "dist/**"],
|
||||
// "extensions": [".js", ".ts", ".tsx", ".jsx", ".vue"],
|
||||
// "allowSyntheticDefaultImports": true
|
||||
"extends": "./.nitro/types/tsconfig.json",
|
||||
"compilerOptions": {
|
||||
"verbatimModuleSyntax": true
|
||||
},
|
||||
"include": ["./.vitepress/"]
|
||||
}
|
||||
|
@ -3,9 +3,3 @@ main = ".output/server/index.mjs"
|
||||
workers_dev = true
|
||||
account_id = "fe5d9bd14160b07939282e45f63eb5ad"
|
||||
compatibility_date = "2022-09-10"
|
||||
|
||||
[[unsafe.bindings]]
|
||||
name = "RATE_LIMITER"
|
||||
type = "ratelimit"
|
||||
namespace_id = "1001"
|
||||
simple = { limit = 100, period = 30 }
|
||||
|
Loading…
Reference in New Issue
Block a user