mirror of
https://github.com/fmhy/edit.git
synced 2025-10-13 08:11:07 +11:00
Merge branch 'fmhy:main' into main
This commit is contained in:
commit
295681b5c7
63 changed files with 1910 additions and 1652 deletions
12
.github/CONTRIBUTING.md
vendored
12
.github/CONTRIBUTING.md
vendored
|
@ -17,11 +17,11 @@ Here you'll find some general guidelines for those who would like to start contr
|
|||
|
||||
**Don't submit any of the following:**
|
||||
|
||||
- **💰️ Paid / Trial Sites** - We don't accept any paid or free trial only entries, with the exception of select paid [VPNs](/adblockvpnguide#vpn) and [Debrid](/downloadpiracyguide#leeches-debrid).
|
||||
- **🕹️ Emulators** - Already listed on [Index Sites](/gamingpiracyguide#emulators).
|
||||
- **💰️ Paid / Trial Sites** - We don't accept any paid or free trial only entries, with the exception of select paid [VPNs](/privacy#vpn) and [Debrid](/downloading#leeches-debrid).
|
||||
- **🕹️ Emulators** - Already listed on [Index Sites](/gaming#emulators).
|
||||
- **🌐 Web Browsers** - Good open-source browsers are already listed, so we just accept [indexes](/internet-tools#browser-tools), privacy-focused, and good mobile ones.
|
||||
- **🔻 Leeches** - Unless it's not already listed on existing [Leech Lists](/downloadpiracyguide#leeches-debrid), don't submit these.
|
||||
- **🐧 Linux Distros** - Already listed on [Index Sites](/linuxguide#linux-distros).
|
||||
- **🔻 Leeches** - Unless it's not already listed on existing [Leech Lists](/downloading#leeches-debrid), don't submit these.
|
||||
- **🐧 Linux Distros** - Already listed on [Index Sites](/linux-macos#linux-distros).
|
||||
- **🌍 Non-english Software** - We don't add non-english software sites (APKs, games, torrents, etc.) unless they have a very good reputation.
|
||||
- **🗂️ Coding Libraries** - There's too many of them and there are better places to find them.
|
||||
- **🎲 Mining / Betting Sites** - Don't submit anything related to betting, mining, BINs, CCs, etc.
|
||||
|
@ -101,7 +101,7 @@ If you're going to work on the site itself, or simply want to preview the site a
|
|||
|
||||
#### GitHub Codespaces
|
||||
|
||||
This creates an environment in the browser [(with 60h/month free quota)](https://docs.github.com/en/billing/managing-billing-for-your-products/about-billing-for-github-codespaces#monthly-included-storage-and-core-hours-for-personal-accounts). To use Codespaces, follow these steps:
|
||||
This creates an environment in the browser [(with 60h/month free quota)](https://docs.github.com/en/billing/concepts/product-billing/github-codespaces#free-and-billed-use-by-personal-accounts). To use Codespaces, follow these steps:
|
||||
|
||||
1. Fork the repository by clicking the "Fork" button in the top right.
|
||||
|
||||
|
@ -119,6 +119,6 @@ This creates an environment in the browser [(with 60h/month free quota)](https:/
|
|||
|
||||
#### Local Instance
|
||||
|
||||
Making changes on a local repository may require a basic understanding of Git. You can find learning resources [here](/edupiracyguide#developer-learning).
|
||||
Making changes on a local repository may require a basic understanding of Git. You can find learning resources [here](/educational#developer-learning).
|
||||
|
||||
More info on manual setup can be found [here](/other/selfhosting).
|
|
@ -15,31 +15,31 @@
|
|||
*/
|
||||
const files = (
|
||||
[
|
||||
'adblockvpnguide.md',
|
||||
'privacy.md',
|
||||
'ai.md',
|
||||
'android-iosguide.md',
|
||||
'audiopiracyguide.md',
|
||||
'mobile.md',
|
||||
'audio.md',
|
||||
'beginners-guide.md',
|
||||
'devtools.md',
|
||||
'downloadpiracyguide.md',
|
||||
'edupiracyguide.md',
|
||||
'developer-tools.md',
|
||||
'downloading.md',
|
||||
'educational.md',
|
||||
'file-tools.md',
|
||||
'gaming-tools.md',
|
||||
'gamingpiracyguide.md',
|
||||
'img-tools.md',
|
||||
'gaming.md',
|
||||
'image-tools.md',
|
||||
'internet-tools.md',
|
||||
'linuxguide.md',
|
||||
'miscguide.md',
|
||||
'linux-macos.md',
|
||||
'misc.md',
|
||||
'non-english.md',
|
||||
'readingpiracyguide.md',
|
||||
'reading.md',
|
||||
'social-media-tools.md',
|
||||
'storage.md',
|
||||
'system-tools.md',
|
||||
'text-tools.md',
|
||||
'torrentpiracyguide.md',
|
||||
'unsafesites.md',
|
||||
'torrenting.md',
|
||||
'unsafe.md',
|
||||
'video-tools.md',
|
||||
'videopiracyguide.md'
|
||||
'video.md'
|
||||
] as const
|
||||
).map((file) => ({
|
||||
name: file,
|
||||
|
|
|
@ -31,6 +31,15 @@ export const meta = {
|
|||
}
|
||||
}
|
||||
|
||||
export const excluded = [
|
||||
'readme.md',
|
||||
'single-page',
|
||||
'feedback.md',
|
||||
'index.md',
|
||||
'sandbox.md',
|
||||
'startpage.md'
|
||||
]
|
||||
|
||||
if (process.env.FMHY_BUILD_NSFW === 'false') {
|
||||
consola.info('FMHY_BUILD_NSFW is set to false, disabling NSFW content')
|
||||
meta.build.nsfw = false
|
||||
|
@ -55,6 +64,18 @@ export const feedback = `<a href="/feedback" class="feedback-footer">Made with
|
|||
export const search: DefaultTheme.Config['search'] = {
|
||||
options: {
|
||||
_render(src, env, md) {
|
||||
// Check if current file should be excluded from search
|
||||
const relativePath = env.relativePath || env.path || ''
|
||||
const shouldExclude = excluded.some(excludedFile =>
|
||||
relativePath.includes(excludedFile) ||
|
||||
relativePath.endsWith(excludedFile)
|
||||
)
|
||||
|
||||
// Return empty content for excluded files so they don't appear in search
|
||||
if (shouldExclude) {
|
||||
return ''
|
||||
}
|
||||
|
||||
let contents = src
|
||||
// I do this as env.frontmatter is not available until I call `md.render`
|
||||
if (contents.includes('Beginners Guide'))
|
||||
|
@ -197,7 +218,7 @@ export const sidebar: DefaultTheme.Sidebar | DefaultTheme.NavItemWithLink[] = [
|
|||
items: [
|
||||
{
|
||||
text: '<span class="i-twemoji:name-badge"></span> Adblocking / Privacy',
|
||||
link: '/adblockvpnguide'
|
||||
link: '/privacy'
|
||||
},
|
||||
{
|
||||
text: '<span class="i-twemoji:robot"></span> Artificial Intelligence',
|
||||
|
@ -205,39 +226,39 @@ export const sidebar: DefaultTheme.Sidebar | DefaultTheme.NavItemWithLink[] = [
|
|||
},
|
||||
{
|
||||
text: '<span class="i-twemoji:television"></span> Movies / TV / Anime',
|
||||
link: '/videopiracyguide'
|
||||
link: '/video'
|
||||
},
|
||||
{
|
||||
text: '<span class="i-twemoji:musical-note"></span> Music / Podcasts / Radio',
|
||||
link: '/audiopiracyguide'
|
||||
link: '/audio'
|
||||
},
|
||||
{
|
||||
text: '<span class="i-twemoji:video-game"></span> Gaming / Emulation',
|
||||
link: '/gamingpiracyguide'
|
||||
link: '/gaming'
|
||||
},
|
||||
{
|
||||
text: '<span class="i-twemoji:green-book"></span> Books / Comics / Manga',
|
||||
link: '/readingpiracyguide'
|
||||
link: '/reading'
|
||||
},
|
||||
{
|
||||
text: '<span class="i-twemoji:floppy-disk"></span> Downloading',
|
||||
link: '/downloadpiracyguide'
|
||||
link: '/downloading'
|
||||
},
|
||||
{
|
||||
text: '<span class="i-twemoji:cyclone"></span> Torrenting',
|
||||
link: '/torrentpiracyguide'
|
||||
link: '/torrenting'
|
||||
},
|
||||
{
|
||||
text: '<span class="i-twemoji:brain"></span> Educational',
|
||||
link: '/edupiracyguide'
|
||||
link: '/educational'
|
||||
},
|
||||
{
|
||||
text: '<span class="i-twemoji:mobile-phone"></span> Android / iOS',
|
||||
link: '/android-iosguide'
|
||||
link: '/mobile'
|
||||
},
|
||||
{
|
||||
text: '<span class="i-twemoji:penguin"></span> Linux / macOS',
|
||||
link: '/linuxguide'
|
||||
link: '/linux-macos'
|
||||
},
|
||||
{
|
||||
text: '<span class="i-twemoji:globe-showing-asia-australia"></span> Non-English',
|
||||
|
@ -245,7 +266,7 @@ export const sidebar: DefaultTheme.Sidebar | DefaultTheme.NavItemWithLink[] = [
|
|||
},
|
||||
{
|
||||
text: '<span class="i-twemoji:file-folder"></span> Miscellaneous',
|
||||
link: '/miscguide'
|
||||
link: '/misc'
|
||||
}
|
||||
]
|
||||
},
|
||||
|
@ -279,7 +300,7 @@ export const sidebar: DefaultTheme.Sidebar | DefaultTheme.NavItemWithLink[] = [
|
|||
},
|
||||
{
|
||||
text: '<span class="i-twemoji:camera"></span> Image Tools',
|
||||
link: '/img-tools'
|
||||
link: '/image-tools'
|
||||
},
|
||||
{
|
||||
text: '<span class="i-twemoji:videocassette"></span> Video Tools',
|
||||
|
@ -287,15 +308,15 @@ export const sidebar: DefaultTheme.Sidebar | DefaultTheme.NavItemWithLink[] = [
|
|||
},
|
||||
{
|
||||
text: '<span class="i-twemoji:speaker-high-volume"></span> Audio Tools',
|
||||
link: '/audiopiracyguide#audio-tools'
|
||||
link: '/audio#audio-tools'
|
||||
},
|
||||
{
|
||||
text: '<span class="i-twemoji:red-apple"></span> Educational Tools',
|
||||
link: '/edupiracyguide#educational-tools'
|
||||
link: '/educational#educational-tools'
|
||||
},
|
||||
{
|
||||
text: '<span class="i-twemoji:man-technologist"></span> Developer Tools',
|
||||
link: '/devtools'
|
||||
link: '/developer-tools'
|
||||
}
|
||||
]
|
||||
},
|
||||
|
@ -311,7 +332,7 @@ export const sidebar: DefaultTheme.Sidebar | DefaultTheme.NavItemWithLink[] = [
|
|||
: {},
|
||||
{
|
||||
text: '<span class="i-twemoji:warning"></span> Unsafe Sites',
|
||||
link: '/unsafesites'
|
||||
link: '/unsafe'
|
||||
},
|
||||
{
|
||||
text: '<span class="i-twemoji:package"></span> Storage',
|
||||
|
|
|
@ -134,31 +134,31 @@ export function transform(text: string): string {
|
|||
.replace(/https:\/\/www.reddit.com\/r\/FREEMEDIAHECKYEAH\/wiki\/ai/g, '/ai')
|
||||
.replace(
|
||||
/https:\/\/www.reddit.com\/r\/FREEMEDIAHECKYEAH\/wiki\/adblock-vpn-privacy/g,
|
||||
'/adblockvpnguide'
|
||||
'/privacy'
|
||||
)
|
||||
.replace(
|
||||
/https:\/\/www.reddit.com\/r\/FREEMEDIAHECKYEAH\/wiki\/android/g,
|
||||
'/android-iosguide'
|
||||
'/mobile'
|
||||
)
|
||||
.replace(
|
||||
/https:\/\/www.reddit.com\/r\/FREEMEDIAHECKYEAH\/wiki\/games/g,
|
||||
'/gamingpiracyguide'
|
||||
'/gaming'
|
||||
)
|
||||
.replace(
|
||||
/https:\/\/www.reddit.com\/r\/FREEMEDIAHECKYEAH\/wiki\/reading/g,
|
||||
'/readingpiracyguide'
|
||||
'/reading'
|
||||
)
|
||||
.replace(
|
||||
/https:\/\/www.reddit.com\/r\/FREEMEDIAHECKYEAH\/wiki\/download/g,
|
||||
'/downloadpiracyguide'
|
||||
'/downloading'
|
||||
)
|
||||
.replace(
|
||||
/https:\/\/www.reddit.com\/r\/FREEMEDIAHECKYEAH\/wiki\/torrent/g,
|
||||
'/torrentpiracyguide'
|
||||
'/torrenting'
|
||||
)
|
||||
.replace(
|
||||
/https:\/\/www.reddit.com\/r\/FREEMEDIAHECKYEAH\/wiki\/edu/g,
|
||||
'/edupiracyguide'
|
||||
'/educational'
|
||||
)
|
||||
.replace(
|
||||
/https:\/\/www.reddit.com\/r\/FREEMEDIAHECKYEAH\/wiki\/system-tools/g,
|
||||
|
@ -194,15 +194,15 @@ export function transform(text: string): string {
|
|||
)
|
||||
.replace(
|
||||
/https:\/\/www.reddit.com\/r\/FREEMEDIAHECKYEAH\/wiki\/video/g,
|
||||
'/videopiracyguide'
|
||||
'/video'
|
||||
)
|
||||
.replace(
|
||||
/https:\/\/www.reddit.com\/r\/FREEMEDIAHECKYEAH\/wiki\/audio/g,
|
||||
'/audiopiracyguide'
|
||||
'/audio'
|
||||
)
|
||||
.replace(
|
||||
/https:\/\/www.reddit.com\/r\/FREEMEDIAHECKYEAH\/wiki\/linux/g,
|
||||
'/linuxguide'
|
||||
'/linux-macos'
|
||||
)
|
||||
.replace(
|
||||
/https:\/\/www.reddit.com\/r\/FREEMEDIAHECKYEAH\/wiki\/non-eng/g,
|
||||
|
@ -210,7 +210,7 @@ export function transform(text: string): string {
|
|||
)
|
||||
.replace(
|
||||
/https:\/\/www.reddit.com\/r\/FREEMEDIAHECKYEAH\/wiki\/misc/g,
|
||||
'/miscguide'
|
||||
'/misc'
|
||||
)
|
||||
.replace(
|
||||
/https:\/\/www.reddit.com\/r\/FREEMEDIAHECKYEAH\/wiki\/storage/g,
|
||||
|
@ -218,11 +218,11 @@ export function transform(text: string): string {
|
|||
)
|
||||
.replace(
|
||||
/https:\/\/www.reddit.com\/r\/FREEMEDIAHECKYEAH\/wiki\/dev-tools/g,
|
||||
'/devtools'
|
||||
'/developer-tools'
|
||||
)
|
||||
.replace(
|
||||
/https:\/\/www.reddit.com\/r\/FREEMEDIAHECKYEAH\/wiki\/img-tools/g,
|
||||
'/img-tools'
|
||||
/https:\/\/www.reddit.com\/r\/FREEMEDIAHECKYEAH\/wiki\/image-tools/g,
|
||||
'/image-tools'
|
||||
)
|
||||
|
||||
_text = replaceUnderscore(_text)
|
||||
|
@ -266,7 +266,7 @@ const transformLinks = (text: string): string =>
|
|||
},
|
||||
{
|
||||
name: 'GitLab',
|
||||
find: /\[GitLab\]\(([^\)]*?)\)/gm,
|
||||
find: /(?<=\/ )\[GitLab\]\(([^\)]*?)\)/gm,
|
||||
replace:
|
||||
'<a target="_blank" href="$1"><div alt="GitLab" class="i-carbon:logo-gitlab" /></a>'
|
||||
},
|
||||
|
|
|
@ -20,19 +20,19 @@ interface Header {
|
|||
}
|
||||
|
||||
export const headers: Header = {
|
||||
'adblockvpnguide.md': {
|
||||
'privacy.md': {
|
||||
title: 'Adblocking / Privacy',
|
||||
description: 'Adblocking, Privacy, VPNs, Proxies, Antiviruses'
|
||||
},
|
||||
'ai.md': {
|
||||
title: 'Artificial Intelligence',
|
||||
description: 'Chatbots, Text Generators, Image Generators, ChatGPT Tools'
|
||||
description: 'Chatbots, Text Generators, Image Generators, Chatbot Tools'
|
||||
},
|
||||
'android-iosguide.md': {
|
||||
'mobile.md': {
|
||||
title: 'Android / iOS',
|
||||
description: 'Apps, Jailbreaking, Android Emulators'
|
||||
},
|
||||
'audiopiracyguide.md': {
|
||||
'audio.md': {
|
||||
title: 'Music / Podcasts / Radio',
|
||||
description: 'Stream Audio, Download Audio, Torrent Audio'
|
||||
},
|
||||
|
@ -40,23 +40,23 @@ export const headers: Header = {
|
|||
title: 'Beginners Guide',
|
||||
description: 'A Guide for Beginners to Piracy'
|
||||
},
|
||||
'downloadpiracyguide.md': {
|
||||
'downloading.md': {
|
||||
title: 'Downloading',
|
||||
description: 'Download Sites, Software Sites, Open Directories'
|
||||
},
|
||||
'edupiracyguide.md': {
|
||||
'educational.md': {
|
||||
title: 'Educational',
|
||||
description: 'Courses, Documentaries, Learning Resources'
|
||||
},
|
||||
'gamingpiracyguide.md': {
|
||||
'gaming.md': {
|
||||
title: 'Gaming / Emulation',
|
||||
description: 'Download Games, ROMs, Gaming Tools'
|
||||
},
|
||||
'linuxguide.md': {
|
||||
'linux-macos.md': {
|
||||
title: 'Linux / macOS',
|
||||
description: 'Apps, Software Sites, Gaming'
|
||||
},
|
||||
'miscguide.md': {
|
||||
'misc.md': {
|
||||
title: 'Miscellaneous',
|
||||
description: 'Extensions, Indexes, News, Health, Food, Fun'
|
||||
},
|
||||
|
@ -68,7 +68,7 @@ export const headers: Header = {
|
|||
title: 'Non-English',
|
||||
description: 'International Piracy Sites'
|
||||
},
|
||||
'readingpiracyguide.md': {
|
||||
'reading.md': {
|
||||
title: 'Books / Comics / Manga',
|
||||
description: 'Books, Comics, Magazines, Newspapers'
|
||||
},
|
||||
|
@ -76,11 +76,11 @@ export const headers: Header = {
|
|||
title: 'Gaming Tools',
|
||||
description: 'Gaming Optimization, Game Launchers, Multiplayer'
|
||||
},
|
||||
'devtools.md': {
|
||||
'developer-tools.md': {
|
||||
title: 'Developer Tools',
|
||||
description: 'Git, Hosting, App Dev, Software Dev'
|
||||
},
|
||||
'img-tools.md': {
|
||||
'image-tools.md': {
|
||||
title: 'Image Tools',
|
||||
description: 'Image Editors, Generators, Compress'
|
||||
},
|
||||
|
@ -116,11 +116,11 @@ export const headers: Header = {
|
|||
title: 'Storage',
|
||||
description: 'Sections too big to fit on main pages'
|
||||
},
|
||||
'torrentpiracyguide.md': {
|
||||
'torrenting.md': {
|
||||
title: 'Torrenting',
|
||||
description: 'Torrent Clients, Torrent Sites, Trackers'
|
||||
},
|
||||
'videopiracyguide.md': {
|
||||
'video.md': {
|
||||
title: 'Movies / TV / Anime',
|
||||
description: 'Stream Videos, Download Videos, Torrent Videos'
|
||||
},
|
||||
|
@ -128,7 +128,7 @@ export const headers: Header = {
|
|||
title: 'Base64',
|
||||
description: 'Base64 storage'
|
||||
},
|
||||
'unsafesites.md': {
|
||||
'unsafe.md': {
|
||||
title: 'Unsafe Sites',
|
||||
description: 'Unsafe/harmful sites to avoid.'
|
||||
}
|
||||
|
|
183
docs/ai.md
183
docs/ai.md
|
@ -6,28 +6,29 @@
|
|||
|
||||
# ► AI Chatbots
|
||||
|
||||
* **Note** - It's **never** a good idea to upload personal / confidential files or info to any cloud AI, as many train on your questions and code. If you want privacy, its best to run bots yourself locally, and remember to use throwaway emails or [aliasing](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/internet-tools/#wiki_.25B7_email_aliasing) if signing up for bots.
|
||||
* **Note** - It's **never** a good idea to upload anything personal or confidential to cloud-based AIs, as many of them use your prompts for collecting or training purposes. If you want privacy, its best to run LLMs locally. Remember to use [throwaway emails](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/internet-tools/#wiki_.25B7_temp_mail) or [aliases](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/internet-tools/#wiki_.25B7_email_aliasing) when signing up for online chatbots.
|
||||
|
||||
***
|
||||
|
||||
## ▷ Official Model Sites
|
||||
|
||||
* ⭐ **[AI Studio](https://aistudio.google.com/app/prompts/new_chat)** or [Gemini](https://gemini.google.com/) - Gemini 2.5 Pro / Flash / Google Chatbots / [CLI](https://github.com/google-gemini/gemini-cli) / [Subreddit](https://www.reddit.com/r/Bard/) / [Discord](https://discord.com/invite/gemini)
|
||||
* ⭐ **[Microsoft Copilot](https://copilot.microsoft.com)** - GPT-5 / GPT-4o / o4-mini / [Limit Note](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#copilot--chatgpt-note) / [Discord](https://discord.com/invite/go-copilot)
|
||||
* ⭐ **[DeepSeek](https://chat.deepseek.com/)** - DeepSeek-V3 / DeepSeek-R1 / Unlimited / [Subreddit](https://www.reddit.com/r/DeepSeek/) / [Discord](https://discord.com/invite/Tc7c45Zzu5) / [GitHub](https://github.com/deepseek-ai)
|
||||
* ⭐ **[Grok](https://grok.com/)** - Grok 3 (20 per 2 hours) / Grok 4 (5 per 2 hours) / [Subreddit](https://www.reddit.com/r/grok/) / [Discord](https://discord.com/invite/kqCc86jM55)
|
||||
* ⭐ **[Qwen](https://qwen.ai/home)**, [2](https://chat.qwen.ai/) - Qwen3-235B-A22B-2507 / Qwen 3 Coder / [Discord](https://discord.com/invite/CV4E9rpNSD) / [GitHub](https://github.com/QwenLM)
|
||||
* ⭐ **[Z.ai](https://chat.z.ai/)** - GLM 4.5 Chatbot / [Discord](https://discord.gg/QR7SARHRxK)
|
||||
* [ChatGPT](https://chatgpt.com/) - GPT-5 / GPT-5 mini Chatbot / [Limit Note](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#copilot--chatgpt-note) / [r/OpenAI](https://www.reddit.com/r/OpenAI/) / [r/ChatGPT](https://www.reddit.com/r/ChatGPT/) / [Discord](https://discord.com/invite/openai)
|
||||
* [Kimi](https://kimi.ai/) - Kimi K2 Chatbot / [Subreddit](https://www.reddit.com/r/kimi/) / [Discord](https://discord.gg/TYU2fdJykW) / [GitHub](https://github.com/MoonshotAI)
|
||||
* ⭐ **[Microsoft Copilot](https://copilot.microsoft.com)** - GPT-5 / GPT-4o / o4-mini / [Reasoning](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#better-reasoning) / [Discord](https://discord.com/invite/go-copilot)
|
||||
* ⭐ **[Z.ai](https://chat.z.ai/)** - GLM 4.5 Chatbot / Unlimited / [Discord](https://discord.gg/QR7SARHRxK)
|
||||
* ⭐ **[DeepSeek](https://chat.deepseek.com/)** - DeepSeek-V3.1 / Unlimited / [Subreddit](https://www.reddit.com/r/DeepSeek/) / [Discord](https://discord.com/invite/Tc7c45Zzu5) / [GitHub](https://github.com/deepseek-ai)
|
||||
* ⭐ **[Qwen](https://chat.qwen.ai/)** - Qwen3-235B-A22B-2507 / Qwen3-Max-Preview / [Discord](https://discord.com/invite/CV4E9rpNSD) / [GitHub](https://github.com/QwenLM)
|
||||
* ⭐ **[Grok](https://grok.com/)** - Grok 4 Fast (80 per 20 hours) / Grok 4 (20 per 20 hours) / [Subreddit](https://www.reddit.com/r/grok/) / [Discord](https://discord.com/invite/kqCc86jM55)
|
||||
* ⭐ **[Kimi](https://www.kimi.com/)** - Kimi K2-0905 Chatbot / [Subreddit](https://www.reddit.com/r/kimi/) / [Discord](https://discord.gg/TYU2fdJykW) / [GitHub](https://github.com/MoonshotAI)
|
||||
* [Claude](https://claude.ai/) - Claude 4 Sonnet / Phone # Required / [Usage Tracker](https://github.com/lugia19/Claude-Usage-Extension) / [Subreddit](https://www.reddit.com/r/ClaudeAI/) / [Discord](https://discord.com/invite/6PPFFzqPDZ)
|
||||
* [ChatGPT](https://chatgpt.com/) - GPT-5 / GPT-5 mini Chatbot / [Limits](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#chatgpt-note) / [Reasoning](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#better-reasoning) / [r/OpenAI](https://www.reddit.com/r/OpenAI/) / [r/ChatGPT](https://www.reddit.com/r/ChatGPT/) / [Discord](https://discord.com/invite/openai)
|
||||
* [MiniMax AI](https://chat.minimax.io/) - Minimax-M1 / [Discord](https://discord.com/invite/hailuoai) / [GitHub](https://github.com/MiniMax-AI/MiniMax-M1)
|
||||
* [Solar](https://console.upstage.ai/playground/chat) - Solar Pro 2 Model / No Sign-Up / [Discord](https://discord.com/invite/Cge9FYjV4h)
|
||||
* [StepFun](https://stepfun.ai/) - Step 3 / DeepSeek R1 Chatbot
|
||||
* [Ernie](https://ernie.baidu.com/) - ERNIE X1 Turbo / Baidu's Chatbot / [4.5 Demo](https://huggingface.co/spaces/baidu/ernie_4.5_turbo_demo) / [x1 Demo](https://huggingface.co/spaces/baidu/ernie_x1_turbo_demo) / [Discord](https://discord.gg/3Wb36Zp7)
|
||||
* [Ernie](https://ernie.baidu.com/) - ERNIE X1.1 / Baidu's Chatbot / [4.5 Demo](https://huggingface.co/spaces/baidu/ernie_4.5_turbo_demo) / [x1 Demo](https://huggingface.co/spaces/baidu/ernie_x1_turbo_demo) / [Discord](https://discord.gg/3Wb36Zp7)
|
||||
* [dots.vlm1.inst](https://huggingface.co/spaces/rednote-hilab/dots-vlm1-demo) or [dots-demo](https://huggingface.co/spaces/rednote-hilab/dots-demo) - Dots Chatbots / No Sign-Up
|
||||
* [Apertus](https://chat.publicai.co/) - Apertus 70B / Sign-up Required
|
||||
* [Mistral](https://chat.mistral.ai) - Magistral Medium / Privacy-Focused / [Discord](https://discord.gg/mistralai)
|
||||
* [Reka](https://www.reka.ai/) - Reka Flash 3.1 / Reka's Chatbot / [Discord](https://discord.gg/jtjNSD52mf)
|
||||
* [dots.vlm1.inst](https://huggingface.co/spaces/rednote-hilab/dots-vlm1-demo) or [dots-demo](https://huggingface.co/spaces/rednote-hilab/dots-demo) - Dots Chatbots / No Sign-Up
|
||||
* [Ai2 Playground](https://playground.allenai.org/) - OLMo 2 Chatbot / No Sign-Up / [Discord](https://discord.gg/NE5xPufNwu)
|
||||
|
||||
***
|
||||
|
@ -35,41 +36,61 @@
|
|||
## ▷ Multiple Model Sites
|
||||
|
||||
* 🌐 **[Free LLM API Resources](https://github.com/cheahjs/free-llm-api-resources)** - Chatbot Resources / Mirrors
|
||||
* ⭐ **[LMArena](https://lmarena.ai/?mode=direct)** - Multiple Chatbots / No Sign-Up / [X](https://x.com/lmarena_ai) / [Discord](https://discord.com/invite/lmarena) / [GitHub](https://github.com/lm-sys/FastChat)
|
||||
* [Genspark](https://www.genspark.ai/) - o3 / Gemini 2.5 Pro / [Discord](https://discord.com/invite/CsAQ6F4MPy)
|
||||
* [ISH](https://ish.junioralive.in/) - o1 / Grok 3 / DeepSeek R1 / Multiple Chatbots / [Discord](https://discord.gg/cwDTVKyKJz)
|
||||
* [DuckDuckGo AI](https://duck.ai/) - Multiple Chatbots / o4-Mini / No Sign-Up
|
||||
* [Mirexa](https://mirexa.vercel.app/) - Deepseek R1 / GPT 4.1 / Mistral / Grok 3 mini
|
||||
* [Groq](https://groq.com/) - Kimi K2 / Multiple Chatbots / [Discord](https://discord.gg/invite/groq)
|
||||
* [Gradient](https://chat.gradient.network/) - GPT-OSS-120B / Qwen3-235B-A22B / Utilizes 5 32GB RTX 5090s
|
||||
* [Scira](https://scira.ai/) - Multiple Chatbots / AI Search Engine / No Sign-Up / [GitHub](https://github.com/zaidmukaddam/scira)
|
||||
* [Lambda Chat](https://lambda.chat/chatui/) - Deepseek-R1 / Multiple Chatbots / Unlimited / No Sign-Up
|
||||
* [NVIDIA NIM](https://build.nvidia.com/) - Deepseek-R1 / Multiple Chatbots / No Sign-Up
|
||||
* ⭐ **[LMArena](https://lmarena.ai/?mode=direct)** - Multiple Chatbots / No Sign-Up / [Limits](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#lmarena-note) / [X](https://x.com/lmarena_ai) / [Discord](https://discord.com/invite/lmarena) / [GitHub](https://github.com/lm-sys/FastChat)
|
||||
* [Yupp.ai](https://yupp.ai/) - o3 Pro / Claude 4.1 Opus / Grok 4 / Gemini 2.5 Pro / DeepSeek V3.1 / Google Login Require
|
||||
* [ISH](https://ish.junioralive.in/) - GPT-5 / Grok 4 / Kimi K2 / Multiple Chatbots / [Discord](https://discord.gg/cwDTVKyKJz)
|
||||
* [DuckDuckGo AI](https://duck.ai/) - Multiple Chatbots / GPT-5 mini / No Sign-Up
|
||||
* [Genspark](https://www.genspark.ai/) - GPT-5-high / Gemini 2.5 Pro / Grok 4 / [Discord](https://discord.com/invite/CsAQ6F4MPy)
|
||||
* [Together.ai](https://chat.together.ai/) - DeepSeek V3.1 / Qwen 3 235B-2507 / Up-To 110 Daily
|
||||
* [Groq](https://groq.com/) - Kimi K2-0905 / GPT-OSS 120B / [Discord](https://discord.gg/invite/groq)
|
||||
* [Gradient](https://chat.gradient.network/) - GPT-OSS-120B / Qwen3-235B-A22B / No Sign-Up
|
||||
* [Scira](https://scira.ai/) - Grok 3 mini / AI Search Engine / No Sign-Up / [GitHub](https://github.com/zaidmukaddam/scira)
|
||||
* [NVIDIA NIM](https://build.nvidia.com/) - DeepSeek V3.1 / Kimi K2 / Multiple Chatbots / No Sign-Up
|
||||
* [AI Assistant](https://aiassistantbot.pages.dev/) - Deepseek-R1 / Qwen QwQ-32B / Multiple Chatbots / No Sign-Up
|
||||
* [FreePass](https://freepass.ai/) - Gemini 2.5 Pro / GPT-4.1
|
||||
* [HiveChat](https://ai.wr.do/chat) - GPT-4o / DeepSeek-R1-32b / Multiple Chatbots / [Discord](https://discord.gg/AYFPHvv2jT) / [GitHub](https://github.com/lobehub/lobe-chat)
|
||||
* [FreePass](https://freepass.ai/) - Gemini 2.5 Pro / GPT-5-chat
|
||||
* [HiveChat](https://ai.wr.do/chat) - Kimi K2 / DeepSeek R1-0528 / Multiple Chatbots / [Discord](https://discord.gg/AYFPHvv2jT) / [GitHub](https://github.com/lobehub/lobe-chat)
|
||||
|
||||
***
|
||||
|
||||
## ▷ Specialized Chatbots
|
||||
|
||||
* 🌐 **[Awesome AI Web Search](https://github.com/felladrin/awesome-ai-web-search), [2](https://huggingface.co/spaces/Felladrin/awesome-ai-web-search)** - AI Search Engine Index
|
||||
* ⭐ **[Perplexity](https://www.perplexity.ai/)** - AI Search Engine / [Enhancements](https://www.cplx.app/) / [Open Source Models](https://labs.perplexity.ai/) / [Discord](https://discord.com/invite/perplexity-ai)
|
||||
* [Google AI Mode](https://google.com/aimode), [2](https://www.google.com/search?udm=50) - AI Search Engine / US Only
|
||||
* ⭐ **[LMArena](https://lmarena.ai/?mode=direct&chat-modality=search)** - AI Search Engine / No Sign-Up / [Limits](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#lmarena-note) / [X](https://x.com/lmarena_ai) / [Discord](https://discord.com/invite/lmarena) / [GitHub](https://github.com/lm-sys/FastChat)
|
||||
* ⭐ **[Perplexity](https://www.perplexity.ai/)** - AI Search Engine / [Enhancements](https://www.cplx.app/) / [Discord](https://discord.com/invite/perplexity-ai)
|
||||
* [Google AI Mode](https://google.com/aimode), [2](https://www.google.com/search?udm=50) - AI Search Engine
|
||||
* [Perplexica](https://github.com/ItzCrazyKns/Perplexica) - FOSS AI Search Engine / Self-Hosted / [Discord](https://discord.gg/26aArMy8tT)
|
||||
* [SciSpace](https://scispace.com/) (No Sign-Up), [Bohrium](https://www.bohrium.com/), [Scinito](https://ekb.scinito.ai/ai/chat) or [Elicit](https://elicit.com/) / [GitHub](https://github.com/elicit) - Research Chatbots
|
||||
* [Learn About](https://learning.google.com/experiments/learn-about) or [Learning Coach](https://gemini.google.com/gem/learning-coach) - Google's Educational Search AIs
|
||||
* [SciSpace](https://scispace.com/) - Research Chatbot / No Sign-Up
|
||||
* [Bohrium](https://www.bohrium.com/) - Research Chatbot
|
||||
* [Scinito](https://ekb.scinito.ai/ai/chat) - Research Chatbot
|
||||
* [Elicit](https://elicit.com/) - Research Chatbot / [GitHub](https://github.com/elicit)
|
||||
* [PrivateGPT](https://privategpt.dev/) - Document Chatbot / Note-Taking / [Discord](https://discord.com/invite/bK6mRVpErU) / [GitHub](https://github.com/zylon-ai/private-gpt)
|
||||
* [NotebookLM](https://notebooklm.google/) - Document Chatbot / Note-Taking / [X](https://x.com/NotebookLM) / [Subreddit](https://www.reddit.com/r/notebooklm/) / [Discord](https://discord.com/invite/notebooklm)
|
||||
* [Onyx](https://www.onyx.app/) - Document Chatbot / Note-Taking / [Discord](https://discord.com/invite/jDnRGhWhg4) / [GitHub](https://github.com/onyx-dot-app/onyx)
|
||||
* [DocsGPT](https://www.docsgpt.cloud/) - Document Chatbot / Note-Taking / [Discord](https://discord.com/invite/n5BX8dh8rU) / [GitHub](https://github.com/arc53/DocsGPT)
|
||||
* [Hyperspace](https://hyper.space/) - P2P AI Network / [GitHub](https://github.com/hyperspaceai)
|
||||
* [PrivateGPT](https://privategpt.dev/) / [Discord](https://discord.com/invite/bK6mRVpErU) / [GitHub](https://github.com/zylon-ai/private-gpt), [NotebookLM](https://notebooklm.google/) / [X](https://x.com/NotebookLM) / [Subreddit](https://www.reddit.com/r/notebooklm/) / [Discord](https://discord.com/invite/notebooklm), [Onyx](https://www.onyx.app/) / [Discord](https://discord.com/invite/jDnRGhWhg4) / [GitHub](https://github.com/onyx-dot-app/onyx) or [DocsGPT](https://www.docsgpt.cloud/) / [Discord](https://discord.com/invite/n5BX8dh8rU) / [GitHub](https://github.com/arc53/DocsGPT) - Document Chatbots / Note-Taking
|
||||
|
||||
***
|
||||
|
||||
## ▷ Local AI Frontends
|
||||
|
||||
* ⭐ **[SillyTavern](https://docs.sillytavern.app/)** - Self-Hosted Interface / [Subreddit](https://www.reddit.com/r/SillyTavernAI/) / [Discord](https://discord.gg/sillytavern) / [GitHub](https://github.com/SillyTavern/SillyTavern)
|
||||
* ⭐ **[Open WebUI](https://openwebui.com/)** - Self-Hosted Interface / [Discord](https://discord.gg/5rJgQTnV4s) / [GitHub](https://github.com/open-webui/open-webui)
|
||||
* [GPT4Free](https://github.com/xtekky/gpt4free) - Desktop App / [Telegram](https://telegram.me/g4f_channel)
|
||||
* [Msty](https://msty.app/) - Download & Run Models Locally / [Discord](https://discord.gg/2QBw6XxkCC)
|
||||
* [Cherry Studio](https://github.com/CherryHQ/cherry-studio) - Desktop App / [Discord](https://discord.gg/wez8HtpxqQ)
|
||||
* [LobeChat](https://lobechat.com/chat) - Desktop App / [Discord](https://discord.gg/AYFPHvv2jT) / [GitHub](https://github.com/lobehub/lobe-chat)
|
||||
* [Noi](https://noib.app/) - Desktop App / [Discord](https://discord.gg/kq2HXcpJSQ) / [GitHub](https://github.com/lencx/Noi)
|
||||
* [Chatbot UI](https://chatbotui.com) - Desktop App / [GitHub](https://github.com/mckaywrigley/chatbot-ui)
|
||||
* [tgpt](https://github.com/aandrew-me/tgpt) - Self-Hosted
|
||||
* [ch.at](https://github.com/Deep-ai-inc/ch.at) - Self-Hosted / Minimal / Lightweight / [Demo](https://ch.at/)
|
||||
|
||||
***
|
||||
|
||||
## ▷ Self-Hosting Tools
|
||||
|
||||
* ⭐ **[Jan](https://jan.ai/)** - Self-Hosted / [Discord](https://discord.com/invite/FTk2MvZwJH) / [GitHub](https://github.com/menloresearch/jan)
|
||||
* ⭐ **[SillyTavern](https://docs.sillytavern.app/)** - Self-Hosted Interface / [Subreddit](https://www.reddit.com/r/SillyTavernAI/) / [Discord](https://discord.gg/sillytavern) / [GitHub](https://github.com/SillyTavern/SillyTavern)
|
||||
* ⭐ **[LM Studio](https://lmstudio.ai/)** - Self-Hosted / [Discord](https://discord.gg/aPQfnNkxGC) / [GitHub](https://github.com/lmstudio-ai)
|
||||
* ⭐ **[Open WebUI](https://openwebui.com/)** - Self-Hosted Interface / [Discord](https://discord.gg/5rJgQTnV4s) / [GitHub](https://github.com/open-webui/open-webui)
|
||||
* ⭐ **[llama.cpp](https://github.com/ggerganov/llama.cpp)** - Self-Hosted Transformer-Based LLMs
|
||||
* ⭐ **[KoboldCpp](https://github.com/LostRuins/koboldcpp)** - llama.cpp with API + GUI / [ROCm](https://github.com/YellowRoseCx/koboldcpp-rocm) / [Colab](https://colab.research.google.com/github/LostRuins/koboldcpp/blob/concedo/colab.ipynb)
|
||||
* ⭐ **[oobabooga](https://github.com/oobabooga/text-generation-webui)** - Self-Hosted Models / [Colab](https://colab.research.google.com/github/pcrii/Philo-Colab-Collection/blob/main/4bit_TextGen_Gdrive.ipynb) / [Subreddit](https://www.reddit.com/r/Oobabooga/) / [Discord](https://discord.gg/jwZCF2dPQN)
|
||||
|
@ -77,9 +98,9 @@
|
|||
* [Petals](https://petals.dev/) - Self-Hosted / [Discord](https://discord.gg/D9MwApKgWa) / [GitHub](https://github.com/bigscience-workshop/petals)
|
||||
* [Leon](https://getleon.ai/) - Self-Hosted / [Discord](https://discord.gg/MNQqqKg) / [GitHub](https://github.com/leon-ai/leon)
|
||||
* [Ollama](https://ollama.com/) - Self-Hosted / [Discord](https://discord.com/invite/ollama) / [GitHub](https://github.com/ollama/ollama)
|
||||
* [tgpt](https://github.com/aandrew-me/tgpt) - Self-Hosted
|
||||
* [ChatRTX](https://www.nvidia.com/en-us/ai-on-rtx/chatrtx/) - Self-Hosted / RTX 30+ Series GPU Only
|
||||
* [LoLLMs Web UI](https://github.com/ParisNeo/lollms-webui) - Self-Hosted / [Discord](https://discord.gg/4rR282WJb6)
|
||||
* [AnythingLLM](https://anythingllm.com/) - Self-Hosted
|
||||
* [AnythingLLM](https://anythingllm.com/) - Self-Hosted / [Discord](https://discord.com/invite/YCtUYD5vBf) / [GitHub](https://github.com/Mintplex-Labs/anything-llm)
|
||||
* [LibreChat](https://librechat.ai/) - Self-Hosted / [Discord](https://discord.com/invite/CEe6vDg9Ky) / [GitHub](https://github.com/danny-avila/LibreChat)
|
||||
* [GPT4All](https://www.nomic.ai/gpt4all) - Self-Hosted / [Discord](https://discord.com/invite/myY5YDR8z8) / [GitHub](https://github.com/nomic-ai/gpt4all)
|
||||
* [llamafile](https://github.com/Mozilla-Ocho/llamafile) - Run LLM with Single Files / [Discord](https://discord.gg/YuMNeuKStr)
|
||||
|
@ -89,9 +110,9 @@
|
|||
## ▷ Roleplaying Chatbots
|
||||
|
||||
* 🌐 **[Sukino-Findings](https://rentry.org/Sukino-Findings)** - AI Roleplay Resources
|
||||
* ⭐ **[PygmalionAI](https://pygmalion.chat/)** - Self-Hosted Roleplaying Models / [Resources](https://rentry.co/PygmalionLinks) / [Subreddit](https://www.reddit.com/r/PygmalionAI/) / [Discord](https://discord.com/invite/pygmalionai) / [GitHub](https://github.com/PygmalionAI)
|
||||
* ⭐ **[PygmalionAI](https://pygmalion.chat/)** - Self-Hosted Roleplaying Models / [Resources](https://rentry.co/pygmalionlinks) / [Subreddit](https://www.reddit.com/r/PygmalionAI/) / [Discord](https://discord.com/invite/pygmalionai) / [GitHub](https://github.com/PygmalionAI)
|
||||
* ⭐ **[FlowGPT](https://flowgpt.com)** - Roleplaying Chatbots / Some NSFW / [Discord](https://discord.com/invite/tWZGzcpTkf)
|
||||
* ⭐ **[Character.AI](https://character.ai/)** - Roleplaying Chatbots / [Extract](https://rentry.org/reverseCAI) / [Subreddit](https://www.reddit.com/r/CharacterAI/) / [Discord](https://discord.com/invite/characterai)
|
||||
* ⭐ **[Character.AI](https://character.ai/)** - Roleplaying Chatbots / [Extract](https://rentry.co/reverseCAI) / [Subreddit](https://www.reddit.com/r/CharacterAI/) / [Discord](https://discord.com/invite/characterai)
|
||||
* ⭐ **[Bot Creation Guide](https://wikia.schneedc.com/bot-creation/intro)** - Character Creation Guide
|
||||
* ⭐ **[Chub](https://chub.ai/)** - Character Cards / Some NSFW / [Subreddit](https://www.reddit.com/r/Chub_AI/) / [Discord](https://discord.gg/chubai) / [GitHub](https://github.com/CharHubAI)
|
||||
* [JanitorAI](https://janitorai.com/) - Roleplaying Chatbots / Some NSFW
|
||||
|
@ -111,16 +132,16 @@
|
|||
|
||||
## ▷ Coding AIs
|
||||
|
||||
* 🌐 **[EvalPlus Leaderboard](https://evalplus.github.io/leaderboard.html)** / [GitHub](https://github.com/evalplus/evalplus), [AIBenchmarks](https://aibenchmarks.net/) / [GitHub](https://github.com/panilya/awesome-ai-benchmarks), [WebDev Arena](https://web.lmarena.ai/), [LiveCodeBench](https://livecodebench.github.io/leaderboard.html), [Aider LLM Leaderboards](https://aider.chat/docs/leaderboards/) or [Big Code Models Leaderboard](https://huggingface.co/spaces/bigcode/bigcode-models-leaderboard) - Coding AI Leaderboards / Benchmarks
|
||||
* 🌐 **[LiveSWEBench](https://liveswebench.ai/), [SWE-bench](https://github.com/princeton-nlp/SWE-bench), [multi-swe-bench](https://github.com/multi-swe-bench/multi-swe-bench) or [SWEBench](https://www.swebench.com/)** - Software Engineering AI Leaderboards / Benchmarks
|
||||
* 🌐 **[Awesome AI Agents](https://github.com/e2b-dev/awesome-ai-agents)** - Coding / Programming AIs / [Discord](https://discord.gg/U7KEcGErtQ)
|
||||
* 🌐 **[Free LLM API Resources](https://github.com/cheahjs/free-llm-api-resources)** - LLM API Resources
|
||||
* ↪️ **[Coding AI Benchmarks](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/ai#wiki_.25B7_coding_ai_benchmarks)**
|
||||
* ⭐ **[Windsurf](https://www.windsurf.com/)** - Coding AI / [Subreddit](https://www.reddit.com/r/windsurf/) / [Discord](https://discord.com/invite/3XFf78nAx5)
|
||||
* ⭐ **[Pieces](https://pieces.app/)** - Multi-LLM Coding AI / GPT-4 / 4o for Free / No Sign-Up / [Discord](https://discord.gg/getpieces)
|
||||
* [Sourcery](https://sourcery.ai/) - Auto-Pull Request Reviews / [GitHub](https://github.com/sourcery-ai/sourcery)
|
||||
* [Devv](https://devv.ai/) - Coding Search Engine / [GitHub](https://github.com/devv-ai/devv)
|
||||
* [Llama Coder](https://llamacoder.together.ai/) - Code Generator / No Sign-Up / [GitHub](https://github.com/Nutlope/llamacoder)
|
||||
* [Roo Code](https://roocode.com/) / [GitHub](https://github.com/RooCodeInc/Roo-Code) or [Cline](https://cline.bot/) / [Discord](https://discord.gg/cline) / [GitHub](https://github.com/cline/cline) - Coding AI
|
||||
* [Qwen Code](https://github.com/QwenLM/qwen-code) - Coding AI
|
||||
* [imgcook](https://imgcook.com) - Coding AI / No Sign-Up / [GitHub](https://github.com/imgcook/imgcook)
|
||||
* [Supermaven](https://supermaven.com/) - Coding AI / No Sign-Up / [Discord](https://discord.com/invite/QQpqBmQH3w)
|
||||
* [OpenHands](https://www.all-hands.dev/) - Coding AI / [Discord](https://discord.gg/ESHStjSjD4) / [GitHub](https://github.com/All-Hands-AI/OpenHands)
|
||||
|
@ -132,6 +153,7 @@
|
|||
* [AI SDK](https://sdk.vercel.ai/) - Coding AI/ [GitHub](https://github.com/vercel/ai)
|
||||
* [Qodo](https://www.qodo.ai/) - Coding AI
|
||||
* [Blackbox](https://www.blackbox.ai/) - Coding AI / No Sign-Up
|
||||
* [Seron](https://www.seron.dev/) - Coding AI
|
||||
* [Denigma](https://denigma.app/) - Coding AI / No Sign-Up / [Discord](https://discord.gg/mZx4REBvKm)
|
||||
* [Aider](https://aider.chat/) - Terminal Coding AI / [Discord](https://discord.com/invite/Y7X7bhMQFV) / [GitHub](https://github.com/Aider-AI/aider)
|
||||
* [Codacy](https://www.codacy.com/) - Code Fixing AI / [GitHub](https://github.com/codacy)
|
||||
|
@ -152,13 +174,6 @@
|
|||
* [tldraw computer](https://computer.tldraw.com/) - Create Component Workflows to Generate or Transform Data / [Discord](https://discord.com/invite/SBBEVCA4PG) / [GitHub](https://github.com/tldraw/tldraw)
|
||||
* [Page Assist](https://github.com/n4ze3m/page-assist), [ChatGPT Box](https://github.com/josStorer/chatGPTBox) or [KeepChatGPT](https://github.com/xcanwin/KeepChatGPT/blob/main/docs/README_EN.md) - Extensions
|
||||
* [LLM](https://llm.datasette.io/) - LLM CLI / [Discord](https://discord.com/invite/RKAH4b8TvE) / [GitHub](https://github.com/simonw/llm)
|
||||
* [GPT4Free](https://github.com/xtekky/gpt4free) - Desktop App / [Telegram](https://telegram.me/g4f_channel)
|
||||
* [Msty](https://msty.app/) - Download & Run Models Locally / [Discord](https://discord.gg/2QBw6XxkCC)
|
||||
* [Cherry Studio](https://github.com/CherryHQ/cherry-studio) - Desktop App / [Discord](https://discord.gg/wez8HtpxqQ)
|
||||
* [LobeChat](https://lobechat.com/chat) - Desktop App / [Discord](https://discord.gg/AYFPHvv2jT) / [GitHub](https://github.com/lobehub/lobe-chat)
|
||||
* [Noi](https://noi.nofwl.com/) - Desktop App / [Discord](https://discord.gg/kq2HXcpJSQ) / [GitHub](https://github.com/lencx/Noi)
|
||||
* [Chatbot UI](https://chatbotui.com) - Desktop App / [GitHub](https://github.com/mckaywrigley/chatbot-ui)
|
||||
* [ChatRTX](https://www.nvidia.com/en-us/ai-on-rtx/chatrtx/) - Desktop App / RTX 30+ Series GPU Only
|
||||
* [ChatPDF](https://www.chatpdf.com/) (No Sign-Up) or [AskYourPDF](https://askyourpdf.com/) - Turn Books / PDFs into Chatbots
|
||||
* [ChatGPT DeMod](https://github.com/4as/ChatGPT-DeMod) - Block ChatGPT Moderation Checks
|
||||
* [Concierge](https://askconcierge.ai/) - Connect Apps to AI
|
||||
|
@ -179,15 +194,15 @@
|
|||
|
||||
***
|
||||
|
||||
* 🌐 **[Jailbreak Listings](https://rentry.org/jb-listing)** - Prompt / Jailbreak Lists
|
||||
* 🌐 **[L1B3RT4S](https://github.com/elder-plinius/L1B3RT4S)** - Jailbreak Prompts / [X](https://x.com/elder_plinius) / [Discord](https://discord.gg/basi)
|
||||
* ⭐ **[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)** / [Discord](https://discord.gg/FUyz9vPAwf) / [GitHub](https://github.com/dair-ai/Prompt-Engineering-Guide), [Google Whitepaper](https://www.kaggle.com/whitepaper-prompt-engineering), [Prompt_Engineering](https://github.com/NirDiamant/Prompt_Engineering), [LearnPrompting](https://learnprompting.org/docs/introduction), [OpenAI Guide](https://platform.openai.com/docs/guides/prompt-engineering) or [Claude Guide](https://docs.anthropic.com/claude/docs/prompt-engineering) / [Discord](https://discord.com/invite/6PPFFzqPDZ) - Prompting Guides
|
||||
* [r/ChatGPTJailbreak](https://www.reddit.com/r/ChatGPTJailbreak/) - AI Jailbreak Community
|
||||
* [ChatGPT System Prompt](https://github.com/LouisShark/chatgpt_system_prompt) - Prompt Directory
|
||||
* [The Big Prompt Library](https://github.com/0xeb/TheBigPromptLibrary) - Prompt Directory
|
||||
* [Jailbreak Listings](https://rentry.org/jb-listing) - Prompt Directory / Jailbreaks
|
||||
* [ChatGPT & Bing AI Prompts](https://github.com/yokoffing/ChatGPT-Prompts) - Prompt Directory
|
||||
* [L1B3RT4S](https://github.com/elder-plinius/L1B3RT4S) - Jailbreak Prompts / [X](https://x.com/elder_plinius) / [Discord](https://discord.gg/basi)
|
||||
* [promptfoo](https://www.promptfoo.dev/) - Prompt Playgrounds / [Discord](https://discord.gg/gHPS9jjfbs) / [GitHub](https://github.com/promptfoo/promptfoo)
|
||||
* [Tensor Trust](https://tensortrust.ai/) / [GitHub](https://github.com/HumanCompatibleAI/tensor-trust) or [Gandalf](https://gandalf.lakera.ai/) / [GitHub](https://github.com/lakeraai) - Prompting Skill Games
|
||||
* [RedTeam Arena](https://redarena.ai/) - AI Jailbreak Game
|
||||
|
@ -197,9 +212,9 @@
|
|||
|
||||
# ► AI Indexes
|
||||
|
||||
* 🌐 **[LLM Explorer](https://llm-explorer.com/)** or [LifeArchitect](https://lifearchitect.ai/models-table/) - LLM Databases / Indexes
|
||||
* 🌐 **[FutureTools](https://www.futuretools.io/?pricing-model=free)** - AI Directory / [Discord](https://discord.gg/WBk4ZDW6A9)
|
||||
* 🌐 **[Google Labs](https://labs.google/)** or [Google Labs FX](https://labs.google/fx) - Google AI Experiments / [Subreddit](https://www.reddit.com/r/labsdotgoogle/) / [Discord](https://discord.gg/googlelabs)
|
||||
* ⭐ **[LLM Explorer](https://llm-explorer.com/)** or [LifeArchitect](https://lifearchitect.ai/models-table/) - LLM Databases / Indexes
|
||||
* ⭐ **[FutureTools](https://www.futuretools.io/?pricing-model=free)** - AI Directory / [Discord](https://discord.gg/WBk4ZDW6A9)
|
||||
* ⭐ **[Google Labs](https://labs.google/)** or [Google Labs FX](https://labs.google/fx) - Google AI Experiments / [Subreddit](https://www.reddit.com/r/labsdotgoogle/) / [Discord](https://discord.gg/googlelabs)
|
||||
* [Perchance](https://perchance.org/generators) / [Discord](https://discord.gg/43qAQEVV9a) or [WebSim](https://websim.com/) / [Subreddit](https://www.reddit.com/r/WebSim/) / [Discord](https://discord.gg/websim) - Simple AI Builders
|
||||
* [YP for AI](https://www.ypforai.com) - AI Directory
|
||||
* [LLM Resources Hub](https://llmresourceshub.vercel.app/) - AI Directory
|
||||
|
@ -217,6 +232,7 @@
|
|||
* ⭐ **[LMArena](https://lmarena.ai/leaderboard)** - Chatbot Leaderboards / Benchmarks / [Discord](https://discord.com/invite/lmarena) / [GitHub](https://github.com/lm-sys/FastChat)
|
||||
* [SEAL LLM Leaderboards](https://scale.com/leaderboard) - Chatbot Leaderboards
|
||||
* [RankedAGI](https://rankedagi.com/) - Chatbot Leaderboards / Benchmarks
|
||||
* [Kaggle Benchmarks](https://www.kaggle.com/benchmarks) - Chatbot Leaderboards / Benchmarks
|
||||
* [WildBench](https://huggingface.co/spaces/allenai/WildBench) - Chatbot Benchmarks / [GitHub](https://github.com/allenai/WildBench)
|
||||
* [Unified-Bench](https://docs.google.com/spreadsheets/d/1Dy64rbMzx5xqTLPsbTKhpUKQS0mvjns2nIS9BWvOCTU/) - Chatbot Benchmarks
|
||||
* [Wolfram LLM Benchmarking Project](https://www.wolfram.com/llm-benchmarking-project/) - Chatbot Leaderboards / Benchmarks
|
||||
|
@ -232,7 +248,21 @@
|
|||
|
||||
***
|
||||
|
||||
# ► Text Generators
|
||||
## ▷ Coding AI Benchmarks
|
||||
|
||||
* ⭐ **[EvalPlus Leaderboard](https://evalplus.github.io/leaderboard.html)** - Coding AI Leaderboard / Benchmarks / [GitHub](https://github.com/evalplus/evalplus)
|
||||
* ⭐ **[LiveSWEBench](https://liveswebench.ai/)** - Software Engineering AI Leaderboard / Benchmarks
|
||||
* [AIBenchmarks](https://aibenchmarks.net/) - Coding AI Leaderboard / Benchmarks / [GitHub](https://github.com/panilya/awesome-ai-benchmarks)
|
||||
* [WebDev Arena](https://web.lmarena.ai/) - Coding AI Leaderboard / Benchmarks
|
||||
* [LiveCodeBench](https://livecodebench.github.io/leaderboard.html) - Coding AI Leaderboard / Benchmarks
|
||||
* [Aider LLM Leaderboards](https://aider.chat/docs/leaderboards/) - Coding AI Leaderboard / Benchmarks
|
||||
* [Big Code Models Leaderboard](https://huggingface.co/spaces/bigcode/bigcode-models-leaderboard) - Coding AI Leaderboard / Benchmarks
|
||||
* [SWEBench](https://www.swebench.com/) - Software Engineering AI Leaderboard / Benchmarks / [GitHub](https://github.com/princeton-nlp/SWE-bench)
|
||||
* [multi-swe-bench](https://github.com/multi-swe-bench/multi-swe-bench) - Software Engineering AI Leaderboard / Benchmarks
|
||||
|
||||
***
|
||||
|
||||
# ► AI Writing Tools
|
||||
|
||||
* ⭐ **[TextFX](https://textfx.withgoogle.com/)** / [GitHub](https://github.com/google/generative-ai-docs/tree/main/demos/palm/web/textfx) or [Rytr](https://rytr.me/) - AI Creative Writing Tools / No Sign-Up
|
||||
* [Scrip AI](https://scripai.com/) (No Sign-Up), [INK](https://app.inkforall.com/tools), [QuickPen AI](https://quickpenai.com/) - Online AI Text Tools
|
||||
|
@ -254,19 +284,17 @@
|
|||
|
||||
* 🌐 **[VBench](https://huggingface.co/spaces/Vchitect/VBench_Leaderboard)** - Video Generation Model Leaderboard
|
||||
* [AI Studio](https://aistudio.google.com/generate-video) - Veo 2 / [Subreddit](https://www.reddit.com/r/Bard/) / [Discord](https://discord.com/invite/gemini)
|
||||
* [Vidu](https://www.vidu.studio/) - 6 Monthly / [Discord](https://discord.gg/3pDU8fmQ8Y)
|
||||
* [Vidu](https://www.vidu.studio/) - 10 Monthly / [Discord](https://discord.gg/3pDU8fmQ8Y)
|
||||
* [Genmo](https://www.genmo.ai/) - 30 Monthly / [GitHub](https://github.com/genmoai/mochi)
|
||||
* [Stable Diffusion Videos](https://github.com/nateraw/stable-diffusion-videos) - Unlimited / [Colab](https://colab.research.google.com/github/nateraw/stable-diffusion-videos/blob/main/stable_diffusion_videos.ipynb)
|
||||
* [PixVerse](https://pixverse.ai/) - 1 Daily / [Discord](https://discord.com/invite/MXHErdJHMg)
|
||||
* [PixVerse](https://pixverse.ai/) - 2 Daily / [Discord](https://discord.com/invite/MXHErdJHMg)
|
||||
* [Wan AI](https://wan.video/) or [Wan 2.1 Fast](https://huggingface.co/spaces/multimodalart/wan2-1-fast) / 10 Daily / Image to Video / [GitHub](https://github.com/Wan-Video/Wan2.1)
|
||||
* [Kling AI](https://klingai.com/) - 8 Monthly / [Discord](https://discord.com/invite/8tj8YjSzKr)
|
||||
* [Dreamina](https://dreamina.capcut.com/ai-tool/home) - 150 Monthly
|
||||
* [Qwen](https://chat.qwen.ai/) - 10 Daily / [Discord](https://discord.com/invite/CV4E9rpNSD) / [GitHub](https://github.com/QwenLM)
|
||||
* [Hailuo AI](https://hailuoai.video/) - 3 Daily / [Discord](https://discord.com/invite/hvvt8hAye6)
|
||||
* [Hailuo AI](https://hailuoai.video/) - Unlimited / [Discord](https://discord.com/invite/hvvt8hAye6)
|
||||
* [Bing Create](https://www.bing.com/images/create) - Unlimited / Sora / No Image Input
|
||||
* [FastVideo](https://fastwan.fastvideo.org/) - Unlimited / [GitHub](https://github.com/hao-ai-lab/FastVideo/)
|
||||
* [Vivago](https://vivago.ai/) - 1 Daily
|
||||
* [LMArena](https://discord.com/invite/lmarena) - 8 Daily / Discord Only / Check #How-To / End-Watermark / [GitHub](https://github.com/lm-sys/FastChat)
|
||||
* [LMArena](https://discord.com/invite/lmarena) - 5 Daily / Discord Only / Check #How-To / End-Watermark / [GitHub](https://github.com/lm-sys/FastChat)
|
||||
* [FramePack](https://github.com/colinurbs/FramePack-Studio) - Desktop App / Local Models / NVIDIA GPU Required
|
||||
* [Eggnog](https://www.eggnog.ai/) - AI Character Video Remixer + Editor
|
||||
|
||||
|
@ -275,30 +303,30 @@
|
|||
# ► Image Generation
|
||||
|
||||
* 🌐 **[Imgsys Rankings](https://imgsys.org/rankings)** - Image Generator Benchmarks / Leaderboards
|
||||
* ⭐ **[LMArena](https://lmarena.ai/?mode=direct&chat-modality=image)** - Multiple Generators / Editing / No Sign-Up / [Discord](https://discord.com/invite/lmarena) / [GitHub](https://github.com/lm-sys/FastChat)
|
||||
* ⭐ **[AI Studio](https://aistudio.google.com/generate-image)**, [Whisk](https://labs.google/fx/en/tools/whisk) or [Gemini](https://gemini.google.com/) - Imagen 4 + Ultra / Editing (2.0 Flash) / Unlimited / Region-Based / [Discord](https://discord.com/invite/gemini)
|
||||
* ⭐ **[AI Studio](https://aistudio.google.com/generate-image)**, [Gemini](https://gemini.google.com/), or [Whisk](https://labs.google/fx/en/tools/whisk) - nano-banana (editing) / Imagen 4 + Ultra / 100 per day (Gemini) / Region-Based / [Discord](https://discord.com/invite/gemini)
|
||||
* ⭐ **[LMArena](https://lmarena.ai/?mode=direct&chat-modality=image)** - Multiple Generators / Editing / Google Login After 3 / [Discord](https://discord.com/invite/lmarena) / [GitHub](https://github.com/lm-sys/FastChat)
|
||||
* ⭐ **[Qwen](https://chat.qwen.ai/)** / 30 Per 24 Hours / Editing / [Discord](https://discord.com/invite/CV4E9rpNSD) / [GitHub](https://github.com/QwenLM)
|
||||
* ⭐ **[ImageFX](https://labs.google/fx/tools/image-fx)** - Imagen 3 / Unlimited / Region-Based / [Discord](https://discord.com/invite/googlelabs)
|
||||
* ⭐ **[Qwen](https://chat.qwen.ai/)** / Unlimited / Editing / [Discord](https://discord.com/invite/CV4E9rpNSD) / [GitHub](https://github.com/QwenLM)
|
||||
* ⭐ **[Grok](https://grok.com/)** / 20 Per 2 Hours / Editing / [Subreddit](https://www.reddit.com/r/grok/) / [Discord](https://discord.com/invite/kqCc86jM55)
|
||||
* ⭐ **[Mage](https://www.mage.space/)** / [Discord](https://discord.com/invite/GT9bPgxyFP)
|
||||
* ⭐ **[Mage](https://www.mage.space/)** / Flux Schnell / [Discord](https://discord.com/invite/GT9bPgxyFP)
|
||||
* ⭐ **[FLUX.1 Schnell](https://huggingface.co/spaces/black-forest-labs/FLUX.1-schnell)**, [FLUX.1-Kontext-Dev](https://huggingface.co/spaces/black-forest-labs/FLUX.1-Kontext-Dev) or [FLUX-Pro-Unlimited](https://huggingface.co/spaces/NihalGazi/FLUX-Pro-Unlimited) / [Limits](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#hugging-face-warning) / No Sign-Up / Editing (Kontext)
|
||||
* [PigenAI](https://pigenai.onrender.com/) / Unlimited
|
||||
* [Yupp.ai](https://yupp.ai/) / Google Login Required
|
||||
* [Perchance](https://perchance.org/ai-text-to-image-generator), [2](https://perchance.org/ai-photo-generator) / Unlimited / No Sign-Up
|
||||
* [Dreamina](https://dreamina.capcut.com/ai-tool/home) / 60 Daily / Seedream 3.0 / 4 Gens Per Prompt
|
||||
* [ISH](https://ish.junioralive.in/) / Unlimited / GPT Image 1 / Flux Kontext (dev) / Editing / [Discord](https://discord.gg/cwDTVKyKJz)
|
||||
* [ISH](https://ish.junioralive.in/) / Unlimited / Flux Kontext (dev) / Editing / [Discord](https://discord.gg/cwDTVKyKJz)
|
||||
* [imgsys](https://imgsys.org/) / Unlimited / Compare Generators / No Sign-Up
|
||||
* [Art Genie](https://artgenie.pages.dev/) / Unlimited / No Sign-Up
|
||||
* [Bing Create](https://www.bing.com/images/create) - Unlimited / GPT-4o
|
||||
* [Art Genie](https://artgenie.pages.dev/) / Flux Schnell / Unlimited / No Sign-Up
|
||||
* [Bing Create](https://www.bing.com/images/create) - Unlimited / GPT-4o / No Image Input
|
||||
* [Genspark](https://www.genspark.ai/) / Unlimited / Flux Schnell / [Discord](https://discord.com/invite/CsAQ6F4MPy)
|
||||
* [Loras](https://www.loras.dev/) / Unlimited / [GitHub](https://github.com/Nutlope/loras-dev)
|
||||
* [Text2Image](https://taterai.github.io/Text2Image-Generator.html) / Unlimited / Flux Schnell
|
||||
* [Loras](https://www.loras.dev/) / Flux Schnell / Unlimited / [GitHub](https://github.com/Nutlope/loras-dev)
|
||||
* [AIGazou](https://muryou-aigazou.com/) / Unlimited / 10 GPT Image 1 or Seedream 3.0 Daily / [Discord](https://discord.gg/v6KzUbPeKh)
|
||||
* [Recraft](https://www.recraft.ai/) / 50 Daily / [Discord](https://discord.gg/recraft)
|
||||
* [Recraft](https://www.recraft.ai/) / 30 Daily / [Discord](https://discord.gg/recraft)
|
||||
* [Reve Image](https://preview.reve.art/) / 20 Daily / Editing
|
||||
* [Coze](https://space.coze.cn/) / Seadream 4.0 / SoTA Image Gen / 50 Daily / US Select CA
|
||||
* [Ernie](https://ernie.baidu.com/) / Unlimited / Editing
|
||||
* [Kling AI](https://klingai.com/) / 366 Monthly / [Characters](https://huggingface.co/spaces/Kwai-Kolors/Kolors-Character-With-Flux) / [Portraits](https://huggingface.co/spaces/Kwai-Kolors/Kolors-Portrait-with-Flux) / [Discord](https://discord.com/invite/8tj8YjSzKr)
|
||||
* [Remade AI](https://app.remade.ai/) - 40 GPT-Image-1 / 40 Imagen 4 / 80 Flux Kontext / Editing
|
||||
* [AI Gallery](https://aigallery.app/) / Unlimited / No Sign-Up
|
||||
* [Stable Diffusion](https://huggingface.co/spaces/stabilityai/stable-diffusion) / [Discord](https://discord.com/invite/stablediffusion) / [GitHub](https://github.com/Stability-AI/stablediffusion)
|
||||
* [Diffusers Image Outpaint](https://huggingface.co/spaces/fffiloni/diffusers-image-outpaint) - AI Image Extender / [Limits](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#hugging-face-warning)
|
||||
* [Genie](https://lumalabs.ai/genie) / [Discord](https://discord.com/invite/ASbS3EykXm), [Shap-e](https://github.com/openai/shap-e), [Stable Dreamfusion](https://github.com/ashawkey/stable-dreamfusion) or [threestudio](https://github.com/threestudio-project/threestudio) / [Colab](https://colab.research.google.com/github/threestudio-project/threestudio/blob/main/threestudio.ipynb) / [Discord](https://discord.gg/ejer2MAB8N) - 3D Image Generators
|
||||
* [PixelArtGenerator](https://pixelartgenerator.app/) - AI Pixel Art Generator / Converter
|
||||
|
@ -330,35 +358,34 @@
|
|||
|
||||
## ▷ Guides / Tools
|
||||
|
||||
* 🌐 **[Paper2GUI](https://github.com/Baiyuetribe/paper2gui/blob/main/README_en.md)**, [sdg-link](https://rentry.co/sdg-link), [LocalModelsLinks](https://rentry.org/LocalModelsLinks), [SDTools](https://sdtools.org) or [AI Creation Tools](https://docs.google.com/spreadsheets/d/1zYJUM-srhgIA7wrj4Pe4QqepAsHIEC00DydoTPv4PWg/edit#gid=0) - AI Image Resources
|
||||
* 🌐 **[Paper2GUI](https://github.com/Baiyuetribe/paper2gui/blob/main/README_en.md)**, [sdg-link](https://rentry.co/sdg-link), [LocalModelsLinks](https://rentry.org/LocalModelsLinks) or [SDTools](https://sdtools.org) - AI Image Resources
|
||||
* 🌐 **[Civitai](https://civitai.com/)** - SD Model Index / [Subreddit](https://www.reddit.com/r/civitai/) / [Discord](https://discord.gg/UwX5wKwm6c) / [GitHub](https://github.com/civitai/civitai)
|
||||
* [Prompy](https://www.prompy.me/) or [promptoMANIA](https://promptomania.com/) - Prompt Indexes
|
||||
* 🌐 **[Prompy](https://www.prompy.me/)** or [promptoMANIA](https://promptomania.com/) - Prompt Indexes
|
||||
* ⭐ **[A Traveler's Guide to the Latent Space](https://sweet-hall-e72.notion.site/A-Traveler-s-Guide-to-the-Latent-Space-85efba7e5e6a40e5bd3cae980f30235f)** - AI Art Guide
|
||||
* [ImagePromptGuru](https://imagepromptguru.net/) or [CLIP Interrogator](https://huggingface.co/spaces/fffiloni/CLIP-Interrogator-2) / [Colab](https://colab.research.google.com/github/pharmapsychotic/clip-interrogator/blob/main/clip_interrogator.ipynb), [2](https://colab.research.google.com/github/pharmapsychotic/clip-interrogator/blob/open-clip/clip_interrogator.ipynb) - Determine Likely Used Image Prompts
|
||||
* [ImagePromptGuru](https://imagepromptguru.net/) or [CLIP Interrogator](https://huggingface.co/spaces/fffiloni/CLIP-Interrogator-2) / [Colab](https://colab.research.google.com/github/pharmapsychotic/clip-interrogator/blob/main/clip_interrogator.ipynb), [2](https://colab.research.google.com/github/pharmapsychotic/clip-interrogator/blob/open-clip/clip_interrogator.ipynb) - Determine Image Prompts
|
||||
* [SD Dynamic Prompts](https://github.com/adieyal/sd-dynamic-prompts) - Extension for Automatic1111
|
||||
* [AI Horde](https://stablehorde.net/) - Distributed Network of GPUs running Stable Diffusion / [Interface](https://aqualxx.github.io/stable-ui/), [2](https://tinybots.net/artbot), [3](https://artificial-art.eu/) / [Discord](https://discord.gg/3DxrhksKzn) / [GitHub](https://github.com/Haidra-Org/AI-Horde)
|
||||
* [AI Horde](https://stablehorde.net/) - Stable Diffusion GPU Hoarde / [Interface](https://aqualxx.github.io/stable-ui/), [2](https://tinybots.net/artbot), [3](https://artificial-art.eu/) / [Discord](https://discord.gg/3DxrhksKzn) / [GitHub](https://github.com/Haidra-Org/AI-Horde)
|
||||
* [IOPaint](https://www.iopaint.com/) - Image Fill / Item Removal / [Colab](https://colab.research.google.com/drive/1TKVlDZiE3MIZnAUMpv2t_S4hLr6TUY1d?usp=sharing) / [GitHub](https://github.com/Sanster/IOPaint)
|
||||
* [Unstable Diffusion](https://discord.com/invite/unstablediffusion) - AI Image Community
|
||||
* [Generative AI for Beginners](https://microsoft.github.io/generative-ai-for-beginners/) - Generative AI Guides
|
||||
|
||||
***
|
||||
|
||||
## ▷ [Image Restoration](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/img-tools#wiki_.25B7_upscale_.2F_restore)
|
||||
## ▷ [Image Restoration](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/image-tools#wiki_.25B7_upscale_.2F_restore)
|
||||
|
||||
***
|
||||
|
||||
# ► Audio Generation
|
||||
|
||||
* ⭐ **[Suno](https://suno.com/)** - [Guide](https://sunoaiwiki.com/en) / [Discord](https://discord.com/invite/suno)
|
||||
* ⭐ **[Suno](https://suno.com/)** - 10 Daily / [Guide](https://sunoaiwiki.com/en) / [Discord](https://discord.com/invite/suno)
|
||||
* [MusicFX](https://labs.google/fx/tools/music-fx) / Region-Based
|
||||
* [WolframTones](https://tones.wolfram.com/) / No Sign-Up
|
||||
* [Stable Audio](https://www.stableaudio.com/) / [Discord](https://discord.com/invite/stablediffusion)
|
||||
* [Udio](https://www.udio.com/) / [Discord](https://discord.gg/udio)
|
||||
* [Stable Audio](https://www.stableaudio.com/) / 10 Monthly / [Discord](https://discord.com/invite/stablediffusion)
|
||||
* [Udio](https://www.udio.com/) / 3 Daily / [Discord](https://discord.gg/udio)
|
||||
* [audio visual generator](https://fredericbriolet.com/avg/) / No Sign-Up
|
||||
* [Fake Music Generator](https://www.fakemusicgenerator.com/) / No Sign-Up
|
||||
* [MusicGen](https://huggingface.co/spaces/facebook/MusicGen) / [Limits](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#hugging-face-warning) / No Sign-Up / [Colab](https://colab.research.google.com/drive/1ECmNEoXk8kvnLEMBMF2LY82E7XmIG4yu) / [GitHub](https://github.com/facebookresearch/audiocraft/blob/main/docs/MUSICGEN.md)
|
||||
* [Sonauto](https://sonauto.ai/) / [Discord](https://discord.gg/pfXar3ChH8)
|
||||
* [Beatoven.ai](https://www.beatoven.ai/) / [Discord](https://discord.gg/8nXq56wwJM)
|
||||
* [Sonauto](https://sonauto.ai/) / Unlimited / [Discord](https://discord.gg/pfXar3ChH8)
|
||||
* [Waveformer](https://waveformer.replicate.dev/) / [GitHub](https://github.com/fofr/waveformer)
|
||||
* [SOUNDRAW](https://soundraw.io/) / No Sign-Up
|
||||
* [Mubert](https://mubert.com/)
|
||||
|
@ -382,13 +409,15 @@
|
|||
* [Google Speech Gen](https://aistudio.google.com/generate-speech)
|
||||
* [FakeYou](https://fakeyou.com/) / No Sign-Up / [Discord](https://discord.gg/fakeyou)
|
||||
* [Tortoise TTS](https://github.com/neonbjb/tortoise-tts) / No Sign-Up
|
||||
* [Bark](https://huggingface.co/spaces/suno/bark) / No Sign-Up / [Limits](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#hugging-face-warning) / [Colab](https://colab.research.google.com/drive/1eJfA2XUa-mXwdMy7DoYKVYHI1iTd9Vkt?usp=sharing) / [Discord](https://discord.com/invite/J2B2vsjKuE) / [GitHub](https://github.com/suno-ai/bark)
|
||||
* [Bark](https://github.com/suno-ai/bark) / No Sign-Up / [Limits](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#hugging-face-warning) / [Colab](https://colab.research.google.com/drive/1eJfA2XUa-mXwdMy7DoYKVYHI1iTd9Vkt?usp=sharing) / [Discord](https://discord.com/invite/J2B2vsjKuE)
|
||||
* [TTSOpenAI](https://ttsopenai.com/) or [OpenAI.fm](https://www.openai.fm/) / No Sign-Up / OpenAI's Bot
|
||||
* [GPT-SoVITS](https://github.com/RVC-Boss/GPT-SoVITS) / No Sign-Up
|
||||
* [Kyutai TTS](https://kyutai.org/next/tts) / No Sign-Up
|
||||
* [LazyPy](https://lazypy.ro/tts/) / No Sign-Up / [GitHub](https://github.com/chrisjp/tts)
|
||||
* [Kokoro TTS](https://huggingface.co/spaces/hexgrad/Kokoro-TTS) / No Sign-Up / [Limits](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#hugging-face-warning) / [Discord](https://discord.gg/QuGxSWBfQy) / [GitHub](https://github.com/hexgrad/kokoro)
|
||||
* [Ondoku](https://ondoku3.com/en/) / No Sign-Up
|
||||
* [Speechma](https://speechma.com/) / No Sign-Up
|
||||
* [Kokoro-82M](https://huggingface.co/hexgrad/Kokoro-82M) / No Sign-Up
|
||||
* [Chatterbox](https://huggingface.co/spaces/ResembleAI/Chatterbox) / No Sign-Up / [Limits](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#hugging-face-warning) / [GitHub](https://github.com/resemble-ai/chatterbox)
|
||||
* [AnyVoiceLab](https://anyvoicelab.com/long-form-text-to-speech-converter/) / No Sign-Up
|
||||
* [VoiceCraft](https://github.com/jasonppy/VoiceCraft) / [Colab](https://colab.research.google.com/drive/1IOjpglQyMTO2C3Y94LD9FY0Ocn-RJRg6?usp=sharing)
|
||||
|
@ -411,7 +440,6 @@
|
|||
* ⭐ **[Applio](https://applio.org/)** - Voice Cloning / No Sign-Up / [Discord](https://discord.gg/urxFjYmYYh) / [GitHub](https://github.com/IAHispano/Applio)
|
||||
* ⭐ **[RVC V2](https://github.com/RVC-Project/Retrieval-based-Voice-Conversion-WebUI/blob/main/docs/en/README.en.md)** - RVC V2 Voice Cloning (Locally) / [Colab](https://colab.research.google.com/github/RVC-Project/Retrieval-based-Voice-Conversion-WebUI/blob/main/Retrieval_based_Voice_Conversion_WebUI_v2.ipynb) / [Discord](https://discord.gg/HcsmBBGyVk)
|
||||
* ⭐ **[Voice Changer](https://github.com/w-okada/voice-changer/blob/master/docs_i18n/README_en.md)** - Real-Time Voice Changer (W-Okada) / [Guide](https://rentry.co/VoiceChangerGuide) / [Colab](https://colab.research.google.com/github/w-okada/voice-changer/blob/master/Realtime_Voice_Changer_on_Colab.ipynb)
|
||||
* ⭐ **[Ilaria RVC](https://huggingface.co/spaces/TheStinger/Ilaria_RVC)** - RVC V2 Voice Cloning (Cloud/Colab) / No Sign-Up / [Limits](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#hugging-face-warning)
|
||||
* [Replay](https://www.weights.com/replay) - RVC Desktop App / [Discord](https://discord.gg/A5rgNwDRd4)
|
||||
* [Weights](https://www.weights.com/) / [Subreddit](https://www.reddit.com/r/weights/) / [Discord](https://discord.gg/weights) or [Voice Models](https://voice-models.com/) / [Discord](https://discord.gg/3WJ8r6Bf5A) - AI Voice Models and Guides
|
||||
* [AnyVoiceLab](https://anyvoicelab.com/voice-cloning/) - Voice Cloning / No Sign-Up
|
||||
|
@ -433,7 +461,6 @@
|
|||
* [Remove Vocals](https://www.remove-vocals.com/), [2](https://www.acapella-extractor.com/)
|
||||
* [vocali](https://vocali.se/en)
|
||||
* [mazmazika](https://www.mazmazika.com/)
|
||||
* [Vocal Remover](https://unmix.audio/)
|
||||
* [ezstems](https://ezstems.com/)
|
||||
|
||||
***
|
||||
|
|
|
@ -12,13 +12,12 @@
|
|||
* 🌐 **[/music streaming/](https://dan.valeena.dev/guides/music-streaming/)**, [2](https://rentry.co/musicstreaming) or [Wiki Comparisons](https://en.wikipedia.org/wiki/Comparison_of_music_streaming_services) - Streaming Service Comparisons
|
||||
* ↪️ **[Spotify Clients](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/audio/#wiki_.25BA_spotify_tools)**
|
||||
* ↪️ **[YouTube Music Mobile](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/android/#wiki_.25B7_youtube_music)**
|
||||
* ⭐ **[Custom YouTube Music](https://th-ch.github.io/youtube-music/)** - YouTube Music Client / [Themes](https://github.com/kerichdev/themes-for-ytmdesktop-player/) / [GitHub](https://github.com/th-ch/youtube-music)
|
||||
* ⭐ **[Custom YouTube Music](https://github.com/th-ch/youtube-music)** - YouTube Music Client / [Themes](https://github.com/kerichdev/themes-for-ytmdesktop-player/)
|
||||
* [Deezer](https://www.deezer.com/) - Streaming
|
||||
* [Moosync](https://moosync.app/) - YouTube / Spotify / [Discord](https://discord.gg/HsbqbRune3) / [GitHub](https://github.com/Moosync/Moosync)
|
||||
* [yewtube](https://github.com/mps-youtube/yewtube) - YouTube Music Client
|
||||
* [BetterSoundcloud](https://alirezakj.com/bsc/) - Soundcloud Client / Ad-Free / [GitHub](https://github.com/AlirezaKJ/BetterSoundCloud)
|
||||
* [Nuclear](https://nuclearplayer.com/) - Streaming / [Discord](https://discord.com/invite/JqPjKxE) / [GitHub](https://github.com/nukeop/nuclear)
|
||||
* [DAB Music Player](https://dab.yeet.su/download) - Streaming / Uses Qobuz / [Telegram](https://t.me/+RnrXmKyOPNY0ZGY9) / [Discord](https://discord.com/invite/EBKcDZwEHJ)
|
||||
* [FunkWhale](https://funkwhale.audio/) - Streaming
|
||||
* [MP3Jam](https://www.mp3jam.org/) - Streaming
|
||||
* [Muffon](https://muffon.netlify.app/) - Streaming
|
||||
|
@ -29,9 +28,9 @@
|
|||
|
||||
## ▷ Streaming Sites
|
||||
|
||||
* ⭐ **[YouTube Music](https://music.youtube.com/)**, [Hyperpipe](https://hyperpipe.surge.sh) or [Nonoki](https://nonoki.com/music/) - YouTube Music WebUIs
|
||||
* ⭐ **[YouTube Music](https://music.youtube.com/)** or [Nonoki](https://nonoki.com/music/) - YouTube Music WebUIs
|
||||
* ⭐ **YouTube Music Tools** - [Enhancements](https://themesong.app/), [2](https://github.com/Sv443/BetterYTM) / [Library Delete](https://github.com/apastel/ytmusic-deleter) / [Upload Delete](https://rentry.co/tv4uo) / [Spotify Playlist Import](https://spot-transfer.vercel.app/), [2](https://github.com/mahdi-y/Spotify2YoutubeMusic), [3](https://github.com/linsomniac/spotify_to_ytmusic), [4](https://github.com/sigma67/spotify_to_ytmusic) / [Better Lyrics](https://better-lyrics.boidu.dev/) / [Discord](https://discord.gg/UsHE3d5fWF) / [GitHub](https://github.com/boidushya/better-lyrics)
|
||||
* ⭐ **[DAB Music Player](https://dab.yeet.su/)**, [2](https://dabmusic.xyz/) - Browser Music / Uses Qobuz / Lossless / [Telegram](https://t.me/+RnrXmKyOPNY0ZGY9) / [Discord](https://discord.com/invite/EBKcDZwEHJ)
|
||||
* ⭐ **[DAB Music Player](https://dabmusic.xyz/)** - Browser Music / Uses Qobuz / Lossless / [Telegram](https://t.me/+RnrXmKyOPNY0ZGY9) / [Discord](https://discord.com/invite/EBKcDZwEHJ)
|
||||
* ⭐ **[Reddit Music Player](https://reddit.musicplayer.io/)** - Subreddit Music Player
|
||||
* ⭐ **[SoundCloud](https://soundcloud.com/)** - User Made Songs
|
||||
* [Spotify Web Player](https://open.spotify.com/) / [Enhanced UI](https://senpaihunters.github.io/SpotOn/) / [Lyrics](https://github.com/mantou132/Spotify-Lyrics), [2](https://greasyfork.org/en/scripts/377439) - Browser Music
|
||||
|
@ -42,8 +41,8 @@
|
|||
* [Jamendo](https://www.jamendo.com/) - Browser Music
|
||||
* [SoundClick](https://www.soundclick.com/default.cfm) - Browser Music
|
||||
* [Mixupload](https://mixupload.com/) - Browser Music
|
||||
* [zvu4no](https://zvu4no.org/) - Browser Music / Use Translator
|
||||
* [Tancpol](https://tancpol.net/) - Browser Music / Use Translator
|
||||
* [zvu4no](https://zvu4no.org/) - Browser Music / Use [Translator](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/text-tools/#wiki_.25B7_translators)
|
||||
* [Tancpol](https://tancpol.net/) - Browser Music / Use [Translator](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/text-tools/#wiki_.25B7_translators)
|
||||
* [Saavn Web](https://saavn-web-ui.vercel.app/) - Browser Music / [GitHub](https://github.com/wiz64/saavn-web-ui)
|
||||
* [The Urban Emporium](https://www.youtube.com/@theurbanemporium204/playlists) - Hip-Hop
|
||||
* [DatPiff](https://datpiff.com/) - Hip-Hop / Mixtapes
|
||||
|
@ -83,7 +82,7 @@
|
|||
* ⭐ **[bt.etree](https://bt.etree.org/)** - Concert Recordings / Torrents
|
||||
* ⭐ **[hate5six](https://hate5six.com/)** - Concert Recordings
|
||||
* ⭐ **[BBC Radio 1 Essential Mix](https://rentry.co/FMHYBase64#bbc-essential)** - BBC Essential Mix / [Discovery Guide](https://rentry.co/musicdiscovery#bbc-radio-1-essential-mix)
|
||||
* ⭐ **[MiroPPB](https://miroppb.com/)** / [DL Script](https://pastebin.com/raw/GZ7AvbwV) or [ASOTArchive](http://www.asotarchive.org/) - A State of Trance Archives / DJ Mixes
|
||||
* ⭐ **[MiroPPB](https://miroppb.com/)** / [DL Script](https://rentry.co/7preswd7) or [ASOTArchive](http://www.asotarchive.org/) - A State of Trance Archives / DJ Mixes
|
||||
* [JamBase](https://www.jambase.com/videos) - Concert Recordings
|
||||
* [Relisten](https://relisten.net/) - Concert Recordings / [GitHub](https://github.com/relistennet)
|
||||
* [DimeADozen](http://www.dimeadozen.org/) - Concert Recordings / Torrents
|
||||
|
@ -107,6 +106,7 @@
|
|||
* [ToolDriveProject](https://tooldriveproject.net/) - Tool Live Archive
|
||||
* [RATM.live](https://ratm.live/) - Rage Against the Machine Live Archive
|
||||
* [RHCPLiveArchive](https://www.rhcplivearchive.com/) - Red Hot Chili Peppers Live Archive
|
||||
* [Radio Nowhere](https://rentry.co/FMHYBase64#radio-nowhere) - Bruce Springsteen Concerts / Bootlegs
|
||||
* [Phish.in](https://phish.in/) - Phish Live Archive / [Mobile](https://play.google.com/store/apps/details?id=never.ending.splendor) / [Discord](https://discord.gg/KZWFsNN)
|
||||
* [setlist.fm](https://www.setlist.fm/) - Setlist Database
|
||||
|
||||
|
@ -114,10 +114,7 @@
|
|||
|
||||
## ▷ Radio Streaming
|
||||
|
||||
* 🌐 **[FMSTREAM](https://fmstream.org/)** - Radio Index
|
||||
* 🌐 **[Recommended Radio Streams](https://github.com/deroverda/recommended-radio-streams)** - Radio Index
|
||||
* 🌐 **[List of Internet Radio Stations](https://en.wikipedia.org/wiki/List_of_Internet_radio_stations)** - Radio Index
|
||||
* 🌐 **[Radio Browser](https://www.radio-browser.info/users)** - Radio Index
|
||||
* 🌐 **[FMSTREAM](https://fmstream.org/)**, **[Recommended Streams](https://github.com/deroverda/recommended-radio-streams)**, **[Station Index](https://en.wikipedia.org/wiki/List_of_Internet_radio_stations)** or **[Radio Browser](https://www.radio-browser.info/users)** - Radio Indexes
|
||||
* ↪️ **[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
|
||||
* ⭐ **[Radio Garden](https://radio.garden/)** / [Site Unblock](https://redd.it/18e12gf), [2](https://redd.it/13b53zs) or [RadioCast](https://www.radiocast.co/) - Worldwide Radio Globes
|
||||
* ⭐ **[BBC Sounds](https://www.bbc.co.uk/sounds)** - BBC Live & Catch-up Radio / [Downloader](https://github.com/get-iplayer/get_iplayer)
|
||||
|
@ -169,9 +166,11 @@
|
|||
* [1a Radio](https://www.1aradio.com/) - Online Radio Directory
|
||||
* [Radiodeck](https://www.radiodeck.com/) - Online Radio Player / Directory
|
||||
* [Quasar Radio](https://kuasark.com/en/) - Online Radio Directory
|
||||
* [Freeform Radio](https://www.freeformradio.directory/) - Online Radio Directory
|
||||
* [AccuRadio](https://www.accuradio.com/) - Online Radio
|
||||
* [Q-3](https://www.q-3.eu/) - Online Radio
|
||||
* [DubLab](https://www.dublab.com/) - Online Radio
|
||||
* [BoxRadio](https://boxradio.net/) - Online Radio
|
||||
* [You Radio](https://play.you.radio/) - Online Radio
|
||||
* [Audiophile](https://audiophile.fm/) - Online Radio
|
||||
* [Vidbox Radio](https://vidbox.to/radio) - Online Radio
|
||||
|
@ -212,7 +211,9 @@
|
|||
* ↪️ **[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) / [Audio Download](https://rentry.co/dlspotifypodcast)
|
||||
* ⭐ **[Pocket Casts](https://play.pocketcasts.com/discover)** - Podcasts / [Desktop App](https://pocketcasts.com/downloads/windows/)
|
||||
* [Podchaser](https://podchaser.com/), [Rephonic](https://rephonic.com/graph) or [Listen Notes](https://www.listennotes.com/) - Podcast Databases / Trackers
|
||||
* [Podchaser](https://www.podchaser.com/charts) or [Podstatus](https://podstatus.com/charts) - Podcast Charts / Databases
|
||||
* [Listen Notes](https://www.listennotes.com/) - Podcast Search Engine
|
||||
* [Rephonic](https://rephonic.com/graph) - Find Similar Podcasts
|
||||
* [Apple Podcasts](https://podcasts.apple.com/us/home) - Podcasts
|
||||
* [PodParadise](https://www.podparadise.com/) - Podcasts
|
||||
* [Podbean](https://www.podbean.com/) - Podcasts
|
||||
|
@ -284,7 +285,7 @@
|
|||
|
||||
* 🌐 **[Awesome Spotify Stats](https://github.com/hugo9655/awesome-spotify-stats)** - Listening Statistics Index
|
||||
* ↪️ **[Android](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/android/#wiki_.25BA_android_audio) / [iOS](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/android/#wiki_.25BA_ios_audio)** - Mobile Spotify Patchers
|
||||
* ⭐ **[Spicetify](https://spicetify.app/)** - Spotify Themes & Plugins / [Important Notes](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#spicetify-note) / [Discord](https://discord.gg/VnevqPp2Rr) / [GitHub](https://github.com/spicetify/cli)
|
||||
* ⭐ **[Spicetify](https://spicetify.app/)** - Spotify Themes & Plugins / [Notes](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#spicetify-note) / [Discord](https://discord.gg/VnevqPp2Rr) / [GitHub](https://github.com/spicetify/cli)
|
||||
* ⭐ **[SpotX](https://github.com/SpotX-Official/SpotX)** / [Telegram](https://t.me/SpotxCommunity) or **[BlockTheSpot](https://github.com/mrpond/BlockTheSpot)** / [Discord](https://discord.gg/9tCNMFESuC) - Ad-Free Spotify Patchers
|
||||
* [Lofi](https://www.lofi.rocks/) - Mini Spotify Player Widget / [GitHub](https://github.com/dvx/lofi)
|
||||
* [Trikatuka](https://trikatuka.aknakn.eu/) - Migrate Spotify Data to New Accounts
|
||||
|
@ -331,13 +332,16 @@
|
|||
|
||||
## ▷ Audio Ripping Sites
|
||||
|
||||
* ⭐ **[DAB Music Player](https://dab.yeet.su/)**, [2](https://dabmusic.xyz/) - FLAC / Uses Qobuz / [Desktop App](https://dab.yeet.su/download) / [Telegram](https://t.me/+RnrXmKyOPNY0ZGY9) / [Discord](https://discord.com/invite/EBKcDZwEHJ)
|
||||
* ⭐ **[DAB Music Player](https://dabmusic.xyz/)** - FLAC / Uses Qobuz / [Desktop App](https://dabmusic.xyz/download) / [Telegram](https://t.me/+RnrXmKyOPNY0ZGY9) / [Discord](https://discord.com/invite/EBKcDZwEHJ)
|
||||
* ⭐ **[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 / 320kb / MP3 / FLAC / [Telegram](https://t.me/lucidahasmusic)
|
||||
* ⭐ **[cobalt](https://cobalt.tools/)** - SoundCloud / 320kb / MP3 / Ad-Free / [Instances](https://instances.cobalt.best/) / [X](https://x.com/justusecobalt) / [Discord](https://discord.com/invite/pQPt8HBUPu) / [GitHub](https://github.com/imputnet/cobalt)
|
||||
* ⭐ **[QQDL](https://qqdl.site/)** - Qobuz / [GitHub](https://github.com/QobuzDL/Qobuz-DL)
|
||||
* ⭐ **[squid.wtf](https://squid.wtf/)** - Qobuz / Khinsider / FLAC / [GitHub](https://github.com/QobuzDL/Qobuz-DL)
|
||||
* [Jumo-DL](https://jumo-dl.pages.dev/) - Qobuz
|
||||
* [YTiz](https://ytiz.xyz/) - YouTube / SoundCloud / Bandcamp / 128kb / AAC / [GitHub](https://github.com/tizerk/ytiz)
|
||||
* [AMP3](https://amp3.cc/) - YouTube / 320kb
|
||||
* [EzConv](https://ezconv.com/) - YouTube / 320kb
|
||||
* [cobalt](https://cobalt.tools/) - SoundCloud / 320kb / MP3 / [Instances](https://instances.cobalt.best/) / [X](https://x.com/justusecobalt) / [Discord](https://discord.com/invite/pQPt8HBUPu) / [GitHub](https://github.com/imputnet/cobalt)
|
||||
|
||||
***
|
||||
|
||||
|
@ -390,7 +394,7 @@
|
|||
***
|
||||
|
||||
* 🌐 **[Music Download Guide](https://rentry.co/wheredownloadmusic)** - Downloading Guide / Site Index
|
||||
* ⭐ **[TrackerHub](https://artistgrid.cx/)**, [2](https://trackerhub.cx/) - Unreleased / [Discord](https://discord.gg/trackerhub)
|
||||
* ⭐ **[ArtistGrid](https://artistgrid.cx/)** or [TrackerHub](https://trackerhub.cx/) / [Discord](https://discord.gg/trackerhub) - Unreleased / Check Google Sheets
|
||||
* ⭐ **[Audio Download CSE](https://cse.google.com/cse?cx=006516753008110874046:ibmyuhh72io)** / [CSE 2](https://cse.google.com/cse?cx=006516753008110874046:ohobg3wvr_w) / [CSE 3](https://cse.google.com/cse?cx=32d85b41e2feacd3f) - Multi-Site Search
|
||||
* [r/xTrill](https://reddit.com/r/xTrill) - Download App / [Backup](https://reddit.com/r/xTrillBackup)
|
||||
* [VK::MP3](https://metacpan.org/pod/VK::MP3) - VK MP3 Search Tool
|
||||
|
@ -420,9 +424,8 @@
|
|||
* [FlacMusic](https://www.flacmusic.info/) - FLAC
|
||||
* [Lossless-FLAC](https://lossless-flac.com/) - FLAC
|
||||
* [DiscogC](https://www.discogc.com/) - FLAC
|
||||
* [LosslessAlbums](https://losslessalbums.club/) or [HDMusic](https://hdmusic.cc/) - FLAC
|
||||
* [LosslessAlbums](https://losslessalbums.club/) - FLAC
|
||||
* [QMusic](https://rentry.co/FMHYBase64#qmusic) - MP3 / FLAC
|
||||
* [opendir](https://rentry.co/FMHYBase64#opendir) - MP3
|
||||
* [IntMusic](https://intmusic.net/) - MP3 / FLAC
|
||||
* [Gangster](https://gangster.su/) - MP3 / FLAC
|
||||
* [GetRockMusic](https://getrockmusic.net/) - MP3 / FLAC
|
||||
|
@ -445,6 +448,7 @@
|
|||
|
||||
## ▷ Genre Specific
|
||||
|
||||
* ⭐ **[MiroPPB](https://miroppb.com/)** / [DL Script](https://rentry.co/7preswd7) or [ASOTArchive](http://www.asotarchive.org/) - A State of Trance Archives / DJ Mixes
|
||||
* [Take Metal](https://takemetal.org/) - Metal / MP3
|
||||
* [Metalminos](https://metalminos.net/) - Metal / MP3
|
||||
* [In The Fog](https://in-the-fog.ru/) - Metal / MP3
|
||||
|
@ -469,7 +473,6 @@
|
|||
* [GlobalDJMix](https://globaldjmix.com/) - DJ Mixes / MP3
|
||||
* [oVPN DJ Mixes](https://rentry.co/FMHYBase64#ovpn-dj-mixes) - DJ Mixes
|
||||
* [TestPressing](https://www.testpressing.org/) - Rare DJ Mixes
|
||||
* [MiroPPB](https://miroppb.com/) / [DL Script](https://pastebin.com/raw/GZ7AvbwV) or [ASOTArchive](http://www.asotarchive.org/) - A State of Trance Archives / DJ Mixes
|
||||
* [LOA2K](https://loa2k.neocities.org/) or [Nu Guide](https://nuvaporwave.neocities.org/mirrors.html) - Vaporwave
|
||||
* [inconstant sol](https://inconstantsol.blogspot.com/), [David W. Niven Collection](https://archive.org/details/davidwnivenjazz) or [JazznBlues](https://jazznblues.club/) - Jazz / MP3
|
||||
* [EssentialHouse](https://essentialhouse.club/) - House / MP3
|
||||
|
@ -502,7 +505,7 @@
|
|||
|
||||
# ► Audio Torrenting
|
||||
|
||||
* **Note** - Remember to get a [VPN](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/adblock-vpn-privacy#wiki_.25BA_vpn) before torrenting and [bind it to your client](https://gist.github.com/VVispy/765c6723436f386ef113040f8fc968b8) if it allows.
|
||||
* **Note** - Remember to get a [VPN](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/adblock-vpn-privacy#wiki_.25BA_vpn) before torrenting and [bind it to your client](https://wispydocs.pages.dev/vpn-binding/) if it allows.
|
||||
|
||||
***
|
||||
|
||||
|
@ -638,7 +641,7 @@
|
|||
* [DAHR](https://adp.library.ucsb.edu/index.php) - American Historical Recordings Database
|
||||
* [IDM Discovery](https://www.idmdiscovery.com/) - IDM Artist Archive
|
||||
* [TrackID](https://trackid.net/) or [1001Tracklists](https://www.1001tracklists.com/) - Live Set Tracklist Databases
|
||||
* [Rec Charts](https://pastebin.com/ayuqSpGR) - Music Recommendation Guides
|
||||
* [Charts and Culture](https://pastebin.com/uRDJVGkL) - Music Recommendation Directory
|
||||
* [Shfl](https://theshfl.com/) - Album Recommendations
|
||||
* [45Cat](https://www.45cat.com/) - Vinyl Ratings / Reviews
|
||||
* [Spoqify](https://spoqify.com/) - Anonymous Playlist Generator
|
||||
|
@ -671,7 +674,7 @@
|
|||
* 🌐 **[Awesome Last.fm](https://github.com/jnguyen1098/awesome-lastfm)** or [Last.fm Tool List](https://redd.it/1h8ec76) - Last.fm Tool Indexes
|
||||
* ⭐ **[bleh](https://katelyn.moe/bleh/)** - Last.fm Customization Script / [GitHub](https://github.com/katelyynn/bleh)
|
||||
* ⭐ **[OpenScrobbler](https://openscrobbler.com/)** - Manually Scrobble Anything / [Discord](https://discord.gg/SEDp6Zy) / [GitHub](https://github.com/elamperti/openwebscrobbler)
|
||||
* ⭐ **[Pano Scrobbler](https://github.com/kawaiiDango/pano-scrobbler)** - Android Scrobbler
|
||||
* ⭐ **[Pano Scrobbler](https://github.com/kawaiiDango/pano-scrobbler)** - Multi-Platform Scrobbler
|
||||
* ⭐ **[Last.fm Stats](https://lastfmstats.com/)** - In-Depth Last.fm Stats / [GitHub](https://github.com/felhag/lastfm-stats-web)
|
||||
* [Web Scrobbler](https://github.com/web-scrobbler/web-scrobbler) - Scrobble Any Site
|
||||
* [Edit Scrobbles](https://greasyfork.org/en/scripts/485278) - Manually Edit Scrobbles
|
||||
|
@ -743,6 +746,7 @@
|
|||
* ⭐ **[koel](https://koel.dev/)**
|
||||
* ⭐ **[iBroadcast](https://ibroadcast.com)**
|
||||
* ⭐ **[AudioRelay](https://audiorelay.net/)** - Stream Audio Between Devices / [Mobile](https://rentry.co/FMHYBase64#audio-relay)
|
||||
* [Lyrion](https://lyrion.org/) / [Extensions](https://lyrion.org/extensions/applications/)
|
||||
* [SnapCast](https://github.com/badaix/snapcast) or [SonoBus](https://sonobus.net/) - Sound System Sync
|
||||
* [mStream](https://mstream.io/)
|
||||
* [Mopidy](https://mopidy.com/)
|
||||
|
@ -814,8 +818,8 @@
|
|||
|
||||
* 🌐 **[Awesome Music](https://github.com/noteflakes/awesome-music)** - Music / Notation Tools Index
|
||||
* 🌐 **[Awesome Sheet Music](https://github.com/ad-si/awesome-sheet-music)** - Sheet Music Software & Resources
|
||||
* ↪️ **[Music Notation Editors](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_music_notation_editors)**
|
||||
* ↪️ **[Music Sheet Collections](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_music_sheet_collections)**
|
||||
* ⭐ **[MuseScore](https://musescore.org/)**, [MC Musiceditor](https://www.mcmusiceditor.com/) or [Score Perfect Professional](https://archive.org/details/score-perfect-professional-lite-5.1/) - Music Scoring Software
|
||||
* [Sheethost](https://sheet.host/) - Publish Sheet Music
|
||||
* [The ABC Music Project](https://abc.sourceforge.net/) / [Editor](https://sourceforge.net/projects/toadflax/), [2](https://runabc.sourceforge.io/), [3](https://easyabc.sourceforge.net/) / [PNG Convert](https://sourceforge.net/projects/abccairo/) / [MIDI Convert](https://abcmidi.sourceforge.io/) / [Webpages](https://netabc.sourceforge.io/) - Notation Markup Language
|
||||
* [Chordly](https://chordly.co.uk/) - Chord Sheet Creator / [GitHub](https://github.com/stufro/chordly)
|
||||
|
@ -840,6 +844,7 @@
|
|||
* ⭐ **[Sonic Visualizer](https://www.sonicvisualiser.org/)**
|
||||
* ⭐ **[Spek](https://www.spek.cc/)**
|
||||
* [Visual Analyser](https://www.sillanumsoft.org/)
|
||||
* [WhatsMyBitrate](https://whatsmybitrate.com/)
|
||||
* [Friture](https://friture.org/)
|
||||
* [Spectro](http://spectro.enpts.com/)
|
||||
* [Cambia](https://logs.musichoarders.xyz/) - CD Rip Log Checker
|
||||
|
@ -870,16 +875,16 @@
|
|||
|
||||
## ▷ Audio Editors
|
||||
|
||||
* ⭐ **[Tenacity](https://tenacityaudio.org/)**, [Audacity](https://www.audacityteam.org/) or [ocenaudio](https://www.ocenaudio.com/) - Audio Editors
|
||||
* ⭐ **[FL Studio](https://rentry.co/FMHYBase64#fl-studio)**, **[Reaper](https://www.reaper.fm/) / [Note](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#reaper-note)**, [Zrythm](https://www.zrythm.org/en/index.html), [Waveform](https://www.tracktion.com/products/waveform-free) or [LMMS](https://lmms.io/) / [Discord](https://discord.com/invite/PruNxpG) / [GitHub](https://github.com/LMMS) - Digital Audio Workstations
|
||||
* ⭐ **[Tenacity](https://tenacityaudio.org/)** / [GitHub](https://codeberg.org/tenacityteam/tenacity), [Audacity](https://www.audacityteam.org/) / [GitHub](https://github.com/audacity/audacity) or [ocenaudio](https://www.ocenaudio.com/) - Audio Editors
|
||||
* ⭐ **[FL Studio](https://rentry.co/FMHYBase64#fl-studio)**, **[Reaper](https://www.reaper.fm/) / [Note](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#reaper-note)**, [Zrythm](https://www.zrythm.org/en/index.html) / [GitHub](https://gitlab.zrythm.org/zrythm/zrythm), [Waveform](https://www.tracktion.com/products/waveform-free) or [LMMS](https://lmms.io/) / [Discord](https://discord.com/invite/PruNxpG) / [GitHub](https://github.com/LMMS) - Digital Audio Workstations
|
||||
* ⭐ **[Moises](https://moises.ai/)** - Live Music Mixer
|
||||
* ⭐ **[OpenMPT](https://openmpt.org/)**, [Schism Tracker](https://schismtracker.org/), [Furnace](https://tildearrow.org/furnace/) / [Discord](https://discord.gg/QhA26dXD23) / [GitHub](https://github.com/tildearrow/furnace), [16-Bits](https://16-bits.org/) / [GitHub](https://github.com/8bitbubsy?tab=repositories) or [MilkyTracker](https://milkytracker.org/) - Music Trackers
|
||||
* ⭐ **[OpenMPT](https://openmpt.org/)** / [Source Code](https://source.openmpt.org/) / [GitHub](https://github.com/OpenMPT/openmpt/), [Schism Tracker](https://schismtracker.org/) / [GitHub](https://github.com/schismtracker/schismtracker), [Furnace](https://tildearrow.org/furnace/) / [Discord](https://discord.gg/QhA26dXD23) / [GitHub](https://github.com/tildearrow/furnace), [16-Bits](https://16-bits.org/) / [GitHub](https://github.com/8bitbubsy?tab=repositories) or [MilkyTracker](https://milkytracker.org/) / [GitHub](https://github.com/milkytracker/MilkyTracker) - Music Trackers
|
||||
* [Team V.R releases](https://rentry.co/FMHYBase64#team-vr), [G-MEH](https://g-meh.com/) / [Discord](https://discord.com/invite/g-meh) or [AudioZ](https://audioz.download/) / [Forum](https://audiosex.pro/) - Audio Editor Indexes
|
||||
* [Ossia](https://ossia.io/) - Intermedia Sequencer / [GitHub](https://github.com/ossia/score)
|
||||
* [Mixxx](https://mixxx.org/), [VirtualDJ](https://www.virtualdj.com/) or [Serato](https://serato.com/) - DJ Software
|
||||
* [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
|
||||
* [Music Experiment](https://petersalomonsen.com/webassemblymusic/livecodev2/), [Sonic-Pi](https://sonic-pi.net/), [SuperCollider](https://supercollider.github.io/), [Studel](https://strudel.cc/) or [WebChuck IDE](https://ccrma.stanford.edu/~tzfeng/webchuck-ide/) - Code-Based Audio Creators
|
||||
* [WaveTracker](https://wavetracker.org/) - Wavetable Audio Editor / [GitHub](https://github.com/squiggythings/WaveTracker)
|
||||
* [FamiStudio](https://famistudio.org/) - NES Audio Editor / [Discord](https://discord.gg/QRCMe595Pv) / [GitHub](https://github.com/BleuBleu/FamiStudio)
|
||||
* [LittleSoundDJ](https://www.littlesounddj.com/lsd/index.php) - Game Boy Audio Editor
|
||||
|
@ -939,12 +944,11 @@
|
|||
* [Decent Sampler](https://www.decentsamples.com/product/decent-sampler-plugin/) or [sforzando](https://www.plogue.com/products/sforzando.html) - VST Samplers / [Libraries](https://www.decentsamples.com/), [2](https://sfzinstruments.github.io/), [3](https://unreal-instruments.wixsite.com/unreal-instruments)
|
||||
* [Pianobook](https://www.pianobook.co.uk/) - 1500+ Sample Packs / Signup
|
||||
* [VCV Rack 2](https://vcvrack.com/Rack) or [Cardinal](https://cardinal.kx.studio/) - Eurorack Simulators
|
||||
* [IEM Plug-in Suite](https://plugins.iem.at/), [Igorski](https://www.igorski.nl/download) / [GitHub](https://github.com/igorski?utf8=✓&tab=repositories&q=vst), [SPARTA](https://leomccormack.github.io/sparta-site/) or [Chowdhury DSP](https://chowdsp.com/products.html) - Open-Source Plugins
|
||||
* [IEM Plug-in Suite](https://plugins.iem.at/), [ModularSamples](https://www.modularsamples.com/Plugins.html) / [Github](https://github.com/publicsamples), [Igorski](https://www.igorski.nl/download) / [GitHub](https://github.com/igorski?utf8=✓&tab=repositories&q=vst), [SPARTA](https://leomccormack.github.io/sparta-site/) or [Chowdhury DSP](https://chowdsp.com/products.html) - Open-Source Plugins
|
||||
* [Plugins4Free](https://plugins4free.com/), [looperman](https://www.looperman.com/free-music-software) or [AirWindows](https://www.airwindows.com/) / [Consolidated](https://www.airwindows.com/consolidated/) - Plugins
|
||||
* [Krush](https://www.tritik.com/product/krush/) - Bitcrusher Plugin
|
||||
* [samplv1](https://samplv1.sourceforge.io/) - Voice Synth
|
||||
* [Maim](https://github.com/ArdenButterfield/Maim) - Audio Distortion Plugin
|
||||
* [ModularSamples](https://www.modularsamples.com/Plugins.html) - Plugins / [Github](https://github.com/publicsamples)
|
||||
* [r/SynthRecipes](https://www.reddit.com/r/synthrecipes/) - Synth Request Subreddit
|
||||
|
||||
***
|
|
@ -14,9 +14,9 @@ Piracy sites usually contain ads, some of which can be harmful, often leading to
|
|||
|
||||
For browsers we recommend **[uBO](https://github.com/gorhill/uBlock)**, and you can also use a **[Redirect Skipper](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/internet-tools/#wiki_.25B7_redirect_bypass)** to skip annoying countdowns.
|
||||
|
||||
For mobile **[AdGuard Premium](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/android/#wiki_.25B7_android_adblocking)** / [iOS](https://adguard.com/en/adguard-ios/overview.html) / [Guide](https://ios.cfw.guide/sideloading-apps/) or **[Rethink DNS](https://rethinkdns.com/app)**, and you can block YouTube, Reddit, and X.com ads with **[ReVanced Manager](https://github.com/revanced/revanced-manager)** / [Easy Setup](https://gist.github.com/VVispy/50172b4ab77940b2d1ec09d5af70c8a7).
|
||||
For mobile **[AdGuard Premium](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/android/#wiki_.25B7_android_adblocking)** / [iOS](https://adguard.com/en/adguard-ios/overview.html) / [Guide](https://ios.cfw.guide/sideloading-apps/) or **[Rethink DNS](https://rethinkdns.com/app)**, and you can block YouTube, Reddit, and X.com ads with **[ReVanced Manager](https://revanced.app/)** / [Easy Setup](https://wispydocs.pages.dev/lg-tv-homebrew/).
|
||||
|
||||
!!!note Using several ad blockers, like uBO and Adguard at the same time can [mess things up](https://x.com/gorhill/status/1033706103782170625). This only happens with regular ad blockers, so it's perfectly okay to use uBO alongside something like SponsorBlock.
|
||||
!!!note Using several ad blockers, like uBO and AdGuard at the same time can [mess things up](https://x.com/gorhill/status/1033706103782170625). This only happens with regular ad blockers, so it's perfectly okay to use uBO alongside something like SponsorBlock.
|
||||
|
||||
***
|
||||
|
||||
|
@ -28,12 +28,22 @@ We recommend **[Firefox](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/interne
|
|||
|
||||
For Android, we recommend **[Firefox](https://www.firefox.com/browsers/mobile/android/)**, **[Brave](https://brave.com/)** or **[Cromite](https://github.com/uazo/cromite)**.
|
||||
|
||||
For iOS, we recommend **[Orion](https://kagi.com/orion/)**, [Brave](https://brave.com/) or Safari + [Adguard](https://adguard.com/en/adguard-ios/overview.html).
|
||||
For iOS, we recommend **[Orion](https://kagi.com/orion/)**, [Brave](https://brave.com/) or Safari + [AdGuard](https://adguard.com/en/adguard-ios/overview.html).
|
||||
|
||||
!!!note We recommend looking through our [Extension](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/internet-tools#wiki_.25B7_browser_extensions) / [Userscript](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/internet-tools#wiki_.25B7_userscripts) sections to find ways to enhance your browser.
|
||||
|
||||
***
|
||||
|
||||
### Base64
|
||||
|
||||
> How do I decode Base64?
|
||||
|
||||
If you see a string of text that looks like this `aHR0cHM6Ly9mbWh5Lm5ldC8` you can use a Base64 decoder to view it. Some may need to be decoded twice.
|
||||
|
||||
* **[Base64 Decoders](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/text-tools/#wiki_.25B7_encode_.2F_decode) / [Auto Decode](https://greasyfork.org/en/scripts/485772-fmhy-base64-auto-decoder)**
|
||||
|
||||
***
|
||||
|
||||
### Movies / Shows
|
||||
|
||||
* **Streaming: [P-Stream](https://pstream.mov/) / [Cineby](https://www.cineby.app/) / [Hexa](https://hexa.watch/)**
|
||||
|
@ -57,8 +67,8 @@ For iOS, we recommend **[Orion](https://kagi.com/orion/)**, [Brave](https://brav
|
|||
### Music
|
||||
|
||||
* **Streaming: [SpotX](https://github.com/SpotX-Official/SpotX) / [Custom YouTube Music](https://th-ch.github.io/youtube-music/)**
|
||||
* **Downloading: [DoubleDouble](https://doubledouble.top/) / [Soulseek](https://slsknet.org/)**
|
||||
* **Mobile: [ReVanced Manager](https://revanced.app/) (Android) / [Metrolist](https://github.com/mostafaalagamy/metrolist) (Android) / [EeveeSpotify](https://github.com/whoeevee/EeveeSpotifyReborn) (iOS)**
|
||||
* **Downloading: [lucida](https://lucida.to/) / [DoubleDouble](https://doubledouble.top/) / [Soulseek](https://slsknet.org/)**
|
||||
* **Mobile: [Metrolist](https://github.com/mostafaalagamy/metrolist) (Android) / [ReVanced Manager](https://revanced.app/) (Android) / [SpotC++](https://spotc.yodaluca.dev/) (iOS)**
|
||||
* **Track / Discover: [Last.fm](https://www.last.fm/home) / [RateYourMusic](https://rateyourmusic.com/)**
|
||||
|
||||
***
|
||||
|
@ -74,9 +84,9 @@ For iOS, we recommend **[Orion](https://kagi.com/orion/)**, [Brave](https://brav
|
|||
|
||||
### Reading
|
||||
|
||||
* **Downloading: [Anna's Archive](https://annas-archive.org/) / [Z-Library](https://z-lib.gd/) / [Bookracy](https://bookracy.ru/)**
|
||||
* **Downloading: [Anna's Archive](https://annas-archive.org/) / [Z-Library](https://z-lib.gd/)**
|
||||
* **Audiobooks: [AudiobookBay](https://audiobookbay.lu/) / [Warning](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#audiobookbay-warning) / [Mobilism Audiobooks](https://forum.mobilism.org/viewforum.php?f=124) / [Tokybook](https://tokybook.com/)**
|
||||
* **Manga: [ComicK](https://comick.io/) / [Weeb Central](https://weebcentral.com/) / [MangaDex](https://mangadex.org/)**
|
||||
* **Manga: [Weeb Central](https://weebcentral.com/) / [MangaDex](https://mangadex.org/)**
|
||||
* **Comics: [ReadComicsOnline](https://readcomiconline.li/) / [GetComics](https://getcomics.org/)**
|
||||
* **Ebook Readers: [Google Play Books](https://play.google.com/books) / [Koodo](https://www.koodoreader.com/) / [Foxit](https://www.foxit.com/pdf-reader/)** + [Warning](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#foxit-warning)
|
||||
* **Android Readers: [Librera](https://librera.mobi/) / [Moon+ Reader](https://www.moondownload.com/) / [Readera](https://readera.org/)**
|
||||
|
@ -112,21 +122,26 @@ For email privacy, we recommend **[Proton](https://proton.me/mail)** and for sea
|
|||
|
||||
> How can I download / activate Windows for free?
|
||||
|
||||
Download an ISO from Massgrave's **[Genuine Installation Media](https://massgrave.dev/genuine-installation-media)** page, and follow the **[Clean Install Windows Guide](https://gravesoft.dev/clean_install_windows)** to install it. After install, activate it with **[Microsoft Activation Scripts](https://massgrave.dev/)**. If you'd like to use Windows 10 past its End-Of-Life date, follow **[Windows 10 After EOL](https://massgrave.dev/windows10_eol)**.
|
||||
Download an ISO from Massgrave's **[Genuine Installation Media](https://rentry.co/FMHYBase64#genuine-installation-media)** page, and follow the **[Clean Install Windows Guide](https://gravesoft.dev/clean_install_windows)** to install it. After install, activate it with **[Microsoft Activation Scripts](https://rentry.co/FMHYBase64#mas)**. If you'd like to use Windows 10 past its End-Of-Life date, follow **[Windows 10 After EOL](https://massgrave.dev/windows10_eol)**.
|
||||
|
||||
* **[Windows Install / Debloat Guide](https://gist.github.com/VVispy/17b228cd9c151a495e7576255e1713b9)**
|
||||
* **[Windows Install / Debloat Guide](https://wispydocs.pages.dev/windows/)**
|
||||
* **Software Piracy: [CracksURL](https://cracksurl.com/) / [LRepacks](https://lrepacks.net/)**
|
||||
* **Adobe Piracy: [Adobe Quick Guide](https://rentry.co/FMHYBase64#adobe-guide)**
|
||||
|
||||
!!!note Be aware that unofficial sources often re-upload M0nkrus's repacks, sometimes with added malware. Always verify you are downloading from M0nkrus's actual site, which we link on FMHY before downloading anything. Do not trust search engine results blindly for such specific repackers.
|
||||
|
||||
***
|
||||
|
||||
### Adobe Piracy
|
||||
|
||||
* **[Adobe Quick Guide](https://rentry.co/FMHYBase64#adobe-guide)**
|
||||
|
||||
***
|
||||
|
||||
### Torrenting
|
||||
|
||||
> Do I need a VPN to torrent?
|
||||
|
||||
Downloading files through torrenting can cause issues with your ISP, so using a **[VPN](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/adblock-vpn-privacy#wiki_.25BA_vpn)** is a must in most countries. You should also **[bind your VPN](https://gist.github.com/VVispy/765c6723436f386ef113040f8fc968b8)** to your torrent client. This ensures that if your VPN connection drops, your torrent client stops all traffic, preventing your real IP address from being exposed. You can also use **[Remote Torrenting Services](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/torrent#wiki_.25B7_remote_torrenting)** to avoid the need for a VPN altogether.
|
||||
Downloading files through torrenting can cause issues with your ISP, so using a **[VPN](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/adblock-vpn-privacy#wiki_.25BA_vpn)** is a must in most countries. You should also **[bind your VPN](https://wispydocs.pages.dev/vpn-binding/)** to your torrent client. This ensures that if your VPN connection drops, your torrent client stops all traffic, preventing your real IP address from being exposed. You can also use **[Remote Torrenting Services](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/torrent#wiki_.25B7_remote_torrenting)** to avoid the need for a VPN altogether.
|
||||
|
||||
> What is Port Forwarding? Do I need it?
|
||||
|
||||
|
@ -145,11 +160,11 @@ Downloading files through torrenting can cause issues with your ISP, so using a
|
|||
|
||||
### iOS Sideloading
|
||||
|
||||
* **[Sideloading Guide](https://ios.cfw.guide/sideloading-apps/)** - Sideloading Guide
|
||||
* **[Sideloading Guide](https://rentry.co/sideloadingguide)** - Sideloading Guide
|
||||
* **[TrollStore](https://github.com/opa334/TrollStore)** - Unlimited App Sideloading [iOS 14.0-17.0]
|
||||
* **[SideStore](https://sidestore.io/)** - Sideloading App [iOS 14.0 & Above]
|
||||
* **[SideStore](https://sidestore.io/)** - Sideloading App [iOS 16.0 & Above]
|
||||
* **[Sideloadly](https://sideloadly.io/)** - Sideload Apps [iOS 7.0 & Above]
|
||||
* **[Feather](https://github.com/khcrysalis/Feather)** - Sideload Apps with Paid Dev Cert [iOS 15 & Above]
|
||||
* **[Feather](https://github.com/khcrysalis/Feather)** - Sideload Apps with Dev Certs [iOS 15 & Above]
|
||||
|
||||
***
|
||||
|
||||
|
@ -157,8 +172,7 @@ Downloading files through torrenting can cause issues with your ISP, so using a
|
|||
|
||||
* **[Translate Web Pages](https://github.com/FilipePS/Traduzir-paginas-web)** - Translate Web Pages to Your Language
|
||||
* **[Piracy Glossary](https://rentry.org/the-piracy-glossary)** - Common piracy term definitions
|
||||
* **[Unsafe Sites / Software](https://fmhy.net/unsafesites)** / [2](https://redd.it/10bh0h9) - Things we recommend avoiding
|
||||
* **[Base64 Decoders](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/text-tools/#wiki_.25B7_encode_.2F_decode) / [Auto Decode](https://greasyfork.org/en/scripts/485772-fmhy-base64-auto-decoder)** - Tools to decode encrypted base64 links
|
||||
* **[Unsafe Sites / Software](https://fmhy.net/unsafe)** / [2](https://redd.it/10bh0h9) - Things we recommend avoiding
|
||||
* **[FMHY.net](https://fmhy.net/)** - Our website with many more sites / tools
|
||||
|
||||
***
|
||||
|
|
|
@ -54,6 +54,7 @@
|
|||
* [choose-a-license](https://writefreesoftware.org/learn/participate/choose-a-license/), [SPDX License List](https://spdx.org/licenses/) or [ChooseALicense](https://choosealicense.com/) - License Picking Guides / Lists
|
||||
* [PrivacyPolicyTemplate](https://www.privacypolicytemplate.net/) - Generate Privacy Policies
|
||||
* [Eternal Terminal](https://eternalterminal.dev/), [Termius](https://termius.com/) or [NxShell](https://nxshell.github.io/) - SSH Clients / Servers
|
||||
* [Beszel](https://beszel.dev/) - Dev Data Dashboard
|
||||
* [PuTTY](https://www.chiark.greenend.org.uk/~sgtatham/putty/) - SSH & Telnet Client / [Multi-Tab](https://ttyplus.com/) / [Fork](https://www.9bis.net/kitty/#!index.md) / [GitHub](https://github.com/cyd01/KiTTY/)
|
||||
* [Penpot](https://penpot.app/) - Cross Domain Design & Prototyping Platform
|
||||
* [Webhook.site](https://webhook.site/) - Webhook Tools
|
||||
|
@ -67,7 +68,7 @@
|
|||
* [reddit-moderator-toolbox](https://github.com/toolbox-team/reddit-moderator-toolbox) - Toolbox for Reddit Extension Development
|
||||
* [devSwag](https://devswag.io/) - Developer Giveaways
|
||||
* [Commands.dev](https://www.commands.dev/) - Terminal Commands
|
||||
* [Linear](https://linear.app/), [AirBroke](https://airbroke.icorete.ch/) or [Glitchtip](https://glitchtip.com) - Error Tracking Platforms
|
||||
* [AirBroke](https://airbroke.icorete.ch/) or [Glitchtip](https://glitchtip.com) - Error Tracking Platforms
|
||||
* [UMLet](https://www.umlet.com/), [PlantUML](https://www.plantuml.com/) or [JDL Studio](https://start.jhipster.tech/jdl-studio/) - UML Diagrams Generators / Creators
|
||||
* [Mockaroo](https://mockaroo.com/) - Generate Mock Data
|
||||
* [Mockium](https://softwium.com/mockium/) - Generate Test Data
|
||||
|
@ -150,7 +151,7 @@
|
|||
* ⭐ **[Android Developer Roadmap](https://github.com/skydoves/android-developer-roadmap)**
|
||||
* [App ideas](https://github.com/florinpop17/app-ideas) - Collection of App Ideas
|
||||
* [IconKitchen](https://icon.kitchen/) or [AppIcon](https://appicon.co/) - App Icon Generator
|
||||
* [MobiDevTools](https://addons.mozilla.org/en-US/firefox/addon/mobidevtools/) or [ChromeXt](https://github.com/JingMatrix/ChromeXt) - Add Dev Tools / Inspect Element to Mobile Browsers
|
||||
* [MobiDevTools](https://sourceforge.net/projects/mobidevtools/) or [ChromeXt](https://github.com/JingMatrix/ChromeXt) - Add Dev Tools / Inspect Element to Mobile Browsers
|
||||
* [namae](https://namae.dev/) - App Name Availability Check
|
||||
* [XDGuru](https://www.xdguru.com/) - Adobe XD Resources
|
||||
* [Media Kit](https://github.com/media-kit/media-kit) - Video / Audio Library for Flutter and Dart
|
||||
|
@ -180,18 +181,18 @@
|
|||
* 🌐 **[DB Engines](https://db-engines.com/en/ranking)** or [DBDB](https://dbdb.io/stats) - Database Rankings
|
||||
* 🌐 **[Awesome Opensource Data Engineering](https://github.com/gunnarmorling/awesome-opensource-data-engineering)** - Data Engineering Tools
|
||||
* 🌐 **[Awesome Big Data](https://github.com/oxnr/awesome-bigdata)** - Big Data Resources
|
||||
* ⭐ **[DB Browser](https://sqlitebrowser.org/)**, [SQLook](https://sqlook.com/), [DuckDB](https://duckdb.org/), [SQL Lite Studio](https://sqlitestudio.pl/) or [HeidiSQL](https://www.heidisql.com/) - SQL Managers
|
||||
* ⭐ **[DB Browser](https://sqlitebrowser.org/)**, [SQLook](https://sqlook.com/) or [SQL Lite Studio](https://sqlitestudio.pl/) - SQLite Browsers
|
||||
* [HeidiSQL](https://www.heidisql.com/) - SQL Manager
|
||||
* [DuckDB](https://duckdb.org/) - Database Manager
|
||||
* [Qdrant](https://qdrant.tech/) -Database Manager
|
||||
* [Gel](https://www.geldata.com/) - Database Manager
|
||||
* [Sqlable](https://sqlable.com/) - SQL Tools
|
||||
* [Beszel](https://beszel.dev/) - Dev Data Dashboard
|
||||
* [Grafana](https://grafana.com/) - Self-Hosted Dev Data Dashboard
|
||||
* [DBeaver](https://dbeaver.io/) - Universal Database Tool
|
||||
* [ChartDB](https://chartdb.io/) - Database Visualization / [GitHub](https://github.com/chartdb/chartdb)
|
||||
* [Ingestr](https://bruin-data.github.io/ingestr/) - Transfer Data between Databases
|
||||
* [NocoDB](https://www.nocodb.com/) - Turn Database into Smart Spreadsheet / [GitHub](https://github.com/nocodb/nocodb)
|
||||
* Generate Fake Data - [Ruby](https://github.com/faker-ruby/faker) / [Swift](https://github.com/vadymmarkov/Fakery)
|
||||
* [Qdrant](https://qdrant.tech/) - Vector Database
|
||||
* [SQL Cheat Sheet](https://files.catbox.moe/5q57h3.png) - SQL Cheat Sheet
|
||||
* [Gel](https://www.geldata.com/) - SQL Alternative
|
||||
* [QueryStorm](https://querystorm.com/) - SQL and .NET programming in Excel
|
||||
* [franchise](https://franchise.cloud/) - SQL Notebook
|
||||
|
||||
|
@ -203,13 +204,13 @@
|
|||
* 🌐 **[Awesome README](https://github.com/matiassingers/awesome-readme)** - GitHub Readme Resources
|
||||
* 🌐 **[Forge Comparison](https://git.sdf.org/humanacollaborator/humanacollabora/src/branch/master/forge_comparison.md)**, [Forgejo](https://forgejo.org/compare/#only-develops-free-software) or [Forgeperf.org](https://forgeperf.org/) - Git Collab Tool Comparison
|
||||
* ↪️ **[Git Project Indexes](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_git_projects)**
|
||||
* ⭐ **[Git-Fork](https://git-fork.com/)**, [GitButler](https://github.com/gitbutlerapp/gitbutler) or [GitQlient](https://github.com/francescmm/GitQlient) - Git Desktop Clients
|
||||
* ⭐ **[Codeberg](https://codeberg.org/)** / [Matrix](https://matrix.to/#/#codeberg-space:matrix.org), [Drift](https://drift.lol/), [Gitea](https://about.gitea.com/), [GitLab.com](https://about.gitlab.com/) or [sourcehut](https://sourcehut.org/) - GitHub Alts / Version Control Systems
|
||||
* ⭐ **[Fork](https://git-fork.com/)**, [GitButler](https://github.com/gitbutlerapp/gitbutler) or [GitQlient](https://github.com/francescmm/GitQlient) - Git Desktop Clients
|
||||
* ⭐ **[Codeberg](https://codeberg.org/)** / [Matrix](https://matrix.to/#/#codeberg-space:matrix.org), [Drift](https://drift.lol/), [GitLab](https://about.gitlab.com/) or [sourcehut](https://sourcehut.org/) - GitHub Alternatives
|
||||
* [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 Services
|
||||
* [Gitea](https://about.gitea.com/), [Forgejo](https://forgejo.org/), [Gogs](https://gogs.io/) - Self-Hosted Repository Platforms
|
||||
* [Git](https://git-scm.com/) - Version Control System
|
||||
* [searchcode](https://searchcode.com/) or [PublicWWW](https://publicwww.com/) - Source Code Search
|
||||
* [git-sim](https://github.com/initialcommit-com/git-sim) - Visually Simulate Git Operations Before Running
|
||||
* [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
|
||||
* [up-for-grabs](https://up-for-grabs.net/) - Curated List of Tasks for New Contributes
|
||||
* [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/gitui-org/gitui) - Git GUIs
|
||||
|
@ -218,7 +219,7 @@
|
|||
* [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/git-bug/git-bug) - Git Embedded Bug Tracker
|
||||
* [Plane](https://github.com/makeplane/plane) / [Discord](https://discord.com/invite/A92xrEGCge), [Git Extensions](https://gitextensions.github.io/) or [Thermal](https://thermal.codecarrot.net/) - Git Project / Repo Managers
|
||||
* [Git Extensions](https://gitextensions.github.io/) or [Thermal](https://thermal.codecarrot.net/) - Git Project / Repo Managers
|
||||
* [git-annex](https://git-annex.branchable.com/) - Manage Large Git Files (without Git)
|
||||
* [GitList](https://gitlist.org/) - Elegant Git Repository Viewer / [GitHub](https://github.com/klaussilveira/gitlist)
|
||||
* [Gittyup](https://murmele.github.io/Gittyup/) - Git Source Code History / [GitHub](https://github.com/Murmele/Gittyup)
|
||||
|
@ -242,7 +243,7 @@
|
|||
* 🌐 **[Awesome Browser Extensions](https://stefanbuck.com/awesome-browser-extensions-for-github)** - GitHub Browser Extensions
|
||||
* 🌐 **[Awesome Badges](https://dev.to/envoy_/150-badges-for-github-pnk)** - GitHub Badge Resources
|
||||
* 🌐 **[GitHub-Userscripts](https://greasyfork.org/en/users/24847)** - GitHub Userscripts
|
||||
* ⭐ **[GitHub Desktop](https://desktop.github.com/)** / [Linux](https://github.com/shiftkey/desktop) - GitHub Desktop Client
|
||||
* ⭐ **[GitHub Desktop](https://github.com/apps/desktop)** / [Linux](https://github.com/shiftkey/desktop) - GitHub Desktop Client
|
||||
* [Gothub](https://codeberg.org/gothub/gothub) - GitHub Frontend
|
||||
* [GitHub Cheat Sheet](https://github.com/tiimgreen/github-cheat-sheet) - GitHub Cheat Sheet
|
||||
* [GitHubStatus](https://www.githubstatus.com/) - GitHub Outage Status
|
||||
|
@ -257,7 +258,6 @@
|
|||
* [Chezmoi](https://www.chezmoi.io/) - Dotfile Managers
|
||||
* [GitHub Web IDE](https://chromewebstore.google.com/detail/github-web-ide/adjiklnjodbiaioggfpbpkhbfcnhgkfe) - Web IDE / [GitHub](https://github.com/zvizvi/GitHub-Web-IDE)
|
||||
* [Octobox](https://octobox.io/), [Gitify](https://www.gitify.io/), [advanced-github-notifier](https://github.com/freaktechnik/advanced-github-notifier), [PR Monitor](https://github.com/fwouts/prmonitor), [Gitification](https://github.com/Gitification-App/gitification) or [CatLight](https://catlight.io/) - GitHub Notifications
|
||||
* [github1s](https://github1s.com/) - GitHub Code Viewer / GUI: do `gitk` in Repo Folder
|
||||
* [Pages CMS](https://pagescms.org/) - GitHub Content Management System / [GitHub](https://github.com/pages-cms/pages-cms)
|
||||
* [KeyManager](https://github.com/Yash-Garg/KeyManager) - GitHub SSH / GPG Key Manager
|
||||
* [DownGit](https://downgit.evecalm.com/), [GitHub2File](https://github.com/cognitivecomputations/github2file), [Gitzip](https://kinolien.github.io/gitzip/) or [Download Directory](https://download-directory.github.io/) - Download GitHub Repo Sub-Folders / Files
|
||||
|
@ -285,7 +285,7 @@
|
|||
* [GitHub Readme Stats](https://github.com/anuraghazra/github-readme-stats) - Dynamically Generated GitHub Readme Stats
|
||||
* [GitHub Readme Quotes](https://github-readme-quotes-returns.vercel.app/) - GitHub Readme Quote Generator / [GitHub](https://github.com/shravan20/github-readme-quotes)
|
||||
* [Shields.io](https://shields.io/) - Metadata Badges for GitHub Readme
|
||||
* [SkillIcons](https://skillicons.dev/), [Badgers](https://badgers.space/), [SpaceBadgers](https://github.com/splittydev/spacebadgers) or [SimpleBadges](https://badges.pages.dev/) / [GitHub](https://github.com/developStorm/simple-badges) - Skill Badges for GitHub Readme / Resumes
|
||||
* [SkillIcons](https://skillicons.dev/), [SpaceBadgers](https://badgers.space/) / [GitHub](https://github.com/splittydev/spacebadgers) or [SimpleBadges](https://badges.pages.dev/) / [GitHub](https://github.com/developStorm/simple-badges) - Skill Badges for GitHub Readme / Resumes
|
||||
* [For the Badge](https://forthebadge.com/) - Custom GitHub Badges
|
||||
* [GitHub Spray](https://annihil.github.io/github-spray-generator) - Draw on GitHub Contribution Page
|
||||
* [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
|
||||
|
@ -354,7 +354,7 @@
|
|||
* 🌐 **[LMAerena Price Compare](https://countless.dev/)** - AI API Price Comparisons
|
||||
* ⭐ **[hoppscotch](https://hoppscotch.io/)**, [Firecamp](https://firecamp.dev/) or [Strapi](https://strapi.io/) - API Builders
|
||||
* ⭐ **[Shizuku](https://shizuku.rikka.app/)** / [Tools](https://github.com/legendsayantan/ShizuTools) / [GitHub](https://github.com/RikkaApps/Shizuku) or [Dhizuku](https://github.com/iamr0s/Dhizuku) - Let Apps Use System API (Android)
|
||||
* [Wyzie Subs](https://sub.wyzie.ru/) - Subtitle Scraping API / [NPM Package](https://www.npmjs.com/package/wyzie-lib) / [Docs](https://docs.wyzie.ru/)
|
||||
* [Wyzie Subs](https://sub.wyzie.ru/) or [Libre Subs](https://libre-subs.fifthwit.net/) - Subtitle Scraping API / [NPM Package](https://www.npmjs.com/package/wyzie-lib) / [Docs](https://docs.wyzie.ru/)
|
||||
* [HTTPie](https://httpie.io/) - Test REST, GraphQL, and HTTP APIs
|
||||
* [Rest Test Test](https://resttesttest.com/) - Test REST / CORS Services
|
||||
* [Beeceptor](https://beeceptor.com/) - Mock REST APIs
|
||||
|
@ -383,7 +383,7 @@
|
|||
* ⭐ **[Hugging Face](https://huggingface.co/)**, [LLM Papers](https://potent-twister-29f.notion.site/b0fc32542854456cbde923e0adb48845?v=e2d14d2ef0c848f5a1d5b71f9977d7c5) or [OpenML](https://www.openml.org/) - Machine Learning Datasets / Papers
|
||||
* ⭐ **[Deep playground](http://playground.tensorflow.org/)** - Neural Networks Playground
|
||||
* [Awesome Generative AI Guide](https://github.com/aishwaryanr/awesome-generative-ai-guide) - LLM Research Resources
|
||||
* [Unsloth](https://github.com/unslothai/unsloth) - LLM Finetuning / Text Completion / [Guide](https://docs.unsloth.ai/get-started/fine-tuning-guide)
|
||||
* [Unsloth](https://github.com/unslothai/unsloth) - LLM Finetuning / Text Completion / [Notebooks](https://github.com/unslothai/notebooks) / [Guide](https://docs.unsloth.ai/get-started/fine-tuning-guide)
|
||||
* [DeepSpeed](https://www.deepspeed.ai/) - Deep Learning Optimization Library
|
||||
* [Netron](https://github.com/lutzroeder/netron) - Visualizer for Neural Network, Deep Learning, and Machine Learning Models
|
||||
* [MMDeploy](https://mmdeploy.readthedocs.io/en/latest/) - Deep Learning Model Deployment Toolset / [GitHub](https://github.com/open-mmlab/mmdeploy)
|
||||
|
@ -427,13 +427,14 @@
|
|||
* [OpenGameArt.org](https://opengameart.org/) - Game Art Community
|
||||
* [UnityFreaks](https://www.unityfreaks.com/), [AssetStore](https://assetstore.unity.com/search#cf-ec_category=3d&nf-ec_price_filter=0...0) or [GameDevUE](https://t.me/GameDevUE) - Unity & Unreal Engine Assets
|
||||
* [SteamGridDB](https://www.steamgriddb.com/) - Custom Video Game Assets
|
||||
* [S2V](https://s2v.app/) - Source 2 Viewer & Decompiler / [GitHub](https://github.com/ValveResourceFormat/ValveResourceFormat)
|
||||
|
||||
***
|
||||
|
||||
## ▷ Asset Creation
|
||||
|
||||
* ↪️ **[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/)**
|
||||
* ↪️ **[3D Models / Modeling Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/image-tools#wiki_.25B7_3d_models)**
|
||||
* ↪️ **[Design Tools / Resources](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/image-tools/)**
|
||||
* ↪️ **[Art Resources](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/edu/#wiki_.25B7_art_.2F_editing)**
|
||||
* ↪️ **[Animation Resources](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/video-tools/#wiki_.25B7_animation_tools)**
|
||||
* ↪️ **[Writing Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/text-tools/#wiki_.25B7_writing_tools)**
|
||||
|
@ -474,6 +475,7 @@
|
|||
* [Firebase](https://studio.firebase.google.com/) - Gemini AI Cloud Webapp
|
||||
* [Helix](https://helix-editor.com/) - Kakuone / Neovim-Based Code Editor
|
||||
* [HaystackEditor](https://haystackeditor.com/) - Canvas-Based Code Editor
|
||||
* [Geany](https://www.geany.org/) - Lightweight Code Editor
|
||||
* [Brackets](https://brackets.io/) - Webapp / Live Preview
|
||||
* [Bluefish](https://bluefish.openoffice.nl/index.html) - Code Editor / [Templates](https://templates.openoffice.org/en)
|
||||
* [CudaText](https://cudatext.github.io/) - Code Editor
|
||||
|
@ -598,7 +600,7 @@
|
|||
* [Open VSX](https://open-vsx.org/) - Open VSX Registry
|
||||
* [snippet-generator](https://snippet-generator.app/) - Snippet Generator
|
||||
* [Dendron](https://www.dendron.so/) - Knowledge Managment
|
||||
* [Discord Tools](https://github.com/Darkempire78/Discord-Tools)
|
||||
* [Discord Tools](https://github.com/clementwzk/Discord-Tools)
|
||||
* [vscode-smart-clicks](https://github.com/antfu/vscode-smart-clicks) - Smart Clicks
|
||||
* [code-server](https://coder.com/) - Web Server / [GitHub](https://github.com/coder/code-server)
|
||||
* [vscode-settings](https://github.com/antfu/vscode-settings) - VSCode Settings
|
||||
|
@ -774,6 +776,7 @@
|
|||
* ⭐ **[Ray.st](https://ray.st/)**, [BuiltWith](https://builtwith.com/) or [Wappalyzer](https://www.wappalyzer.com/) - Identify Technologies on Websites / [Addons](https://www.wappalyzer.com/apps/)
|
||||
* ⭐ **[GoAccess](https://goaccess.io/)** - Web Log Analyzer / [GitHub](https://github.com/allinurl/goaccess)
|
||||
* ⭐ **[Formulaer](https://formulaer.com/)**, [Tally](https://tally.so/), [FormBricks](https://github.com/formbricks/formbricks), [Formshare](https://formshare.ai/), [Deformity](https://deformity.ai/) or [Stylr](https://www.stylr.xyz/) - Form Builders
|
||||
* [Flounder](https://flounder.online/) - Website Building Discussion
|
||||
* [FileQ](https://fileq.net/) or [DataNodes](https://datanodes.to/) / [Discord](https://discord.gg/mKyBMyeKvh) - Webmasters Only File Hosts
|
||||
* [Website Planet Tools](https://www.websiteplanet.com/webtools/), [Browserling Tools](https://www.browserling.com/tools/) or [WebCode](https://webcode.tools/) - Site Development Tools
|
||||
* [shadcn-ui](https://ui.shadcn.com/) or [shadcn-svelte](https://shadcn-svelte.com) - Web Component Libraries
|
||||
|
@ -826,13 +829,21 @@
|
|||
|
||||
## ▷ Website Builders
|
||||
|
||||
* 🌐 **[Awesome Static Generators](https://myles.github.io/awesome-static-generators/)** / [GitHub](https://github.com/myles/awesome-static-generators) or **[Jamstack Generators](https://jamstack.org/generators/)** - Lists of Static Website Generators / Frameworks
|
||||
* ⭐ **[Webstudio](https://webstudio.is/)** - Code Editor
|
||||
* ⭐ **[Framer](https://www.framer.com/)** - Interactive Site / App Design Tool
|
||||
* 🌐 **[Awesome Static Generators](https://myles.github.io/awesome-static-generators/)** / [GitHub](https://github.com/myles/awesome-static-generators) or **[Jamstack Generators](https://jamstack.org/generators/)** - Static Site Generator Indexes
|
||||
* ⭐ **[Webstudio](https://webstudio.is/)** - Website Builder
|
||||
* ⭐ **[Framer](https://www.framer.com/)** - Website Builder
|
||||
* ⭐ **[Eleventy](https://11ty.dev/)** - Static Site Generator / [Discord](https://discord.gg/GBkBy9u) / [GitHub](https://github.com/11ty/eleventy)
|
||||
* ⭐ **[Hugo](https://gohugo.io/)** or **[vitepress](https://vitepress.dev/)** - Static Website Generators
|
||||
* ⭐ **[Docusaurus](https://github.com/facebook/docusaurus)**, [retype](https://retype.com/) / [GitHub](https://github.com/retypeapp/retype), [Zola](https://www.getzola.org/), [Jekyll](https://jekyllrb.com/) or [docsify](https://docsify.js.org/) - Static Markdown Website Generators
|
||||
* [Flounder](https://flounder.online/) - Website Building Discussion
|
||||
* ⭐ **[Hugo](https://gohugo.io/)** - Static Site Generator
|
||||
* ⭐ **[VitePress](https://vitepress.dev/)** - Static Site Generator
|
||||
* ⭐ **[Docusaurus](https://docusaurus.io/)** - Static Markdown Website Generators / [GitHub](https://github.com/facebook/docusaurus)
|
||||
* [Retype](https://retype.com/) - Static Markdown Website Generator / [GitHub](https://github.com/retypeapp/retype)
|
||||
* [Zola](https://www.getzola.org/) - Static Markdown Website Generator
|
||||
* [Publii](https://getpublii.com/) - Static Markdown Website Generator / No Coding
|
||||
* [Jekyll](https://jekyllrb.com/) - Static Markdown Website Generator
|
||||
* [docsify](https://docsify.js.org/) - Static Markdown Website Generator
|
||||
* [GitBook](https://www.gitbook.com/) - Static Site Generator
|
||||
* [Pelican](https://getpelican.com/) - Static Site Generator
|
||||
* [Astro](https://astro.build/) - Static Site Generator
|
||||
* [site123](https://www.site123.com/) - Website Builder
|
||||
* [tilda](https://tilda.cc/) - Website Builder
|
||||
* [bravenet](https://www.bravenet.com/) - Website Builder
|
||||
|
@ -840,7 +851,6 @@
|
|||
* [Mobirise](https://mobirise.com/) - Website Builder
|
||||
* [Temper](https://temper.one/) - Website Builder
|
||||
* [Silex](https://www.silex.me/) - Website Builder
|
||||
* [Publii](https://getpublii.com/) - Website Builder
|
||||
* [mmm](https://mmm.page/) - Website Builder
|
||||
* [Straw.Page](https://straw.page/) - Website Builder
|
||||
* [Own Free Website](https://www.own-free-website.com) - Website Builder
|
||||
|
@ -851,8 +861,6 @@
|
|||
* [Tails](https://devdojo.com/tails) - Tailwind CSS Website Builder
|
||||
* [8b](https://8b.com/) - Simple Online Website Builder
|
||||
* [Potion](https://potion.so/) - Notion Website Builder
|
||||
* [GitBook](https://www.gitbook.com/) - Static Site Generator
|
||||
* [Pelican](https://getpelican.com/) - Static Site Generator
|
||||
* [Odie](https://odie.us/) - Make Webpages out of Google Docs
|
||||
* [ProjectVisBug](https://visbug.web.app) - Webpage Editor
|
||||
* [Anvil](https://anvil.works/) or [Lowdefy](https://lowdefy.com/) - Web App Creators
|
||||
|
@ -862,8 +870,8 @@
|
|||
## ▷ Color Schemes
|
||||
|
||||
* 🌐 **[Colorful](https://github.com/Siddharth11/Colorful)** - Color Scheme Resources
|
||||
* ↪️ **[Color Palette Generators](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/img-tools#wiki_.25B7_palette_generators)**
|
||||
* ↪️ **[Color Pickers](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/img-tools#wiki_.25B7_color_pickers)**
|
||||
* ↪️ **[Color Palette Generators](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/image-tools#wiki_.25B7_palette_generators)**
|
||||
* ↪️ **[Color Pickers](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/image-tools#wiki_.25B7_color_pickers)**
|
||||
* ⭐ **[ColorHexa](https://www.colorhexa.com/)** - Color Hex Encyclopedia
|
||||
* ⭐ **[Realtime Colors](https://realtimecolors.com/)** - Preview Color Palettes
|
||||
* ⭐ **[Color & Contrast](https://colorandcontrast.com/)** - Color / Contrast Guide
|
||||
|
@ -888,7 +896,7 @@
|
|||
|
||||
* 🌐 **[Awesome Design Systems](https://github.com/alexpate/awesome-design-systems)** - UI Design Systems / Libraries
|
||||
* 🌐 **[Awesome Web Animation](https://awesome-web-animation.netlify.app/)** - Web Animation Resources
|
||||
* ↪️ **[Design Resources](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/img-tools#wiki_.25BA_design_resources)** or [Open Source Design](https://opensourcedesign.net/)
|
||||
* ↪️ **[Design Resources](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/image-tools#wiki_.25BA_design_resources)** or [Open Source Design](https://opensourcedesign.net/)
|
||||
* ⭐ **[Design Checklist](https://www.checklist.design/)**, [Performance Checklist](https://github.com/thedaviddias/Front-End-Performance-Checklist) or [Front-End Checklist](https://frontendchecklist.io/) - Frontend Development Checklist
|
||||
* ⭐ **[ThemeWagon](https://themewagon.com/theme-price/free/)** or [Tooplate](https://www.tooplate.com/) - Free HTML Templates
|
||||
* ⭐ **[Boilerplate](https://html5boilerplate.com/)** or [html5up](https://html5up.net/) - Custom HTML Templates
|
||||
|
@ -1118,18 +1126,17 @@
|
|||
|
||||
## ▷ Static Page Hosting
|
||||
|
||||
* ⭐ **[surge](https://surge.sh/)** - Unlimited Storage / Unlimited Bandwidth
|
||||
* ⭐ **[Cloudflare Pages](https://pages.cloudflare.com/)** - Unlimited Storage (20MB Each) / Unlimited Bandwidth / [Tunnel Client](https://github.com/cloudflare/cloudflared) / [Discord](https://discord.gg/cloudflaredev)
|
||||
* ⭐ **[GitHub Pages](https://pages.github.com/)** - Unlimited Storage / 100GB Bandwidth
|
||||
* ⭐ **[Firebase](https://firebase.google.com/products/hosting)** - 10GB Storage / 10GB Bandwidth
|
||||
* ⭐ **[Cloudflare Workers](https://workers.cloudflare.com/)** - Unlimited Storage (20MB Each) / Unlimited Bandwidth
|
||||
* ⭐ **[Cloudflare Pages](https://pages.cloudflare.com/)** - Unlimited Storage (20MB Each) / Unlimited Bandwidth / [Tunnel Client](https://github.com/cloudflare/cloudflared) / [Discord](https://discord.gg/cloudflaredev)
|
||||
* ⭐ **[surge](https://surge.sh/)** - Unlimited Storage / Unlimited Bandwidth
|
||||
* ⭐ **[GitHub Pages](https://docs.github.com/en/pages)** - Unlimited Storage / 100GB Bandwidth
|
||||
* ⭐ **[Firebase](https://firebase.google.com/products/hosting)** - 10GB Storage / 10GB Bandwidth
|
||||
* ⭐ **[Sourcehut Pages](https://srht.site/)** - 1GB Storage / Unlimited Bandwidth
|
||||
* ⭐ **[Neocities](https://neocities.org/)** - 1GB Storage / Unlimited Bandwidth / No Custom Domain
|
||||
* ⭐ **[nekoweb](https://nekoweb.org/)** - 500MB Storage / Unlimited Bandwidth / [Bandwidth Note](https://files.catbox.moe/xf1shh.png)
|
||||
* [Web 1.0 Hosting](https://web1.0hosting.net/) - 100MB Storage / Unlimited Bandwidth
|
||||
* [Codeberg Pages](https://codeberg.page/) - 750MB Storage / Unspecified Bandwidth
|
||||
* [pages.gay](https://pages.gay/) - Unspecified Storage / Unlimited Bandwidth
|
||||
* [GitLab Pages](https://docs.gitlab.com/user/project/pages/) - 10GB Storage / Unlimited Bandwidth
|
||||
* [DropPages](https://droppages.com/) - 1GB Storage / 5GB Bandwidth
|
||||
* [W3Schools Spaces](https://www.w3schools.com/spaces/) - 100MB Storage (5MB A File) / 100MB Bandwidth / No Custom Domain
|
||||
* [BitBucket](https://support.atlassian.com/bitbucket-cloud/docs/publishing-a-website-on-bitbucket-cloud/) - 1GB Storage (Hard Limit 4GB) / Unlimited Bandwidth / No Custom Domain
|
|
@ -6,7 +6,7 @@
|
|||
|
||||
# ► Download Directories
|
||||
|
||||
* **Note** - Some Open Directories track IP addresses. Always use a VPN or Tor for anonymity when accessing these resources.
|
||||
* **Note** - Some Open Directories track IP addresses. Always use a [VPN](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/adblock-vpn-privacy/#wiki_.25BA_vpn) or [Tor](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/adblock-vpn-privacy/#wiki_.25B7_browser_privacy) when accessing these resources.
|
||||
|
||||
***
|
||||
|
||||
|
@ -19,6 +19,7 @@
|
|||
* [lumpysoft](https://lumpysoft.com/) - Search String Builder
|
||||
* [Sala De Espera](https://matrix.to/#/!qbOtnJEDGsPuWZBHLX:matrix.org?via=matrix.org) - Drive Sharing Community
|
||||
* [Open Directory Downloader](https://github.com/KoalaBear84/OpenDirectoryDownloader) - Open Directory Indexer
|
||||
* [DemoZoo](https://demozoo.org/), [Pouet](https://www.pouet.net/prodlist.php) or [scene.org](https://files.scene.org/) - Demoscene Archives
|
||||
* [CD.TextFiles](http://cd.textfiles.com/) - CD Text File Archive
|
||||
* [Defacto2](https://defacto2.net/) - Scene / Sub-Scene Database
|
||||
|
||||
|
@ -26,44 +27,30 @@
|
|||
|
||||
# ► Download Sites
|
||||
|
||||
* **Note** - General DDL sites use a lot of different sources, so it's best to avoid them for anything you install, like software, games or APKs. You can also use **[redirect bypassers](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/adblock-vpn-privacy#wiki_.25B7_redirect_bypass)** to skip link shorteners.
|
||||
* **Note** - General DDL sites use multiple sources, so it's best to avoid them for software and games. If needed, use **[redirect bypassers](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/adblock-vpn-privacy#wiki_.25B7_redirect_bypass)** to skip link shorteners.
|
||||
|
||||
***
|
||||
|
||||
* ⭐ **[Internet Archive](https://archive.org/)** - Video / Audio / Magazines / Newspapers / ROMs / [Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage/#wiki_internet_archive_tools)
|
||||
* ⭐ **[r/DataHoarder](https://reddit.com/r/DataHoarder)**, [Data Horde](https://datahorde.org/), [Archive Team](https://wiki.archiveteam.org/) / [Subreddit](https://www.reddit.com/r/Archiveteam/), [Gnutella Forums](https://www.gnutellaforums.com/) or [FileSharingTalk](https://filesharingtalk.com/forum.php) - File Hoarding Forums
|
||||
* [WorldSRC](https://www.worldsrc.net/) - Video / Audio / [Donate](https://www.worldsrc.net/service_end)
|
||||
* ⭐ **[Internet Archive](https://archive.org/)** - Video / Audio / Books / Magazines / Newspapers / ROMs / [Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage/#wiki_internet_archive_tools)
|
||||
* ⭐ **[r/DataHoarder](https://reddit.com/r/DataHoarder)** or [Archive Team](https://wiki.archiveteam.org/) / [Subreddit](https://www.reddit.com/r/Archiveteam/) - Data Hoarding Communties
|
||||
* [MaxRelease](https://max-rls.com/) - Video / Audio / Magazines
|
||||
* [SCNLOG](https://scnlog.me/) - Video / Audio / ROMs / Books
|
||||
* [SceneSource](https://www.scnsrc.me/), [2](https://www.scenesource.me/) - Video / Audio / ROMs / Books
|
||||
* [WorldSRC](https://www.worldsrc.net/) - Video / Audio
|
||||
* [DirtyWarez](https://forum.dirtywarez.com/) - Video / Audio / Books / Comics
|
||||
* [WarezForums](https://warezforums.com/) - Video / Audio / ROMs / Books / Comics
|
||||
* [ReleaseBB](https://rlsbb.ru/), [2](https://rlsbb.to/), [3](https://rlsbb.cc/), [4](http://rlsbb.in/) - Video / Audio / Books / Magazines / [Track Shows](https://openuserjs.org/scripts/drdre1/ReleaseBB_rlsbb_TV_Show_Tracker) / [PreDB](https://log.rlsbb.ru/)
|
||||
* [AditHD](https://www.adit-hd.com/) - Video / Audio / Books / Sign-Up Required
|
||||
* [Novanon](https://novanon.net/) - Video / Audio / Magazines / Comics / Books / Courses
|
||||
* [Psycho downloads](https://psychodownloads.com/) - Video / Audio / ROMs / Books / Magazines / NSFW
|
||||
* [Merlin Warez](https://merlinwz.com/) - Video / Audio / Books / Audiobooks / Comics / Magazines
|
||||
* [Sbenny's Forum](https://forum.sbenny.com/) - Video / Audio / ROMs / Books / [Discord](https://discord.gg/kf9FKQx)
|
||||
* [DownDuck](https://www.downduck.com/) - Video / Audio / Books / Magazines
|
||||
* [DDLValley](https://www.ddlvalley.me/) - Video / Audio / ROMs / Books / Comics / Magazines / [Forum](https://forum.ddlvalley.me/)
|
||||
* [MaxRelease](https://max-rls.com/) - Video / Audio / Magazines
|
||||
* [1DDL](https://1ddl.org/) - Video / Audio / Books / Comics / Magazines
|
||||
* [TFPDL](https://tfpdl.se/), [2](https://tfpdl.to/) - Video / Magazines / NSFW
|
||||
* [WarezLoad](https://warezload.net/index.php) - Video / Audio / Books
|
||||
* [Katz DDL](https://katzddl.net/) - Video / Audio / Books / NSFW
|
||||
* [Leaker](https://leaker.me/) - Video / Audio
|
||||
* [TehParadox](https://www.tehparadox.net/) - Video / Audio / Books / Magazines / ROMs
|
||||
* [wJungle](https://wjungle.net/) - Video / Audio / Books / NSFW
|
||||
* [PuZo](https://www.puzo.org/) - Video / Audio / Books / Audiobooks / NSFW
|
||||
* [Warez Heaven](https://www.warezheaven.com/index.php) - Video / Audio / ROMs / Books / NSFW
|
||||
* [Download.ir](https://download.ir/) - Video / ROMs
|
||||
* [SceneSource](https://www.scnsrc.me/), [2](https://www.scenesource.me/) - Video / Audio / ROMs / Books
|
||||
* [Download For All](https://dl4all.org/), [2](https://dl4all.biz/) - Video / Audio / Books / Magazines
|
||||
* [DDLSpot](https://www.ddlspot.com/) - Video / Audio
|
||||
* [0DayDDL](https://0dayddl.com/) - Video / Audio / Books / Magazines
|
||||
* [downTURK](https://www.downturk.net/) - Video / Audio / Books
|
||||
* [SoftArchive](https://softarchive.download/) - Video / Audio / Books / Comics / Newspapers / Magazines / [Mirrors](https://sastatus.com/), [2](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#softarchive-mirrors) / [Avoid Software / Games](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#sanet-warning)
|
||||
* [Pouet](https://www.pouet.net/prodlist.php) - Demos / Cracktros
|
||||
* [Redump](http://redump.org/) - Disc Preservation Project
|
||||
* [DemoZoo](https://demozoo.org/) or [scene.org](https://files.scene.org/) - Demoscene Archive / [Wiki](https://en.wikipedia.org/wiki/Demoscene)
|
||||
* [Ubu](https://ubuweb.com/) - Avant-Garde Artifacts
|
||||
* [AditHD](https://www.adit-hd.com/) - Video / Audio / Books
|
||||
* [wJungle](https://wjungle.net/) - Audio / Books / NSFW / Sign-Up Required
|
||||
* [Novanon](https://novanon.net/) - Audio / Magazines / Comics / Books / Courses
|
||||
* [ReleaseBB](https://rlsbb.ru/), [2](https://rlsbb.to/), [3](https://rlsbb.cc/), [4](http://rlsbb.in/) - Audio / Books / Magazines / [Track Shows](https://openuserjs.org/scripts/drdre1/ReleaseBB_rlsbb_TV_Show_Tracker) / [PreDB](https://log.rlsbb.ru/)
|
||||
* [Psycho downloads](https://psychodownloads.com/) - Audio / Books / Magazines
|
||||
* [Merlin Warez](https://merlinwz.com/) - Audio / Books / Audiobooks / Comics / Magazines
|
||||
* [1DDL](https://1ddl.org/) - Audio / Books / Comics / Magazines
|
||||
* [WarezLoad](https://warezload.net/index.php) - Audio / Books
|
||||
* [Katz DDL](https://katzddl.net/) - Audio / Books / NSFW
|
||||
* [TehParadox](https://www.tehparadox.net/) - Audio / Books / Magazines / ROMs
|
||||
* [downTURK](https://www.downturk.net/) - Audio / Books
|
||||
* [SoftArchive](https://softarchive.download/) - Audio / Books / Comics / Newspapers / Magazines / [Mirrors](https://sastatus.com/), [2](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#softarchive-mirrors) / [Note](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#sanet-warning)
|
||||
|
||||
***
|
||||
|
||||
|
@ -78,12 +65,10 @@
|
|||
* ⭐ **[4Shared](https://www.4shared.com/)**
|
||||
* [Meawfy](https://meawfy.com/) - Mega, GoFile and MediaFire Search
|
||||
* [File Host Search](https://cse.google.com/cse?cx=90a35b59cee2a42e1)
|
||||
* [SCNLOG](https://scnlog.me/)
|
||||
* [Linktury](https://www.ddlspot.com/)
|
||||
* [MediafireTrend](https://mediafiretrend.com/) - Mediafire Search
|
||||
* [WarezOmen](https://warezomen.com/) - Indexer / Search Engine
|
||||
* [SkullXDCC](https://skullxdcc.com/) / [2](https://sunxdcc.com/) or [XDCC.EU](https://www.xdcc.eu/) - XDCC / Search Engine
|
||||
* [Find Rare Files Online](https://forums.lostmediawiki.com/thread/10861/find-rare-files-online) - How-to Find Rare Files
|
||||
|
||||
***
|
||||
|
||||
|
@ -115,18 +100,18 @@
|
|||
|
||||
* 🌐 **[Adobe Alternatives](https://github.com/KenneyNL/Adobe-Alternatives)**, [2](https://rentry.org/adobealt) - Adobe Software Alternative Index
|
||||
* ↪️ **[Adobe Software](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/torrent/#wiki_.25BA_torrent_sites)**
|
||||
* ⭐ **[Virgil Software Search](https://virgil.samidy.com/software-search/)** or [Software CSE](https://cse.google.com/cse?cx=ae17d0c72fa6cbcd4) - Multi-Site Software Search
|
||||
* ⭐ **[CracksURL](https://cracksurl.com/)** / [Telegram](https://t.me/cracksurldotcom)
|
||||
* ⭐ **[LRepacks](https://lrepacks.net/)**
|
||||
* ⭐ **[Mobilism](https://forum.mobilism.org/)**
|
||||
* ⭐ **[soft98](https://soft98.ir/)** - Use [Translator](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/text-tools/#wiki_.25B7_translators) / [Anti-Adblock Fix](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#soft98-note)
|
||||
* ⭐ **[soft98](https://soft98.ir/)** - Use [Translator](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/text-tools/#wiki_.25B7_translators) / [Anti-Adblock Fix](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#soft98-note) / PW: `soft98.ir`
|
||||
* ⭐ **[Nsane Forums](https://www.nsaneforums.com/)** - Sign-Up Required
|
||||
* ⭐ **[Software CSE](https://cse.google.com/cse?cx=ae17d0c72fa6cbcd4)** - Multi-Site Software Search
|
||||
* ⭐ **[AlternativeTo](https://alternativeto.net/)** or [European Alternatives](https://european-alternatives.eu/) - Crowdsourced Recommendations
|
||||
* [AIOWares](https://www.aiowares.com/)
|
||||
* [AIOWares](https://www.aiowares.com/) - Software Forum
|
||||
* [DownloadHa](https://www.downloadha.com/)
|
||||
* [Team V.R releases](https://rentry.co/FMHYBase64#team-vr) - Adobe Plugins
|
||||
* [RetroSystemRevival](https://retrosystemsrevival.blogspot.com/) - Oldschool Software
|
||||
* [Libreware](https://t.me/Libreware) or [Xetrin RePacks](https://t.me/repacks_by_xetrin) - Telegram Channels
|
||||
* [Libreware](https://t.me/Libreware) - Telegram Channels
|
||||
* [Rarewares](https://www.rarewares.org/) - Rare Software
|
||||
* [Software Heritage](https://www.softwareheritage.org/) - Software Source Code Archive
|
||||
* [ZXPInstaller](https://zxpinstaller.com/) - Adobe Extension Installer
|
||||
|
@ -149,6 +134,7 @@
|
|||
* [Awesome CLI Apps](https://github.com/toolleeo/awesome-cli-apps-in-a-csv) or [CLI Club](https://cli.club/) - FOSS CLI Apps / Tools
|
||||
* [Free Software Directory](https://directory.fsf.org/wiki/Main_Page) - FOSS Wikis
|
||||
* [FOSS Wiki](https://en.wikipedia.org/wiki/Portal:Free_and_open-source_software/Categories) - FOSS Wikis
|
||||
* [Is It Really FOSS](https://isitreallyfoss.com/) - Determine if Software is FOSS / [Source Code](https://codeberg.org/danb/isitreallyfoss)
|
||||
|
||||
***
|
||||
|
||||
|
@ -253,13 +239,12 @@
|
|||
|
||||
***
|
||||
|
||||
# ► Leeches / Debrid
|
||||
# ► Debrid
|
||||
|
||||
* 🌐 **[LeechListing](https://www.leechlisting.com/)** or [Free Premium Leech Wiki](https://filehostlist.miraheze.org/wiki/Free_Premium_Leeches) - Leech Lists
|
||||
* 🌐 **[Debrid Services Comparison](https://debrid-services-comparison.netlify.app/)** / [GitHub](https://github.com/fynks/debrid-services-comparison)
|
||||
* 🌐 **[Debrid Services Comparison](https://debridcompare.pages.dev/)** / [GitHub](https://github.com/fynks/debrid-services-comparison)
|
||||
* ⭐ **[TorBox](https://torbox.app/)** - Freemium / 10GB / 10 Monthly Downloads / Sign-Up Required / [Unofficial Mobile Client](https://github.com/93Pd9s8Jt/atba) / [Subreddit](https://www.reddit.com/r/TorBoxApp/) / [Discord](https://discord.com/invite/wamy) / [GitHub](https://github.com/TorBox-App)
|
||||
* ⭐ **[Real-Debrid](https://real-debrid.com/)** - Paid Debrid Service / [Android Client](https://github.com/LivingWithHippos/unchained-android) / [Torrent Client](https://github.com/rogerfar/rdt-client) / [DDL Client](https://github.com/ItsYeBoi20/TorrentDownloaderRD)
|
||||
* ⭐ **[HDEncode](https://hdencode.org/)**, [DDLBase](https://ddlbase.com/), [RapidMoviez](https://rmz.cr/) or [rlsDB](https://rlsdb.com/) - Movie & TV DDL Forums / Requires Debrid
|
||||
* ⭐ **[HDEncode](https://hdencode.org/)**, [DDLBase](https://ddlbase.com/), [RapidMoviez](https://rmz.cr/ / [Mirrors](https://rmzmirrors.com/) or [rlsDB](https://rlsdb.com/) - Movie & TV DDL Forums / Requires Debrid
|
||||
* [Multi-OCH Helper](https://greasyfork.org/en/scripts/13884-multi-och-helper) - Quickly Send DDL Links to Premiumize & NoPremium
|
||||
* [Debrid Media Manager](https://debridmediamanager.com/) - Manage / Stream / Download Debrid Files
|
||||
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
* ⭐ **[IHaveNoTV](https://ihavenotv.com)**
|
||||
* ⭐ **[DocumentaryArea](https://www.documentaryarea.com/)** / [Remove Watermark](https://github.com/acridsoul/Clear-Mark) (or use PIP)
|
||||
* ⭐ **[DocPlus](https://www.docplus.com/)**
|
||||
* ⭐ **[Documentary+](https://www.docplus.com/)**
|
||||
* ⭐ **[1337x Documentaries](https://1337x.to/top-100-documentaries)** / Torrent
|
||||
* [LearnOutLoud](https://www.learnoutloud.com/)
|
||||
* [Top Documentary Films](https://topdocumentaryfilms.com/)
|
||||
|
@ -26,7 +26,6 @@
|
|||
* [Folkstreams](https://www.folkstreams.net/)
|
||||
* [Films For Action](https://www.filmsforaction.org/)
|
||||
* [r/Documentaries](https://reddit.com/r/Documentaries)
|
||||
* [Open-Video](https://open-video.org/)
|
||||
* [Videoneat](https://www.videoneat.com/)
|
||||
* [MVGroup](https://forums.mvgroup.org/)
|
||||
|
||||
|
@ -40,7 +39,6 @@
|
|||
* 🌐 **[Limnology](https://limnology.co/)** - Educational YouTube Channels
|
||||
* ↪️ **[Udemy Tools / Coupons](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_udemy_coupons)**
|
||||
* ↪️ **[Chemistry Lessons](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_chemistry_lessons)**
|
||||
* ⭐ **[Coursera](https://www.coursera.org/)** - Courses / [Financial Aid](https://github.com/EminentPhoton/financial-aid-on-coursera) / [Downloader](https://github.com/coursera-dl/coursera-dl)
|
||||
* ⭐ **[edX](https://www.edx.org/)** - Courses / [Downloader](https://github.com/rehmatworks/edx-downloader)
|
||||
* ⭐ **[MitOpenCourseWare](https://ocw.mit.edu/)** - Courses
|
||||
* ⭐ **[Khan Academy](https://www.khanacademy.org/)** - Courses / [Downloader](https://github.com/rand-net/khan-dl) / [Solver](https://greasyfork.org/en/scripts/427964)
|
||||
|
@ -97,6 +95,7 @@
|
|||
* 🌐 **[The Free Learning List](https://freelearninglist.org/)** - Learning Resources
|
||||
* 🌐 **[Awesome Educational Games](https://github.com/yrgo/awesome-educational-games)** - Educational Games Index
|
||||
* ↪️ **[Ebook Sites](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/reading#wiki_.25BA_educational_books)**
|
||||
* ↪️ **[Quotes / Poetry](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/reading#wiki_.25B7_quotes_.2F_poetry)**
|
||||
* ↪️ **[Survival / Prepping](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_survival)**
|
||||
* ↪️ **[Science News](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/misc/#wiki_.25B7science_news)**
|
||||
* ⭐ **[r/coolguides](https://reddit.com/r/coolguides/)** or [coolguid.es](https://coolguid.es/) - Guides & Tutorials
|
||||
|
@ -134,6 +133,7 @@
|
|||
* [Make it Yourself](https://makeityourself.org/) - 1000 DIY Projects / [Video](https://youtu.be/TSFJ2OH1PQA)
|
||||
* [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
|
||||
* [Polymaker](https://wiki.polymaker.com/) - 3D Printing Guide / Community / [Discord](https://discord.com/invite/polymaker)
|
||||
* [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
|
||||
* [LibraryOfJuggling](https://libraryofjuggling.com/) - Juggling Technique Database
|
||||
|
@ -177,7 +177,7 @@
|
|||
* [Mission US](https://www.mission-us.org/) - American History Learning Games
|
||||
* [OnThisDay](https://www.onthisday.com/) or [Curiosity Of The Day](https://www.curiosityoftheday.com/) - What Happened on Specific Days
|
||||
* [Royal Constellations](https://royalconstellations.visualcinnamon.com/) - Royal Family Ancestral Visualization
|
||||
* [Sciphilos](https://sciphilos.info/) or [Calculating Empires](https://calculatingempires.net/) - Historical Discovery Timelines
|
||||
* [Historical Tech Tree](https://www.historicaltechtree.com/) or [Calculating Empires](https://calculatingempires.net/) - Historical Discovery / Tech Timelines
|
||||
* [ETHW](https://ethw.org/) - Engineering and Technology History Wiki
|
||||
* [Royal Armouries Collections](https://royalarmouries.org/collection/) - Ancient Armaments Museum
|
||||
* [NuclearWeaponArchive](https://nuclearweaponarchive.org/) - Nuclear Weapons History
|
||||
|
@ -228,7 +228,6 @@
|
|||
## ▷ Music
|
||||
|
||||
* 🌐 **[Awesome Music Theory](https://github.com/vpavlenko/study-music)** - Music Theory Resources
|
||||
* 🌐 **[Music Outfitters](https://musicoutfitters.com/)** - Music Services / Information
|
||||
* ↪️ **[Sheet Music / Notation](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/audio#wiki_.25B7_sheet_music_.2F_notation)**
|
||||
* ⭐ **[Muted](https://muted.io/)**, **[Open Music Theory](https://viva.pressbooks.pub/openmusictheory/)** / [2](https://openmusictheory.github.io/), [Chromatone](https://chromatone.center/), [Teoria](https://www.teoria.com/index.php), [SimplifyingTheory](https://www.simplifyingtheory.com/), [LightNote](https://www.lightnote.co/) or [Music Theory](https://www.musictheory.net/) - Music Theory
|
||||
* [AudioZ](https://audioz.download/tutorials/) - Audio Courses / [Forum](https://audiosex.pro/)
|
||||
|
@ -239,7 +238,7 @@
|
|||
* [ScoreCloud](https://scorecloud.com/), [ChordReader2](https://github.com/AndInTheClouds/chordreader2) or [Chordify](https://chordify.net/) - Chord Detection / Transcriber
|
||||
* [Arpeggiator](https://codepen.io/jakealbaugh/full/qNrZyw), [Chordi](https://chordi.co/) or [AutoChords](https://autochords.com/) - Chord Progression Generators
|
||||
* [HookTheory](https://www.hooktheory.com/trends) - Chord Progression Library
|
||||
* [Piano Scribe](https://piano-scribe.glitch.me/) - Piano Transcriber
|
||||
* [Piano Scribe](https://laqieer.github.io/piano-scribe/) - Piano Transcriber
|
||||
* [LilyPond](https://lilypond.org/) - Music Engraving Program
|
||||
* [Learning Music](https://learningmusic.ableton.com/) or [Musica](https://www.musicca.com/) - Music-Making Lessons
|
||||
* [Midiano](https://midiano.com/) / [Discord](https://discord.com/invite/SfFdbunEm2), [Piano Trainer](https://zaneh.itch.io/piano-trainer) / [GitHub](https://github.com/ZaneH/piano-trainer), [Chord Nebula](https://chords.yottanami.com/), [sightread](https://sightread.dev/) or [PianoCheetah](https://pianocheetah.app) - Piano Practice / Learning
|
||||
|
@ -275,6 +274,7 @@
|
|||
* ⭐ **[Drawabox](https://drawabox.com/)**, [Croquis Cafe](https://croquis.cafe/), [Drawing Starter Pack Playlist](https://www.youtube.com/playlist?list=PL7KO8uN5A9PJsQIJzecnohhKjtMnSuFtR), [FarsiTuts](https://t.me/farsituts) or [Bill Martin's Guide to Drawing](https://www.guidetodrawing.com/) - Drawing Lessons
|
||||
* ⭐ **[Proko](https://www.youtube.com/user/ProkoTV/videos)** - Figure Drawing Lessons
|
||||
* ⭐ **[PaintingTube](https://painting.tube)**, [MarcoBucci](https://www.youtube.com/@marcobucci), [Alphonso Dunn](https://www.youtube.com/c/ALPHONSODUNN/videos?view=0&sort=p&flow=grid), [Feng Zhu FZD](https://www.youtube.com/user/FZDSCHOOL/videos), [Art Fundamentals](https://www.youtube.com/playlist?list=PLVgLT-e3jXPDgeED0pD0BPq8kY1VAZAGa) or [Circle Line Art](https://www.youtube.com/user/circlelinemedia/videos) - Art Video Tutorials
|
||||
* [Ubu](https://ubuweb.com/) - Avant-Garde Artifacts
|
||||
* [online-courses](https://online-courses.club/) - Art / Design Courses
|
||||
* [TutsPlus](https://tutsplus.com/) - Creative Courses
|
||||
* [Curriculum for the Solo Artists](https://alexhuneycutt.gumroad.com/l/free_curriculum) - Self-Taught Artist Curriculum
|
||||
|
@ -304,7 +304,6 @@
|
|||
* [x6ud](https://x6ud.github.io/#/) - Animal Photo Reference Search
|
||||
* [Thomas Romain Perspective](https://ibb.co/album/chGtPJ?sort=name_asc) - Perspective Guide
|
||||
* [Dimensions](https://www.dimensions.com/) - Object Dimension Reference
|
||||
* [The Dimensions Of Colour](http://www.huevaluechroma.com/) - Colour Theory Guide
|
||||
* [DevinKorwin Color Guide](https://x.com/devinkorwin/status/1278049901709012995) - Color in Paintings Guide
|
||||
* [Draw Mix Paint](https://www.drawmixpaint.com/) - Learn Oil Painting
|
||||
* [Painting Demos](https://paintingdemos.com/) - Painting Demonstrations
|
||||
|
@ -360,18 +359,6 @@
|
|||
|
||||
***
|
||||
|
||||
## ▷ Quote Indexes
|
||||
|
||||
* ⭐ **[Wikiquote](https://en.wikiquote.org)**
|
||||
* [BrainyQuote](https://www.brainyquote.com/)
|
||||
* [AZQuotes](https://www.azquotes.com/)
|
||||
* [QuoteGarden](https://www.quotegarden.com/)
|
||||
* [QuoteMaster](https://www.quotemaster.org/)
|
||||
* [TheOtherPages](https://theotherpages.org/quote.html)
|
||||
* [Quote Collections](https://pastebin.com/raw/ZH1D8wn3)
|
||||
|
||||
***
|
||||
|
||||
## ▷ Virtual Tours
|
||||
|
||||
* 🌐 **[Virtual Museum Resources](https://mcn.edu/a-guide-to-virtual-museum-resources/)** - Online Museums
|
||||
|
@ -397,7 +384,7 @@
|
|||
|
||||
## ▷ Physics
|
||||
|
||||
* 🌐 **[Physics Saviary](https://thephysicsaviary.com/Physics/Programs/Tools/find.php)** or [Falstad](https://www.falstad.com/) - Physics Tools
|
||||
* 🌐 **[Physics Aviary](https://thephysicsaviary.com/Physics/Programs/Tools/find.php)** or [Falstad](https://www.falstad.com/) - Physics Tools
|
||||
* ↪️ **[Math and Physics Books](https://rentry.co/FMHYBase64#math-and-physics-books)**
|
||||
* ⭐ **[The Feynman Lectures](https://www.feynmanlectures.caltech.edu/)** - Physics Lectures
|
||||
* ⭐ **[Bartosz Ciechanowski](https://ciechanow.ski/)**, [Isaac Physics](https://isaacphysics.org/), [PhysicsClassroom](https://www.physicsclassroom.com/), [HyperPhysics](http://hyperphysics.phy-astr.gsu.edu/hbase/), [MotionMountain](https://www.motionmountain.net/index.html) or [Splung](https://www.splung.com/) - Physics Lessons / Learning
|
||||
|
@ -498,7 +485,7 @@
|
|||
|
||||
* 🌐 **[Awesome Math](https://github.com/rossant/awesome-math)** or [Math Resources](https://docs.google.com/document/d/1rtokzhpvkUPnymudl_ZVmfAA7H33VIyLQUpujNGwrTo/) - Math Resources
|
||||
* ↪️ **[Calculators / Problem Solvers](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/edu#wiki_.25B7_calculators)**
|
||||
* ↪️ **[LaTeX Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_latex_tools)**
|
||||
* ↪️ **[LaTeX Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/text-tools/#wiki_.25B7_latex_tools)**
|
||||
* ⭐ **[Number Academy](https://number.academy/)** - Encyclopedia of Numbers
|
||||
* ⭐ **[Wumbo](https://wumbo.net/)** - Math Reference Site
|
||||
* ⭐ **[Open Source Society University](https://github.com/ossu/math)** / [PT-BR](https://github.com/ossu/math-br) - Math Roadmap / [Discord](https://discord.gg/wuytwK5s9h)
|
||||
|
@ -514,7 +501,6 @@
|
|||
* [Giac/Xcas](https://www-fourier.ujf-grenoble.fr/~parisse/giac.html) - Algebra System
|
||||
* [Algebra Rules](https://algebrarules.com/) - Learn Algebra Rules
|
||||
* [CalculusMadeEasy](https://calculusmadeeasy.org) - Learn Calculus
|
||||
* [Math24](https://math24.net/) - Geometry / Calculus / Problems / Solutions
|
||||
* [CLP](https://personal.math.ubc.ca/~CLP/) - Calculus Textbooks
|
||||
* [Mathematics Roadmap](https://github.com/TalalAlrawajfeh/mathematics-roadmap) - Mathematics Book Recommendations
|
||||
* [Converter Pro](https://f-droid.org/packages/com.ferrarid.converterpro/), [Rink](https://rinkcalc.app/), [Frink](https://frinklang.org/fsp/frink.fsp), [OneConverter](https://oneconverter.com/) or [ConvertAll](https://convertall.bellz.org/) - Unit Converters / Calculators
|
||||
|
@ -528,6 +514,7 @@
|
|||
* [Cut The Knot](https://cut-the-knot.org/) - Math Equations / Problems
|
||||
* [IXL Learning](https://au.ixl.com/math/) - Math Practice / Quizzes
|
||||
* [Pauls Online Math Notes](https://tutorial.math.lamar.edu/) - Math Practice / Guides
|
||||
* [HSCMathsByTopic](https://hscmathsbytopic.firsteducation.com.au/) - HSC Math Practice
|
||||
* [ParkMath](https://parkmath.github.io/) or [FreeMathHelp](https://freemathhelp.com/) - Math Guides
|
||||
* [ISODN Math](https://discord.gg/3sbwZdh) - ISODN Math Discord Community
|
||||
* [Fourier Transform](https://www.jezzamon.com/fourier/index.html) - Interactive Fourier Transform Guide
|
||||
|
@ -549,10 +536,10 @@
|
|||
* 🌐 **[Awesome Electronics](https://github.com/kitspace/awesome-electronics)** - Electronic Engineering Resources
|
||||
* 🌐 **[Engineering Blogs](https://github.com/kilimchoi/engineering-blogs)** - Engineering Blogs
|
||||
* ↪️ **[Comp Sci Resources](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/edu/#wiki_.25B7_computer_science)**
|
||||
* ↪️ **[3D Modeling](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/img-tools#wiki_.25BA_3d_models) / [CAD Apps](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/img-tools#wiki_.25B7_cad_engineering)**
|
||||
* ↪️ **[3D Modeling](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/image-tools#wiki_.25BA_3d_models) / [CAD Apps](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/image-tools#wiki_.25B7_cad_engineering)**
|
||||
* ⭐ **[r/AskEngineers](https://www.reddit.com/r/AskEngineers/)** / [Wiki](https://www.reddit.com/r/AskEngineers/wiki/), **[r/engineering](https://www.reddit.com/r/engineering/)** or [r/AutomotiveEngineering](https://www.reddit.com/r/AutomotiveEngineering/) - Engineering Subreddits
|
||||
* ⭐ **[NPTEL](https://nptel.ac.in/courses)** or [Sabin](https://www.youtube.com/@SabinCivil) - Engineering Courses
|
||||
* ⭐ **[KiCad](https://kicad.github.io/)** or [Horizon EDA](https://horizon-eda.org/) - Schematics Editor / PCB Creator / SPICE Integration
|
||||
* ⭐ **[KiCad](https://www.kicad.org/)** / [Libraries](https://kicad.github.io/) or [Horizon EDA](https://horizon-eda.org/) - Schematics Editor / PCB Creator / SPICE Integration
|
||||
* [Formulia](https://play.google.com/store/apps/details?id=m4.enginary) - Engineering Formulas / Tools
|
||||
* [Sanfoundry](https://www.sanfoundry.com/) - Engineering Questions & Answers
|
||||
* [CESDB](https://www.cesdb.com/) - Engineering Software
|
||||
|
@ -574,6 +561,7 @@
|
|||
|
||||
* 🌐 **[Wolfram Alpha Chemistry](https://wolframalpha.com/examples/science-and-technology/chemistry)** - Chemistry Calculators / Tools
|
||||
* ↪️ **[Chemistry Lessons](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_chemistry_lessons)**
|
||||
* ↪️ **[Periodic Tables](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/edu#wiki_.25B7_periodic_tables)**
|
||||
* ⭐ **[Lab Safety Guide / Intro](https://labmode.co.uk/)**
|
||||
* ⭐ **[LibreTexts Chemistry](https://chem.libretexts.org)** - Chemistry Texts
|
||||
* ⭐ **[Internet Chemistry](https://www.internetchemistry.com/search.php)** - Chemistry Search Index
|
||||
|
@ -604,6 +592,20 @@
|
|||
|
||||
***
|
||||
|
||||
## ▷ Periodic Tables
|
||||
|
||||
* ⭐ **[Ptable](https://ptable.com/)** - Interactive Table
|
||||
* ⭐ **[Images-of-elements](https://images-of-elements.com/)** - Element Images
|
||||
* ⭐ **[periodic-table.org](https://www.periodic-table.org/)** or **[Material Properties](https://material-properties.org/)** - Material / Element Learning Resources
|
||||
* [Atom Animation](https://atomanimation.com/) / [GitHub](https://github.com/matt765/atom-animation), [Graph Overflow](https://graphoverflow.com/graphs/3d-periodic-table.html) or [3D Periodic Table](https://artsexperiments.withgoogle.com/periodic-table/) - 3D Visualizations of Atoms
|
||||
* [Atomic](https://play.google.com/store/apps/details?id=com.jlindemann.science) - Periodic Table Mobile App
|
||||
* [The Periodic Table Of Elements](https://periodictableofchemicalelements.com/) - Interactive Table
|
||||
* [periodic-table.io](https://periodic-table.io/) - Interactive Table
|
||||
* [Periodic Table App](https://periodictableapp.com/) - Interactive Table
|
||||
* [WebElements](https://www.webelements.com) - Interactive Table
|
||||
|
||||
***
|
||||
|
||||
## ▷ Biology
|
||||
|
||||
* ⭐ **[Wikispecies](https://species.wikimedia.org/)** or [The Catalogue of Life](https://www.catalogueoflife.org/) - Species Databases
|
||||
|
@ -675,6 +677,7 @@
|
|||
* [University of Utah Pathology](https://webpath.med.utah.edu/webpath.html) - Pathology Guide
|
||||
* [The Iowa Virtual Slidebox](https://www.mbfbioscience.com/iowavirtualslidebox) - Pathology Atlas Software
|
||||
* [Nextstrain](https://nextstrain.org/) - Pathogen Evolution Tracking
|
||||
* [EyeWiki](https://eyewiki.org/) - Eye Encyclopedia
|
||||
* [Passmedicine](https://www.passmedicine.com/ucat/) - UCAT Practice Questions
|
||||
* [UCAT Score](https://codepen.io/souramoo/full/OJMQzVm) - UCAT Score Converter
|
||||
* [r/medicalschoolanki](https://www.reddit.com/r/medicalschoolanki/) - Community for Medical Anki Cards
|
||||
|
@ -682,20 +685,6 @@
|
|||
|
||||
***
|
||||
|
||||
## ▷ Periodic Tables
|
||||
|
||||
* ⭐ **[Ptable](https://ptable.com/)** - Interactive Table
|
||||
* ⭐ **[Images-of-elements](https://images-of-elements.com/)** - Element Images
|
||||
* ⭐ **[periodic-table.org](https://www.periodic-table.org/)** or **[Material Properties](https://material-properties.org/)** - Material / Element Learning Resources
|
||||
* [Graph Overflow](https://graphoverflow.com/graphs/3d-periodic-table.html) or [3D Periodic Table](https://artsexperiments.withgoogle.com/periodic-table/) - 3D Visualizations of Atoms
|
||||
* [Atomic](https://play.google.com/store/apps/details?id=com.jlindemann.science) - Periodic Table Mobile App
|
||||
* [The Periodic Table Of Elements](https://periodictableofchemicalelements.com/) - Interactive Table
|
||||
* [periodic-table.io](https://periodic-table.io/) - Interactive Table
|
||||
* [Periodic Table App](https://periodictableapp.com/) - Interactive Table
|
||||
* [WebElements](https://www.webelements.com) - Interactive Table
|
||||
|
||||
***
|
||||
|
||||
# ► Language Learning
|
||||
|
||||
## ▷ Multi-Language
|
||||
|
@ -707,7 +696,7 @@
|
|||
* ⭐ **[Language Transfer](https://www.languagetransfer.org/)** - Language Learning Lectures
|
||||
* ⭐ **[Language Reactor](https://www.languagereactor.com/)**, [LLPlayer](https://github.com/umlx5h/LLPlayer), [Trancy](https://www.trancy.org/) or [Easysubs](https://easysubs.cc/) - Learn Languages via Videos
|
||||
* ⭐ **[Readlang](https://readlang.com/)** - Learn a Language via Web Browsing
|
||||
* [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
|
||||
* [Duolingo](https://rentry.co/FMHYBase64#duolingo) / [Tips](https://duome.eu/tips), [LingoDeer](https://www.lingodeer.com/) or [Busuu](https://rentry.co/FMHYBase64#busuu) - Language Learning Lessons
|
||||
* [Language Learners](https://forum.language-learners.org/) - Language Learning Forum / Community
|
||||
* [WordReference](https://www.wordreference.com/), [Glosbe](https://glosbe.com/) or [Reverso](https://reverso.net/) - Translation Dictionary
|
||||
* [Yomitan](https://yomitan.wiki/) - Popup Dictionary / [Discord](https://discord.gg/3v22CATnyr)
|
||||
|
@ -716,7 +705,6 @@
|
|||
* [Languagelearning.site](https://languagelearning.site/) - Language Learning Torrents
|
||||
* [Refold](https://refold.la/) - Language Learning Roadmap
|
||||
* [Language Drops](https://languagedrops.com/) / [Premium](https://rentry.co/FMHYBase64#language-drops-premium) or [OkyDoky](https://www.okydoky.app/) - Language Learning App with Thematic Vocab
|
||||
* [10,000 Sentences](https://github.com/tkrajina/10000sentences) - Language Learning App
|
||||
* [Yojik](https://fsi-languages.yojik.eu/index.html) or [Pimsleur](https://rentry.co/FMHYBase64#pimsleur) - Language Learning Courses
|
||||
* [DLIFLC](https://gloss.dliflc.edu/) - Language Learning Quizzes
|
||||
* [Ba Ba Dum](https://babadum.com/) - Language Learning Game
|
||||
|
@ -838,7 +826,7 @@
|
|||
* [ArchChinese](https://www.archchinese.com/) or [Hanzi Grids](https://www.hanzigrids.com/) - Chinese Writing Lessons
|
||||
* [Stroke Order](https://stroke-order.learningweb.moe.edu.tw/?la=1) - Learn Chinese Stroke Orders
|
||||
* [HackingChinese](https://www.hackingchinese.com/archive-2/) - Chinese Learning Articles
|
||||
* [Cantonese.ca](https://cantonese.ca/), [CantoScrolls](https://cantoscrolls.com/), [Laoshi](https://laoshi.io/) or [TofuLearn](https://www.tofulearn.com/) - Chinese Vocabulary
|
||||
* [Cantonese.ca](https://cantonese.ca/), [CantoScrolls](https://cantoscrolls.com/) or [Laoshi](https://laoshi.io/) - Chinese Vocabulary
|
||||
* [MDBG](https://www.mdbg.net/) - Chinese Dictionaries
|
||||
* [Maorma](https://www.maorma.net/) - Chinese Tone Practice
|
||||
* [The Chairman's Bao](https://www.thechairmansbao.com/) - Chinese Reading Practice / News Articles
|
||||
|
@ -856,6 +844,7 @@
|
|||
* [FluentWithStories](https://www.fluentwithstories.com/) - Learn Spanish via Stories
|
||||
* [DreamingSpanish](https://www.dreamingspanish.com/) - Spanish Learning Videos
|
||||
* [The French Tutorial](http://www.frenchtutorial.com/) - French Learning Tutorials
|
||||
* [TV5MONDE](https://apprendre.tv5monde.com/en/) - French Learning Videos
|
||||
* [LCSpeakFrench](https://t.me/LCSpeakFrench) - Live French Lessons
|
||||
* [Uusi Kielemme](https://uusikielemme.fi/) - Finnish Learning
|
||||
|
||||
|
@ -892,14 +881,16 @@
|
|||
* ⭐ **[SpreadTheSign](https://spreadthesign.com/)** - Sign Langauge Dictionary
|
||||
* [ASL Dictionary](https://www.signasl.org/), [LifePrint](https://lifeprint.com/), [ASLCore](https://aslcore.org/) or [HandSpeak](https://www.handspeak.com/) - American Sign Langauge Dictionaries
|
||||
* [Text to Sign](https://wecapable.com/tools/text-to-sign-language-converter/) - Convert Text to Sign Language
|
||||
* [Rochester ASL / LSF](https://projects.lib.rochester.edu/lsf-asl-app/intro/) - ASL / LSF / Click Dictionary
|
||||
* [Rochester ASL / LSF](https://projects.lib.rochester.edu/lsf-asl-app/) - ASL / LSF / Click Dictionary
|
||||
* [BSL Dictionary](https://www.signbsl.com/), [BSL Signbank](https://bslsignbank.ucl.ac.uk/), [MobileSign](http://www.mobilesign.org/) or [Signd](https://signd.co.uk/) - British Sign Langauge Dictionaries
|
||||
* [Signbank](https://auslan.org.au/) - Australian Sign Langauge Dictionary
|
||||
* [NZSL](https://nzsl.nz/) - New Zealand Sign Langauge Dictionary
|
||||
* [SSC](https://www.ssc.education.ed.ac.uk/BSL/) - BSL Academic Term Dictionary
|
||||
* [BKS](https://bks.org.uk/) - British Key Word Signs
|
||||
* [International Sign](https://sonastik.ead.ee/rahvusvaheline/en) - International Sign Language
|
||||
* [Interpreter Services](https://alb-accmedia.austincc.edu/signs) - Specialized Sign Langauge Dictionary
|
||||
* [SignSchool](https://www.signschool.com/) - Sign Language Learning / Dictionary
|
||||
* [SooSL](https://www.soosl.net/) - Create Custom Sign Language Dictionaries
|
||||
* [ASL Learning](https://asl.ms/) - ASL Learning Site
|
||||
* [Learn NZSL](https://learn.nzsl.nz/) - NZSL Learning Site
|
||||
* [SignLearner](https://signlearner.com/) - Learn Sign Language while Browsing Internet / Chromium
|
||||
|
@ -925,7 +916,6 @@
|
|||
* [Hypercubing](https://hypercubing.xyz/) - Hypercubing Wiki
|
||||
* [Speedcube.app](https://speedcube.app/) - Cubing Timer (Mobile-Friendly)
|
||||
* [SolveTheCube](https://solvethecube.com/timer) - Cubing Timer
|
||||
* [YoTimer](https://www.yotimer.com/) - Cubing Timer
|
||||
* [qqTimer](https://www.qqtimer.net/) - Cubing Timer
|
||||
|
||||
***
|
||||
|
@ -945,16 +935,16 @@
|
|||
* [Chess Tempo](https://chesstempo.com/) - Chess Practice
|
||||
* [Lucas Chess](https://lucaschess.pythonanywhere.com/) - Chess Practice
|
||||
* [Chess Coach](https://rentry.co/FMHYBase64#chess-coach) - Chess Coaching App
|
||||
* [Chessercise](https://www.chessercise.xyz/) - Chess Game / Move Analysis
|
||||
* [WintrChess](https://wintrchess.com/), [2](https://chess.wintrcat.uk/) - Chess Game / Move Analysis
|
||||
* [Decode Chess](https://app.decodechess.com/) - Chess Game / Move Analysis
|
||||
* [YottaChess](https://www.yottachess.com/) - Chess Game / Move Analysis
|
||||
* [Chessigma](https://www.chessigma.com/) - Chess Game / Move Analysis / [Discord](https://discord.gg/dy9VXd5n3v)
|
||||
* [En Croissant](https://encroissant.org/) - Chess Game / Move Analysis
|
||||
* [Chess Vision](https://chessvision.ai/) - Chess Game / Move Analysis
|
||||
* [OpeningTree](https://www.openingtree.com/) - Download / Visualize Chess Games
|
||||
* [Chess Monitor](https://www.chessmonitor.com/) - Track Chess Analytics
|
||||
* [2700chess](https://2700chess.com/) - Live Chess Player Ratings
|
||||
* [Bill Wall's Chess Page](http://billwall.phpwebhosting.com/) or [365Chess](https://www.365chess.com/) - Chess History / Lessons
|
||||
* [365Chess](https://www.365chess.com/) - Chess History / Lessons
|
||||
* [ChessVariants](https://www.chessvariants.com/index/favorites.php) - 1000+ Chess Variants + Guides
|
||||
|
||||
***
|
||||
|
@ -970,7 +960,7 @@
|
|||
* [DnD-Books](https://github.com/EllatharTheHalfling/DnD-Books/) or [D&D 5e BR](https://dnd5ed.github.io) / Use [Translator](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/text-tools/#wiki_.25B7_translators) - D&D 4E/5E Books
|
||||
* [Cruinne's D&D Reading Room](https://arcadia.net/Cruinne/DnD/Articles/worldbuilding.html) - D&D Worldbuilding Checklist
|
||||
* [Tetra-cube](https://tetra-cube.com/dnd/dnd-statblock.html) - Monster Statblock Generator
|
||||
* [NaturalCrit](https://naturalcrit.com/) or [GM Binder](https://www.gmbinder.com/) - 5E Homebrew Document Editors
|
||||
* [GM Binder](https://www.gmbinder.com/) - 5E Homebrew Document Editors
|
||||
* [D&D Wiki](https://www.dandwiki.com/) - D&D Homebrew Wiki
|
||||
|
||||
***
|
||||
|
@ -992,7 +982,7 @@
|
|||
* [Oh My Git!](https://ohmygit.org/) or [Oh Shit, Git!?!](https://ohshitgit.com/) - Git Learning Game
|
||||
* [Git Tutorial](https://4geeksacademy.github.io/git-interactive-tutorial/) - Interactive Git Tutorial
|
||||
* [Learn Git Branching](https://learngitbranching.js.org/) - Interactive Git Branching Guide
|
||||
* [Git Time](https://git.bradwoods.io/) - Git Version Control System Learning Game
|
||||
* [Git Time](https://git.bradwoods.io/) - Git Learning Game
|
||||
* [DevToolTips](https://devtoolstips.org/) - Developer Tips
|
||||
* [Roadmap](https://roadmap.sh/) - Developer Roadmaps / [GitHub](https://github.com/kamranahmedse/developer-roadmap)
|
||||
* [Checki0](https://checkio.org/) - Code Learning Games
|
||||
|
@ -1016,7 +1006,6 @@
|
|||
* [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
|
||||
* [LearningSEO.io](https://learningseo.io/) or [SEO Cheat Sheet](https://seo-cheat-sheet.9elements.com/) - SEO Learning
|
||||
* [SQL PD](https://sqlpd.com/), [SQL Noir](https://www.sqlnoir.com/), [Lost at SQL](https://lost-at-sql.therobinlord.com/) or [SQL Easy](https://www.sql-easy.com/) - SQL Learning Games
|
||||
|
@ -1031,6 +1020,7 @@
|
|||
* [Workbench](https://apps.gnome.org/Workbench) - Learn / Experiment with Gnome / [GitHub](https://github.com/workbenchdev/Workbench)
|
||||
* [aman.ai](https://aman.ai/) - Artificial Intelligence / Deep Learning Stanford Notes
|
||||
* [LLM Visualization](https://bbycroft.net/llm), [Machine Learning Roadmap](https://rentry.org/machine-learning-roadmap), [SAAYN](https://spreadsheets-are-all-you-need.ai/), [machine-learning-zoomcamp](https://github.com/DataTalksClub/machine-learning-zoomcamp), [ML Engineering](https://github.com/stas00/ml-engineering), [udlbook](https://udlbook.github.io/udlbook/) / [GitHub](https://github.com/udlbook/udlbook/), [ML Visualized](https://ml-visualized.com/) / [GitHub](https://github.com/gavinkhung/machine-learning-visualized) or [LLM Course](https://github.com/mlabonne/llm-course) - Learn Machine Learning
|
||||
* [Transformer Explainer](https://poloclub.github.io/transformer-explainer/) - Transformer Visuzliation
|
||||
* [Approaching (Almost) Any Machine Learning Problem](https://files.catbox.moe/b34jd4.pdf) - Machine Learning Problem-Solving Book
|
||||
* [Deep ML](https://www.deep-ml.com/) - Solve Machine Learning Problems
|
||||
* [AI-For-Beginners](https://github.com/microsoft/AI-For-Beginners), [Beginner Guides](https://microsoft.github.io/generative-ai-for-beginners/) or [HF Learn](https://huggingface.co/learn) - Machine Learning Guides
|
||||
|
@ -1048,6 +1038,7 @@
|
|||
* [Programiz](https://www.programiz.com/), [TutorialKart](https://www.tutorialkart.com/), [Hackr.io](https://hackr.io/), [Ultimate Programming](https://www.codebreakthrough.com/ultimate-programming-all-in-one-tutorials?coupon=LEARNFORFREE), [GeeksforGeeks](https://www.geeksforgeeks.org/) or [Tpoint Tech](https://www.tpointtech.com/) / [Telegram](https://t.me/tpointtech) - General Coding Tutorials
|
||||
* [Guru99](https://www.guru99.com/) - Software / Web Development
|
||||
* [Codelabs](https://codelabs.developers.google.com/) - Project Based Tutorials
|
||||
* [The SHA-256 Project](https://github.com/oconnor663/sha256_project) - Learn to Develop SHA-256
|
||||
* [calmcode](https://calmcode.io/) - Video Tutorials
|
||||
* [zetcode](https://zetcode.com/) - Programming Notes / Ebooks
|
||||
* [Ebook Foundation](https://ebookfoundation.github.io/free-programming-books/) - Programming Ebooks
|
||||
|
@ -1056,20 +1047,21 @@
|
|||
|
||||
## ▷ Programming Languages
|
||||
|
||||
* [Typing.io](https://typing.io/) or [Silver Dev's WPM](https://wpm.silver.dev/) - Typing Practice for Programming / Sign-Up Required
|
||||
* [30 Days Of Python](https://github.com/Asabeneh/30-Days-Of-Python) or [Hitchhiker's Guide to Python](https://docs.python-guide.org/) / [GitHub](https://github.com/realpython/python-guide) - Python Guides
|
||||
* [A Byte of Python](https://python.swaroopch.com/), [Hypermodern Python](https://cjolowicz.github.io/posts/hypermodern-python-01-setup/), [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
|
||||
* [FutureCoder](https://futurecoder.io/), [CS50](https://cs50.harvard.edu/python/), [python-mastery](https://github.com/dabeaz-course/python-mastery), [Genepy](https://genepy.org/) or [A Practical Introduction to Python](https://www.brianheinold.net/python/python_book.html) - Python Courses
|
||||
* ⭐ **[30 Days Of Python](https://github.com/Asabeneh/30-Days-Of-Python)** - Python Programming Challenge
|
||||
* [Hitchhiker's Guide to Python](https://docs.python-guide.org/) - Python Guide / [GitHub](https://github.com/realpython/python-guide)
|
||||
* [Typing.io](https://typing.io/) or [Silver Dev's WPM](https://wpm.silver.dev/) - Programming Typing Practice / Sign-Up
|
||||
* [A Byte of Python](https://python.swaroopch.com/) - Python Guide
|
||||
* [Learn Python](https://www.learnpython.org/) - Interactive Python Guide
|
||||
* [FutureCoder](https://futurecoder.io/) - Interactive Python Guide
|
||||
* [Genepy](https://genepy.org/) - Interactive Python Guide
|
||||
* [Learn-Python](https://github.com/trekhleb/learn-python) - Python Playground / Cheatsheet
|
||||
* [CS50](https://cs50.harvard.edu/python/) - Python Course
|
||||
* [Tea Press](https://greenteapress.com/wp) - Python Learning Book
|
||||
* [Learn C](https://www.learn-c.org/) - C Tutorial
|
||||
* [C++ Core Guidelines](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines) - C++ Best Practices Guidelines / [GitHub](https://github.com/isocpp/CppCoreGuidelines)
|
||||
* [Learn C++](https://www.learncpp.com/) - C++ Lessons / Tutorials
|
||||
* [StudyPlan](https://www.studyplan.dev/) - C++ Lessons / Tutorials
|
||||
* [modern-cpp-tricks](https://github.com/rachitiitr/modern-cpp-tricks) - C++ Tips
|
||||
* [Learn C](https://www.learn-c.org/) - C Tutorials
|
||||
* [C++ Core Guidelines](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines) / [GitHub](https://github.com/isocpp/CppCoreGuidelines) or [modern-cpp-tricks](https://github.com/rachitiitr/modern-cpp-tricks) - C++ Tips
|
||||
* [Learn C++](https://www.learncpp.com/) or [StudyPlan](https://www.studyplan.dev/) - C++ Lessons / Tutorials
|
||||
* [Makefile Tutorial](https://makefiletutorial.com/) - Makefile Tutorial
|
||||
* [AmigosCode](https://www.youtube.com/@amigoscode) - Java / Kotlin Tutorials
|
||||
* [learncs.online](https://www.learncs.online/) - Learn Java / Kotlin
|
||||
* [Java Design Patterns](https://java-design-patterns.com/) - Java Guide
|
||||
* [AmigosCode](https://www.youtube.com/@amigoscode), [Java Design Patterns](https://java-design-patterns.com/) or [learncs.online](https://www.learncs.online/) - Java / Kotlin Guides
|
||||
* [Learn Next.js](https://nextjs.org/learn) - Next.js Learning Resources
|
||||
* [LearnGo](https://github.com/inancgumus/learngo), [Tour Go](https://tour.go.dev/) or [play-with-go](https://play-with-go.dev/) - Learn Go Programming
|
||||
* [Rust Learning](https://github.com/ctjhoa/rust-learning) - Rust Learning Resources
|
||||
|
@ -1183,7 +1175,7 @@
|
|||
|
||||
* ⭐ **[Leetcode](https://leetcode.com/)** - Coding Practice
|
||||
* ⭐ **Leetcode Tools** - [Solutions](https://github.com/kamyu104/LeetCode-Solutions), [2](https://leetcode.ca/), [3](https://walkccc.me/LeetCode/) / [Company Questions](https://github.com/MysteryVaibhav/leetcode_company_wise_questions), [2](https://docs.google.com/document/d/1icaNSRq6XcWO3EOycEP9F9P8SLerBanpY3Ni_ZzCfFA/), [3](https://seanprashad.com/leetcode-patterns/) / [Animations](https://github.com/MisterBooo/LeetCodeAnimation) / [Anki Cards](https://github.com/fspv/leetcode-anki) / [Videos](https://github.com/fishercoder1534/Leetcode) / [Resources](https://github.com/ashishps1/awesome-leetcode-resources) / [Analytics](https://leetcode-company-questions.vercel.app/)
|
||||
* ⭐ **[NeetCode](https://neetcode.io/)** - Coding Interview Practice
|
||||
* [NeetCode](https://neetcode.io/) - Coding Interview Practice
|
||||
* [algonds](https://github.com/MaciejWas/algonds) - Coding Practice
|
||||
* [Codility](https://app.codility.com/programmers/) - Coding Practice
|
||||
* [ProjectLearn](https://projectlearn.io/) - Coding Practice
|
||||
|
@ -1228,6 +1220,7 @@
|
|||
|
||||
* 🌐 **[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/), [CTF101](https://ctf101.org/), [picoCTF](https://picoctf.org/), [CTF Beginners Guide](https://jaimelightfoot.com/blog/so-you-want-to-ctf-a-beginners-guide/), [CTFtime](https://ctftime.org/) or [CTFLearn](https://ctflearn.com/) - CTF Resources / Guides
|
||||
* 🌐 **[Awesome Sites to Test On](https://github.com/BMayhew/awesome-sites-to-test-on)** - Cybersecurity Practice Sites
|
||||
* ⭐ **[HackTricks](https://book.hacktricks.wiki/)** - Practical Penetration Testing & Security Auditing Tips
|
||||
* ⭐ **[PortSwigger Academy](https://portswigger.net/web-security)** - Web Security Learning
|
||||
* ⭐ **[OWASP Cheatsheet](https://cheatsheetseries.owasp.org/)** - Application Security Guide
|
||||
|
@ -1246,15 +1239,15 @@
|
|||
* [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), [CryptoPals](https://cryptopals.com/) or [cryptohack](https://cryptohack.org/) - Cryptography Learning
|
||||
* [CryptoPals](https://cryptopals.com/) or [cryptohack](https://cryptohack.org/) - Cryptography Learning
|
||||
* [How HTTPS Works](https://howhttps.works/) - Learn HTTPS
|
||||
* [The SHA-256 Project](https://github.com/oconnor663/sha256_project) - Learn to Develop SHA-256
|
||||
|
||||
***
|
||||
|
||||
## ▷ Game Development
|
||||
|
||||
* 🌐 **[Awesome-Gamedev](https://github.com/FronkonGames/Awesome-Gamedev)**, [Learn Gamedev](https://github.com/notpresident35/awesome-learn-gamedev), [MagicTools](https://github.com/ellisonleao/magictools), [Newgrounds Wiki: Game Dev Resources](https://www.newgrounds.com/wiki/creator-resources/game-dev-resources) or [The VG Resource](https://www.vg-resource.com/) - Learning Resources
|
||||
* ↪️ **[Game Dev Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/dev-tools/#wiki_.25BA_game_dev_tools)**
|
||||
* ⭐ **[Brackeys](https://www.youtube.com/channel/UCYbK_tjZ2OrIZFBvU6CCMiA)** - Game Dev Tutorials
|
||||
* ⭐ **[r/gamedev](https://www.reddit.com/r/gamedev/)** - Reddit Community
|
||||
* [20 Games Challenge](https://20_games_challenge.gitlab.io/) - Beginner Game Dev Challenges
|
||||
|
@ -1337,7 +1330,7 @@
|
|||
* ↪️ **[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)**
|
||||
* ↪️ **[Text Rephrasing](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/text-tools#wiki_.25B7_text_rephrasing)**
|
||||
* ⭐ **[OpenBoard](https://openboard.ch/index.en.html)**, [DGM](https://dgm.sh/), [NotebookCast](https://www.notebookcast.com/), [WebWhiteboard](https://webwhiteboard.com/), [Microsoft Whiteboard](https://apps.microsoft.com/detail/9MSPC6MP8FM4), [WBO](https://wbo.ophir.dev/), [OurBoard](https://www.ourboard.io/), [Whiteboard.fi](https://whiteboard.fi/) or [Whiteboard Fox](https://r3.whiteboardfox.com/) - Whiteboards
|
||||
* ⭐ **[Excalidraw](https://excalidraw.com/)** / [Sharing](https://excalihub.dev/), **[OpenBoard](https://openboard.ch/index.en.html)**, [DGM](https://dgm.sh/), [NotebookCast](https://www.notebookcast.com/), [WebWhiteboard](https://webwhiteboard.com/), [Microsoft Whiteboard](https://apps.microsoft.com/detail/9MSPC6MP8FM4), [WBO](https://wbo.ophir.dev/), [OurBoard](https://www.ourboard.io/), [Whiteboard.fi](https://whiteboard.fi/) or [Whiteboard Fox](https://r3.whiteboardfox.com/) - Whiteboards
|
||||
* [FreeForStudent](https://freeforstudents.org/) - Free for Student Deals
|
||||
* [Better Canvas](https://github.com/UseBetterCanvas/bettercanvas) - Canvas Enhancement Extension
|
||||
* [Tasks for Canvas](https://github.com/jtcheng26/canvas-task-extension) - Improved Canvas To-Do List
|
||||
|
@ -1355,7 +1348,7 @@
|
|||
* [Wordwall](https://wordwall.net/) - Lesson Creator
|
||||
* [The Chomsky Index](https://github.com/jasons-gh/the-chomsky-index) - Noam Chomsky Content Index Tool
|
||||
* [Internet-In-A-Box](https://internet-in-a-box.org/) - Create Free Offline Learning Hotspots / [GitHub](https://github.com/iiab/iiab)
|
||||
* [SlideShareDownloader](https://www.slidesdownloader.com/), [SlidesDownloaders](https://slidesdownloaders.com/) or [SlideShareSaver](https://slidesharesaver.com/) - Download Slideshare Slides
|
||||
* [SlideShareDownloader](https://www.slidesdownloader.com/), [DownloaderSlides](https://downloderslides.com/), [SlidesDownloaders](https://slidesdownloaders.com/) or [SlideShareSaver](https://slidesharesaver.com/) - Download Slideshare Slides
|
||||
|
||||
***
|
||||
|
||||
|
@ -1374,7 +1367,7 @@
|
|||
* ⭐ **[Refseek](https://www.refseek.com/)**, [Explorer](https://explorer.globe.engineer/) or [Merlot](https://www.merlot.org/merlot/index.htm) - Academic Search Engines
|
||||
* [SciSpace](https://scispace.com/) (No Sign-Up), [Bohrium](https://www.bohrium.com/), [Scinito](https://ekb.scinito.ai/ai/chat) or [Elicit](https://elicit.com/) / [GitHub](https://github.com/elicit) - Research Chatbots
|
||||
* [Co-STORM](https://storm.genie.stanford.edu/) or [SciArena](https://sciarena.allen.ai/) - Generate Scientific Articles
|
||||
* [mybib](https://www.mybib.com/), [citemaker](https://www.citemaker.com/), [formatically](https://formatically.com/), [zbib](https://zbib.org/), [CitationMachine](https://citationmachine.net/), [Scribbr](https://www.scribbr.com/citation/generator/), [CiteFast](https://www.citefast.com) or [Cite This For Me](https://www.citethisforme.com/) - Citation Generators / [Chrome](https://chromewebstore.google.com/detail/cite-this-for-me-web-cite/nnnmhgkokpalnmbeighfomegjfkklkle)
|
||||
* [mybib](https://www.mybib.com/), [citemaker](https://www.citemaker.com/), [formatically](https://formatically.com/), [zbib](https://zbib.org/), [CitationMachine](https://citationmachine.net/), [BibGuru](https://www.bibguru.com/), [Scribbr](https://www.scribbr.com/citation/generator/), [CiteFast](https://www.citefast.com) or [Cite This For Me](https://www.citethisforme.com/) - Citation Generators / [Chrome](https://chromewebstore.google.com/detail/cite-this-for-me-web-cite/nnnmhgkokpalnmbeighfomegjfkklkle)
|
||||
* [Publish or Perish](https://harzing.com/resources/publish-or-perish) - Citation Analyzer
|
||||
* [Inciteful](https://inciteful.xyz/) - Find Connected Literature via Citations
|
||||
* [PLText](https://pltext.com/), [PlagiarismDetector](https://plagiarismdetector.net/) or [Duplichecker](https://www.duplichecker.com/) - Plagiarism Checkers
|
||||
|
@ -1394,7 +1387,8 @@
|
|||
* [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
|
||||
* [Brainly](https://brainly.com/) / [Limit Bypass](https://greasyfork.org/en/scripts/430355) - Homework Help Bots / Communities
|
||||
* [Brainly](https://brainly.com/) - Homework Help Bots / Communities / [Limit Bypass](https://greasyfork.org/en/scripts/430355)
|
||||
* [Free Numerade Videos](https://discord.gg/nEYfaceEcU) - Homework Help Videos
|
||||
* [MammothMemory](https://mammothmemory.net/index.html) - Visual Memory-Based Solutions
|
||||
* [StudyStream](https://www.studystream.live/), [Yeolpumta](https://www.yeolpumta.com/en) or [StudyTogether](https://www.studytogether.com/) - Online Study Groups
|
||||
* [Space Finder](https://spacefinder.lib.cam.ac.uk/) - UK Study Space Search
|
||||
|
@ -1463,7 +1457,6 @@
|
|||
* ⭐ **[Wolfram Alpha](https://www.wolframalpha.com/)** - Searchable Knowledgebase
|
||||
* [Omniglot](https://www.omniglot.com/index.htm) - Writing Systems & Languages Encyclopedia
|
||||
* [Simple Wiki](https://simple.wikipedia.org/wiki/Main_Page) - Simplified Wikipedia / [Auto-Redirect](https://rentry.co/simplewikifirefox)
|
||||
* [IntegralGuide](https://integralguide.com/) - Well-Being Encyclopedia
|
||||
* [Britannica](https://www.britannica.com/)
|
||||
* [EverybodyWiki](https://en.everybodywiki.com/)
|
||||
* [Encyclopedia](https://www.encyclopedia.com/)
|
|
@ -17,6 +17,8 @@ These are all anonymous comments taken from Reddit, Discord, X.com and our feedb
|
|||
|
||||
* *"Your sources have allowed me to give my father whatever shows or movies he asks for. Old stuff from when he was younger and all that. Stuff I wouldn't be able to access otherwise. It means a lot since he had heart surgery in Feb 2020 and cant really do much anymore, so its one of the few ways he can keep himself busy. Thank you."*
|
||||
|
||||
* *"Best Wiki ever. Wifey has stage 4 cancer. I am a working joe keeping this household afloat on warehouse wages while supporting our family. Finding this wiki has kept us close to our old way of life for free-fifty, lol! Books for the paperwhite, movies, TV, gaming, education, etc., etc. There is so much here that has enhanced our lives. And I find more in the depths every time I go exploring. Please don't ever quit updating/adding to this library of awesomeness! Anyway, I just wanted to drop an anonymous thank you for everything here. Amazing resource. Happy to have a carefully curated list instead of roaming blind into the internet wilds. You are doing some amazing works here. Basically my homepage now. Infinite Kudos!"*
|
||||
|
||||
* *"That's why I love FMHY so much. Before id spend hours and hours every day trying to hunt useful websites for myself."*
|
||||
|
||||
* *"I love this website so much. I literally have it labelled as "Everything" in my favorites."*
|
||||
|
|
|
@ -33,19 +33,19 @@
|
|||
|
||||
## ▷ Download Managers
|
||||
|
||||
* **Note** - Download managers can speed things up by using multiple connections, bypass rate limits, and they also make handling split files, and dealing with file hosts much easier.
|
||||
* **Note** - For more info on the benefits of Download Managers, see [The Piracy Glossary](https://rentry.org/the-piracy-glossary).
|
||||
|
||||
***
|
||||
|
||||
* ⭐ **[JDownloader](https://jdownloader.org/jdownloader2)** - Download Manager / [Warning](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#jdownloader)
|
||||
* ⭐ **JDownloader Tools** - [Debloat Guide](https://rentry.org/jdownloader2) / [Apps](https://my.jdownloader.org/apps/) / [Dark Theme](https://github.com/moktavizen/material-darker-jdownloader), [2](https://redd.it/q3xrgj) / [Dracula Theme](https://draculatheme.com/jdownloader2)
|
||||
* ⭐ **JDownloader Tools** - [Debloat Guide](https://rentry.co/jdownloader2) / [Apps](https://my.jdownloader.org/apps/) / [Dark Theme](https://github.com/moktavizen/material-darker-jdownloader), [2](https://redd.it/q3xrgj) / [Dracula Theme](https://draculatheme.com/jdownloader2)
|
||||
* ⭐ **[IDM](https://rentry.co/FMHYBase64#idm)** - Download Manager / [Firefox](https://addons.mozilla.org/en-US/firefox/addon/tonec-idm-integration-module/) / [Chrome](https://chromewebstore.google.com/detail/idm-integration-module/ngpampappnmepgilojfohadhhmbhlaek)
|
||||
* [AB Download Manager](https://abdownloadmanager.com/) - Download Manager / [Telegram](https://t.me/abdownloadmanager_discussion) / [GitHub](https://github.com/amir1376/ab-download-manager)
|
||||
* [Go Speed](https://gopeed.com/) - Download Manager / [Extension](https://github.com/GopeedLab/browser-extension) / [Plugins](https://github.com/search?q=topic%3Agopeed-extension&type=repositories) / [GitHub](https://github.com/GopeedLab/gopeed)
|
||||
* [Brisk](https://github.com/BrisklyDev/brisk) - Download Manager / [Extension](https://github.com/BrisklyDev/brisk-browser-extension) / [Discord](https://discord.gg/hGBDWNDHG3) / [GitHub](https://github.com/BrisklyDev/brisk)
|
||||
* [FDM](https://www.freedownloadmanager.org/) - Download Manager / [YTDL Addon](https://github.com/meowcateatrat/elephant)
|
||||
* [aria2](https://aria2.github.io/) / [GitHub](https://github.com/aria2/aria2) or [Persepolis](https://persepolisdm.github.io/) - Terminal Download Manager
|
||||
* aria2 Tools - [Download Bot](https://github.com/gaowanliang/DownloadBot) / [WebUI](https://github.com/ziahamza/webui-aria2), [2](https://ariang.mayswind.net/)
|
||||
* [aria2](https://aria2.github.io/) or [Persepolis](https://persepolisdm.github.io/) - Terminal Download Manager
|
||||
* aria2 Tools - [Download Bot](https://github.com/gaowanliang/DownloadBot) / [WebUI](https://github.com/ziahamza/webui-aria2), [2](https://ariang.mayswind.net/) / [GitHub](https://github.com/aria2/aria2)
|
||||
* [pyLoad](https://pyload.net/) - Lightweight Download Manager / [GitHub](https://github.com/pyload/pyload)
|
||||
* [Hitomi](https://github.com/KurtBestor/Hitomi-Downloader) - Multi-Site Media Download Tool
|
||||
* [ArrowDL](https://github.com/setvisible/ArrowDL/) - Download Manager
|
||||
|
@ -64,13 +64,12 @@
|
|||
* ⭐ **[CompactGUI](https://github.com/IridiumIO/CompactGUI)** - Transparent Compression
|
||||
* [Fileforums](https://fileforums.com/) or [Encode](https://encode.su/) - Data Compression Forums
|
||||
* [TurboBench](https://github.com/powturbo/TurboBench) - Compression Benchmark
|
||||
* [WinRAR](https://www.win-rar.com/), [2](https://rarlab.com/) - File Archiver / [Licenses](https://rentry.co/FMHYBase64#winrar-licenses)
|
||||
* [Efficient Compression Tool](https://github.com/fhanau/Efficient-Compression-Tool) or [Minuimus](https://birds-are-nice.me/software/minuimus.html) - File Archivers / Optimizers
|
||||
* [ezyZip](https://www.ezyzip.com/) - Zip Files Online
|
||||
* [unzip-online](https://unzip-online.com/en) - Unzip Files Online
|
||||
* [Unrar online](https://unrar.online/) - Unrar Files Online
|
||||
* [WinRAR](https://www.win-rar.com/), [2](https://www.rarlab.com) - File Archiver / [Hide Popups](https://rentry.co/x3-Rawr) / [Update (Important)](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#winrar)
|
||||
* [UPX](https://upx.github.io/) - Executable File Compressor / [GitHub](https://github.com/upx/upx)
|
||||
* [lessmsi](https://lessmsi.activescott.com/) - .msi Content Extractor / [GitHub](https://github.com/activescott/lessmsi)
|
||||
|
||||
***
|
||||
|
||||
|
@ -139,7 +138,7 @@
|
|||
|
||||
* ⭐ **[SyncThing](https://syncthing.net/)** - Cross-Platform File Sync / [Tray Support](https://martchus.github.io/syncthingtray/) / [GitHub](https://github.com/syncthing/syncthing)
|
||||
* ⭐ **[FreeFileSync](https://freefilesync.org/)** - Open-Source File Sync
|
||||
* [MyPhoneExplorer](https://www.fjsoft.at/), [SyncFolder](https://apps.microsoft.com/detail/9nc73mjwhsww?rtc=1&hl=en-us&gl=US) - Phone and Desktop Sync
|
||||
* [MyPhoneExplorer](https://www.fjsoft.at/) or [SyncFolder](https://apps.microsoft.com/detail/9nc73mjwhsww?rtc=1&hl=en-us&gl=US) - Phone and Desktop Sync
|
||||
* [allwaysync](https://allwaysync.com/) - File Sync Utility
|
||||
* [Resilio](https://www.resilio.com/individuals/) - P2P File Sync
|
||||
* [SmartFTP](https://www.smartftp.com/) - FTP File Sync
|
||||
|
@ -207,7 +206,7 @@
|
|||
* [GraphPaper](https://incompetech.com/graphpaper/) - PDF Graphs
|
||||
* [Aspose](https://products.aspose.app/pdf/annotation) or [pdf-unstamper](https://github.com/hwding/pdf-unstamper) - PDF Watermark Remover
|
||||
* [PDF Fixer](https://pdffixer.com/) - Repair Damaged PDFs
|
||||
* [OpenSign](https://github.com/OpenSignLabs/OpenSign), [FalsiScan](https://gitlab.com/edouardklein/falsisign), [JustSignPDF](https://justsignpdf.com/) or [Adobe Sign](https://www.adobe.com/acrobat/online/sign-pdf.html) - PDF Signature Tools
|
||||
* [OpenSign](https://github.com/OpenSignLabs/OpenSign), [Signature PDF](https://pdf.24eme.fr/) / [GitHub](https://github.com/24eme/signaturepdf), [FalsiScan](https://gitlab.com/edouardklein/falsisign), [JustSignPDF](https://justsignpdf.com/) or [Adobe Sign](https://www.adobe.com/acrobat/online/sign-pdf.html) - PDF Signature Tools
|
||||
* [Google Drive PDF Downloader](https://github.com/zeltox/Google-Drive-PDF-Downloader) - Download Protected Google Drive PDFs
|
||||
* [PDFCoffee](https://pdfcoffee.com/) - Upload PDF, Word or PowerPoint Files
|
||||
* [PrintFriendly](https://www.printfriendly.com/) - Printer Formatting Tools
|
||||
|
@ -217,7 +216,7 @@
|
|||
## ▷ Online PDF Toolkits
|
||||
|
||||
* ⭐ **[Sejda](https://www.sejda.com/)**
|
||||
* [ILovePDF](https://www.ilovepdf.com/)
|
||||
* ⭐ **[ILovePDF](https://www.ilovepdf.com/)**
|
||||
* [BreezePDF](https://breezepdf.com/)
|
||||
* [DigiPDF](https://digipdf.app/?lang=en_US)
|
||||
* [PDF2Go](https://www.pdf2go.com/)
|
||||
|
@ -258,6 +257,7 @@
|
|||
* ⭐ **[Blip](https://blip.net/)** - Desktop / Mobile Transfer
|
||||
* [Photon](https://photondev.netlify.app/) - Desktop / Mobile Transfer / [GitHub](https://github.com/abhi16180/photon)
|
||||
* [KDE Connect](https://kdeconnect.kde.org/) - Desktop / Mobile Transfer
|
||||
* [Wormhole](https://wormhole.app/) - Desktop / Mobile Transfer / [Discord](https://discord.com/invite/de6FscsK5Z) / [GitHub](https://github.com/SocketDev)
|
||||
* [Warpinator](https://github.com/linuxmint/warpinator) - Desktop / Mobile Transfer
|
||||
* [Sefirah](https://github.com/shrimqy/Sefirah) - Desktop / Mobile Transfer
|
||||
* [QRServ](https://play.google.com/store/apps/details?id=dev.uint.qrserv) - Desktop / Mobile Transfer / [GitHub](https://github.com/uintdev/qrserv)
|
||||
|
@ -279,7 +279,6 @@
|
|||
* ⭐ **[JustBeamIt](https://justbeamit.com/)**
|
||||
* ⭐ **[SpaceDrop](https://spacedrop.app/)**
|
||||
* [Surge](https://getsurge.io/) - P2P App / [GitHub](https://github.com/rule110-io/surge)
|
||||
* [Wormhole](https://wormhole.app/) / [Discord](https://discord.com/invite/de6FscsK5Z) / [GitHub](https://github.com/SocketDev)
|
||||
* [ToffeeShare](https://toffeeshare.com/) / [GitHub](https://github.com/ToffeeShare)
|
||||
* [new.space](https://new.space/)
|
||||
* [FilePizza](https://file.pizza/) / [GitHub](https://github.com/kern/filepizza)
|
||||
|
@ -293,22 +292,24 @@
|
|||
|
||||
***
|
||||
|
||||
* 🌐 **[PolyUpload File Host Index](https://github.com/spel987/PolyUploader?tab=readme-ov-file#-hosts)**
|
||||
* ↪️ **[Video File Hosts](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/video-tools#wiki_.25B7_video_file_hosts)**
|
||||
* ⭐ **[Gofile](https://gofile.io/)** - 100GB Monthly / Unlimited / 10 Days After Last Download / [Manager Export](https://greasyfork.org/en/scripts/515250)
|
||||
* ⭐ **[Pixeldrain](https://pixeldrain.com/)** - 20GB / 120 Days After Last Pageview / [Speedtest](https://pixeldrain.com/speedtest) / [Limit Bypass](https://pixeldrain-bypass.cybar.xyz/) / [Bypass Script](https://greasyfork.org/en/scripts/491326)
|
||||
* ⭐ **[Buzzheavier](https://buzzheavier.com/)**, [2](https://fuckingfast.net/), [3](https://bzzhr.co/) - Unlimited / 8 Days, Can Extend Forever / [File Expiry](https://buzzheavier.com/help) / **[Use Adblocker](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#buzzheavier-warning)** / [Discord](https://discord.gg/ttQjgC28WP)
|
||||
* ⭐ **[Catbox](https://catbox.moe/)** - 200MB / Forever
|
||||
* ⭐ **[Buzzheavier](https://buzzheavier.com/)**, [2](https://fuckingfast.net/), [3](https://bzzhr.co/) - Unlimited / 8 Days, Can Extend Forever / [File Expiry](https://buzzheavier.com/help) / **Use [Adblock](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#buzzheavier-warning)** / [Discord](https://discord.gg/ttQjgC28WP)
|
||||
* ⭐ **[Catbox](https://catbox.moe/)** - 200MB / Forever / [Proxy](https://fatbox.moe/)
|
||||
* ⭐ **[Pillowcase](https://pillows.su/)** - Audio File Host / 200MB (500MB w/ Account) / Forever
|
||||
* [FileMirage](https://filemirage.com/) - 50GB / 30 Days After Last View
|
||||
* [Send.now](https://send.now/) - 100GB / 30 Days After Last Download
|
||||
* [Send.now](https://send.now/) - 100GB / 15 Days After Last Download
|
||||
* [Transfer.it](https://transfer.it/) / Unlimited / 90 Days / Owned by Mega.nz
|
||||
* [DesiUpload](https://desiupload.co/) - 15 Days (2GB per file / 30 Days w/ Account)
|
||||
* [MixDrop](https://mixdrop.ag/) - Unlimited / 60 Days / Sign-Up Required
|
||||
* [Ranoz](https://ranoz.gg/) - 20GB / 30 Days After Last Download
|
||||
* [1fichier.com](https://1fichier.com/) - 300GB / 15 Days (30 Days w/ Account)
|
||||
* [Filebin](https://filebin.net/) - Unlimited / 6 Days / [Warning](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#filebin-warning)
|
||||
* [file.kiwi](https://file.kiwi/) - Unlimited / [File Expiry Explanation](https://file.kiwi/en/price)
|
||||
* [file.kiwi](https://file.kiwi/) - Unlimited / 90 Hours / [File Expiry](https://file.kiwi/en/price)
|
||||
* [Easyupload.io](https://easyupload.io/) - 100GB / 30 Days
|
||||
* [DoraDrop](http://doradrop.com/) - Unlimited / 10GB / Sign-Up Required
|
||||
* [FEX.NET](https://fex.net/) - 100GB / 7 Days
|
||||
* [VikingFile](https://vikingfile.com/) - 500GB / 15 Days After Last Download / [Discord](https://discord.gg/EPEFC6KkpF)
|
||||
* [DropMeFiles](https://dropmefiles.com/) - 50GB / 14 Days
|
||||
|
@ -325,7 +326,7 @@
|
|||
* [Tempcloud](https://temp.kotol.cloud/) - 10GB / 3 Days
|
||||
* [GrosFichiers](https://www.grosfichiers.com/) or [DataTransfer](https://www.datatransfer.com/) - 10GB / 14 Days
|
||||
* [ShareFile](https://sharefile.co/), [2](https://gofile.to/) - 5GB / Unlimited
|
||||
* [Akira Box](https://akirabox.com/) - 20GB Free / 1 Year
|
||||
* [Akira Box](https://akirabox.com/), [2](https://akirabox.to/) - 20GB Free / 30 Days After Last Download / Sign-Up Required
|
||||
* [FileTransfer.io](https://filetransfer.io/) - 6GB / 21 Days / 50 Downloads
|
||||
* [udrop](https://www.udrop.com/) - 5GB / Forever
|
||||
* [Imagenetz](https://www.imagenetz.de/?setLang=en) - 5GB / 30 Days After Last Download
|
||||
|
@ -340,7 +341,6 @@
|
|||
* [UserDrive](https://usersdrive.com/) - 5GB / 65 Days
|
||||
* [pCloud Transfer](https://transfer.pcloud.com/) or [Tresorit Send](https://send.tresorit.com/) - 5GB / 7 Days / Email Required
|
||||
* [Temp.sh](https://temp.sh/) - 4GB / 3 Days
|
||||
* [File Convoy](https://www.fileconvoy.com/) - 3GB / 21 Days
|
||||
* [Mega4Upload](https://mega4upload.net/) - 3GB / 183GB / 150 Days After Last Download
|
||||
* [Send](https://send.vis.ee/) - 2.5GB / 3 Days / 10 Downloads / [CLI](https://github.com/timvisee/ffsend) / [Instances](https://gitlab.com/timvisee/send-instances)
|
||||
* [JUMBOmail](https://www.jumbomail.me/) - 2GB / 7 Days / Email Required
|
||||
|
@ -354,8 +354,8 @@
|
|||
* [DooDrive](https://doodrive.com/) - 2GB / 30 Days / Sign-Up Required
|
||||
* [Clicknupload](https://clicknupload.click) - 10GB / 8 Days / Sign-Up Required
|
||||
* [Smash](https://fromsmash.com/) - 2GB / 7 Days / Email Required
|
||||
* [MultiUp.io](https://multiup.io/) / [Discord](https://discord.gg/2yUEQPxTTU) / [Extract / Upload](https://github.com/Reddiepoint/MultiUp-Direct) 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
|
||||
* [MultiUp.io](https://multiup.io/) / [Extract / Upload](https://github.com/Reddiepoint/MultiUp-Direct) / [Discord](https://discord.gg/2yUEQPxTTU) or [Mirrored.to](https://www.mirrored.to/) - Multi Host Uploaders
|
||||
* [PolyUploader](https://polyuploader.vercel.app/) / [GitHub](https://github.com/spel987/PolyUploader) or [Z-o-o-m](https://z-o-o-m.eu/) - Multi-Host Upload Desktop Apps
|
||||
* [FileQ](https://fileq.net/) or [DataNodes](https://datanodes.to/) / [Discord](https://discord.gg/mKyBMyeKvh) - Webmasters Only File Hosts
|
||||
* [Limited Upload Hosts](https://rentry.org/xc48kg) - More Hosts / 1GB or Below
|
||||
|
||||
|
@ -395,7 +395,7 @@
|
|||
## ▷ Cloud Managers
|
||||
|
||||
* ⭐ **[Rclone](https://rclone.org/)** - Cloud Storage Manager
|
||||
* ⭐ **Rclone Tools** - [Guide](https://rentry.co/simple-rclone-usage) / [Colab](https://colab.research.google.com/github/szyha/RcloneLabArchive/blob/master/RcloneLab.ipynb) / [Telegram](https://t.me/rclonexbot) / [Transfer Tool](https://github.com/TheCaduceus/Multi-Cloud-Transfer-Tool)
|
||||
* ⭐ **Rclone Tools** - [Guide](https://rentry.co/simple-rclone-usage) / [Colab](https://colab.research.google.com/github/szyha/RcloneLabArchive/blob/master/RcloneLab.ipynb) / [Transfer Tool](https://github.com/TheCaduceus/Multi-Cloud-Transfer-Tool) / [Telegram](https://t.me/rclonexbot)
|
||||
* ⭐ **[gclone](https://github.com/dogbutcat/gclone)** - Cloud Storage Manager
|
||||
* ⭐ **[Air Explorer](https://airexplorer.net/en/)** - Cloud Storage Manager
|
||||
* ⭐ **[RaiDrive](https://www.raidrive.com/)** - Cloud Storage Manager
|
||||
|
@ -410,7 +410,7 @@
|
|||
|
||||
## ▷ Google Drive Tools
|
||||
|
||||
* ⭐ **[OneClickRun](https://colab.research.google.com/github/biplobsd/OneClickRun/blob/master/OneClickRun.ipynb)** - Google Drive Tools / [Features](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#oneclick-note) / Use Throwaway Account
|
||||
* ⭐ **[OneClickRun](https://colab.research.google.com/github/biplobsd/OneClickRun/blob/master/OneClickRun.ipynb)** - Google Drive Tools / [Features](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#oneclick-note) / Use Throwaway Google Account
|
||||
* [DriveUploader](https://driveuploader.com/) - Receive Files via Google Drive
|
||||
* [ZIP Extractor](https://zipextractor.app/) - Google Drive / Gmail File Archiver
|
||||
* [Google Drive CLI](https://github.com/glotlabs/gdrive) - Google Drive CLI Client
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
# ► Gaming Tools
|
||||
|
||||
* ↪️ **[Download Managers](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/file-tools/#wiki_.25B7_download_managers)**
|
||||
* ↪️ **[Media Posters / Covers](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/img-tools#wiki_.25B7_media_covers_.2F_posters)**
|
||||
* ↪️ **[Media Posters / Covers](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/image-tools#wiki_.25B7_media_covers_.2F_posters)**
|
||||
* ↪️ **[Game Soundtracks](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/audio#wiki_.25B7_game_soundtracks)**
|
||||
* ⭐ **[PCGamingWiki](https://www.pcgamingwiki.com/)** - Game Fixes & Workarounds / [Discord](https://discord.gg/KDfrTZ8)
|
||||
* ⭐ **[Library of Codexes](https://libraryofcodexes.com/)** - Game Codex Library
|
||||
|
@ -22,7 +22,7 @@
|
|||
* [VGHF Digital Archive](https://library.gamehistory.org/) - Historical Documents, Magazines, Transcripts, etc. / [Archive](http://archive.gamehistory.org/)
|
||||
* [NIWA](https://www.niwanetwork.org/) - Nintendo Independent Wiki Alliance / [Discord](https://discord.gg/59Mq6qB)
|
||||
* [Gog To Free](https://greasyfork.org/en/scripts/481134) - Add Piracy Site Links to GOG Store
|
||||
* [The Models Resource](https://www.models-resource.com/) - Game Models
|
||||
* [The Models Resource](https://models.spriters-resource.com/) - Game Models
|
||||
* [The Spriters Resource](https://www.spriters-resource.com/) - Video Game Sprites / [Discord](https://discord.gg/tsr)
|
||||
* [MiiCharacters](https://www.miicharacters.com/) - Famous Mii Creation Guides
|
||||
* [Archiverse](https://archiverse.pretendo.network/) - Miiverse Archive
|
||||
|
@ -48,12 +48,13 @@
|
|||
|
||||
* ⭐ **[Playnite](https://playnite.link/)** - Game Library / Launcher / [Extensions](https://playnite.link/addons.html) / [Subreddit](https://www.reddit.com/r/playnite/) / [Discord](https://discord.com/invite/BrtABqe) / [GitHub](https://github.com/JosefNemec/Playnite/)
|
||||
* ⭐ **[Ascendara](https://ascendara.app/)** - Game Library / Launcher / Downloader / [Discord](https://ascendara.app/discord) / [GitHub](https://github.com/Ascendara/ascendara)
|
||||
* ⭐ **[GoG Galaxy](https://www.gog.com/galaxy)** (closed source) or **[Project GLD](https://y0urd34th.github.io/Project-GLD/)** / [GitHub](https://github.com/Y0URD34TH/Project-GLD/) - Game Libraries / Launchers
|
||||
* ⭐ **[Project GLD](https://y0urd34th.github.io/Project-GLD/)** / [GitHub](https://github.com/Y0URD34TH/Project-GLD/) or **[GOG Galaxy](https://www.gog.com/galaxy)** (closed source) - Game Libraries / Launchers
|
||||
* [Fit Launcher](https://github.com/CarrotRub/Fit-Launcher/) - Unofficial Game Launcher / Torrent Client / [Discord](https://discord.gg/cXaBWdcUSF)
|
||||
* [Launchbox](https://www.launchbox-app.com/) - Retro / Console Game Library / Launcher
|
||||
* [GameHUB Launcher](https://www.deviantart.com/not-finch/art/GameHUB-launcher-2-for-Rainmeter-785369648) - Rainmeter Game Launcher
|
||||
* [Hydra](https://hydralauncher.gg/) - Game Launcher / Torrent Client / [Plugins](https://library.hydra.wiki/) / [Telegram](https://t.me/hydralauncher) / [Discord](https://discord.com/invite/hydralaunchercommunity) / [GitHub](https://github.com/hydralauncher/hydra)
|
||||
* [OpenGamepadUI](https://github.com/ShadowBlip/OpenGamepadUI) - Gamepad Native Launcher
|
||||
* [TwintailLauncher](https://twintaillauncher.app/) - Game Launcher / Mod Engine for F2P Anime Games / [GitHub](https://github.com/TwintailTeam/TwintailLauncher)
|
||||
* [JackboxUtility](https://jackboxutility.com/) - Jackbox Games Launcher / [Discord](https://discord.gg/ffKMZeb88m) / [GitHub](https://github.com/JackboxUtility/JackboxUtility)
|
||||
* [GameVault](https://gamevau.lt) - Self-Hosted Gaming Platform / [Discord](https://discord.gg/NEdNen2dSu) / [GitHub](https://github.com/Phalcode/gamevault-app)
|
||||
|
||||
|
@ -99,6 +100,7 @@
|
|||
* [JoyToKey](https://joytokey.net/en/) - Controller Emulator
|
||||
* [Spud Controller](https://sadwhale-studios.itch.io/) - Controller / Mouse Input Displays
|
||||
* [Gamepad-Tester](https://hardwaretester.com/gamepad) or [AresLuna](https://aresluna.org/gamepad-tester/) - Controller Connectivity Testers
|
||||
* [DualSense Tester](https://ds.daidr.me/) - Web DualSense Tester / [GitHub](https://github.com/daidr/dualsense-tester)
|
||||
* [hidusbf](https://github.com/LordOfMice/hidusbf) - Decrease DS4/5 Input Lag / [Video](https://youtu.be/x0wcJM4FtXQ)
|
||||
* [HidHide](https://docs.nefarius.at/projects/HidHide/) - Input Device Firewall
|
||||
* [Whitescent Engine](https://apt.izzysoft.de/fdroid/index/apk/com.github.whitescent.engine) - Use Phone as Joy Stick / [GitHub](https://github.com/whitescent/Engine)
|
||||
|
@ -125,12 +127,12 @@
|
|||
* [ModOrganizer](https://github.com/ModOrganizer2/modorganizer) - Mod Manager
|
||||
* [Otis_Inf Camera Mods](https://kemono.cr/patreon/user/37343853) or [CinematicTools Archive](https://rentry.co/FMHYBase64#cinematictools-archive) - Game Camera Mods
|
||||
* [Mod.io](https://www.mod.io/) - Cross-Platform Game Mods Support / [Discord](https://discord.com/invite/modio)
|
||||
* [WabbaJack](https://www.wabbajack.org/) - Automated Modlist Installer / [Discord](https://discord.com/invite/wabbajack)
|
||||
* [WabbaJack](https://www.wabbajack.org/) - Automated Modlist Installer / [Fixes](https://rentry.co/FMHYBase64#wabbajack) / [Discord](https://discord.com/invite/wabbajack)
|
||||
* [ModWorkshop](https://modworkshop.net/) - Game Mods / [Discord](https://discord.com/invite/Eear4JW)
|
||||
* [GameFront](https://gamefront.com/) - Game Mods / [Discord](https://discord.com/invite/gamefront)
|
||||
* [Video Game Mods](https://videogamemods.com/) - Game Mods / [Discord](https://discord.com/invite/C2JussB8hk)
|
||||
* [SMods](https://catalogue.smods.ru/) - Game Mods
|
||||
* [MrAntiFun](https://mrantifun.net/) - Game Mods
|
||||
* [MrAntiFun](https://mrantifun.net/) - Game Mods / Trainers
|
||||
* [Silent's Blog](https://cookieplmonster.github.io/mods/index/) - Game Mods / Patches
|
||||
* [FlingTrainer](https://flingtrainer.com/) - Game Mods / Trainers / Single Player Games Only
|
||||
* [GameCopyWorld](https://www.gamecopyworld.com/), [2](https://gamecopyworld.eu/) - Game Patchers / Trainers / Single Player Games Only
|
||||
|
@ -225,7 +227,7 @@
|
|||
* [listal](https://www.listal.com/) - Game Database
|
||||
* [FrontierNav](https://frontiernav.net/) - Game Database
|
||||
* [IMDb Advanced Search](https://www.imdb.com/search/) - Game Search
|
||||
* [Low Spec Games](https://exefer.github.io/lowspecgames/) - Low Spec Game Database / [Text Only](https://pastebin.com/raw/MTCXZxCN) / [GitHub](https://github.com/Exefer/lowspecgames)
|
||||
* [Low Spec Games](https://exefer.github.io/lowspecgames/) - Low Spec Game Database / [Text Only](https://pastebin.com/MTCXZxCN) / [GitHub](https://github.com/exefer/lowspecgames)
|
||||
* [JRPGC](https://jrpgc.com/) - JRPG Databases / [Discord](https://discord.com/invite/jrpgc)
|
||||
* [RPGCodex](https://rpgcodex.net/forums/) - RPG Database / Forum
|
||||
* [SteamPeek](https://steampeek.hu/) or [IndieDB](https://www.indiedb.com/) - Indie Game Databases
|
||||
|
@ -253,8 +255,10 @@
|
|||
* 🌐 **[Awesome Engineering Games](https://github.com/arcataroger/awesome-engineering-games)** - Engineering Games
|
||||
* ⭐ **[AcclaimedVideoGames](https://www.acclaimedvideogames.com/)** or **[VideoGameCanon](https://www.videogamecanon.com/)** - Game Top 1000 List
|
||||
* ⭐ **[OpenCritic](https://opencritic.com/)** - Critic Game Reviews / Ratings
|
||||
* ⭐ **[TasteDive](https://tastedive.com/games)** or [r/ifyoulikeblank](https://www.reddit.com/r/ifyoulikeblank/) - Game Recommendations
|
||||
* [Rec Charts](https://pastebin.com/ayuqSpGR) - Game Recommendation Guides
|
||||
* ⭐ **[SteamDB Ratings](https://steamdb.info/stats/gameratings/)** - Steam Ratings Chart
|
||||
* [TasteDive](https://tastedive.com/games) or [r/ifyoulikeblank](https://www.reddit.com/r/ifyoulikeblank/) - Game Recommendations
|
||||
* [Emulation Collection](https://docs.google.com/spreadsheets/d/1bYIhExnaQXYyWLnna1WJPLMvXnmSlq2tvazDL3eQ3z0) - Game Recommendation Chart / 7+ Metacritic
|
||||
* [Charts and Culture](https://pastebin.com/uRDJVGkL) - Game Recommendation Directory
|
||||
* [Can I Play That?](https://caniplaythat.com/) - Video Game Accessibility Reviews
|
||||
* [MoreGamesLike](https://www.moregameslike.com/) or [Games Like Finder](https://gameslikefinder.com/) - Find Similar Games
|
||||
* [MiniReview](https://minireview.io/) - Mobile Game Recommendations / Reviews / [Discord](https://discord.gg/TJq6EXfm7f)
|
||||
|
@ -370,7 +374,7 @@
|
|||
* 🌐 **[Multiplayer Mods](https://docs.google.com/spreadsheets/d/e/2PACX-1vSV41AswEt3EpzSyd85YRVtoJaIIXWjtBy347dISJg4fs6xSNPqcgfsh76TxX_l-mnT7pjMlSqTW-87/pubhtml)** or [Unmoddable](https://unmoddable.com/) - Multiplayer Mods for Single-Player Games
|
||||
* 🌐 **[CoD All](https://gitlab.com/xifil/cod-all)** - CoD Multiplayer Mod Index
|
||||
* ⭐ **[Plutonium](https://plutonium.pw/)** - COD BO1/BO2, MW3 and WaW Multiplayer Client / [Setup Guide](https://guides.viren070.me/plutonium) / [Video Guide](https://youtu.be/8F7hv98t8ck) / [Offline Launcher](https://github.com/JugAndDoubleTap/LanLauncher) / [Discord](https://discord.gg/d95y8ah)
|
||||
* [HorizonMW](https://discord.gg/horizonmw) - Modern Warfare Remastered Multiplayer Client / [Guide](https://youtu.be/BgfTZMXeQ8E) / [Servers / Info](https://master.iw4.zip/) / [Tools](https://github.com/z6m/h2m-tool)
|
||||
* [HorizonMW](https://discord.gg/horizonmw) - Modern Warfare Remastered Multiplayer Client / [Guide](https://youtu.be/BgfTZMXeQ8E) / [Servers / Info](https://master.iw4.zip/)
|
||||
* [Ezz-BOIII](https://rentry.co/FMHYBase64#boiii) - COD Black Ops 3 Multiplayer Client
|
||||
* [CoD4x Mod](https://cod4x.ovh/) - COD4 (2007) Multiplayer Project / Requires MP Key / [Discord](https://discord.cod4x.ovh/)
|
||||
* [Venice Unleashed](https://veniceunleashed.net/) / [Discord](https://discord.com/invite/dpJwaVZ) or [Warsaw Revamped](https://warsaw.gg/) / [Discord](https://discord.com/invite/C9Zrh4G) - Battlefield Mod Projects
|
||||
|
@ -380,7 +384,7 @@
|
|||
* [Slippi](https://slippi.gg/) - Super Smash Bros Melee Online / [Discord](https://discord.com/invite/pPfEaW5)
|
||||
* [Tilted Online](https://wiki.tiltedphoques.com/tilted-online/) - Multiplayer Skyrim & Fallout 4 / [Setup Guide](https://youtu.be/ytSftFoQQHA) / [Discord](https://discord.gg/skyrimtogether) / [GitHub](https://github.com/tiltedphoques/TiltedEvolution)
|
||||
* [NV:MP](https://nv-mp.com/) - Fallout: New Vegas Multiplayer / [Discord](https://discord.com/invite/mKVdhmEDrW)
|
||||
* [Nitrox](https://nitrox.rux.gg/) - Subnautica Multiplayer Mod/ [Subreddit](https://www.reddit.com/r/SubnauticaNitrox/) / [Discord](https://discord.gg/E8B4X9s) / [GitHub](https://github.com/SubnauticaNitrox/Nitrox)
|
||||
* [Nitrox](https://nitrox.rux.gg/) - Subnautica Multiplayer Mod / [Subreddit](https://www.reddit.com/r/SubnauticaNitrox/) / [Discord](https://discord.gg/E8B4X9s) / [GitHub](https://github.com/SubnauticaNitrox/Nitrox)
|
||||
* [BeamMP](https://beammp.com/) - BeamNG Multiplayer / [GitHub](https://github.com/BeamMP/BeamMP)
|
||||
* [Fika](https://project-fika.gitbook.io/wiki) - Play Single Player Tarkov Co-Op / Requires Legit Game
|
||||
* [OnlineCTR](https://www.online-ctr.com/) - Crash Team Racing Multiplayer
|
||||
|
@ -396,7 +400,7 @@
|
|||
|
||||
* ⭐ **[TrackyServer](https://www.trackyserver.com/)** - Find Private Multiplayer Servers
|
||||
* [Server.pro](https://server.pro/) - Game Server Hosting
|
||||
* [Pterodactyl](https://github.com/pterodactyl/panel) / [Discord](https://discord.gg/pterodactyl) or [Pelican](https://pelican.dev/) / [GitHub](https://github.com/pelican-dev/panel) - Game Server Management Panel
|
||||
* ⭐ **[Pelican](https://pelican.dev/)** / [GitHub](https://github.com/pelican-dev/panel) or [Pterodactyl](https://github.com/pterodactyl/panel) / [Discord](https://discord.gg/pterodactyl) - Game Server Management Panel
|
||||
* [Impostor](https://impostor.github.io/Impostor/) - Among Us Private Server / [Discord](https://discord.com/invite/Mk3w6Tb)
|
||||
* [VRCList](https://vrclist.com/) - Find VRChat Worlds / Signup
|
||||
* [OldUnreal](https://www.oldunreal.com/) - Unreal Tournement Servers / [Discord](https://discord.gg/thURucxzs6)
|
||||
|
@ -456,11 +460,11 @@
|
|||
|
||||
## ▷ Switch Homebrew
|
||||
|
||||
* ⭐ **[Switch Homebrew Guides](https://rentry.co/FMHYBase64#switch-homebrew-guides)**
|
||||
* ⭐ **[r/SwitchPirates Wiki](https://www.reddit.com/r/SwitchPirates/wiki/index/)**, **[Switch Hacks Guide](https://switch.hacks.guide/)** (anti-piracy) or [Switchway](https://switchway.net/) - Homebrew Guides
|
||||
* ⭐ **[Homebrew App Store](https://hb-app.store/)** - Switch / Wii U Homebrew App Store
|
||||
* [r/SwitchPirates](https://www.reddit.com/r/SwitchPirates/) or [r/SwitchHacks](https://reddit.com/r/SwitchHacks) - Switch Homebrew Subreddits
|
||||
* [LAN Play Status](http://lan-play.com/) or [Switch-LAN-Play](https://github.com/spacemeowx2/switch-lan-play) / [Discord](https://discord.gg/PUEmfV4) - Switch Multiplayer Servers
|
||||
* [FlagBrew](https://flagbrew.org/) - Switch Homebrew / [Discord](https://discord.com/invite/4Rv8DTzGFa)
|
||||
* [FlagBrew](https://github.com/FlagBrew) - Switch Homebrew Apps / [Discord](https://discord.com/invite/4Rv8DTzGFa)
|
||||
* [NSP Forwarder](https://nsp-forwarder.n8.io/) - Switch NSP Forwarder
|
||||
* [Switch Army Knife](https://www.gamebrew.org/wiki/Switch_Army_Knife) - Switch File Converter
|
||||
* [SysDVR](https://github.com/exelix11/SysDVR) - Switch Game Capture
|
||||
|
@ -472,7 +476,7 @@
|
|||
## ▷ Wii U / Wii Homebrew
|
||||
|
||||
* ⭐ **[Wii U Hacks Guide](https://wiiu.hacks.guide/)** - Wii U Jailbreak Guide
|
||||
* ⭐ **[Wii Hacks Guide](https://wii.hacks.guide/)** - Wii Jailbreak Guides
|
||||
* ⭐ **[Wii Hacks Guide](https://wii.hacks.guide/)** - Wii Jailbreak Guide
|
||||
* ⭐ **[WiiBrew](https://wiibrew.org/)** - Wii Homebrew Wiki
|
||||
* ⭐ **[WiiUBrew](https://wiiubrew.org/wiki/Main_Page)** - Wii U Homebrew Wiki
|
||||
* ⭐ **[WiiLink](https://wiilink.ca/)** - Wii Channel Restoration / [X](https://x.com/WiiLink24) / [Discord](https://discord.gg/wiilink) / [GitHub](https://github.com/WiiLink24)
|
||||
|
@ -499,7 +503,7 @@
|
|||
* [Kekatsu-DS](https://github.com/cavv-dev/Kekatsu-DS) - Download DS / DSiware Games Directly on Devices / [CrocDB Support](https://github.com/cavv-dev/crocdb-to-kekatsu)
|
||||
* [BootNTR](https://github.com/Nanquitas/BootNTR) - Stream 3DS to PC or Mac / [Instructions](https://gbatemp.net/threads/3ds-screen-recording-without-a-capture-card-ntr-cfw-method.423445/)
|
||||
* [r/3DSPiracy](https://www.reddit.com/r/3dspiracy/) or [3DSHacks](https://reddit.com/r/3dshacks/) - 3DS Modding Subreddit
|
||||
* [FlagBrew](https://flagbrew.org/) - 3DS Homebrew Apps / [Discord](https://discord.com/invite/4Rv8DTzGFa)
|
||||
* [FlagBrew](https://github.com/FlagBrew) - 3DS Homebrew Apps / [Discord](https://discord.com/invite/4Rv8DTzGFa)
|
||||
* [Batch CIA 3DS Decryptor](https://gbatemp.net/threads/batch-cia-3ds-decryptor-a-simple-batch-file-to-decrypt-cia-3ds.512385/) - Decrypt 3DS Files
|
||||
* [Rverse](https://discord.gg/wCvJSCxf4G) - 3DS Miiverse Recreation Discord Server
|
||||
|
||||
|
@ -517,9 +521,10 @@
|
|||
* [Exploit Host](https://github.com/Al-Azif/ps4-exploit-host) - PS4 Exploit Hosting
|
||||
* [DarkSoftware](https://www.darksoftware.xyz/) - PS4 / PS3 Firmware
|
||||
* [r/PS3Homebrew](https://reddit.com/r/ps3homebrew) or [r/PS3Piracy](https://www.reddit.com/r/ps3piracy/) - PS3 Homebrew / Piracy Subreddits
|
||||
* [webMAN MOD](https://aldostools.github.io/webMAN-MOD/) - Add Extended Services to PS3 Consoles / [GitHub](https://github.com/aldostools/webMAN-MOD)
|
||||
* [Brewology](http://store.brewology.com/) - PS3 Homebrew Store
|
||||
* [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/) or [Rusty Pan](https://github.com/RainbowCookie32/rusty-psn) - Update PS3 Games
|
||||
* [PS3Themes](http://www.ps3-themes.com/) - PS3 Themes
|
||||
* [PS2 Scene](https://discord.com/invite/Bd3A7v8) - PS2 Homebrew Discord
|
||||
* [r/PS2Homebrew](https://www.reddit.com/r/ps2homebrew/) - PS2 Homebrew Subreddit
|
||||
* [PSBBN Patch](https://rentry.co/FMHYBase64#psbbn-definitive-english-patch) - PSBBN Definitive English Patch
|
||||
|
@ -559,7 +564,7 @@
|
|||
* [MC Utils](https://mcutils.com/) - Minecraft Web Tools / [Discord](https://discord.com/invite/flyte)
|
||||
* [Minecraft Forum](https://www.minecraftforum.net/) - Minecraft Community / Support / [Discord](https://discord.com/invite/wGrQNKX)
|
||||
* [MCPEDL](https://mcpedl.com/) - Bedrock Resources
|
||||
* [DigiMinecraft](https://www.digminecraft.com/) or [Birdflop](https://www.birdflop.com/resources/) / [GitHub](https://github.com/birdflop/web)- Minecraft Guides / Tools
|
||||
* [DigiMinecraft](https://www.digminecraft.com/) or [Birdflop](https://www.birdflop.com/resources/) / [GitHub](https://github.com/birdflop/web) - Minecraft Guides / Tools
|
||||
* [ViveCraft](https://www.vivecraft.org/) - VR Minecraft / [Discord](https://discord.com/invite/2x3QCk8qa9) / [GitHub](https://github.com/Vivecraft/VivecraftMod)
|
||||
* [SkyClient](https://skyclient.co/) - Hypixel Asset Installer / [Discord](https://discord.com/invite/QUGZgxb7CM) / [GitHub](https://github.com/SkyblockClient)
|
||||
* [The Minecraft Archive Project](https://map.crummy.com/) - Minecraft Archive
|
||||
|
@ -580,7 +585,7 @@
|
|||
|
||||
## ▷ Hosting Tools
|
||||
|
||||
* 🌐 **[FMHL](https://fmhl.berserk.sbs/)** - Free Minecraft Hosts List / [GitHub](https://github.com/Myuui/Free-Minecraft-Hosts)
|
||||
* 🌐 **[FMHL](https://www.myuui.com/)** - Free Minecraft Hosts List / [GitHub](https://github.com/Myuui/Free-Minecraft-Hosts)
|
||||
* ⭐ **[auto-mcs](https://www.auto-mcs.com/)** - Easy Server Setup / [GitHub](https://github.com/macarooni-man/auto-mcs)
|
||||
* ⭐ **[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
|
||||
|
@ -595,7 +600,6 @@
|
|||
* [Pufferfish](https://github.com/pufferfish-gg/Pufferfish), [Purpur](https://purpurmc.org/) / [Discord](https://purpurmc.org/discord) / [GitHub](https://github.com/PurpurMC/) or [Paper](https://papermc.io/software/paper) / [Discord](https://discord.com/invite/papermc) / [GitHub](https://github.com/PaperMC/Paper) / [Plugins](https://hangar.papermc.io/) - Performance Enhancement Servers
|
||||
* [GeyserMC](https://geysermc.org/) - Join Minecraft Java Servers with Bedrock Client / [Discord](https://discord.com/invite/geysermc) / [GitHub](https://github.com/GeyserMC/Geyser) / [Extras](https://geyserextras.letsgoaway.dev/) / [GitHub](https://github.com/GeyserExtras/GeyserExtras/) / [Consoles](https://wiki.geysermc.org/geyser/using-geyser-with-consoles/)
|
||||
* [Minecraft Server Scanner](https://github.com/MrBruz/Minecraft-Server-Scanner) - Minecraft Server Info
|
||||
* [Minecraft Server Checker](https://moistcatawumpus.github.io/minecraft-server-checker/) - Simple Server Checker / [GitHub](https://github.com/MoistCatawumpus/minecraft-server-checker)
|
||||
* [mcsrvstat](https://mcsrvstat.us/) - Server Status Updates
|
||||
* [MC-Server-Banner-API](https://github.com/LOOHP/MC-Server-Banner-API) - Real-Time Updated Server Banners
|
||||
|
||||
|
@ -610,7 +614,7 @@
|
|||
* [SkLauncher](https://skmedix.pl/) - User-friendly Launcher
|
||||
* [AstralRinth](https://git.astralium.su/didirus/AstralRinth) - User-friendly Launcher
|
||||
* [UltimMC](https://github.com/UltimMC/Launcher) - Launcher for Cracked Accounts
|
||||
* [Betacraft Launcher](https://betacraft.uk/) or [LegacyFix](https://github.com/betacraftuk/legacyfix) - Patch / Fix Legacy Versions
|
||||
* [Betacraft Launcher](https://betacraft.uk/) / [2](https://betacraft.ee/) / [3](https://betacraft.ovh/) or [LegacyFix](https://github.com/betacraftuk/legacyfix) - Patch / Fix Legacy Versions
|
||||
* [HMCL](https://hmcl.huangyuhui.net/) - Launcher / [GitHub](https://github.com/HMCL-dev/HMCL)
|
||||
* [LabyMod](https://www.labymod.net/) - Launcher
|
||||
* [Crystal Launcher](https://crystal-launcher.net/) - Launcher
|
||||
|
@ -673,7 +677,7 @@
|
|||
* 🌐 **[Minecraft Speedrunning](https://www.minecraftspeedrunning.com/)** - Minecraft Speedrunning Resources
|
||||
* ⭐ **[MCPropertyEncyclopedia](https://joakimthorsen.github.io/MCPropertyEncyclopedia/)** - Block Property Encyclopedia
|
||||
* ⭐ **[spark](https://spark.lucko.me/)** - Minecraft Performance Profiler
|
||||
* ⭐ **[Minecraft Java Flags](https://github.com/Mukul1127/Minecraft-Java-Flags)** - Java Edition Performance Tweaks
|
||||
* ⭐ **[Minecraft Java Flags](https://unascribed.com/garden/jvm-args/)** - Java Edition Performance Tweaks
|
||||
* [Report Inspector](https://misode.github.io/report/) - Crash Report / Profiling Inspector
|
||||
* [Mineflayer](https://prismarinejs.github.io/mineflayer/) - Minecraft Bot Creator / [GitHub](https://github.com/PrismarineJS/mineflayer)
|
||||
* [Minecraft Armor Stand](https://haselkern.com/Minecraft-ArmorStand/) - Design Poses for Armorstands
|
||||
|
@ -682,6 +686,7 @@
|
|||
* [Minecraft Command Science](https://minecraftcommand.science/) or [MCStacker](https://mcstacker.net/) - Minecraft Command Generators
|
||||
* [NBT Studio](https://github.com/tryashtar/nbt-studio/) or [webNBT](https://irath96.github.io/webNBT/) - Minecraft NBT File Editors
|
||||
* [MinecraftJSON](https://www.minecraftjson.com/) - Minecraft Tellraw Generator
|
||||
* [MC Assets](https://rentry.co/FMHYBase64#mc-assets) - Extracted Minecraft Assets
|
||||
|
||||
***
|
||||
|
||||
|
@ -820,7 +825,7 @@
|
|||
|
||||
## ▷ GTA Tools
|
||||
|
||||
* 🌐 **[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
|
||||
* 🌐 **[GTAAll](https://www.gtaall.com/)**, [GTAInside](https://gtainside.de/), [GameModding](https://gamemodding.com/), [GTAGarage](https://gtagarage.com/) or [LibertyCity](https://libertycity.net/) - GTA Mods, Walkthroughs & More
|
||||
* 🌐 **[GTA5-Mods](https://www.gta5-mods.com/)** - GTAV Mods
|
||||
* 🌐 **[MixMods](https://www.mixmods.com.br/)** - GTASA Mods
|
||||
* ⭐ **[FiveM](https://fivem.net/)**, [alt:V](https://altv.mp/) or [RAGE](https://rage.mp/) - Modded GTAV Servers / Requires Legit Copy
|
||||
|
@ -848,7 +853,7 @@
|
|||
* [Classic DOOM](https://classicdoom.com/) or [DoomWorld](https://www.doomworld.com/) - Doom Downloads
|
||||
* [Doom64 EX](https://doom64ex.wordpress.com/downloads/) - Doom 64 PC Port
|
||||
* [dhewm3](https://dhewm3.org/) - Doom 3 Source Port
|
||||
* [DoomsHack](https://doomshack.org/), [Doom WADs](https://rentry.co/FMHYBase64#doom-wads), [Doom Pastebin](https://pastebin.com/3DWF3Msq) or [Doom Wad Station](https://www.doomwadstation.net/) - Doom WADs
|
||||
* [Doom WADs Indexes](https://rentry.co/FMHYBase64#doom-wads), [DoomsHack](https://doomshack.org/) or [Doom Wad Station](https://www.doomwadstation.net/) - Doom WADs
|
||||
* [DOOM FX](https://github.com/RandalLinden/DOOM-FX) - Doom SNES Source Code
|
||||
* [UltimateDoomBuilder](https://ultimatedoombuilder.github.io/) - Doom Map Builder
|
||||
|
||||
|
|
|
@ -13,17 +13,17 @@
|
|||
* 🌐 **[r/PiratedGames Mega](https://rentry.org/pgames)** / [Discord](https://discord.gg/dZWwhUy), **[CS.RIN Mega](https://cs.rin.ru/forum/viewtopic.php?f=10&t=95461)** or **[privateersclub](https://megathread.pages.dev/)** / [Discord](https://discord.gg/jz8dUnnD6Q) - Piracy Indexes
|
||||
* 🌐 **[Wotaku](https://wotaku.wiki/games)** / [Discord](https://discord.gg/vShRGx8ZBC) or **[EverythingMoe](https://everythingmoe.com/?section=game)** / [Discord](https://discord.gg/GuueaDgKdS) - Otaku Games Indexes
|
||||
* ⭐ **[CS.RIN.RU](https://cs.rin.ru/forum)**, [2](https://csrin.org/) - Download / Torrent / Signup / PW: `cs.rin.ru / csrin.org` / [.onion](http://csrinrutkb3tshptdctl5lyei4et35itl22qvk5ktdcat6aeavy6nhid.onion/forum)
|
||||
* ⭐ **CS.RIN Tools** - [Search Guide](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#csrin-search) (important) / [Status](https://csrinstaff.writeas.com/) / [Enhancements](https://github.com/SubZeroPL/cs-rin-ru-enhanced-mod) / [Steam Buttons](https://github.com/Altansar69/CS.RIN.RU-Enhanced-external)
|
||||
* ⭐ **[GOG Games](https://gog-games.to/)** - Download / Torrent / GOG Games Only / [.onion](http://goggamespyi7b6ybpnpnlwhb4md6owgbijfsuj6z5hesqt3yfyz42rad.onion/)
|
||||
* ⭐ **CS.RIN Tools** - [Search Guide](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#csrin-search) (Important) / [Status](https://csrinstaff.writeas.com/) / [Enhancements](https://github.com/SubZeroPL/cs-rin-ru-enhanced-mod) / [Steam Buttons](https://github.com/Altansar69/CS.RIN.RU-Enhanced-external)
|
||||
* ⭐ **[SteamRIP](https://steamrip.com/)** - Download / Pre-Installs / [Subreddit](https://www.reddit.com/r/SteamRip/) / [Discord](https://discord.gg/WkyjpA3Ua9)
|
||||
* ⭐ **[GOG Games](https://gog-games.to/)** - Download / Torrent / GOG Games Only / [.onion](http://goggamespyi7b6ybpnpnlwhb4md6owgbijfsuj6z5hesqt3yfyz42rad.onion/)
|
||||
* ⭐ **[AnkerGames](https://ankergames.net/)** - Download / Pre-Installs / [Subreddit](https://www.reddit.com/r/Anker_Games_/) / [Discord](https://discord.gg/nnMnGzDbwg)
|
||||
* ⭐ **[Online Fix](https://online-fix.me/)** - Download / Torrent / Multiplayer / Signup / PW: `online-fix.me` / [Telegram](https://t.me/onlinefix) / [Discord](https://discord.gg/yExgFYncMD)
|
||||
* ⭐ **[GameBounty](https://gamebounty.world/)** - Download / [Discord](https://discord.gg/dmjUJ4xCEV)
|
||||
* ⭐ **[SteamUnderground](https://steamunderground.net/)** - Download / Torrent / Pre-Installs / [Discord](https://discord.gg/hxdv7eJ5Yt)
|
||||
* ⭐ **[UnionCrax](https://union-crax.xyz/)** - Download / Pre-Installs / [Discord](https://discord.gg/dkVame6BQS)
|
||||
* ⭐ **[SteamUnderground](https://steamunderground.net/)** - Download / Pre-Installs / [Discord](https://discord.gg/hxdv7eJ5Yt)
|
||||
* ⭐ **[Ova Games](https://www.ovagames.com/)** - Download / PW: `www.ovagames.com` / [Redirect Bypass Required](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/internet-tools#wiki_.25B7_redirect_bypass)
|
||||
* ⭐ **[Torrminatorr](https://forum.torrminatorr.com/)** - Download / Forum / Sign-Up Required
|
||||
* [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
|
||||
* [UnionCrax](https://union-crax.xyz/) - Download / Pre-Installs / [Lightweight Site](https://fuzzy.union-crax.xyz/) / [Discord](https://discord.gg/dkVame6BQS)
|
||||
* [Virgil Game Search](https://virgil.samidy.com/Game-search/) / [GitHub](https://github.com/SamidyFR/Virgil), [Rezi Search](https://rezi.one/), [Playseek](https://playseek.app/), [Game Download CSE](https://cse.google.com/cse?cx=006516753008110874046:cbjowp5sdqg), [Game Torrent CSE](https://cse.google.com/cse?cx=006516753008110874046:pobnsujblyx) or [r/PiratedGames CSE](https://cse.google.com/cse?cx=20c2a3e5f702049aa) - Multi-Site Search Engines
|
||||
* [g4u](https://g4u.to/) - Download / PW: `404`
|
||||
* [GLoad](https://gload.to/) - Download
|
||||
* [Gamesdrive](https://gamesdrive.net/) - Download / [Telegram](https://t.me/+qkrAOiq7k7ozNzRk) / [Discord](https://discord.gg/wXdNEhf73x)
|
||||
|
@ -37,13 +37,13 @@
|
|||
* [TriahGames](https://triahgames.com/) - Download / PW: `www.triahgames.com` / [Discord](https://discord.gg/vRxJNNcJNh)
|
||||
* [GetFreeGames](https://getfreegames.net/) - Download / [Discord](https://discord.gg/Pc5TtEzk7k)
|
||||
* [World of PC Games](https://worldofpcgames.com/) - Download / Pre-Installs / Use [Adblock](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/adblock-vpn-privacy/#wiki_.25BA_adblocking) / [Site Info](https://rentry.org/ikc3x8bt) / [Subreddit](https://www.reddit.com/r/WorldofPCGamess/)
|
||||
* [Games4U](https://games4u.org/) - Download / Use [Adblock / Popup-Block](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/adblock-vpn-privacy/#wiki_.25BA_adblocking) / Sources on DDL Pages
|
||||
* [Games4U](https://games4u.org/) - Download / Use [Adblock](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/adblock-vpn-privacy/#wiki_.25BA_adblocking) / Sources on DDL Pages
|
||||
* [CG Games](https://www.cg-gamespc.com/) - Download
|
||||
* [GamePCFull](https://gamepcfull.com/) - Download
|
||||
* [IRC Games](https://redd.it/x804wg) - Download Games via IRC
|
||||
* [FreeToGame](https://www.freetogame.com/games) or [Acid Play](https://acid-play.com/) - F2P Games / [Trackers](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/misc#wiki_.25BA_free_stuff)
|
||||
* [Anti Denuvo Sanctuary](https://rentry.co/FMHYBase64#adsanctuary) - Denuvo Games / Works Offline
|
||||
* [ROM Heaven CSF](https://rentry.co/FMHYBase64#csf) - Download Clean Steam Files
|
||||
* [ROM Heaven CSF](https://rentry.co/FMHYBase64#csf) - Clean Steam Files
|
||||
|
||||
***
|
||||
|
||||
|
@ -71,7 +71,7 @@
|
|||
## ▷ Virtual Reality
|
||||
|
||||
* ⭐ **[VRPirates](https://vrpirates.wiki/)**, [2](https://vrpirates.club/) - VR Piracy Wiki / [Telegram](https://t.me/VRPirates) / [Discord](https://discord.gg/tBKMZy7QDA)
|
||||
* ⭐ **[ARMGDDN Browser](https://cs.rin.ru/forum/viewtopic.php?f=14&t=140593)** - VR Games / [Telegram](https://t.me/ARMGDDNGames) / [Discord](https://discord.gg/abeChzCy8X)
|
||||
* ⭐ **[ARMGDDN Browser](https://github.com/KaladinDMP/AGBrowser)**, [2](https://cs.rin.ru/forum/viewtopic.php?f=14&t=140593) - VR Games / [Telegram](https://t.me/ARMGDDNGames) / [Discord](https://discord.gg/abeChzCy8X)
|
||||
* [Phoenix Place](https://phoenixplace.xyz/) - VR Games / Sign-Up Required / [Discord](https://discord.gg/wfJs3eJvHa)
|
||||
* [The Gear VR Vault](https://vault.gearvr.net/) - VR Abandonware Games / Apps
|
||||
* [r/QuestPiracy](https://www.reddit.com/r/QuestPiracy/) - Oculus Quest Piracy
|
||||
|
@ -101,12 +101,12 @@
|
|||
* [Old-Games.com](https://www.old-games.com/) - Abandonware / 2 Daily Downloads
|
||||
* [Win7Games](https://win7games.com/) - Classic Windows Games
|
||||
* [The U-M Software Archives](https://websites.umich.edu/~archive/) - Retro PC / Mac Games
|
||||
* [DOS Games Archive](https://www.dosgamesarchive.com/) - DOS Games / Has Online
|
||||
* [DOS Games Archive](https://www.dosgamesarchive.com/) - DOS Games / Online
|
||||
* [DOS HAVEN](https://www.doshaven.eu/) - DOS Games
|
||||
* [Best Old Games](https://www.bestoldgames.net/) - DOS Games / Has Online
|
||||
* [DOSGames](https://dosgames.com/) - DOS Games / Has Online
|
||||
* [Best Old Games](https://www.bestoldgames.net/) - DOS Games / Online
|
||||
* [DOSGames](https://dosgames.com/) - DOS Games / Online
|
||||
* [FreeDOSGames](https://www.freedosgames.de/) - DOS Games
|
||||
* [RGB Classic Games](https://www.classicdosgames.com/) - DOS Games / Has Online
|
||||
* [RGB Classic Games](https://www.classicdosgames.com/) - DOS Games / Online
|
||||
* [Abandonware DOS](https://www.abandonwaredos.com/) - DOS Games
|
||||
* [MSX Resource Center](https://www.msx.org/) - MSX Games
|
||||
* [Generation MSX](https://www.generation-msx.nl/) - MSX Games
|
||||
|
@ -136,6 +136,7 @@
|
|||
* [Chrono Divide](https://rentry.co/FMHYBase64#chrono-divide) / [Discord](https://discord.gg/uavJ34JTWY) / [GitHub](https://github.com/chronodivide) or [OpenRA](https://openra.net/) / [Discord](https://discord.com/invite/m5dVWH4aQE) / [GitHub](https://github.com/OpenRA/OpenRA) - Command & Conquer Recreations / Ports
|
||||
* [Beyond All Reason](https://www.beyondallreason.info/) - Open-Source Total Annihilation / Supreme Commander / [Discord](https://discord.gg/beyond-all-reason) / [GitHub](https://github.com/beyond-all-reason)
|
||||
* [DFWorkshop](https://www.dfworkshop.net/) - Daggerfall Unity Engine Port
|
||||
* [The Dark Mod](https://www.thedarkmod.com/) - Modernized Thief Recreation / [Community Missions](https://www.thedarkmod.com/missions/)
|
||||
* [OpenMW](https://openmw.org/) - Morrowind Remake / [GitHub](https://github.com/OpenMW/openmw) / [Multiplayer](https://github.com/TES3MP/TES3MP)
|
||||
* [ECWolf](https://maniacsvault.net/ecwolf/) - Wolfenstein 3D, Spear of Destiny & Super 3D Noah's Ark Port
|
||||
* [IOQuake3](https://ioquake3.org/) - Quake 3 Source Port / [Discord](https://discord.gg/YY9UvMHGYb) / [GitHub](https://github.com/ioquake/ioq3)
|
||||
|
@ -263,7 +264,7 @@
|
|||
* [RomPatcher](https://www.marcrobledo.com/RomPatcher.js/) / [GitHub](https://github.com/marcrobledo/RomPatcher.js/), [Rom Patcher JS](https://www.romhacking.net/patch/), [Hack64 Patcher](https://hack64.net/tools/patcher.php) or [FFF6Hacking Patcher](https://www.ff6hacking.com/patcher/) - Online ROM Patchers
|
||||
* [Dats.site](https://dats.site/home.php) or [No Intro](https://no-intro.org/) - ROM .dat Files
|
||||
* [Dat-O-Matic](https://datomatic.no-intro.org/index.php) - ROM Datasets
|
||||
* [r/ROMs](https://www.reddit.com/r/ROMs/) - ROM Discussion Sub / [Matrix](https://matrix.to/#/#romz:matrix.org)
|
||||
* [r/ROMs](https://www.reddit.com/r/ROMs/) - ROM Discussion Sub / [Wiki](https://www.reddit.com/r/Roms/wiki/) / [Matrix](https://matrix.to/#/#romz:matrix.org)
|
||||
* [Kuribo64](https://kuribo64.net/) - ROM Modding Community
|
||||
|
||||
***
|
||||
|
@ -271,16 +272,16 @@
|
|||
## ▷ ROM Sites
|
||||
|
||||
* 🌐 **[ROM Sites Wiki](https://emulation.gametechwiki.com/index.php/ROM_%26_ISO_Sites)** - List of ROM Download Sites
|
||||
* ⭐ **[r/ROMs Mega](https://r-roms.github.io/)** - ROMs / [Pastebins](https://rentry.co/FMHYBase64#romcenter)
|
||||
* 🌐 **[r/ROMs Mega](https://r-roms.github.io/)** - ROMs / [Pastebins](https://rentry.co/FMHYBase64#romcenter)
|
||||
* ⭐ **[Myrient](https://rentry.co/FMHYBase64#myrient)** - ROMs / [Telegram](https://t.me/s/myrient) / [Discord](https://discord.gg/4kVP9AuQ24)
|
||||
* ⭐ **[CrocDB](https://crocdb.net/)** - ROMs / [Discord](https://discord.gg/3NyMZKxhUA)
|
||||
* ⭐ **[AlvRo](https://rentry.co/FMHYBase64#alvro)** - ROMs / PW: `ByAlvRo`
|
||||
* ⭐ **[Vimms Lair](https://vimm.net/)** - ROMs / [Restore Downloads](https://greasyfork.org/en/scripts/495800) / [Discord](https://discord.com/invite/XReX2ZGNcV)
|
||||
* ⭐ **[No-Intro](https://rentry.co/FMHYBase64#no-intro)** - ROMs / [Discord](https://discord.gg/dvk6W6vZmp)
|
||||
* ⭐ **[ROM Heaven](https://romheaven.com/)** - ROMs
|
||||
* ⭐ **[Axekin](https://www.axekin.com/)** - ROMs / [Discord](https://discord.gg/CUpf57y5Vg)
|
||||
* ⭐ **[RuTracker ROMs](https://rutracker.org/forum/viewforum.php?f=548)** - ROMs / Torrents / Use [VPN](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/adblock-vpn-privacy/#wiki_.25BA_vpn)
|
||||
* ⭐ **[RetroGameTalk](https://retrogametalk.com/)** / [Subreddit](https://www.reddit.com/r/RetroGameTalk/), [ROMHack.ing](https://www.romhack.ing/) / [Discord](https://discord.gg/uAufcgz), [ROMHacking.com](https://romhacking.com/), [ROMhacking](https://www.romhacking.net/), [ROMHack Plaza](https://romhackplaza.org/) / [Discord](https://discord.gg/5CKzeWmZZU) or [Reality Incorporated](https://sites.google.com/view/bonmarioinc/rom-hacks/released-rom-hacks) / [GitHub](https://github.com/Bonmarioinc/BonmarioRomHacks/) - ROM Fan Translations / Hacks
|
||||
* [Vimms Lair](https://vimm.net/) - ROMs / [Restore Downloads](https://greasyfork.org/en/scripts/495800) / [Discord](https://discord.com/invite/XReX2ZGNcV)
|
||||
* ⭐ **[RetroGameTalk](https://retrogametalk.com/)** / [Subreddit](https://www.reddit.com/r/RetroGameTalk/), [ROMHack.ing](https://www.romhack.ing/) / [Discord](https://discord.gg/uAufcgz), [ROMHacking.com](https://romhacking.com/), [ROMhacking](https://www.romhacking.net/), [ROMHack Plaza](https://romhackplaza.org/) / [Discord](https://discord.gg/5CKzeWmZZU) or [Reality Incorporated](https://sites.google.com/view/bonmarioinc/rom-hacks/released-rom-hacks) - ROM Fan Translations / Hacks
|
||||
* [ROM-Collections](https://rentry.co/FMHYBase64#rom-collections) - ROMs
|
||||
* [WowROMs](https://wowroms.com/en) - ROMs
|
||||
* [Retro Game Champion](https://www.retrogamechampion.com/) - Retro Game ROMs, Magazines, Music & more / [Discord](https://discord.gg/zueusZt)
|
||||
|
@ -315,7 +316,7 @@
|
|||
* [Rom Magnet Links](https://emulation.gametechwiki.com/index.php/ROM_%26_ISO_Sites#BitTorrent) - ROMs / Torrent
|
||||
* [ROM CSE](https://cse.google.com/cse?cx=f47f68e49301a07ac) / [CSE 2](https://cse.google.com/cse?cx=744926a50bd7eb010) - Multi-Site ROM Search
|
||||
* [Wad Archive](https://archive.org/details/wadarchive) - 83k WAD Files
|
||||
* [Cah4e3](https://cah4e3.shedevr.org.ru/) - Unlicensed ROMs / Bootlegs
|
||||
* [Cah4e3](https://cah4e3.shedevr.org.ru/) - Unlicensed ROMs / Bootlegs / Use [Translator](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/text-tools/#wiki_.25B7_translators)
|
||||
* [xbarchive](https://github.com/codemasterv/xbarchive) - ROMs / Xbox Consoles
|
||||
* [AtariMania](https://www.atarimania.com/) - ROMs / Atari Consoles
|
||||
* [/1CC/](https://1cc.kr.eu.org/1cc/index.html) / [Discord](https://discord.com/invite/e7xffWFf9p), [ROMs For MAME](https://www.romsformame.com/), [PleasureDome](https://pleasuredome.github.io/pleasuredome/mame/), [MAME World](https://mameworld.info/) or [Arcade Database](http://adb.arcadeitalia.net/default.php?lang=en) - Arcade MAME ROMs
|
||||
|
@ -335,14 +336,14 @@
|
|||
* [taodung](https://taodung.com/) - ROMs / 3DS / Switch
|
||||
* [Homebrew Hub](https://hh.gbdev.io/) - Homebrew ROMs / NES / Gameboy
|
||||
* [64DD.org](https://64dd.org/) - ROMs / 64DD
|
||||
* [NXBrew](https://nxbrew.net/) - ROMs / Switch
|
||||
* [NswRom](https://nswrom.com/) - ROMs / Switch
|
||||
* [SwitchGamesMall](https://switchgamesmall.icu/) - ROMs / Switch / DDL / Torrents / [Discord](https://discord.gg/rgttByzYRY)
|
||||
* [notUltraNX](https://not.ultranx.ru/en) - ROMs / Switch / Sign-Up Required
|
||||
* [ROMSim](https://romsim.com/) - ROMs / Switch / [Discord](https://discord.gg/Zgdhq7xDcd)
|
||||
* [ROMSLAB](https://romslab.com/) - ROMs / Switch
|
||||
* [NXBrew](https://nxbrew.net/) - ROMs / Switch
|
||||
* [SwitchROM](https://switchroms.io/) - ROMs / Switch
|
||||
* [SwitchROM.io](https://switchrom.io/) - ROMs / Switch
|
||||
* [GNS](https://rentry.co/FMHYBase64#gns) - ROMs / Switch
|
||||
* [NSWDB](https://www.nswdb.com) - Switch Release Tracker
|
||||
* [3DSDB](https://3dsdb.com/) - 3DS Release Tracker
|
||||
* [SM64ROMHacks](https://rentry.co/FMHYBase64#sm64romhacks) - Super Mario 64 Mods / [Discord](https://discord.com/invite/BYrpMBG)
|
||||
|
@ -354,12 +355,14 @@
|
|||
* [Pokemerald](https://pokemerald.com/) - Pokémon ROM Mods
|
||||
* [OOTMM](https://ootmm.com/) - Randomize + Merge Ocarina of Time with Majora's Mask
|
||||
* [SMBX2](http://codehaus.wohlsoft.ru/index.php) - Super Mario Enhancement Mod / [Levels](https://rentry.co/FMHYBase64#smbx-preservation) / [Discord](https://discord.com/invite/aCZqadJ)
|
||||
* [Super Mario Bros Remastered](https://rentry.co/FMHYBase64#smbr) - Super Mario Bros. Remake / [Discord](https://discord.com/invite/A68uRsnja3)
|
||||
* [SMB Arena](https://www.smbarena.com/) - Super Mario Bros. 1 Mods
|
||||
* [Super Mario and the Rainbow Stars](https://superstarshi.github.io/smatrs/) - Super Mario Mod / [Discord](https://discord.gg/GBXUa7NF2J)
|
||||
* [Level Share Square](https://levelsharesquare.com/) - Custom Maps for Mario Fangames
|
||||
* [Super Mario War](http://smwstuff.net/) - Multiplayer Deathmatch Style Super Mario. Bros.
|
||||
* [Mario Party Legacy](https://mariopartylegacy.com/forum/) - Mario Party Mods
|
||||
* [Super Mario Bros Crossover](https://archive.org/details/SuperMarioCrossoverOffline) - Play SMB with Alternative Characters
|
||||
* [MetroidConstruction](https://metroidconstruction.com/) - Metroid ROM Modding Community / [Discord](https://discord.gg/xDwaaqa)
|
||||
* [NS2DB](https://ns2db.com/) - Switch 2 / Switch / 3DS ROM Release Tracker / [Discord](https://discord.com/invite/8CpjeXH4)
|
||||
|
||||
***
|
||||
|
||||
|
@ -500,7 +503,7 @@
|
|||
* [Word Golf](https://www.word.golf/) - Word Relation Game
|
||||
* [JKLM.FUN](https://jklm.fun/) - Multiplayer Word Games
|
||||
* [eWordChallenge](https://www.ewordchallenge.net/) - Boggle Online
|
||||
* [Squaredle](https://squaredle.app/), [2](https://squaredle.online/) - Daily Word Puzzle
|
||||
* [Squaredle](https://squaredle.app/) - Daily Word Puzzle
|
||||
* [Linxicon](https://linxicon.com/) - Word Connection Game
|
||||
* [Wordle VS](https://wordlevs.com/) - Multiplayer Wordle
|
||||
* [Infinite Wordle](https://gregcameron.com/infinite-wordle/) or [Wordle Unlimited](https://wordleunlimited.org/) - Wordle without Daily Limits
|
||||
|
@ -523,8 +526,10 @@
|
|||
* ↪️ **[Tabletop Tools & Resources](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/game-tools/#wiki_.25B7_tabletop_tools)**
|
||||
* ⭐ **[Roll20](https://roll20.net/)** / [Discord](http://discord.gg/roll20) or [Rolisteam](https://rolisteam.org/) / [Discord](https://discord.gg/MrMrQwX) - Online Virtual Tabletop Platforms
|
||||
* [FlyOrDie](https://www.flyordie.com/) - Multiplayer Tabletop Games
|
||||
* [VirtualTabletop](https://virtualtabletop.io/) - Multiplayer Tabletop Games / [GitHub](https://github.com/ArnoldSmith86/virtualtabletop)
|
||||
* [PlayOK](https://www.playok.com/) - Multiplayer Tabletop Games
|
||||
* [Screentop](https://screentop.gg/) - Online Tabletop Games / [Discord](https://discord.gg/wva8ebh)
|
||||
* [FreeBoardGames](https://www.freeboardgames.org/) - Online Board Games / [Discord](https://discord.gg/AaE6n3n) / [GitHub](https://github.com/freeboardgames/FreeBoardGames.org)
|
||||
* [FunNode](https://www.funnode.com/) - Online Board Games
|
||||
* [Board Game Online](https://www.boardgame-online.com/) - Online Board Games
|
||||
* [Board Game Arena](https://en.boardgamearena.com/) - Online Board Games / Sign-Up Required
|
||||
|
@ -588,13 +593,14 @@
|
|||
# ► Browser Games
|
||||
|
||||
* ⭐ **[Allchemy](https://allchemy.io/)**, [Little Alchemy](https://littlealchemy.com/), [Little Alchemy 2](https://littlealchemy2.com/) or [Infinite Craft](https://neal.fun/infinite-craft/) / [Wiki](https://expitau.com/InfiniteCraftWiki/) / [Search](https://infinibrowser.wiki/) - Infinite Item Crafting Games
|
||||
* ⭐ **[The World's Biggest Pac-Man](https://worldsbiggestpacman.com/)** - Infinite Custom Pac-Mac
|
||||
* ⭐ **[The World's Biggest Pac-Man](https://worldsbiggestpacman.com/)** - Infinite Custom Pac-Man
|
||||
* ⭐ **[Mario Kart PC](https://mkpc.malahieude.net/mariokart.php)** - Browser SNES Style Mario Kart / Multiplayer / [Custom Maps](https://mkpc.malahieude.net/creations.php)
|
||||
* ⭐ **[Marble Blast Gold Web](https://marbleblast.vaniverse.io/)** / [GitHub](https://github.com/Vanilagy/MarbleBlast) or [Marble Blast Ultra](https://marbleblastultra.randomityguy.me/) / [GitHub](https://github.com/RandomityGuy/MBHaxe) - Browser Marble Blast
|
||||
* ⭐ **[QWOP](https://www.foddy.net/Athletics.html)** - Ragdoll Running Game
|
||||
* [Tetris](https://tetris.com/), [LazyTetris](https://lazytetris.com/) or [Tetr.js](http://farter.cn/tetr.js/) - Tetris
|
||||
* [SMBGames](https://smbgames.be/) - Browser Super Mario
|
||||
* [SMWGames](https://www.smwgames.com/) - Modded Browser Super Mario World
|
||||
* [Level Share Square](https://levelsharesquare.com/) - Custom Mario Fangame Maps
|
||||
* [Jelly Mario](https://jellymar.io/) - Jelly Super Mario
|
||||
* [Snubby](https://rentry.co/FMHYBase64#sr-game) - Browser Slime Rancher
|
||||
* [CelesteClassic](https://maddymakesgamesinc.itch.io/celesteclassic) - Full Classic Celeste
|
||||
|
@ -668,7 +674,6 @@
|
|||
* [Snokido](https://www.snokido.com/) - Browser Games
|
||||
* [Game-Game](https://game-game.com/) - Browser Games
|
||||
* [ArcadeSpot](https://arcadespot.com/) - Browser Games
|
||||
* [Gaming Wonderland](https://www.gamingwonderland.com/) - Browser Games
|
||||
* [Alfy](https://www.alfy.com/) - Browser Games
|
||||
* [Andkon](https://andkon.com/arcade/) - Browser Games
|
||||
* [FreeGames](https://freegames.org/) - Browser Games
|
||||
|
@ -681,11 +686,11 @@
|
|||
* [Rosebud AI](https://www.rosebud.ai/) or [Wild West](https://www.wildwest.gg/) - AI Made Browser Games
|
||||
* [Noel Friedrich](https://www.noel-friedrich.de/terminal/) - Browser Terminal Games
|
||||
* [ABA Games](https://www.asahi-net.or.jp/~cs8k-cyu/browser.html) - Single Button Games
|
||||
* [Unblock KISD](https://sites.google.com/view/unblockkisd/), [frogie's arcade](https://frogiesarca.de/), [Tyrone's Unblocked](https://sites.google.com/site/tyronesgamesez/) or [UBG365](https://ubg365.github.io/) - Browser Games / Unblocked at Schools
|
||||
* [Unblock KISD](https://sites.google.com/view/unblockkisd/), [gn-math](https://gn-math.github.io/), [frogie's arcade](https://frogiesarca.de/), [Tyrone's Unblocked](https://sites.google.com/site/tyronesgamesez/) or [UBG365](https://ubg365.github.io/) - Browser Games / Unblocked at Schools
|
||||
* [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/) or [KongHack](https://konghack.com/) - Flash Game Mods
|
||||
* [Js13kGames](https://js13kgames.com/entries), [HTML5 Games](https://html5games.com/) or [TheBestarcade](https://html5.thebestarcadescript.com/) - HTML5 Games
|
||||
* [iogames.space](https://iogames.space/), [itch.io](https://graebor.itch.io/), [Kindanice](https://kindanice.itch.io/), [Jezzamon](https://jezzamon.itch.io/), [Modd.io](https://www.modd.io/) or [Kevin Games](https://kevin.games/) - .io Games
|
||||
* [iogames.space](https://iogames.space/), [itch.io](https://graebor.itch.io/), [IOGames](https://iogames.party/), [Kindanice](https://kindanice.itch.io/), [Jezzamon](https://jezzamon.itch.io/), [Modd.io](https://www.modd.io/) or [Kevin Games](https://kevin.games/) - .io Games
|
||||
|
||||
***
|
||||
|
|
@ -11,7 +11,7 @@
|
|||
* ↪️ **[Art Education](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/edu#wiki_.25B7_art_.2F_editing)**
|
||||
* [Croppola](https://croppola.com/), [AutoCropper](https://www.autocropper.io/), [Bulk Image Crop](https://bulkimagecrop.com/) or [Avatar Cropper](https://avatarcropper.com/) - Cropping Tools
|
||||
* [imgsli](https://imgsli.com/) - Before & After Slider Generator
|
||||
* [Scribus](https://www.scribus.net/) - Page Layout & Typesetting Program
|
||||
* [Scribus](https://www.scribus.net/) or [Quarkdown](https://quarkdown.com/) / [GitHub](https://github.com/iamgio/quarkdown) - Page Layout & Typesetting Programs
|
||||
* [Images.weserv.nl](https://images.weserv.nl/) - Image Editing Server
|
||||
* [GradientArt](https://gra.dient.art/) or [TailBlend](https://tailblend.vercel.app/) - Gradient Editor
|
||||
* [Canvas](https://www.nvidia.com/en-us/studio/canvas/) - Turn Simple Art into Photorealistic Landscapes
|
||||
|
@ -23,6 +23,7 @@
|
|||
## ▷ Editing Software
|
||||
|
||||
* ↪️ **[Adobe Software](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/torrent/#wiki_.25BA_torrent_sites)**
|
||||
* ↪️ **[Android Editors](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/android#wiki_.25B7_image_tools)**
|
||||
* ⭐ **[GIMP](https://www.gimp.org/)** / Windows, Mac, Linux / [Photoshop UI](https://github.com/Diolinux/PhotoGIMP) / [Texture Synthesizer](https://github.com/bootchk/resynthesizer) / [Discord](https://discord.gg/kHBNw2B) / [Subreddit](https://www.reddit.com/r/GIMP/) / [GitLab](https://gitlab.gnome.org/GNOME/gimp)
|
||||
* ⭐ **[Pinta Project](https://www.pinta-project.com/)** / Windows, Mac, Linux / [GitHub](https://github.com/PintaProject/Pinta)
|
||||
* ⭐ **[ImageMagick](https://imagemagick.org/index.php)** / Windows, Mac, Linux, iOS / [Scripts](https://www.fmwconcepts.com/imagemagick/index.php) / [GitHub](https://github.com/imagemagick/imagemagick)
|
||||
|
@ -41,12 +42,12 @@
|
|||
## ▷ Online Editors
|
||||
|
||||
* ⭐ **[Pixlr](https://pixlr.com/)** - Simple Editor / [Hide Premium](https://greasyfork.org/en/scripts/425737) / [Unlimited Saves](https://greasyfork.org/en/scripts/460881), [2](https://greasyfork.org/en/scripts/490940)
|
||||
* ⭐ **[Polarr](https://photoeditor.polarr.co/)** - Multi-Tool
|
||||
* ⭐ **[Lunapic](https://lunapic.com/)** - Multi-Tool
|
||||
* ⭐ **[Photopea](https://www.photopea.com/)** - Photoshop Alt
|
||||
* [BitMappery](https://www.igorski.nl/application/bitmappery/) - Photoshop Alt
|
||||
* [iPiccy](https://ipiccy.com/) - Photoshop Alt
|
||||
* [Stet](https://stet.io/) - Photoshop Alt
|
||||
* [Polarr](https://photoeditor.polarr.co/) - Multi-Tool
|
||||
* [Resize Pixel](https://www.resizepixel.com/) - Multi-Tool
|
||||
* [Tom's Editor](https://tomseditor.com/editor/) - Multi-Tool
|
||||
* [photo.codes/](https://www.photo.codes/) - Simple Editor w/ Shareable Colab Codes
|
||||
|
@ -59,7 +60,6 @@
|
|||
* [Picverse](https://www.picverse.com/online-photo-editor) - Simple Editor
|
||||
* [webp2jpg](https://renzhezhilu.github.io/webp2jpg-online/) - Simple Editor
|
||||
* [edit.photo](https://edit.photo/) - Simple Editor
|
||||
* [Image Resizer](https://photo.valueweb.gr/) - Simple Editor
|
||||
* [RedKetchup](https://redketchup.io/) - Multi-Tool
|
||||
* [fffuel](https://fffuel.co/) - Multi-Tool
|
||||
* [Mara](https://mara.photos/) - Multi-Tool
|
||||
|
@ -72,6 +72,7 @@
|
|||
* ⭐ **[BRIA RMBG](https://briaai-bria-rmbg-2-0.hf.space/)** - Background Remover
|
||||
* ⭐ **[BG Bye](https://bgbye.fyrean.com/)**, [2](https://fyrean.itch.io/bgbye-background-remover) - Background Remover / [GitHub](https://github.com/MangoLion/bgbye)
|
||||
* [Pixelcut](https://www.pixelcut.ai/) - Background Remover
|
||||
* [Repolas BG Remover](https://ripolas.org/background-remover/) - Background Remover
|
||||
* [Adobe Express Background Remover](https://www.adobe.com/express/feature/image/remove-background) - Background Remover
|
||||
* [remove.bg](https://www.remove.bg/) - Background Remover / [GIMP Plugin](https://github.com/manu12121999/RemoveBG-GIMP)
|
||||
* [ORMBG](https://huggingface.co/spaces/schirrmacher/ormbg) - Human Optimised Background Remover
|
||||
|
@ -107,6 +108,7 @@
|
|||
* [Palettum](https://palettum.com/) - Add Custom Color Palettes to Images & GIFs / [GitHub](https://github.com/arrowpc/palettum)
|
||||
* [InColor](https://www.myheritage.com/incolor) - B&W Image Colorization / Sign-Up Required
|
||||
* [PhotoJoiner](https://www.photojoiner.com/) - Collage Maker
|
||||
* [shabzefilters](https://shabzefilters.netlify.app/) - ASCII, Dot, Braille, Block, Line, etc
|
||||
* [AIDraw](https://ai-draw.tokyo/en/) or [FiniteCurve](https://www.finitecurve.com/) - Turn Photos into Line Art
|
||||
* [Tiler](https://github.com/nuno-faria/tiler) - Mosaic Image Generator
|
||||
* [Fotosketcher](https://fotosketcher.com/) - Turn Photos into Artwork / Windows
|
||||
|
@ -138,10 +140,9 @@
|
|||
* 🌐 **[Digital Art Brushes](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_digital_brushes)** - Download Brushes
|
||||
* ⭐ **[Krita](https://krita.org/en/)** - Painting App / Windows, Mac, Linux / [AI Generation](https://github.com/Acly/krita-ai-diffusion/) / [GitHub](https://github.com/KDE/krita)
|
||||
* ⭐ **[miniPaint](https://viliusle.github.io/miniPaint/)** - Browser Painting / Web
|
||||
* ⭐ **[Excalidraw](https://excalidraw.com/)** - Drawing / Sketching / Web / [Sharing](https://excalihub.dev/)
|
||||
* ⭐ **[AutoDraw](https://www.autodraw.com/)** - AI Drawing Tools / Web
|
||||
* [SmoothDraw](https://qrli.github.io/smoothdraw/) - Painting App / Windows
|
||||
* [inkscape](https://inkscape.org/) - Drawing / Sketching / Windows, Mac, Linux / [GitLab](https://gitlab.com/inkscape/inkscape)
|
||||
* [Inkscape](https://inkscape.org/) - Drawing / Sketching / Windows, Mac, Linux / [GitLab](https://gitlab.com/inkscape/inkscape)
|
||||
* [FireAlpaca](https://firealpaca.com/) - Painting App / Windows, Mac
|
||||
* [PixiEditor](https://pixieditor.net/) - Vector Editor / Painting App / Windows, Mac, Linux / [Discord](https://discord.com/invite/qSRMYmq) / [GitHub](https://github.com/PixiEditor/PixiEditor)
|
||||
* [SumoPaint](https://sumopaint.com/) - Browser Painting / Web
|
||||
|
@ -150,7 +151,6 @@
|
|||
* [Provector](https://start.provector.app/) - Vector Editor / Web / [GitHub](https://github.com/diaoliu/provector)
|
||||
* [Graphite](https://graphite.rs/) - Vector Editor / Web / [GitHub](https://github.com/GraphiteEditor/Graphite)
|
||||
* [Vectorpea](https://www.vectorpea.com/) - Vector Editor / Web
|
||||
* [VectorInk](https://vectorink.io/) - Vector Editor / iOS, Web
|
||||
* [HeavyPaint](https://www.heavypaint.com/) - Water Color Painting / Android, iOS, Web
|
||||
* [Mixbox Painter](https://scrtwpns.com/mixbox/painter/) - Realistic Paint Mixing / Web
|
||||
* [Vervette](https://www.taron.de/Vervette/sandbox/) - Realistic Fluid Painting / Web
|
||||
|
@ -186,13 +186,11 @@
|
|||
* [Piskel](https://www.piskelapp.com/) - Pixel Art Editor / Web
|
||||
* [Pixelated](https://pixelated.vercel.app/) - Pixel Art Editor / Web
|
||||
* [PixilArt](https://www.pixilart.com/draw) - Pixel Art Editor / Web
|
||||
* [pixels.land](https://pixel.land/), [EveryoneDraw](https://everyonedraw.com/), [pxls.space](https://pxls.space/) or [World of Pixels](https://ourworldofpixels.com/) - Infinite Online Pixel Art / Web
|
||||
* [Pixelator](https://ronenness.itch.io/pixelator) - Image to Pixel Art Converter / Windows
|
||||
* [PixelartVillage](https://pixelartvillage.com/), [Pixel It](https://giventofly.github.io/pixelit/) or [Pixelart Converter](https://app.monopro.org/pixel/?lang=en) - Image to Pixel Art Converter / Web
|
||||
* [Pixelorama](https://orama-interactive.itch.io/pixelorama) - 2D Sprite Editor / Windows, Mac, Linux, Web / [Discord](https://discord.com/invite/GTMtr8s) / [GitHub](https://github.com/Orama-Interactive/Pixelorama)
|
||||
* [pixeldudesmaker](https://0x72.itch.io/pixeldudesmaker) or [Creature Mixer](https://kenney.itch.io/creature-mixer) - Sprite Generator / Web
|
||||
* [Nasu](https://hundredrabbits.itch.io/nasu) - Spritesheet Editor / Windows, Mac, Linux, Android
|
||||
* [Pixel Art Scaler](https://lospec.com/pixel-art-scaler/) - Scale Pixel Art without Quality Loss / Web
|
||||
* [Pixel Reconstructor](https://i-win.neocities.org/pixel/), [Pixel Art Upscaler](https://imaginarycatlab.com/free-pixel-art-upscaler.html) or [Pixel Art Scaler](https://lospec.com/pixel-art-scaler/) - Pixel Art Upscalers
|
||||
|
||||
***
|
||||
|
||||
|
@ -219,7 +217,6 @@
|
|||
* [Memegine](https://memegine.com/) - Meme Search Engine
|
||||
* [MemeAtlas](https://www.memeatlas.com/) - Meme Templates
|
||||
* [GreenScreenMemes](https://greenscreenmemes.com/) - Green Screen Memes
|
||||
* [TweetGen](https://www.tweetgen.com/) - Fake Tweet Generator
|
||||
* [iFake](https://ifaketextmessage.com/) - Fake Text Conversation Creator
|
||||
* [Wojak Studio](https://wojak-studio.com/) - Wojak Meme Creator
|
||||
* [Pokémon Battle Creator](http://www.pokemonbattlecreator.com/) - Pokémon Battle Scene Meme Generator
|
||||
|
@ -254,7 +251,7 @@
|
|||
## ▷ Design Apps
|
||||
|
||||
* ⭐ **[Figma](https://www.figma.com/)** - Design Collab App / Web
|
||||
* ⭐ **[Canva](https://www.canva.com/)** - Design App / Windows, Mac, Web / [Giveaways](https://rentry.co/FMHYBase64#canva)
|
||||
* [Canva](https://www.canva.com/) - Design App / Windows, Mac, Web
|
||||
* [lunacy](https://icons8.com/lunacy) - Design App / Windows, Mac, Linux
|
||||
* [VistaCreate](https://create.vista.com/) - Design App / Web
|
||||
* [blush](https://blush.design/) - Illustration Design / Web
|
||||
|
@ -321,7 +318,8 @@
|
|||
* [psdkeys](https://psdkeys.com/)
|
||||
* [AvaxGFX](https://avxgfx.com/)
|
||||
* [Freeject](https://www.freeject.net/)
|
||||
* [Cg_peers](https://t.me/Cg_peers)
|
||||
* [Salvaged](https://salvaged.nu/)
|
||||
* [Cg_peers Archive](https://t.me/Cgpeers_archive)
|
||||
* [PNGTree](https://pngtree.com/)
|
||||
* [TianUI](https://www.titanui.com/)
|
||||
* [Designer Candies](https://designercandies.net/category/freebies/)
|
||||
|
@ -329,7 +327,7 @@
|
|||
* [PSDLY](https://www.psdly.to/)
|
||||
* [Unblast](https://unblast.com/)
|
||||
* [CGArchives](https://cgarchives.com/)
|
||||
* [CGPlugin](https://t.me/s/cgplugin)
|
||||
* [CGPerec](https://t.me/cgperec)
|
||||
* [SearchGFX](https://searchgfx.com/)
|
||||
* [Quasual](https://m.vk.com/quasual)
|
||||
* [designersgan9](https://m.vk.com/designersgan9)
|
||||
|
@ -369,7 +367,6 @@
|
|||
* [shot.cafe](https://shot.cafe/), [FanCaps](https://fancaps.net/) or [Film Grab](https://film-grab.com/) - Media Screenshots
|
||||
* [Footyrenders](https://www.footyrenders.com/) - Football Related Images
|
||||
* [PSDGraphics](https://www.psdgraphics.com/) - PSD Files
|
||||
* [Artvee](https://artvee.com/) - Public Domain Artwork
|
||||
* [Placeit](https://placeit.net/) - Image Templates
|
||||
* [Worldvectorlogo](https://worldvectorlogo.com/), [Logos & Badges Bundle](https://rentry.co/FMHYBase64#logos-badges-bundle), [Brands of the World](https://www.brandsoftheworld.com/), [seeklogo](https://seeklogo.com/) or [SuperTinyIcons](https://edent.github.io/SuperTinyIcons/) - Logo Search / Designs
|
||||
* [MariaLetta](https://github.com/MariaLetta/mega-doodles-pack) - Free Doodles
|
||||
|
@ -411,6 +408,7 @@
|
|||
* ⭐ **[GetPaidStock](https://getpaidstock.com/)**, **[DownPic](https://downpic.cc)** or **[Downloader.la](https://downloader.la/)** - Paid Stock Photo Downloaders
|
||||
* ⭐ **[EveryPixel](https://www.everypixel.com/)**, [O-DAN](https://o-dan.net/en/) or [LibreStock](https://librestock.com/) - Stock Photo Search Engines
|
||||
* [Unsplash](https://unsplash.com/) - Stock Photos / Royalty-Free
|
||||
* [Pixabay](https://pixabay.com/) - Stock Photos
|
||||
* [Adobe Stock](https://stock.adobe.com/free) - Stock Photos / Royalty-Free
|
||||
* [Pixnio](https://pixnio.com/) - Stock Photos / Royalty-Free
|
||||
* [Pikwizard](https://pikwizard.com/) - Stock Photos / Royalty-Free
|
||||
|
@ -423,7 +421,6 @@
|
|||
* [Burst](https://www.shopify.com/stock-photos) - Stock Photos
|
||||
* [Hippopx](https://www.hippopx.com/) - Stock Photos
|
||||
* [BarnImages](https://barnimages.com/) - Stock Photos
|
||||
* [Pixabay](https://pixabay.com/) - Stock Photos
|
||||
* [Lummi](https://www.lummi.ai/) - AI Generated Stock Photos
|
||||
* [Smithsonian Open Access](https://www.si.edu/OpenAccess) - Smithsonian High-Quality Photos
|
||||
* [desirefx](https://desirefx.me/category/stock_images/) - Stock Photo Overlays
|
||||
|
@ -447,7 +444,7 @@
|
|||
|
||||
## ▷ Art / Illustrations
|
||||
|
||||
* ⭐ **[Kemono](https://kemono.cr/posts?tag=)** - Patreon Content / Some NSFW / Use [Adblock](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/adblock-vpn-privacy/#wiki_.25BA_adblocking) / [Patreon Buttons](https://greasyfork.org/en/scripts/483259)
|
||||
* ⭐ **[Kemono](https://kemono.cr/posts?tag=)** - Patreon Content / Some NSFW / Use [Adblock](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/adblock-vpn-privacy/#wiki_.25BA_adblocking)
|
||||
* ⭐ **[DeviantArt](https://www.deviantart.com/)** - User-Made Art / Fanart / [Frontend Instances](https://git.macaw.me/skunky/SkunkyArt/src/branch/master/INSTANCES.md)
|
||||
* ⭐ **[ArtStation](https://www.artstation.com/)** - User-Made Art / Fanart / [Downloader](https://github.com/findix/ArtStationDownloader)
|
||||
* ⭐ **[Pixiv](https://www.pixiv.net/)** - Japanese Fanart
|
||||
|
@ -479,7 +476,7 @@
|
|||
|
||||
## ▷ Media Covers / Posters
|
||||
|
||||
* ⭐ **[Ben Dodson](https://bendodson.com/projects/itunes-artwork-finder/)**, [2](https://bendodson.com/projects/apple-tv-movies-artwork-finder/) - Movies / TV / Music
|
||||
* ⭐ **[Ben Dodson](https://bendodson.com/projects/itunes-artwork-finder/)**, [2](https://bendodson.com/projects/apple-tv-movies-artwork-finder/) - Movies / TV / Music / Comic / Book / Anime / Manga / Games
|
||||
* [BigBoxCollection](https://bigboxcollection.com/) - 3D Game Boxes
|
||||
* [The Poster DB](https://theposterdb.com/) / [Subreddit](https://www.reddit.com/r/ThePosterDB) / [Discord](https://discord.com/invite/NARZqQX), [DVD Covers](https://www.dvd-covers.org/) or [MediUX](https://mediux.pro/) - Movies / TV
|
||||
* [Movie Posters Gallery](https://www.moviepostersgallery.com/), [Film On Paper](https://www.filmonpaper.com/posters/), [The Poster Collector](https://postercollector.co.uk/) or [IMP Awards](http://www.impawards.com/) - Movies
|
||||
|
@ -511,6 +508,7 @@
|
|||
* [Clara.io](https://clara.io/library), [PolyHaven](https://polyhaven.com/), [CadNav](https://www.cadnav.com/), [Open3dModel](https://open3dmodel.com/) or [Archibase](https://archibase.co/) - Misc 3D Models
|
||||
* [Sketchfab](https://sketchfab.com/), [3DArchive](https://t.me/ArchiveStl), [cgtrader](https://www.cgtrader.com/free-3d-models) or [3dsky](https://3dsky.org/) - Misc 3D Models / Sign-Up Required
|
||||
* [Cults](https://cults3d.com/), [Thangs](https://thangs.com/), [MakerWorld](https://makerworld.com/) or [Pinshape](https://pinshape.com/) - Printable 3D Models / Sign-Up Required
|
||||
* [STLFinder](https://www.stlfinder.com/) - Multi-Site Search
|
||||
* [3D Warehouse](https://3dwarehouse.sketchup.com/) - 3D Models Compatible with SketchUp / Sign-Up Required
|
||||
* [Pack 3D Models](https://p3dm.ru/) - Vehicle / Character 3D Models
|
||||
* [Figurosity](https://figurosity.com/) - Human 3D Models
|
||||
|
@ -557,6 +555,7 @@
|
|||
## ▷ 3D Modeling Tools
|
||||
|
||||
* [3D Printer Recs](https://redd.it/1bh9jud) - Hobbyist 3D Printer Recommendations
|
||||
* [Polymaker](https://wiki.polymaker.com/) - 3D Printing Guide / Community / [Discord](https://discord.com/invite/polymaker)
|
||||
* [Embossify](https://www.embossify.com/) or [Tripo3D](https://www.tripo3d.ai/app/home) - Image to 3D Model Converters
|
||||
* [3D Transformer](https://www.3dtransformer.com/) - Rotate 3D Images
|
||||
* [3DConvert](https://3d-convert.com/en/) - Online 3D Image Converter
|
||||
|
@ -690,6 +689,7 @@
|
|||
* [Project Naptha](https://projectnaptha.com/) - Automatic OCR while Browsing Images
|
||||
* [i2ocr](https://www.i2ocr.com/) - Online OCR
|
||||
* [OCR.SPACE](https://ocr.space/) - Online OCR
|
||||
* [OCRTool](https://ocrtool.net/) - Online OCR
|
||||
* [2OCR](https://2ocr.com/) - Online OCR
|
||||
* [Ocrify](https://ocrify.com/) - Online OCR
|
||||
* [OnlineOCR](https://onlineocr.org/) - Online OCR
|
||||
|
@ -717,7 +717,6 @@
|
|||
* [ImagefanReloaded](https://github.com/mihnea-radulescu/imagefanreloaded)
|
||||
* [Image Eye](https://www.fmjsoft.com/imageeye.html)
|
||||
* [Quick Picture Viewer](https://moduleart.github.io/quick-picture-viewer/)
|
||||
* [Fragment](https://www.fragmentapp.info/)
|
||||
* [HoneyView](https://en.bandisoft.com/honeyview/)
|
||||
* [picturama](https://picturama.github.io/)
|
||||
* [narrative](https://narrative.so/)
|
||||
|
@ -731,6 +730,7 @@
|
|||
## ▷ Offline Galleries
|
||||
|
||||
* 🌐 **[FOSS Photo Libraries](https://meichthys.github.io/foss_photo_libraries/)**
|
||||
* ↪️ **[Android Galleries](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/android#wiki_.25B7_image_galleries)**
|
||||
* [Immich](https://immich.app/) / [Storage Server](https://pixelunion.eu/) / [GitHub](https://github.com/immich-app/immich)
|
||||
* [Damselfly](https://github.com/Webreaper/Damselfly)
|
||||
* [HomeGallery](https://home-gallery.org/)
|
||||
|
@ -776,7 +776,7 @@
|
|||
|
||||
* ⭐ **[PixVid](https://pixvid.org/)** - 32MB / Forever
|
||||
* ⭐ **[ImgBB](https://imgbb.com/)** - 32MB / Forever
|
||||
* ⭐ **[Catbox](https://catbox.moe/)** - 200MB / Forever / [ShareX Config](https://files.catbox.moe/w4ztcf.sxcu)
|
||||
* ⭐ **[Catbox](https://catbox.moe/)** - 200MB / Forever / [Proxy](https://fatbox.moe/) / [ShareX Config](https://files.catbox.moe/w4ztcf.sxcu)
|
||||
* [pixelfed](https://pixelfed.org/) - Decentralized Image Sharing Social Network / Sign-Up Required / [Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/social-media#wiki_.25B7_pixelfed_tools) / [Android](https://gitlab.shinice.net/pixeldroid/PixelDroid) / [GitHub](https://github.com/pixelfed/pixelfed)
|
||||
* [sxcu.net](https://sxcu.net/) - Free ShareX Uploader Service / 95MB / N/A
|
||||
* [FreeImage.Host](https://freeimage.host/) - 64MB (128MB with Account) / Forever
|
||||
|
@ -800,7 +800,7 @@
|
|||
|
||||
## ▷ Screenshot Tools
|
||||
|
||||
* ⭐ **[ShareX](https://getsharex.com/)** - Screenshot & Screen Recorder Tool / [Image Hosts](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/img-tools/#wiki_.25B7_image_hosts) / [File Manager](https://xbackbone.app/) / [Discord](https://discord.com/invite/ShareX) / [GitHub](https://github.com/ShareX/ShareX)
|
||||
* ⭐ **[ShareX](https://getsharex.com/)** - Screenshot & Screen Recorder Tool / [Image Hosts](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/image-tools/#wiki_.25B7_image_hosts) / [File Manager](https://xbackbone.app/) / [Discord](https://discord.com/invite/ShareX) / [GitHub](https://github.com/ShareX/ShareX)
|
||||
* ⭐ **[Flameshot](https://flameshot.org/)** / [GitHub](https://github.com/flameshot-org/flameshot)
|
||||
* ⭐ **[Zipline](https://zipline.diced.sh/)** / [GitHub](https://github.com/diced/zipline) or [yaass](https://github.com/tycrek/yaass) - Self-Hosted ShareX Server
|
||||
* [Greenshot](https://getgreenshot.org/) / [GitHub](https://github.com/greenshot/greenshot)
|
||||
|
@ -872,4 +872,4 @@
|
|||
|
||||
***
|
||||
|
||||
## ▷ [Android Camera](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/android/#wiki_.25B7_camera_tools)
|
||||
## ▷ [Android Camera](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/android#wiki_.25BA_android_camera)
|
|
@ -7,8 +7,8 @@ hero:
|
|||
name: freemediaheckyeah
|
||||
tagline: The largest collection of free stuff on the internet!
|
||||
announcement:
|
||||
title: Aug 2025 Updates ✨
|
||||
link: /posts/aug-2025
|
||||
title: Fight Chat Control 🔒
|
||||
link: /posts/FCC
|
||||
image:
|
||||
src: /test.png
|
||||
alt: FMHY Icon
|
||||
|
@ -28,7 +28,7 @@ hero:
|
|||
|
||||
features:
|
||||
- title: Adblocking / Privacy
|
||||
link: /adblockvpnguide
|
||||
link: /privacy
|
||||
details: Learn how to block ads, trackers and other nasty things.
|
||||
icon: |
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="#D05A6E" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-shield-ellipsis"><path d="M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z"/><path d="M8 12h.01"/><path d="M12 12h.01"/><path d="M16 12h.01"/><title>Ad-block / Privacy</title></svg>
|
||||
|
@ -40,7 +40,7 @@ features:
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="#91989F" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-bot"><path d="M12 8V4H8"/><rect width="16" height="12" x="4" y="8" rx="2"/><path d="M2 14h2"/><path d="M20 14h2"/><path d="M15 13v2"/><path d="M9 13v2"/><title>Artificial Intelligence</title></svg>
|
||||
|
||||
- title: Streaming
|
||||
link: /videopiracyguide
|
||||
link: /video
|
||||
details: Stream, download, torrent and binge all your favourite movies and shows!
|
||||
icon: |
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0
|
||||
|
@ -59,7 +59,7 @@ features:
|
|||
lucide-drum"><path d="m2 2 8 8"/><path d="m22 2-8 8"/><ellipse cx="12"
|
||||
cy="9" rx="10" ry="5"/><path d="M7 13.4v7.9"/><path d="M12 14v8"/><path
|
||||
d="M17 13.4v7.9"/><path d="M2 9v8a10 5 0 0 0 20 0V9"/><title>Listening</title></svg>
|
||||
link: /audiopiracyguide
|
||||
link: /audio
|
||||
details: Stream, download and torrent songs, podcasts and more!
|
||||
|
||||
- title: Gaming
|
||||
|
@ -72,7 +72,7 @@ features:
|
|||
y2="20"/><line x1="19" x2="21" y1="21" y2="19"/><polyline points="14.5 6.5
|
||||
18 3 21 3 21 6 17.5 9.5"/><line x1="5" x2="9" y1="14" y2="18"/><line
|
||||
x1="7" x2="4" y1="17" y2="20"/><line x1="3" x2="5" y1="19" y2="21"/><title>Gaming</title></svg>
|
||||
link: /gamingpiracyguide
|
||||
link: /gaming
|
||||
details:
|
||||
Download and play all your favourite games or emulate some old but gold
|
||||
ones!
|
||||
|
@ -85,7 +85,7 @@ features:
|
|||
lucide-book-marked"><path d="M10 2v8l3-3 3 3V2"/><path d="M4 19.5v-15A2.5
|
||||
2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1
|
||||
0-5H20"/><title>Reading</title></svg>
|
||||
link: /readingpiracyguide
|
||||
link: /reading
|
||||
details:
|
||||
Whether you're a bookworm, otaku or comic book fan, you'll be able to find
|
||||
your favourite pieces of literature here!
|
||||
|
@ -93,7 +93,7 @@ features:
|
|||
- title: Downloading
|
||||
icon: |
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="#BEC23F" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-folder-down"><path d="M20 20a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.9a2 2 0 0 1-1.69-.9L9.6 3.9A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2Z"/><path d="M12 10v6"/><path d="m15 13-3 3-3-3"/><title>Downloading</title></svg>
|
||||
link: /downloadpiracyguide
|
||||
link: /downloading
|
||||
details:
|
||||
Download all your favourite software, movies, shows, music, games and
|
||||
more!
|
||||
|
@ -101,7 +101,7 @@ features:
|
|||
- title: Torrenting
|
||||
icon: |
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="#8A6BBE" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-waypoints"><circle cx="12" cy="4.5" r="2.5"/><path d="m10.2 6.3-3.9 3.9"/><circle cx="4.5" cy="12" r="2.5"/><path d="M7 12h10"/><circle cx="19.5" cy="12" r="2.5"/><path d="m13.8 17.7 3.9-3.9"/><circle cx="12" cy="19.5" r="2.5"/><title>Torrenting</title></svg>
|
||||
link: /torrentpiracyguide
|
||||
link: /torrenting
|
||||
details: Download your favourite media using the BitTorrent protocol.
|
||||
|
||||
- title: Educational
|
||||
|
@ -112,7 +112,7 @@ features:
|
|||
lucide-book-copy"><path d="M2 16V4a2 2 0 0 1 2-2h11"/><path d="M22 18H11a2
|
||||
2 0 1 0 0 4h10.5a.5.5 0 0 0 .5-.5v-15a.5.5 0 0 0-.5-.5H11a2 2 0 0 0-2
|
||||
2v12"/><path d="M5 14H4a2 2 0 1 0 0 4h1"/><title>Educational</title></svg>
|
||||
link: /edupiracyguide
|
||||
link: /educational
|
||||
details: Educational content for all ages.
|
||||
|
||||
- title: Android / iOS
|
||||
|
@ -122,16 +122,16 @@ features:
|
|||
stroke-linecap="round" stroke-linejoin="round" class="lucide
|
||||
lucide-smartphone"><rect width="14" height="20" x="5" y="2" rx="2"
|
||||
ry="2"/><path d="M12 18h.01"/><title>Android / iOS</title></svg>
|
||||
link: /android-iosguide
|
||||
link: /mobile
|
||||
details: All forms of content for Android and iOS.
|
||||
|
||||
- title: Linux / macOS
|
||||
icon: |
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="#f17c67" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-square-terminal"><path d="m7 11 2-2-2-2"/><path d="M11 13h4"/><rect width="18" height="18" x="3" y="3" rx="2" ry="2"/><title>Linux / macOS</title></svg>
|
||||
link: /linuxguide
|
||||
link: /linux-macos
|
||||
details: The $HOME of Linux and macOS.
|
||||
|
||||
- title: Non English
|
||||
- title: Non-English
|
||||
icon: |
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0
|
||||
0 24 24" fill="none" stroke="#FB9966" stroke-width="2"
|
||||
|
@ -139,7 +139,7 @@ features:
|
|||
lucide-earth"><path d="M21.54 15H17a2 2 0 0 0-2 2v4.54"/><path d="M7
|
||||
3.34V5a3 3 0 0 0 3 3a2 2 0 0 1 2 2c0 1.1.9 2 2 2a2 2 0 0 0 2-2c0-1.1.9-2
|
||||
2-2h3.17"/><path d="M11 21.95V18a2 2 0 0 0-2-2a2 2 0 0 1-2-2v-1a2 2 0 0
|
||||
0-2-2H2.05"/><circle cx="12" cy="12" r="10"/><title>Non English</title></svg>
|
||||
0-2-2H2.05"/><circle cx="12" cy="12" r="10"/><title>Non-English</title></svg>
|
||||
link: /non-english
|
||||
details: Content in languages other than English.
|
||||
|
||||
|
@ -152,7 +152,7 @@ features:
|
|||
0 1 2 2Z"/><path d="M16.7 13H19a2 2 0 0 1 2 2v4a2 2 0 0 1-2 2H7"/><path
|
||||
d="M 7 17h.01"/><path d="m11 8 2.3-2.3a2.4 2.4 0 0 1 3.404.004L18.6
|
||||
7.6a2.4 2.4 0 0 1 .026 3.434L9.9 19.8"/><title>Miscellaneous</title></svg>
|
||||
link: /miscguide
|
||||
link: /misc
|
||||
details: Content too niche to be included elsewhere.
|
||||
---
|
||||
|
||||
|
|
|
@ -63,16 +63,14 @@
|
|||
* [PaywallBuster](https://paywallbuster.com/) - Paywall Bypass Tools
|
||||
* [ByeByePaywall](https://byebyepaywall.com/en/) - Paywall Bypass Tools
|
||||
* [Bypass paywalls for scientific documents](https://greasyfork.org/en/scripts/35521) - Bypass Scientific Document Paywalls
|
||||
* [unpaywall](https://unpaywall.org/) - Bypass Scholarly Article Paywalls
|
||||
* [Open Access Button](https://openaccessbutton.org/) - Bypass Research Article Paywalls
|
||||
* [Unpaywall](https://unpaywall.org/) - Bypass Scholarly Article Paywalls
|
||||
|
||||
***
|
||||
|
||||
## ▷ Link in Bio
|
||||
|
||||
* ⭐ **[Bio Link](https://bio.link/)** - Unlimited / Custom URLs
|
||||
* ⭐ **[Linktree](https://linktr.ee/)** - Unlimited / Custom URLs
|
||||
* ⭐ **[Linkstack](https://linkstack.org)** / [GitHub](https://github.com/LinkStackOrg/LinkStack) or **[LittleLink](https://littlelink.io/)** - Unlimited / Self-Hosted / Custom URLs
|
||||
* ⭐ **[Linkstack](https://linkstack.org)** / [GitHub](https://github.com/LinkStackOrg/LinkStack) or **[LittleLink](https://littlelink.io/)** - Unlimited / Custom URLs / Self-Hosted
|
||||
* ⭐ **[Carrd](https://carrd.co/)** - Unlimited / Custom URLs / Multiple Designs
|
||||
* [BioSites](https://biosites.com/) - Unlimited / Custom URLs
|
||||
* [Linkr](https://linkr.com/) - Unlimited / Custom URLs
|
||||
|
@ -95,7 +93,7 @@
|
|||
* ↪️ **[Encrypted Messengers](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/adblock-vpn-privacy#wiki_.25B7_encrypted_messengers)**
|
||||
* ↪️ **[IRC Clients / Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/download#wiki_.25B7_irc_tools)**
|
||||
* ⭐ **[Mumble](https://www.mumble.info/)**, [Jam](https://jam.systems/), [TeaSpeak](https://teaspeak.de/gb/) or [TeamSpeak](https://www.teamspeak.com/) / [Warning](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#teamspeak-warning) - Voice Chat
|
||||
* ⭐ **[Hack.chat](https://hack.chat/)**, [Shick](https://shick.me/), [LeapChat](https://www.leapchat.org/), [Convene](https://letsconvene.im/), [otr.to](https://otr.to/) / [GitHub](https://github.com/jermainee/otr.to), [Stinto](https://stinto.chat/en), [Chitchatter](https://chitchatter.im/) / [GitHub](https://github.com/jeremyckahn/chitchatter) or [tik.io](https://tlk.io/) - Minimal / No Sign-Up Required Chats
|
||||
* ⭐ **[Hack.chat](https://hack.chat/)**, [Shick](https://shick.me/), [LeapChat](https://www.leapchat.org/), [Convene](https://letsconvene.im/), [otr.to](https://otr.to/) / [GitHub](https://github.com/jermainee/otr.to), [Chitchatter](https://chitchatter.im/) / [GitHub](https://github.com/jeremyckahn/chitchatter) or [tik.io](https://tlk.io/) - Minimal / No Sign-Up Required Chats
|
||||
* ⭐ **[Gajim](https://gajim.org/)**, [CoyIM](https://coy.im/), [Profanity](https://profanity-im.github.io/) / [GitHub](https://github.com/profanity-im/profanity) or [xabber](https://www.xabber.com/) - XMPP Clients
|
||||
* [Pidgin](https://www.pidgin.im/) / [GitHub](https://keep.imfreedom.org/pidgin/pidgin/) or [Ferdium](https://ferdium.org/) / [GitHub](https://github.com/ferdium/ferdium-app) - Combine Web Apps / Chat Services
|
||||
* [MatterBridge](https://github.com/42wim/matterbridge) - Bridge for Multiple Chat Apps
|
||||
|
@ -147,8 +145,8 @@
|
|||
|
||||
## ▷ RSS Readers
|
||||
|
||||
* ↪️ **[Android RSS Readers](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/android#wiki_.25B7_android_internet)**
|
||||
* 🌐 **[RSS Feed Reader Index](https://openrss.org/rss-feed-readers)**
|
||||
* ↪️ **[Android RSS Readers](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/android#wiki_.25B7_android_internet)**
|
||||
* ⭐ **[Feedly](https://feedly.com/)** - RSS Reader / Multi-Platform / [Notifier](https://olsh.me/Feedly-Notifier/)
|
||||
* ⭐ **[RSS Guard](https://github.com/martinrotter/rssguard)** - RSS Reader / Multi-Platform / [Scraper](https://github.com/Owyn/CSS2RSS) / [Discord](https://discord.com/invite/7xbVMPPNqH)
|
||||
* ⭐ **[Inoreader](https://www.inoreader.com/)** - RSS Reader / Multi-Platform
|
||||
|
@ -186,7 +184,7 @@
|
|||
|
||||
* ↪️ **[Reddit Search Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/social-media#wiki_.25B7_reddit_search)**
|
||||
* [SimilarSiteSearch](https://www.similarsitesearch.com/), [SimilarWeb](https://similarweb.com/), [SitesLikes](https://www.siteslike.com/), [TopSimilarSites](https://topsimilarsites.com/), [SimilarSites](https://similarsites.com/), [OpenDirectory](https://odir.us/) or [SiteLike.org](https://www.sitelike.org/) - Similar Site Searches
|
||||
* [qDorks](https://qdorks.com/composer), [sitedorks](https://github.com/Zarcolio/sitedorks), [Dorks-collections-list](https://github.com/cipher387/Dorks-collections-list/), [OSINT Dorks](https://github.com/BushidoUK/OSINT-SearchOperators), [Google Dork List](https://www.boxpiper.com/posts/google-dork-list), [Dork Genius](https://dorkgenius.com/) or [DorkSearch](https://www.dorksearch.com/) - Search Engine Dorking Tools
|
||||
* [sitedorks](https://github.com/Zarcolio/sitedorks), [Dorks-collections-list](https://github.com/cipher387/Dorks-collections-list/), [OSINT Dorks](https://github.com/BushidoUK/OSINT-SearchOperators), [Google Dork List](https://www.boxpiper.com/posts/google-dork-list), [Dork Genius](https://dorkgenius.com/) or [DorkSearch](https://www.dorksearch.com/) - Search Engine Dorking Tools
|
||||
* [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
|
||||
* [Soovle](https://www.seo.com/soovle/), [Keyword.io](https://www.keyword.io/), [SearchEngineReports](https://searchenginereports.net/), [ContentIdeas](https://contentideas.io/) or [Keyword Tool](https://keywordtool.io/) - Popular Keyword Search
|
||||
* [DuckDuckBang](https://mosermichael.github.io/duckduckbang/html/main.html) - DuckDuckGo !bang Meta Search / [GitHub](https://github.com/MoserMichael/duckduckbang)
|
||||
|
@ -229,7 +227,7 @@
|
|||
* 🌐 **[Fagan Finder](https://www.faganfinder.com/)**, [Search Engine Index](https://en.wikipedia.org/wiki/List_of_search_engines), [DirectSearch.Net](http://www.directsearch.net/), [Search Engine Colossus](https://www.searchenginecolossus.com/), [Advanced Search Tools](https://start.me/p/nRADzL/advanced-search-tools) or [Search-Engine](https://start.me/p/wM7y15/search-engine) - Search Engine Indexes
|
||||
* ↪️ **[AI Search Engines](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/ai#wiki_.25B7_specialized_chatbots)**
|
||||
* ↪️ **[Privacy Search Engines](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/adblock-vpn-privacy#wiki_.25B7_search_engines)**
|
||||
* ↪️ **[Image Search Engines](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/img-tools/#wiki_.25B7_image_search_engines)**
|
||||
* ↪️ **[Image Search Engines](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/image-tools/#wiki_.25B7_image_search_engines)**
|
||||
* ⭐ **[Yandex](https://yandex.com/)**
|
||||
* ⭐ **[pSearch](https://serjsx.github.io/wpSearch/)**, [Search All](https://www.searchall.net/), [WebSitesSearch](https://web-sites-search.web.app/), [CombinedSearch](https://combinedsearch.io/), [gnod Search](https://www.gnod.com/search/) or [AIO Search](https://www.aiosearch.com/) - Multi-Site Search
|
||||
* [100 Search Engines](https://www.100searchengines.com/) - Search with 100 Search Engines
|
||||
|
@ -267,7 +265,7 @@
|
|||
* [TV Streaming CSE](https://cse.google.com/cse?cx=006516753008110874046:hrhinud6efg) - Search TV Streaming Sites
|
||||
* [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)
|
||||
* [Download CSE](https://cse.google.com/cse?cx=006516753008110874046:1ugcdt3vo7z), [2](https://cse.google.com/cse?cx=006516753008110874046:reodoskmj7h) - Search Download Sites
|
||||
* [Software CSE](https://cse.google.com/cse?cx=ae17d0c72fa6cbcd4) or [Rave Search](https://ravesoftwaresearch.pages.dev/) - Search Software Sites
|
||||
* [Virgil Software Search](https://virgil.samidy.com/software-search/) or [Software CSE](https://cse.google.com/cse?cx=ae17d0c72fa6cbcd4) - Search Software Sites
|
||||
* [Torrent CSE](https://cse.google.com/cse?cx=006516753008110874046:0led5tukccj), [2](https://cse.google.com/cse?cx=006516753008110874046:kh3piqxus6n) - Search General Torrent Sites
|
||||
* [Reading CSE](https://cse.google.com/cse?cx=006516753008110874046:s9ddesylrm8), [2](https://cse.google.com/cse?cx=006516753008110874046:rc855wetniu), [3](https://cse.google.com/cse?cx=e9657e69c76480cb8), [4](https://cse.google.com/cse?cx=c46414ccb6a943e39), [5](https://ravebooksearch.com/), [6](https://recherche-ebook.fr/en/) - Search Reading Sites
|
||||
* [Audiobooks CSE](https://cse.google.com/cse?cx=006516753008110874046:cwbbza56vhd) - Search Audiobook Sites
|
||||
|
@ -284,8 +282,8 @@
|
|||
* [Anime Torrent CSE](https://cse.google.com/cse?cx=006516753008110874046:lamzt6ls4iz) - Search Anime Torrent Sites
|
||||
* [Audio Download CSE](https://cse.google.com/cse?cx=006516753008110874046:ibmyuhh72io), [2](https://cse.google.com/cse?cx=006516753008110874046:ohobg3wvr_w), [3](https://cse.google.com/cse?cx=32d85b41e2feacd3f) - Search Audio Download Sites
|
||||
* [Audio Torrent CSE](https://cse.google.com/cse?cx=006516753008110874046:v75cyb4ci55) - Search Audio Torrent Sites
|
||||
* [Game Download CSE](https://cse.google.com/cse?cx=006516753008110874046:cbjowp5sdqg), [Rezi Search](https://rezi.one/) or [r/PiratedGames CSE](https://cse.google.com/cse?cx=20c2a3e5f702049aa) - Multi-Site Search Engines
|
||||
* [Game Torrent CSE](https://cse.google.com/cse?cx=006516753008110874046:pobnsujblyx) or [Rave Search](https://ravegamesearch.pages.dev/) - Search Game Torrent Sites
|
||||
* [Virgil Game Search](https://virgil.samidy.com/Game-search/) / [GitHub](https://github.com/SamidyFR/Virgil), [Rezi Search](https://rezi.one/), [Playseek](https://playseek.app/), [Game Download CSE](https://cse.google.com/cse?cx=006516753008110874046:cbjowp5sdqg) or [r/PiratedGames CSE](https://cse.google.com/cse?cx=20c2a3e5f702049aa) - Multi-Site Search Engines
|
||||
* [Game Torrent CSE](https://cse.google.com/cse?cx=006516753008110874046:pobnsujblyx) - Search Game Torrent Sites
|
||||
* [PastebinSearch](https://cipher387.github.io/pastebinsearchengines/) or [Paste Skimmer](https://sites.google.com/view/l33tech/tools/pasteskimmer) - Search Pastebins
|
||||
* [File Host Search](https://cse.google.com/cse?cx=90a35b59cee2a42e1) - Search File Hosts
|
||||
* [Linux Software CSE](https://cse.google.com/cse?cx=81bd91729fe2a412b) - Search Linux Software Sites
|
||||
|
@ -431,8 +429,6 @@
|
|||
* [Spike](https://www.spikenow.com/)
|
||||
* [Canary](https://canarymail.io/)
|
||||
* [Twobird](https://www.twobird.com/)
|
||||
* [Kanmail](https://kanmail.io/)
|
||||
* [Wino](https://www.winomail.app/)
|
||||
|
||||
***
|
||||
|
||||
|
@ -451,11 +447,12 @@
|
|||
* ⭐ **[temp-mail.org](https://temp-mail.org/)** - Forever / 2 Hours / N/A / [Telegram Bot](https://t.me/TempMail_org_bot)
|
||||
* ⭐ **[temp-mail.io](https://temp-mail.io/)** - 1 Day / 1 Day / 12 Domains
|
||||
* ⭐ **[burner.kiwi](https://burner.kiwi/)** - 1 Day / 1 Day / 3 Domains
|
||||
* [TotallyLegit](https://totallylegit.edu.pl/) / [Tempumail](https://tempumail.com/edu-mail-generator) / [etempmail](https://eTempMail.com/) or [SecureTempMail](https://tempmail.edu.kg/en/) - Temp .edu Addresses
|
||||
* [TotallyLegit](https://totallylegit.edu.pl/), [Tempumail](https://tempumail.com/edu-mail-generator), [etempmail](https://eTempMail.com/) or [SecureTempMail](https://tempmail.edu.kg/en/) - Temp .edu Addresses
|
||||
* [TempMailHub](https://tempmailhub.org/) - Gmail / 15 Mins / 1 Domain / Public Shared Addresses
|
||||
* [Guerrilla Mail](https://www.guerrillamail.com/) - Forever / 1 Hour / 11 Domains / [SharkLasers](https://www.sharklasers.com/)
|
||||
* [Bloody Vikings!](https://addons.mozilla.org/en-US/firefox/addon/bloody-vikings/) - Temp Email Extension
|
||||
* [Tmail.io](https://tmail.io/) - Gmail / Forever / 1 Day / 4 Domains
|
||||
* [AltAddress](https://altaddress.org/) - Forever / 3 Days / 14 Domains
|
||||
* [22.Do](https://22.do/) - Gmail / 1 Day / 1 Day / 3 Domains
|
||||
* [Vortex Email](https://vortex.skyfall.dev/) - Forever / 9 Domains / [GitHub](https://github.com/SkyfallWasTaken/vortex.email)
|
||||
* [MailTicking](https://www.mailticking.com/) - Gmail / 2 Domains
|
||||
|
@ -465,7 +462,6 @@
|
|||
* [Temporary-Mail](https://temporary-mail.net/) - Forever / 11 Domains
|
||||
* [48hr.email](https://48hr.email/) - Forever / 2 Days / 7 Domains
|
||||
* [NiceMail](https://nicemail.cc/) - Forever / 1 Day / 3 Domains
|
||||
* [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/) - Forever / 1 Day / 1 Domain
|
||||
|
@ -475,13 +471,12 @@
|
|||
* [10minutesemail](https://10minutesemail.net/) - 10 Minutes / 1 Domain
|
||||
* [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
|
||||
* [AdGuard Temp Mail](https://adguard.com/adguard-temp-mail/overview.html) - 7 Days / 1 Day / 1 Domain
|
||||
* [Tempmailo](https://tempmailo.com/) - 2 Days / 2 Days / N/A
|
||||
* [Vmail.DEV](https://vmail.dev/) - 1 Day / 1 Day / 2 Domains
|
||||
* [TempMail.love](https://tempmail.love/) - 1 Day / 1 Day / 1 Domain
|
||||
* [tempmail.altmails](https://tempmail.altmails.com/) - 1 Day / 1 Day / 1 Domain
|
||||
* [Mail.cx](https://mail.cx/) - 1 Day / 12 Hours / 5 Domains
|
||||
* [BottleMail](https://bottlemail.org/) - 14 Days / 1 Domain
|
||||
* [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/) or [tempail.com](https://tempail.com/) - 1 Hour / 1 Hour / 1 Domain
|
||||
|
@ -489,7 +484,7 @@
|
|||
* [MinuteInbox](https://minuteinbox.com/), [TempMailGenerator](https://tempmailgenerator.org/), [10minemail.com](https://10minemail.com/), [10minutemail.com](https://10minutemail.com/) or [Linshi Email](https://www.linshi-email.com/en) - 10 Minute Lifespan Emails
|
||||
* [mail-temp.com](https://mail-temp.com/) or [emailfake.com](https://emailfake.com/) - 50+ Domains
|
||||
* [AnonymMail.net](https://anonymmail.net/) or [Mail.td](https://mail.td/) - 5 Domains
|
||||
* [EmailOnDeck](https://www.emailondeck.com/), [EmailTemp](https://emailtemp.org/), [Haribu](https://haribu.net/), [Maildax](https://maildax.com/) or [tempmaili.com](https://tempmaili.com/) - 1 Domain
|
||||
* [EmailOnDeck](https://www.emailondeck.com/), [EmailTemp](https://emailtemp.org/), [Haribu](https://haribu.net/) or [tempmaili.com](https://tempmaili.com/) - 1 Domain
|
||||
* [TMail](https://tmail.link/) - Lightweight Email
|
||||
* [More Sites](https://rentry.org/i3ozxg6f) - More Temp Mail Sites
|
||||
|
||||
|
@ -505,7 +500,8 @@
|
|||
* [erine.email](https://erine.email/) - Email Aliasing
|
||||
* [33mail](https://33mail.com/) - Email Aliasing
|
||||
* [TrashMail](https://trashmail.com/) - Email Aliasing
|
||||
* [Adguard Mail](https://adguard-mail.com/) - Email Aliasing
|
||||
* [AdGuard Mail](https://adguard-mail.com/) - Email Aliasing
|
||||
* [yey.email](https://yey.email/) - Email Aliasing
|
||||
|
||||
***
|
||||
|
||||
|
@ -569,7 +565,7 @@
|
|||
## ▷ Firefox Tools
|
||||
|
||||
* ↪️ **[Firefox Extensions](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/internet-tools#wiki_.25B7_firefox_extensions)**
|
||||
* ⭐ **[Firefox](https://www.mozilla.org/en-US/firefox/new/)** / [Nightly](https://www.firefox.com/channel/desktop/#nightly) / [Beta](https://www.firefox.com/channel/desktop/#beta) / [GitHub](https://github.com/mozilla-firefox/firefox)
|
||||
* ⭐ **[Firefox](https://www.firefox.com/)** / [Nightly](https://www.firefox.com/channel/desktop/#nightly) / [Beta](https://www.firefox.com/channel/desktop/#beta) / [GitHub](https://github.com/mozilla-firefox/firefox)
|
||||
* ⭐ **[Firefox Trains](https://whattrainisitnow.com/)** - Official Release Tracker
|
||||
* [Firefox Keyboard Shortcuts](https://support.mozilla.org/en-US/kb/keyboard-shortcuts-perform-firefox-tasks-quickly)
|
||||
* [Sine](https://github.com/CosmoCreeper/Sine) - Firefox Mod / Theme Manager
|
||||
|
@ -591,7 +587,7 @@
|
|||
* ↪️ **[Translation Extensions](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/text-tools#wiki_.25B7_translators)**
|
||||
* ↪️ **[Download Managers](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/file-tools#wiki_.25B7_download_managers)**
|
||||
* ↪️ **[Video Downloaders](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/video-tools#wiki_.25BA_video_download)**
|
||||
* ↪️ **[Image Downloaders](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/img-tools#wiki_.25B7_download_extensions)**
|
||||
* ↪️ **[Image Downloaders](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/image-tools#wiki_.25B7_download_extensions)**
|
||||
* ↪️ **[Productivity / Site Blocking](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/misc#wiki_.25B7_productivity_tools)**
|
||||
* ↪️ **[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)**
|
||||
|
@ -603,7 +599,6 @@
|
|||
* ⭐ **[ScrollAnywhere](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#scrollanywhere-addons)** - Improves Scrolling Functionality
|
||||
* ⭐ **[Auto Tab Discard](https://add0n.com/tab-discard.html)** or [Tab Wrangler](https://github.com/tabwrangler/tabwrangler) - Discard Inactive Tabs
|
||||
* ⭐ **[Clipboard2File](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#clipboard2file-addons)** - Upload Images from Clipboard
|
||||
* ⭐ **[Redirector](https://einaregilsson.com/redirector/)** - Page Redirector
|
||||
* [CRX Viewer](https://robwu.nl/crxviewer/) - View Extension Source Code
|
||||
* [Omni](https://github.com/alyssaxuu/omni) - Browser Quick Launcher
|
||||
* [Extensions CSE](https://cse.google.com/cse?cx=86d64a73544824102) - Multi-Site Extension Search
|
||||
|
@ -701,7 +696,7 @@
|
|||
|
||||
## ▷ Chrome Extensions
|
||||
|
||||
* 🌐 **[Chrome Web Store](https://chromewebstore.google.com/category/extensionsen)**, [Chrome-Extension](https://github.com/harshita214/Chrome-Extension) or [Crx4Chrome](https://www.crx4chrome.com/) - Chrome Addon Stores
|
||||
* 🌐 **[Chrome Web Store](https://chromewebstore.google.com/)**, [Chrome-Extension](https://github.com/harshita214/Chrome-Extension) or [Crx4Chrome](https://www.crx4chrome.com/) - Chrome Addon Stores
|
||||
* ⭐ **[Extensity](https://chromewebstore.google.com/detail/extensity/jjmflmamggggndanpgfnpelongoepncg)** or [Extension Manager](https://chromewebstore.google.com/detail/extension-manager/gjldcdngmdknpinoemndlidpcabkggco) - Extension Managers
|
||||
* ⭐ **[chromium-web-store](https://github.com/NeverDecaf/chromium-web-store)** - Add Extensions to Ungoogled Chromium
|
||||
* ⭐ **[Foxified](https://foxified.org/)** - Use Firefox Extensions in Chrome
|
||||
|
@ -722,7 +717,7 @@
|
|||
* [Page Pad](https://chromewebstore.google.com/detail/page-pad-make-quick-notes/igobdfagkcadgcfooegonbbeeggagakn) - Web Page Note-Taking
|
||||
* [Text to Image](https://chromewebstore.google.com/detail/text-to-image/nkljaohokglebeljcgchmehnhdieakda) - Text to Image
|
||||
* [Bookmark Dupes](https://chromewebstore.google.com/detail/bookmark-dupes/ombpkjoelcapenbepmgifadkgpokfgfd) - Remove Dupe Bookmarks
|
||||
* [Supatabs](https://supatabs.com/), [Prune](https://chromewebstore.google.com/detail/prune/gblddboefgbljpngfhgekbpoigikbenh) / [GitHub](https://github.com/tbrockman/prune) or [Tab Modifier](https://github.com/furybee/chrome-tab-modifier) - Tab Managers
|
||||
* [Tabler](https://tabler.one/), [Supatabs](https://supatabs.com/), [Prune](https://chromewebstore.google.com/detail/prune/gblddboefgbljpngfhgekbpoigikbenh) / [GitHub](https://github.com/tbrockman/prune) or [Tab Modifier](https://github.com/furybee/chrome-tab-modifier) - Tab Managers
|
||||
* [Lazy Tabs](https://github.com/jman/lazy_tab) - Auto Discard Inactive Tabs
|
||||
* [Rearrange Tabs](https://chromewebstore.google.com/detail/rearrange-tabs/ccnnhhnmpoffieppjjkhdakcoejcpbga) - Rearrange Tabs
|
||||
* [Popup Tab Switcher](https://github.com/dvdvdmt/popup-tab-switcher) - Improved Tab Switching
|
||||
|
@ -829,7 +824,7 @@
|
|||
# ► Open Source Intelligence
|
||||
|
||||
* 🌐 **[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)**
|
||||
* ↪️ **[Photo Forensics](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/image-tools/#wiki_.25B7_photo_forensics)**
|
||||
* ↪️ **[Domain / DNS Info](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/internet-tools#wiki_.25B7_domain_.2F_dns)**
|
||||
* ↪️ **[Search Engine OSINT](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/internet-tools#wiki_.25BA_search_tools)**
|
||||
* ⭐ **[IntelTechniques](https://inteltechniques.com/index.html)** or [OSINT Techniques](https://www.osinttechniques.com/) - OSINT Resources
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
|
||||
# ► Linux Guides
|
||||
|
||||
* ⭐ **[ArchWiki](https://wiki.archlinux.org/)** - Linux Guide / [Manuals](https://man.archlinux.org/) / [TUI](https://codeberg.org/theooo/mantra.py)
|
||||
* ⭐ **[ArchWiki](https://wiki.archlinux.org/)** - Linux Guides / [Manuals](https://man.archlinux.org/) / [TUI](https://codeberg.org/theooo/mantra.py)
|
||||
* [Gentoo Wiki](https://wiki.gentoo.org/wiki/Main_Page) - Gentoo Wikis / Guides
|
||||
* [Debian Wiki](https://wiki.debian.org/) - Debian Wiki / Guides
|
||||
* [LinuxJourney](https://linuxjourney.com/) - Interactive Linux Guides
|
||||
|
@ -57,7 +57,7 @@
|
|||
***
|
||||
|
||||
* 🌐 **[DistroWatch](https://distrowatch.com/dwres.php?resource=popularity)** - Distro Index / [Advanced Search](https://distrowatch.com/search.php#advanced)
|
||||
* ⭐ **[DistroChooser](https://distrochooser.de/)** - Distro Selection Guide
|
||||
* ⭐ **[DistroChooser](https://distrochooser.de/)** - Distro Selection Guide / [Discord](https://discord.com/invite/aDkCutfqak) / [GitHub](https://github.com/distrochooser/distrochooser)
|
||||
* [distro.moe](https://distro.moe/) - Find Random Distros
|
||||
* [Linux Live Kit](https://www.linux-live.org/) - Live Distro Creator
|
||||
* [ArchiveOS](https://archiveos.org/) - Linux Distro Archive
|
||||
|
@ -71,15 +71,15 @@
|
|||
|
||||
# ► Linux Apps
|
||||
|
||||
* ↪️ **[Multi-Platform Readers](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/reading/#wiki_.25B7_ebook_readers)** - Ebook Reader Index
|
||||
* 🌐 **[GNOME Shell Extensions](https://extensions.gnome.org/)**
|
||||
* ↪️ **[Multi-Platform Readers](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/reading/#wiki_.25B7_ebook_readers)** - Ebook Reader Index
|
||||
* ⭐ **[Bottles](https://usebottles.com/)** - Manage Wine containers / [Discord](https://discord.com/invite/wF4JAdYrTR) / [GitHub](https://github.com/bottlesdevs)
|
||||
* ⭐ **[WineHQ](https://appdb.winehq.org/)** - Wine Compatibility Database
|
||||
* ⭐ **[Q4Wine](https://sourceforge.net/projects/q4wine/)** - Wine GUI
|
||||
* ⭐ **[AppImageLauncher](https://github.com/TheAssassin/AppImageLauncher)** or [GearLever](https://github.com/mijorus/gearlever) - Integrate AppImages to App Launchers
|
||||
* ⭐ **[winetricks](https://github.com/Winetricks/winetricks)** - Wine Fixes
|
||||
* ⭐ **[rofi](https://davatorium.github.io/rofi/)** / [Emoji Selector](https://github.com/Mange/rofi-emoji), [Fuzzel](https://codeberg.org/dnkl/fuzzel), [Ulauncher](https://ulauncher.io/) or [wofi](https://hg.sr.ht/~scoopta/wofi) - App Launchers
|
||||
* ⭐ **[FreeRDP](https://www.freerdp.com/)** / [GitHub](https://github.com/FreeRDP/FreeRDP) or [Apache Guacamole](https://guacamole.apache.org/)- Remote Desktop Clients
|
||||
* ⭐ **[rofi](https://davatorium.github.io/rofi/)** / [Emoji Selector](https://github.com/Mange/rofi-emoji), [Fuzzel](https://codeberg.org/dnkl/fuzzel), [Ulauncher](https://ulauncher.io/) or [wofi](https://hg.sr.ht/~scoopta/wofi) - App Launchers / Keystroke Launchers
|
||||
* ⭐ **[FreeRDP](https://www.freerdp.com/)** / [GitHub](https://github.com/FreeRDP/FreeRDP) or [Apache Guacamole](https://guacamole.apache.org/) - Remote Desktop Clients
|
||||
* ⭐ **[shell_gpt](https://github.com/TheR1D/shell_gpt)** or [shellgpt](https://github.com/jiacai2050/my-works/tree/main/shellgpt) - AI Terminal Chatbot / GPT
|
||||
* [Darling](https://www.darlinghq.org/) - Run macOS Apps on Linux / [Discord](https://discord.com/invite/XRD3mQA) / [GitHub](https://github.com/darlinghq/darling)
|
||||
* [innoextract](https://constexpr.org/innoextract/) - Windows Installer Unpacker / [GitHub](https://github.com/dscharrer/innoextract)
|
||||
|
@ -91,7 +91,6 @@
|
|||
* [taskbook](https://github.com/klaudiosinani/taskbook) or [nb](https://xwmx.github.io/nb) / [GitHub](https://github.com/xwmx/nb) - Note Apps
|
||||
* [Notepadqq](https://github.com/notepadqq/notepadqq), [Featherpad](https://github.com/tsujan/FeatherPad) or [gedit](https://gedit-text-editor.org/) - Text Editors
|
||||
* [Kate Editor](https://kate-editor.org/) - Source Code Editor
|
||||
* [Geany](https://www.geany.org/) - IDE
|
||||
* [TextPieces](https://gitlab.com/liferooter/textpieces) - Quick Text Transformations
|
||||
* [Durdraw](https://durdraw.org/) - ASCII Editor
|
||||
* [ly](https://github.com/fairyglade/ly) - Display Manager with Console UI
|
||||
|
@ -157,7 +156,7 @@
|
|||
* [Input Leap](https://github.com/input-leap/input-leap) - Multi-Computer Control
|
||||
* [auto-cpufreq](https://github.com/AdnanHodzic/auto-cpufreq) - CPU Speed & Power Optimization Automation
|
||||
* [Fan Control](https://github.com/wiiznokes/fan-control) - Fan Controller
|
||||
* [winapps](https://github.com/Fmstrat/winapps) - Run Windows Apps on Linux
|
||||
* [WinApps](https://github.com/winapps-org/winapps) - Run Windows Apps on Linux
|
||||
* [Teleport](https://teleportsite.pages.dev/) - Windows App Compatibility Analyzer
|
||||
* [NetBoot](https://netboot.xyz/) - iPXE Network Boot
|
||||
* [CloverBootloader](https://github.com/CloverHackyColor/CloverBootloader/) - Windows, Mac & Linux Bootloader / [Config](https://mackie100projects.altervista.org/)
|
||||
|
@ -189,6 +188,7 @@
|
|||
* ⭐ **[Kdenlive](https://apps.kde.org/kdenlive/)** / [GitHub](https://github.com/KDE/kdenlive) or [Flowblade](https://jliljebl.github.io/flowblade/) / [GitHub](https://github.com/jliljebl/flowblade) - Video Editors
|
||||
* [MultiPlex](https://github.com/pojntfx/multiplex) - Torrent Watch Party / Use [VPN](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/adblock-vpn-privacy/#wiki_.25BA_vpn)
|
||||
* [MPV Shim](https://github.com/iwalton3/plex-mpv-shim) - Cast Plex to MPV
|
||||
* [gpu-screen-recorder](https://git.dec05eba.com/gpu-screen-recorder/) - Lightweight Screen Recorder w/ Shadowplay
|
||||
* [Gromit MPX](https://github.com/bk138/gromit-mpx) - Screen Annotation
|
||||
* [AV Linux](https://www.bandshed.net/avlinux/) - Video / Audio Editor
|
||||
* [REAL Video Enhancer](https://github.com/TNTwise/REAL-Video-Enhancer) - Video Upscaling
|
||||
|
@ -207,7 +207,7 @@
|
|||
|
||||
* 🌐 **[Awesome Linux Audio](https://gitlab.com/nodiscc/awesome-linuxaudio)** - Live Audio Resources
|
||||
* ⭐ **[SpotX-Bash](https://github.com/SpotX-Official/SpotX-Bash)** or [spotify-adblock](https://github.com/abba23/spotify-adblock) - Spotify Adblockers
|
||||
* ⭐ **[Spicetify](https://spicetify.app/)** - Spotify Themes & Plugins / [Addons](https://github.com/rxri/spicetify-extensions), [2](https://github.com/3raxton/spicetify-custom-apps-and-extensions) / [Note](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#spicetify-note) / [Discord](https://discord.gg/VnevqPp2Rr) / [GitHub](https://github.com/spicetify/cli)
|
||||
* ⭐ **[Spicetify](https://spicetify.app/)** - Spotify Themes & Plugins / [Note](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#spicetify-note) / [Discord](https://discord.gg/VnevqPp2Rr) / [GitHub](https://github.com/spicetify/cli)
|
||||
* ⭐ **[SongRec](https://github.com/marin-m/SongRec)** or [Mousai](https://github.com/SeaDve/Mousai) - Song Identifiers
|
||||
* [puddletag](https://docs.puddletag.net/) - Metadata Organizer / [GitHub](https://github.com/puddletag/puddletag)
|
||||
* [Tidal Hi-Fi](https://github.com/Mastermindzh/tidal-hifi) - Hi-Fi Tidal for Linux
|
||||
|
@ -225,7 +225,8 @@
|
|||
* [MusicPod](https://github.com/ubuntu-flutter-community/musicpod) - Podcast / Radio Player
|
||||
* [Shortwave](https://flathub.org/apps/de.haeckerfelix.Shortwave) or [QMPlay2](https://github.com/zaps166/QMPlay2) - Radio Players
|
||||
* [HeadsetControl](https://github.com/Sapd/HeadsetControl) - Headset Settings Manager
|
||||
* [Pipewire Multimedia API](https://pipewire.org/) - Improved Video / Audio Handling / [Plugins](https://github.com/wwmm/easyeffects)
|
||||
* [Pipewire Multimedia API](https://pipewire.org/) - Improved Video / Audio Handling
|
||||
* [EasyEffects](https://github.com/wwmm/easyeffects) - Pipewire Audio Effects
|
||||
* [Werman](https://github.com/werman/noise-suppression-for-voice) or [NoiseTorch](https://github.com/noisetorch/NoiseTorch) - Noise Suppression Software
|
||||
* [Qtractor](https://qtractor.org/) - Audio Editor
|
||||
* [Calf Studio Gear](https://calf-studio-gear.org/) - Audio Production Plugins
|
||||
|
@ -273,7 +274,7 @@
|
|||
* ⭐ **[Kapital Sin](https://www.kapitalsin.com/forum/index.php?board=4.0)** - Linux Games / Use [Translator](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/text-tools/#wiki_.25B7_translators)
|
||||
* ⭐ **[Torrminatorr](https://forum.torrminatorr.com/)** - Linux Games
|
||||
* ⭐ **[johncena141](https://1337x.to/user/johncena141/)** - Linux Games / [Search](https://games.melroy.org/) / [Support](https://gitlab.com/jc141x/portal)
|
||||
* [GameHub](https://tkashkin.github.io/projects/gamehub/), [UnderTaker141](https://github.com/AbdelrhmanNile/UnderTaker141) - Game Libraries / Launchers
|
||||
* [UnderTaker141](https://github.com/AbdelrhmanNile/UnderTaker141) - Game Libraries / Launchers
|
||||
* [RuTracker](https://rutracker.org/forum/viewforum.php?f=899) - Linux Games / Use [Translator](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/text-tools/#wiki_.25B7_translators) / [Wiki](http://rutracker.wiki/) / [Rules](https://rutracker.org/forum/viewtopic.php?t=1045)
|
||||
* [Native Linux Games](https://rentry.co/FMHYBase64#native-linux-games) - Linux Games
|
||||
* [winesapOS](https://github.com/winesapOS/winesapOS) - Play Games on Storage Devices
|
||||
|
@ -295,7 +296,7 @@
|
|||
* [Online-Fix Linux](https://github.com/ZzEdovec/onlinefix-linux) - Launch Games w/ Online-Fix Patches
|
||||
* [Sober](https://sober.vinegarhq.org/) - Roblox Linux Port / [Vinegar (Studio Only)](https://vinegarhq.org/)
|
||||
* [Limo](https://github.com/limo-app/limo) - Nexus Mods Manager for Linux
|
||||
* [NVBurner](https://github.com/iloveichigo/NVBurner) or [CoreCtrl](https://gitlab.com/corectrl/corectrl) - Overclocking Tool
|
||||
* [ssprea-nvidia-control](https://github.com/ssprea/ssprea-nvidia-control), [NVBurner](https://github.com/iloveichigo/NVBurner) or [CoreCtrl](https://gitlab.com/corectrl/corectrl) - GPU Overclocking Tools
|
||||
* [dxvk](https://github.com/doitsujin/dxvk) - D3D9, D3D10 and D3D11 for Linux / Wine
|
||||
* [lsfg-vk](https://github.com/PancakeTAS/lsfg-vk) - Lossless Scaling for Linux
|
||||
* [VKBasAlt](https://github.com/DadSchoorse/vkBasalt) - Game Post Processing Layer
|
||||
|
@ -363,6 +364,7 @@
|
|||
* [apt-fast](https://github.com/ilikenwf/apt-fast) - APT Download Accelerator
|
||||
* [Nala](https://gitlab.com/volian/nala) - APT Frontend
|
||||
* [aMule](https://www.amule.org/) - eMule-like P2P Client
|
||||
* [OpenWRT](https://openwrt.org/) - Linux Router Firmware
|
||||
* [Linux Router](https://github.com/garywill/linux-router) - Set Linux as Router
|
||||
* [Netcat](https://rentry.co/Netcat) - Networking Tool
|
||||
* [Bandwhich](https://github.com/imsnif/bandwhich) - Terminal Bandwidth Utilization Tool
|
||||
|
@ -375,7 +377,7 @@
|
|||
* [Adium](https://adium.im/), [Polari](https://apps.gnome.org/Polari/) / [GitLab](https://gitlab.gnome.org/GNOME/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 / [GitHub](https://github.com/rafatosta/zapzap)
|
||||
* [ZapZap](https://rtosta.com/zapzap/) - WhatsApp Client / [GitHub](https://github.com/rafatosta/zapzap)
|
||||
* [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
|
||||
* [GrayJay](https://grayjay.app/desktop/) - Combines YouTube, Twitch, Rumble, etc.
|
||||
* [BetterDiscordctl](https://github.com/bb010g/betterdiscordctl) - Modded Discord Client / [Guide](https://gist.github.com/ObserverOfTime/d7e60eb9aa7fe837545c8cb77cf31172)
|
||||
|
@ -386,10 +388,10 @@
|
|||
|
||||
## ▷ Server / Selfhosting
|
||||
|
||||
* 🌐 **[Awesome Selfhosted](https://awesome-selfhosted.net/)** / [2](https://gist.github.com/kvnxiao/27c14760cbec35b4e312e34c856b51a8) or [Awesome Selfhosted UI](https://awesomeselfhosted.netlify.app/) - Self-Hosted Software Index / [GitHub](https://github.com/awesome-selfhosted/awesome-selfhosted)
|
||||
* 🌐 **[Awesome Selfhosted](https://awesome-selfhosted.net/)** / [2](https://gist.github.com/kvnxiao/27c14760cbec35b4e312e34c856b51a8), [iHostIt](https://ihostit.app/) or [Awesome Selfhosted UI](https://awesomeselfhosted.netlify.app/) - Self-Hosted Software Index / [GitHub](https://github.com/awesome-selfhosted/awesome-selfhosted)
|
||||
* 🌐 **[Selfh.st](https://selfh.st/apps/)** - Self-Hosted Software Index
|
||||
* 🌐 **[Self-Hosting-Guide](https://github.com/mikeroyal/Self-Hosting-Guide)** - Self-Hosted Software Index
|
||||
* ⭐ **[Homepage](https://gethomepage.dev/)** / [GitHub](https://github.com/gethomepage/homepage),**[Dashy](https://dashy.to/)** / [GitHub](https://github.com/Lissy93/dashy), [CasaOS](https://casaos.io/) / [GitHub](https://github.com/IceWhaleTech/CasaOS), [Flame](https://github.com/pawelmalak/flame), [Homer](https://github.com/bastienwirtz/homer), [Glance](https://github.com/glanceapp/glance), [Homarr](https://homarr.dev/) / [GitHub](https://github.com/homarr-labs/homarr) or [Organizr](https://github.com/causefx/Organizr) - Home Server Startpages
|
||||
* ⭐ **[Homepage](https://gethomepage.dev/)** / [GitHub](https://github.com/gethomepage/homepage), **[Dashy](https://dashy.to/)** / [GitHub](https://github.com/Lissy93/dashy), [CasaOS](https://casaos.io/) / [GitHub](https://github.com/IceWhaleTech/CasaOS), [Flame](https://github.com/pawelmalak/flame), [Homer](https://github.com/bastienwirtz/homer), [Lab Dash](https://github.com/AnthonyGress/lab-dash), [mafl](https://mafl.hywax.space/), [Glance](https://github.com/glanceapp/glance), [Homarr](https://homarr.dev/) / [GitHub](https://github.com/homarr-labs/homarr) or [Organizr](https://github.com/causefx/Organizr) - Home Server Startpages
|
||||
* [Self Managed Life](https://wiki.futo.org/) - FOSS / Self-Hosting Guide / [Video](https://youtu.be/Et5PPMYuOc8), [2](https://youtu.be/3fW9TV1WQi8)
|
||||
* [Server World](https://www.server-world.info/en/) - Network Server Guides
|
||||
* [HowtoForge](https://www.howtoforge.com/) / [GitHub](https://github.com/lollipopkit/flutter_server_box) or [Comfy.Guide](https://comfy.guide/) - Linux Server Software Guides
|
||||
|
@ -419,11 +421,11 @@
|
|||
* [ANGRYsearch](https://github.com/DoTheEvo/ANGRYsearch), [gocatcli](https://github.com/deadc0de6/gocatcli/), [xplr](https://xplr.dev/) / [Discord](https://discord.com/invite/JmasSPCcz3) / [GitHub](https://github.com/sayanarijit/xplr), [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
|
||||
* [The Filesystem Hierarchy Standard](https://i.imgur.com/0vfM4dm.png) - Linux Filesystem Chart
|
||||
* [Dolphin](https://userbase.kde.org/Dolphin) / [Source Code](https://invent.kde.org/system/dolphin) or [SpaceFM](https://ignorantguru.github.io/spacefm/) - File Managers
|
||||
* [pigz](https://zlib.net/pigz/) / [GitHub](https://github.com/madler/pigz), [p7zip](https://p7zip.sourceforge.net/) or [GNU Gzip](https://www.gnu.org/software/gzip/) - File Archivers / Unzippers
|
||||
* [Collector](https://mijorus.it/projects/collector/) - File Drag & Drop
|
||||
* [Bash Upload](https://bashupload.com/) - Bash File Upload 50GB / 3 days
|
||||
* [Zoxide](https://github.com/ajeetdsouza/zoxide) - Improved CD Command
|
||||
* [lnav](https://lnav.org/) - Log File Viewer / Analyzer / [Discord](https://discord.gg/erBPnKwz7R) / [GitHub](https://github.com/tstack/lnav)
|
||||
* [p7zip](https://p7zip.sourceforge.net/), [GNU Gzip](https://www.gnu.org/software/gzip/) or [pigz](https://zlib.net/pigz/) - File Archivers / Unzippers
|
||||
* [Pika Backup](https://gitlab.gnome.org/World/pika-backup/) or [RecoverPy](https://github.com/PabloLec/RecoverPy) - File Backup / Reocovery Tools
|
||||
* [Boxxy](https://github.com/queer/boxxy) - Contain Files / Directories
|
||||
* [Junction](https://github.com/sonnyp/Junction) - Change File Associations
|
||||
|
@ -438,7 +440,7 @@
|
|||
|
||||
## ▷ Android on Linux
|
||||
|
||||
* ⭐ **[WayDroid](https://waydro.id/)** - Containerized Android on Linux / [Scripts](https://github.com/casualsnek/waydroid_script) / [GitHub](https://github.com/waydroid)
|
||||
* ⭐ **[Waydroid](https://waydro.id/)** - Containerized Android on Linux / [Scripts](https://github.com/casualsnek/waydroid_script) / [GitHub](https://github.com/waydroid)
|
||||
* [Redroid](https://github.com/remote-android/redroid-doc) or [Docker-Android](https://github.com/budtmo/docker-android) - Containerized Android on Linux
|
||||
* [Genymotion](https://www.genymotion.com/) - Android Emulator
|
||||
* [Android Studio](https://developer.android.com/studio) - IDE with Built-in Android Emulator
|
||||
|
@ -456,7 +458,7 @@
|
|||
* ⭐ **zsh Tools** - [Plugins](https://github.com/unixorn/awesome-zsh-plugins) / [Customization](https://ohmyz.sh/) / [Theme](https://github.com/romkatv/powerlevel10k) / [Auto Setup](https://github.com/gustavohellwig/gh-zsh) / [Rich Framework](https://github.com/sorin-ionescu/prezto)
|
||||
* ⭐ **[Alacritty](https://alacritty.org)**, **[Kitty](https://sw.kovidgoyal.net/kitty/overview/)**, **[Wezterm](https://wezterm.org)** / [GitHub](https://github.com/wezterm/wezterm), [tabby](https://tabby.sh/), [foot](https://codeberg.org/dnkl/foot), [Simple Terminal](https://st.suckless.org/), [Wave](https://www.waveterm.dev/), [Ghostty](https://ghostty.org/), [yakuake](https://apps.kde.org/yakuake/) or [emacs-eat](https://codeberg.org/akib/emacs-eat) - Linux Terminal Emulators
|
||||
* ⭐ **[LinuxCommand](https://www.linuxcommand.org/tlcl.php)**, [Command Line Guide](https://github.com/jlevy/the-art-of-command-line) or [ManKier](https://www.mankier.com/) - Command-Line Lessons
|
||||
* [Liquidprompt](https://github.com/liquidprompt/liquidprompt) - Bash / Zsh Prompt
|
||||
* [Starship](https://starship.rs/) or [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
|
||||
|
@ -485,6 +487,7 @@
|
|||
* [Raspberry Pi Connect](https://www.raspberrypi.com/software/connect/) - Raspberry Pi Remote Access
|
||||
* [CaribouLite](https://github.com/cariboulabs/cariboulite) - Raspberry Pi Tx/Rx 6GHz SDR
|
||||
* [Piper](https://github.com/OHF-Voice/piper1-gpl) - Raspberry Pi Text-To-Speech
|
||||
* [Pinout](https://pinout.xyz/) - Raspberry Pi GPIO Pins Guide
|
||||
|
||||
***
|
||||
|
||||
|
@ -514,11 +517,11 @@
|
|||
* 🌐 **[Window Manager Index](https://wiki.archlinux.org/title/Window_manager)** - List of Window Managers
|
||||
* 🌐 **[Wayland Compositor Index](https://wiki.archlinux.org/title/Wayland#Compositors)** - List of Wayland Compositors
|
||||
* 🌐 **[We Are Wayland Now](https://wearewaylandnow.com/)** - Wayland Ecosystem Components / [GitHub](https://github.com/gianklug/wearewaylandnow)
|
||||
* ⭐ **[i3wm](https://i3wm.org)**, [BSPWM](https://github.com/baskerville/bspwm) or [herbstluftwm](https://herbstluftwm.org) - Tiling Window Managers
|
||||
* ⭐ **[awesomewm](https://awesomewm.org)** / [GitHub](https://github.com/awesomeWM/awesome), **[xmonad](https://xmonad.org)**, [Qtile](https://qtile.org/) or [dwm](https://dwm.suckless.org) - Dynamic Window Managers
|
||||
* ⭐ **[Hyprland](https://hyprland.org/)** - Wayland Compositor [Resources](https://github.com/hyprland-community/awesome-hyprland) / [Arch Wiki](https://wiki.archlinux.org/title/Hyprland) / [Simple Config](https://github.com/mylinuxforwork/dotfiles), [2](https://end-4.github.io/dots-hyprland-wiki/en/)
|
||||
* ⭐ **[niri](https://github.com/YaLTeR/niri)** - Wayland Compositor
|
||||
* ⭐ **[Sway](https://github.com/swaywm/sway)** or [SwayFx](https://github.com/WillPower3309/swayfx) - i3-compatible Wayland Compositor / [Arch Wiki](https://wiki.archlinux.org/title/Sway)
|
||||
* ⭐ **[i3wm](https://i3wm.org)** - Manual Tiling Window Manager / [Reference Card](https://i3wm.org/docs/refcard.html)
|
||||
* ⭐ **[awesomewm](https://awesomewm.org)** / [GitHub](https://github.com/awesomeWM/awesome), **[xmonad](https://xmonad.org)**, [Qtile](https://qtile.org/) or [dwm](https://dwm.suckless.org) - Dynamic Tiling Window Managers
|
||||
* ⭐ **[Hyprland](https://hyprland.org/)** / [Resources](https://github.com/hyprland-community/awesome-hyprland) / [Arch Wiki](https://wiki.archlinux.org/title/Hyprland) / [Simple Config](https://github.com/mylinuxforwork/dotfiles), [2](https://end-4.github.io/dots-hyprland-wiki/en/) or **[niri](https://github.com/YaLTeR/niri)** - Dynamic Tiling Wayland Compositors
|
||||
* ⭐ **[Sway](https://github.com/swaywm/sway)** / [Arch Wiki](https://wiki.archlinux.org/title/Sway) or [SwayFx](https://github.com/WillPower3309/swayfx) - i3-compatible Wayland Compositors
|
||||
* [BSPWM](https://github.com/baskerville/bspwm) or [herbstluftwm](https://herbstluftwm.org) - Hybrid Tiling Window Managers
|
||||
* [river](https://github.com/riverwm/river/) - Wayland Compositor
|
||||
* [LabWC](https://github.com/labwc/labwc) - Wayland Compositor
|
||||
* [wayfire](https://github.com/WayfireWM/wayfire/) - Wayland Compositor
|
||||
|
@ -587,8 +590,8 @@
|
|||
* [MacScripter](https://www.macscripter.net/) - Automation Forum
|
||||
* [pongoOS](https://github.com/checkra1n/pongoOS) - Mac Pre-Boot Executor
|
||||
* [Later](https://getlater.app/) - Restore App Sessions / [GitHub](https://github.com/alyssaxuu/later)
|
||||
* [VMware](https://www.majorgeeks.com/files/details/vmware_workstation_for_windows.html) - Virtual Machine
|
||||
* [Tart](https://tart.run/) - Virtual Machine Manager / [GitHub](https://github.com/cirruslabs/tart)
|
||||
* [VMware](https://www.majorgeeks.com/files/details/vmware_workstation_for_windows.html) - Virtual Machine
|
||||
* [MacVim](https://macvim.org/), [CodeEdit](https://www.codeedit.app/) or [AuroraEditor](https://auroraeditor.com/) - Code Editors
|
||||
* [GrayJay](https://grayjay.app/desktop/) - Combines YouTube, Twitch, Rumble, etc.
|
||||
* [SD Buddy](https://github.com/breadthe/sd-buddy), [CHARL-E](https://www.charl-e.com/) or [Swift Core ML Diffusers](https://github.com/huggingface/swift-coreml-diffusers) - Stable Diffusion Apps
|
||||
|
@ -648,7 +651,7 @@
|
|||
## ▷ Mac Audio
|
||||
|
||||
* ⭐ **[SpotX-Bash](https://github.com/SpotX-Official/SpotX-Bash)** or [Mac_Spotify_Adblock](https://github.com/Devanshu-17/Mac_Spotify_Adblock) - Spotify Adblockers
|
||||
* ⭐ **[Spicetify](https://spicetify.app/)** - Spotify Themes & Plugins / [Addons](https://github.com/rxri/spicetify-extensions), [2](https://github.com/3raxton/spicetify-custom-apps-and-extensions) / [Note](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#spicetify-note) / [Discord](https://discord.gg/VnevqPp2Rr) / [GitHub](https://github.com/spicetify/cli)
|
||||
* ⭐ **[Spicetify](https://spicetify.app/)** - Spotify Themes & Plugins / [Note](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#spicetify-note) / [Discord](https://discord.gg/VnevqPp2Rr) / [GitHub](https://github.com/spicetify/cli)
|
||||
* [foobar2000](https://www.foobar2000.org/mac) or [VOX Mac Music Player](https://vox.rocks/mac-music-player) - Audio Players
|
||||
* [Silicio](https://apps.apple.com/us/app/silicio-mini-player/id933627574) - Audio Mini Player
|
||||
* [Alfred Spotify Mini Player](https://alfred-spotify-mini-player.com/) - Spotify Mini Player
|
||||
|
@ -684,13 +687,14 @@
|
|||
* ⭐ **[Goldberg](https://github.com/inflation/goldberg_emulator)** - Steam Multiplayer Client Emulator
|
||||
* [SCNLOG](https://scnlog.me/games/mac/) - Mac Games
|
||||
* [RuTracker](https://rutracker.org/forum/viewforum.php?f=960) - Mac Games
|
||||
* [AppsTorrent](https://appstorrent.ru/games/) - Mac Games
|
||||
* [MacintoshRepository](https://www.macintoshrepository.org/games/) - Oldschool Mac Games
|
||||
* [Mac Source Ports](https://www.macsourceports.com/) - Run Old Mac Games
|
||||
* [Heroic Games Launcher](https://heroicgameslauncher.com/) - Epic / GOG / Prime Games Launcher / [Discord](https://discord.com/invite/rHJ2uqdquK) / [GitHub](https://github.com/Heroic-Games-Launcher/HeroicGamesLauncher)
|
||||
* [Mythic](https://getmythic.app/) / [Discord](https://discord.gg/58NZ7fFqPy) - 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
|
||||
* [r/MacGaming](https://www.reddit.com/r/macgaming/) - Mac Gaming Community
|
||||
* [r/MacGaming](https://www.reddit.com/r/macgaming/) - Mac Gaming Community / [Discord](https://discord.gg/MgJsb5m)
|
||||
* [cemu.emiyl](https://cemu.emiyl.com/) - CEMU Compatibility List
|
||||
|
||||
***
|
||||
|
@ -743,7 +747,7 @@
|
|||
## ▷ System Tools
|
||||
|
||||
* 🌐 **[AppleDB](https://appledb.dev/)** - Apple Device / Software Info Database
|
||||
* ⭐ **[Alfred](https://www.alfredapp.com/)** / [Workflows / Themes](https://www.packal.org/), [Albert](https://albertlauncher.github.io/), [Quicksilver](https://qsapp.com/) or [SOL](https://sol.ospfranco.com/) - Keystroke Launchers
|
||||
* ⭐ **[Alfred](https://www.alfredapp.com/)** / [Workflows / Themes](https://www.packal.org/) , [Raycast](https://www.raycast.com/), [Albert](https://albertlauncher.github.io/), [Quicksilver](https://qsapp.com/), [KeyboardCowboy](https://github.com/zenangst/KeyboardCowboy) or [SOL](https://sol.ospfranco.com/) - Keystroke Launchers / Spotlight Replacements
|
||||
* ⭐ **[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
|
||||
* [Advanced macOS Commands](https://saurabhs.org/advanced-macos-commands) - Advanced Command-Line Tools
|
|
@ -6,8 +6,8 @@
|
|||
|
||||
# ► Indexes
|
||||
|
||||
* 🌐 **[Awesome List Index](https://github.com/sindresorhus/awesome), [2](https://github.com/topics/awesome)**, [Awesome.facts](https://awesome.facts.dev/) or [awesome-list](https://github.com/topics/awesome-list) - All Awesome Lists
|
||||
* 🌐 **[lists](https://github.com/jnv/lists)** - List Index
|
||||
* 🌐 **[Awesome List Index](https://github.com/sindresorhus/awesome), [GitHub Topics](https://github.com/topics/awesome)** / [2](https://github.com/topics/awesome-list) - All Awesome Lists
|
||||
* 🌐 **[Lists](https://github.com/jnv/lists)** - List of Lists Index
|
||||
* ↪️ **[AI Indexes](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/ai#wiki_.25BA_ai_indexes)**
|
||||
* ⭐ **[FMHY Search](https://www.reddit.com/r/FREEMEDIAHECKYEAH/comments/105xraz/howto_search_fmhy/)** - Search the Wiki
|
||||
* ⭐ **[Awesome Search](https://awesomelists.top/)** - Awesome List Search
|
||||
|
@ -16,7 +16,7 @@
|
|||
* [Track Awesome List](https://www.trackawesomelist.com/) - Daily Awesome List Updates
|
||||
* [ForumDirectory](https://www.forumdirectory.com/) - Forum Directory
|
||||
* [ooh.directory](https://ooh.directory/) - Blog Directory
|
||||
* [/danfmhy/](https://dan.valeena.dev/#my-guides), [2](https://rentry.co/danfmhy/) - List of Guides by Dan
|
||||
* [Dan's Guides](https://dan.valeena.dev/#my-guides) - List of Guides by Dan
|
||||
* [StatsCrop](https://www.statscrop.com/websites/top-sites/), [xRanks](https://xranks.com/), [Start.me Stats](https://start.me/sites/int), [HypeStat](https://hypestat.com/), [10 Million Sites](https://www.domcop.com/top-10-million-websites) or [CuteStat](https://www.cutestat.com/) - Site Rankings
|
||||
* [findPWA](https://findpwa.com/), [Store.app](https://store.app/), [SaaS Discovery](https://saasdiscovery.com/) or [Electron](https://www.electronjs.org/apps) - Web App Indexes
|
||||
* [SmartLinks](https://smartlinks.org/index.html) - Website Directory
|
||||
|
@ -68,6 +68,7 @@
|
|||
* [AppRaven](https://appraven.net/activity/pricedrops?ratingCount=0&price=FREE) - Apple Platform Apps / Games / [Subreddit](https://www.reddit.com/r/AppRaven/) / [Telegram](https://t.me/AppRavenOfficial) / [Discord](https://discord.com/invite/q8nPsNAypC)
|
||||
* [BAEN](https://www.baen.com/catalog/category/view/s/free-library/id/2012) - Books
|
||||
* [FreeForStudent](https://freeforstudents.org/) - Free for Student Deals
|
||||
* [FreeReadFeed](https://www.freereadfeed.com/) or [eReaderIQ](https://www.ereaderiq.com/freebies) - Free Kindle Releases
|
||||
* [r/FREE](https://reddit.com/r/FREE/)
|
||||
* [r/freebies](https://www.reddit.com/r/freebies/)
|
||||
* [r/eFreebies](https://reddit.com/r/eFreebies)
|
||||
|
@ -96,6 +97,7 @@
|
|||
* [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
|
||||
* [VRDB](https://vrdb.app/games?min_price=0&max_price=0) or [QuestStoreDB](https://queststoredb.com/free_apps/) - VR Games
|
||||
* [NobsGames](https://nobsgames.stavros.io/android/?name=&genre=&rating__gt=&price=free) - Game APKs
|
||||
* [MiniReview](https://minireview.io/browse?sort=last-added-reviews&monetization=free&monetization-android=free&monetization-ios=free) - Mobile Game Recommendations / [Discord](https://discord.gg/TJq6EXfm7f) - Game APKs
|
||||
* [FreeSteamOffers_Bot](https://t.me/FreeSteamOffers_Bot/) - Telegram
|
||||
|
@ -151,19 +153,18 @@
|
|||
* ⭐ **[Tandoor Recipes](https://docs.tandoor.dev/)**, [Mealie](https://mealie.io/) / [Discord](https://discord.com/invite/QuStdQGSGK), [Cooked](https://cooked.wiki/) or [ManageMeals](https://managemeals.com/) - Recipe Managers
|
||||
* ⭐ **[Noods.io](https://noods.io/)**, [Gobsmacked](https://gobsmacked.io/), [Just the Recipe](https://www.justtherecipe.com/), [WheresTheDish](https://www.wheresthedish.com/), [Forkestrate](https://app.forkestrate.com/), [Copy Me That](https://www.copymethat.com/), [drizzlelemons](https://www.drizzlelemons.com/) or [PlainOldRecipe](https://www.plainoldrecipe.com/) - Extract Recipes from Sites / [Firefox](https://addons.mozilla.org/en-US/firefox/addon/recipe-filter/) / [Chrome](https://chromewebstore.google.com/detail/ahlcdjbkdaegmljnnncfnhiioiadakae)
|
||||
* ⭐ **[SuperCook](https://www.supercook.com/)** - Recipe Search
|
||||
* [MyFridgeHome](https://myfridgefood.com/) or [WhiskIt](https://whiskit.ai/) - Find Recipes Based on Ingredients
|
||||
* [MyFridgeFood](https://myfridgefood.com/) or [WhiskIt](https://whiskit.ai/) - Find Recipes Based on Ingredients
|
||||
* [FoodSubs](https://foodsubs.com/) - Ingredient Substitutions Database
|
||||
* [Food Mood](https://artsandculture.google.com/experiment/food-mood/HwHnGalZ3up0EA?hl=en) - Blend Two Cuisines for Recipes
|
||||
* [Fit Men Cook](https://fitmencook.com/) or [PunchFork](https://www.punchfork.com/) - Recipes
|
||||
* [Search-22](https://search-22.com/recipe-search-tools) - Multi-Site Recipe Search
|
||||
* [Wikibook Recipes](https://en.wikibooks.org/wiki/Category:Cookbook) - Recipe Wiki
|
||||
* [Epicurious](https://www.epicurious.com/) - Recipe Search / Index
|
||||
* [based.cooking](https://based.cooking/) or [PublicDomainRecipes](https://publicdomainrecipes.com/) / [GitHub](https://github.com/ronaldl29/public-domain-recipes) - Recipe Search
|
||||
* [PublicDomainRecipes](https://publicdomainrecipes.com/) - Recipe Search / [GitHub](https://github.com/ronaldl29/public-domain-recipes)
|
||||
* [Recipe Search](https://recipe-search.typesense.org/) - Recipe Search
|
||||
* [Hari Recipes](https://hari.recipes/) - Recipe Search
|
||||
* [RecipeRadar](https://www.reciperadar.com/) - Recipe Search
|
||||
* [KitchenAid](https://www.kitchenaid.com/recipes.html) - Recipe Search
|
||||
* [Recipe Site List](https://pastebin.com/f1wAjWEB) - List of Recipe Sites
|
||||
* [Recipeeper](https://www.recipeeper.com/) - Dietary-Based Recipes
|
||||
* [TasteAtlas](https://www.tasteatlas.com/) - Recipe Map
|
||||
* [AmazingRibs](https://amazingribs.com/) - Rib Recipes
|
||||
|
@ -182,9 +183,9 @@
|
|||
* [Notbadcoffee](https://notbadcoffee.com/flavor-wheel-en/) - Interactive Coffee Flavor Wheel
|
||||
* [Nahbucks!](https://nahbucks.com/) - Find Local Non-Starbucks Coffee Shops (US)
|
||||
* [Aeromatic](https://aeromatic.app/) - AeroPress Recipe App
|
||||
* [/tea/](https://rentry.co/teageneral) - Tea Brewing Masterlist / Guides
|
||||
* [/tea/](https://rentry.co/teageneral) - Tea Brewing Masterlist / Guide
|
||||
* [Drinkable](https://github.com/MOIMOB/drinkable) - Create Cocktails from Home Ingredients
|
||||
* [Drinknation](https://www.drinknation.com/bar) or [Make Me a Cocktail](https://makemeacocktail.com/mybar/) - Cocktail Builders
|
||||
* [Make Me a Cocktail](https://makemeacocktail.com/mybar/) - Cocktail Builders
|
||||
* [Modern Meadmaking](https://meadmaking.wiki/) - Homebrewing Wiki
|
||||
|
||||
***
|
||||
|
@ -249,6 +250,7 @@
|
|||
* [GasPrices](https://gasprices.aaa.com/) - Gas Price Tracker
|
||||
* [Fuel.io](https://fuel.io/) - Vehicle Fuel Tracking
|
||||
* [EV-Map](https://ev-map.app/) - Electronic Vehicle Charging Map
|
||||
* [Alibi](https://github.com/Myzel394/Alibi) or [DroidDashcam](https://play.google.com/store/apps/details?id=com.helge.droiddashcam) - Mobile Dashcams
|
||||
|
||||
***
|
||||
|
||||
|
@ -261,6 +263,7 @@
|
|||
* [Bike Sharing](https://bikesharingworldmap.com/) - Bike Rental Map
|
||||
* [SkyDB](https://www.skydb.net/) - Skyscraper Locations / Info
|
||||
* [Seat61](https://www.seat61.com/) - Train Travel Guide
|
||||
* [Trustroots](https://www.trustroots.org/) - Traveler Hospitality Community
|
||||
* [SitInShade](https://sitinshade.com/) - Avoid the Sun While Traveling
|
||||
* [eSIMDB](https://esimdb.com/) - Compare eSIM Prices
|
||||
|
||||
|
@ -317,11 +320,13 @@
|
|||
|
||||
## ▷ Navigation / Transport
|
||||
|
||||
* ⭐ **[Google Maps](https://www.google.com/maps/)**, [Bing Maps](https://www.bing.com/maps), [Mapy](https://en.mapy.cz/), [Waze](https://www.waze.com/) / [Editor](https://www.waze.com/en-US/editor) or [Apple Maps](https://beta.maps.apple.com/) - Online / Offline Maps
|
||||
* ⭐ **[Google Maps](https://www.google.com/maps/)**, [Apple Maps](https://beta.maps.apple.com/), [Bing Maps](https://www.bing.com/maps) or [Mapy](https://en.mapy.cz/) - Online / Offline Maps
|
||||
* ⭐ **[Comaps](https://www.comaps.app/)** / [Source Code](https://codeberg.org/comaps/comaps) or [Organic Maps](https://organicmaps.app/) / [Subreddit](https://www.reddit.com/r/organicmaps/) / [Telegram](https://t.me/OrganicMaps) / [GitHub](https://github.com/organicmaps/organicmaps) - Offline Maps
|
||||
* ⭐ **[OpenStreetMap](https://www.openstreetmap.org/)** - Open Community Maps / [Advanced Search](https://nominatim.openstreetmap.org/ui/search.html) / [Advanced Editor](https://level0.osmz.ru/) / [AI Editor](https://rapideditor.org/) / [Overpass API GUI](https://overpass-turbo.eu/) / [Resources](https://github.com/osmlab/awesome-openstreetmap)
|
||||
* ⭐ **[OpenStreetMap](https://www.openstreetmap.org/)** - Open Community Maps
|
||||
* ⭐ **OpenStreetMap Tools** - [Resources](https://github.com/osmlab/awesome-openstreetmap) / [Advanced Search](https://nominatim.openstreetmap.org/ui/search.html) / [Advanced Editor](https://level0.osmz.ru/) / [AI Editor](https://rapideditor.org/) / [Overpass API GUI](https://overpass-turbo.eu/)
|
||||
* [OsmAnd](https://osmand.net/) or [Magic Earth](https://www.magicearth.com/) - Mobile Only Maps
|
||||
* [GMaps WV](https://f-droid.org/packages/us.spotco.maps/) / [GitHub](https://github.com/woheller69/maps) - Restricted Google Maps WebView Wrapper
|
||||
* [Waze](https://www.waze.com/) - Driving / Navigation Focused Map / [Editor](https://www.waze.com/en-US/editor)
|
||||
* [GMaps WV](https://f-droid.org/packages/us.spotco.maps/) - Restricted Google Maps WebView Wrapper / [GitHub](https://github.com/woheller69/maps)
|
||||
* [CubeTrek](https://cubetrek.com/) - GPS Track Manager
|
||||
* [Wikiroutes](https://wikiroutes.info/) or [CityMapper](https://citymapper.com/) - Public Transport Maps
|
||||
* [AnyTrip](https://anytrip.com.au/) - Australia & New Zealand Public Transport Maps
|
||||
|
@ -349,10 +354,11 @@
|
|||
|
||||
## ▷ Climate / Weather
|
||||
|
||||
* ⭐ **[Windy](https://www.windy.com/)**, **[Ventusky](https://www.ventusky.com/)**, [Earth Observatory](https://earthobservatory.nasa.gov/global-maps), [Zoom Earth](https://zoom.earth/), [Weatherwise](https://web.weatherwise.app/), [Earth Now](https://climate.nasa.gov/earth-now/), [Earth](https://earth.nullschool.net/) or [satellite-map.gosur](https://satellite-map.gosur.com/) - General Weather / Climate Maps
|
||||
* ⭐ **[Windy](https://www.windy.com/)**, **[Ventusky](https://www.ventusky.com/)**, [WXCharts](https://wxcharts.com/), [Earth Observatory](https://earthobservatory.nasa.gov/global-maps), [Zoom Earth](https://zoom.earth/), [Weatherwise](https://web.weatherwise.app/), [Earth Now](https://climate.nasa.gov/earth-now/), [Earth](https://earth.nullschool.net/) or [satellite-map.gosur](https://satellite-map.gosur.com/) - General Weather / Climate Maps
|
||||
* [CyclonicWx](https://cyclonicwx.com/) - Tropical Weather Tracking Tools / Plotting
|
||||
* [Netweather](https://www.netweather.tv/charts-and-data/global-jetstream) - Global Jetstream Forcast Map
|
||||
* [Cyclocane](https://www.cyclocane.com/) - Cyclone and Hurricane Tracker Map
|
||||
* [Supercell Wx](https://supercellwx.net/) - Visualize / Archive NEXRAD Data + Weather Alerts / [GitHub](https://github.com/dpaulat/supercell-wx)
|
||||
* [tornado.live](https://tornado.live/) - Real-Time US Severe Weather Alerts Map
|
||||
* [Tropical Tidbits](https://www.tropicaltidbits.com/) - Hurricane Forecast Models
|
||||
* [FloodMap](https://www.floodmap.net/) - Sea Level / Flood Map
|
||||
|
@ -388,7 +394,7 @@
|
|||
* [World Population Density](https://luminocity3d.org/WorldPopDen/) - Population Density Map
|
||||
* [FIRMS](https://firms.modaps.eosdis.nasa.gov/map/) - Fire / Thermal Anomalies Map
|
||||
* [Native Land](https://native-land.ca/) - Indigenous Territory Map
|
||||
* [kepler.gl](https://kepler.gl/) / [GitHub](https://github.com/keplergl/kepler.gl) - Geospatial Analysis Tool
|
||||
* [kepler.gl](https://kepler.gl/) - Geospatial Analysis Tool / [GitHub](https://github.com/keplergl/kepler.gl)
|
||||
|
||||
***
|
||||
|
||||
|
@ -426,6 +432,7 @@
|
|||
* [Imperium](https://imperium.ahlfeldt.se/) - Digital Atlas of the Roman Empire
|
||||
* [Ancient Earth](https://dinosaurpictures.org/ancient-earth) - Globe of Ancient Earth
|
||||
* [1940s NYC](https://1940s.nyc/) - Explore 1940's New York
|
||||
* [Project’44](https://www.project44.ca/) - World War II Historical Map / [Discord](https://discord.gg/bzWEuc6JJv)
|
||||
* [HK Battle 1941](https://digital.lib.hkbu.edu.hk/1941hkbattle/en/index.php) - The Battle of Hong Kong 1941 Interactive Map
|
||||
|
||||
***
|
||||
|
@ -465,7 +472,7 @@
|
|||
* 🌐 **[AllYouCanRead](https://www.allyoucanread.com/)** - Worldwide News Sites Index
|
||||
* ↪️ **[Newspaper Sites](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/reading#wiki_.25B7_newspapers)**
|
||||
* ↪️ **[Bypass Article Paywalls](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/internet-tools#wiki_.25B7_paywall_bypass)**
|
||||
* ⭐ **[TorrentFreak](https://torrentfreak.com/)** / [Telegram](https://t.me/torrentfreaks) - Piracy News
|
||||
* ⭐ **[TorrentFreak](https://torrentfreak.com/)** - Piracy News / [Telegram](https://t.me/torrentfreaks)
|
||||
* ⭐ **[Current Events Wiki](https://en.wikipedia.org/wiki/Portal:Current_events)** - Breaking News
|
||||
* ⭐ **[Good News Network](https://www.goodnewsnetwork.org/)** or [Happy Daze](https://happydaze.io/) - Uplifting News
|
||||
* [News as Facts](https://newsasfacts.com/) - Wiki-Based News
|
||||
|
@ -488,8 +495,8 @@
|
|||
* [Web3 Is Going Great](https://www.web3isgoinggreat.com/) - Web3 Disaster News
|
||||
* [Citizen](https://citizen.com/explore) - Real Time Local News (US Only)
|
||||
* [POTUS Tracker](https://potustracker.us/), [GovData](https://www.govactionlist.com/) or [WikiPolitica](https://wikipolitica.org/) - Government Executive Orders, Location & more
|
||||
* [PlaneCrashInfo](https://www.planecrashinfo.com/) or [AVHerald](https://avherald.com/) - Aviation Incidents / News
|
||||
* [Read Something Interesting](https://readsomethinginteresting.com/), [Read Something Wonderful](https://readsomethingwonderful.com/), [Read Something Great](https://www.readsomethinggreat.com/) or [BoredReading](https://boredreading.com/) - Random Articles / Blog Posts
|
||||
* [PlaneCrashInfo](https://www.planecrashinfo.com/), [FlightSaftey](https://asn.flightsafety.org/) or [AVHerald](https://avherald.com/) - Aviation Incidents / News
|
||||
* [Read Something Wonderful](https://readsomethingwonderful.com/), [Read Something Great](https://www.readsomethinggreat.com/) or [BoredReading](https://boredreading.com/) - Random Articles / Blog Posts
|
||||
* [Media Bias Fact Check](https://drmikecrowe.github.io/mbfcext/) or [HonestyMeter](https://www.honestymeter.com/) - Media Bias Checkers
|
||||
* [PressMob](https://pressmob.ai/) - Journalist Search
|
||||
* [Scribe](https://sr.ht/~edwardloveall/Scribe/) or [LibMedium](https://libmedium.batsense.net/) - Medium Frontends
|
||||
|
@ -501,7 +508,8 @@
|
|||
* ⭐ **[Spike News](https://readspike.com/)**, [2](https://spike.news/)
|
||||
* [QotNews](https://news.t0.vc/) - Hacker News / Reddit / Lobsters / Tildes
|
||||
* [Mozberg](https://mozberg.com/) - News Search
|
||||
* [NewsMinimalist](https://www.newsminimalist.com/) - AI News Aggregator
|
||||
* [Kite](https://kite.kagi.com/) - Aggregator / Summaries / [GitHub](https://github.com/kagisearch/kite-public)
|
||||
* [NewsMinimalist](https://www.newsminimalist.com/) - Aggregator / Summaries
|
||||
* [AlDaily](https://www.aldaily.com/) - Art / Philosophy / Literature News
|
||||
* [Ground.news](https://ground.news/) - Sign-Up Required
|
||||
* [Upstract](https://upstract.com/)
|
||||
|
@ -519,7 +527,7 @@
|
|||
|
||||
* ↪️ **[Dev / Cybersecurity News](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/dev-tools#wiki_.25BA_dev_news)**
|
||||
* ⭐ **[GamersNexus](https://gamersnexus.net/)** - PC Gaming News
|
||||
* ⭐ **[Hacker News](https://news.ycombinator.com/)** - Tech / Hacking News / [Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/misc#wiki_.25B7_hacker_news_tools)
|
||||
* ⭐ **[Hacker News](https://news.ycombinator.com/)** - Tech News / [Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/misc#wiki_.25B7_hacker_news_tools)
|
||||
* [AlternativeTo Aggregator](https://alternativeto.net/news/all/) - Tech News Aggregator
|
||||
* [TechURLs](https://techurls.com/) - Tech News
|
||||
* [Techmeme](https://www.techmeme.com/) - Tech News
|
||||
|
@ -528,7 +536,7 @@
|
|||
* [TuxURLs](https://tuxurls.com/) or [LWN](https://lwn.net/Archives/) - Linux News
|
||||
* [Liliputing](https://liliputing.com/) - Hardware / Linux Mobile News
|
||||
* [Geeks3D](https://www.geeks3d.com/), [Toms Hardware](https://www.tomshardware.com/) or [Overclock3D](https://overclock3d.net/) - Hardware News / Reviews
|
||||
* [EmergentMind](https://www.emergentmind.com/), [TestingCatalog](https://www.testingcatalog.com/), [Singularity Hub](https://singularityhub.com/) or [Dupple](https://www.dupple.com/techpresso-archives) - AI News
|
||||
* [EmergentMind](https://www.emergentmind.com/), [TestingCatalog](https://www.testingcatalog.com/), [Singularity Hub](https://singularityhub.com/) or [Dupple](https://www.dupple.com/techpresso) - AI News
|
||||
* [GamesRecap](https://gamesrecap.io/) - Game Annoucements / Trailers
|
||||
* [Internet Society](https://pulse.internetsociety.org/blog) - Internet Infrastructure News
|
||||
* [RestorePrivacy](https://cyberinsider.com/news/) or [Privacy International](https://www.privacyinternational.org/) - Privacy / Security News
|
||||
|
@ -543,7 +551,7 @@
|
|||
* [Related Submissions](https://hnrelevant.imadij.com/) - Similar Posts Sidebar Extension / [GitHub](https://github.com/imdj/HNRelevant)
|
||||
* [The Hacker Herald](https://hackerherald.com/) or [hckrnws](https://www.hckrnws.com/) - HN Frontends
|
||||
* [Alexandria Library](https://alexandria-library.julienc.me/search/) - HN Search Frontend
|
||||
* [Lindy Hacker News](https://hn.lindylearn.io/) - Best of / Top Posts Aggregator
|
||||
* [HNRankings](https://hnrankings.info/) or [Lindy Hacker News](https://hn.lindylearn.io/) - Best of / Top Posts Aggregator
|
||||
* [Hacker News RSS](https://hnrss.github.io/) - HN RSS Feeds
|
||||
|
||||
***
|
||||
|
@ -600,7 +608,7 @@
|
|||
* [Weight Loss Side Effects](https://weight-loss-side-effects.netlify.app/) - Weight Loss Side Effect Mitigation
|
||||
* [r/GainIt](https://www.reddit.com/r/gainit/) - Healthy Weight Gain Subreddit
|
||||
* [r/Flexibility](https://www.reddit.com/r/flexibility/) - Flexibility Subreddit
|
||||
* [epocrates](https://www.epocrates.com/), [medlineplus](https://medlineplus.gov/), [merckmanuals](https://www.merckmanuals.com/), [mayoclinic](https://www.mayoclinic.org/), [rxlist](https://www.rxlist.com/), [nejm](https://www.nejm.org/), [ncbi](https://www.ncbi.nlm.nih.gov/pmc/), [hhs](https://www.hhs.gov/), [nih](https://www.nih.gov/), [cdc](https://www.cdc.gov/) - Government Health Resources
|
||||
* [HealthDirect](https://www.healthdirect.gov.au/), [epocrates](https://www.epocrates.com/), [medlineplus](https://medlineplus.gov/), [merckmanuals](https://www.merckmanuals.com/), [mayoclinic](https://www.mayoclinic.org/), [rxlist](https://www.rxlist.com/), [nejm](https://www.nejm.org/), [ncbi](https://www.ncbi.nlm.nih.gov/pmc/), [hhs](https://www.hhs.gov/), [nih](https://www.nih.gov/), [cdc](https://www.cdc.gov/) - Government Health Resources
|
||||
* [oshaction](https://www.oshaction.org/resources/) - Occupational Health and Safety Resources
|
||||
* [CancerFactFinder](https://cancerfactfinder.org/) - Cancer Fact Search
|
||||
|
||||
|
@ -721,7 +729,6 @@
|
|||
* [EconJobRumors](https://www.econjobrumors.com/) - Economic Job Market Forum
|
||||
* [SocJobRumors](https://www.socjobrumors.com/) - Sociology Job Market Forum
|
||||
* [Side Hustle Stack](https://sidehustlestack.co/) - Find Platform-Based Side Work
|
||||
* [The Dots](https://the-dots.com/events/search) - Online Workshops / Courses / Meetups
|
||||
* [MedusaJS](https://medusajs.com/) - Open Source Commerce Store
|
||||
* [Contact Card](https://contact-card.vercel.app/) - Contact Card Generator
|
||||
* [MS Word Cover Page Templates](https://www.mswordcoverpages.com/) - Cover Page Templates
|
||||
|
@ -816,9 +823,9 @@
|
|||
* 🌐 **[TheRemoteFreelancer](https://github.com/engineerapart/TheRemoteFreelancer)** - Remote Tech Jobs Index
|
||||
* ↪️ **[Learn Programming](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/edu/#wiki_.25BA_developer_learning)**
|
||||
* ↪️ **[Learn Computer Science](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/edu/#wiki_.25B7_computer_science)**
|
||||
* ⭐ **[Tech Interview Handbook](https://www.techinterviewhandbook.org/software-engineering-interview-guide/)** or [Frontend Interview Handbook](https://www.frontendinterviewhandbook.com/) - Interview Handbooks / [GitHub](https://github.com/yangshun/)
|
||||
* [MoAiJobs](https://www.moaijobs.com/) - Find Jobs in AI Companies
|
||||
* [FOSS Jobs](https://www.fossjobs.net/) - FOSS Project Jobs
|
||||
* [key : values](https://www.keyvalues.com/) - Find Companies that Match Your Values
|
||||
* [Authentic Jobs](https://authenticjobs.com/) - Find Developer / Designer Jobs
|
||||
* [Dribbble](https://dribbble.com/) - Designer Jobs
|
||||
* [r/DesignJobs](https://www.reddit.com/r/DesignJobs/) - Designer Jobs Subreddit
|
||||
|
@ -828,11 +835,9 @@
|
|||
* [js chimp](https://jschimp.com/) - Reverse Job Board / JavaScript
|
||||
* [larajobs](https://larajobs.com/) - Find Laravel Jobs
|
||||
* [Python Job Board](https://www.python.org/jobs/) - Find Python Jobs
|
||||
* [RailsDevs](https://railsdevs.com/) - Reverse Job Board / Rails
|
||||
* [Levels.fyi](https://www.levels.fyi/) - Tech Career Salaries
|
||||
* [LeetFree](https://doocs.github.io/leetcode/#/README_EN) - Leaked Google / Facebook / Amazon Interview Questions / [GitHub](https://github.com/doocs/leetcode/blob/main/README_EN.md)
|
||||
* [Interviews.school](https://interviews.school/) or [InterviewThis](https://github.com/Twipped/InterviewThis) - Interview Preparation Guides
|
||||
* [Tech Interview Handbook](https://www.techinterviewhandbook.org/) or [Frontend Interview Handbook](https://www.frontendinterviewhandbook.com/) - Interview Handbooks / [GitHub](https://github.com/yangshun/)
|
||||
* [Interview Warmup](https://grow.google/certificates/interview-warmup/) - Interview Practice
|
||||
* [Cyberseek](https://www.cyberseek.org/index.html) - Cybersecurity US Job Market Info
|
||||
* [NIST](https://www.nist.gov/nice/apprenticeship-finder) - Find NICE Cybersecurity Apprenticeship Programs
|
||||
|
@ -868,7 +873,7 @@
|
|||
* [Zulip](https://zulip.com/) - Team Chat / [GitHub](https://github.com/zulip/zulip/)
|
||||
* [Freedcamp](https://freedcamp.com/) - Project / Task Organization
|
||||
* [Asana](https://asana.com/) - Project / Task Organization
|
||||
* [Focalboard](https://www.focalboard.com/) - Project Manager / [GitHub](https://github.com/mattermost-community/focalboard)
|
||||
* [Linear](https://linear.app/) - Project / Task Organization
|
||||
* [Factsplat](https://factsplat.com/) - Project Manager
|
||||
* [Mural](https://www.mural.co/) - Project Manager
|
||||
* [Taskcafe](https://github.com/JordanKnott/taskcafe) - Task Manager
|
||||
|
@ -899,6 +904,7 @@
|
|||
* [Financials Extension](https://github.com/cmallwitz/Financials-Extension) - Stock Market Data for LibreOffice Calc
|
||||
* [YieldFinder](https://yieldfinder.app/) - Rates for Savings Accounts, Market Funds, and Treasuries
|
||||
* [Quiver Quantitative](https://www.quiverquant.com/) - Stock Trading Research
|
||||
* [Technical Library](https://t.me/+Tz4VCcFAMVJGzd8z) - Educational Trading Ebooks
|
||||
* [TradingView Webhook Bot](https://github.com/fabston/TradingView-Webhook-Bot) / [Index](https://github.com/pAulseperformance/awesome-pinescript) - Send TradingView Alerts to Various Apps
|
||||
* [tickrs](https://github.com/tarkah/tickrs) - Ticker Data in Terminal
|
||||
* [BestETF](https://www.bestetf.net/) or [ETFDB](https://etfdb.com/) - ETF Databases
|
||||
|
@ -935,22 +941,25 @@
|
|||
|
||||
# ► Shopping
|
||||
|
||||
* 🌐 **[Monerica](https://monerica.com/status/verified)** - Monero-Friendly Online Shop Index
|
||||
* ⭐ **[ThisIsWhyImBroke](https://www.thisiswhyimbroke.com/)** - Find Interesting Things to Buy
|
||||
* ⭐ **[Consumer Action Taskforce](https://consumerrights.wiki/)** - Documents Practices That Impact Consumer Rights
|
||||
* ⭐ **[Dark Patterns Tip Line](https://darkpatternstipline.org/)** - Deceptive Services to Avoid
|
||||
* [Dark Patterns Detective](https://games.productartistry.com/games/dark-patterns) - Learn to Avoid Deceptive Services
|
||||
* [RedditFavorites](https://redditfavorites.com/) - Reddit Recommended Products
|
||||
* [Consumer Action Taskforce](https://consumerrights.wiki/) - Documents Practices That Impact Consumer Rights
|
||||
* [Kit.co](https://kit.co/), [Looria](https://www.looria.com/) or [ProductHunt](https://producthunt.com/) - Product / Service Reviews
|
||||
* [Pepper](https://www.pepperdeals.com/) or [SlickDeals](https://slickdeals.net/) - Shopping Deal Communities
|
||||
* [Hagglezon](https://www.hagglezon.com/) - Price Comparisons for Amazon Stores Across Europe
|
||||
* [Remove Amazon Sponsored](https://greasyfork.org/en/scripts/536756) - Remove Amazon Sponsored Listings
|
||||
* [Slant](https://www.slant.co/) - "What are the best..." Product Rankings
|
||||
* [PicClick](https://picclick.com/) - Ebay Quick Search
|
||||
* [Typo Hound](https://typohound.com/) or [FatFingers](https://fatfingers.com/) - Ebay Typo Search
|
||||
* [NoBids](https://nobids.net/) or [WatchCount](https://www.watchcount.com/) - eBay Advanced Search
|
||||
* [Typo Hound](https://typohound.com/) or [FatFingers](https://fatfingers.com/) - eBay Typo Search
|
||||
* [PicClick](https://picclick.com/) - eBay Quick Search
|
||||
* [a view from my seat](https://aviewfrommyseat.co.uk/) - See Event Views Before Buying Tickets
|
||||
* [Desenmascara](https://desenmascara.me/) - Spot Counterfeit Sites
|
||||
* [r/MaleFashionAdvice Spreadsheet](https://docs.google.com/spreadsheets/d/1mhOIpjUUibBf3QueJs8iRJy5gBKCILq82ekJkiC5uqQ/) - Male Clothing Brand / Price Spreadsheet
|
||||
* [r/FashionReps](https://www.reddit.com/r/FashionReps/) - Replica Clothing Community
|
||||
* [OutdoorGearLab](https://www.outdoorgearlab.com/) - Outdoor Gear Comparisons / Reviews
|
||||
* [Run Repeat](https://runrepeat.com/) - Shoe Shopping Guide / Reviews
|
||||
* [GoEuropean](https://www.goeuropean.org/) - European Products / Services
|
||||
* [WornOnTV](https://wornontv.net/) or [ShopYourTV](https://shopyourtv.com/) - Find Outfits from TV Shows
|
||||
|
@ -976,12 +985,12 @@
|
|||
* [r/BuildAPCForMe](https://reddit.com/r/BuildAPCForMe) - PC Building Community
|
||||
* [NewMaxx's SSD Site](https://borecraft.com/) / [Doc](https://docs.google.com/spreadsheets/d/1B27_j9NDPU3cNlj2HKcrfpJKHkOf-Oi1DbuuQva2gT4/), [SSD Tester](https://ssd-tester.com/) or [JohnnyLucky](https://www.johnnylucky.org/data-storage/ssd-database.html) - SSD Buying Comparisons
|
||||
* [Disk Prices](https://diskprices.com/) - Disk Price Tracker
|
||||
* [Jarrod's Tech](https://jarrods.tech/resources/) or [SuggestALaptop](https://discord.gg/pes68JM) (discord) - Laptop Suggestions
|
||||
* [Jarrod's Tech](https://jarrods.tech/resources/) or [SuggestALaptop](https://discord.gg/pes68JM) / [Guide](https://docs.google.com/document/d/1_Oh9M4zrBB1hx3B0Yw32-evH4bqTmwNM5DJ12lWvA0w/) (discord) - Laptop Suggestions
|
||||
* [Laptop Wiki](https://laptopwiki.eu/) - Laptop Info Database
|
||||
* [EveryMac](https://everymac.com/) - Mac Info Database
|
||||
* [Mouse Ratings](https://www.rtings.com/mouse/reviews/best), [EloShapes](https://www.eloshapes.com/), [Sensor.fyi](https://sensor.fyi/info/), [RocketJumpNinja](https://www.rocketjumpninja.com/) or [r/MouseReview](https://www.reddit.com/r/MouseReview/) / [Discord](https://discord.gg/mousereview) - Mouse Buying Guides
|
||||
* [PSU Tier List](https://docs.google.com/spreadsheets/d/1akCHL7Vhzk_EhrpIGkz8zTEvYfLDcaSpZRB6Xt6JWkc/) - PSU Buying Guide
|
||||
* [DisplaySpecifications](https://www.displayspecifications.com/), [PC Monitors](https://pcmonitors.info/), [TFTCentral](https://tftcentral.co.uk/), [Monitor Hunter](https://docs.google.com/document/d/1illeNLsUfZ4KuJ9cIWKwTDUEXUVpplhUYHAiom-FaDo/), [Monitor Spreadsheet](https://pastebin.com/tkmakRNW) or [DisplayNinja](https://www.displayninja.com/) - Monitor Buying Guides
|
||||
* [DisplaySpecifications](https://www.displayspecifications.com/), [PC Monitors](https://pcmonitors.info/), [TFTCentral](https://tftcentral.co.uk/), [Monitor Hunter](https://docs.google.com/document/d/1illeNLsUfZ4KuJ9cIWKwTDUEXUVpplhUYHAiom-FaDo/), [Monitor Spreadsheet](https://docs.google.com/spreadsheets/d/1wBV0U3a1XuP1yFLvs_Ald3FE1y45bVxtS2zBXixsGLs/edit) or [DisplayNinja](https://www.displayninja.com/) - Monitor Buying Guides
|
||||
* [sven dpi](https://www.sven.de/dpi/) - Screen / Monitor Size Comparisons
|
||||
* [AudioScienceReview](https://www.audiosciencereview.com/forum/index.php) - Audio Equipment Discussion
|
||||
* [Scarbir](https://www.scarbir.com/), [r/Headphones Guide](https://sites.google.com/view/quipa/assistants), [Squiglink](https://squig.link/), [DIY-Audio-Heaven](https://diyaudioheaven.wordpress.com/), [Crinacle Graphs](https://graph.hangout.audio/) or [Crinacle](https://list.hangout.audio/iem) - Headset / Headphone / Earphone Comparisons
|
||||
|
@ -989,6 +998,7 @@
|
|||
* [Crinacle's Ultimate IEM List](https://list.hangout.audio/iem/) or [IEMGazette](https://4ciemg.github.io/IEMGazette/) - In-Ear Monitor Comparisons / Reviews
|
||||
* [SpeakerRanking](https://www.speakerranking.com/) - Speaker Comparisons / Reviews
|
||||
* [Erin's Audio Corner](https://www.erinsaudiocorner.com/) or [Equipboard](https://equipboard.com/) - Audio Equipment Comparisons
|
||||
* [Audio Test Kitchen](https://www.audiotestkitchen.com/) - Compare Microphone Sounds
|
||||
* [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
|
||||
* [Gamepadla](https://gamepadla.com/) - Gamepad / Controller Latency Tests
|
||||
|
@ -1015,8 +1025,10 @@
|
|||
* [CheapShark](https://www.cheapshark.com/) - Multi-Store / [Discord](https://discord.com/invite/cheapshark)
|
||||
* [PSPrices](https://psprices.com/) - Multi-Store / Mutli-Platform / [Discord](https://discord.com/invite/hN57zh8Ey2)
|
||||
* [AppAgg](https://appagg.com/) - Multi-Store / Multi-Platform / [Discord](https://discord.gg/XUhs6fcFqQ) / [GitHub](https://github.com/AppsAgg/AppAgg)
|
||||
* [CheapCharts](https://games.cheapcharts.com/) - Switch, Xbox and Playstation Price Tracker
|
||||
* [r/GameDeals](https://www.reddit.com/r/gamedeals) - Game Deal Subreddit
|
||||
* [PriceCharting](https://www.pricecharting.com/) - Game, Comic & Trading Card Price Tracker
|
||||
* [VRDB](https://vrdb.app/) or [QuestStoreDB](https://queststoredb.com/) - VR Game / App Price Tracker
|
||||
* [DekuDeals](https://www.dekudeals.com/) / [Discord](https://discord.gg/WEuq5CTcBa), [NTDeals](https://ntdeals.net/) - Switch Price Trackers
|
||||
* [PS Deals](https://psdeals.net/) - Playstation Price Tracker
|
||||
* [XB Deals](https://xbdeals.net/) - Xbox Price Tracker
|
||||
|
@ -1155,7 +1167,7 @@
|
|||
* [Stretchly](https://hovancik.net/stretchly) - Break Reminders
|
||||
* [skāl.es](https://www.skal.es/) - Work Life Balance Tracking
|
||||
* [BreakMessage](https://breakmessage.com/) - Online Break Reminders
|
||||
* [Plucky](https://pluckyfilter.com/), [Block Site](https://webextension.org/listing/block-site.html), [LeechBlock](https://www.proginosko.com/leechblock), [uBlacklist](https://iorate.github.io/ublacklist/docs) or [Forest](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#forest-extensions) - Site Blocking Extensions
|
||||
* [Plucky](https://pluckyfilter.com/), [Block Site](https://webextension.org/listing/block-site.html), [LeechBlock](https://www.proginosko.com/leechblock), [uBlacklist](https://ublacklist.github.io/docs) or [Forest](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#forest-extensions) - Site Blocking Extensions
|
||||
* [UnDistracted](https://www.undistracted.app/) or [Focus-ToDo](https://chromewebstore.google.com/detail/ngceodoilcgpmkijopinlkmohnfifjfb) - Chrome Productivity Managers
|
||||
* [Comicsflow](https://comicsflow.com/) - Comic / Manga Project Manager
|
||||
|
||||
|
@ -1165,7 +1177,7 @@
|
|||
|
||||
* ⭐ **[Cal.com](https://cal.com/)** / [GitHub](https://github.com/calcom/cal.com)
|
||||
* [Event Rally](https://rallly.co/) / [GitHub](https://github.com/lukevella/Rallly), [Cally](https://cally.com/), [LettuceMeet](https://lettucemeet.com), [Mobilizon](https://joinmobilizon.org/) or [Gancio](https://gancio.org/) - Event Date Organizing
|
||||
* [Luma](https://lu.ma/), [Heylo](https://www.heylo.com/) or [Meetup](https://www.meetup.com/) - Search or Post Local Events
|
||||
* [Luma](https://lu.ma/), [Heylo](https://www.heylo.com/), [Eventbrite](https://www.eventbrite.com/) or [Meetup](https://www.meetup.com/) - Search or Post Local Events
|
||||
* [Samay](https://samay.app/) - Meeting Time Polls
|
||||
* [GanttProject](https://www.ganttproject.biz/) - Project Scheduling App
|
||||
* [Pick Time](https://pick-time.io/) - Easily Schedule Times with Friends
|
||||
|
@ -1190,7 +1202,7 @@
|
|||
* ↪️ **[Multireddit Index](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_multireddits)**
|
||||
* ↪️ **[AI Chatbots](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/ai#wiki_.25BA_ai_chatbots)**
|
||||
* ⭐ **[Knockout](https://knockout.chat/)** / [Discord](https://discord.gg/wjWpapC), [comfy box](https://comfybox.floofey.dog/), [SheepishPatio](https://sheepishpatio.net/) or [Macintosh Cafe](https://forum.agoraroad.com/) - General Forums
|
||||
* ⭐ **[SufficientVelocity](https://forums.sufficientvelocity.com/)**, [Myth Weavers](https://www.myth-weavers.com/), [RolePlayer](https://www.roleplayer.me/) or [SpaceBattles](https://forums.spacebattles.com/) - Fanfiction / Roleplaying Communities
|
||||
* ⭐ **[SufficientVelocity](https://forums.sufficientvelocity.com/)**, [Myth Weavers](https://www.myth-weavers.com/), [AltHistory](https://althistory.com/), [RolePlayer](https://www.roleplayer.me/) or [SpaceBattles](https://forums.spacebattles.com/) - Fanfiction / Roleplaying Communities
|
||||
* [Frantic Fanfic](https://franticfanfic.com/) - Fanfiction Chat Game
|
||||
* [Pithee](https://pithee.com/) - Rank Shitposting / Login Required
|
||||
* [Posting.Cool](https://posting.cool/) - Random Topic Forum
|
||||
|
@ -1219,12 +1231,11 @@
|
|||
|
||||
## ▷ Image / Video
|
||||
|
||||
* ↪️ **[Image Creation](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/img-tools#wiki_.25BA_image_creation)**
|
||||
* ↪️ **[Image Creation](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/image-tools#wiki_.25BA_image_creation)**
|
||||
* ↪️ **[ASCII Art](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/text-tools#wiki_.25B7_ascii_art)**
|
||||
* ↪️ **[Art / Illustations](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/img-tools#wiki_.25B7_art_.2F_illustrations)**
|
||||
* ↪️ **[GIF Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/img-tools#wiki_.25B7_gif_tools)**
|
||||
* ↪️ **[Meme Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/img-tools/#wiki_.25B7_meme_tools)**
|
||||
* ↪️ **[Random Webcams](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_live_webcams)**
|
||||
* ↪️ **[Art / Illustations](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/image-tools#wiki_.25B7_art_.2F_illustrations)**
|
||||
* ↪️ **[GIF Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/image-tools#wiki_.25B7_gif_tools)**
|
||||
* ↪️ **[Meme Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/image-tools/#wiki_.25B7_meme_tools)**
|
||||
* ↪️ **[4chan Archives](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/social-media#wiki_.25B7_4chan_archives)**
|
||||
* ⭐ **[SakugaBooru](https://www.sakugabooru.com/)** - Anime Animation Booru / [Enhancements](https://chromewebstore.google.com/detail/sakuga-extended/khmnmdaghmhkcbooicndamlhkcmpklmc)
|
||||
* [loc.alize](https://loc.alize.us/) - Explore Earth via Images
|
||||
|
@ -1251,13 +1262,14 @@
|
|||
* [THE 88×31 ARCHIVE](https://hellnet.work/8831/), [Babamos 88x31](https://cyber.dabamos.de/88x31/index.html), [88x31 Buttons](https://anlucas.neocities.org/88x31Buttons) or [Web Badges World](https://web.badges.world/) - Oldschool 88x31 Web Badges
|
||||
* [r/Place Atlas](https://place-atlas.stefanocoding.me/) - r/Place Info
|
||||
* [LameBook](https://www.lamebook.com/) - Funny Facebook Statuses
|
||||
* [TinyFox](https://tinyfox.dev/image-list/) - Random Animal Images
|
||||
* [Kittenwar!](https://www.kittenwar.com/) - Rate Kittens
|
||||
* [Cataas](https://cataas.com/cat), [CatPics](https://catpics.lol/) or [Random Cat](https://s4il.is-a.dev/randomcat/) - Random Cat Images
|
||||
* [procatinator](https://procatinator.com/) - Cat GIFs & Music
|
||||
* [Open Puppies](https://openpuppies.com/) - Random Dog GIFs
|
||||
* [Magic Sketchpad](https://magic-sketchpad.glitch.me/)
|
||||
* [Webchemy](https://webchemy.org/) - Drawing / Sketching
|
||||
* [World Draw](https://world-draw.appspot.com/draw)
|
||||
* [World Draw](https://world-draw.appspot.com/draw) - Draw World Together
|
||||
* [Eschersket](https://eschersket.ch/) - Symmetry Drawing Tool
|
||||
* [Crayon Town](https://crayon.town/) - Infinite Online Drawing Canvas
|
||||
* [Triviart](https://triviart.live/) - Infinite Painting Canvas with Trivia
|
||||
|
@ -1276,6 +1288,7 @@
|
|||
* [Random Art](https://www.random-art.org/) - Random Art Generator
|
||||
* [Paper Quilling Art](https://pissang.github.io/paper-quilling-art/) - Paper Quilling Art Generator
|
||||
* [Periodicity](https://williamhoza.com/periodicity/) - Harmonic Motion Patterns
|
||||
* [Synaptic Spiral](https://synapticspiral.nz/) - Fractal Visualizer / Creator
|
||||
* [Inspirograph](https://inspiral-web.nathanfriend.com/) or [SpirographN](http://seedcode.com/SpirographN/sgn.html) - Spirograph Tool
|
||||
* [Silk](http://weavesilk.com/) - Create Geometric Silk Art
|
||||
* [MandalaGaba](https://www.mandalagaba.com/) / [Pro Version](https://pro.mandalagaba.com/), [Mandala App](https://mandala-app.com/) or [DigitalDoily](https://codymoose.github.io/web-applications/DigitalDoily/index.html) - Zen Geometry Tools
|
||||
|
@ -1307,8 +1320,8 @@
|
|||
|
||||
* 🌐 **[David.li](https://david.li/)** - Physics Games
|
||||
* ↪️ **[Browser Games](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/games#wiki_.25BA_browser_games)**
|
||||
* ⭐ **[The Life Engine](https://thelifeengine.net/)** - Artificial Life Simulation / [Discord](https://discord.gg/ZsrAAByEnr) / [Video](https://youtu.be/iSAKEnRfles)
|
||||
* ⭐ **[Sandboxels](https://sandboxels.r74n.com/), [Powder Game 2](https://dan-ball.jp/en/javagame/dust2/), [Powder Toy](https://powdertoy.co.uk/), [sandspiel.club](https://sandspiel.club/)** - Falling Sand Physics Sandbox
|
||||
* ⭐ **[The Life Engine](https://thelifeengine.net/)** - Artificial Life Simulation / [Video](https://youtu.be/iSAKEnRfles) / [Discord](https://discord.gg/ZsrAAByEnr)
|
||||
* ⭐ **[Sandboxels](https://sandboxels.r74n.com/)**, [Powder Game 2](https://dan-ball.jp/en/javagame/dust2/), [Powder Toy](https://powdertoy.co.uk/), [sandspiel.club](https://sandspiel.club/) - Falling Sand Physics Sandbox
|
||||
* ⭐ **[Genetic Cars 2](https://rednuht.org/genetic_cars_2/)** or [geneticars](https://geneticars.vercel.app/) - Random 2D Car Generator
|
||||
* ⭐ **[Human Benchmark](https://humanbenchmark.com/)** - Brain Games & Cognitive Tests
|
||||
* ⭐ **[Got Rhythm?](https://www.concerthotels.com/got-rhythm)** - Rhythm / Tempo Test
|
||||
|
@ -1370,7 +1383,9 @@
|
|||
* [Odyssey](https://experience.odyssey.world/) - Interactive 3D AI Generated Video
|
||||
* [Koalas to the Max](https://www.koalastothemax.com/) - Make Smaller & Smaller Dots
|
||||
* [Popcat](https://popcat.click/) - Worldwide Popcat Clicking Competition
|
||||
* [EveryoneDraw](https://everyonedraw.com/), [pixels.land](https://pixel.land/) or [World of Pixels](https://ourworldofpixels.com/) - Infinite Online Pixel Art
|
||||
* [Spherical Trochoids](https://claytonmain.github.io/spherical-trochoids/) - Experiment with Spherical Trochoids
|
||||
* [DrawAFish](https://drawafish.com/) - Global Fish Drawing Tank
|
||||
* [DrawAurora](https://www.drawaurora.com/) - Draw Auroras
|
||||
* [Neonflames](https://29a.ch/sandbox/2011/neonflames/) - Draw Nebulas
|
||||
* [Leapy Grid](https://codepen.io/Godje/full/mOzpEY/) - Play with Rainbow Grid
|
||||
|
@ -1411,7 +1426,7 @@
|
|||
* ⭐ **[TVTropes](https://tvtropes.org/)** - Tropes & Media Encyclopedia
|
||||
* ⭐ **[Ranker](https://www.ranker.com/)**, [Listography](https://listography.com/), [hero](https://hero.page/), [TheTopsTens](https://www.thetoptens.com/), [CopyPasteList](https://copypastelist.co/) or [ListVerse](https://listverse.com/) - Create / Explore Lists
|
||||
* ⭐ **[Topsters](https://topsters.org/)** or [TierMaker](https://tiermaker.com/) - Create / Explore Tier Lists
|
||||
* ⭐ **[The Lost Media Wiki](https://lostmediawiki.com/)** / [Forum](https://forums.lostmediawiki.com/) / [Discord](https://discord.gg/NFsM8YbBYH)
|
||||
* ⭐ **[The Lost Media Wiki](https://lostmediawiki.com/)** / [Forum](https://forums.lostmediawiki.com/) / [Subreddit](https://www.reddit.com/r/lostmedia/) / [Discord](https://discord.gg/NFsM8YbBYH)
|
||||
* ⭐ **[Goody2](https://www.goody2.ai/chat)** - World's Most Ethical AI
|
||||
* [The Pudding](https://pudding.cool/) - Explains Ideas w/ Visual Essays
|
||||
* [Google Earth](https://www.google.com/earth/about/versions) - Explore Earth
|
||||
|
@ -1486,6 +1501,38 @@
|
|||
|
||||
***
|
||||
|
||||
## ▷ Live Webcams
|
||||
|
||||
* ⭐ **[WebcamTaxi](https://www.webcamtaxi.com/en/)**
|
||||
* ⭐ **[Explore](https://explore.org/)**, [Mangolinkcam](https://www.mangolinkcam.com/), [Africam](https://africam.com/our-locations/) or [AnimalsLife](https://animalslife.net/category/shelters/) - Animal Cams
|
||||
* [WorldCams](https://worldcams.tv/)
|
||||
* [EarthCam](https://www.earthcam.com/)
|
||||
* [WebcamExplore](https://www.webcamexplore.com/)
|
||||
* [BalticLiveCam](https://balticlivecam.com/)
|
||||
* [Camscape](https://www.camscape.com/)
|
||||
* [Worldviewstream](https://worldviewstream.com/)
|
||||
* [CamStreamer](https://camstreamer.com/live)
|
||||
* [SkylineWebcams](https://www.skylinewebcams.com/en.html)
|
||||
* [webcamhopper](https://www.webcamhopper.com/)
|
||||
* [WorldCam](https://worldcam.eu/)
|
||||
* [mangolinkworld](https://www.mangolinkworld.com/)
|
||||
* [WebcamGalore](https://www.webcamgalore.com/)
|
||||
* [Windy Webcams](https://www.windy.com/-Webcams/webcams)
|
||||
* [livecamcroatia](https://www.livecamcroatia.com/en)
|
||||
* [WXYZWebcams](https://wxyzwebcams.com/)
|
||||
* [San Diego Zoo](https://zoo.sandiegozoo.org/live-cams), [Zqoo.org](https://www.zoo.org/webcams) or [NationalZoo](https://nationalzoo.si.edu/webcams) - Zoo Webcams
|
||||
* [Monterey Bay Aquarium](https://www.montereybayaquarium.org/animals/live-cams) or [AquariumOfPacific](https://www.aquariumofpacific.org/exhibits/webcams) - Aquarium Webcams
|
||||
* [BirdCAMs](https://birdcams.live/) - Bird Nests
|
||||
* [meow.camera](https://meow.camera/) - Chinese Cat Cams / [Android](https://play.google.com/store/apps/details?id=com.hello.purr) / [iOS](https://apps.apple.com/app/id6475722361) / [Discord](https://discord.com/invite/QmHWpZF9cP)
|
||||
* [The Fish Doorbell](https://visdeurbel.nl/en/) - Help Fish Migrate
|
||||
* [Insecam](http://www.insecam.org/en/) or [WorldEye](https://worldeye.cam) - Unprotected Webcams
|
||||
* [r/controllablewebcams](https://reddit.com/r/controllablewebcams) / [Discord](https://discord.gg/wdjtevG)
|
||||
* [snoweye](https://www.snoweye.com/) - Ski Resorts
|
||||
* [Airport Webcams](https://airportwebcams.net/) / [X](https://twitter.com/AirportWebcams)
|
||||
* [FogCam](https://www.fogcam.org/) - The World's Oldest Webcam
|
||||
|
||||
***
|
||||
|
||||
## ▷ Random
|
||||
|
||||
* 🌐 **[Funny / Useless](https://rentry.org/aksry2vc)** - Funny / Useless Websites
|
||||
|
@ -1525,6 +1572,7 @@
|
|||
* [The Scientific Place](https://scientific.place/) - Toys / Games
|
||||
* [artistaiden](https://artistaiden.com/) - Toys / Games
|
||||
* [ToyBox](https://toybox.toms.toys/) - Toys / Games
|
||||
* [IARadio](https://iaradio.eu/) - AI Generated Radio Stations
|
||||
* [The Red Button](https://clicktheredbutton.com/) - Random Video / Song Generator
|
||||
* [Visit A Random Website](https://visitarandomwebsite.com/) - Find Random Sites
|
||||
* [LinkRoll](https://satyrs.eu/linkroll) - Find Random Sites
|
||||
|
@ -1576,7 +1624,6 @@
|
|||
* [The Death Generator](https://deathgenerator.com/) - Video Game Text Generator
|
||||
* [IASIP App](https://iasip.app/) - It's Always Sunny Title Generator
|
||||
* [UpJoke](https://upjoke.com/) - Jokes for Any Topic
|
||||
* [DadJokeCLI](https://github.com/Anupya/dadjoke-cli) - Get Dad Jokes in Command Line
|
||||
* [CSS Puns](https://saijogeorge.com/css-puns/) - CSS Puns
|
||||
* [Peter Answers](https://www.peteranswers.com/) - Create Fake Questions & Answers / [Tutorial](https://peteranswers.info/peter-answers-hack)
|
||||
* [The Santa Tracker](https://www.thesantatracker.com/) - Track Santa during Christmas
|
|
@ -9,9 +9,9 @@
|
|||
## ▷ Modded APKs
|
||||
|
||||
* ⭐ **[Mobilism](https://forum.mobilism.org/viewforum.php?f=398)**, [2](https://forum.mobilism.me/) - Free Books / Sign-Up Required / [User Ranks](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#mobilism-ranks)
|
||||
* ⭐ **[4PDA](https://4pda.to/forum/)** - [App](https://github.com/slartus/4pdaClient-plus) / Use [Translator](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/text-tools/#wiki_.25B7_translators) / [Captcha Note](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#captcha-4pda), [2](https://doorsgeek.blogspot.com/2015/08/4pdaru-loginregister-captcha-tutorial.html) / [Telegram](https://t.me/real4pda)
|
||||
* ⭐ **[4PDA](https://4pda.to/forum/)** - Use [Translator](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/text-tools/#wiki_.25B7_translators) / [App](https://github.com/slartus/4pdaClient-plus) / [Captcha Note](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#captcha-4pda) / [Telegram](https://t.me/real4pda)
|
||||
* ⭐ **[RockMods](https://www.rockmods.net/)** / [Telegram](https://t.me/RBMods)
|
||||
* ⭐ **[PlatinMods](https://platinmods.com/)**
|
||||
* ⭐ **[PlatinMods](https://platinmods.com/)** / Sign-Up Required
|
||||
* ⭐ **[PDALife](https://pdalife.com/)** / [App](https://pdalife.com/pdalife-app-android-a40597.html) / [Telegram](https://t.me/pdalife_official) / [Discord](https://discord.gg/erVkAkzGHZ)
|
||||
* ⭐ **[AN1](https://an1.com/)** / [Telegram](https://t.me/android1com)
|
||||
* [LiteAPKs](https://liteapks.com/) / [App](https://liteapks.com/app.html) / [Note](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#liteapk--modyolo-note) / [Telegram](https://t.me/liteapks)
|
||||
|
@ -42,7 +42,7 @@
|
|||
|
||||
* ⭐ **[Youarefinished Mods](https://t.me/+h95JCUnuf-M1MTE1)** - Modded Apps
|
||||
* ⭐ **[Satriyaid](https://t.me/s/satriyaid)** - Modded Editing Apps
|
||||
* [ANiK555_Mods](https://t.me/+1gj58uSCVFw1OTJl), [2](https://t.me/+1gj58uSCVFw1OTJl) - Modded Apps
|
||||
* [ANiK555_Mods](https://t.me/+1gj58uSCVFw1OTJl) - Modded Apps
|
||||
* [alexstranniklite](https://t.me/alexstranniklite) - Modded Apps
|
||||
* [AMRTSOFFICIAL](https://t.me/+UGzSc_aVSbI8yTw2) - Modded Apps
|
||||
* [Sam Mods](https://t.me/+RUVXlRhdsXR2yemD) - Modded Apps
|
||||
|
@ -139,9 +139,10 @@
|
|||
|
||||
***
|
||||
|
||||
* 🌐 **[ReVanced Mega](https://xdaforums.com/t/app-guides-unofficial-revanced-megathread.4523967/)** - ReVanced Resources / Megathread
|
||||
* 🌐 **[ReVanced-Patch-Bundles](https://github.com/Jman-Github/ReVanced-Patch-Bundles)** - ReVanced Patch Index
|
||||
* ⭐ **[ReVanced Manager](https://revanced.app/)** - Android App Patcher / [Guide](https://sodawithoutsparkles.github.io/revanced-troubleshooting-guide/) / [Changelog](https://revanced.app/announcements) / [Discord](https://discord.com/invite/rF2YcEjcrT) / [GitHub](https://github.com/ReVanced/revanced-manager)
|
||||
* ⭐ **[ReVanced Obtainium Guide](https://gist.github.com/VVispy/50172b4ab77940b2d1ec09d5af70c8a7)** - Update ReVanced Apps Automatically / Unofficial
|
||||
* ⭐ **[ReVanced Obtainium Guide](https://wispydocs.pages.dev/revanced-obtainium/)** - Update ReVanced Apps Automatically / Unofficial
|
||||
* [ReVanced Non-Root](https://github.com/FiorenMas/Revanced-And-Revanced-Extended-Non-Root) - Pre-Built RV & RVX APKs / Unofficial / [Telegram](https://t.me/fiorenmas)
|
||||
* [ReVanced Magisk Module](https://github.com/j-hc/revanced-magisk-module) - ReVanced Builder / Unofficial / [Config Gen](https://j-hc.github.io/rvmm-config-gen/) / [Telegram](https://t.me/rvc_magisk)
|
||||
* [ReVanced CLI](https://github.com/ReVanced/revanced-cli) - CLI Patcher / [Guide](https://rentry.org/Revanced_Guide)
|
||||
|
@ -267,36 +268,6 @@
|
|||
|
||||
***
|
||||
|
||||
## ▷ Camera Tools
|
||||
|
||||
* ⭐ **[Google Lens](https://lens.google.com/)** - Multiple Camera Tools
|
||||
* ⭐ **[Gallery](https://github.com/FossifyOrg/Gallery)**, **[Aves](https://github.com/deckerst/aves)**, [PhotosGo](https://play.google.com/store/apps/details?id=com.google.android.apps.photosgo), [Ente](https://ente.io/) / [GitHub](https://github.com/ente-io/ente), [Photok](https://github.com/leonlatsch/Photok), [UhuruPhotos](https://uhuru.photos) / [GitHub](https://github.com/savvasdalkitsis/uhuruphotos-android), [Google Photos](https://rentry.co/FMHYBase64#revanced-google-photos) or [Gallery 2.0](https://github.com/IacobIonut01/Gallery) - Photo / Video Galleries
|
||||
* ⭐ **[Image Toolbox](https://github.com/T8RIN/ImageToolbox)**, [PicsArt](https://rentry.co/FMHYBase64#picsart), [Hypic](https://play.google.com/store/apps/details?id=com.xt.retouchoversea), [Snapseed](https://play.google.com/store/apps/details?id=com.niksoftware.snapseed), [PhotoLayers](https://play.google.com/store/apps/details?id=com.handycloset.android.photolayers), [Photo Editor](https://play.google.com/store/apps/details?id=com.iudesk.android.photo.editor) or [Pixomatic](https://pixomatic.us/) - Image Editors
|
||||
* ⭐ **[Reincubate Camo](https://reincubate.com/camo/)**, [Iriun](https://iriun.com/) or [DroidCam](https://github.com/dev47apps/droidcam-linux-client) - Use Android as Webcam
|
||||
* [Sponge](https://play.google.com/store/apps/details?id=com.prismtree.sponge) - Image Gallery Cleaner
|
||||
* [googlecameraport](https://www.celsoazevedo.com/files/android/google-camera) - Google Cam Downloads / [Telegram](https://t.me/googlecameraport) / [XML Configs](https://t.me/xmlshamimmod)
|
||||
* [Libre Camera](https://github.com/iakdis/librecamera), [GrapheneOS Camera](https://github.com/GrapheneOS/Camera), [Blackmagic Camera](https://play.google.com/store/apps/details?id=com.blackmagicdesign.android.blackmagiccam), [ProofMode](https://gitlab.com/guardianproject/proofmode/proofmode-android) or [Open Camera](https://sourceforge.net/projects/opencamera/) - FOSS Camera Apps
|
||||
* [FadCam](https://github.com/anonfaded/FadCam) - Background Video Recorder
|
||||
* [Alibi](https://github.com/Myzel394/Alibi) or [DroidDashcam](https://play.google.com/store/apps/details?id=com.helge.droiddashcam) - Mobile Dashcams
|
||||
* [Material Photo Widget](https://github.com/fibelatti/photo-widget) - Homescreen Photo Widget
|
||||
* [Memetastic](https://github.com/gsantner/memetastic) - Meme Creators
|
||||
* [Gcam-Services-Provider](https://github.com/lukaspieper/Gcam-Services-Provider) - Use Google Cam without Google Play
|
||||
* [PhotoScan](https://play.google.com/store/apps/details?id=com.google.android.apps.photos.scanner) - Easily Scan & Digitize Photos
|
||||
* [BarcodeScanner](https://gitlab.com/Atharok/BarcodeScanner) or [BinaryEye](https://github.com/markusfisch/BinaryEye) - QR / Barcode Scanners
|
||||
* [TimeLapseCam](https://github.com/woheller69/TimeLapseCamera) - Timelapse Camera
|
||||
* [Color Camera](https://play.google.com/store/apps/details?id=theindusdeveloper.com.colorcamera) - Change Image Colors
|
||||
* [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), [Galaxy Enhance-X](https://rentry.co/fmhybase64#galaxy-enhance-x) or [Superimage](https://superimage.io/) - Image Upscalers
|
||||
* [EasyWatermark](https://github.com/rosuH/EasyWatermark) or [free-watermark](https://github.com/free-watermark/mobile-app) - Add Watermark to Images
|
||||
* [AndroidOCR](https://github.com/SubhamTyagi/android-ocr) - Extract Text from Images
|
||||
* [SauceNAO](https://github.com/LuK1337/SauceNAO) - Reverse Image Search / Some NSFW
|
||||
* [AppMockUp](https://app-mockup.com/) - Screenshot Builder
|
||||
* [Scrambled Exif](https://gitlab.com/juanitobananas/scrambled-exif), [MetadataRemover](https://github.com/Crazy-Marvin/MetadataRemover) or [exif-eraser](https://github.com/Tommy-Geenexus/exif-eraser) - Remove Image Metadata
|
||||
* [VES-Image-Compare](https://github.com/VincentEngel/VES-Image-Compare) - Easily Compare Images
|
||||
|
||||
***
|
||||
|
||||
## ▷ Keyboard Tools
|
||||
|
||||
* ⭐ **[FUTO Keyboard](https://keyboard.futo.org/)** - Privacy-Focused Keyboard / [Discord](https://discord.gg/ENYRubhTRw)
|
||||
|
@ -347,13 +318,11 @@
|
|||
* ⭐ **[Magisk](https://github.com/topjohnwu/Magisk)**, [Magisk Alpha](https://t.me/magiskalpha), [KernelSU](https://kernelsu.org/), [KernelSU-Next](https://github.com/KernelSU-Next/KernelSU-Next), [MagiskOnWSALocal](https://github.com/LSPosed/MagiskOnWSALocal), [APatch](https://github.com/bmax121/APatch), [MTKClient](https://github.com/bkerler/mtkclient) or [Mtk Easy Su](https://github.com/JunioJsv/mtk-easy-su) - Android Root Tools
|
||||
* ⭐ **Magisk Tools** - [Module Manager](https://github.com/DerGoogler/MMRL) / [Mods](https://t.me/magiskmod_update) / [Support Layer](https://github.com/axonasif/rusty-magisk) / [PlayIntegrity Fix](https://xdaforums.com/t/tricky-store-bootloader-keybox-spoofing.4683446/) / [Alt Repo](https://github.com/Magisk-Modules-Alt-Repo)
|
||||
* ⭐ **[Android Docker](https://gist.github.com/FreddieOliveira/efe850df7ff3951cb62d74bd770dce27)** - Run Docker on Android
|
||||
* [Rooting Guides](https://awesome-android-root.org/rooting-guides/) - Android Root Guides
|
||||
* [KitsuneMagisk](https://github.com/1q23lyc45/KitsuneMagisk) - Android Emulator Root Tool
|
||||
* [ADB-and-FastbootPlusPlus](https://github.com/K3V1991/ADB-and-FastbootPlusPlus) - ADB / Fastboot Programs
|
||||
* [aShell](https://gitlab.com/sunilpaulmathew/ashell) or [aShellYou](https://github.com/DP-Hridayan/aShellYou) - ADB Shells
|
||||
* [LogFox](https://github.com/F0x1d/LogFox) - LogCat Reader
|
||||
* [Amazing Temp Root](https://xdaforums.com/t/amazing-temp-root-for-mediatek-armv8-2020-08-24.3922213/) - MediaTek Temp Root
|
||||
* [TWRP Root](https://twrp.me/) / [Telegram](https://t.me/samsung_twrp_root) or [UnofficialTWRP](https://unofficialtwrp.com/) - TWRP Root
|
||||
* [TWRP Root](https://twrp.me/) - TWRP Root / [Telegram](https://t.me/samsung_twrp_root)
|
||||
* [Orangefox](https://orangefox.download/) or [SkyHawk](https://skyhawkrecovery.github.io/) - Custom Recovery Firmware
|
||||
* [Smali Patcher](https://xdaforums.com/t/module-smali-patcher-7-4.3680053/) - Android System Patcher
|
||||
* [Albastuz3d](https://albastuz3d.net/) - Stock Phone ROMs
|
||||
|
@ -370,6 +339,61 @@
|
|||
|
||||
***
|
||||
|
||||
# ► Android Camera
|
||||
|
||||
* ⭐ **[Google Lens](https://lens.google.com/)** - Multiple Camera Tools
|
||||
* ⭐ **[Reincubate Camo](https://reincubate.com/camo/)**, [Iriun](https://iriun.com/) or [DroidCam](https://github.com/dev47apps/droidcam-linux-client) - Use Android as Webcam
|
||||
* [Libre Camera](https://github.com/iakdis/librecamera) - Camera App
|
||||
* [GrapheneOS Camera](https://github.com/GrapheneOS/Camera) - Camera App
|
||||
* [Blackmagic Camera](https://play.google.com/store/apps/details?id=com.blackmagicdesign.android.blackmagiccam) - Camera App
|
||||
* [ProofMode](https://gitlab.com/guardianproject/proofmode/proofmode-android) - Camera App
|
||||
* [Open Camera](https://sourceforge.net/projects/opencamera/) - Camera App
|
||||
* [FadCam](https://github.com/anonfaded/FadCam) - Background Video Recorder
|
||||
* [googlecameraport](https://www.celsoazevedo.com/files/android/google-camera) - Google Cam Downloads / [XML Configs](https://t.me/xmlshamimmod) / [Telegram](https://t.me/googlecameraport)
|
||||
* [Gcam-Services-Provider](https://github.com/lukaspieper/Gcam-Services-Provider) - Use Google Cam without Google Play
|
||||
* [BarcodeScanner](https://gitlab.com/Atharok/BarcodeScanner) or [BinaryEye](https://github.com/markusfisch/BinaryEye) - QR / Barcode Scanners
|
||||
* [TimeLapseCam](https://github.com/woheller69/TimeLapseCamera) - Timelapse Camera
|
||||
|
||||
***
|
||||
|
||||
## ▷ Image Tools
|
||||
|
||||
* ⭐ **[Image Toolbox](https://github.com/T8RIN/ImageToolbox)** - Image Editor
|
||||
* [PicsArt](https://rentry.co/FMHYBase64#picsart) - Image Editor
|
||||
* [Hypic](https://play.google.com/store/apps/details?id=com.xt.retouchoversea) - Image Editor
|
||||
* [Snapseed](https://play.google.com/store/apps/details?id=com.niksoftware.snapseed) - Image Editor
|
||||
* [PhotoLayers](https://play.google.com/store/apps/details?id=com.handycloset.android.photolayers) - Image Editor
|
||||
* [Photo Editor](https://play.google.com/store/apps/details?id=com.iudesk.android.photo.editor) - Image Editor
|
||||
* [Pixomatic](https://pixomatic.us/) - Image Editor
|
||||
* [Material Photo Widget](https://github.com/fibelatti/photo-widget) - Homescreen Photo Widget
|
||||
* [Memetastic](https://github.com/gsantner/memetastic) - Meme Creators
|
||||
* [PhotoScan](https://play.google.com/store/apps/details?id=com.google.android.apps.photos.scanner) - Easily Scan & Digitize Photos
|
||||
* [Color Camera](https://play.google.com/store/apps/details?id=theindusdeveloper.com.colorcamera) - Change Image Colors
|
||||
* [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), [Galaxy Enhance-X](https://rentry.co/fmhybase64#galaxy-enhance-x) or [Superimage](https://superimage.io/) - Image Upscalers
|
||||
* [AndroidOCR](https://github.com/SubhamTyagi/android-ocr) - Extract Text from Images
|
||||
* [SauceNAO](https://github.com/LuK1337/SauceNAO) - Reverse Image Search / Some NSFW
|
||||
* [AppMockUp](https://app-mockup.com/) - Screenshot Builder
|
||||
* [Scrambled Exif](https://gitlab.com/juanitobananas/scrambled-exif), [MetadataRemover](https://github.com/Crazy-Marvin/MetadataRemover) or [exif-eraser](https://github.com/Tommy-Geenexus/exif-eraser) - Remove Image Metadata
|
||||
* [VES-Image-Compare](https://github.com/VincentEngel/VES-Image-Compare) - Easily Compare Images
|
||||
|
||||
***
|
||||
|
||||
## ▷ Image Galleries
|
||||
|
||||
* ⭐ **[Gallery](https://github.com/FossifyOrg/Gallery)** - Photo / Video Gallery
|
||||
* ⭐ **[Aves](https://github.com/deckerst/aves)** - Photo / Video Gallery
|
||||
* [Google Photos](https://rentry.co/FMHYBase64#revanced-google-photos) - Photo / Video Gallery / Unlimited
|
||||
* [PhotosGo](https://play.google.com/store/apps/details?id=com.google.android.apps.photosgo) - Photo / Video Gallery
|
||||
* [Ente](https://ente.io/) - Photo / Video Gallery / [GitHub](https://github.com/ente-io/ente)
|
||||
* [Photok](https://github.com/leonlatsch/Photok) - Photo / Video Gallery
|
||||
* [UhuruPhotos](https://uhuru.photos) - Photo / Video Gallery / [GitHub](https://github.com/savvasdalkitsis/uhuruphotos-android)
|
||||
* [Gallery 2.0](https://github.com/IacobIonut01/Gallery) - Photo / Video Gallery
|
||||
* [Sponge](https://play.google.com/store/apps/details?id=com.prismtree.sponge) - Image Gallery Cleaner
|
||||
|
||||
***
|
||||
|
||||
# ► Android Tools
|
||||
|
||||
## ▷ Android Utilities
|
||||
|
@ -388,7 +412,7 @@
|
|||
* [TapTap](https://github.com/KieronQuinn/TapTap) - Android Back Gesture Controls
|
||||
* [Circle to Search](https://play.google.com/store/apps/details?id=com.circletosearch.android) or [MiCTS](https://github.com/parallelcc/MiCTS/blob/main/README_en.md) - Circle to Search
|
||||
* [notesGPT](https://usenotesgpt.com/) - AI Voice Notes
|
||||
* [AudioNote](https://certified84.github.io/AudioNote/) - Video / Voice Recorders
|
||||
* [AudioNote](https://certified84.github.io/AudioNote/) or [Fossify Voice Recorder](https://github.com/FossifyOrg/Voice-Recorder) - Video / Voice Recorders
|
||||
* [ChatBox](https://github.com/Bin-Huang/chatbox), [Rikka AI](https://rikka-ai.com/) / [Discord](https://discord.gg/9weBqxe5c4) / [GitHub](https://github.com/rikkahub/rikkahub), [Maid](https://github.com/Mobile-Artificial-Intelligence/maid), [ChatterUI](https://github.com/Vali-98/ChatterUI), [Google AI Edge Gallery](https://github.com/google-ai-edge/gallery) or [PocketPal AI](https://github.com/a-ghorbani/pocketpal-ai) - Local AI Chatbots
|
||||
* [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)
|
||||
|
@ -432,8 +456,8 @@
|
|||
* 🌐 **[Awesome Android Security](https://github.com/ashishb/android-security-awesome)** - Security Resources
|
||||
* ↪️ **[Encrypted Messengers](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/adblock-vpn-privacy#wiki_.25B7_encrypted_messengers)**
|
||||
* ↪️ **[Android 2FA](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/adblock-vpn-privacy#wiki_.25B7_password_privacy_.2F_2fa)**
|
||||
* ⭐ **[Triage](https://tria.ge/)**, **[Hybrid Analysis](https://hybrid-analysis.com/)**, [VirusTotal](https://docs.virustotal.com/docs/mobile-apps) or [Pithus](https://beta.pithus.org/) - APK / URL Virus Scanners
|
||||
* ⭐ **[Rethink App](https://rethinkdns.com/)** / [GitHub](https://github.com/celzero/rethink-app), [AFWall+](https://github.com/ukanth/afwall/) (root) or [Karma](https://github.com/StarGW-net/karma-firewall) - Firewalls
|
||||
* ⭐ **[Triage](https://tria.ge/)**, **[Hybrid Analysis](https://hybrid-analysis.com/)**, [VirusTotal](https://www.virustotal.com/) or [Pithus](https://beta.pithus.org/) - APK / URL Virus Scanners
|
||||
* ⭐ **[Rethink DNS](https://rethinkdns.com/)** / [GitHub](https://github.com/celzero/rethink-app), [AFWall+](https://github.com/ukanth/afwall/) (root) or [Karma](https://github.com/StarGW-net/karma-firewall) - Firewalls
|
||||
* ⭐ **[URLCheck](https://github.com/TrianguloY/URLCheck)**, [Tarnhelm](https://github.com/lz233/Tarnhelm), [LinkSheet](https://github.com/LinkSheet/LinkSheet) or [Untracker](https://github.com/zhanghai/Untracker) - URL Cleaners / Tracking Removal
|
||||
* ⭐ **[Shadowsocks-Android](https://github.com/shadowsocks/shadowsocks-android)** - Shadowsocks Proxy App
|
||||
* ⭐ **[NekoBoxForAndroid](https://github.com/MatsuriDayo/NekoBoxForAndroid)** or [Matsuri](https://matsuridayo.github.io/) - Proxy Clients
|
||||
|
@ -465,10 +489,10 @@
|
|||
## ▷ Android Internet
|
||||
|
||||
* ↪️ **[QR Code Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/internet-tools#wiki_.25B7_qr_code_tools)**
|
||||
* ⭐ **[KeePassDX](https://www.keepassdx.com/)**, **[Bitwarden](https://play.google.com/store/apps/details?id=com.x8bit.bitwarden)** / [X](https://twitter.com/bitwarden) / [Subreddit](https://reddit.com/r/bitwarden) / [GitHub](https://github.com/bitwarden), [Keyguard](https://github.com/AChep/keyguard-app), [Proton Pass](https://proton.me/pass), [AuthPass](https://authpass.app/), [KeyPass](https://github.com/yogeshpaliyal/KeyPass), [Keepass2Android](https://play.google.com/store/apps/details?id=keepass2android.keepass2android) / [GitHub](https://github.com/PhilippC/keepass2android) - Password Managers
|
||||
* ⭐ **[Thunderbird](https://github.com/thunderbird/thunderbird-android)**, [K-9 Mail](https://k9mail.app/), [Tuta](https://tuta.com/), [SimpleMail](https://framagit.org/dystopia-project/simple-email), [Monocles](https://f-droid.org/packages/de.monocles.mail/) or [FairCode](https://email.faircode.eu/) - Email Clients
|
||||
* ⭐ **[PairVPN Hotspot](https://pairvpn.com/hotspot)**, [Tetherfi](https://github.com/pyamsoft/tetherfi) or [NetShare](https://netshare.app/) - Create Wi-Fi Hotspots
|
||||
* ⭐ **[KeePassDX](https://www.keepassdx.com/)**, **[Bitwarden](https://play.google.com/store/apps/details?id=com.x8bit.bitwarden)** / [X](https://twitter.com/bitwarden) / [Subreddit](https://reddit.com/r/bitwarden) / [GitHub](https://github.com/bitwarden), [Keyguard](https://github.com/AChep/keyguard-app), [Proton Pass](https://proton.me/pass), [AuthPass](https://authpass.app/), [KeyPass](https://github.com/yogeshpaliyal/KeyPass) or [Keepass2Android](https://play.google.com/store/apps/details?id=keepass2android.keepass2android) / [GitHub](https://github.com/PhilippC/keepass2android) - Password Managers
|
||||
* ⭐ **[Thunderbird](https://github.com/thunderbird/thunderbird-android)**, [K-9 Mail](https://k9mail.app/), [Tuta](https://tuta.com/), [SimpleMail](https://framagit.org/dystopia-project/simple-email), [Monocles](https://f-droid.org/packages/de.monocles.mail/) or [FairEmail](https://email.faircode.eu/) - Email Clients
|
||||
* ⭐ **[Network Survey](https://www.networksurvey.app/)**, [PCAPdroid](https://emanuele-f.github.io/PCAPdroid/) or [keepitup](https://github.com/ibbaa/keepitup/) - Network Monitors
|
||||
* [Tetherfi](https://github.com/pyamsoft/tetherfi) or [NetShare](https://netshare.app/) - Create Wi-Fi Hotspots
|
||||
* [Wolfram Alpha](https://rentry.co/FMHYBase64#wolfram-mobile) - Searchable Knowledge Base
|
||||
* [Feeder](https://github.com/spacecowboy/Feeder), [Pluma RSS](https://rentry.co/FMHYBase64#pluma-rss), [Twine](https://github.com/msasikanth/twine), [FeedMe](https://github.com/seazon/FeedMe), [news](https://github.com/bubelov/news), [nunti](https://gitlab.com/ondrejfoltyn/nunti), [Aggregator News](https://play.google.com/store/apps/details?id=com.and96.aggregator_news), [CapyReader](https://github.com/jocmp/capyreader) or [ReadYou](https://github.com/Ashinch/ReadYou) - RSS Readers
|
||||
* [NewsBang](https://www.newsbang.com/) - News App / US Only
|
||||
|
@ -519,6 +543,7 @@
|
|||
* ⭐ **[SyncThing Fork](https://github.com/Catfriend1/syncthing-android)** - File Sync
|
||||
* ⭐ **[Pairdrop](https://pairdrop.net/)** - File Sharing / [GitHub](https://github.com/fm-sys/snapdrop-android)
|
||||
* ⭐ **[Cx File Explorer](https://play.google.com/store/apps/details?id=com.cxinventor.file.explorer)**, [Total Commander](https://www.ghisler.com/ce.htm), [FileNavigator](https://play.google.com/store/apps/details?id=com.w2sv.filenavigator) / [GitHub](https://github.com/w2sv/FileNavigator), [Prism File Explorer Compose](https://github.com/Raival-e/Prism-File-Explorer), [MT Manager](https://rentry.co/FMHYBase64#mt-manager) or [Xplore](https://play.google.com/store/apps/details?id=com.lonelycatgames.Xplore) - File Managers / Explorers
|
||||
* [ConvertIt](https://github.com/TheByteArray/Convertit) - File Converter
|
||||
* [Aria2App](https://github.com/devgianlu/Aria2App) - Download Manager Controller
|
||||
* [Round Sync](https://github.com/newhinton/Round-Sync) or [MetaCTRL](https://metactrl.com/) - Multi-Site Cloud Storage File Managers
|
||||
* [AdbFileManager](https://github.com/T0biasCZe/AdbFileManager) - Manage Android File via Windows
|
||||
|
@ -673,12 +698,12 @@
|
|||
* ⭐ **[Termux](https://termux.dev/)** - Terminal Emulator / [Matrix](https://matrix.to/#/#Termux:matrix.org) / [Subreddit](https://www.reddit.com/r/termux) / [Telegram](https://telegram.me/termux24x7) / [Discord](https://discord.gg/HXpF69X) / [GitHub](https://github.com/termux/)
|
||||
* ⭐ **Termux Tools** - [YT-DL](https://github.com/khansaad1275/Termux-YTD) / [GUI](https://github.com/termux/termux-gui) / [Beautify](https://github.com/mayTermux/myTermux)
|
||||
* [Box64Droid](https://github.com/Ilya114/Box64Droid) - Windows Emulator on Android
|
||||
* [JoiPlay](https://joiplay.net/) - RPG Maker Game Interpreter & more
|
||||
* [Limbo](https://github.com/limboemu/limbo) or [TermOne Plus](https://termoneplus.com/) - Windows Emulator on Android / Terminal Emulators / OS Environments
|
||||
* [Ubuntu on Android](https://docs.udroid.org/) - Ubuntu Emulator / [GitHub](https://github.com/RandomCoderOrg/ubuntu-on-android)
|
||||
* [r/EmulationOnAndroid](https://www.reddit.com/r/emulationonandroid) - Android Game Emulation Subreddit
|
||||
* [Visual Novels Android](https://t.me/visual_novels_android_eng) - Android Visual Novel Ports
|
||||
* [Source Engine 4 Android](https://discord.gg/source-engine-4-android-672055862608658432) - Source Engine Ports
|
||||
* [JoiPlay](https://joiplay.net/) - RPG Maker Game Interpreter
|
||||
* [AdrenoToolsDrivers](https://github.com/K11MCH1/AdrenoToolsDrivers) - Adreno Drivers for Android Emulators / [Systemwide](https://github.com/SEGAINDEED/Adreno-ToolsDriversMagisk)
|
||||
|
||||
***
|
||||
|
@ -693,12 +718,12 @@
|
|||
* ↪️ **[Android on Linux](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/linux#wiki_.25B7_android_on_linux)**
|
||||
* ⭐ **[WSABuilds](https://github.com/MustardChef/WSABuilds)** - Windows Subsystem / Pre-built Binaries
|
||||
* ⭐ **[Google Play Games](https://play.google.com/googleplaygames)** - Android Mobile Games on Windows
|
||||
* [MuMuPlayer](https://www.mumuplayer.com/) - Android Emulator
|
||||
* [Docker Android](https://github.com/budtmo/docker-android) - Android on Docker
|
||||
* [Genymotion](https://www.genymotion.com/download/) - Cloud Emulator
|
||||
* [Nox](https://www.bignox.com/) - Android Emulator / [Debloat](https://gist.github.com/TameemS/72c4b92131977aced56e727d51599a48)
|
||||
* [Genymotion](https://www.genymotion.com/download/) - Android Emulator
|
||||
* [NoxPlayer](https://www.bignox.com/) - Android Emulator / [Debloat](https://gist.github.com/TameemS/72c4b92131977aced56e727d51599a48)
|
||||
* [GameLoop](https://www.gameloop.com/) - Android Emulator
|
||||
* [MuMu](https://www.mumuplayer.com/) - Android Emulator
|
||||
* [MeMu](https://www.memuplay.com/) - Android Emulator / [Debloat](https://gist.github.com/TameemS/603686cec857ff1f91e68607e374b0d8)
|
||||
* [MEmu](https://www.memuplay.com/) - Android Emulator / [Debloat](https://gist.github.com/TameemS/603686cec857ff1f91e68607e374b0d8)
|
||||
* [LDPlayer](https://www.ldplayer.net/) - Android Emulator / [Debloat](https://gist.github.com/TameemS/894cdb8adae1d6042a5f21c4e80bcd9e/)
|
||||
|
||||
***
|
||||
|
@ -713,7 +738,7 @@
|
|||
|
||||
# ► Android Torrenting
|
||||
|
||||
* **Note** - Remember to get a [VPN](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/adblock-vpn-privacy#wiki_.25BA_vpn) before torrenting and [bind it to your client](https://gist.github.com/VVispy/765c6723436f386ef113040f8fc968b8) if it allows.
|
||||
* **Note** - Remember to get a [VPN](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/adblock-vpn-privacy#wiki_.25BA_vpn) before torrenting and [bind it to your client](https://wispydocs.pages.dev/vpn-binding/) if it allows.
|
||||
|
||||
***
|
||||
|
||||
|
@ -726,7 +751,7 @@
|
|||
* [TorrServe](https://github.com/YouROK/TorrServe) - Torrent Client
|
||||
* [1DM](https://play.google.com/store/apps/details?id=idm.internet.download.manager) - Torrent Client / [Extra Features](https://rentry.co/fmhybase64#link-1dm)
|
||||
* [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/)
|
||||
* [Transdroid](https://www.transdroid.org) - Manage BitTorrent Clients / [F-Droid](https://f-droid.org/packages/org.transdroid.full/) / [GitHub](https://github.com/erickok/transdroid)
|
||||
* [nzb360](https://play.google.com/store/apps/details?id=com.kevinforeman.nzb360) - NZB / Torrent Manager
|
||||
|
||||
***
|
||||
|
@ -765,9 +790,9 @@
|
|||
|
||||
## ▷ 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.wiki/guides/ext/mihon) / [Endorsed Forks](https://mihon.app/forks/), [2](https://github.com/nekomangaorg/Neko), [3](https://komikku-app.github.io/)
|
||||
* ⭐ **[Mihon](https://mihon.app/)** - Manga Reader / [Extensions](https://keiyoushi.github.io/extensions/), [2](https://discord.gg/3FbCpdKbdY), [3](https://wotaku.wiki/guides/ext/mihon) / [Endorsed Forks](https://mihon.app/forks/), [2](https://github.com/nekomangaorg/Neko), [3](https://komikku-app.github.io/) / [Discord](https://discord.gg/mihon)
|
||||
* ⭐ **[Kotatsu](https://kotatsu.app/)** - Manga Reader / [Nightly](https://github.com/KotatsuApp/Kotatsu-nightly) / [Telegram](https://t.me/kotatsuapp) / [Discord](https://discord.gg/NNJ5RgVBC5)
|
||||
* ⭐ **[Dantotsu](https://discord.com/invite/4HPZ5nAWwM)** - Manga Reader / [Extension Guide](https://wotaku.wiki/guides/ext/mihon) / [Telegram](https://t.me/+gzBCQExtLQo1YTNh)
|
||||
* ⭐ **[Dantotsu](https://discord.com/invite/4HPZ5nAWwM)** - Manga Reader / [Extension Guide](https://wotaku.wiki/guides/ext/mihon) / [Source Code](https://git.rebelonion.dev/rebelonion/Dantotsu/) / [Telegram](https://t.me/+gzBCQExtLQo1YTNh)
|
||||
* [Mangayomi](https://github.com/kodjodevf/mangayomi) - Manga Reader
|
||||
* [LNReader](https://github.com/LNReader/lnreader) - Manga Reader
|
||||
* [Perfect Viewer](https://rentry.co/FMHYBase64#perfect-viewer) - Manga File Viewer
|
||||
|
@ -780,8 +805,6 @@
|
|||
# ► Android Audio
|
||||
|
||||
* ↪️ **[Song Identification Apps](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/audio#wiki_.25B7_song_identification)**
|
||||
* ⭐ **[ReVanced Manager](https://revanced.app/)** / [Changelog](https://revanced.app/announcements) / [Discord](https://discord.com/invite/rF2YcEjcrT) / [GitHub](https://github.com/ReVanced/revanced-manager), [xManager](https://www.xmanagerapp.com/) / [Discord](https://discord.com/invite/dnpKn5Wufm) or [Modded Spotify](https://rentry.co/FMHYBase64#modded-spotify-apk) - Ad-Free Spotify Patchers / [Warning](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#android-spotify-note)
|
||||
* ⭐ **Spotify 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/)
|
||||
* ⭐ **[Seal](https://github.com/JunkFood02/Seal)** - Multi-Site Audio Downloader
|
||||
* ⭐ **[Seeker](https://github.com/jackBonadies/SeekerAndroid)** - Audio Downloader / Soulseek Frontend
|
||||
* ⭐ **[Poweramp Equalizer](https://rentry.co/FMHYBase64#poweramp-equalizer)** / [Forum](https://forum.powerampapp.com/), **[RootlessJamesDSP](https://github.com/timschneeb/RootlessJamesDSP)** / [Guide](https://rentry.co/rootlessjamesdsp-guide), [FlowEQ](https://play.google.com/store/apps/details?id=com.floweq.equalizer) or [Flat Equalizer](https://play.google.com/store/apps/details?id=com.jazibkhan.equalizer) - Audio Equalizers
|
||||
|
@ -789,6 +812,8 @@
|
|||
* ⭐ **[AudioRelay](https://rentry.co/FMHYBase64#audio-relay)** or [Audio Share](https://github.com/mkckr0/audio-share) - Stream Audio Between Devices
|
||||
* ⭐ **[Pano Scrobbler](https://github.com/kawaiiDango/pano-scrobbler)** - Android Scrobbler
|
||||
* ⭐ **[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
|
||||
* [Modded Spotify](https://rentry.co/FMHYBase64#modded-spotify-apk) - Ad-Free Spotify Patchers / [Warning](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#android-spotify-note)
|
||||
* Spotify 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/)
|
||||
* [SongSync](https://github.com/Lambada10/SongSync), [Lyricify](https://github.com/WXRIW/Lyricify-App), [FastLyrics](https://github.com/TecCheck/FastLyrics) or [Rush](https://github.com/shub39/Rush) - Lyrics Apps
|
||||
* [ListenBrainz](https://github.com/metabrainz/listenbrainz-android) or [MusicSearch](https://github.com/lydavid/MusicSearch) - Music Tracking / Rating
|
||||
* [ytdlnis](https://ytdlnis.org/) - Multi-Site Audio Downloader / [GitHub](https://github.com/deniscerri/ytdlnis)
|
||||
|
@ -803,7 +828,7 @@
|
|||
* [Airbuds](https://play.google.com/store/apps/details?id=com.capp.poplive) - Friends Listening Activity
|
||||
* [Super Sound](https://play.google.com/store/apps/details?id=com.tianxingjian.supersound) - Audio Editor
|
||||
* [ViPER4Android](https://github.com/programminghoch10/ViPER4AndroidRepackaged) - Audio Modifier / 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
|
||||
* [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 / Spectrograms
|
||||
* [Musekit](https://github.com/Kwasow/Musekit) or [Tack](https://github.com/patzly/tack-android) - Tuning Fork / Metronome
|
||||
|
||||
***
|
||||
|
@ -814,8 +839,8 @@
|
|||
* ⭐ **[Musicolet Music Player](https://krosbits.in/musicolet/)**
|
||||
* ⭐ **[Namida](https://github.com/namidaco/namida)**
|
||||
* ⭐ **[VLC for Android](https://www.videolan.org/vlc/download-android.html)**
|
||||
* ⭐ **[Foobar2000](https://www.foobar2000.org/apk)**
|
||||
* ⭐ **[tempo](https://github.com/CappielloAntonio/tempo)**, [Ultrasonic](https://gitlab.com/ultrasonic/ultrasonic), [SubstreamerApp](https://substreamerapp.com/) - Subsonic Clients / [Audio Servers](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/audio#wiki_.25B7_audio_servers)
|
||||
* ⭐ **[Foobar2000](https://www.foobar2000.org/android)**
|
||||
* ⭐ **[tempo](https://github.com/eddyizm/tempo)**, [Ultrasonic](https://gitlab.com/ultrasonic/ultrasonic), [SubstreamerApp](https://substreamerapp.com/) - Subsonic Clients / [Audio Servers](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/audio#wiki_.25B7_audio_servers)
|
||||
* [AIMP](https://www.aimp.ru/?do=download&os=android)
|
||||
* [Gramophone](https://github.com/AkaneTan/Gramophone)
|
||||
* [Oto Music](https://play.google.com/store/apps/details?id=com.piyush.music)
|
||||
|
@ -839,6 +864,7 @@
|
|||
***
|
||||
|
||||
* ⭐ **[Metrolist](https://github.com/mostafaalagamy/metrolist)**, [OuterTune](https://github.com/OuterTune/OuterTune) or [InnerTune](https://github.com/Malopieds/InnerTune), [2](https://github.com/z-huang/InnerTune) - YouTube Music Players / Innertune Forks / Audio Players
|
||||
* ⭐ **[ReVanced YouTube](https://revanced.app/)** - Ad-Free YouTube Patcher / [Guide](https://github.com/KobeW50/ReVanced-Documentation/blob/main/YT-ReVanced-Guide.md) / [Changelog](https://revanced.app/announcements) / [Discord](https://discord.com/invite/rF2YcEjcrT)
|
||||
* [Musify](https://gokadzev.github.io/Musify/) - YouTube Music Player / [GitHub](https://github.com/gokadzev/Musify)
|
||||
* [Harmony Music](https://github.com/anandnet/Harmony-Music) - YouTube Music Player
|
||||
* [SimpMusic](https://simpmusic.org/) - YouTube Music Player / [GitHub](https://github.com/maxrave-dev/SimpMusic)
|
||||
|
@ -877,7 +903,7 @@
|
|||
* [Waking Up](https://app.wakingup.com/scholarship) - Sam Harris' Mindfulness Platform
|
||||
* [Rain Sounds](https://sleeprelaxapps.github.io/rainsounds/) - Ambient Rain
|
||||
* [A Soft Murmur](https://asoftmurmur.com/) - Mix Ambient Sounds
|
||||
* [HealthyMinds](https://hminnovations.org/meditation-app) - Meditation / Sleep Sounds
|
||||
* [HealthyMinds](https://hminnovations.org/meditation-app) - Meditation
|
||||
* [Serenity](https://github.com/YajanaRao/Serenity) - Meditation / Sleep Sounds
|
||||
* [Noice](https://trynoice.com/) - Meditation / Sleep Sounds
|
||||
* [Tide.fm](https://tide-api.moreless.io/v1/redirect/download?platform=android) - Meditation / Sleep Sounds / Number Required
|
||||
|
@ -893,17 +919,17 @@
|
|||
* ↪️ **[Android TV](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/video/#wiki_.25B7_android_tv)**
|
||||
* ⭐ **[Stremio](https://www.stremio.com/)** - Torrent Streaming / [Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/video/#wiki_.25B7_stremio_tools)
|
||||
* ⭐ **[CloudStream](https://github.com/recloudstream/cloudstream)** - Movies / TV / Anime
|
||||
* ⭐ **CloudStream Resources** - [Plugins](https://discord.com/invite/wpX5Rfcx87), [2](https://rentry.org/cs3-repos), [3](https://cloudstream.miraheze.org/wiki/List_of_extensions) / [Discord](https://discord.com/invite/5Hus6fM) / [Docs](https://cloudstream.miraheze.org/wiki/Main_Page)
|
||||
* ⭐ **CloudStream Resources** - [Docs](https://cloudstream.miraheze.org/wiki/Main_Page) / [Plugins](https://discord.com/invite/wpX5Rfcx87), [2](https://rentry.org/cs3-repos), [3](https://cloudstream.miraheze.org/wiki/List_of_extensions) / [Discord](https://discord.com/invite/5Hus6fM)
|
||||
* ⭐ **[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)
|
||||
* ⭐ **[HDO Box](https://rentry.co/FMHYBase64#hdo-box)** - Movies / TV / [Telegram](https://t.me/+Ywz5HnhvFHA3Zjk1) / [Discord](https://discord.gg/VPRJVExUVD) / [Warning](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#hdo-box-note)
|
||||
* ⭐ **[HDO Box](https://rentry.co/FMHYBase64#hdo-box)** - Movies / TV / [Warning](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#hdo-box-note) / [Telegram](https://t.me/+Ywz5HnhvFHA3Zjk1) / [Discord](https://discord.gg/VPRJVExUVD)
|
||||
* ⭐ **[Syncler](https://syncler.net/)** - Movies / TV / [Providers](https://www.reddit.com/r/providers4syncler/)
|
||||
* ⭐ **[BubblesUPNP](https://play.google.com/store/apps/details?id=com.bubblesoft.android.bubbleupnp)**, [DMS](https://github.com/anacrolix/dms) or [Macast](https://xfangfang.github.io/Macast/) - Media Servers
|
||||
* [CineHD](https://cinehd.xyz/) - Movies / TV
|
||||
* [Cinema HD](https://rentry.co/FMHYBase64#cinema-hd) - Movies / TV
|
||||
* [Movie HD](https://rentry.co/FMHYBase64#movie-hd) - Movies / TV / Requires AMPlayer
|
||||
* [VivaTV](https://rentry.co/FMHYBase64#vivatv) - Movies / TV / Requires TPlayer
|
||||
* [OnStream](https://rentry.co/FMHYBase64#onstream) - Movies / TV
|
||||
* [PopcornTime](https://popcorn-time.site) - Torrent Streaming / [GitHub](https://github.com/popcorn-official/popcorn-android) / Use [VPN](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/adblock-vpn-privacy/#wiki_.25BA_vpn)
|
||||
* [OnStream](https://rentry.co/FMHYBase64#onstream) - Movies / TV / Requires SPlayer
|
||||
* [PopcornTime](https://popcorn-time.site) - Torrent Streaming / Use [VPN](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/adblock-vpn-privacy/#wiki_.25BA_vpn) / [GitHub](https://github.com/popcorn-official/popcorn-android)
|
||||
* [FilmPlus](https://rentry.co/FMHYBase64#filmplus) - Movies / TV / Requires BPlayer
|
||||
* [Flixclusive](https://github.com/flixclusiveorg/Flixclusive) - Movies / TV / [Plugins](https://discord.com/invite/7yPSPveReu)
|
||||
* [Vega App](https://github.com/Zenda-Cross/vega-app) - Movies / TV
|
||||
|
@ -947,8 +973,8 @@
|
|||
* ⭐ **[DailyAL](https://github.com/JICA98/DailyAL)**, [MALClient](https://github.com/Drutol/MALClient), [AL-chan](https://zend10.github.io/AL-chan/), [Nekome](https://github.com/Chesire/Nekome), [Moelist](https://moelist.net/), [Kitsune](https://github.com/Drumber/Kitsune) or [AniTrend](https://anitrend.co/) / [GitHub](https://github.com/AniTrend/anitrend-app) - Anime Trackers
|
||||
* ⭐ **[Aniyomi](https://aniyomi.org/)** or [Anikku](https://github.com/komikku-app/anikku) / [Extension Guide](https://wotaku.wiki/guides/ext/mihon) / [Discord](https://discord.gg/F32UjdJZrR)
|
||||
* [AnymeX](https://anymex.vercel.app/) / [Extension Guide](https://wotaku.wiki/guides/ext/mangayomi) / [GitHub](https://github.com/RyanYuuki/AnymeX)
|
||||
* [Dantotsu](https://discord.com/invite/4HPZ5nAWwM) / [Extension Guide](https://wotaku.wiki/guides/ext/mihon) / [Telegram](https://t.me/+gzBCQExtLQo1YTNh)
|
||||
* [AniLab](https://anilab.to/) - Use [DNS Adblocker](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/adblock-vpn-privacy#wiki_.25B7_dns_adblocking), [2](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/android#wiki_.25B7_android_adblocking)
|
||||
* [Dantotsu](https://discord.com/invite/4HPZ5nAWwM) / [Extension Guide](https://wotaku.wiki/guides/ext/mihon) / [Source Code](https://git.rebelonion.dev/rebelonion/Dantotsu/) / [Telegram](https://t.me/+gzBCQExtLQo1YTNh)
|
||||
* [AniLab](https://anilab.to/) - Use [DNS Adblock](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/adblock-vpn-privacy#wiki_.25B7_dns_adblocking)
|
||||
* [Animiru](https://github.com/Quickdesh/Animiru)
|
||||
* [Shiru](https://github.com/RockinChaos/Shiru) or [Migu](https://miguapp.pages.dev/) - Stream Anime Torrents
|
||||
|
||||
|
@ -974,7 +1000,7 @@
|
|||
## ▷ Android YouTube Apps
|
||||
|
||||
* ⭐ **[ReVanced Manager](https://revanced.app/)** - Ad-Free YouTube Patcher / [Guide](https://github.com/KobeW50/ReVanced-Documentation/blob/main/YT-ReVanced-Guide.md) / [Changelog](https://revanced.app/announcements) / [Discord](https://discord.com/invite/rF2YcEjcrT)
|
||||
* ⭐ **[GrayJay](https://grayjay.app/)** - YouTube, Twitch, Rumble, etc. / [Guide](https://youtu.be/EnZrv37u66c) / [GitLab](https://gitlab.futo.org/videostreaming/grayjay) / [Plugins](https://gitlab.futo.org/videostreaming/plugins)
|
||||
* ⭐ **[GrayJay](https://grayjay.app/)** - YouTube, Twitch, Rumble, etc. / [Guide](https://youtu.be/EnZrv37u66c) / [Plugins](https://gitlab.futo.org/videostreaming/plugins) / [GitLab](https://gitlab.futo.org/videostreaming/grayjay)
|
||||
* ⭐ **[LibreTube](https://libretube.dev/)** - Ad-Free YouTube
|
||||
* ⭐ **[PipePipe](https://github.com/InfinityLoop1308/PipePipe)** - Ad-Free YouTube / SponsorBlock / ReturnYTDislikes
|
||||
* ⭐ **[Seal](https://github.com/JunkFood02/Seal)**, **[ytdlnis](https://ytdlnis.org/)** / [GitHub](https://github.com/deniscerri/ytdlnis), [YouTubeDL Android](https://github.com/yausername/youtubedl-android), [SnapTube](https://rentry.co/FMHYBase64#snaptube) / [Note](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#snaptube-note) or [SongTube](https://github.com/SongTube/SongTube-App) - Audio / Video Downloaders
|
||||
|
@ -1089,7 +1115,7 @@
|
|||
* [Daibutsu](https://dora2ios.web.app/daibutsu.html) - 8.4.1 Untethered Jailbreak (A5-A5X) / [Guide](https://ios.cfw.guide/installing-daibutsu/)
|
||||
* [wtfis](https://github.com/TheRealClarity/wtfis) - 8.0-8.4.1 Untethered Jailbreak (64-bit Only) / [Guide](https://ios.cfw.guide/installing-wtfis/)
|
||||
* [HomeDepot OLD](https://web.archive.org/web/20240121141903/https://wall.supplies/OLD%20iPhone%20HACKED.html) - 8.0-8.4.1 Semi-Untethered Jailbreak (A5-A5X) / [Guide](https://ios.cfw.guide/installing-homedepot/)
|
||||
* [Pangu7](https://mega.nz/folder/k4FAXCIB#Fk7pxs6ikYzL3YBvAGX5ig/file/41UlRSyS) - 7.1-7.1.2 Untethered Jailbreak / [WARNING](https://rentry.co/77idzr4v) / [Guide](https://ios.cfw.guide/installing-pangu7/) / [Mac](https://mega.nz/folder/k4FAXCIB#Fk7pxs6ikYzL3YBvAGX5ig/file/Fo8ihCJa)
|
||||
* [Pangu7](https://mega.nz/folder/k4FAXCIB#Fk7pxs6ikYzL3YBvAGX5ig/file/41UlRSyS) - 7.1-7.1.2 Untethered Jailbreak / **[Warning](https://rentry.co/77idzr4v)** / [Guide](https://ios.cfw.guide/installing-pangu7/) / [Mac](https://mega.nz/folder/k4FAXCIB#Fk7pxs6ikYzL3YBvAGX5ig/file/Fo8ihCJa)
|
||||
* [Evasi0n7](https://mega.nz/folder/k4FAXCIB#Fk7pxs6ikYzL3YBvAGX5ig/file/1wc0HZgQ) - 7.0-7.0.6 Untethered Jailbreak / [Guide](https://ios.cfw.guide/installing-evasi0n7/) / [5s / 5c](https://mega.nz/folder/k4FAXCIB#Fk7pxs6ikYzL3YBvAGX5ig/file/Z1MC2ZaS)
|
||||
* [p0sixspwn](https://ih8sn0w.com/p0sixspwn.html) - 6.1.3-6.1.6 Untethered Jailbreak / [Guide](https://ios.cfw.guide/installing-p0sixspwn/) / [macOS High Sierra+](https://archive.org/download/p0sixspwn-modernmacOS/p0sixspwn%206.1.6%20test.zip)
|
||||
* [Evasi0n6](https://mega.nz/folder/k4FAXCIB#Fk7pxs6ikYzL3YBvAGX5ig/folder/I5k1gaoQ) - 6.0-6.1.2 Untethered Jailbreak / [Guide](https://ios.cfw.guide/installing-evasi0n6/)
|
||||
|
@ -1115,13 +1141,13 @@
|
|||
|
||||
## ▷ iOS Sideloading
|
||||
|
||||
* ⭐ **[Sideloading Guide](https://ios.cfw.guide/sideloading-apps/)** or [Avieshek's Guide](https://avieshek.wordpress.com/2024/06/11/how-to-sideload-on-ios/) - Sideloading Guides
|
||||
* ⭐ **[Sideloading Guide](https://rentry.co/sideloadingguide)**, [ios.cfw.guide](https://ios.cfw.guide/sideloading-apps/) or [Avieshek's Guide](https://avieshek.wordpress.com/2024/06/11/how-to-sideload-on-ios/) - Sideloading Guides
|
||||
* ⭐ **[TrollStore](https://github.com/opa334/TrollStore)** - Non-Appstore Apps / No-Jailbreak / 14.0-17.0 / [External Repos](https://github.com/TheResonanceTeam/TrollApps/) / [Decrypt](https://github.com/donato-fiore/TrollDecrypt) / [Guide](https://ios.cfw.guide/installing-trollstore/) / [Web App](https://theresonanceteam.github.io/trollapps-web/) / [Discord](https://discord.gg/PrF6XqpGgX)
|
||||
* ⭐ **[SideStore](https://sidestore.io/)** - Non-Jailbreak Sideloading App (iOS 14.0 & Above) / [Limit Bypass Note](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#limit-bypass-note) / [Guide](https://docs.sidestore.io/docs/advanced/sparserestore)
|
||||
* ⭐ **[Sideloadly](https://sideloadly.io/)** - Non-Jailbreak Sideloading (iOS 7.0 & Above)
|
||||
* ⭐ **[Feather](https://github.com/khcrysalis/Feather)** - Sideloading App (iOS 15.0 & Above) / Requires Apple Dev Certificate
|
||||
* [AltStore Classic](https://altstore.io/) - Non-Jailbreak Sideloading App (iOS 14.0 & Above) / [Repo Viewer](https://therealfoxster.github.io/altsource-viewer/), [2](https://altsource.by.lao.sb/browse/) / [AltServer](https://github.com/NyaMisty/AltServer-Linux) / [Guide](https://faq.altstore.io/altstore-classic/how-to-install-altstore-windows)
|
||||
* [Ksign](https://github.com/Nyasami/Ksign-public) - Non-Jailbreak Sideloading
|
||||
* [Ksign](https://github.com/Nyasami/Ksign) - Non-Jailbreak Sideloading
|
||||
* [Sparsebox](https://github.com/khanhduytran0/SparseBox) or [LiveContainer](https://github.com/khanhduytran0/LiveContainer) - Run Apps Without Installing / Bypass Sidestore limits
|
||||
* [IPA iBot](https://t.me/ipa_ibot) - Apple Dev Certificate Manager Bot
|
||||
* [BlacklistBeGone](https://github.com/jailbreakdotparty/BlacklistBeGone) - Lift Revoked Certificate Blacklist / iOS 17.0 -> iOS 18.0.1
|
||||
|
@ -1135,7 +1161,7 @@
|
|||
## ▷ iOS Adblocking
|
||||
|
||||
* ↪️ **[DNS Adblocking](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/adblock-vpn-privacy/#wiki_.25B7_dns_adblocking)**
|
||||
* ⭐ **[Adguard](https://adguard.com/en/adguard-ios/overview.html)** - Adblocker / [Guide](https://avieshek.wordpress.com/2024/07/07/how-to-filter-ads-and-block-popups-on-iphone-and-macos/) / [Pro](https://t.me/blatants) (requires patch)
|
||||
* ⭐ **[AdGuard](https://adguard.com/en/adguard-ios/overview.html)** - Adblocker / [Guide](https://avieshek.wordpress.com/2024/07/07/how-to-filter-ads-and-block-popups-on-iphone-and-macos/) / [Pro](https://t.me/blatants) (requires patch)
|
||||
* ⭐ **[Orion](https://kagi.com/orion/)** - Adblock Browser w/ Extensions / [Discord](https://discord.gg/Yk8Aj8AxGw)
|
||||
* [uBO Lite Safari](https://apps.apple.com/app/ublock-origin-lite/id6745342698) - Safari Adblocker
|
||||
* [Brave](https://apps.apple.com/app/id1052879175) - Adblock Browser
|
||||
|
@ -1167,7 +1193,7 @@
|
|||
* 🌐 **[iOS Console Emulators](https://www.reddit.com/r/EmulationOniOS/wiki/emulators)** - Gaming Emulator Index
|
||||
* ⭐ **PDALife** - [Games](https://pdalife.com/ios/games) / [Apps](https://pdalife.com/ios/programmy/) / [Telegram](https://t.me/pdalife_official)
|
||||
* ⭐ **[CodeVN](https://ios.codevn.net/)** / [Telegram](https://t.me/+1qK9KUZlfGs3ZDg1) or [IPALibrary](https://ipalibrary.me/) - Tweaked Apps / Use Orion to Translate
|
||||
* [4PDA](https://4pda.to/forum/) - Tweaked Apps / Use Orion to Translate / [Captcha Note](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#captcha-4pda), [2](https://doorsgeek.blogspot.com/2015/08/4pdaru-loginregister-captcha-tutorial.html)
|
||||
* [4PDA](https://4pda.to/forum/) - Tweaked Apps / Use Orion to Translate / [Captcha Note](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#captcha-4pda)
|
||||
* [AppDB](https://appdb.to) - App Library
|
||||
* [iOSVizor](https://iosvizor.com/) - Tweaked Apps / [Telegram](https://t.me/iosvizor)
|
||||
* [DriftyWinds](https://raw.githubusercontent.com/driftywinds/driftywinds.github.io/master/AltStore/apps.json) - AltStore App Source
|
||||
|
@ -1175,7 +1201,6 @@
|
|||
* [TrollStore-IPAs](https://github.com/Neoncat-OG/TrollStore-IPAs) - Tweaked Apps
|
||||
* [PlatinMods](https://platinmods.com/) - Tweaked Apps / Sign-Up Required
|
||||
* [AppTesters](https://repository.apptesters.org/) - Tweaked Apps / [Telegram](https://t.me/AppleTesters)
|
||||
* [iOSDecrypted](https://t.me/+ZyDPcj76C99lNzQy) - Modded Social Media Apps
|
||||
* [IPA Archive](https://stuffed18.github.io/ipa-archive-updated) - Search Engine
|
||||
* [iOSObscura](https://archive.org/details/iOSObscura) - Old App Archive / [Search Engine](https://iphoneosobscura.litten.ca/)
|
||||
* [AppleCensorship](https://applecensorship.com/) - Censored App Store Apps
|
||||
|
@ -1192,10 +1217,13 @@
|
|||
* ⭐ **[Eevee IPA Decrypter](https://t.me/eeveedecrypterbot)** - Decrypted iOS Apps
|
||||
* [binnichtaktivsipas](https://t.me/binnichtaktivsipas) - Tweaked Apps
|
||||
* [IPA Dark](https://t.me/ipa_dark) - Games
|
||||
* [Scholars Lounge](https://t.me/thescholarslounge) - Tweaked Apps / [Discord](https://discord.gg/3FMj4T7j)
|
||||
* [iOSAppsFree](https://t.me/iOSAppsFree) - Tweaked Apps
|
||||
* [MelonsIPAs](https://t.me/melonipas) - Tweaked Apps
|
||||
* [Sa1y0miii](https://t.me/Sa1y0miii) - Tweaked Apps
|
||||
* [GLESign](https://t.me/glesign) - Tweaked Apps / Games & Game Ports
|
||||
* [TDMBest](https://t.me/tdmbest_ipas) - Game Ports
|
||||
* [iOSDecrypted](https://t.me/+ZyDPcj76C99lNzQy) - Modded Social Media Apps
|
||||
|
||||
***
|
||||
|
||||
|
@ -1223,8 +1251,8 @@
|
|||
|
||||
# ► iOS Audio
|
||||
|
||||
* ⭐ **[EeveeSpotify](https://github.com/whoeevee/EeveeSpotifyReborn)** - Ad-Free Spotify / Sideloaded / [Extension](https://github.com/BillyCurtis/OpenSpotifySafariExtension) / [Telegram](https://t.me/SpotilifeIPAs)
|
||||
* ⭐ **[SpotC++](https://spotc.yodaluca.dev/)** - Ad-Free Spotify / Sideloaded / [GitHub](https://github.com/SpotCompiled/SpotilifeC/)
|
||||
* ⭐ **[EeveeSpotify](https://github.com/whoeevee/EeveeSpotifyReborn)** - Ad-Free Spotify / Sideloaded / [Extension](https://github.com/BillyCurtis/OpenSpotifySafariExtension) / [Telegram](https://t.me/SpotilifeIPAs)
|
||||
* ⭐ **[YTMusicUltimate](https://github.com/dayanch96/YTMusicUltimate)** - Ad-Free / Modded YouTube Music / [Discord](https://discord.gg/BhdUyCbgkZ)
|
||||
* [Soundcloud](https://soundcloud.com/download) - Streaming / [Tweak](https://github.com/Rov3r/scmusicplus)
|
||||
* [Audiomack](https://apps.apple.com/app/id921765888) - Streaming
|
||||
|
@ -1238,8 +1266,8 @@
|
|||
|
||||
## ▷ iOS Podcasts / Radio
|
||||
|
||||
* ⭐ **[EeveeSpotify](https://github.com/whoeevee/EeveeSpotifyReborn)** - Ad-Free Spotify / Sideloaded / [Extension](https://github.com/BillyCurtis/OpenSpotifySafariExtension) / [Telegram](https://t.me/SpotilifeIPAs)
|
||||
* ⭐ **[SpotC++](https://spotc.yodaluca.dev/)** - Ad-Free Spotify / Sideloaded / [GitHub](https://github.com/SpotCompiled/SpotilifeC/)
|
||||
* ⭐ **[EeveeSpotify](https://github.com/whoeevee/EeveeSpotifyReborn)** - Ad-Free Spotify / Sideloaded / [Extension](https://github.com/BillyCurtis/OpenSpotifySafariExtension) / [Telegram](https://t.me/SpotilifeIPAs)
|
||||
* ⭐ **[PocketCasts](https://www.pocketcasts.com/)** - Podcasts
|
||||
* ⭐ **[Triode](https://triode.app/)** - Radio App
|
||||
* ⭐ **[Cuterdio](https://cuterdio.com/en)** - Radio App
|
||||
|
@ -1256,6 +1284,7 @@
|
|||
## ▷ iOS Relaxation
|
||||
|
||||
* ⭐ **[Medito](https://meditofoundation.org/medito-app)** - Meditation / Sleep Sounds
|
||||
* [HealthyMinds](https://hminnovations.org/meditation-app) - Meditation
|
||||
* [Waking Up](https://app.wakingup.com/scholarship) - Sam Harris' Mindfulness Platform
|
||||
* [Tide.fm](https://apps.apple.com/app/id1077776989) - Meditation / Sleep Sounds
|
||||
* [Insight Timer](https://apps.apple.com/app/id337472899) - Meditation / Sleep Sounds
|
||||
|
@ -1306,7 +1335,7 @@
|
|||
* ⭐ **[Paperback](https://paperback.moe/)** - Manga Reader / [Extensions](https://discord.gg/rmf6jQpMU9) / [Discord](https://discord.paperback.moe/)
|
||||
* ⭐ **[Aidoku](https://aidoku.app/)** - Manga Reader / [GitHub](https://github.com/Aidoku/Aidoku)
|
||||
* ⭐ **[Readera](https://readera.org/)** - Ebook Reader
|
||||
* [Suwatte](https://www.suwatte.app/) - Comic Reader / [Converter](https://seyden.github.io/SuwatteConverter/suwatte) / [Discord](https://discord.gg/8wmkXsT6h5) / [GitHub](https://github.com/suwatte)
|
||||
* [Suwatte](https://www.suwatte.app/) - Comic Reader / [Discord](https://discord.gg/8wmkXsT6h5) / [GitHub](https://github.com/suwatte)
|
||||
* [Prologue](https://prologue.audio/) - Audiobooks for Plex
|
||||
* [JellyBook](https://github.com/JellyBookOrg/JellyBook) - Ebook Reader
|
||||
* [Eboox](https://apps.apple.com/app/eboox-fb2-epub-book-reader/id1489172068) - Ebook Reader
|
|
@ -34,6 +34,7 @@
|
|||
|
||||
* ⭐ **[Cimaleek](https://m.cimaleek.to/)** - Movies / TV
|
||||
* ⭐ **[FaselHD](https://www.faselhds.xyz/)**, [2](https://web33.faselhd1watch.one/) - Movies / TV / Anime / Sub / 1080p / Use [Adblock](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/adblock-vpn-privacy/#wiki_.25BA_adblocking)
|
||||
* [ma3ak](https://ma3ak.top/) - Movies / TV
|
||||
* [ArabLionz](https://arlionztv.ink/) - Movies / TV / Sub / 1080p
|
||||
* [egydead](https://egydead.space/) - Movies / TV / Anime / Sub / 1080p
|
||||
* [FajerShow](https://fajer.show) - Movies / TV / Cartoons / Sub / 720p
|
||||
|
@ -106,7 +107,7 @@
|
|||
|
||||
## ▷ Downloading / ডাউনলোডিং
|
||||
|
||||
* [MLSBD](https://mlsbd.shop/) - Movies / TV
|
||||
* [MLSBD](https://mlsbd.co/) - Movies / TV
|
||||
* [ftpbd](http://ftpbd.net/) - Movies / TV / Anime
|
||||
* [Bangla Song](https://www.music.com.bd/) - Bangla Song / Music / Radio / MP3
|
||||
* [Bhoot FM](https://bhoot-fm.com/) - Bhoot FM Archive / Paranormal Radio Show
|
||||
|
@ -127,12 +128,12 @@
|
|||
|
||||
## ▷ Torrenting / Торентиране
|
||||
|
||||
* [Zamunda](https://zamunda.net/) - Registration Required / Video / Audio / Books
|
||||
* [ArenaBG](https://arenabg.com/en/) - Registration Required / Movies / TV
|
||||
* [Zamunda](https://zamunda.net/) - Video / Audio / Books / Sign-Up Required
|
||||
* [ArenaBG](https://arenabg.com/en/) - Movies / TV / Sign-Up Required
|
||||
|
||||
## ▷ Streaming / Стрийминг
|
||||
|
||||
* [NovaPlay](https://play.nova.bg/) - TV / Live / Sub / Dub / 1080p
|
||||
* [NovaPlay](https://play.nova.bg/) - Live TV / TV / Sub / Dub / 1080p
|
||||
* [Filmi24](https://filmi24.com/) - Movies / Sub / Dub / 720p
|
||||
* [FilmiPlay](https://filmiplay.com/) - Movies / Sub / Dub / 720p
|
||||
* [Filmifen](https://filmifen.com/) - Movies / Sub / Dub
|
||||
|
@ -176,9 +177,15 @@
|
|||
* [V2EX](https://v2ex.com/) or [ZongScan](https://www.zongscan.com/) - Programming Forum
|
||||
* [BookStack](https://www.bookstack.cn/) - Developer / Programming Guides
|
||||
* [Gitee](https://gitee.com/) - GitHub Alternative
|
||||
* [hkslbrowser](http://www.cslds.org/hkslbrowser/index.jsp) - Chinese Sign Language Dictionary
|
||||
|
||||
## ▷ GFW Bypass
|
||||
|
||||
* **Note** - Keep in mind some VPNs claiming to bypass GFW are made by Chinese agencies as a way to get user info. We recommend avoiding any generic ones, and sticking to ones listed in the [VPN section](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/adblock-vpn-privacy#wiki_.25BA_vpn).
|
||||
|
||||
***
|
||||
|
||||
* ↪️ **[Anti-Censorship Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/adblock-vpn-privacy#wiki_.25B7_anti-censorship)**
|
||||
* ⭐ **[Censorship Bypass Guide](https://censordex.fr.to/)** - Censorship Bypass Guide
|
||||
* [gfwlist](https://github.com/gfwlist/gfwlist), [XX-Net](https://github.com/XX-net/XX-Net), [ClashVerge](https://www.clashverge.dev/) / [GitHub](https://github.com/clash-verge-rev/clash-verge-rev), [r/dumbclub](https://www.reddit.com/r/dumbclub/) or [New Pac](https://github.com/Alvin9999/new-pac) - Bypass Chinese Firewall
|
||||
* [gfw.report](https://gfw.report/) - GFW Information
|
||||
|
@ -361,11 +368,13 @@
|
|||
* [Bombuj](https://bombuj.si/) - Movies / TV
|
||||
* [Sledujteto](https://www.sledujteto.cz/) - Movies / TV / Anime / 1080p
|
||||
* [videoserialy](https://videoserialy.to/) - Movies / TV / Anime / 1080p
|
||||
* [gauc](https://gauc.si/) - Movies / TV / Anime / 1080p / Region Locked
|
||||
* [Dupe](https://dupe.cz/) - Movies / TV / Anime / Concerts / 1080p / Region Locked
|
||||
* [svetserialu](https://svetserialu.io/) - Movies / TV / Anime / 1080p
|
||||
* [sledujfilmy](https://ww.sledujfilmy.io/) or [serialy](https://serialy.sx/) - Movies / TV / Anime / 1080p
|
||||
* [najserialy](https://www.najserialy.io/) - Movies / TV / Anime / 1080p
|
||||
* [Ceskatelevize](https://www.ceskatelevize.cz/ivysilani/) - Movies / TV
|
||||
* [StarSites](https://goal.starsites.fun/) - Live Football / Hockey
|
||||
* [StarStreams](https://starstreams.pro/) - Live Football / Hockey
|
||||
* [CSFD](https://www.csfd.cz/) - Czech Film Database
|
||||
|
||||
## ▷ Reading / Čtení
|
||||
|
@ -426,7 +435,7 @@
|
|||
* [Perspective Monde](https://perspective.usherbrooke.ca/) - Datasets / Statistics
|
||||
* [Prix Carburants](https://www.prix-carburants.gouv.fr/) - Gas Prices
|
||||
* [Donnons](https://donnons.org/) - Item Donation
|
||||
* [Rochester LSF](https://projects.lib.rochester.edu/lsf-asl-app/dictionary/) - French Sign Langauge Dictionary
|
||||
* [Rochester LSF](https://projects.lib.rochester.edu/lsf-asl-app/dictionary/), [Signsuisse](https://www.sgb-fss.ch/signsuisse/) or [LSQ](https://lsq-fr.ca/) - French Sign Langauge Dictionaries
|
||||
|
||||
## ▷ Downloading / Téléchargement
|
||||
|
||||
|
@ -450,18 +459,17 @@
|
|||
|
||||
* ⭐ **[RgShows](https://www.rgshows.me/)** - Movies / TV / Anime / 4K / [API](https://embed.rgshows.me/) / [Guide](https://www.rgshows.me/guide.html) / [Discord](https://discord.gg/bosskingdom-comeback-1090560322760347649)
|
||||
* ⭐ **[Movix](https://www.movix.site/)** - Movies / TV / Anime / [Status](https://movix.website/)
|
||||
* [Deksov](https://deksov.com/) - Movies / TV / Anime
|
||||
* [Darkiworld](https://darkiworld11.com/) - Movies / TV / Anime / [Status](https://t.me/tirexo_officiel)
|
||||
* [cinepulse](https://cinepulse.to/) - Movies / TV / Anime
|
||||
* [xalaflix](https://xalaflix.gg/) - Movies / TV / Anime / Dub / [Status](https://xalaflix.fun/), [2](https://xalaflix.fr/r%C3%A9pertoire.html) / [Discord](https://discord.gg/7myEXg2tQF)
|
||||
* [frembed](https://frembed.lat/) - Movies / TV / Anime / Dub / [Status](https://t.me/+gBSyUOO_3D1mZDZk)
|
||||
* [coflix](https://coflix.cc/) - Movies / TV / Anime / [Status](https://t.me/+3i7POlIHqqVmMWMx)
|
||||
* [Kordoz](https://www.kordoz.com/) - Movies / TV / Anime
|
||||
* [filmoflix](https://www.filmoflix.is/) - Movies / TV / Anime
|
||||
* [yakriv](https://yakriv.com/) - Movies / TV / Anime
|
||||
* [dpstream](https://dpstream.fyi/) - Movies / TV / Anime
|
||||
* [yakriv](https://yakriv.com/), [Kordoz](https://www.kordoz.com/) or [Deksov](https://deksov.com/) - Movies / TV / Anime
|
||||
* [Paradise lost.666](https://mfp666.blogspot.com/) - Classic French Movies / TV / Music
|
||||
* [Movie to Review](https://filmarevoirnad.blogspot.com/) - Classic French Movies
|
||||
* [Ciné-Bis-Art](https://humungus-cinebisart.blogspot.com/) - Movies / Signup
|
||||
* [Ciné-Bis-Art](https://humungus-cinebisart.blogspot.com/) - Movies / Sign-Up Required
|
||||
* [TF1](https://www.tf1.fr/) - Movies / TV / Anime / Live TV / French VPN Required for Some Content
|
||||
* [french-streaming](https://www.french-streaming.tv) - Movies / TV / Anime
|
||||
* [cinestream](https://cinestream.info/) - Movies / TV / Anime
|
||||
|
@ -474,13 +482,15 @@
|
|||
* [toonanime](https://www.toonanime.biz/) - Anime / Sub / Dub
|
||||
* [VoirAnime](https://v6.voiranime.com/) - Anime / Sub / 1080p
|
||||
* [vostfree](https://vostfree.ws/) - Anime / Sub / 1080p
|
||||
* [animesultra](https://v6.animesultra.net/) - Anime / Sub / Dub
|
||||
* [anime-kami](https://anime-kami.com/) - Anime
|
||||
* [animesultra](https://animesultra.org/) - Anime / Sub / Dub
|
||||
* [French Anime](https://french-anime.com/) - Anime / Sub / 1080p
|
||||
* [Streaming-integrale](https://streaming-integrale.com/) - Anime Sub / Dub / 1080p
|
||||
* [vostanime](https://ww7.vostanime.fr/) - Anime / Sub / 1080p
|
||||
* [animeko](https://w2.animeko.ws/) - Anime / Sub / 1080p
|
||||
* [anime-sama](https://anime-sama.fr/) - Anime / Sub / 1080p
|
||||
* [molotov.tv](https://www.molotov.tv/) - Live TV
|
||||
* [tvradiozap](https://tvradiozap.eu/) - Live TV
|
||||
* [oohquelbut](https://quelbut.me/) - Live Sports
|
||||
* [kiboanime](https://www.kiboanime.app/) - Anime Streaming Mobile App
|
||||
* [Grafikart](https://grafikart.fr/) - Programming Courses
|
||||
|
@ -507,7 +517,6 @@
|
|||
|
||||
# ► German / Deutsch
|
||||
|
||||
* 🌐 **[Awesome German Piracy](https://github.com/SeppPenner/awesome-german-piracy)** - German / Piracy Site Index
|
||||
* ⭐ **[Tarnkappe](https://tarnkappe.info/forum/)** - Piracy Discussion / [Telegram](https://t.me/Tarnkappe_info)
|
||||
* [RR.Topliste](https://toplist.raidrush.ws/) - Piracy Site List
|
||||
* [xrel](https://www.xrel.to/) - Scene Release / P2P Tracker
|
||||
|
@ -515,6 +524,7 @@
|
|||
* [animexx](https://www.animexx.de/) - German Anime Community
|
||||
* [WiiDatabase](https://wiidatabase.de/) - Nintendo Homebrew
|
||||
* [F-Online](https://app.f-online.at/) - Austrian Driving License Learning App
|
||||
* [Signsuisse](https://www.sgb-fss.ch/signsuisse/) or [SignDict](https://signdict.org) - German Sign Language Dictionaries
|
||||
|
||||
## ▷ Downloading / Herunterladen
|
||||
|
||||
|
@ -541,6 +551,7 @@
|
|||
* ⭐ **[Kinoger](https://kinoger.com/)** - Movies / TV / 1080p
|
||||
* ⭐ **[S.TO](https://s.to/)**, [2](https://serienstream.to/) - TV / Anime / Dub / 720p
|
||||
* ⭐ **[FilmPalast](https://filmpalast.to)** - Movies / TV / Dub / 720p
|
||||
* [MegaFilme](https://megafilme.vip/) - Movies / TV
|
||||
* [Cineby](https://www.cineby.app/) - Movies / TV / Anime / 1080p / Auto-Next / [Discord](https://discord.gg/C2zGTdUbHE) (unofficial)
|
||||
* [Kinoking](https://kinoking.cc/) - Movies / TV / Anime / Dub / 1080p
|
||||
* [Kinos](https://www.kinos.to/) - Movies / TV / Dub / 720p
|
||||
|
@ -564,6 +575,7 @@
|
|||
* [2ix2](https://www.2ix2.com/) - Live TV
|
||||
* [livestream](https://www.livestream.ad/) - Live TV
|
||||
* [dtvd](https://dtvd.net/) - Live TV
|
||||
* [Zapp](https://github.com/mediathekview/zapp) - Live TV / Android
|
||||
* [Studyflix](https://studyflix.de/) - Courses
|
||||
* [mediathekviewweb](https://mediathekviewweb.de/) - IPTV
|
||||
* [hoerspielprojekt](https://www.hoerspielprojekt.de/) - Radio
|
||||
|
@ -600,7 +612,7 @@
|
|||
* [GreekTV](https://greektv.app/) - IPTV
|
||||
* [NetNix](https://netnix.tv/) - Live TV
|
||||
* [stokourbeti](https://stokourbeti.online/) - Live Sports
|
||||
* [GreekSport](https://greeksport.netlify.app/) - Live Sports
|
||||
* [GreekSport](https://greeksport.beer/) - Live Sports
|
||||
* [SportOnTV](https://sportontv.xyz/) - Live Sports / [Discord](https://discord.gg/YhQPSSMps2)
|
||||
* [Foothubhd](https://foothubhd.online/) - Live Football / [Discord](https://discord.com/invite/KGgsRmKZPC)
|
||||
* [Live24](https://live24.gr/) or [e-Radio](https://www.e-radio.gr/) - Radio
|
||||
|
@ -617,7 +629,7 @@
|
|||
* [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
|
||||
* [RedAlert](https://redalert.me/index_en.html) or [RocketAlert](https://rocketalert.live/) - Rocket Alerts
|
||||
* [RedAlert](https://redalert.me/index_en.html), [Tzevaadom](https://www.tzevaadom.co.il/) or [RocketAlert](https://rocketalert.live/) - Rocket Alerts
|
||||
|
||||
## ▷ Streaming / הזרמה
|
||||
|
||||
|
@ -632,22 +644,32 @@
|
|||
* [AnimeBlood](https://animebloodsub.net/) - Anime / Download / Sub
|
||||
* [ultsub](https://ultsub.co.il/) - Anime / Sub / [Telegram](https://t.me/UltSub) / [Discord](https://discord.gg/4Bc8b2W)
|
||||
|
||||
## Reading
|
||||
|
||||
* [mangashelf](https://mangashelf.co.il/) - Manga
|
||||
|
||||
***
|
||||
|
||||
# ► Hungarian / Magyar
|
||||
|
||||
* [TorrentEmpire](https://torrent-empire.me/) - Torrent Discussion
|
||||
* [Turistautak](https://turistautak.hu/) - Hungarian Maps
|
||||
|
||||
## ▷ Streaming
|
||||
## ▷ Streaming / Streamelés
|
||||
|
||||
* [moviedrive](https://moviedrive.hu/) - Movies / TV / Sub / Dub / 1080p / [Discord](https://discord.com/invite/blackfire)
|
||||
* ⭐ **[moviedrive](https://moviedrive.hu/)** - Movies / TV / Sub / Dub / 1080p / [Discord](https://discord.com/invite/blackfire)
|
||||
* [hdmozi](https://hdmozi.hu/) - Movies / TV / Sub / Dub / 1080p
|
||||
* [OnlineFilmekIngyen](https://www.onlinefilmekingyen1.com/) - Movies / Sub / Dub / 1080p
|
||||
* [filmezz](https://filmezz.club/) - Movies / TV / Dub / 720p
|
||||
* [filmezek](https://filmezek.com/) - Movies
|
||||
* [mozicsillag](https://mozicsillag1.me/) - Movies / TV / Sub / Dub / 720p
|
||||
* [animedrive](https://animedrive.hu/) - Anime / [Discord](https://discord.com/invite/blackfire)
|
||||
* [Myonlinerádió](https://myonlineradio.hu/) - Radio Stations
|
||||
|
||||
## ▷ Torrenting / Torrentezés
|
||||
|
||||
* [iTorrent](https://itorrent.ws/) - Movies / TV / Sub / Dub / 1080p / 720p / No-signup
|
||||
* [HunTorrent](https://huntorrent.org/) - Movies / TV / Sub / Dub / 1080p
|
||||
* [TorrentEmpire](https://torrent-empire.me/) - Torrent Discussion
|
||||
|
||||
***
|
||||
|
||||
|
@ -657,10 +679,11 @@
|
|||
* [Bhashini](https://bhashini.gov.in/) - Live Translation App / Text and Speech
|
||||
* [PCPriceTracker](https://pcpricetracker.in/) - PC Component Price Tracking
|
||||
* [Jagraan Josh](https://www.jagranjosh.com/) - Indian Education / Exam News
|
||||
* [IndianSignLanguage](https://indiansignlanguage.org/) - Indian Technical Sign Language Dictionary
|
||||
|
||||
## ▷ Downloading
|
||||
|
||||
* ⭐ **[VegaMovies](http://vegamovies.bot/)** - Movies / TV / Anime / 1080p / 4K / [Telegram](https://telegram.dog/vega_officials)
|
||||
* ⭐ **[VegaMovies](https://vegamovies.gmbh/)**, [2](https://moviesflix.ad/) - Movies / TV / Anime / 1080p / 4K / [Telegram](https://telegram.dog/vega_officials)
|
||||
* ⭐ **[UHDMovies](https://modlist.in/?type=uhdmovies)** - Movies / 4K
|
||||
* ⭐ **[MkvCinemas](https://mkvcinemas.moi/)** - Movies / TV / Anime / Sub / Dub / 1080p / 4K
|
||||
* ⭐ **[HDHub4u](https://hdhublist.com/?re=hdhub)** - Movies / TV / 1080p / [Telegram](https://hdhub4u.frl/join-our-group/)
|
||||
|
@ -670,8 +693,8 @@
|
|||
* ⭐ **[AToZ Cartoonist](https://atozcartoonist.me/)** - Cartoons / Anime / Sub / Dub / 1080p / [Discord](https://discord.com/invite/ZUW8yzDutd)
|
||||
* ⭐ **[ToonsHub](https://www.toonshub.xyz/)** - Anime / Dub / 1080p / [Telegram](https://t.me/s/toonshubupdates) / [Discord](https://dsc.gg/toonshub)
|
||||
* ⭐ **[Free Lossless Desi Music](https://hindi-lossless.blogspot.com/)** - Music / FLAC
|
||||
* ⭐ **[TamilBlasters](https://www.tamilblasters.coupons/)** - Movies / TV / Sub / Dub / 1080p / 4K / Anime / Indian Languages
|
||||
* ⭐ **[TamilMV](https://www.1tamilmv.blue/)** - Movies / TV / Sub / Dub / 1080p / 4K / Anime / Indian Languages
|
||||
* ⭐ **[Tamil Blasters](https://www.1tamilblasters.yachts/)** - Movies / TV / Sub / Dub / 1080p / 4K / Anime / Indian Languages
|
||||
* ⭐ **[TamilMV](https://www.1tamilmv.vc/)** - Movies / TV / Sub / Dub / 1080p / 4K / Anime / Indian Languages
|
||||
* [9xFlix](https://www.9xflix.me/) - Movies / TV / Anime
|
||||
* [Bollyflix](https://bollyflix.army/) - Movies / TV / Anime
|
||||
* [Mallumv](https://mallumv.guru/) - Movies / Sub / Dub / 1080p / [Telegram](https://t.me/MalluMvoff)
|
||||
|
@ -683,7 +706,7 @@
|
|||
* [Cinevood](https://cinevood.net/) - Movies / TV / 1080p
|
||||
* [Cinemalux](https://cinemalux.store/) - Movies / TV / 1080p
|
||||
* [ProtonMovies](https://m2.protonmovies.top/) - Movies / TV
|
||||
* [OlaMovies](https://olamovies.top/) - Movies / TV / Sub / Dub / 1080p / 4K / Use [Adblock](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/adblock-vpn-privacy/#wiki_.25BA_adblocking) / Chrome Required
|
||||
* [OlaMovies](https://olamovies.top/) - Movies / TV / Sub / Dub / 1080p / 4K / Use [Adblock](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/adblock-vpn-privacy/#wiki_.25BA_adblocking) / Chromium Required
|
||||
* [Fojik](https://fojik.site/) - Movies
|
||||
* [MoviesFD](https://moviesfd.vip/) - Movies / Sub / Dub / 1080p
|
||||
* [Paidnaija](https://paidnaija.net/) - Movies / Sub / 720p / [Telegram](https://t.me/joinchat/E9cst-5oQDA5MzRk)
|
||||
|
@ -696,7 +719,6 @@
|
|||
* [PikaHD](https://pikahd.com/) - Anime / Dub / 1080p
|
||||
* [Anilot.in](https://www.animeraja.in/) - Anime / 1080p / [Telegram](https://t.me/Anilot_Anime)
|
||||
* [Toonhub4u](https://toonhub4u.me/) - Anime / Cartoon / Dub / 1080p / [Telegram](https://telegram.me/joinchat/oHRgJ6SMZ6c3OTI1)
|
||||
* [TamilToon](https://tamiltoon.net/) - Tamil / Telugu / Hindi / English / Cartoons
|
||||
* [New Hindi Animes](https://t.me/New_Hindi_Animes) - Anime Telegram Chat
|
||||
* [Indian Flac Songs](https://t.me/indianflacsongs) - Music / FLAC
|
||||
* [Malayalam Film Songs](https://t.me/cc_NewMalayalamMp3) - Audio
|
||||
|
@ -704,8 +726,8 @@
|
|||
|
||||
## ▷ Torrenting
|
||||
|
||||
* ⭐ **[TamilBlasters](https://www.tamilblasters.coupons/)** - Movies / TV / Sub / Dub / 1080p / 4K / Anime / Indian Languages
|
||||
* ⭐ **[TamilMV](https://www.1tamilmv.blue/)** - Movies / TV / Sub / Dub / 1080p / 4K / Anime / Indian Languages
|
||||
* ⭐ **[Tamil Blasters](https://www.1tamilblasters.yachts/)** - Movies / TV / Sub / Dub / 1080p / 4K / Anime / Indian Languages
|
||||
* ⭐ **[TamilMV](https://www.1tamilmv.vc/)** - Movies / TV / Sub / Dub / 1080p / 4K / Anime / Indian Languages
|
||||
|
||||
## ▷ Streaming
|
||||
|
||||
|
@ -713,15 +735,14 @@
|
|||
* ⭐ **[HydraHD](https://hydrahd.sh/)** - Movies / TV / Anime / Auto-Next / [Status](https://hydrahd.info/)
|
||||
* ⭐ **[RgShows](https://www.rgshows.me/)** - Movies / TV / Anime / 4K / [API](https://embed.rgshows.me/) / [Guide](https://www.rgshows.me/guide.html) / [Discord](https://discord.gg/bosskingdom-comeback-1090560322760347649)
|
||||
* ⭐ **[ToonStream](https://toonstream.love/)** - Cartoons / Anime / 1080p / [Telegram](https://telegram.me/toonstream)
|
||||
* ⭐ **[AniSAGA](https://anisaga.org/)** - Anime / Dub / 1080p
|
||||
* ⭐ **[Anime World India](https://watchanimeworld.in/)** - Anime
|
||||
* ⭐ **[Anime World India](https://watchanimeworld.in/)**, [2](https://animesalt.cc/) - Anime
|
||||
* ⭐ **[MultiMovies](https://multimovies.guru)** - Movies / TV / .guru Always Redirects to Main
|
||||
* ⭐ **[Anime World India](https://anime-world.app/)** - Anime
|
||||
* [Streamblasters](https://www.streamblasters.city/) - Movies / TV / Sub / Dub / 1080p / 4K / Anime / Indian Languages
|
||||
* [TamilMV](https://www.1tamilmv.blue/) - Movies / TV / Sub / Dub / 1080p / 4K / Anime / Indian Languages
|
||||
* [Tamil Blasters](https://www.1tamilblasters.yachts/) - Movies / TV / Sub / Dub / 1080p / 4K / Anime / Indian Languages
|
||||
* [TamilMV](https://www.1tamilmv.vc/) - Movies / TV / Sub / Dub / 1080p / 4K / Anime / Indian Languages
|
||||
* [Einthusan](https://einthusan.tv/) - Movies / 1080p
|
||||
* [TamilCrow](https://www.1tamilcrow.net/) - Tamil Movies / TV / Dub / 720p / 1080p
|
||||
* [TamilGun](https://tamilgun.group/) - Tamil Movies / TV / Dub / 720p / 1080p
|
||||
* [tamilbulb](https://tamilbulb.world/) - Tamil Movie / TV
|
||||
* [TamilDhool](https://www.tamildhool.net/) - Tamil TV Shows / TV Serials / 720p / 1080p
|
||||
* [tamilpirates](https://tamilpirates.icu/) - Tamil & Indian languages Movies / TV / Dub / 720p / 1080p
|
||||
* [TamilToon](https://tamiltoon.net/) - Tamil / Telugu / Hindi / English / Cartoons / Anime
|
||||
|
@ -753,7 +774,7 @@
|
|||
* [SuccessCDs](https://www.successcds.net/) - CBSE Study Guides
|
||||
* [Digital Library of India](https://dli.sanskritdictionary.com) - Books
|
||||
* [NDLI](https://ndl.iitkgp.ac.in/) - Educational Resources / Documents
|
||||
* [Sanskrit Documents](https://sanskritdocuments.org) or [gitasupersite](https://www.gitasupersite.iitk.ac.in/) - Esoteric Texts
|
||||
* [Sanskrit Documents](https://sanskritdocuments.org), [sanskritsahitya](https://sanskritsahitya.org/) or [gitasupersite](https://www.gitasupersite.iitk.ac.in/) - Esoteric Texts
|
||||
* [Hindwi](https://hindwi.org/) - Hindi Poems
|
||||
|
||||
***
|
||||
|
@ -804,6 +825,7 @@
|
|||
# ► Italian / Italiano
|
||||
|
||||
* 🌐 **[The Italian Corsairs](https://rentry.co/the-italian-corsairs)** - Piracy Sites List
|
||||
* [Signsuisse](https://www.sgb-fss.ch/signsuisse/) - Italian Sign Language Dictionary
|
||||
|
||||
## ▷ Downloading / Scaricare
|
||||
|
||||
|
@ -819,18 +841,19 @@
|
|||
|
||||
## ▷ Streaming
|
||||
|
||||
* [StreamingCommunity](https://streamingcommunityz.app/) - Movies / TV / 1080p / [Status](https://telegra.ph/Link-Aggiornato-StreamingCommunity-09-29)
|
||||
* [Altadefinizione](https://altadefinizionegratis.gold/) - Movies / Dub / 1080p / [Telegram](https://t.me/+x_9jyFBbYBpkYTRi)
|
||||
* [CB01](https://cb01net.buzz/), [2](https://cb01.uno) - Movies / TV / Dub / 1080p / [Status](https://cineblog01.red/) / [Telegram](https://t.me/s/cb01_nuovo_indirizzo_ufficiale)
|
||||
* [CasaCinema](https://casacinema.world/) - Movies / TV / Anime / Sub / Dub / 1080p
|
||||
* [Mediaset Infinity](https://mediasetinfinity.mediaset.it/) - Live TV / Movies / TV / Documentaries / Radio / Dub / Italian VPN Required / Signup Unlocks Extra Features
|
||||
* [RaiPlay](https://www.raiplay.it/) - Live TV / Movies / TV / Dub / Italian VPN Required / Signup Unlocks Channel History
|
||||
* [AnimeUnity](https://www.animeunity.so/) - Anime / Sub / Dub / 1080p / [Telegram](https://t.me/animeunitytv)
|
||||
* [StreamingCommunity](https://streamingcommunityz.video/) - Movies / TV / 1080p / [Status](https://telegra.ph/Link-Aggiornato-StreamingCommunity-09-29)
|
||||
* [Altadefinizione](https://altadefinizionegratis.love/) - Movies / Dub / 1080p / [Status](https://telegra.ph/Link-Aggiornato-Altadefinizione-08-07) / [Telegram](https://t.me/+x_9jyFBbYBpkYTRi)
|
||||
* [CB01](https://cb01net.fun/), [2](https://cb01.uno) - Movies / TV / Dub / 1080p / [Status](https://cineblog01.red/) / [Telegram](https://t.me/s/cb01_nuovo_indirizzo_ufficiale)
|
||||
* [CasaCinema](https://casacinema.lat/) - Movies / TV / Anime / Sub / Dub / 1080p
|
||||
* [Mediaset Infinity](https://mediasetinfinity.mediaset.it/) - Live TV / Movies / TV / Documentaries / Radio / Dub / Italian VPN Required / Sign-Up Unlocks Extra Features
|
||||
* [RaiPlay](https://www.raiplay.it/) - Live TV / Movies / TV / Dub / Italian VPN Required / Sign-Up Unlocks Channel History
|
||||
* [AnimeWorld](https://www.animeworld.ac/) - Anime / Sub / Dub / 1080p / [Mirrors](https://www.animeworlditalia.com/) / [Telegram](https://t.me/AnimeWorldITA2)
|
||||
* [anidream](https://anidream.cc/) - Anime / 1080p
|
||||
* [AnimeSaturn](https://www.animesaturn.cx/) - Anime / Sub / Dub / 1080p / [Mirrors](https://www.animesaturn.me/) / [Telegram](https://t.me/AnimeSaturnRedirect)
|
||||
* [AnimeUnity](https://www.animeunity.so/) - Anime / Sub / Dub / 1080p / [Telegram](https://t.me/animeunitytv)
|
||||
* [AniDream](https://anidream.cc/) - Anime / Cartoons / Sub / Dub / 1080p / [Telegram](https://t.me/anidreamindex)
|
||||
* [Toonitalia](https://toonitalia.xyz/) - TV / Anime / Sub / Dub
|
||||
* [Arcoiris TV](https://www.arcoiris.tv/) - Italian TV / 720p
|
||||
* [hattrick](https://hattrick.ws/) - Live Football
|
||||
* [Kodi On Demand](https://guruhitech.com/kodi-on-demand-kod-kodi-add-on-tutte-le-info/) - Streaming Kodi Addon
|
||||
* [Ovovideo](http://ovovideo.com/) - Video Encyclopedia
|
||||
* [Raiplay Sound](https://www.raiplaysound.it/) - Podcasts / Radio
|
||||
|
@ -878,7 +901,7 @@
|
|||
## ▷ Streaming / ストリーミング
|
||||
|
||||
* [sudatchi](https://sudatchi.com/) - Anime
|
||||
* [NicoVideo](https://www.nicovideo.jp/) - Japanese YouTube Alternative
|
||||
* [NicoVideo](https://www.nicovideo.jp/) - Japanese YouTube Alternative / [Desktop](https://github.com/tor4kichi/Hohoema)
|
||||
* [JP-Films](https://jp-films.com/) - Classic Japanese Movies / TV / 1080p
|
||||
* [Japanese Animated Film Classics](https://animation.filmarchives.jp/index.html) - Japanese Animation Archive
|
||||
* [Abema](https://abema.tv/) - Live TV
|
||||
|
@ -975,7 +998,6 @@
|
|||
* 🌐 **[Awesome Freedom](https://github.com/hiddify/awesome-freedom)** - Tools Index
|
||||
* 🌐 **[Awesome AI channels](https://github.com/AminTaheri23/Awesome-AI-telegram-gp-and-channel)** - AI Telegram Channels / Groups Index
|
||||
* 🌐 **[Free VPN Telegram Channels](https://bin.disroot.org/?85b66e37980b245e#DRbHouuNMfXGRdqPs68y6nGLULhHdvdXzuPdDmBxsyi2)** - Free VPNs Index
|
||||
* [PersianBlocker](https://github.com/MasterKia/PersianBlocker) - Persian Adblock Filters + Guides
|
||||
* [Wudooh](https://wudooh.app/) - Make Persian Text Clearer
|
||||
* [cscot](https://cscot.pages.dev/2023/07/10/v2ray-geoip-iran/) - V2Ray GeoIP Guide
|
||||
* [IranFirewall](https://viewdns.info/iranfirewall/) - Iranian Firewall Block Test
|
||||
|
@ -986,7 +1008,7 @@
|
|||
|
||||
* 🌐 **[Persian Telegram Courses](https://rentry.co/sn66v)** - Persian Courses Index
|
||||
* [git_ir](https://t.me/git_ir) - Programming Courses
|
||||
* [soft98](https://soft98.ir/) - Courses / Software / Games / [Anti-Adblock Fix](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#soft98-note)
|
||||
* [soft98](https://soft98.ir/) - Courses / Software / Games / [Anti-Adblock Fix](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#soft98-note) / PW: `soft98.ir`
|
||||
* [Old Persian Games](https://oldpersiangames.org/) - Iranian Games
|
||||
* [Download.ir](https://download.ir/) - Video / Software / ROMs / Books
|
||||
* [DigiMovie](https://digimoviez.com/) - Movies / TV / Sub / Dub / 1080p
|
||||
|
@ -1087,7 +1109,7 @@
|
|||
|
||||
# ► Portuguese / Português
|
||||
|
||||
* **Note** - Brazil is known for having lots of site blocking, try using a [VPN](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/adblock-vpn-privacy#wiki_.25BA_vpn) if you cannot access one.
|
||||
* **Note** - Brazil is known for blocking many sites, try using a [VPN](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/adblock-vpn-privacy#wiki_.25BA_vpn) if you can't access one.
|
||||
|
||||
***
|
||||
|
||||
|
@ -1160,6 +1182,7 @@
|
|||
* [Núcleo do Conhecimento](https://www.nucleodoconhecimento.com.br) - Courses
|
||||
* [Escola Virtual Gov](https://www.escolavirtual.gov.br/catalogo) - Courses
|
||||
* [Veduca](https://veduca.org) - Courses
|
||||
* [Eaulas](https://eaulas.usp.br/portal/home) - Learning Videos
|
||||
* [Moodle](https://moodle.ifrs.edu.br/course/index.php?categoryid=38) - MOOC Courses
|
||||
* [Marcos Aba](https://www.youtube.com/@MarcosAba/videos) - Math Courses
|
||||
* [DIO](https://www.dio.me) - Development Courses
|
||||
|
@ -1266,10 +1289,11 @@
|
|||
|
||||
# ► Russian / Русский
|
||||
|
||||
* ⭐ **[РосКомСвобода](https://t.me/roskomsvoboda_discuss)** / [roskomsvoboda](https://t.me/roskomsvoboda) / [rks_org_Bot](https://t.me/rks_org_bot) or [protocol_vpn](https://t.me/protocol_vpn) - Censorship Discussion Telegrams
|
||||
* ⭐ **[РосКомСвобода](https://t.me/roskomsvoboda_discuss)** / [roskomsvoboda](https://t.me/roskomsvoboda) / [rks_org_Bot](https://t.me/rks_org_bot), [ru_tech_talk](https://t.me/ru_tech_talk) or [protocol_vpn](https://t.me/protocol_vpn) - Censorship Discussion Telegrams
|
||||
* [Ru.Board](https://forum.ru-board.com/) - Piracy Discussion Forum
|
||||
* [Hi!Load VPN](https://t.me/hlvpnbot) - Free Shadowsocks TG / 30GB per month / No Torrenting / [Support](https://t.me/highloadvpn)
|
||||
* [ClashVerge](https://www.clashverge.dev/) - Clash Client / Proxy / [GitHub](https://github.com/clash-verge-rev/clash-verge-rev)
|
||||
* [Hi!Load VPN](https://t.me/hlvpnbot) - Free Shadowsocks TG / 30GB per month / No Torrenting / [Support](https://t.me/highloadvpn)
|
||||
* [rublacklist](https://reestr.rublacklist.net/en/) - Blocked Sites List
|
||||
* [DXP](https://dxp.ru/) - Subtitles Tracker
|
||||
* [Proxy-Checker](https://proxy-checker.net/) - Proxy Checker
|
||||
|
@ -1294,8 +1318,8 @@
|
|||
|
||||
## ▷ Downloading / Скачивание
|
||||
|
||||
* ⭐ **[4PDA](https://4pda.to/forum/)** / Android, iOS / [App](https://github.com/slartus/4pdaClient-plus) / [Captcha Note](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#captcha-4pda), [2](https://doorsgeek.blogspot.com/2015/08/4pdaru-loginregister-captcha-tutorial.html)
|
||||
* [Androeed](https://androeed.store/), [2](https://androeed.ru/) - Android
|
||||
* ⭐ **[4PDA](https://4pda.to/forum/)** / Android, iOS / [App](https://github.com/slartus/4pdaClient-plus) / [Captcha Note](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#captcha-4pda)
|
||||
* [Androeed](https://androeed.store/), [2](https://androeed.ru/) / Android
|
||||
* [CWER](http://cwer.ru/), [2](http://cwer.ws/) - Video / Audio / Games / Books
|
||||
* [2BakSa](http://2baksa.ws/) - Video / Audio / Books
|
||||
* [Allmults](https://allmults.org/) - Cartoons / Sub / Dub / 1080p
|
||||
|
@ -1439,7 +1463,6 @@
|
|||
|
||||
## ▷ Streaming
|
||||
|
||||
* [Kukaj](https://vvv.kukaj.fi/) - Movies / TV
|
||||
* [jOj Archive](https://www.joj.sk/archiv) - Movies / TV
|
||||
* [Markiza](https://www.markiza.sk/) - Movies / TV
|
||||
* [rtvs](https://www.rtvs.sk/televizia/archiv) - TV
|
||||
|
@ -1517,7 +1540,7 @@
|
|||
|
||||
## ▷ Torrenting / Torrentear
|
||||
|
||||
* ⭐ **[MejorTorrent](https://www15.mejortorrent.rip/)** - Movies / TV / Documentaries / Castilian
|
||||
* ⭐ **[MejorTorrent](https://www36.mejortorrent.eu/)** - Movies / TV / Documentaries / Castilian
|
||||
* ⭐ **[Grantorrent.wtf](https://grantorrent.wtf/)** - Movies / TV / Documentaries / Castilian
|
||||
* [DonTorrent](https://donproxies.com/) - Movies / TV / Documentaries / Castilian / [.onion](https://dontorufwmbqhnoe2wvko5ynis6axf7bqod6wkmdvxmjyek64tantlqd.onion/) / [Telegram](https://t.me/s/DonTorrent)
|
||||
* [EliteTorrent](https://www.elitetorrent.wf/) - Movies / TV
|
||||
|
@ -1533,7 +1556,6 @@
|
|||
* [Hacktorrent](https://hacktorrent.men/) - Movies / TV / Anime / Latino
|
||||
* [Unionfansub](https://foro.unionfansub.com/index.php) - Anime
|
||||
* [Akiba-kei](http://akiba-team.org/) - Anime
|
||||
* [epublibre](https://www.epublibre.org/) - Books
|
||||
|
||||
## ▷ Streaming / Streamear
|
||||
|
||||
|
@ -1544,10 +1566,15 @@
|
|||
* [yaske](https://yaske.ru/) - Movies / TV / [Telegram](https://t.me/wwwyaskeru)
|
||||
* [Zonaleros](https://www.zona-leros.com/peliculas-hd-online-lat) - Movies / TV / 1080p / Latino
|
||||
* [Solo Latino](https://sololatino.net/) - Movies / TV / Anime / 1080p / Latino
|
||||
* [PelisxD](https://www.pelisxd.com/) - Movies / TV / Latino
|
||||
* [ModoCine](https://modocine.com/) - Movies / TV
|
||||
* [Tubepelis](https://www.tubepelis.com/) - Movies / TV
|
||||
* [poseidonhd2](https://www.poseidonhd2.co/) - Movies / TV
|
||||
* [PelisPlus](https://ww3.pelisplus.to/) - Movies / TV
|
||||
* [peligratis](https://peligratis.fun/) - Movies / TV
|
||||
* [La Movie](https://la.movie/) - Movies / TV
|
||||
* [hackstore2](https://hackstore2.com/) - Movies / TV
|
||||
* [cineplus](https://www.cineplus.lat) - Movies / TV
|
||||
* [RaroVHS](https://www.rarovhs.com/) - Rare Spanish Content
|
||||
* [PelisPedia](https://pelispedia.mov/) - Movies / TV / Latino
|
||||
* [rtvcplay](https://rtvcplay.co/) - Free Public Colombian TV
|
||||
* [futbollibrehd](https://futbollibrehd.cl/) - Live Sports
|
||||
|
@ -1559,7 +1586,6 @@
|
|||
* [Cinecalidad.tel](https://w1.cinecalidad.tel/) - Movies / Latino
|
||||
* [Cuevana2](https://www.cuevana2espanol.net/) - Movies / TV / Latino
|
||||
* [Cuevana3.biz](https://cuevana.biz/) - Movies / TV / Latino
|
||||
* [Locopelis](https://www.locopelis.com/), [2](https://www.repelis.net/) - Movies / NSFW / Latino
|
||||
* [detodopeliculas](https://detodopeliculas.nu/) - Movies / TV
|
||||
* [verpeliculasonline](https://verpeliculasonline.org/), [2](https://ver-peliculas-online.org/) - Movies / TV
|
||||
* [oscar220374](https://oscar220374.com/) - Movies / TV / Castilian
|
||||
|
@ -1592,6 +1618,7 @@
|
|||
* [JKAnime](https://jkanime.net/) - Anime / Sub
|
||||
* [monoschinos](https://ww1.monoschinos3.com/) - Anime / Sub
|
||||
* [TioAnime](https://tioanime.com/) - Anime / Sub
|
||||
* [animeav1](https://animeav1.com/) - Anime
|
||||
* [HenaoJara](https://henaojara.com/) - Anime / Sub
|
||||
* [AnimeFLV.net](https://www3.animeflv.net/) - Anime / Sub
|
||||
* [mundodonghua](https://www.mundodonghua.com/) - Anime / Sub
|
||||
|
@ -1601,12 +1628,13 @@
|
|||
* [AnimeID](https://www.animeid.tv/) - Anime / Sub
|
||||
* [animeyt](https://animeyt.es/) - Anime / Sub
|
||||
* [LACartoons](https://www.lacartoons.com/) - Cartoons
|
||||
* [LatinLucha](https://latinlucha.es/) - WWE / MMA Replays / Latino
|
||||
* [LatinLucha](https://latinluchas.com/) - WWE / MMA Replays / Latino
|
||||
* [EventosHQ](https://www.eventoshq.me/) - WWE / MMA Replays / Latino
|
||||
* [Tangos78rpm](https://www.tangos78rpm.com/) - Classic Records
|
||||
|
||||
## ▷ Reading / Leer
|
||||
|
||||
* ⭐ **[EpubLibre](https://www.epublibre.org/)** - Books / Torrents / VPN may be Required
|
||||
* ⭐ **[Spanish Reading CSE](https://cse.google.com/cse?cx=85e4a562f2abf40f6)** / [SMAGX](https://smagx.com/) - Multi-Site Book Search
|
||||
* [eBiblioteca](https://ebiblioteca.org/) - Books
|
||||
* [ePub Gratis](https://www.epubgratis.info/) - Books
|
||||
|
@ -1647,6 +1675,7 @@
|
|||
# ► Swedish / Sverige
|
||||
|
||||
* [Eniro](https://www.eniro.se/) - Search
|
||||
* [teckensprakslexikon](https://teckensprakslexikon.su.se/) - Swedish Sign Language Dictionary
|
||||
|
||||
## ▷ Streaming
|
||||
|
||||
|
@ -1683,7 +1712,7 @@
|
|||
|
||||
* ⭐ **[Hdfilmcehennemi](https://www.hdfilmcehennemi.nl/)** - Movies / TV / Sub / Dub / 1080p
|
||||
* ⭐ **[Yabancıdizi](https://yabancidizi.so/)** - Movies / TV / Sub / Dub / 1080p / [Telegram](https://t.me/s/yabancidizipw)
|
||||
* ⭐ **[FullHDFilmizlesene](https://www.fullhdfilmizlesene.de/)**, [2](https://www.fullhdfilmizlesene.com) - Movies / Dub / Sub / 1080p
|
||||
* ⭐ **[FullHDFilmizlesene](https://www.fullhdfilmizlesene.de/)**, [2](https://www.fullhdfilmizlesene.com) - Movies / Sub / Dub / 1080p
|
||||
* ⭐ **[Dizi Film Botu](https://t.me/Difix9Bot)** - TV / Sub / Dub / Anime / 1080p / 2K / 4K / Movies / TV / Documentaries
|
||||
* [Dizipal](https://www.google.com/search?q=intitle:"dizipal.org"&num=1) - Movies / TV / Sub / Dub / 1080p
|
||||
* [Dizilla](https://dizilla.club) - Movies / TV / Sub / Dub / 1080p
|
||||
|
@ -1703,6 +1732,7 @@
|
|||
## ▷ Reading / Okuma
|
||||
|
||||
* [Kitap](https://t.me/addlist/ioGiM9KIZvhjOTZk) - Books
|
||||
* [KediKitap](https://t.me/KediKitap) - Books
|
||||
* [E kütüphanem](https://www.whatsapp.com/channel/0029VaAUDreDTkK0uDGbP21z) - Books
|
||||
* [hattusa](https://hattusa.club/) - Books
|
||||
* [Manga Denizi](https://www.mangadenizi.net/) - Manga / [Discord](https://discord.com/invite/8zBMSGZ)
|
||||
|
@ -1722,6 +1752,7 @@
|
|||
|
||||
* [Mazepa](https://mazepa.to/) - Video / Audio / Books
|
||||
* [Toloka](https://toloka.to/) - Torrent Tracker
|
||||
* [utog](https://utog.org/uzhm/) - Ukrainian Sign Language Dictionary
|
||||
|
||||
## ▷ Reading
|
||||
|
||||
|
@ -1757,13 +1788,13 @@
|
|||
|
||||
* ⭐ **[Voz.vn](https://voz.vn/)**, [VN-Z](https://vn-z.vn/), [TECHRUM.VN](https://www.techrum.vn/) or [WhiteHat.vn](https://whitehat.vn/) - Tech Forum
|
||||
* ⭐ **[J2team](https://www.facebook.com/groups/j2team.community)** - Tech Community
|
||||
* ⭐ **[Unikey](https://www.unikey.org/en/)** - Vietnamese Keyboard
|
||||
* ⭐ **[Unikey](https://www.unikey.org/)** - Vietnamese Keyboard / [Source Code](https://sourceforge.net/projects/unikey/)
|
||||
* ⭐ **[Baomoi](https://baomoi.com/)** - News Aggregator / [Mobile](https://play.google.com/store/apps/details?id=com.epi&hl=en_US)
|
||||
* ⭐ **[HocMai Forum](https://diendan.hocmai.vn/)** - Study Forum
|
||||
* [hostsVN](https://github.com/bigdargon/hostsVN/wiki) - Adblocking Guides
|
||||
* [Quantrimang](https://quantrimang.com/), [Anonyviet](https://anonyviet.com/) - Tech News
|
||||
* [Quantrimang](https://quantrimang.com/) or [Anonyviet](https://anonyviet.com/) - Tech News
|
||||
* [Phudeviet](http://phudeviet.org/) - Subtitles
|
||||
* [Forumvi](https://www.forumvi.com/) - Create a Forum
|
||||
* [HocMai Forum](https://diendan.hocmai.vn/) - Study Forum
|
||||
* [MuaThongMinh](https://muathongminh.vn/) - E-commerce Price Tracker
|
||||
* [Unity_Cheat_Sheet](https://github.com/NaomiLe1811/Unity_Cheat_Sheet_Tieng_Viet) - Unity Game Engine Cheat Sheet
|
||||
|
||||
|
@ -1773,79 +1804,56 @@
|
|||
|
||||
## ▷ Torrenting / Tải tệp bằng torrent
|
||||
|
||||
* [NetHD](https://nethd.org/) - Video / Audio
|
||||
* [3ChangTrai](https://3changtrai.com/) - Video / Audio
|
||||
* [NetHD](https://nethd.org/) - Video / Audio / Sign-Up Required
|
||||
|
||||
## ▷ Streaming / Phát trực tuyến
|
||||
|
||||
* ⭐ **[rophim](https://www.rophim.me/phimhay)** - Movies / TV / Anime / Watch Parties / [Telegram](https://t.me/rophimzone), [2](https://t.me/congdongrophim) / [Discord](https://discord.gg/rophim) / VPN May be Required
|
||||
* ⭐ **[VTVGo](https://vtvgo.vn/)** - Live TV / Free w/ Ads
|
||||
* ⭐ **[ZingMP3](https://zingmp3.vn/)** - Music / Free w/ Ads
|
||||
* [FPT Play](https://fptplay.vn/) - Live TV / TV / Anime / Cartoon / Movie / Free w/ Ads
|
||||
* [JenkaStudioVN](https://www.jenkastudiovn.net/) - Movies / Anime / Sub / Dub / 1080p
|
||||
* [Ô Phim](https://ophim.tuphim.net/) - Movies / Anime / Cartoon / TV / Sub / 1080p
|
||||
* [Phimmoi](https://vuaphimmoi.net/) - Movies / TV / Anime / Sub / Dub / 720p
|
||||
* [Danet](https://danet.vn/) - Movies / TV / Anime / Live TV / Sub / 720p
|
||||
* [XemPhim](https://xemphim.app/) - Movies / TV / Sub / 720p
|
||||
* [chuyenphim18](https://chuyenphim18.site/) - Movies / TV / Anime / Sub / 720p
|
||||
* [kkphim](https://kkphim.com/), [2](https://phim.nguonc.com/), [3](https://ophim.movie/) / Movies / TV / Anime / [Ad Script](https://github.com/Hth4nh/PureMovies)
|
||||
* [phim.in](https://phim.in.net/) - Anime / Movies / TV / Chinese Animation / Sub / Dub / 1080p
|
||||
* ⭐ **[rophim](https://www.rophim.me/phimhay)** - Movies / TV / Anime / Watch Parties / Sub / Dub / 1080p / [Telegram](https://t.me/congdongrophim) / [Discord](https://discord.gg/rophim)
|
||||
* [Phimmoi](https://vuaphimmoi.net/) - Movies / TV / Anime / Sub / Dub / 1080p
|
||||
* [kkphim](https://kkphim.com/) - Movies / TV / Anime / Sub / Dub / 1080p
|
||||
* [NguonC](https://phim.nguonc.com/) - Movies / TV / Anime / Sub / Dub / 1080p
|
||||
* [OPhim](https://ophim.movie/) - Movies / TV / Anime / Sub / 1080p
|
||||
* [AnimeTVN](https://animetvn4.com/) - Anime / Chinese Animation / Sub / 1080p
|
||||
* [AnimeVietsub](https://animevietsub.link/) - Anime / Chinese Animation / Sub / 1080p
|
||||
* [AnimeVietsub](https://animevietsub.link/) - Anime / Chinese Animation / Sub / 1080p / [Telegram](https://t.me/animevietsub) / [Discord](https://discord.com/invite/AUNt59q)
|
||||
* [Ani4u](https://ani4u.org/) - Anime / Sub / 1080p
|
||||
* [AnimeVSub](https://animevsub.eu.org/) - Anime / Chinese Animation / Sub / 1080p / [Extension](https://github.com/anime-vsub/extension-animevsub-helper)
|
||||
* [Tokuvn](https://tokuvn.com/) - Tokusatsu / Sub
|
||||
* [Mocha](https://video.mocha.com.vn/) - Video / 1080p
|
||||
* [MyClip](https://myclip.vn/) - Video / 1080p
|
||||
* [TV360](https://tv360.vn/) - Live TV / Sub / 1080p
|
||||
* [TVHayHD](https://tv.tvhayhd.org/) - Live TV / 720p
|
||||
* [6SVN](https://xem.6svn.com/) - Live TV
|
||||
* [VieON](https://vieon.vn/) - Live TV / TV / Anime / Cartoon / Movie / 1080p / Sub / Dub
|
||||
* [HPlus](https://hplus.com.vn/), [2](https://htvc.com.vn/) - Live TV / TV / 1080p
|
||||
* [THVL](https://www.thvli.vn/) - Live TV / TV / Movies / Dub
|
||||
* [NhacCuaTui](https://www.nhaccuatui.com/) - Music / Free w/ Ads
|
||||
* [Muvi](https://muvi.vn/) - Music
|
||||
* [Nhacvn](https://nhac.vn/) - Music
|
||||
* [Keeng](https://keeng.vn/) - Music
|
||||
* [Imuzik](https://imuzik.com.vn/) - Music
|
||||
* [TVMienPhi](https://tvmienphi.org/), [2](https://tv.tvhayhd.org/) - Live TV / 1080p
|
||||
* [XemPhim](https://xemphim.app/) - Movies / TV / Sub / 720p
|
||||
* [TokuVN](https://tokuvn.com/) - Tokusatsu / Sub / 480p
|
||||
|
||||
## ▷ Free w/ Ads / Miễn phí với quảng cáo
|
||||
|
||||
* ⭐ **[ZingMP3](https://zingmp3.vn/)** or [NhacCuaTui](https://www.nhaccuatui.com/) - Music
|
||||
* [FPT Play](https://fptplay.vn/) - Live TV / Movies / TV / Anime / Sub / Dub / 1080p
|
||||
* [THVL](https://www.thvli.vn/) - Live TV / Movies / TV / Music / Dub / 1080p
|
||||
* [TV360](https://tv360.vn/) - Live TV / Movies / TV / Sub / Dub / 1080p
|
||||
* [VieON](https://vieon.vn/) - Live TV / Movies / TV / Anime / Sub / Dub / 720p
|
||||
* [Danet](https://danet.vn/) - Live TV / Movies / TV / Anime / Sub / 720p
|
||||
* [HTV](https://hplus.com.vn/), [2](https://htvc.com.vn/) - Live TV / TV / Sports / 1080p / Sign-Up Required
|
||||
|
||||
## ▷ Reading / Đọc
|
||||
|
||||
* ⭐ **[hoc10](https://hoc10.vn/)** - Textbooks, Study Material, Lecture Notes, etc.
|
||||
* ⭐ **[Thư Viện Pháp Luật](https://thuvienphapluat.vn/)** - Legal Information Portal / [Facebook](https://www.facebook.com/ThuVienPhapLuat.vn/)
|
||||
* ⭐ **[VietJack](https://vietjack.com/)** - Educational Books / Documents
|
||||
* ⭐ **[LoiGiaiHay](https://loigiaihay.com/)** - Educational Books / Documents
|
||||
* ⭐ **[VNDoc](https://vndoc.com/)** - Educational Books / Documents
|
||||
* ⭐ **[Tech12h](https://tech12h.com/)** - Educational Books / Documents
|
||||
* ⭐ **[VietJack](https://vietjack.com/)**, **[LoiGiaiHay](https://loigiaihay.com/)**, **[VNDoc](https://vndoc.com/)** or **[Tech12h](https://tech12h.com/)** - Study References
|
||||
* [Thivien](https://www.thivien.net/) - Poetry
|
||||
* [MeTaiSach](https://metaisach.com/) - Books
|
||||
* [AnyBooks](https://anybooks.vn/) - Books
|
||||
* [GacSach](https://gacsach.online/) - Books
|
||||
* [SachHay24H](https://sachhay24h.com/) - Books
|
||||
* [TramDoc](https://tramdoc.vn/) - Books
|
||||
* [Waka](https://waka.vn/) - Books
|
||||
* [Reader](https://www.reader.com.vn/) - Books
|
||||
* [GacSach](https://gacsach.org/) - Books
|
||||
* [NhaSach](https://nhasachmienphi.com/) - Books
|
||||
* [DocSach24](https://docsach24.co/) - Books
|
||||
* [tieulun](https://tieulun.hd.free.fr//) - Books
|
||||
* [tieulun](https://tieulun.hd.free.fr/) - Books
|
||||
* [SachHay](https://www.sachhayonline.com/) - Books
|
||||
* [TruyenPlus](https://Truyenplus.vn) - Books / Novel
|
||||
* [DocTaiLieu](https://doctailieu.com/) - Educational Books / Documents
|
||||
* [CongTruyen](https://congtruyen.org/) - Manga / Manhwa / Manhua
|
||||
* [TruyenQQ](https://truyenqqviet.com/) - Manga / Manhwa / Manhua
|
||||
* [COMI](https://comi.mobi/) - Manga / Manhwa / Manhua / Novel
|
||||
* [cuutruyen](https://cuutruyen.net/) - Manga
|
||||
* [hanultruyen](https://hanultruyen.net/) - Manga
|
||||
* [Bao Tang Truyen](https://baotangtruyen20.com/) - Manga
|
||||
* [Bao Tang Truyen](https://baotangtruyen34.top/) - Manga
|
||||
* [Truyensieuhay](https://truyensieuhay.com/) - Manga / Manhwa / Manhua
|
||||
* [Vietwriter](https://vietwriter.vn/) - Manga / Manhwa / Manhua / Novel
|
||||
* [TruyenFull](https://truyenfull.vn/) - Manga / Light Novels
|
||||
* [Hako](https://docln.net/) - Light Novels / [Facebook](https://www.facebook.com/groups/hako.group)
|
||||
* [Sonako](https://sonako.fandom.com/vi/wiki/Sonako_Light_Novel) - Light Novels / [Facebook](https://www.facebook.com/SonakoWiki/)
|
||||
* [sstruyen](https://sstruyen.vn/) - Light Novels
|
||||
* [Babla](https://www.babla.vn/) - Dictionary
|
||||
* [VDict](https://vdict.com/) - Dictionary
|
||||
* [VTuDien](https://vtudien.com/) - Dictionary
|
||||
* [Vietwriter](https://vietwriter.one/) - Manga / Manhwa / Manhua / Novel
|
||||
* [TruyenFull](https://truyenfull.vision/) - Manga / Light Novels
|
||||
* [Hako](https://docln.net/) - Light Novels / [Facebook](https://www.facebook.com/groups/hako.group)
|
||||
* [Babla](https://www.babla.vn/), [VDict](https://vdict.com/) or [VTuDien](https://vtudien.com/) - Dictionary
|
||||
|
||||
***
|
||||
|
||||
|
@ -1862,12 +1870,11 @@
|
|||
* [radioplayer.be](https://radioplayer.be/) - Belgian Radio Stations / French / Dutch
|
||||
* [channelmyanmar](https://channelmyanmar.org) - Burmese / Movies / TV / Cartoons / 1080p / 4K
|
||||
* [lupiteam](https://lupiteam.net/) - Corsican / Manga
|
||||
* [BalkanDownload](https://balkandownload.org/) - Croatian / Download / Video / Audio / Games / Books / Comics
|
||||
* [BalkanDownload](https://balkandownload.org/) - Croatian / Serbian / Slovene / Download / Video / Audio / Games / Books / Comics
|
||||
* [WarezHR](https://www.warezhr.org/) - Croatian / Download / Video / Audio / Games / Books / Comics
|
||||
* [JockanTV](https://jockantv.com/) - Croatian / Streaming / Dubbed Cartoons / Use [Adblock](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/adblock-vpn-privacy/#wiki_.25BA_adblocking)
|
||||
* [DR.DK](https://www.dr.dk/) - Danish / Movies / TV / Live
|
||||
* [CyberSkills](https://discord.com/invite/2tTwMvbSXu) - Danish Cybersecurity Discord
|
||||
* [TorrentHeaven](https://www.torrentheaven.org/) - Dutch Torrents / Video / Audio / Books / NSFW
|
||||
* [NPO](https://npo.nl/) - Dutch / TV Streaming
|
||||
* [Oorboekje](https://oorboekje.nl/) or [luisterradio](https://luisterradio.fm/) - Dutch Radio Stations
|
||||
* [Eboek.info](https://eboek.info/) - Dutch / Download / Comics
|
||||
|
@ -1886,6 +1893,7 @@
|
|||
* [Anime Balkan](https://animebalkan.gg/) - Serbian / Streaming / Anime / 1080p
|
||||
* [ZulTV](https://zultv.com/) - Serbian / Live TV
|
||||
* [gledajcrtace](https://www.gledajcrtace.rs/) or [gledajcrtace.org](https://gledajcrtace.org/) - Serbian / Dubbed Cartoons
|
||||
* [Singapore Sign](https://blogs.ntu.edu.sg/sgslsignbank/) - Singapore Sign Language Dictionary
|
||||
* [baiscopedownloads](https://baiscopedownloads.link/) - Sinhalese / Download / Movies / TV
|
||||
* [ZoomLinkHub](https://zoomlinkhub.com/) - Sinhalese / Download / Movies / TV
|
||||
* [zoom.lk](https://zoom.lk/) or [Cineru.lk](https://cineru.lk/) - Sinhalese / Subtitles
|
||||
|
@ -1895,3 +1903,4 @@
|
|||
* [Segoideas](https://segoideas.com/) - Taiwanese / Streaming / TV
|
||||
* [wlext](https://wlext.is/) - Turkish / Filipino / Thai / Streaming / Movies
|
||||
* [Machine Learning ka Chilla](https://www.youtube.com/playlist?list=PL9XvIvvVL50HHzaLPtFBOuikAWa0JdhMW) - Urdu / Machine Learning Course
|
||||
* [PSL Dictionary](https://psl.org.pk/dictionary) - Urdu Sign Language Dictionary
|
||||
|
|
26
docs/posts/FCC.md
Normal file
26
docs/posts/FCC.md
Normal file
|
@ -0,0 +1,26 @@
|
|||
---
|
||||
title: Fight Chat Control 🔒
|
||||
description: Protect EU Digital Privacy
|
||||
date: 2025-09-04
|
||||
next: false
|
||||
|
||||
prev: false
|
||||
|
||||
footer: true
|
||||
---
|
||||
|
||||
<Post authors="" />
|
||||
|
||||
### The EU (still) wants to scan your private messages and photos.
|
||||
|
||||
The "Chat Control" proposal would mandate scanning of all private digital communications, including encrypted messages and photos. This threatens fundamental privacy rights and digital security for all EU citizens.
|
||||
|
||||
Every photo, every message, every file you send will be automatically scanned—without your consent or suspicion. This is not about catching criminals. It is ***mass surveillance*** imposed on all 450 million citizens of the European Union.
|
||||
|
||||
EU politicians *exempt themselves* from this surveillance under "professional secrecy" rules. They get privacy. You and your family do not. If you're in the EU, please consider contacting Members of the European Parliament (MEPs) using the info provided on the site below:
|
||||
|
||||
# https://fightchatcontrol.eu/
|
||||
|
||||
There is also a change.org petition [here](https://stopchatcontrol.eu/) if you'd like to sign it.
|
||||
|
||||
Discussion: https://redd.it/1n840p9
|
30
docs/posts/WWH.md
Normal file
30
docs/posts/WWH.md
Normal file
|
@ -0,0 +1,30 @@
|
|||
---
|
||||
title: Why We're Here 🤍
|
||||
description: Help Heal
|
||||
date: 2025-09-11
|
||||
next: false
|
||||
|
||||
prev: false
|
||||
|
||||
footer: true
|
||||
---
|
||||
|
||||
<Post authors="nbats" />
|
||||
|
||||
People always want to know what the point of life is. Why are they on earth? What are we doing here? Whats our purpose? *Whats the point?*
|
||||
|
||||
For most of my life, I didn't really have any answer, but as I got older, I realized, things weren't about me. I took a step back, and recognized a much bigger picture we're all apart of, and I now know exactly why we're here on earth.
|
||||
|
||||
As a human, you have a powerful ability, to calm, heal, and help those around you. You have the ability to protect both the people in our world, and the planet itself from harm and distress.
|
||||
|
||||
I know there is a huge amount of pain in our world, a lot of anger, a lot of sadness, and believe me when I say, I share the same feelings. However I believe its important that we each learn to ***harness that energy into things that are positive and kind***, not negative or evil.
|
||||
|
||||
Remember that a lot of who you are, is your ability to experience things outside of yourself, *including other humans.* They are a direct and immediate part of your own reality. Treat their struggles and woes as if they were your own, don't leave people behind, don't leave people unloved. As frustrating as the world can be, it is worth protecting, it is worth loving, it is worth healing together.
|
||||
|
||||
***
|
||||
|
||||
* *"Life is a beautiful, magnificent thing, even to a jellyfish... The trouble is you won't fight. You've given in, continually dwelling on sickness and death. But there's something just as inevitable as death, and that's life. Life, life, life. Think of all the power that's in the universe, moving the earth, growing the trees. That's the same power within you if you only have the courage and the will to use it."* - Charlie Chaplin, Limelight 1952
|
||||
|
||||
* *"The wise man beholds all beings in the Self, and the Self in all beings; for that reason, he does not hate anyone."* - Isa Upanishad
|
||||
|
||||
**Discussion Post**: https://redd.it/1ne7y9e
|
|
@ -25,16 +25,16 @@ in seeing all minor changes you can follow our
|
|||
section.
|
||||
|
||||
- Added Optimization, Tabletop, and Git Gud subsections in
|
||||
[Gaming](/gamingpiracyguide/#gaming-tools).
|
||||
[Gaming](/gaming/#gaming-tools).
|
||||
|
||||
- Split [Language Learning](/edupiracyguide/#language-learning) into
|
||||
- Split [Language Learning](/educational/#language-learning) into
|
||||
subsections.
|
||||
|
||||
- Split [Shopping](/miscguide/#shopping) into subsections.
|
||||
- Split [Shopping](/misc/#shopping) into subsections.
|
||||
|
||||
- Split the learning portion of [Dev Tools](/devtools/) into subsections.
|
||||
- Split the learning portion of [Dev Tools](/developer-tools/) into subsections.
|
||||
|
||||
- Added Art Education section to [Image Tools](/img-tools/#art-education).
|
||||
- Added Art Education section to [Image Tools](/image-tools/#art-education).
|
||||
|
||||
- Added NoFap section to NSFW to save souls.
|
||||
|
||||
|
@ -47,25 +47,25 @@ in seeing all minor changes you can follow our
|
|||
- Starred [ChatPDF](/ai/#ai-chatbots) in AI chatbots. AI that turns any book
|
||||
into a chatbot.
|
||||
|
||||
- Starred [Foogle](/videopiracyguide/#drives--directories) in Video Download.
|
||||
- Starred [Foogle](/video/#drives--directories) in Video Download.
|
||||
Fast, single click video downloads.
|
||||
|
||||
- Starred [JustChill](/videopiracyguide/#dedicated-hosts) in Streaming Sites.
|
||||
- Starred [JustChill](/video/#dedicated-hosts) in Streaming Sites.
|
||||
Nice UI, fast 1080p.
|
||||
|
||||
- Starred [movie-web](/videopiracyguide/#multi-hosts) Streaming Sites. Nice UI,
|
||||
- Starred [movie-web](/video/#multi-hosts) Streaming Sites. Nice UI,
|
||||
fast 1080p.
|
||||
|
||||
- Starred [Primewire](/videopiracyguide/#multi-hosts) in Streaming Sites.
|
||||
- Starred [Primewire](/video/#multi-hosts) in Streaming Sites.
|
||||
Primewire has started adding links to pirated content again.
|
||||
|
||||
- Starred [Wotaku](https://wotaku.pages.dev/) in Indexes. Awesome Japanese
|
||||
piracy index.
|
||||
|
||||
- Starred [RLSLOAD](/downloadpiracyguide/#software-sites) in software sites.
|
||||
- Starred [RLSLOAD](/downloading/#software-sites) in software sites.
|
||||
Software site with single click downloads.
|
||||
|
||||
- Starred [Flameshot](/img-tools/#screenshot-tools) in Screenshot Tools. Some
|
||||
- Starred [Flameshot](/image-tools/#screenshot-tools) in Screenshot Tools. Some
|
||||
people like this more than ShareX.
|
||||
|
||||
---
|
||||
|
|
|
@ -21,38 +21,38 @@ in seeing all minor changes you can follow our
|
|||
### Wiki Updates
|
||||
|
||||
- Split Android Tools into subsections:
|
||||
[Optimization](https://fmhy.net/android-iosguide#optimization),
|
||||
[Battery](https://fmhy.net/android-iosguide#battery-tools),
|
||||
[Keyboard](https://fmhy.net/android-iosguide#keyboard-text),
|
||||
[Screen](https://fmhy.net/android-iosguide#screen-tools),
|
||||
[Files](https://fmhy.net/android-iosguide#android-file-tools),
|
||||
[Root / Flash](https://fmhy.net/android-iosguide#root-flash),
|
||||
[Productivity](https://fmhy.net/android-iosguide#productivity-calendars),
|
||||
[Maps](https://fmhy.net/android-iosguide#maps-location),
|
||||
[Notifications](https://fmhy.net/android-iosguide#notifications-widgets) and
|
||||
[Social Media](https://fmhy.net/android-iosguide#social-media-apps).
|
||||
[Optimization](https://fmhy.net/mobile#optimization),
|
||||
[Battery](https://fmhy.net/mobile#battery-tools),
|
||||
[Keyboard](https://fmhy.net/mobile#keyboard-text),
|
||||
[Screen](https://fmhy.net/mobile#screen-tools),
|
||||
[Files](https://fmhy.net/mobile#android-file-tools),
|
||||
[Root / Flash](https://fmhy.net/mobile#root-flash),
|
||||
[Productivity](https://fmhy.net/mobile#productivity-calendars),
|
||||
[Maps](https://fmhy.net/mobile#maps-location),
|
||||
[Notifications](https://fmhy.net/mobile#notifications-widgets) and
|
||||
[Social Media](https://fmhy.net/mobile#social-media-apps).
|
||||
|
||||
- Added [Abandonware](https://fmhy.net/gamingpiracyguide#abandonware),
|
||||
[MOBA](https://fmhy.net/gamingpiracyguide#moba-tools),
|
||||
[Gacha](https://fmhy.net/gamingpiracyguide#gacha-tools),
|
||||
[Counter-Strike](https://fmhy.net/gamingpiracyguide#counter-strike-tools),
|
||||
[Doom](https://fmhy.net/gamingpiracyguide#doom-tools) and
|
||||
[Controller Tool](https://fmhy.net/gamingpiracyguide#controller-tools)
|
||||
- Added [Abandonware](https://fmhy.net/gaming#abandonware),
|
||||
[MOBA](https://fmhy.net/gaming#moba-tools),
|
||||
[Gacha](https://fmhy.net/gaming#gacha-tools),
|
||||
[Counter-Strike](https://fmhy.net/gaming#counter-strike-tools),
|
||||
[Doom](https://fmhy.net/gaming#doom-tools) and
|
||||
[Controller Tool](https://fmhy.net/gaming#controller-tools)
|
||||
sections to Gaming.
|
||||
|
||||
- Added [Toys / Figures](https://fmhy.net/miscguide#toys-figures) section to
|
||||
- Added [Toys / Figures](https://fmhy.net/misc#toys-figures) section to
|
||||
Shopping.
|
||||
|
||||
- Added [Manga](https://fmhy.net/android-iosguide#android-manga) section to
|
||||
- Added [Manga](https://fmhy.net/mobile#android-manga) section to
|
||||
Android Reading.
|
||||
|
||||
- Added [MPV Shaders](https://fmhy.net/storage#mpv-shaders) section to Video
|
||||
Tools.
|
||||
|
||||
- Added [Email](https://fmhy.net/adblockvpnguide#email-privacy) section to
|
||||
- Added [Email](https://fmhy.net/privacy#email-privacy) section to
|
||||
Privacy.
|
||||
|
||||
- Added [Regex](https://fmhy.pages.dev/devtools#regex-tools) section to Dev
|
||||
- Added [Regex](https://fmhy.pages.dev/developer-tools#regex-tools) section to Dev
|
||||
Tools.
|
||||
|
||||
- Our [FMHY Social](https://social.fmhy.net/@fmhy) (fediverse instance /
|
||||
|
@ -65,7 +65,7 @@ in seeing all minor changes you can follow our
|
|||
|
||||
### Stars Added ⭐
|
||||
|
||||
- Starred [Streamed](https://fmhy.net/videopiracyguide#live-sports) in Live
|
||||
- Starred [Streamed](https://fmhy.net/video#live-sports) in Live
|
||||
Sports. Fast streams, no ads.
|
||||
|
||||
- Starred [Poke](https://fmhy.net/social-media-tools#youtube-frontends) in
|
||||
|
@ -74,7 +74,7 @@ in seeing all minor changes you can follow our
|
|||
- Starred [Motrix](https://fmhy.net/file-tools#download-managers) in Download
|
||||
Managers. Some people prefer this over Jdownloader / IDM.
|
||||
|
||||
- Starred [Openlib](https://fmhy.net/android-iosguide#android-reading) in
|
||||
- Starred [Openlib](https://fmhy.net/mobile#android-reading) in
|
||||
Android Reading. Anna’s Archive app.
|
||||
|
||||
- Starred [Stacher](https://fmhy.net/social-media-tools#youtube-downloaders) in
|
||||
|
@ -86,7 +86,7 @@ in seeing all minor changes you can follow our
|
|||
- Starred [Claude](https://fmhy.net/ai#online-chatbots) in Online Chatbots.
|
||||
Works better than things like gemini.
|
||||
|
||||
- Starred [Soft98](https://fmhy.net/downloadpiracyguide#software-sites) in
|
||||
- Starred [Soft98](https://fmhy.net/downloading#software-sites) in
|
||||
Software Sites. Big library, single click DDL.
|
||||
|
||||
- Starred [JellyPlayer](https://fmhy.net/video-tools#jellyfin-tools) in Jellyfin
|
||||
|
@ -95,14 +95,14 @@ in seeing all minor changes you can follow our
|
|||
- Starred [UniGetUI](https://fmhy.net/system-tools#package-managers) in Package
|
||||
Managers. Nice user-interface for Winget.
|
||||
|
||||
- Starred [Zipline](https://fmhy.net/img-tools#screenshot-tools) in Screenshot
|
||||
- Starred [Zipline](https://fmhy.net/image-tools#screenshot-tools) in Screenshot
|
||||
Tools. Self-hosted, feature-rich ShareX server.
|
||||
|
||||
- Starred [WSABuilds](https://fmhy.net/android-iosguide#android-emulators) in
|
||||
- Starred [WSABuilds](https://fmhy.net/mobile#android-emulators) in
|
||||
Android Emulators. Pre-built WSA binaries that will continue to be
|
||||
[updated](https://ibb.co/R4hssDc).
|
||||
|
||||
- Starred [SmartImage](https://fmhy.net/img-tools#reverse-image-search) in
|
||||
- Starred [SmartImage](https://fmhy.net/image-tools#reverse-image-search) in
|
||||
Reverse Image Search. Multi-site reverse image search tool.
|
||||
|
||||
---
|
||||
|
|
|
@ -41,7 +41,7 @@ in seeing all minor changes you can follow our
|
|||
|
||||
# Stars Added ⭐
|
||||
|
||||
- Starred [DAB Music Player](https://fmhy.net/audiopiracyguide#download-sites) in Audio DDL. Single click FLAC album downloads, has web app + desktop apps for for windows, mac, and linux, with android support coming soon.
|
||||
- Starred [DAB Music Player](https://fmhy.net/audio#download-sites) in Audio DDL. Single click FLAC album downloads, has web app + desktop apps for for windows, mac, and linux, with android support coming soon.
|
||||
|
||||
- Starred [IronFox](https://fmhy.net/storage#privacy-based) in Android Privacy Browsers. Firefox-based browser with a focus on privacy / security. Feature-rich, recommended by the librewolf dev team, and our community seems to really like it.
|
||||
|
||||
|
@ -49,13 +49,13 @@ in seeing all minor changes you can follow our
|
|||
|
||||
- Starred [AMP4](https://fmhy.net/social-media-tools#youtube-downloaders) in YouTube Video Downloaders, ad-free, supports playlists and 3 hour long videos.
|
||||
|
||||
- Starred [JustDeleteMe](https://fmhy.net/adblockvpnguide#web-privacy) in Web Privacy. Directory of links to more easily delete your accounts from web services.
|
||||
- Starred [JustDeleteMe](https://fmhy.net/privacy#web-privacy) in Web Privacy. Directory of links to more easily delete your accounts from web services.
|
||||
|
||||
- Starred [PocketCasts](https://fmhy.net/audiopiracyguide) in Podcast Streaming. Popular iOS podcast player that recently added both desktop + web apps.
|
||||
- Starred [PocketCasts](https://fmhy.net/audio) in Podcast Streaming. Popular iOS podcast player that recently added both desktop + web apps.
|
||||
|
||||
- Starred [ADS-B Exchange](https://fmhy.net/miscguide#flights) in Flights section, one of the only that doesn't lock features behind paywalls.
|
||||
- Starred [ADS-B Exchange](https://fmhy.net/misc#flights) in Flights section, one of the only that doesn't lock features behind paywalls.
|
||||
|
||||
- Replaced star for xManager with [ReVanced Manager](https://fmhy.net/android-iosguide#android-audio) in Ad-Free Spotify as it has more features, less issues, and xManager itself recommends it.
|
||||
- Replaced star for xManager with [ReVanced Manager](https://fmhy.net/mobile#android-audio) in Ad-Free Spotify as it has more features, less issues, and xManager itself recommends it.
|
||||
|
||||
- Removed star for bark as its limited, and star for Tortoise TTS as it doesn't sound good, and instead starred [TTS Online](https://fmhy.net/ai#text-to-speech), which sounds better and has a 10k daily character limit.
|
||||
|
||||
|
|
|
@ -23,20 +23,20 @@ in seeing all minor changes you can follow our
|
|||
- Moved fmhy.ml to **[fmhy.net](/)**, and updated its UI to more closely match
|
||||
[fmhy.pages.dev](/).
|
||||
- Separated Android Tools into subcategories:
|
||||
[Device](/android-iosguide/#android-device),
|
||||
[Utilities](/android-iosguide/#android-utilities),
|
||||
[Internet](/android-iosguide/#android-internet),
|
||||
[Camera](/android-iosguide/#android-camera) and
|
||||
[Customization](/android-iosguide/#customization).
|
||||
[Device](/mobile/#android-device),
|
||||
[Utilities](/mobile/#android-utilities),
|
||||
[Internet](/mobile/#android-internet),
|
||||
[Camera](/mobile/#android-camera) and
|
||||
[Customization](/mobile/#customization).
|
||||
|
||||
- Added a [Engineering](/edupiracyguide/#engineering) section to Educational.
|
||||
- Added a [Engineering](/educational/#engineering) section to Educational.
|
||||
|
||||
- Renamed Multi Hosts to [Multi Server](/videopiracyguide/#multi-server),
|
||||
Dedicated Hosts to [Single Server](/videopiracyguide/#single-server), and
|
||||
- Renamed Multi Hosts to [Multi Server](/video/#multi-server),
|
||||
Dedicated Hosts to [Single Server](/video/#single-server), and
|
||||
bumped Multi above Single as they're generally better.
|
||||
|
||||
- Moved all the APK sections out of storage, and back into the main
|
||||
[Android section](/android-iosguide/#android-apks).
|
||||
[Android section](/mobile/#android-apks).
|
||||
|
||||
- Combined all [Indian Language sites](/non-english/#indian-languages) into one
|
||||
section in Non-Eng, as most host content for more than one language.
|
||||
|
@ -45,27 +45,27 @@ in seeing all minor changes you can follow our
|
|||
|
||||
### Stars Added ⭐
|
||||
|
||||
- Starred [Ova Games](/gamingpiracyguide/#download-games) in Game Download. Big
|
||||
- Starred [Ova Games](/gaming/#download-games) in Game Download. Big
|
||||
library, fast hosts.
|
||||
|
||||
- Starred [SmashyStream](/videopiracyguide/#multi-server) in Streaming Sites.
|
||||
- Starred [SmashyStream](/video/#multi-server) in Streaming Sites.
|
||||
Nice UI, fast 1080p.
|
||||
|
||||
- Starred [BlackPearlOrigin](/storage/#game-libraries--launcher) in Game
|
||||
Launchers. New game launcher and downloader, made by our friends.
|
||||
|
||||
- Starred Androeed and Modyolo in [Modded APKs](/android-iosguide/#modded-apks).
|
||||
- Starred Androeed and Modyolo in [Modded APKs](/mobile/#modded-apks).
|
||||
|
||||
- Starred [Skraper](/gamingpiracyguide/#emulation--roms) in Emulation. Automate
|
||||
- Starred [Skraper](/gaming/#emulation--roms) in Emulation. Automate
|
||||
ROM Covers / Metadata.
|
||||
|
||||
- Starred [ROMhacking](/gamingpiracyguide/#rom-sites) in ROM Sites. One of the
|
||||
- Starred [ROMhacking](/gaming/#rom-sites) in ROM Sites. One of the
|
||||
oldest sites for fan translations.
|
||||
|
||||
- Starred [FreeSports](/videopiracyguide/#live-tv--sports) in Live Sports. A
|
||||
- Starred [FreeSports](/video/#live-tv--sports) in Live Sports. A
|
||||
live sports site that isn't flooded with ads like most are.
|
||||
|
||||
- Starred [SoccerCatch](/videopiracyguide/#sports-streaming) in Sports
|
||||
- Starred [SoccerCatch](/video/#sports-streaming) in Sports
|
||||
Streaming. Full Match replays.
|
||||
|
||||
- Starred [DownloadPirate](/storage/#vfx-sites) in VFX Sites. Popular site for
|
||||
|
|
|
@ -37,9 +37,9 @@ in seeing all minor changes you can follow our
|
|||
[Servers](https://fmhy.net/gaming-tools#multiplayer-servers).
|
||||
|
||||
- Split Game Dev Tools into subsections:
|
||||
[Game Engines](https://fmhy.net/devtools#game-engines),
|
||||
[Asset Creation](https://fmhy.net/devtools#asset-creation) and
|
||||
[Map Creators](https://fmhy.net/devtools#map-creators-editors).
|
||||
[Game Engines](https://fmhy.net/developer-tools#game-engines),
|
||||
[Asset Creation](https://fmhy.net/developer-tools#asset-creation) and
|
||||
[Map Creators](https://fmhy.net/developer-tools#map-creators-editors).
|
||||
|
||||
- Added [Office Suites](https://fmhy.net/text-tools#office-suites) section to
|
||||
Text Tools.
|
||||
|
@ -70,7 +70,7 @@ in seeing all minor changes you can follow our
|
|||
|
||||
### Stars Added ⭐
|
||||
|
||||
- Starred [lucida](https://fmhy.net/audiopiracyguide#audio-ripping-sites) in
|
||||
- Starred [lucida](https://fmhy.net/audio#audio-ripping-sites) in
|
||||
Audio Ripping. Multi-site audio ripping with 320kb / FLAC support.
|
||||
|
||||
- Starred [Proton Docs](https://fmhy.net/text-tools#online-editors) in Text
|
||||
|
@ -79,39 +79,39 @@ in seeing all minor changes you can follow our
|
|||
- Starred [Pikimov](https://fmhy.net/video-tools#online-editors) in Online Video
|
||||
Editors. Online adobe after effects alternative.
|
||||
|
||||
- Starred [Flowstreams](https://fmhy.net/videopiracyguide#live-sports) in Live
|
||||
- Starred [Flowstreams](https://fmhy.net/video#live-sports) in Live
|
||||
Sports. Live sports / music events.
|
||||
|
||||
- Starred [FullReplays](https://fmhy.net/videopiracyguide#sports-replays) in
|
||||
- Starred [FullReplays](https://fmhy.net/video#sports-replays) in
|
||||
sports replays. Full soccer match replays.
|
||||
|
||||
- Starred [Aurora Store](https://fmhy.net/android-iosguide#untouched-apks) in
|
||||
- Starred [Aurora Store](https://fmhy.net/mobile#untouched-apks) in
|
||||
Untouched APKs. FOSS version of the Play Store.
|
||||
|
||||
- Starred [No Trace](https://fmhy.net/adblockvpnguide#privacy-indexes) in
|
||||
- Starred [No Trace](https://fmhy.net/privacy#privacy-indexes) in
|
||||
Privacy Indexes. In-depth privacy guides / anti-surveillance.
|
||||
|
||||
- Starred
|
||||
[Futo Keyboard / Voice](https://fmhy.net/android-iosguide#keyboard-text) in
|
||||
[Futo Keyboard / Voice](https://fmhy.net/mobile#keyboard-text) in
|
||||
Android Keyboard Tools. Privacy-focused keyboards.
|
||||
|
||||
- Starred [Piko](https://fmhy.net/android-iosguide#social-media-apps) in Android
|
||||
- Starred [Piko](https://fmhy.net/mobile#social-media-apps) in Android
|
||||
Social Media. ReVanced patches for X.com.
|
||||
|
||||
- Starred [auto-mcs](https://fmhy.net/storage#minecraft-server-tools) in
|
||||
Minecraft Server Tools. Simple Minecraft server setup.
|
||||
|
||||
- Starred [Vijay's Virtual Vibes](https://fmhy.net/miscguide#random) in Fun
|
||||
- Starred [Vijay's Virtual Vibes](https://fmhy.net/misc#random) in Fun
|
||||
Sites. Find random sites.
|
||||
|
||||
- Starred [Codeium](https://fmhy.net/ai#coding-ais) in Coding AIs. Popular
|
||||
coding AI with unlimited GPT-3.5.
|
||||
|
||||
- Starred [Print Chess](https://fmhy.net/gamingpiracyguide#strategy) in Strategy
|
||||
- Starred [Print Chess](https://fmhy.net/gaming#strategy) in Strategy
|
||||
Games. Printable paper chess set.
|
||||
|
||||
- Starred both Streamflix and PrimeFlix in
|
||||
[Multi Host](https://fmhy.net/videopiracyguide). Both sites have improved a
|
||||
[Multi Host](https://fmhy.net/video). Both sites have improved a
|
||||
lot recently.
|
||||
|
||||
- Re-added + Starred [Gmailnator](https://fmhy.net/internet-tools#temp-mail).
|
||||
|
@ -122,7 +122,7 @@ in seeing all minor changes you can follow our
|
|||
### Things Removed
|
||||
|
||||
- Removed Fmovies as its been offline for weeks. We've replaced it with
|
||||
[FBOX](https://fmhy.net/videopiracyguide#multi-server) for now.
|
||||
[FBOX](https://fmhy.net/video#multi-server) for now.
|
||||
|
||||
- Removed Cipher Files as they've [shutdown](https://ibb.co/gzYX4Gb).
|
||||
|
||||
|
|
|
@ -22,41 +22,41 @@ in seeing all minor changes you can follow our
|
|||
|
||||
- Did a complete **[Contribution Guide](https://fmhy.pages.dev/other/contributing)** rewrite. It's now more intuitive and fully up-to-date. TY to Hugo.
|
||||
|
||||
- Added [Server / Selfhosting](https://fmhy.net/linuxguide#server-selfhosting) section to Linux.
|
||||
- Added [Server / Selfhosting](https://fmhy.net/linux-macos#server-selfhosting) section to Linux.
|
||||
|
||||
- Added [Exams / Tests](https://fmhy.net/edupiracyguide#exams-tests) section to Educational Tools. This also helped debloat the study section a bit.
|
||||
- Added [Exams / Tests](https://fmhy.net/educational#exams-tests) section to Educational Tools. This also helped debloat the study section a bit.
|
||||
|
||||
- Added [Classic / Public Domain](https://fmhy.net/videopiracyguide#classics-public-domain) + [Film Archive](https://fmhy.net/videopiracyguide#film-archives) sections to Specialty Streaming.
|
||||
- Added [Classic / Public Domain](https://fmhy.net/video#classics-public-domain) + [Film Archive](https://fmhy.net/video#film-archives) sections to Specialty Streaming.
|
||||
|
||||
- Added [Hacker News Tools](https://fmhy.pages.dev/miscguide#hacker-news-tools) section to News Sites.
|
||||
- Added [Hacker News Tools](https://fmhy.pages.dev/misc#hacker-news-tools) section to News Sites.
|
||||
|
||||
- Added [Sign Language](https://fmhy.net/edupiracyguide#sign-language) section to Language Learning.
|
||||
- Added [Sign Language](https://fmhy.net/educational#sign-language) section to Language Learning.
|
||||
|
||||
- Added [Assistance / Charity](https://fmhy.net/miscguide#assistance-charity) section to Free Stuff.
|
||||
- Added [Assistance / Charity](https://fmhy.net/misc#assistance-charity) section to Free Stuff.
|
||||
|
||||
- Added [Vehicle](https://fmhy.net/miscguide#vehicle) section to Miscellaneous.
|
||||
- Added [Vehicle](https://fmhy.net/misc#vehicle) section to Miscellaneous.
|
||||
|
||||
- Moved [Coding Tutorials](https://fmhy.net/edupiracyguide#coding-tutorials) out of storage, reformatted, added labels and removed some sites. [Before vs. After](https://i.ibb.co/0VVhmrrT/image.png)
|
||||
- Moved [Coding Tutorials](https://fmhy.net/educational#coding-tutorials) out of storage, reformatted, added labels and removed some sites. [Before vs. After](https://i.ibb.co/0VVhmrrT/image.png)
|
||||
|
||||
- Moved [Android Telegram Clients](https://fmhy.net/android-iosguide#telegram-clients) out of storage, cleaned it up, added labels. [Before vs. After](https://i.ibb.co/276xNQWS/image.png)
|
||||
- Moved [Android Telegram Clients](https://fmhy.net/mobile#telegram-clients) out of storage, cleaned it up, added labels. [Before vs. After](https://i.ibb.co/276xNQWS/image.png)
|
||||
|
||||
- Moved [Media Covers / Posters](https://fmhy.net/img-tools#media-covers-posters) out of storage + added labels. [Before vs. After](https://i.ibb.co/DDrN5zDt/image.png)
|
||||
- Moved [Media Covers / Posters](https://fmhy.net/image-tools#media-covers-posters) out of storage + added labels. [Before vs. After](https://i.ibb.co/DDrN5zDt/image.png)
|
||||
|
||||
- Moved [Album Artwork](https://fmhy.net/audiopiracyguide#album-artwork) out of storage + added labels.
|
||||
- Moved [Album Artwork](https://fmhy.net/audio#album-artwork) out of storage + added labels.
|
||||
|
||||
- Moved [Static Page Hosting](https://fmhy.net/devtools#static-page-hosting) out of storage + reorganized and added labels. [Before vs. After](https://i.ibb.co/Kpq1shtP/Untitled.png)
|
||||
- Moved [Static Page Hosting](https://fmhy.net/developer-tools#static-page-hosting) out of storage + reorganized and added labels. [Before vs. After](https://i.ibb.co/Kpq1shtP/Untitled.png)
|
||||
|
||||
- Cleaned up [Link in Bio](https://fmhy.net/internet-tools#link-in-bio) section, removed sites that didn't stand out + starred Carrd. [Before vs. After](https://i.ibb.co/8gfjXg2G/image.png)
|
||||
|
||||
- Cleaned up [Ebook section](https://fmhy.net/readingpiracyguide#ebooks), added / fixed labels, moved sites that didn't fit the section. [Before vs. After](https://i.ibb.co/0yYcZQWW/Untitled.jpg)
|
||||
- Cleaned up [Ebook section](https://fmhy.net/reading#ebooks), added / fixed labels, moved sites that didn't fit the section. [Before vs. After](https://i.ibb.co/0yYcZQWW/Untitled.jpg)
|
||||
|
||||
- Cleaned up [Spotify Tools](https://fmhy.net/audiopiracyguide#spotify-tools) + [Spotify Playlist Tools](https://fmhy.net/audiopiracyguide#playlist-tools). Re-organized + removed sites that didn't stand out.
|
||||
- Cleaned up [Spotify Tools](https://fmhy.net/audio#spotify-tools) + [Spotify Playlist Tools](https://fmhy.net/audio#playlist-tools). Re-organized + removed sites that didn't stand out.
|
||||
|
||||
- Cleaned up formatting in [Adblock section](https://fmhy.net/adblockvpnguide#adblocking). [Before vs. After](https://i.ibb.co/0jcysGV3/Adblock-Before.png)
|
||||
- Cleaned up formatting in [Adblock section](https://fmhy.net/privacy#adblocking). [Before vs. After](https://i.ibb.co/0jcysGV3/Adblock-Before.png)
|
||||
|
||||
- Decided to bring back our [Saidit backup](https://saidit.net/s/freemediaheckyeah/wiki/index). Saidit has always supported us, their owner actually posted FMHY themselves on the main Saidit wiki. Its always good to have places like this we know we can trust.
|
||||
|
||||
- To make streaming easier to navigate, we've separated [API Frontends](https://fmhy.net/videopiracyguide#api-frontends) and [Single Server](https://fmhy.net/videopiracyguide#single-server) sites into their own sections.
|
||||
- To make streaming easier to navigate, we've separated [API Frontends](https://fmhy.net/video#api-frontends) and [Single Server](https://fmhy.net/video#single-server) sites into their own sections.
|
||||
|
||||
- Thank you to Hugo, Samidy, Dan, kick, Anarchydr, and everyone else who helped re-organize, or create the sections this month.
|
||||
|
||||
|
@ -64,7 +64,7 @@ in seeing all minor changes you can follow our
|
|||
|
||||
# Stars Added ⭐
|
||||
|
||||
- Starred [Google Assistant](https://fmhy.net/audiopiracyguide#song-identification) in Song Identification. Works by humming the songs, seems to be even more accurate than Shazam in our testing.
|
||||
- Starred [Google Assistant](https://fmhy.net/audio#song-identification) in Song Identification. Works by humming the songs, seems to be even more accurate than Shazam in our testing.
|
||||
|
||||
- Starred [Qwen](https://fmhy.net/ai#image-generation) in Image Gen. Unlimited, no signup required, seems to be almost as good as 4o as of now.
|
||||
|
||||
|
@ -72,21 +72,21 @@ in seeing all minor changes you can follow our
|
|||
|
||||
- Starred [keybr](https://fmhy.net/text-tools#typing-lessons) in Typing Lessons. Custom touch typing practice, has nice UI, multiplayer, profiles, themes, etc.
|
||||
|
||||
- Starred [Seal](https://fmhy.net/android-iosguide#android-youtube-apps) in Android YouTube Downloaders. Open-source downloader that supports many sites.
|
||||
- Starred [Seal](https://fmhy.net/mobile#android-youtube-apps) in Android YouTube Downloaders. Open-source downloader that supports many sites.
|
||||
|
||||
- Starred [SaverTuner](https://fmhy.net/android-iosguide#battery-tools) in Android Battery Tools. Battery saving app that many people have had good results with in our testing.
|
||||
- Starred [SaverTuner](https://fmhy.net/mobile#battery-tools) in Android Battery Tools. Battery saving app that many people have had good results with in our testing.
|
||||
|
||||
- Starred [Xtra](https://fmhy.net/android-iosguide#social-media-apps) in Android Social Media. Open-source Twitch client that seems to work well for people.
|
||||
- Starred [Xtra](https://fmhy.net/mobile#social-media-apps) in Android Social Media. Open-source Twitch client that seems to work well for people.
|
||||
|
||||
- Starred [FSTV](https://fmhy.net/videopiracyguide#live-sports) in Live Sports. Has fast streams + covers a solid amount of leagues.
|
||||
- Starred [FSTV](https://fmhy.net/video#live-sports) in Live Sports. Has fast streams + covers a solid amount of leagues.
|
||||
|
||||
- Starred [MusicBrainz Picard](https://fmhy.net/audiopiracyguide#audio-metadata) in Audio Metadata. Big catalog, good for batch metadata automation and sorting.
|
||||
- Starred [MusicBrainz Picard](https://fmhy.net/audio#audio-metadata) in Audio Metadata. Big catalog, good for batch metadata automation and sorting.
|
||||
|
||||
- Starred [Beanconqueror](https://fmhy.net/miscguide#drinks) in Drinks section. Open-source, ad-free, and [feature-rich](https://i.ibb.co/1GkdXk4N/image.png) brew tracking app.
|
||||
- Starred [Beanconqueror](https://fmhy.net/misc#drinks) in Drinks section. Open-source, ad-free, and [feature-rich](https://i.ibb.co/1GkdXk4N/image.png) brew tracking app.
|
||||
|
||||
- Starred [Crosshare](https://fmhy.net/gamingpiracyguide#crosswords) in Crossword section. Feature-rich, custom UI, active userbase and new puzzles daily.
|
||||
- Starred [Crosshare](https://fmhy.net/gaming#crosswords) in Crossword section. Feature-rich, custom UI, active userbase and new puzzles daily.
|
||||
|
||||
- Starred [CS50](https://fmhy.net/edupiracyguide#computer-science) in Computer Science. Well respected Harvard Computer Science Course.
|
||||
- Starred [CS50](https://fmhy.net/educational#computer-science) in Computer Science. Well respected Harvard Computer Science Course.
|
||||
|
||||
***
|
||||
|
||||
|
|
|
@ -27,26 +27,26 @@ in seeing all minor changes you can follow our
|
|||
[Text Tools](/text-tools), [Video Tools](/video-tools) and
|
||||
[Audio Tools](/audio-tools).
|
||||
|
||||
- Separated Health into subsections: [Mental](/miscguide#mental-health),
|
||||
[Physical](/miscguide#physical-health),
|
||||
[Nutritional](/miscguide#nutritional-health),
|
||||
[Sexual](/miscguide#sexual-health) and [Detoxing](/miscguide#detoxing).
|
||||
- Separated Health into subsections: [Mental](/misc#mental-health),
|
||||
[Physical](/misc#physical-health),
|
||||
[Nutritional](/misc#nutritional-health),
|
||||
[Sexual](/misc#sexual-health) and [Detoxing](/misc#detoxing).
|
||||
|
||||
- Added a section for [Open-Source Games](/gamingpiracyguide#open-source-games)
|
||||
- Added a section for [Open-Source Games](/gaming#open-source-games)
|
||||
in Gaming.
|
||||
|
||||
- Added a section for [Animation Tools](/video-tools#animation-tools) in Video
|
||||
Tools.
|
||||
|
||||
- Added a section for [Academic Papers](/readingpiracyguide#academic-papers) in
|
||||
- Added a section for [Academic Papers](/reading#academic-papers) in
|
||||
Educational Reading.
|
||||
|
||||
- Added sections for [Illustrations](/img-tools#illustrations) and
|
||||
- Added sections for [Illustrations](/image-tools#illustrations) and
|
||||
[Textures / Patterns](/storage#textures-patterns) in Images.
|
||||
|
||||
- Added sections in Linux for [Video](/linuxguide#linux-video),
|
||||
[Audio](/linuxguide#linux-audio), [Images](/linuxguide#linux-images) and
|
||||
[File Tools](/linuxguide#file-tools).
|
||||
- Added sections in Linux for [Video](/linux-macos#linux-video),
|
||||
[Audio](/linux-macos#linux-audio), [Images](/linux-macos#linux-images) and
|
||||
[File Tools](/linux-macos#file-tools).
|
||||
|
||||
- Made a ["safe for work"](https://rentry.org/piracy) version of our index with
|
||||
no NSFW link listed.
|
||||
|
@ -58,22 +58,22 @@ in seeing all minor changes you can follow our
|
|||
|
||||
### Stars Added ⭐
|
||||
|
||||
- Starred [Streamflix](/videopiracyguide#multi-server) in Streaming Sites. Nice
|
||||
- Starred [Streamflix](/video#multi-server) in Streaming Sites. Nice
|
||||
UI, fast 1080p, ran by members of our community.
|
||||
|
||||
- Starred [watch.lonelil](/videopiracyguide#multi-server) in Streaming Sites.
|
||||
- Starred [watch.lonelil](/video#multi-server) in Streaming Sites.
|
||||
Nice UI, fast 4K + 1080p, live tv.
|
||||
|
||||
- Starred [Game Bounty](/gamingpiracyguide#download-games) in Game Download.
|
||||
- Starred [Game Bounty](/gaming#download-games) in Game Download.
|
||||
Fast hosts, pre-installs, clean uploads, ran by members of our community.
|
||||
|
||||
- Starred [AbandonwareGames](/storage#abandonware-games) in Abandonware Games.
|
||||
Nice site with a big library of oldschool games.
|
||||
|
||||
- Starred [Heroic Games Launcher](/gamingpiracyguide#steam-epic) in Steam /
|
||||
- Starred [Heroic Games Launcher](/gaming#steam-epic) in Steam /
|
||||
Epic. Open-source Epic Games launcher.
|
||||
|
||||
- Starred [TG Archive](/downloadpiracyguide#download-directories) in Download
|
||||
- Starred [TG Archive](/downloading#download-directories) in Download
|
||||
Directories. Telegram file archive + search tool.
|
||||
|
||||
- Starred [BleachBit](/system-tools#system-debloating) in system debloating.
|
||||
|
@ -88,13 +88,13 @@ in seeing all minor changes you can follow our
|
|||
- Starred [DeepL](/text-tools#translators) in Translators. People feel this
|
||||
gives some of the best results.
|
||||
|
||||
- Starred [Magpie](/gamingpiracyguide#optimization-tools) in Gaming
|
||||
- Starred [Magpie](/gaming#optimization-tools) in Gaming
|
||||
Optimization. Enable AMD FSR on any game or device.
|
||||
|
||||
- Starred [TrollStore](/android-iosguide#ios-apps) in iOS Apps. Permanently
|
||||
- Starred [TrollStore](/mobile#ios-apps) in iOS Apps. Permanently
|
||||
install non-appstore iOS apps w/o pc, paid dev account or being jailbroken.
|
||||
|
||||
- Starred [SmartTube](/videopiracyguide#smart-tv-firestick) in Smart TV /
|
||||
- Starred [SmartTube](/video#smart-tv-firestick) in Smart TV /
|
||||
Firestick. Ad-free YouTube app. Previously called SmartTubeNext.
|
||||
|
||||
---
|
||||
|
|
|
@ -23,23 +23,23 @@ in seeing all minor changes you can follow our
|
|||
|
||||
- Added [FFmpeg section](https://fmhy.net/video-tools#ffmpeg-tools) to Video Tools.
|
||||
|
||||
- Added [Anti-Censorship](https://fmhy.net/adblockvpnguide#anti-censorship) section to Proxies.
|
||||
- Added [Anti-Censorship](https://fmhy.net/privacy#anti-censorship) section to Proxies.
|
||||
|
||||
- Added [Spotify Playlist Tools](https://fmhy.net/audiopiracyguide#spotify-playlists) section to Audio.
|
||||
- Added [Spotify Playlist Tools](https://fmhy.net/audio#spotify-playlists) section to Audio.
|
||||
|
||||
- Added [Household Management](https://fmhy.net/miscguide#household) section to Misc.
|
||||
- Added [Household Management](https://fmhy.net/misc#household) section to Misc.
|
||||
|
||||
- Added new subsections to YouTube: [Video Tools](https://fmhy.net/social-media-tools#video-tools) / [Playlist Tools](https://fmhy.net/social-media-tools#playlist-tools) / [Archiving](https://fmhy.net/social-media-tools#youtube-archiving)
|
||||
|
||||
- Split Webhosting into subsections: [Free Webhosting](https://fmhy.net/storage#free-webhosting-sites) / [Static Pages](https://fmhy.net/storage#static-page-hosting) / [Dynamic Pages](https://fmhy.net/storage#dynamic-page-hosting) / [Site Builders](https://fmhy.net/storage#website-builders)
|
||||
|
||||
- Split [Smart TV](https://fmhy.net/videopiracyguide#smart-tv-firestick) and [Android TV](https://fmhy.net/videopiracyguide#android-tv) into separate sections.
|
||||
- Split [Smart TV](https://fmhy.net/video#smart-tv-firestick) and [Android TV](https://fmhy.net/video#android-tv) into separate sections.
|
||||
|
||||
- Split [Physical Health](https://fmhy.net/miscguide#physical-health) and [Workout](https://fmhy.net/miscguide#workout-exercise) into separate sections.
|
||||
- Split [Physical Health](https://fmhy.net/misc#physical-health) and [Workout](https://fmhy.net/misc#workout-exercise) into separate sections.
|
||||
|
||||
- Split [Single Server](https://fmhy.net/videopiracyguide#single-server) and [Free w/ Ads](https://fmhy.net/videopiracyguide#free-w-ads) streaming into separate sections.
|
||||
- Split [Single Server](https://fmhy.net/video#single-server) and [Free w/ Ads](https://fmhy.net/video#free-w-ads) streaming into separate sections.
|
||||
|
||||
- Moved IPTV Tools out of storage into its own [dedicated section](https://fmhy.net/videopiracyguide#iptv-tools).
|
||||
- Moved IPTV Tools out of storage into its own [dedicated section](https://fmhy.net/video#iptv-tools).
|
||||
|
||||
- Cleaned up both [DNS Resolver](https://fmhy.net/storage#free-dns-resolvers) + [VPN Config](https://fmhy.net/storage#free-vpn-configs) sections.
|
||||
|
||||
|
@ -53,21 +53,21 @@ in seeing all minor changes you can follow our
|
|||
|
||||
- Starred [Directory Opus](https://fmhy.net/file-tools#file-explorers) in File Explorers. Powerful and highly customizable windows file manager.
|
||||
|
||||
- Starred [Censorship Bypass Guide](https://fmhy.net/adblockvpnguide#anti-censorship) in Anti-Censorship. Easy to follow censorship bypass guides.
|
||||
- Starred [Censorship Bypass Guide](https://fmhy.net/privacy#anti-censorship) in Anti-Censorship. Easy to follow censorship bypass guides.
|
||||
|
||||
- Starred [Mistral](https://fmhy.net/ai#online-chatbots) in Online Chatbots. Feature-rich bot which includes web search, a canvas tool, image generation and more.
|
||||
|
||||
- Starred [OnTheSpot](https://fmhy.net/audiopiracyguide#audio-ripping-tools) in Audio Ripping. Spotify Downloader with a GUI that still works after the spotify's changes.
|
||||
- Starred [OnTheSpot](https://fmhy.net/audio#audio-ripping-tools) in Audio Ripping. Spotify Downloader with a GUI that still works after the spotify's changes.
|
||||
|
||||
- Starred [LanguageTool](https://fmhy.net/text-tools#grammar-check) in Grammar Check. This seemed to pick up the most errors when compared to other options.
|
||||
|
||||
- Starred [BlockAway](https://fmhy.net/adblockvpnguide#proxy-sites) in Proxy Sites. Popular proxy site that seems to work well for most people.
|
||||
- Starred [BlockAway](https://fmhy.net/privacy#proxy-sites) in Proxy Sites. Popular proxy site that seems to work well for most people.
|
||||
|
||||
- Starred [Plutonium](https://fmhy.net/gaming-tools#multiplayer-mods) in Multiplayer Mods. The most popular COD multiplayer server mod, works with multiple games.
|
||||
|
||||
- Starred [webOS Dev Manager](https://fmhy.net/videopiracyguide#smart-tv-firestick). LG TV Homebrew Installer + Guide.
|
||||
- Starred [webOS Dev Manager](https://fmhy.net/video#smart-tv-firestick). LG TV Homebrew Installer + Guide.
|
||||
|
||||
- Starred [Citrus Search](https://fmhy.net/readingpiracyguide#academic-papers) in Academic Papers. Easily search and find similar papers for any topic.
|
||||
- Starred [Citrus Search](https://fmhy.net/reading#academic-papers) in Academic Papers. Easily search and find similar papers for any topic.
|
||||
|
||||
***
|
||||
|
||||
|
|
|
@ -26,25 +26,25 @@ in seeing all minor changes you can follow our
|
|||
|
||||
- Ran a [poll](https://i.imgur.com/73paJlr.png) regarding streaming sites, and
|
||||
used the results to help us re-order the
|
||||
[streaming section.](/videopiracyguide)
|
||||
[streaming section.](/video)
|
||||
|
||||
- Turned Spotify into its own section w/ subsections:
|
||||
[Clients](/audiopiracyguide#spotify-clients),
|
||||
[Adblockers](/audiopiracyguide#spotify-adblockers),
|
||||
[Download](/audiopiracyguide#spotify-download) and
|
||||
[Tools](/audiopiracyguide#spotify-tools).
|
||||
[Clients](/audio#spotify-clients),
|
||||
[Adblockers](/audio#spotify-adblockers),
|
||||
[Download](/audio#spotify-download) and
|
||||
[Tools](/audio#spotify-tools).
|
||||
|
||||
- Added a section for [Soundtracks](/audiopiracyguide#media-soundtracks) in
|
||||
- Added a section for [Soundtracks](/audio#media-soundtracks) in
|
||||
Audio.
|
||||
|
||||
- Added sections for [Computer Science](/devtools#computer-science) and
|
||||
[Docker](/devtools#docker-tools) in Dev Tools.
|
||||
- Added sections for [Computer Science](/developer-tools#computer-science) and
|
||||
[Docker](/developer-tools#docker-tools) in Dev Tools.
|
||||
|
||||
- Added a section for
|
||||
[Two-Factor Authentication](/adblockvpnguide#two-factor-authentication) in Web
|
||||
[Two-Factor Authentication](/privacy#two-factor-authentication) in Web
|
||||
Privacy.
|
||||
|
||||
- Re-organized [Magazine Sites](/readingpiracyguide#magazines) + added filehosts
|
||||
- Re-organized [Magazine Sites](/reading#magazines) + added filehosts
|
||||
to their descriptions.
|
||||
|
||||
- Removed OnStream from unsafe sites. The ["evidence"](https://rentry.co/upo2r)
|
||||
|
@ -80,28 +80,28 @@ in seeing all minor changes you can follow our
|
|||
- Starred [Linqbin](/internet-tools#url-tools) in URL Tools. Privacy focused
|
||||
temp link shortener/pastebin, made by one of our discord mods.
|
||||
|
||||
- Starred [Gnarly Repacks](/gamingpiracyguide#game-repacks) in Game Repacks +
|
||||
- Starred [Gnarly Repacks](/gaming#game-repacks) in Game Repacks +
|
||||
ROMs. Trusted repacker who's been around for years.
|
||||
|
||||
- Starred [PrimeFlix](/videopiracyguide#multi-server) in Streaming Sites. Nice
|
||||
- Starred [PrimeFlix](/video#multi-server) in Streaming Sites. Nice
|
||||
UI, fast 1080p, lots of hosts.
|
||||
|
||||
- Starred [LightDLMovies](/videopiracyguide#download-sites) in Video Download.
|
||||
- Starred [LightDLMovies](/video#download-sites) in Video Download.
|
||||
Fast, single click, 1080p downloads.
|
||||
|
||||
- Starred [Flugel Anime](/videopiracyguide#anime-downloading) in Anime DDL.
|
||||
- Starred [Flugel Anime](/video#anime-downloading) in Anime DDL.
|
||||
Archive of nyaa.si with fast downloads.
|
||||
|
||||
- Starred [Divisions by zero](/social-media-tools#fediverse-tools) in Fediverse
|
||||
Tools. The best piracy focused instance on Lemmy.
|
||||
|
||||
- Starred [CRACKSurl](/downloadpiracyguide#software-sites) in Software Sites.
|
||||
- Starred [CRACKSurl](/downloading#software-sites) in Software Sites.
|
||||
Clean scans + admins are members of FMHY.
|
||||
|
||||
- Starred [PDF Drive](/readingpiracyguide#pdf-search) in PDF Sites as their
|
||||
- Starred [PDF Drive](/reading#pdf-search) in PDF Sites as their
|
||||
downloads are working again.
|
||||
|
||||
- Starred [Bypass All Shortlinks](/adblockvpnguide#redirect-bypass) in Redirect
|
||||
- Starred [Bypass All Shortlinks](/privacy#redirect-bypass) in Redirect
|
||||
Bypass. This is a fork of the original script with all tracking elements
|
||||
removed.
|
||||
|
||||
|
@ -112,7 +112,7 @@ in seeing all minor changes you can follow our
|
|||
- Removed Tachiyomi as it is
|
||||
[no longer being developed](https://tachiyomi.org/news/2024-01-13-goodbye).
|
||||
We've replaced it with its successor
|
||||
[Mihon](/android-iosguide#android-reading), and keep in mind the forks linked
|
||||
[Mihon](/mobile#android-reading), and keep in mind the forks linked
|
||||
there still work.
|
||||
|
||||
- Removed Revanced Extended in YouTube Apps as its been
|
||||
|
|
|
@ -21,13 +21,13 @@ in seeing all minor changes you can follow our
|
|||
|
||||
### Wiki Updates
|
||||
|
||||
- Added [Concerts / Live Shows](https://fmhy.net/audiopiracyguide#concerts-live-shows) section to Audio.
|
||||
- Added [Concerts / Live Shows](https://fmhy.net/audio#concerts-live-shows) section to Audio.
|
||||
|
||||
- Added [Genre Specific](https://fmhy.net/audiopiracyguide#genre-specific) section to Audio Downloading.
|
||||
- Added [Genre Specific](https://fmhy.net/audio#genre-specific) section to Audio Downloading.
|
||||
|
||||
- Added [Drinks section](https://fmhy.net/miscguide#drinks) under Food.
|
||||
- Added [Drinks section](https://fmhy.net/misc#drinks) under Food.
|
||||
|
||||
- Moved [Collaboration Platforms](https://fmhy.net/miscguide#collaboration-platforms) out of storage, cleaned up section, and added labels.
|
||||
- Moved [Collaboration Platforms](https://fmhy.net/misc#collaboration-platforms) out of storage, cleaned up section, and added labels.
|
||||
|
||||
- For individual notes we've stopped linking to pastebins, and instead link our own [GitHub page](https://github.com/fmhy/FMHY/wiki/FMHY‐Notes.md).
|
||||
|
||||
|
@ -39,27 +39,27 @@ in seeing all minor changes you can follow our
|
|||
|
||||
- Starred [DeepSeek](https://fmhy.net/ai#online-chatbots) in Online Chatbots. V3 is unlimited and people seem to be really liking it so far.
|
||||
|
||||
- Starred [AnimeZ](https://fmhy.net/videopiracyguide#anime-streaming) in Anime Streaming. Has fast streams and did well in our polls.
|
||||
- Starred [AnimeZ](https://fmhy.net/video#anime-streaming) in Anime Streaming. Has fast streams and did well in our polls.
|
||||
|
||||
- Starred [OOMoye](https://fmhy.net/videopiracyguide#download-sites) + [PKMovies](https://fmhy.net/videopiracyguide#drives-directories) under Video Download. Both have big libraries, fast hosts and single click downloads.
|
||||
- Starred [OOMoye](https://fmhy.net/video#download-sites) + [PKMovies](https://fmhy.net/video#drives-directories) under Video Download. Both have big libraries, fast hosts and single click downloads.
|
||||
|
||||
- Starred [Ludusavi](https://fmhy.net/gaming-tools#game-saves) in Game Saves. Feature-rich game save manager that supports all platforms.
|
||||
|
||||
- Starred [TV Garden](https://fmhy.net/videopiracyguide#live-tv) in Live TV. Nice UI, lots of channels and consistent compared to similar options.
|
||||
- Starred [TV Garden](https://fmhy.net/video#live-tv) in Live TV. Nice UI, lots of channels and consistent compared to similar options.
|
||||
|
||||
- Starred [PipePipe](https://fmhy.net/android-iosguide#android-youtube-apps) in Android YouTube Apps. Feature-rich fork of NewPipe w/ SponsorBlock / ReturnYTDislikes.
|
||||
- Starred [PipePipe](https://fmhy.net/mobile#android-youtube-apps) in Android YouTube Apps. Feature-rich fork of NewPipe w/ SponsorBlock / ReturnYTDislikes.
|
||||
|
||||
- Starred [PokéRogue](https://fmhy.net/gaming-tools#pokemon-tools) in Pokémon section. Popular and fun Pokémon dungeon crawler.
|
||||
|
||||
- Starred [WatchParty](https://fmhy.net/video-tools#stream-sync) in Stream Sync. Feature-rich app video sync app that seems to work well for people.
|
||||
|
||||
- Starred [Gifski + EZGif](https://fmhy.net/img-tools#gif-tools) under GIF Tools. High quality GIF creation tools.
|
||||
- Starred [Gifski + EZGif](https://fmhy.net/image-tools#gif-tools) under GIF Tools. High quality GIF creation tools.
|
||||
|
||||
- Starred [Blatant's IPA Library](https://fmhy.net/android-iosguide#telegram-channels-1) in iOS Apps. High quality iOS app releases, stands out compared to similar TG groups.
|
||||
- Starred [Blatant's IPA Library](https://fmhy.net/mobile#telegram-channels-1) in iOS Apps. High quality iOS app releases, stands out compared to similar TG groups.
|
||||
|
||||
- Starred [Reaper](https://fmhy.net/audiopiracyguide#audio-editors) under Audio Editors. Feature-rich digital audio workstation. Says its a trial, but trial never actually ends.
|
||||
- Starred [Reaper](https://fmhy.net/audio#audio-editors) under Audio Editors. Feature-rich digital audio workstation. Says its a trial, but trial never actually ends.
|
||||
|
||||
- Added star back to [SteamGG](https://fmhy.net/gamingpiracyguide#download-games) in Game DDL. Game download site with pre-installs and good hosts, similar to SteamRIP.
|
||||
- Added star back to [SteamGG](https://fmhy.net/gaming#download-games) in Game DDL. Game download site with pre-installs and good hosts, similar to SteamRIP.
|
||||
|
||||
***
|
||||
|
||||
|
@ -67,4 +67,4 @@ in seeing all minor changes you can follow our
|
|||
|
||||
- Unstarred Firehawk52 as Deezer ARLs are being nuked instantly now.
|
||||
|
||||
- Unstarred IPALibrary, and replaced it with [CodeVN](https://fmhy.net/android-iosguide#ios-ipas) as this is where IPALibrary sources their apps.
|
||||
- Unstarred IPALibrary, and replaced it with [CodeVN](https://fmhy.net/mobile#ios-ipas) as this is where IPALibrary sources their apps.
|
||||
|
|
|
@ -47,34 +47,34 @@ FMHY. Here's to another year of growth and success! 💙
|
|||
added subsections for popular sites that needed them. (Reddit, Discord,
|
||||
YouTube etc.)
|
||||
|
||||
- Added sections for [Game Soundtracks](/audiopiracyguide#game-soundtracks),
|
||||
[IRC Tools](/downloadpiracyguide#irc-tools) and
|
||||
[Coding AIs](/devtools#coding-ais).
|
||||
- Added sections for [Game Soundtracks](/audio#game-soundtracks),
|
||||
[IRC Tools](/downloading#irc-tools) and
|
||||
[Coding AIs](/developer-tools#coding-ais).
|
||||
|
||||
- Split Career into subsections: [Remote Jobs](/miscguide#remote-jobs),
|
||||
[Tech Jobs](/miscguide#tech-jobs), [Startup](/miscguide#startup) and
|
||||
[Finance / Crypto](/miscguide#finance-crypto)
|
||||
- Split Career into subsections: [Remote Jobs](/misc#remote-jobs),
|
||||
[Tech Jobs](/misc#tech-jobs), [Startup](/misc#startup) and
|
||||
[Finance / Crypto](/misc#finance-crypto)
|
||||
|
||||
- Split Game Mods into subsections:
|
||||
[Mod Indexes](/gamingpiracyguide#mod-indexes) and
|
||||
[Single Mods](/gamingpiracyguide#game-mods)
|
||||
[Mod Indexes](/gaming#mod-indexes) and
|
||||
[Single Mods](/gaming#game-mods)
|
||||
|
||||
- Split News into subsections: [Aggregators](/miscguide#aggregators) and
|
||||
[Tech News](/miscguide#tech-news)
|
||||
- Split News into subsections: [Aggregators](/misc#aggregators) and
|
||||
[Tech News](/misc#tech-news)
|
||||
|
||||
- Re-organized both
|
||||
[Android Operating Systems](/android-iosguide#operating-systems) +
|
||||
[App Launchers](/android-iosguide#app-launchers), and moved them out of
|
||||
[Android Operating Systems](/mobile#operating-systems) +
|
||||
[App Launchers](/mobile#app-launchers), and moved them out of
|
||||
storage.
|
||||
|
||||
---
|
||||
|
||||
### Stars Added ⭐
|
||||
|
||||
- Starred [Braflix](/videopiracyguide#streaming-sites) in Streaming Sites. Fast
|
||||
- Starred [Braflix](/video#streaming-sites) in Streaming Sites. Fast
|
||||
streams, no ads, nice UI, 4K + 1080p.
|
||||
|
||||
- Starred [Liber3](/readingpiracyguide#ebooks) in Reading Sites. Big library,
|
||||
- Starred [Liber3](/reading#ebooks) in Reading Sites. Big library,
|
||||
nice UI, single click downloads.
|
||||
|
||||
- Starred [Screenbox](/video-tools#video-players) in Video Players. Open-source,
|
||||
|
@ -85,19 +85,19 @@ FMHY. Here's to another year of growth and success! 💙
|
|||
|
||||
- Starred [SydneyQt](/ai#proprietary-llms) in AI Chatbots. Jailbroken Bing AI.
|
||||
|
||||
- Starred [App Manager](/android-iosguide#foss-apks) in FOSS APKs. Open-source
|
||||
- Starred [App Manager](/mobile#foss-apks) in FOSS APKs. Open-source
|
||||
Android app package manager.
|
||||
|
||||
- Starred [scrcpy](/android-iosguide#android-device) in Android Tools. Manage
|
||||
- Starred [scrcpy](/mobile#android-device) in Android Tools. Manage
|
||||
mobile devices via desktop.
|
||||
|
||||
- Starred [KernelSU](/android-iosguide#android-device) in Android Device. Root
|
||||
- Starred [KernelSU](/mobile#android-device) in Android Device. Root
|
||||
tool that some people prefer over Magisk.
|
||||
|
||||
- Starred [Onion Browser](/android-iosguide#ios-privacy) in iOS Privacy.
|
||||
- Starred [Onion Browser](/mobile#ios-privacy) in iOS Privacy.
|
||||
Recommended by Tor on their site.
|
||||
|
||||
- Starred [Wii Guide](/gamingpiracyguide#homebrew) in Homebrew.
|
||||
- Starred [Wii Guide](/gaming#homebrew) in Homebrew.
|
||||
|
||||
- Starred [Video2x](/video-tools#video-tools-1) in Video Tools. Lossless
|
||||
video/GIF/image upscaler.
|
||||
|
@ -105,7 +105,7 @@ FMHY. Here's to another year of growth and success! 💙
|
|||
- Starred [VCRedist](/system-tools#windows-updates) in Windows Updates. Easily
|
||||
download all Microsoft Visual C++ redists.
|
||||
|
||||
- Starred [CanvasBlocker](/adblockvpnguide#privacy-extensions) in Privacy
|
||||
- Starred [CanvasBlocker](/privacy#privacy-extensions) in Privacy
|
||||
Extensions. Prevent Javascript API fingerprinting.
|
||||
|
||||
---
|
||||
|
|
|
@ -23,19 +23,19 @@ in seeing all minor changes you can follow our
|
|||
|
||||
* Created **[guides.fmhy.lol](https://guides.fmhy.lol/)** which lists all the guides we have throughout FMHY.
|
||||
|
||||
* Re-ordered [Game DDL](https://fmhy.net/gamingpiracyguide#download-games) based on [poll results](https://challonge.com/1mqmqrdq). Congrats to CS.RIN for coming out on top.
|
||||
* Re-ordered [Game DDL](https://fmhy.net/gaming#download-games) based on [poll results](https://challonge.com/1mqmqrdq). Congrats to CS.RIN for coming out on top.
|
||||
|
||||
* Added both [Sideloading](https://fmhy.net/android-iosguide#ios-sideloading) and [Social Media App](https://fmhy.net/android-iosguide#social-media-apps-1) sections to iOS.
|
||||
* Added both [Sideloading](https://fmhy.net/mobile#ios-sideloading) and [Social Media App](https://fmhy.net/mobile#social-media-apps-1) sections to iOS.
|
||||
|
||||
* Added [Last.fm section](https://fmhy.net/audiopiracyguide#last-fm-tools) to Audio Tracking.
|
||||
* Added [Last.fm section](https://fmhy.net/audio#last-fm-tools) to Audio Tracking.
|
||||
|
||||
* Cleaned up Font section + split it into subcategories: [Open Source](https://fmhy.net/text-tools#open-source-freeware) / [Free Fonts](https://fmhy.net/text-tools#free-fonts).
|
||||
|
||||
* Added guides + better descriptions to all the [Jailbreaking Tools](https://fmhy.net/android-iosguide#ios-jailbreaking).
|
||||
* Added guides + better descriptions to all the [Jailbreaking Tools](https://fmhy.net/mobile#ios-jailbreaking).
|
||||
|
||||
* Added License Tags to [Stock Photo Sites](https://fmhy.net/img-tools#stock-images).
|
||||
* Added License Tags to [Stock Photo Sites](https://fmhy.net/image-tools#stock-images).
|
||||
|
||||
* De-bloated [IDEs section](https://fmhy.net/devtools#ides-code-editors) in dev tools.
|
||||
* De-bloated [IDEs section](https://fmhy.net/developer-tools#ides-code-editors) in dev tools.
|
||||
|
||||
---
|
||||
|
||||
|
@ -43,21 +43,21 @@ in seeing all minor changes you can follow our
|
|||
|
||||
* Starred [Image FX](https://fmhy.net/ai#image-generation) in Image Gen + [Video FX](https://fmhy.net/ai#video-generation) in Video Gen. AI generators made by Google, US only.
|
||||
|
||||
* Starred [Alu](https://fmhy.net/adblockvpnguide#proxy-sites) in Proxy Sites. Proxy site similar to things like HolyUnblocker.
|
||||
* Starred [Alu](https://fmhy.net/privacy#proxy-sites) in Proxy Sites. Proxy site similar to things like HolyUnblocker.
|
||||
|
||||
* Starred [Lively](https://fmhy.net/system-tools#wallpaper-managers) in Wallpaper Managers. Feature-rich live wallpaper manager for Windows.
|
||||
|
||||
* Starred [BandLab](https://fmhy.net/audiopiracyguide#browser-editors-synths) in Audio Browser Editors. Popular and feature-rich digital audio workstation.
|
||||
* Starred [BandLab](https://fmhy.net/audio#browser-editors-synths) in Audio Browser Editors. Popular and feature-rich digital audio workstation.
|
||||
|
||||
* Starred [Kvaesitso](https://fmhy.net/android-iosguide#app-launchers) in Android App Launchers. Feature-rich, search focused launcher.
|
||||
* Starred [Kvaesitso](https://fmhy.net/mobile#app-launchers) in Android App Launchers. Feature-rich, search focused launcher.
|
||||
|
||||
* Starred [SideStore](https://fmhy.net/android-iosguide#ios-sideloading) in iOS Sideloading. Fork of AltStore that doesn't require PC.
|
||||
* Starred [SideStore](https://fmhy.net/mobile#ios-sideloading) in iOS Sideloading. Fork of AltStore that doesn't require PC.
|
||||
|
||||
* Starred [uYouEnhanced](https://fmhy.net/android-iosguide#ios-youtube-apps) in iOS YouTube apps. Modded YouTube IPA.
|
||||
* Starred [uYouEnhanced](https://fmhy.net/mobile#ios-youtube-apps) in iOS YouTube apps. Modded YouTube IPA.
|
||||
|
||||
* Starred [The Book of Secret Knowledge](https://fmhy.net/linuxguide#software-sites) in Linux Software. Lists, manuals, cheatsheets, tools and more.
|
||||
* Starred [The Book of Secret Knowledge](https://fmhy.net/linux-macos#software-sites) in Linux Software. Lists, manuals, cheatsheets, tools and more.
|
||||
|
||||
* Starred [You Don't Need JavaScript](https://fmhy.net/devtools#css) in CSS Tools. Curated list of CSS demos.
|
||||
* Starred [You Don't Need JavaScript](https://fmhy.net/developer-tools#css) in CSS Tools. Curated list of CSS demos.
|
||||
|
||||
---
|
||||
|
||||
|
|
|
@ -20,17 +20,17 @@ in seeing all minor changes you can follow our
|
|||
|
||||
### Wiki Updates
|
||||
|
||||
- Added a [Study / Research](/edupiracyguide/#study--research) section to
|
||||
- Added a [Study / Research](/educational/#study--research) section to
|
||||
Educational.
|
||||
|
||||
- Added a [Travel](/miscguide/#travel) section to Miscellaneous.
|
||||
- Added a [Travel](/misc/#travel) section to Miscellaneous.
|
||||
|
||||
- Added a [Hardware](/system-tools#hardware-tools) section to System Tools.
|
||||
|
||||
- Added qualities (720p, 1080p) to
|
||||
[Anime Streaming](/videopiracyguide/#anime-streaming) sites.
|
||||
[Anime Streaming](/video/#anime-streaming) sites.
|
||||
|
||||
- [Combined](/gamingpiracyguide/#steam--epic) Steam / Epic Tools with DLC
|
||||
- [Combined](/gaming/#steam--epic) Steam / Epic Tools with DLC
|
||||
Unlockers.
|
||||
|
||||
- Linked the ["missing sections"](https://ibb.co/X8K2GTc) in all index pages.
|
||||
|
@ -40,34 +40,34 @@ in seeing all minor changes you can follow our
|
|||
|
||||
### Stars Added ⭐
|
||||
|
||||
- Starred [Seez](/videopiracyguide/#multi-hosts) in Streaming Sites. Nice UI,
|
||||
- Starred [Seez](/video/#multi-hosts) in Streaming Sites. Nice UI,
|
||||
fast 1080p.
|
||||
|
||||
- Starred [SockShare](/videopiracyguide/#dedicated-hosts) in Streaming Sites.
|
||||
- Starred [SockShare](/video/#dedicated-hosts) in Streaming Sites.
|
||||
Great for obscure TV.
|
||||
|
||||
- Starred [UHDMovies](/videopiracyguide/#download-sites) in Video Download. 4K
|
||||
- Starred [UHDMovies](/video/#download-sites) in Video Download. 4K
|
||||
Movie Host.
|
||||
|
||||
- Starred [Glitchwave](/gamingpiracyguide/#tracking--discovery) in Game
|
||||
- Starred [Glitchwave](/gaming/#tracking--discovery) in Game
|
||||
Tracking. RYM's new game rating site.
|
||||
|
||||
- Starred [hate5six](/audiopiracyguide/#streaming-sites) in Audio Streaming.
|
||||
- Starred [hate5six](/audio/#streaming-sites) in Audio Streaming.
|
||||
Huge collection of live band videos.
|
||||
|
||||
- Starred [SittingOnClouds](/audiopiracyguide/#download-sites) in Audio
|
||||
- Starred [SittingOnClouds](/audio/#download-sites) in Audio
|
||||
Download. Game / Anime Soundtracks.
|
||||
|
||||
- Starred [Koalageddon](/gamingpiracyguide/#steam--epic) in Steam / Epic. DLC
|
||||
- Starred [Koalageddon](/gaming/#steam--epic) in Steam / Epic. DLC
|
||||
Unlocker.
|
||||
|
||||
- Starred [SpotC++](/android-iosguide/#ios-audio) in iOS Audio. Spotilife +
|
||||
- Starred [SpotC++](/mobile/#ios-audio) in iOS Audio. Spotilife +
|
||||
Sposify IPA.
|
||||
|
||||
- Starred [Favoree](/toolsguide/#youtube-tools) in YouTube Tools. Channel
|
||||
Discovery.
|
||||
|
||||
- Starred [CloakStream](/adblockvpnguide/#browser-tools) in Privacy Tools.
|
||||
- Starred [CloakStream](/privacy/#browser-tools) in Privacy Tools.
|
||||
Encrypt Download URLs.
|
||||
|
||||
---
|
||||
|
|
|
@ -42,7 +42,7 @@ see most.
|
|||
|
||||
### Wiki Updates
|
||||
|
||||
- Added [Stremio Tools](https://fmhy.net/videopiracyguide#stremio-tools) section
|
||||
- Added [Stremio Tools](https://fmhy.net/video#stremio-tools) section
|
||||
to Streaming.
|
||||
|
||||
- Added [Video Generation](https://fmhy.net/ai#video-generation) section to AI.
|
||||
|
@ -54,17 +54,17 @@ see most.
|
|||
[USB / Bootloaders](https://fmhy.net/system-tools#usb-bootloaders) sections to
|
||||
System Tools.
|
||||
|
||||
- Added [Network Security](https://fmhy.net/adblockvpnguide#network-security)
|
||||
- Added [Network Security](https://fmhy.net/privacy#network-security)
|
||||
section to Privacy.
|
||||
|
||||
- Added
|
||||
[Fanfiction / Stories](https://fmhy.net/readingpiracyguide#fanfiction-stories)
|
||||
[Fanfiction / Stories](https://fmhy.net/reading#fanfiction-stories)
|
||||
section to Reading.
|
||||
|
||||
- Added [Audio Metadata](https://fmhy.net/audiopiracyguide#audio-metadata)
|
||||
- Added [Audio Metadata](https://fmhy.net/audio#audio-metadata)
|
||||
section to Audio.
|
||||
|
||||
- Added [Wayland Compositors](https://fmhy.net/linuxguide#wayland-compositors)
|
||||
- Added [Wayland Compositors](https://fmhy.net/linux-macos#wayland-compositors)
|
||||
section to Linux.
|
||||
|
||||
- Added [Latex Tools](https://fmhy.net/storage#latex-tools) section to Math.
|
||||
|
@ -73,16 +73,16 @@ see most.
|
|||
section with subsections.
|
||||
|
||||
- Split Subtitle section into
|
||||
[Tools](https://fmhy.net/videopiracyguide#subtitles) and
|
||||
[Downloads](https://fmhy.net/videopiracyguide#download-subtitles).
|
||||
[Tools](https://fmhy.net/video#subtitles) and
|
||||
[Downloads](https://fmhy.net/video#download-subtitles).
|
||||
|
||||
- Added multiple (15) new sections to
|
||||
[Dev Tools](https://fmhy.pages.dev/devtools), and cleaned up a lot of old
|
||||
[Dev Tools](https://fmhy.pages.dev/developer-tools), 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.
|
||||
[Image Optimization](https://fmhy.net/image-tools#image-optimization) and
|
||||
[Icons / Avatars](https://fmhy.net/image-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
|
||||
|
@ -103,7 +103,7 @@ see most.
|
|||
in Bio Sites. Feature-rich, nice UI, stood out to us when going through the
|
||||
section.
|
||||
|
||||
- Starred [RetroAchievements](https://fmhy.net/gamingpiracyguide#emulators) in
|
||||
- Starred [RetroAchievements](https://fmhy.net/gaming#emulators) in
|
||||
Emulators. Add achievements to retro games / ROMs.
|
||||
|
||||
- Starred [r/Translator](https://www.reddit.com/r/translator/) in Translators.
|
||||
|
@ -112,26 +112,26 @@ see most.
|
|||
- 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
|
||||
- Starred [FossifyOrg](https://fmhy.net/mobile#foss-apks) in FOSS
|
||||
APKs. Covers most basic apps, minimal UI.
|
||||
|
||||
- Starred
|
||||
[Universal Android Debloater](https://fmhy.net/android-iosguide#optimization)
|
||||
[Universal Android Debloater](https://fmhy.net/mobile#optimization)
|
||||
in Android Optimization. Updated fork of original UAD.
|
||||
|
||||
- Starred [Amarok](https://fmhy.net/android-iosguide#android-privacy) in Android
|
||||
- Starred [Amarok](https://fmhy.net/mobile#android-privacy) in Android
|
||||
Privacy. Easily hide private files / apps on android.
|
||||
|
||||
- Starred [Sideloadly](https://fmhy.net/android-iosguide#ios-apps) in iOS Apps.
|
||||
- Starred [Sideloadly](https://fmhy.net/mobile#ios-apps) in iOS Apps.
|
||||
Lightweight, simple setup, auto-updates apps.
|
||||
|
||||
- Starred [EeveeSpotify](https://fmhy.net/android-iosguide#ios-audio) in iOS
|
||||
- Starred [EeveeSpotify](https://fmhy.net/mobile#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
|
||||
- Starred [S0undTV](https://fmhy.net/mobile#smart-tv-firestick) in
|
||||
Firestick. Ad-free Twitch for Firestick.
|
||||
|
||||
- Starred [Uncyclopedia](https://fmhy.net/miscguide#random) in Fun Sites.
|
||||
- Starred [Uncyclopedia](https://fmhy.net/misc#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.
|
||||
|
|
|
@ -27,57 +27,57 @@ in seeing all minor changes you can follow our
|
|||
|
||||
- Added a **[Browser Startpage](https://fmhy.net/startpage)** to our website. If there's anything you guys would like added to it let us know. ty to tasky for this.
|
||||
|
||||
- Added [Tabletop](https://fmhy.net/gamingpiracyguide#tabletop-games), [Chess](https://fmhy.net/gamingpiracyguide#chess), [Card](https://fmhy.net/gamingpiracyguide#card-games), [Dungeons & Dragons](https://fmhy.net/edupiracyguide#dungeons-dragons) and [RPG Worldbuilding](https://fmhy.net/gaming-tools#rpg-worldbuilding) sections.
|
||||
- Added [Tabletop](https://fmhy.net/gaming#tabletop-games), [Chess](https://fmhy.net/gaming#chess), [Card](https://fmhy.net/gaming#card-games), [Dungeons & Dragons](https://fmhy.net/educational#dungeons-dragons) and [RPG Worldbuilding](https://fmhy.net/gaming-tools#rpg-worldbuilding) sections.
|
||||
|
||||
- Updated guides: [VPN Binding](https://fmhy.net/adblockvpnguide#vpn-tools) / [Windows Debloat](https://fmhy.net/system-tools#windows-isos) / [Revanced Obtainium](https://fmhy.net/android-iosguide#revanced-tools) / [webOS Homebrew](https://fmhy.net/videopiracyguide#smart-tv-firestick)
|
||||
- Updated guides: [VPN Binding](https://fmhy.net/privacy#vpn-tools) / [Windows Debloat](https://fmhy.net/system-tools#windows-isos) / [Revanced Obtainium](https://fmhy.net/mobile#revanced-tools) / [webOS Homebrew](https://fmhy.net/video#smart-tv-firestick)
|
||||
|
||||
- Cleaned up [Royalty Free Music](https://fmhy.net/audiopiracyguide#royalty-free-music), added labels and moved it from storage to its own section. [Before vs. After](https://i.ibb.co/20Bb99zP/image.png).
|
||||
- Cleaned up [Royalty Free Music](https://fmhy.net/audio#royalty-free-music), added labels and moved it from storage to its own section. [Before vs. After](https://i.ibb.co/20Bb99zP/image.png).
|
||||
|
||||
- Cleaned up [Content Removers](https://fmhy.net/img-tools#content-removers), merged both sections, and moved out of storage. [Before vs. After](https://i.ibb.co/rnThdr5/Untitled.jpg).
|
||||
- Cleaned up [Content Removers](https://fmhy.net/image-tools#content-removers), merged both sections, and moved out of storage. [Before vs. After](https://i.ibb.co/rnThdr5/Untitled.jpg).
|
||||
|
||||
- Cleaned up [File / P2P Transfer](https://fmhy.net/file-tools#file-transfer), removed any that were unmaintained or had bad privacy policies. [Before vs. After](https://i.ibb.co/GfK168jD/Untitled.jpg).
|
||||
|
||||
- Cleaned up [Regex Tools](https://fmhy.net/devtools#regex-tools), [Map Creators / Editors](https://fmhy.net/devtools#map-creators-editors) and [Tabletop Tool](https://fmhy.net/gaming-tools#tabletop-tools) sections.
|
||||
- Cleaned up [Regex Tools](https://fmhy.net/developer-tools#regex-tools), [Map Creators / Editors](https://fmhy.net/developer-tools#map-creators-editors) and [Tabletop Tool](https://fmhy.net/gaming-tools#tabletop-tools) sections.
|
||||
|
||||
- Moved [Browser Ebook Readers](https://fmhy.net/readingpiracyguide#browser-ebook-readers) + [Game Assets](https://fmhy.net/devtools#game-assets) out of storage into their own sections.
|
||||
- Moved [Browser Ebook Readers](https://fmhy.net/reading#browser-ebook-readers) + [Game Assets](https://fmhy.net/developer-tools#game-assets) out of storage into their own sections.
|
||||
|
||||
- Split [Job Search / Application](https://fmhy.net/miscguide#job-search-application) sites into their own section under career.
|
||||
- Split [Job Search / Application](https://fmhy.net/misc#job-search-application) sites into their own section under career.
|
||||
|
||||
***
|
||||
|
||||
# Stars Added ⭐
|
||||
|
||||
- Starred [Acer Movies](https://fmhy.net/videopiracyguide#drives-directories) in Drives / Directories. Big library with single click downloads.
|
||||
- Starred [Acer Movies](https://fmhy.net/video#drives-directories) in Drives / Directories. Big library with single click downloads.
|
||||
|
||||
- Starred [Ascendara](https://fmhy.net/gaming-tools#game-launchers) in Game Launchers. Open-source, feature-rich game manager with easy in-app downloads.
|
||||
|
||||
- Starred [GPT1Image](https://fmhy.net/ai#image-generation) in Image Generators. Free unlimited GPT-Image-1 images.
|
||||
|
||||
- Starred [Axekin](https://fmhy.net/gamingpiracyguide#rom-sites) in ROM sites. Fast hosts, big library, lots of platforms.
|
||||
- Starred [Axekin](https://fmhy.net/gaming#rom-sites) in ROM sites. Fast hosts, big library, lots of platforms.
|
||||
|
||||
- Starred [NoPayStation](https://nopaystation.com/) in Sony ROMs. One of the best sources for Sony platform ROMs.
|
||||
|
||||
- Starred [1DM](https://fmhy.net/android-iosguide#android-file-tools) in Android Download Managers as it [won in polls](https://i.ibb.co/zh2BKZ0z/image.png), and has features like split file support.
|
||||
- Starred [1DM](https://fmhy.net/mobile#android-file-tools) in Android Download Managers as it [won in polls](https://i.ibb.co/zh2BKZ0z/image.png), and has features like split file support.
|
||||
|
||||
- Starred [Metrolist](https://fmhy.net/android-iosguide#youtube-music) in Android YouTube Music players as people feel this stands out the most of the Outertune forks.
|
||||
- Starred [Metrolist](https://fmhy.net/mobile#youtube-music) in Android YouTube Music players as people feel this stands out the most of the Outertune forks.
|
||||
|
||||
- Starred [AntiSplit-M](https://fmhy.net/android-iosguide#apk-tools) in APK Tools. Easily merge split APK files.
|
||||
- Starred [AntiSplit-M](https://fmhy.net/mobile#apk-tools) in APK Tools. Easily merge split APK files.
|
||||
|
||||
- Starred [bleh](https://fmhy.net/audiopiracyguide#last-fm-tools) in Last.fm Tools. Feature-rich customization script that makes the site look much better.
|
||||
- Starred [bleh](https://fmhy.net/audio#last-fm-tools) in Last.fm Tools. Feature-rich customization script that makes the site look much better.
|
||||
|
||||
- Starred [PDALife](https://fmhy.net/android-iosguide#modded-apks) in Modded APKs. Easy download process, fast host, good for modded games.
|
||||
- Starred [PDALife](https://fmhy.net/mobile#modded-apks) in Modded APKs. Easy download process, fast host, good for modded games.
|
||||
|
||||
- Starred [GamersNexus](https://fmhy.net/miscguide#tech-news) in Tech News. In-depth component reviews / news for PC building.
|
||||
- Starred [GamersNexus](https://fmhy.net/misc#tech-news) in Tech News. In-depth component reviews / news for PC building.
|
||||
|
||||
- Starred [bt.etree, MiroPPB (ASOT), and BBC Essential](https://fmhy.net/audiopiracyguide#concerts-live-shows) in Concert / Live Shows.
|
||||
- Starred [bt.etree, MiroPPB (ASOT), and BBC Essential](https://fmhy.net/audio#concerts-live-shows) in Concert / Live Shows.
|
||||
|
||||
- Starred [NovelFire](https://fmhy.net/readingpiracyguide#light-novels) in Light Novels. Nice UI, allows login to rate and save progress.
|
||||
- Starred [NovelFire](https://fmhy.net/reading#light-novels) in Light Novels. Nice UI, allows login to rate and save progress.
|
||||
|
||||
- Starred [LM Studio](https://fmhy.net/ai#self-hosting-tools) in AI Self-Hosting. Useful for running models locally, supports all GPUs, or runs on CPU if needed.
|
||||
|
||||
- Starred [Tailscale](https://fmhy.net/adblockvpnguide#vpn-tools) in VPN Tools. Secure Network VPN that's easy to use and very [feature-rich](https://i.ibb.co/ZRhQBNtX/image.png).
|
||||
- Starred [Tailscale](https://fmhy.net/privacy#vpn-tools) in VPN Tools. Secure Network VPN that's easy to use and very [feature-rich](https://i.ibb.co/ZRhQBNtX/image.png).
|
||||
|
||||
- Starred [Stop The Bleed](https://fmhy.net/edupiracyguide#med-school) in Med School. Free first aid video courses and resources.
|
||||
- Starred [Stop The Bleed](https://fmhy.net/educational#med-school) in Med School. Free first aid video courses and resources.
|
||||
|
||||
***
|
||||
|
||||
|
|
|
@ -19,14 +19,14 @@ in seeing all minor changes you can follow our
|
|||
|
||||
### Wiki Updates
|
||||
|
||||
- Added a [Chess / Checkers](/gamingpiracyguide/#chess--checkers) section to
|
||||
- Added a [Chess / Checkers](/gaming/#chess--checkers) section to
|
||||
Browser Games.
|
||||
|
||||
- Added a [Stable Diffusion](/ai/#stable-diffusion) section to Artificial
|
||||
Intelligence.
|
||||
|
||||
- Added qualities (720p, 1080p, 4k) to
|
||||
[Video Download](/videopiracyguide/#download-sites) sites.
|
||||
[Video Download](/video/#download-sites) sites.
|
||||
|
||||
- Created a [Git Organization](https://github.com/fmhy) and combined all FMHY
|
||||
related projects into it.
|
||||
|
@ -58,25 +58,25 @@ in seeing all minor changes you can follow our
|
|||
|
||||
- Starred [Bark](/ai/#text-to-speech) in Text to Speech.
|
||||
|
||||
- Starred [Firehawk52 Guide](/audiopiracyguide/#download-apps) in Audio
|
||||
- Starred [Firehawk52 Guide](/audio/#download-apps) in Audio
|
||||
Downloading.
|
||||
|
||||
- Starred [store.rg](/downloadpiracyguide/#freeware-sites) in Freeware Sites.
|
||||
- Starred [store.rg](/downloading/#freeware-sites) in Freeware Sites.
|
||||
|
||||
- Starred [f.lux](/toolsguide/#tweaking) in System Tweaking.
|
||||
|
||||
- Starred [MacroDroid](/android-iosguide/#android-tools) in Android Tools.
|
||||
- Starred [MacroDroid](/mobile/#android-tools) in Android Tools.
|
||||
|
||||
- Starred [Rating Graph](https://www.ratingraph.com/) and
|
||||
[DeepSearch](https://deepsearch.mycelebs.com/movie) in Tracking / Discovery.
|
||||
|
||||
- Starred [Programming Learning Resources](/devtools/#learning--cheat-sheets) in
|
||||
- Starred [Programming Learning Resources](/developer-tools/#learning--cheat-sheets) in
|
||||
Dev Tools.
|
||||
|
||||
- Starred [CityHop](/audiopiracyguide/#ambient--relaxation) in Ambient /
|
||||
- Starred [CityHop](/audio/#ambient--relaxation) in Ambient /
|
||||
Relaxation.
|
||||
|
||||
- Starred [Knockout](/miscguide/#chat--forums) in Chat / Forums. Made by members
|
||||
- Starred [Knockout](/misc/#chat--forums) in Chat / Forums. Made by members
|
||||
of facepunch forums after it shut down.
|
||||
|
||||
---
|
||||
|
@ -101,4 +101,4 @@ in seeing all minor changes you can follow our
|
|||
- Unstarred Awesome ChatGPT as its no longer updated.
|
||||
|
||||
- Bromite doesn't seem to be maintained anymore, so we've replaced the main repo
|
||||
with an [autobuild](/android-iosguide/) for now.
|
||||
with an [autobuild](/mobile/) for now.
|
||||
|
|
|
@ -25,31 +25,31 @@ in seeing all minor changes you can follow our
|
|||
[3DS / DS](https://fmhy.net/gaming-tools#_3ds-ds-homebrew) and
|
||||
[Playstation](https://fmhy.net/gaming-tools#playstation-homebrew) sections to
|
||||
Homebrew.
|
||||
- Added [Virtual Reality](https://fmhy.net/gamingpiracyguide#virtual-reality)
|
||||
- Added [Virtual Reality](https://fmhy.net/gaming#virtual-reality)
|
||||
and [Game Save](https://fmhy.net/gaming-tools#game-saves) sections to Gaming.
|
||||
|
||||
- Added [Dev Communities](https://fmhy.net/devtools#dev-communities) and
|
||||
[Reverse Engineering](https://fmhy.net/devtools#reverse-engineering) sections
|
||||
- Added [Dev Communities](https://fmhy.net/developer-tools#dev-communities) and
|
||||
[Reverse Engineering](https://fmhy.net/developer-tools#reverse-engineering) sections
|
||||
to Dev Tools.
|
||||
|
||||
- Added [Linux Communities](https://fmhy.net/linuxguide#linux-communities)
|
||||
- Added [Linux Communities](https://fmhy.net/linux-macos#linux-communities)
|
||||
section to Linux.
|
||||
|
||||
- Added [Flights](https://fmhy.net/miscguide#flights) section to Travel.
|
||||
- Added [Flights](https://fmhy.net/misc#flights) section to Travel.
|
||||
|
||||
- Organized the Maps section, and added multiple
|
||||
[new subsections](https://fmhy.net/miscguide#maps) to it.
|
||||
[new subsections](https://fmhy.net/misc#maps) to it.
|
||||
|
||||
- Debloated [Indexes](https://fmhy.net/miscguide#indexes),
|
||||
[Multi-Tool](https://fmhy.net/miscguide#multi-tool-sites),
|
||||
[File Scanners](https://fmhy.net/adblockvpnguide#file-scanners),
|
||||
- Debloated [Indexes](https://fmhy.net/misc#indexes),
|
||||
[Multi-Tool](https://fmhy.net/misc#multi-tool-sites),
|
||||
[File Scanners](https://fmhy.net/privacy#file-scanners),
|
||||
[Archiving](https://fmhy.net/internet-tools#archiving) and
|
||||
[Sheet Music](https://fmhy.net/storage#music-sheet-collections) sections.
|
||||
|
||||
- Re-added our
|
||||
[Unsafe Sites Filter](https://github.com/WindowsAurora/FMHYFilterlist/). This
|
||||
can be added to uBlock to stop anything in
|
||||
[unsafe sites](https://fmhy.net/unsafesites) from loading in your browser.
|
||||
[unsafe sites](https://fmhy.net/unsafe) from loading in your browser.
|
||||
|
||||
- We compared FMHY to the badware filter list to make sure we didn't have
|
||||
anything on it, [and we didn't](https://ibb.co/9TQ6Nnv).
|
||||
|
@ -62,16 +62,16 @@ in seeing all minor changes you can follow our
|
|||
### Stars Added ⭐
|
||||
|
||||
- Starred both squid.wtf and MP3 Daddy in
|
||||
[Audio Ripping](https://fmhy.net/audiopiracyguide#audio-ripping-sites). Deezer
|
||||
[Audio Ripping](https://fmhy.net/audio#audio-ripping-sites). Deezer
|
||||
ripping sites both capable of getting FLAC files.
|
||||
|
||||
- Starred [Morphic](https://fmhy.net/ai#online-chatbots) in Online Chatbots.
|
||||
GPT4o powered search w/ no limits.
|
||||
|
||||
- Starred [ROM Heaven](https://fmhy.net/gamingpiracyguide#rom-sites) in ROM
|
||||
- Starred [ROM Heaven](https://fmhy.net/gaming#rom-sites) in ROM
|
||||
sites. Badass new ROM site with single click DDL and a high quality UI.
|
||||
|
||||
- Starred [All Things Linux](https://fmhy.net/linuxguide#linux-communities) in
|
||||
- Starred [All Things Linux](https://fmhy.net/linux-macos#linux-communities) in
|
||||
Linux Communities. Linux Discord server focused on helping others and
|
||||
learning.
|
||||
|
||||
|
@ -81,7 +81,7 @@ in seeing all minor changes you can follow our
|
|||
- Starred [CompactGUI](https://fmhy.net/file-tools#file-archivers) in File
|
||||
Archivers. Very [useful](https://ibb.co/xm23Xbh) archiver with nice UI.
|
||||
|
||||
- Starred [Spicetify](https://fmhy.net/audiopiracyguide#spotify-adblockers) in
|
||||
- Starred [Spicetify](https://fmhy.net/audio#spotify-adblockers) in
|
||||
Spotify Adblockers. This has adblock plugins that work just as well as SpotX.
|
||||
|
||||
- Starred [UI Revert Script](https://fmhy.net/social-media-tools#reddit-tools)
|
||||
|
@ -93,13 +93,13 @@ in seeing all minor changes you can follow our
|
|||
- Starred [PurpleAdblock](https://fmhy.net/social-media-tools#twitch-adblockers)
|
||||
in Twitch Adblockers. Got a update recently and seems to be working again.
|
||||
|
||||
- Starred [ImageGlass](https://fmhy.net/img-tools#image-viewers) in Image
|
||||
- Starred [ImageGlass](https://fmhy.net/image-tools#image-viewers) in Image
|
||||
Viewers. Popular lightweight image viewer with a nice UI.
|
||||
|
||||
- Starred [Neal.fun](https://fmhy.net/storage#fun-indexes) in Fun Indexes. OG
|
||||
site with lots of fun games / experiments.
|
||||
|
||||
- Starred [Pi-hole](https://fmhy.net/adblockvpnguide#dns-adblocking) in DNS
|
||||
- Starred [Pi-hole](https://fmhy.net/privacy#dns-adblocking) in DNS
|
||||
Adblockers as their lists are more updated than NextDNS.
|
||||
|
||||
- Starred [ChatGPT](https://fmhy.net/ai#online-chatbots) in Online Chatbots as
|
||||
|
|
|
@ -24,35 +24,35 @@ in seeing all minor changes you can follow our
|
|||
|
||||
- You can now search FMHY using [Brave Goggles](https://github.com/fmhy/bookmarks?tab=readme-ov-file#goggle).
|
||||
|
||||
- Added [Nintendo](https://fmhy.net/gamingpiracyguide#nintendo-roms), [Sony](https://fmhy.net/gamingpiracyguide#sony-roms), and [Resource](https://fmhy.net/gamingpiracyguide#rom-resources) sections to ROMs.
|
||||
- Added [Nintendo](https://fmhy.net/gaming#nintendo-roms), [Sony](https://fmhy.net/gaming#sony-roms), and [Resource](https://fmhy.net/gaming#rom-resources) sections to ROMs.
|
||||
|
||||
- Added [Rubik's Cube](https://fmhy.net/gamingpiracyguide#rubiks-cube), [Minesweeper](https://fmhy.net/gamingpiracyguide#minesweeper), and [Crossword](https://fmhy.net/gamingpiracyguide#crossword-puzzles) sections to Puzzles.
|
||||
- Added [Rubik's Cube](https://fmhy.net/gaming#rubiks-cube), [Minesweeper](https://fmhy.net/gaming#minesweeper), and [Crossword](https://fmhy.net/gaming#crossword-puzzles) sections to Puzzles.
|
||||
|
||||
- Added [Game Learning](https://fmhy.net/edupiracyguide#game-learning) section to Educational, with [Rubik's Cube](https://fmhy.net/edupiracyguide#rubiks-cube) + [Chess](https://fmhy.net/edupiracyguide#chess) subsections.
|
||||
- Added [Game Learning](https://fmhy.net/educational#game-learning) section to Educational, with [Rubik's Cube](https://fmhy.net/educational#rubiks-cube) + [Chess](https://fmhy.net/educational#chess) subsections.
|
||||
|
||||
- Added [Firefox Tools](https://fmhy.net/internet-tools#firefox-tools) section to Internet.
|
||||
|
||||
- Added [Data Breach Monitoring](https://fmhy.net/adblockvpnguide#data-breach-monitoring) section to Privacy.
|
||||
- Added [Data Breach Monitoring](https://fmhy.net/privacy#data-breach-monitoring) section to Privacy.
|
||||
|
||||
- Added [Task Automation](https://fmhy.net/system-tools#task-automation) section to System Tools.
|
||||
|
||||
- Added [Unix-Like](https://fmhy.net/linuxguide#unix-like) section to the bottom of Linux.
|
||||
- Added [Unix-Like](https://fmhy.net/linux-macos#unix-like) section to the bottom of Linux.
|
||||
|
||||
- Added Size Limits + Signup Requirements to [Remote Torrenting](https://fmhy.net/torrentpiracyguide#remote-torrenting) descriptions.
|
||||
- Added Size Limits + Signup Requirements to [Remote Torrenting](https://fmhy.net/torrenting#remote-torrenting) descriptions.
|
||||
|
||||
- Re-organized [Android Audio Players](https://fmhy.net/android-iosguide#android-audio-players) based on [Poll Results](https://i.imgur.com/2FOFOth.png). The four stars are now: Poweramp, Musicolet, VLC, and Foobar.
|
||||
- Re-organized [Android Audio Players](https://fmhy.net/mobile#android-audio-players) based on [Poll Results](https://i.imgur.com/2FOFOth.png). The four stars are now: Poweramp, Musicolet, VLC, and Foobar.
|
||||
|
||||
- Re-organized [Android Keyboards](https://fmhy.net/android-iosguide#keyboard-tools) based on [Poll Results](https://i.imgur.com/OE8zsC0.png). FUTO managed to keep its top spot, and Heli was bumped up much higher.
|
||||
- Re-organized [Android Keyboards](https://fmhy.net/mobile#keyboard-tools) based on [Poll Results](https://i.imgur.com/OE8zsC0.png). FUTO managed to keep its top spot, and Heli was bumped up much higher.
|
||||
|
||||
- Re-organized [Live Sports](https://fmhy.net/videopiracyguide#live-sports), removed sites w/ broken or dupe players, and starred a few that seemed to stand out. [Before vs. After](https://i.imgur.com/eDioF9L.png).
|
||||
- Re-organized [Live Sports](https://fmhy.net/video#live-sports), removed sites w/ broken or dupe players, and starred a few that seemed to stand out. [Before vs. After](https://i.imgur.com/eDioF9L.png).
|
||||
|
||||
- Re-organized [Radio Streaming](https://fmhy.net/audiopiracyguide#radio-streaming) + [Internet Radio](https://fmhy.net/audiopiracyguide#internet-radio), added new stars, new labels, and moved both sections out of storage.
|
||||
- Re-organized [Radio Streaming](https://fmhy.net/audio#radio-streaming) + [Internet Radio](https://fmhy.net/audio#internet-radio), added new stars, new labels, and moved both sections out of storage.
|
||||
|
||||
- Re-organized [RSS Readers](https://fmhy.net/internet-tools#rss-readers), improved labels, removed bad ones. [Before vs. After](https://i.imgur.com/oAVEC6H.png).
|
||||
|
||||
- Re-organized [Text Adventures](https://fmhy.net/gamingpiracyguide#text-adventures), added labels, and moved out of storage. [Before vs. After](https://i.imgur.com/JrdEDC3.png).
|
||||
- Re-organized [Text Adventures](https://fmhy.net/gaming#text-adventures), added labels, and moved out of storage. [Before vs. After](https://i.imgur.com/JrdEDC3.png).
|
||||
|
||||
- Re-organized Dev Tool Sites, moved out of storage, and separated into [Indexes](https://fmhy.net/devtools#dev-tool-indexes) + [Online Toolkits](https://fmhy.net/devtools#online-toolkits). [Before vs. After](https://i.imgur.com/JyJOW9v.png).
|
||||
- Re-organized Dev Tool Sites, moved out of storage, and separated into [Indexes](https://fmhy.net/developer-tools#dev-tool-indexes) + [Online Toolkits](https://fmhy.net/developer-tools#online-toolkits). [Before vs. After](https://i.imgur.com/JyJOW9v.png).
|
||||
|
||||
- Updated [grading criteria #4 and #5](https://github.com/fmhy/FMHY/wiki/Stream-Site-Grading) to reward sites that have source auto-switch + episode auto-next working across all their servers. Also merged quality, subtitle, and media type criteria into #1, to simplify scoring, and started giving points for watch party support. This has reduced the total amount of stars, and helped the best sites stand out more. [Before vs. After]( https://i.imgur.com/omYr1pQ.png).
|
||||
|
||||
|
@ -66,7 +66,7 @@ in seeing all minor changes you can follow our
|
|||
|
||||
- Starred [Blip](https://fmhy.net/file-tools#file-transfer) in File Transfer. Easily transfer large files over the internet, or your own devices. Well-liked by everyone in our discord who has tried it.
|
||||
|
||||
- Starred [ImageToolbox](https://fmhy.net/android-iosguide#camera-tools) in Android Image Editors. Open-source, feature-rich, and well maintained.
|
||||
- Starred [ImageToolbox](https://fmhy.net/mobile#camera-tools) in Android Image Editors. Open-source, feature-rich, and well maintained.
|
||||
|
||||
- Starred [Parabolic](https://fmhy.net/social-media-tools#youtube-downloaders) in YouTube Downloaders. Open-source, multi-platform, one of the easier to use YT-DLP frontends.
|
||||
|
||||
|
@ -74,13 +74,13 @@ in seeing all minor changes you can follow our
|
|||
|
||||
- Starred [GameBanana](https://fmhy.net/gaming-tools#game-mods) in Game Mods. High quality, well-organized, the go-to for certain franchises like Sonic, Celeste, etc.
|
||||
|
||||
- Starred [TETR.IO](https://fmhy.net/gamingpiracyguide#party-multiplayer) in Multiplayer Browser Games. F2P multiplayer Tetris thats popular, feature-rich, and [well-maintained](https://tetr.io/about/patchnotes/) by its devs.
|
||||
- Starred [TETR.IO](https://fmhy.net/gaming#party-multiplayer) in Multiplayer Browser Games. F2P multiplayer Tetris thats popular, feature-rich, and [well-maintained](https://tetr.io/about/patchnotes/) by its devs.
|
||||
|
||||
- Starred [Mario Kart PC](https://fmhy.net/gamingpiracyguide#browser-games) in Browser Games. SNES Style Mario Kart w/ [Custom Maps](https://mkpc.malahieude.net/creations.php) & Multiplayer.
|
||||
- Starred [Mario Kart PC](https://fmhy.net/gaming#browser-games) in Browser Games. SNES Style Mario Kart w/ [Custom Maps](https://mkpc.malahieude.net/creations.php) & Multiplayer.
|
||||
|
||||
- Starred [RootlessJamesDSP](https://fmhy.net/android-iosguide#android-audio) in Android Audio Equalizers. Open-source, supports many apps, AutoEQ support, good Poweramp alt.
|
||||
- Starred [RootlessJamesDSP](https://fmhy.net/mobile#android-audio) in Android Audio Equalizers. Open-source, supports many apps, AutoEQ support, good Poweramp alt.
|
||||
|
||||
- Starred [Plonk It](https://fmhy.net/gamingpiracyguide#geoguessr-games) in GeoGuessr Games. Active community for learning GeoGuessr.
|
||||
- Starred [Plonk It](https://fmhy.net/gaming#geoguessr-games) in GeoGuessr Games. Active community for learning GeoGuessr.
|
||||
|
||||
- Starred [Zed](https://fmhy.net/ai#coding-ais) in Coding AIs. Collaborative coding AI, getting positive attention from [HackerNews](https://news.ycombinator.com/item?id=43959710) + our members.
|
||||
|
||||
|
|
|
@ -22,7 +22,7 @@ in seeing all minor changes you can follow our
|
|||
|
||||
- Re-ordered [AI image generators](https://fmhy.net/ai#image-generation) based on [poll results](https://challonge.com/xfu596g9). Thanks to everyone who voted, and congrats to NexusAI Image for coming out on top.
|
||||
|
||||
- Separated [Image Hosts](https://fmhy.net/img-tools#image-hosts) & [Online Galleries](https://fmhy.net/img-tools#online-galleries) into their own subsections + added size, file retention, and signup requirement tags.
|
||||
- Separated [Image Hosts](https://fmhy.net/image-tools#image-hosts) & [Online Galleries](https://fmhy.net/image-tools#online-galleries) into their own subsections + added size, file retention, and signup requirement tags.
|
||||
|
||||
- Split Web Hosting Sites into [Dynamic](https://fmhy.net/storage#dynamic-page-hosting), [Static](https://fmhy.net/storage#static-page-hosting) & [Builders](https://fmhy.net/storage#website-builders) + added space, monthly transfer and traffic tags to each.
|
||||
|
||||
|
@ -32,7 +32,7 @@ in seeing all minor changes you can follow our
|
|||
|
||||
- Added mobile optimization scores for all the [streaming sites](<https://github.com/fmhy/FMHY/wiki/Stream-Site-Grading>).
|
||||
|
||||
- Added tags / labels to [Image Upscalers](https://fmhy.net/img-tools#upscale-restore) section.
|
||||
- Added tags / labels to [Image Upscalers](https://fmhy.net/image-tools#upscale-restore) section.
|
||||
|
||||
---
|
||||
|
||||
|
@ -46,11 +46,11 @@ in seeing all minor changes you can follow our
|
|||
|
||||
- Starred [wide.video](https://fmhy.net/video-tools#online-editors) in Online Video Editors. Feature-rich and stands out a lot compared to similar options.
|
||||
|
||||
- Starred [Footballia](https://fmhy.net/videopiracyguide#sports-replays) in Sports Replays. Full classic football matches.
|
||||
- Starred [Footballia](https://fmhy.net/video#sports-replays) in Sports Replays. Full classic football matches.
|
||||
|
||||
- Starred [Geotastic](https://fmhy.net/gamingpiracyguide#geoguessr-games) in GeoGuessr Games. Seems to stand out compared to similar options.
|
||||
- Starred [Geotastic](https://fmhy.net/gaming#geoguessr-games) in GeoGuessr Games. Seems to stand out compared to similar options.
|
||||
|
||||
- Starred [DAREBEE + r/BodyweightFitness Wiki](https://fmhy.net/miscguide#workout-exercise) in Workout. Multiple fitness routines, both seem to be well liked by the community.
|
||||
- Starred [DAREBEE + r/BodyweightFitness Wiki](https://fmhy.net/misc#workout-exercise) in Workout. Multiple fitness routines, both seem to be well liked by the community.
|
||||
|
||||
- Re-starred [Stacher](https://fmhy.net/social-media-tools#youtube-downloaders) in YouTube Downloaders. People felt as though a good YT-DLP GUI was worth having starred again.
|
||||
|
||||
|
|
|
@ -23,29 +23,29 @@ in seeing all minor changes you can follow our
|
|||
[Fonts](https://cse.google.com/cse?cx=82154ebab193e493d).
|
||||
|
||||
- Added section for
|
||||
[Productivity Tools](https://fmhy.net/miscguide#productivity-tools) in Useful
|
||||
[Productivity Tools](https://fmhy.net/misc#productivity-tools) in Useful
|
||||
Sites.
|
||||
|
||||
- Added section for [File Recovery](https://fmhy.net/file-tools#file-recovery)
|
||||
in File Tools.
|
||||
|
||||
- Added section for
|
||||
[Fingerprinting / Tracking](https://fmhy.net/adblockvpnguide#fingerprinting-tracking)
|
||||
[Fingerprinting / Tracking](https://fmhy.net/privacy#fingerprinting-tracking)
|
||||
in Privacy.
|
||||
|
||||
- Added sections for
|
||||
[Mario Kart](https://fmhy.net/gamingpiracyguide#mario-kart-tools) +
|
||||
[Geometry Dash](https://fmhy.net/gamingpiracyguide#geometry-dash-tools) in
|
||||
[Mario Kart](https://fmhy.net/gaming#mario-kart-tools) +
|
||||
[Geometry Dash](https://fmhy.net/gaming#geometry-dash-tools) in
|
||||
Gaming.
|
||||
|
||||
- Added section for
|
||||
[Crypto / Bitcoin](https://fmhy.net/miscguide#crypto-bitcoin) in Career.
|
||||
[Crypto / Bitcoin](https://fmhy.net/misc#crypto-bitcoin) in Career.
|
||||
|
||||
- Added section for [Raspberry Pi](https://fmhy.net/linuxguide#raspberry-pi) in
|
||||
- Added section for [Raspberry Pi](https://fmhy.net/linux-macos#raspberry-pi) in
|
||||
Linux.
|
||||
|
||||
- Added sections for [Design Apps](https://fmhy.net/img-tools#design-apps) +
|
||||
[Design Assets](https://fmhy.net/img-tools#free-assets) in Image Tools.
|
||||
- Added sections for [Design Apps](https://fmhy.net/image-tools#design-apps) +
|
||||
[Design Assets](https://fmhy.net/image-tools#free-assets) in Image Tools.
|
||||
|
||||
- Our Minecraft Server is now live. Click
|
||||
**[here](https://fmhy.net/posts/minecraft-server)** to join.
|
||||
|
@ -55,7 +55,7 @@ in seeing all minor changes you can follow our
|
|||
### Stars Added ⭐
|
||||
|
||||
- Starred
|
||||
[yet another music server](https://fmhy.net/audiopiracyguide#audio-downloading)
|
||||
[yet another music server](https://fmhy.net/audio#audio-downloading)
|
||||
in Audio Downloading. Multi-site DDL (deezer, qobuz, tidal, spotify, youtube,
|
||||
FLAC.)
|
||||
|
||||
|
@ -63,7 +63,7 @@ in seeing all minor changes you can follow our
|
|||
limit GPT-4, tell it to always talk in english.
|
||||
|
||||
- Starred
|
||||
[M4UFree + YesMovies](https://fmhy.net/videopiracyguide#streaming-sites) in
|
||||
[M4UFree + YesMovies](https://fmhy.net/video#streaming-sites) in
|
||||
Streaming. Both have huge libraries, fast 1080p, and have been around for over
|
||||
a decade.
|
||||
|
||||
|
@ -74,20 +74,20 @@ in seeing all minor changes you can follow our
|
|||
[Simply Optimized](https://fmhy.net/storage#minecraft-optimization-mods) in
|
||||
Minecraft Optimization. Some prefer this to Fabulously Optimized.
|
||||
|
||||
- Starred [SolidTorrents](https://fmhy.net/torrentpiracyguide#aggregators) in
|
||||
- Starred [SolidTorrents](https://fmhy.net/torrenting#aggregators) in
|
||||
Torrent Aggregators.
|
||||
|
||||
- Starred [MrGamingStreams](https://fmhy.net/videopiracyguide#live-tv-sports) in
|
||||
- Starred [MrGamingStreams](https://fmhy.net/video#live-tv-sports) in
|
||||
Live TV. Fast streams, nice UI, no ads.
|
||||
|
||||
- Starred [720pier](https://fmhy.net/videopiracyguide#sports-streaming) in
|
||||
- Starred [720pier](https://fmhy.net/video#sports-streaming) in
|
||||
Sports Streaming. Sport replay torrents.
|
||||
|
||||
- Starred
|
||||
[Enhancer for YT](https://fmhy.net/social-media-tools#youtube-customization)
|
||||
in YouTube Customization. YouTube enhancement extension.
|
||||
|
||||
- Starred [RatS](https://fmhy.net/videopiracyguide#tracking-discovery) in
|
||||
- Starred [RatS](https://fmhy.net/video#tracking-discovery) in
|
||||
Tracking / Discovery. Sync media ratings between sites.
|
||||
|
||||
---
|
||||
|
|
|
@ -28,33 +28,33 @@ in seeing all minor changes you can follow our
|
|||
to [System Tools](/system-tools).
|
||||
|
||||
- Added Chat / Forums, Image / Video, Interactive, Interesting and Random
|
||||
subsections to [Fun Sites](/miscguide/#fun-sites).
|
||||
subsections to [Fun Sites](/misc/#fun-sites).
|
||||
|
||||
- Added [Gardening](/miscguide/#gardening) section to Miscellaneous.
|
||||
- Added [Gardening](/misc/#gardening) section to Miscellaneous.
|
||||
|
||||
- Made a [Software CSE](/downloadpiracyguide/#software-sites) out of the
|
||||
- Made a [Software CSE](/downloading/#software-sites) out of the
|
||||
software sites.
|
||||
|
||||
---
|
||||
|
||||
### Stars Added ⭐
|
||||
|
||||
- Starred [Torrminatorr](/gamingpiracyguide/#download-games) in Gaming Sites.
|
||||
- Starred [Torrminatorr](/gaming/#download-games) in Gaming Sites.
|
||||
Tormminatorr is back!
|
||||
|
||||
- Starred [GOG Games](/gamingpiracyguide/#download-games) in Gaming Sites. Gog
|
||||
- Starred [GOG Games](/gaming/#download-games) in Gaming Sites. Gog
|
||||
is back on clearnet!
|
||||
|
||||
- Starred [FileCR](/downloadpiracyguide/#software-sites) in Software Sites.
|
||||
- Starred [FileCR](/downloading/#software-sites) in Software Sites.
|
||||
FileCR has removed their anti-adblock.
|
||||
|
||||
- Starred [Streaminal-TV](/videopiracyguide/#dedicated-hosts) in Streaming
|
||||
- Starred [Streaminal-TV](/video/#dedicated-hosts) in Streaming
|
||||
Sites. Nice UI, fast 1080p.
|
||||
|
||||
- Starred [TokyoInsider](/videopiracyguide/#anime-downloading) in Anime
|
||||
- Starred [TokyoInsider](/video/#anime-downloading) in Anime
|
||||
Downloading. Anime site with single click DDLs.
|
||||
|
||||
- Starred [Cubari](/readingpiracyguide/#manga-sites) in Manga Sites. Multi-site
|
||||
- Starred [Cubari](/reading/#manga-sites) in Manga Sites. Multi-site
|
||||
manga scraper.
|
||||
|
||||
- Starred [FoxyTab](https://addons.mozilla.org/en-US/firefox/addon/foxytab/),
|
||||
|
@ -63,12 +63,12 @@ in seeing all minor changes you can follow our
|
|||
[Scroll Anywhere](https://addons.mozilla.org/en-US/firefox/addon/scroll_anywhere/)
|
||||
in Browser Extensions.
|
||||
|
||||
- Starred [PokeSmash](/miscguide/#random) in Fun Sites.
|
||||
- Starred [PokeSmash](/misc/#random) in Fun Sites.
|
||||
|
||||
- Re-added + starred [WCO](/videopiracyguide/#cartoon-streaming) in Cartoon
|
||||
- Re-added + starred [WCO](/video/#cartoon-streaming) in Cartoon
|
||||
Streaming. This went paid for a bit, but seems to be free again.
|
||||
|
||||
- Re-added + starred [CloudStream](/android-iosguide/#android-streaming) in
|
||||
- Re-added + starred [CloudStream](/mobile/#android-streaming) in
|
||||
Android Streaming. Some extensions are still getting updates.
|
||||
|
||||
---
|
||||
|
|
|
@ -20,50 +20,50 @@ in seeing all minor changes you can follow our
|
|||
|
||||
### Wiki Updates
|
||||
|
||||
- Added [Multi-Game](https://fmhy.net/gamingpiracyguide#multi-game-sites),
|
||||
[Party](https://fmhy.net/gamingpiracyguide#party-games),
|
||||
[Shooter](https://fmhy.net/gamingpiracyguide#shooter),
|
||||
[Platforming](https://fmhy.net/gamingpiracyguide#platformer),
|
||||
[Simulation](https://fmhy.net/gamingpiracyguide#simulation),
|
||||
[Arcade](https://fmhy.net/gamingpiracyguide#arcade) and
|
||||
[RPG](https://fmhy.net/gamingpiracyguide#rpg) sections to Browser Games.
|
||||
- Added [Multi-Game](https://fmhy.net/gaming#multi-game-sites),
|
||||
[Party](https://fmhy.net/gaming#party-games),
|
||||
[Shooter](https://fmhy.net/gaming#shooter),
|
||||
[Platforming](https://fmhy.net/gaming#platformer),
|
||||
[Simulation](https://fmhy.net/gaming#simulation),
|
||||
[Arcade](https://fmhy.net/gaming#arcade) and
|
||||
[RPG](https://fmhy.net/gaming#rpg) sections to Browser Games.
|
||||
|
||||
- Added [Med School](https://fmhy.net/edupiracyguide#med-school),
|
||||
[Philosophy](https://fmhy.net/edupiracyguide#philosophy) and
|
||||
[Geography](https://fmhy.net/edupiracyguide#geography-datasets) sections to
|
||||
- Added [Med School](https://fmhy.net/educational#med-school),
|
||||
[Philosophy](https://fmhy.net/educational#philosophy) and
|
||||
[Geography](https://fmhy.net/educational#geography-datasets) sections to
|
||||
Education.
|
||||
|
||||
- Added [Linux Guides](https://fmhy.net/linuxguide#linux-guides) and
|
||||
[Window Managers](https://fmhy.net/linuxguide#window-managers) sections to
|
||||
- Added [Linux Guides](https://fmhy.net/linux-macos#linux-guides) and
|
||||
[Window Managers](https://fmhy.net/linux-macos#window-managers) sections to
|
||||
Linux.
|
||||
|
||||
- Added [Public Domain](https://fmhy.net/readingpiracyguide#public-domain)
|
||||
- Added [Public Domain](https://fmhy.net/reading#public-domain)
|
||||
section to Reading.
|
||||
|
||||
- Added [German](https://fmhy.net/edupiracyguide#german) section to Language
|
||||
- Added [German](https://fmhy.net/educational#german) section to Language
|
||||
Learning.
|
||||
|
||||
- Renamed Audio Download to
|
||||
[Audio Ripping](https://fmhy.net/audiopiracyguide#audio-ripping), cleaned up
|
||||
[Audio Ripping](https://fmhy.net/audio#audio-ripping), cleaned up
|
||||
the section, and separated sites and tools into their own subsections.
|
||||
|
||||
- Cleaned up
|
||||
[qBittorrent Tools](https://fmhy.net/torrentpiracyguide#qbittorrent-tools),
|
||||
[qBittorrent Tools](https://fmhy.net/torrenting#qbittorrent-tools),
|
||||
[Paywall Bypass](https://fmhy.net/internet-tools#paywall-bypass),
|
||||
[Pastebins](https://fmhy.pages.dev/text-tools#pastebins) and
|
||||
[OSINT](https://fmhy.net/internet-tools#open-source-intelligence) sections.
|
||||
|
||||
- Moved [Periodic Tables](https://fmhy.net/edupiracyguide#periodic-tables),
|
||||
[Quotes](https://fmhy.net/edupiracyguide#quote-indexes),
|
||||
[File Scanners](https://fmhy.net/adblockvpnguide#file-scanners) and
|
||||
[Sheet Music](https://fmhy.net/audiopiracyguide#sheet-music) out of storage
|
||||
- Moved [Periodic Tables](https://fmhy.net/educational#periodic-tables),
|
||||
[Quotes](https://fmhy.net/educational#quote-indexes),
|
||||
[File Scanners](https://fmhy.net/privacy#file-scanners) and
|
||||
[Sheet Music](https://fmhy.net/audio#sheet-music) out of storage
|
||||
into main sections.
|
||||
|
||||
- Moved [Gaming Tools](https://fmhy.net/gaming-tools) out of gaming onto its own
|
||||
page.
|
||||
|
||||
- Separated [Painting](https://fmhy.net/img-tools#painting) and
|
||||
[Drawing](https://fmhy.net/img-tools#drawing) into their own sections.
|
||||
- Separated [Painting](https://fmhy.net/image-tools#painting) and
|
||||
[Drawing](https://fmhy.net/image-tools#drawing) into their own sections.
|
||||
|
||||
---
|
||||
|
||||
|
@ -73,29 +73,29 @@ in seeing all minor changes you can follow our
|
|||
System Debloating. Collaborative project by our discord members, let us know
|
||||
what you think or if you have any suggestions for it.
|
||||
|
||||
- Starred [Nunflix](https://fmhy.net/videopiracyguide#multi-server) in
|
||||
- Starred [Nunflix](https://fmhy.net/video#multi-server) in
|
||||
Streaming. Multi-server streaming with fast hosts and nice UI.
|
||||
|
||||
- Starred [Game Bounty](https://fmhy.net/downloadpiracyguide#software-sites) in
|
||||
- Starred [Game Bounty](https://fmhy.net/downloading#software-sites) in
|
||||
Software as they've started uploading software recently.
|
||||
|
||||
- Starred [FastStream](https://fmhy.net/videopiracyguide#helpful-sites-tools) in
|
||||
- Starred [FastStream](https://fmhy.net/video#helpful-sites-tools) in
|
||||
Streaming Tools. Fragmentation streaming which speeds up browser video
|
||||
buffering.
|
||||
|
||||
- Starred [Mumble](https://fmhy.net/internet-tools#chat-tools) in Chat Tools.
|
||||
Oldschool voice chat client used and loved by many.
|
||||
|
||||
- Starred [Tixati](https://fmhy.net/torrentpiracyguide#torrent-clients) in
|
||||
- Starred [Tixati](https://fmhy.net/torrenting#torrent-clients) in
|
||||
Torrent Clients. Simple client still popular in some circles.
|
||||
|
||||
- Starred [SpecialK](https://fmhy.net/gaming-tools#optimization-tools) in Gaming
|
||||
Optimization. Feature-rich game optimization tool.
|
||||
|
||||
- Starred [qView](https://fmhy.net/img-tools#image-viewers) in Image Viewers.
|
||||
- Starred [qView](https://fmhy.net/image-tools#image-viewers) in Image Viewers.
|
||||
Minimal and efficient open-source image viewer.
|
||||
|
||||
- Starred [SauceNAO](https://fmhy.net/img-tools#reverse-image-search) in Reverse
|
||||
- Starred [SauceNAO](https://fmhy.net/image-tools#reverse-image-search) in Reverse
|
||||
Image Search. Multi-site search engine.
|
||||
|
||||
- Starred [Puter](https://fmhy.net/system-tools#os-emulators) in OS Emulators.
|
||||
|
@ -109,7 +109,7 @@ in seeing all minor changes you can follow our
|
|||
Minecraft Tools. Comprehensive block info database.
|
||||
|
||||
- Starred
|
||||
[Shazam + WatZatSong](https://fmhy.net/audiopiracyguide#song-identification)
|
||||
[Shazam + WatZatSong](https://fmhy.net/audio#song-identification)
|
||||
in Song Identification. Popular song identification tools.
|
||||
|
||||
---
|
||||
|
|
|
@ -24,13 +24,13 @@ in seeing all minor changes you can follow our
|
|||
|
||||
- Added [ARPG / MMORPG](https://fmhy.net/gaming-tools#arpg-mmorpg-tools) section in Gaming Tools.
|
||||
|
||||
- Added [STEM](https://fmhy.net/readingpiracyguide#stem-resources) + [Kindle Tools](https://fmhy.net/readingpiracyguide#kindle-tools) sections in Reading.
|
||||
- Added [STEM](https://fmhy.net/reading#stem-resources) + [Kindle Tools](https://fmhy.net/reading#kindle-tools) sections in Reading.
|
||||
|
||||
- Added [Disc Utilities](https://fmhy.net/video-tools#disc-utilities) + [Video Enhancement / Effects](https://fmhy.net/video-tools#video-enhancement-effects) sections in Video Tools.
|
||||
|
||||
- Split Steam / Epic section into subsections: [Client Tools](https://fmhy.net/gaming-tools#client-tools), [DLC Unlock / DRM Bypass](https://fmhy.net/gaming-tools#dlc-unlock-drm-bypass), [Steam Store](https://fmhy.net/gaming-tools#steam-store).
|
||||
|
||||
- Split macOS section into subsections: [Video](https://fmhy.net/linuxguide#mac-video), [Audio](https://fmhy.net/linuxguide#mac-audio), [Image](https://fmhy.net/linuxguide#mac-images), [Internet](https://fmhy.net/linuxguide#mac-internet), [System](https://fmhy.net/linuxguide#system-tools), [File](https://fmhy.net/linuxguide#file-tools-1).
|
||||
- Split macOS section into subsections: [Video](https://fmhy.net/linux-macos#mac-video), [Audio](https://fmhy.net/linux-macos#mac-audio), [Image](https://fmhy.net/linux-macos#mac-images), [Internet](https://fmhy.net/linux-macos#mac-internet), [System](https://fmhy.net/linux-macos#system-tools), [File](https://fmhy.net/linux-macos#file-tools-1).
|
||||
|
||||
- Split PDF Tools into subsections: [Online Toolkits](https://fmhy.net/file-tools#online-pdf-toolkits), [Offline Toolkits](https://fmhy.net/file-tools#offline-pdf-toolkits), [Conversion](https://fmhy.net/file-tools#pdf-conversion-tools), [Utilities](https://fmhy.net/file-tools#pdf-utilities).
|
||||
|
||||
|
@ -40,13 +40,13 @@ in seeing all minor changes you can follow our
|
|||
|
||||
- Re-organized & added labels to [Ambient Sound Mixers](https://fmhy.net/storage#ambient-sound-mixers) and [Android Browsers](https://fmhy.net/storage#android-browsers). [Before vs. After](https://i.imgur.com/F48u9pk.png)
|
||||
|
||||
- Re-organized & added labels to [Website Templates](https://fmhy.net/storage#website-templates), [Wordpress Themes](https://fmhy.net/storage#wordpress-themes) and [YouTube Movies](https://fmhy.net/videopiracyguide#free-w-ads). [Before vs. After](https://i.imgur.com/Q84jTaz.png)
|
||||
- Re-organized & added labels to [Website Templates](https://fmhy.net/storage#website-templates), [Wordpress Themes](https://fmhy.net/storage#wordpress-themes) and [YouTube Movies](https://fmhy.net/video#free-w-ads). [Before vs. After](https://i.imgur.com/Q84jTaz.png)
|
||||
|
||||
- Re-organized [Manga Section](https://fmhy.net/readingpiracyguide#manga) based on [Poll Results](https://challonge.com/lzbv9baj/). Congrats to ComicK for coming out on top.
|
||||
- Re-organized [Manga Section](https://fmhy.net/reading#manga) based on [Poll Results](https://challonge.com/lzbv9baj/). Congrats to ComicK for coming out on top.
|
||||
|
||||
- Moved [Website Generators](https://fmhy.net/devtools#website-generators) out of storage, re-organized, and added labels. [Before vs. After](https://i.imgur.com/V1DWN9D.jpeg)
|
||||
- Moved [Website Generators](https://fmhy.net/developer-tools#website-generators) out of storage, re-organized, and added labels. [Before vs. After](https://i.imgur.com/V1DWN9D.jpeg)
|
||||
|
||||
- Moved [3D Modeling + CAD Sections](https://fmhy.net/img-tools#_3d-models) out of storage, re-organized, and added labels. [Before vs. After](https://i.imgur.com/4V41Zdx.png)
|
||||
- Moved [3D Modeling + CAD Sections](https://fmhy.net/image-tools#_3d-models) out of storage, re-organized, and added labels. [Before vs. After](https://i.imgur.com/4V41Zdx.png)
|
||||
|
||||
- All media tracking sections have now been split into Tracking / Databases and Recommendations. This applies to Streaming, Gaming, Reading, and Audio sections.
|
||||
|
||||
|
@ -54,31 +54,31 @@ in seeing all minor changes you can follow our
|
|||
|
||||
# Stars Added ⭐
|
||||
|
||||
- Starred [AnimeKai](https://fmhy.net/videopiracyguide) in Anime Streaming. Feature-rich, huge library, fast servers. People seem to really like it, so we've moved it to the #1 spot.
|
||||
- Starred [AnimeKai](https://fmhy.net/video) in Anime Streaming. Feature-rich, huge library, fast servers. People seem to really like it, so we've moved it to the #1 spot.
|
||||
|
||||
- Starred both [111477 + DramaSuki](https://fmhy.net/videopiracyguide#drives-directories) in Drives / Directories. Both have fast speeds and lots of content.
|
||||
- Starred both [111477 + DramaSuki](https://fmhy.net/video#drives-directories) in Drives / Directories. Both have fast speeds and lots of content.
|
||||
|
||||
- Starred [BatCave](https://fmhy.net/readingpiracyguide#comics) in Comic Sites. New comic site with tracking, ratings, and a nice UI.
|
||||
- Starred [BatCave](https://fmhy.net/reading#comics) in Comic Sites. New comic site with tracking, ratings, and a nice UI.
|
||||
|
||||
- Starred [PairDrop](https://fmhy.net/file-tools#p2p-transfer) in P2P File Transfer. Open-source, easy to use, allows creating rooms.
|
||||
|
||||
- Starred [Five Books](https://fmhy.net/readingpiracyguide#curated-recommendations) in Book Recommendations. Expert recommended top 5 lists with lots of categories.
|
||||
- Starred [Five Books](https://fmhy.net/reading#curated-recommendations) in Book Recommendations. Expert recommended top 5 lists with lots of categories.
|
||||
|
||||
- Starred [VideoGameCanon](https://fmhy.net/gaming-tools#curated-recommendations) in Game Recommendations. Game top 1000 list that people in our server find useful.
|
||||
|
||||
- Starred [Mini QR](https://fmhy.net/internet-tools#url-tools) in URL Tools. Lets you create custom QR code art.
|
||||
|
||||
- Starred [Table Habit](https://fmhy.net/android-iosguide#productivity-trackers) in Android Productivity Trackers. Open-source, updated regularly, and has a nice UI.
|
||||
- Starred [Table Habit](https://fmhy.net/mobile#productivity-trackers) in Android Productivity Trackers. Open-source, updated regularly, and has a nice UI.
|
||||
|
||||
- Starred both [BGBye + pixelcut](https://fmhy.net/storage#background-removers) in Background Removers as they seemed to work the best.
|
||||
|
||||
- Starred [EncycloSearch](https://encyclosearch.org/) in Encyclopedias. Combines two dozen encyclopedias into one search engine.
|
||||
|
||||
- Starred [Exact Audio Copy](https://fmhy.net/audiopiracyguide#audio-ripping-tools) in Audio Ripping. Popular CD ripping tool, recommended in Redacted's interview guide.
|
||||
- Starred [Exact Audio Copy](https://fmhy.net/audio#audio-ripping-tools) in Audio Ripping. Popular CD ripping tool, recommended in Redacted's interview guide.
|
||||
|
||||
- Switched to [AI Studio](https://fmhy.net/ai#online-chatbots) as Google's main chatbot as it works well on mobile, is less laggy, has chat history, and less censorship than Gemini.
|
||||
|
||||
- Added [Free-Official-Youtube-Content](https://fmhy.net/videopiracyguide#free-w-ads) as a index emoji in Free w/ Ads. Not a star, but I feel its good enough to mention.
|
||||
- Added [Free-Official-Youtube-Content](https://fmhy.net/video#free-w-ads) as a index emoji in Free w/ Ads. Not a star, but I feel its good enough to mention.
|
||||
|
||||
***
|
||||
|
||||
|
|
|
@ -24,11 +24,11 @@ in seeing all minor changes you can follow our
|
|||
|
||||
- The [FMHY SafeGuard](https://github.com/kenhendricks00/FMHY-SafeGuard) extension is ready to be tested. Let us know how it works for you guys, and ty to everyone who made it happen.
|
||||
|
||||
- Split [FOSS](https://fmhy.net/downloadpiracyguide#foss-sites) and [Freeware](https://fmhy.net/downloadpiracyguide#freeware-sites) into separate sections, and cleaned up formatting: [before vs after](https://i.ibb.co/M5F1Dk7/image.png).
|
||||
- Split [FOSS](https://fmhy.net/downloading#foss-sites) and [Freeware](https://fmhy.net/downloading#freeware-sites) into separate sections, and cleaned up formatting: [before vs after](https://i.ibb.co/M5F1Dk7/image.png).
|
||||
|
||||
- Split [Text Editors](https://fmhy.net/text-tools#text-editors) and [Note-Taking](https://fmhy.net/text-tools#note-taking) into separate sections, added labels, and removed any that were low quality or abandoned.
|
||||
|
||||
- Split [Radio Stations](https://fmhy.net/audiopiracyguide#radio-streaming) and [Podcasts](https://fmhy.net/audiopiracyguide#podcast-streaming) into separate sections.
|
||||
- Split [Radio Stations](https://fmhy.net/audio#radio-streaming) and [Podcasts](https://fmhy.net/audio#podcast-streaming) into separate sections.
|
||||
|
||||
- Added tags to bookmark managers, and removed ones that looked low quality: [before vs after](https://i.ibb.co/nczmmrv/3453453453.jpg).
|
||||
|
||||
|
@ -38,7 +38,7 @@ in seeing all minor changes you can follow our
|
|||
|
||||
- Added tags to Link in Bio, and removed any that seemed low quality: [before vs after](https://i.ibb.co/BjZ3SpR/image.png).
|
||||
|
||||
- Added a [Special Interests](https://fmhy.net/gamingpiracyguide#special-interest) section to gaming, to help debloat the main DDL section a bit.
|
||||
- Added a [Special Interests](https://fmhy.net/gaming#special-interest) section to gaming, to help debloat the main DDL section a bit.
|
||||
|
||||
***
|
||||
|
||||
|
@ -48,23 +48,23 @@ in seeing all minor changes you can follow our
|
|||
|
||||
- Starred [Kdenlive](https://fmhy.net/video-tools#video-editors) in Video Editors. Open-source, feature-rich, multi-platform editor.
|
||||
|
||||
- Starred [Khinsider](https://fmhy.net/audiopiracyguide#game-soundtracks) in Game Soundtracks. Popular soundtrack site with big library.
|
||||
- Starred [Khinsider](https://fmhy.net/audio#game-soundtracks) in Game Soundtracks. Popular soundtrack site with big library.
|
||||
|
||||
- Starred [Camo](https://fmhy.net/video-tools) in Video Tools. Allows you to use any device as a webcam.
|
||||
|
||||
- Starred [FMSTREAM](https://fmhy.net/storage#live-radio) in Radio Streaming. The biggest online radio directory on the internet.
|
||||
|
||||
- Starred [Thunderbird](https://fmhy.net/android-iosguide#android-internet) in Android Internet as its just a better version of K-9 Mail.
|
||||
- Starred [Thunderbird](https://fmhy.net/mobile#android-internet) in Android Internet as its just a better version of K-9 Mail.
|
||||
|
||||
- Starred [Pixlr](https://fmhy.net/img-tools#online-editors) in Online Image Editors. Feature-rich editor with nice UI. Has daily limit but it can be bypassed with the script linked.
|
||||
- Starred [Pixlr](https://fmhy.net/image-tools#online-editors) in Online Image Editors. Feature-rich editor with nice UI. Has daily limit but it can be bypassed with the script linked.
|
||||
|
||||
- Starred [x266.mov](https://fmhy.net/social-media-tools#discord-tools) in Discord Tools. Allows you to embed large videos on Discord.
|
||||
|
||||
- Starred [Playlists.cloud](https://fmhy.net/audiopiracyguide#spotify-tools) in Spotify Tools. Unlimited playlist transfer between Spotify / Apple Music.
|
||||
- Starred [Playlists.cloud](https://fmhy.net/audio#spotify-tools) in Spotify Tools. Unlimited playlist transfer between Spotify / Apple Music.
|
||||
|
||||
- Starred [InfiCourses](https://fmhy.net/edupiracyguide#downloading) in Course DDL. Big library with courses tough to find elsewhere.
|
||||
- Starred [InfiCourses](https://fmhy.net/educational#downloading) in Course DDL. Big library with courses tough to find elsewhere.
|
||||
|
||||
- Starred [Excalidraw](https://fmhy.net/img-tools#drawing) in Drawing Tools. Feature-rich compared to similar web apps.
|
||||
- Starred [Excalidraw](https://fmhy.net/image-tools#drawing) in Drawing Tools. Feature-rich compared to similar web apps.
|
||||
|
||||
- Went through [SMS verification](https://fmhy.net/storage#sms-verification-sites) and starred ones that stood out the most.
|
||||
|
||||
|
|
|
@ -25,7 +25,7 @@ in seeing all minor changes you can follow our
|
|||
from FMHY. You can also download the guides yourself by using this
|
||||
[script](https://gist.github.com/Rust1667/efc055debaf4876e4de39cc0d32f18c1).
|
||||
|
||||
- Made a [Pokémon](/gamingpiracyguide/#pok%C3%A9mon-tools) section in Gaming
|
||||
- Made a [Pokémon](/gaming/#pok%C3%A9mon-tools) section in Gaming
|
||||
Tools and an [Email](/internet-tools#email-tools) section in Internet Tools.
|
||||
|
||||
- Added [emojis](https://i.imgur.com/mgYq8nF.png) to indicate when we're linking
|
||||
|
@ -39,20 +39,20 @@ in seeing all minor changes you can follow our
|
|||
|
||||
- Starred [Nova AI](/ai/#ai-chatbots) in AI Chatbots. Gives free GPT-4 tokens.
|
||||
|
||||
- Starred [BlueROMs](/gamingpiracyguide/#rom-sites) in ROM sites. Simple DDL
|
||||
- Starred [BlueROMs](/gaming/#rom-sites) in ROM sites. Simple DDL
|
||||
site with lots of systems.
|
||||
|
||||
- Starred [Qiwi](/storage/#file-sharing-tools) in File Hosts. Fast host that's
|
||||
becoming popular in piracy circles.
|
||||
|
||||
- Starred Moo and Media in
|
||||
[Video Drives](/videopiracyguide/#drives--directories). Fast drives with lots
|
||||
[Video Drives](/video/#drives--directories). Fast drives with lots
|
||||
of content.
|
||||
|
||||
- Starred [WiiUDownloader](/gamingpiracyguide/#rom-sites) in ROM sites. Updated
|
||||
- Starred [WiiUDownloader](/gaming/#rom-sites) in ROM sites. Updated
|
||||
more frequently than WiiUSBHelper.
|
||||
|
||||
- Starred [Time4TV](/videopiracyguide/#live-tv--sports) in Live TV. Fast
|
||||
- Starred [Time4TV](/video/#live-tv--sports) in Live TV. Fast
|
||||
streams, lots of channels.
|
||||
|
||||
- Starred [TamperMonkey](/storage/#userscript-managers) in Userscript Managers.
|
||||
|
@ -61,13 +61,13 @@ in seeing all minor changes you can follow our
|
|||
- Starred [PeaZip](/storage/#compression-programs) in File Archivers.
|
||||
Open-source, supports many formats.
|
||||
|
||||
- Starred [Miru](/android-iosguide/#android-streaming) in Android Streaming.
|
||||
- Starred [Miru](/mobile/#android-streaming) in Android Streaming.
|
||||
Open-source, multi-format media app.
|
||||
|
||||
- Starred [gibMacOS](/linuxguide/#mac-tools--apps) in Mac Tools. Easily download
|
||||
- Starred [gibMacOS](/linux-macos/#mac-tools--apps) in Mac Tools. Easily download
|
||||
MacOS.
|
||||
|
||||
- Starred [AppsTorrent](/linuxguide/#mac-software) in Mac Software. Popular Mac
|
||||
- Starred [AppsTorrent](/linux-macos/#mac-software) in Mac Software. Popular Mac
|
||||
Software site with many Apps.
|
||||
|
||||
- Starred [PlayPhrase](/video-tools) in Video Tools. Search entire internet for
|
||||
|
@ -76,7 +76,7 @@ in seeing all minor changes you can follow our
|
|||
- Starred [Magic ToDo](/storage/#note-taking--to-do-apps) in To Do Apps.
|
||||
Automatic Task Breakdown AI.
|
||||
|
||||
- Starred [SafeSubstance](/miscguide/#health) in Health. Drug Information / Side
|
||||
- Starred [SafeSubstance](/misc/#health) in Health. Drug Information / Side
|
||||
Effects.
|
||||
|
||||
- Starred [TinyKittens](https://tinykittens.com/) in General Tools. Kitten
|
||||
|
|
|
@ -22,9 +22,9 @@ in seeing all minor changes you can follow our
|
|||
|
||||
- Did a complete overhaul of the **[Beginners Guide](https://fmhy.net/beginners-guide)**. Removed outdated links, added new sites, and rewrote all the tips.
|
||||
|
||||
- Reorganized the [Anime Streaming](https://fmhy.net/videopiracyguide#anime-streaming) section based on **[tournament results](https://challonge.com/Anime_Streaming.svg)**.
|
||||
- Reorganized the [Anime Streaming](https://fmhy.net/video#anime-streaming) section based on **[tournament results](https://challonge.com/Anime_Streaming.svg)**.
|
||||
|
||||
- Reorganized both [Multi / Single Hosts](https://ibb.co/X7SC3f8) in the [Streaming section](https://fmhy.net/videopiracyguide) as people felt they were somewhat outdated.
|
||||
- Reorganized both [Multi / Single Hosts](https://ibb.co/X7SC3f8) in the [Streaming section](https://fmhy.net/video) as people felt they were somewhat outdated.
|
||||
|
||||
- Added section for [Steam Deck](https://fmhy.net/gaming-tools#steam-deck) in Gaming Tools.
|
||||
|
||||
|
@ -32,27 +32,27 @@ in seeing all minor changes you can follow our
|
|||
|
||||
### Stars Added ⭐
|
||||
|
||||
- Starred [datadiff](https://fmhy.net/videopiracyguide#drives-directories) in Drives / Directories. Media directory with fast download speed, similar to vadapav / moo.
|
||||
- Starred [datadiff](https://fmhy.net/video#drives-directories) in Drives / Directories. Media directory with fast download speed, similar to vadapav / moo.
|
||||
|
||||
- Starred [Proton Pass](https://fmhy.net/internet-tools#password-managers) in Password Managers. Feature-rich manager comparable with things like Bitwarden.
|
||||
|
||||
- Starred [Miruro](https://fmhy.net/videopiracyguide#anime-streaming) in Anime Streaming. This was the winner of our anime streaming polls.
|
||||
- Starred [Miruro](https://fmhy.net/video#anime-streaming) in Anime Streaming. This was the winner of our anime streaming polls.
|
||||
|
||||
- Starred [RockMods](https://fmhy.net/android-iosguide#modded-apks) in Modded APKs. RockMods label all their releases correctly, and are usually one of the main sources of other groups.
|
||||
- Starred [RockMods](https://fmhy.net/mobile#modded-apks) in Modded APKs. RockMods label all their releases correctly, and are usually one of the main sources of other groups.
|
||||
|
||||
- Starred [Openstax](https://fmhy.net/readingpiracyguide#educational-books) in Educational Books. Well-organized educational textbook site.
|
||||
- Starred [Openstax](https://fmhy.net/reading#educational-books) in Educational Books. Well-organized educational textbook site.
|
||||
|
||||
- Starred [Yet Another Call Blocker](https://fmhy.net/android-iosguide#number-sms) in Number / SMS. Hasn't been updated in awhile, but it doesn't need to be as its connected to a crowdsourced number [database](https://www.shouldianswer.com/).
|
||||
- Starred [Yet Another Call Blocker](https://fmhy.net/mobile#number-sms) in Number / SMS. Hasn't been updated in awhile, but it doesn't need to be as its connected to a crowdsourced number [database](https://www.shouldianswer.com/).
|
||||
|
||||
- Starred [UrlCheck](https://fmhy.net/android-iosguide#android-privacy) in Android Privacy. Customizable open-source URL cleaner for android.
|
||||
- Starred [UrlCheck](https://fmhy.net/mobile#android-privacy) in Android Privacy. Customizable open-source URL cleaner for android.
|
||||
|
||||
- Starred [Rev Wallpaper](https://fmhy.net/system-tools#wallpapers) in Wallpapers. Reverse wallpaper search engine.
|
||||
|
||||
- Starred [Edge-Remover](https://fmhy.net/internet-tools#browser-tools) in Browser Tools. Easy way to uninstall microsoft edge.
|
||||
|
||||
- Starred [Akuse](https://fmhy.net/videopiracyguide#anime-streaming) in Anime Streaming. Open-source anime app with nice UI.
|
||||
- Starred [Akuse](https://fmhy.net/video#anime-streaming) in Anime Streaming. Open-source anime app with nice UI.
|
||||
|
||||
- Starred [Movies Countdown](https://fmhy.net/videopiracyguide#calendar-upcoming) in Calendar / Upcoming. Tracks upcoming movie releases, both digital and theater.
|
||||
- Starred [Movies Countdown](https://fmhy.net/video#calendar-upcoming) in Calendar / Upcoming. Tracks upcoming movie releases, both digital and theater.
|
||||
|
||||
- Starred [Simple Tab Groups](https://fmhy.net/storage#tab-managers) in Tab Managers. Feature-rich tab manager with plugin support.
|
||||
|
||||
|
|
|
@ -20,18 +20,18 @@ in seeing all minor changes you can follow our
|
|||
|
||||
### Wiki Updates
|
||||
|
||||
- Split Linux Tools into subcategories: [System](/linuxguide/#linux-system),
|
||||
[Apps](/linuxguide/#linux-apps), [Internet](/linuxguide/#linux-internet),
|
||||
[Terminal / Shell](/linuxguide/#terminal--shell) and
|
||||
[Customization](/linuxguide/#customization).
|
||||
- Split Linux Tools into subcategories: [System](/linux-macos/#linux-system),
|
||||
[Apps](/linux-macos/#linux-apps), [Internet](/linux-macos/#linux-internet),
|
||||
[Terminal / Shell](/linux-macos/#terminal--shell) and
|
||||
[Customization](/linux-macos/#customization).
|
||||
|
||||
- NSFW has been [overhauled](/nsfwpiracy/) with a bunch of new sites and
|
||||
sections.
|
||||
|
||||
- Added Z-Libs new [Desktop App / Extension](/readingpiracyguide/#reading-sites)
|
||||
- Added Z-Libs new [Desktop App / Extension](/reading/#reading-sites)
|
||||
in Reading Sites.
|
||||
|
||||
- Replaced 9anime with [AniWave](/videopiracyguide/#anime-streaming) as they've
|
||||
- Replaced 9anime with [AniWave](/video/#anime-streaming) as they've
|
||||
[rebranded](https://torrentfreak.com/9anime-rebrands-to-aniwave-citing-legal-troubles-230802/)
|
||||
to avoid blocking.
|
||||
|
||||
|
@ -44,9 +44,9 @@ in seeing all minor changes you can follow our
|
|||
### Stars Added ⭐
|
||||
|
||||
- Starred SusFlix and The Movie Archive in
|
||||
[Streaming Sites](/videopiracyguide/#multi-server). Big libraries, 4K quality.
|
||||
[Streaming Sites](/video/#multi-server). Big libraries, 4K quality.
|
||||
|
||||
- Starred [Dhokla](/videopiracyguide/#drives--directories) in video downloading.
|
||||
- Starred [Dhokla](/video/#drives--directories) in video downloading.
|
||||
Big drive, fast downloads.
|
||||
|
||||
- Starred
|
||||
|
@ -56,29 +56,29 @@ in seeing all minor changes you can follow our
|
|||
- Starred [NanaZip](/storage/#compression-programs) in File Archivers.
|
||||
Open-source, modern design, preferred over 7-Zip by some.
|
||||
|
||||
- Starred [Deluge](/torrentpiracyguide/#torrent-clients) in Torrent Clients.
|
||||
- Starred [Deluge](/torrenting/#torrent-clients) in Torrent Clients.
|
||||
Open-source client with many useful
|
||||
[plugins](https://dev.deluge-torrent.org/wiki/Plugins).
|
||||
|
||||
- Starred [InnerTune](/android-iosguide/#android-audio) in Android Audio.
|
||||
- Starred [InnerTune](/mobile/#android-audio) in Android Audio.
|
||||
Open-source YouTube Music client.
|
||||
|
||||
- Starred APKPure and UpToDown in
|
||||
[Untouched APKs](/android-iosguide/#untouched-apks).
|
||||
[Untouched APKs](/mobile/#untouched-apks).
|
||||
|
||||
- Starred EverythingMoe and Ripped in [Indexes](/miscguide/#indexes). Solid
|
||||
- Starred EverythingMoe and Ripped in [Indexes](/misc/#indexes). Solid
|
||||
Piracy Indexes.
|
||||
|
||||
- Starred [ReadAllComics](/readingpiracyguide/#comic-sites) in Comics. Big
|
||||
- Starred [ReadAllComics](/reading/#comic-sites) in Comics. Big
|
||||
library, no captcha.
|
||||
|
||||
- Starred [WatchWrestling24](/videopiracyguide/#sports-streaming) in Sports
|
||||
- Starred [WatchWrestling24](/video/#sports-streaming) in Sports
|
||||
Streaming. Good video hosts, quick uploads.
|
||||
|
||||
- Starred [Sandboxie Plus](/adblockvpnguide/#antivirus) in Antivirus.
|
||||
- Starred [Sandboxie Plus](/privacy/#antivirus) in Antivirus.
|
||||
User-friendly software sandbox / [Guide](https://rentry.co/sandboxie-guide).
|
||||
|
||||
- Starred [DarkPatternsTipline](/miscguide/#shopping) in Shopping. Deceptive
|
||||
- Starred [DarkPatternsTipline](/misc/#shopping) in Shopping. Deceptive
|
||||
Service Design Tipline.
|
||||
|
||||
- Starred [Scoop](/storage/#package-managers) in Package Managers. Command-line
|
||||
|
|
|
@ -28,19 +28,19 @@ in seeing all minor changes you can follow our
|
|||
|
||||
- Added [ChatGPT Tools](https://fmhy.net/ai#chatgpt-tools), [AI Benchmarks](https://fmhy.net/ai#ai-benchmarks) and [AI Search Engine](https://fmhy.net/ai#ai-search-engines) sections to AI.
|
||||
|
||||
- Added [YouTube Music](https://fmhy.net/android-iosguide#youtube-music-clients) and [YouTube App](https://fmhy.net/android-iosguide#ios-youtube-apps) (ios) sections to Mobile.
|
||||
- Added [YouTube Music](https://fmhy.net/mobile#youtube-music-clients) and [YouTube App](https://fmhy.net/mobile#ios-youtube-apps) (ios) sections to Mobile.
|
||||
|
||||
- Added [Coding Tools](https://fmhy.net/devtools#coding-tools) and [Android Code Editor](https://fmhy.net/devtools#android-code-editors) sections to Code Editors.
|
||||
- Added [Coding Tools](https://fmhy.net/developer-tools#coding-tools) and [Android Code Editor](https://fmhy.net/developer-tools#android-code-editors) sections to Code Editors.
|
||||
|
||||
- Added [Geoguessr](https://fmhy.net/gamingpiracyguide#geoguessr-games) section to Browser Games.
|
||||
- Added [Geoguessr](https://fmhy.net/gaming#geoguessr-games) section to Browser Games.
|
||||
|
||||
- Added [Cloud Managers](https://fmhy.net/file-tools#cloud-managers) section to File Tools.
|
||||
|
||||
- Added [JEE / NEET](https://fmhy.net/edupiracyguide#jee-neet) section in Edu Tools.
|
||||
- Added [JEE / NEET](https://fmhy.net/educational#jee-neet) section in Edu Tools.
|
||||
|
||||
- Added [Streaming APIs](https://fmhy.net/videopiracyguide#streaming-apis) section to Streaming.
|
||||
- Added [Streaming APIs](https://fmhy.net/video#streaming-apis) section to Streaming.
|
||||
|
||||
- Split Audiobooks into [Downloading](https://fmhy.net/readingpiracyguide#downloading) and [Streaming](https://fmhy.net/readingpiracyguide#streaming).
|
||||
- Split Audiobooks into [Downloading](https://fmhy.net/reading#downloading) and [Streaming](https://fmhy.net/reading#streaming).
|
||||
|
||||
- Made FMHY site logo easier to switch (click it 5 times).
|
||||
|
||||
|
@ -50,11 +50,11 @@ in seeing all minor changes you can follow our
|
|||
|
||||
### Stars Added ⭐
|
||||
|
||||
- Starred [Bookracy](https://fmhy.net/readingpiracyguide#ebooks) in Ebook Sites. Promising book site with solid UI and community.
|
||||
- Starred [Bookracy](https://fmhy.net/reading#ebooks) in Ebook Sites. Promising book site with solid UI and community.
|
||||
|
||||
- Starred [Droid-ify](https://fmhy.net/android-iosguide#foss-apks) in FOSS APKs. Open source F-Droid client some like more than the official.
|
||||
- Starred [Droid-ify](https://fmhy.net/mobile#foss-apks) in FOSS APKs. Open source F-Droid client some like more than the official.
|
||||
|
||||
- Starred [Disblock Origin](https://fmhy.net/adblockvpnguide#adblocking) in Adblocking. Removes nitro / boost ads from Discord.
|
||||
- Starred [Disblock Origin](https://fmhy.net/privacy#adblocking) in Adblocking. Removes nitro / boost ads from Discord.
|
||||
|
||||
- Starred [Sidebery](https://fmhy.net/storage#tab-managers) in Tab Managers. Useful open source tab manager / bookmark manager.
|
||||
|
||||
|
@ -62,19 +62,19 @@ in seeing all minor changes you can follow our
|
|||
|
||||
- Starred [You](https://fmhy.net/ai#ai-search-engines) in AI Search Engines. Fast, free, unlimited AI search.
|
||||
|
||||
- Starred [Archive of Our Own](https://fmhy.net/readingpiracyguide#fanfiction-stories) in Fanfiction Sites. Popular and extensive archive of fanfiction.
|
||||
- Starred [Archive of Our Own](https://fmhy.net/reading#fanfiction-stories) in Fanfiction Sites. Popular and extensive archive of fanfiction.
|
||||
|
||||
- Starred [Materialgram](https://fmhy.net/social-media-tools#telegram-clients) and [AyuGram](https://fmhy.net/android-iosguide#social-media-apps) (android) in Telegram Clients. Simple, ad-free, feature-rich clients.
|
||||
- Starred [Materialgram](https://fmhy.net/social-media-tools#telegram-clients) and [AyuGram](https://fmhy.net/mobile#social-media-apps) (android) in Telegram Clients. Simple, ad-free, feature-rich clients.
|
||||
|
||||
- Starred [NCS](https://fmhy.net/storage#royalty-free-music) in Royalty Free Music. Popular library for free music.
|
||||
|
||||
- Starred [K-9 Mail](https://fmhy.net/android-iosguide#android-internet) in Android Internet. Open source mobile mail client.
|
||||
- Starred [K-9 Mail](https://fmhy.net/mobile#android-internet) in Android Internet. Open source mobile mail client.
|
||||
|
||||
- Starred [Lossless Scaling](https://fmhy.net/gaming-tools#optimization-tools) in Game Optimization. Powerful upscaling with frame generation for all GPUs.
|
||||
|
||||
- Starred [Hotkey Cheatsheet](https://fmhy.net/system-tools#mouse-keyboard) in Keyboard Tools. Keyboard hotkeys for lots of different apps.
|
||||
|
||||
- Starred [Viren070's Guides](https://fmhy.net/videopiracyguide#stremio-tools) in Stremio Tools. Helpful guides to use Stremio.
|
||||
- Starred [Viren070's Guides](https://fmhy.net/video#stremio-tools) in Stremio Tools. Helpful guides to use Stremio.
|
||||
|
||||
---
|
||||
|
||||
|
|
83
docs/posts/sept-2025.md
Normal file
83
docs/posts/sept-2025.md
Normal file
|
@ -0,0 +1,83 @@
|
|||
---
|
||||
title: Monthly Updates [Sept]
|
||||
description: Sept 2025 updates
|
||||
date: 2025-08-31
|
||||
next: false
|
||||
|
||||
prev: false
|
||||
|
||||
footer: true
|
||||
---
|
||||
|
||||
<Post authors="nbats"/>
|
||||
|
||||
:::info
|
||||
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.
|
||||
:::
|
||||
|
||||
# Wiki Updates
|
||||
|
||||
- FMHY.net URLs have **[been updated](https://i.imgur.com/rNoyhHH.png)** to make them look cleaner, and easier to share / type.
|
||||
|
||||
- Split AI Chatbots into [Official Model](https://fmhy.net/ai#official-model-sites), [Multi-Model](https://fmhy.net/ai#multiple-model-sites), and [Specialized](https://fmhy.net/ai#specialized-chatbots) to make it easier to navigate.
|
||||
|
||||
- Added [QR Code Tools](https://fmhy.net/internet-tools#qr-code-tools) section to Internet.
|
||||
|
||||
- Added [SAT Testing](https://fmhy.net/educational#sat-testing) section to Educational.
|
||||
|
||||
- Added [AI Coding Benchmarks](https://fmhy.net/ai#coding-ai-benchmarks) section to AI.
|
||||
|
||||
- Merged [Quotes / Poetry](https://fmhy.net/readingpiracyguide#quotes-poetry) into one section under Reading.
|
||||
|
||||
- Debloated and reorganized [Translator](https://fmhy.net/text-tools#translators) section. [Before vs After](https://i.imgur.com/CO0U0xQ.png)
|
||||
|
||||
- Debloated and reorganized [Image Generator](https://fmhy.net/ai#image-generation) section. [Before vs After](https://i.imgur.com/wAcNMrX.png)
|
||||
|
||||
- Debloated and reorganized [Hackintosh](https://fmhy.net/system-tools#hackintosh) section. [Before vs After](https://i.imgur.com/aAHEhqe.png)
|
||||
|
||||
- Debloated and reorganized [Live Webcams](https://fmhy.net/misc#live-webcams) section. [Before vs After](https://i.imgur.com/jI0f3OV.png)
|
||||
|
||||
- Debloated and reorganized [Resume / Portfolio](https://fmhy.net/miscguide#resume-portfolio) section. [Before vs After](https://i.imgur.com/pwUZsYl.png)
|
||||
|
||||
- Debloated and reorganized [LaTeX Tools](https://fmhy.net/text-tools#latex-tools) section. [Before vs After](https://i.imgur.com/rVzuyvF.png)
|
||||
|
||||
- Cleaned up formatting in [Image Gen Guide](https://fmhy.net/ai#guides-tools) section. [Before vs After](https://i.imgur.com/ml6JGy7.png)
|
||||
|
||||
- **Thank you to CY83R, AnarchyDr, Kiri, Hugo, and anyone else who helped organize / create sections this month.**
|
||||
|
||||
***
|
||||
|
||||
# Stars Added ⭐
|
||||
|
||||
- Re-Starred [Copilot](https://fmhy.net/ai#official-model-sites) in Official Models, and moved it to #2 spot. It now has unlimited o4-mini and GPT-5.
|
||||
|
||||
- Starred [DeepL](https://fmhy.net/text-tools#translators) in Translators. Fast, accurate, has flexible post-processing making it good for production environments.
|
||||
|
||||
- Starred [UnionCrax](https://fmhy.net/gaming#download-games) in Game Downloading. Fast hosts, pre-installs, allows requests.
|
||||
|
||||
- Starred [VORAPIS](https://fmhy.net/social-media-tools#youtube-customization) in YouTube Customization. Restores classic layout + improves performance.
|
||||
|
||||
- Starred [WiiLink](https://fmhy.net/gaming-tools#wii-u-wii-homebrew) in Wii Homebrew. Restores functionality to Wii Channels that have been abandoned by Nintendo.
|
||||
|
||||
- Starred [AN1](https://fmhy.net/mobile#modded-apks) in Android APKs. Big library of games, quick updates, single click downloads.
|
||||
|
||||
- Starred [Namida](https://fmhy.net/mobile#android-audio-players) in Android Audio Players. Smooth, highly customizable, has YouTube support, and nice UI.
|
||||
|
||||
- Starred [StartAllBack](https://fmhy.net/system-tools#system-tweaks) in System Tweaks. Restores Win10 style UI features in Win11, and improves overall responsiveness.
|
||||
|
||||
- Starred [Z.ai](https://fmhy.net/ai) in AI Chatbots. Fast, unlimited, performs well, one of the better open-source reasoning models.
|
||||
|
||||
- Starred [GAM.ONL](https://fmhy.net/gaming#browser-emulators) in Browser Emulators. Has very nice UI / navigation system + many consoles and games.
|
||||
|
||||
- Starred [Vita Hacks Guide](https://fmhy.net/gaming-tools#playstation-homebrew) in Playstation Homebrew. Well respected, easy to follow, recommended to anyone starting Vita modding.
|
||||
|
||||
- Starred [Subtitle Edit](https://fmhy.net/video#subtitle-tools) in Subtitle Tools. Easy to use, feature-rich, well maintained subtitle editor.
|
||||
|
||||
***
|
||||
|
||||
# Things Removed
|
||||
|
||||
- Unstarred ChatGPT, has bad overall limits, bad reasoning quotas, its not considered very good as a free option anymore compared to others.
|
|
@ -19,7 +19,7 @@
|
|||
* ⭐ **[SponsorBlock](https://sponsor.ajay.app/)** - Skip Sponsored YouTube Ads / [X](https://x.com/SponsorBlock) / [Discord](https://discord.gg/SponsorBlock) / [GitHub](https://github.com/ajayyy/SponsorBlock)
|
||||
* ⭐ **SponsorBlock Tools** - [Bookmarklet](https://github.com/mchangrh/sb.js) / [Script](https://greasyfork.org/en/scripts/453320) / [Database](https://sb.ltn.fi/) / [Chromecast](https://github.com/gabe565/CastSponsorSkip)
|
||||
* [Disblock Origin](https://codeberg.org/AllPurposeMat/Disblock-Origin) or [Discord Adblock](https://github.com/CroissantDuNord/discord-adblock) - Hide Discord Nitro / Boost Ads
|
||||
* [Popup Blocker (strict)](https://github.com/schomery/popup-blocker), [Popupblocker All](https://addons.mozilla.org/en-US/firefox/addon/popupblockerall/) or [PopUpOFF](https://romanisthere.github.io/PopUpOFF-Website/index.html) - Popup Blockers / [Script](https://github.com/AdguardTeam/PopupBlocker)
|
||||
* [Popup Blocker (strict)](https://github.com/schomery/popup-blocker), [Popupblocker All](https://addons.mozilla.org/en-US/firefox/addon/popupblockerall/) or [PopUpOFF](https://popupoff.org/) - Popup Blockers / [Script](https://github.com/AdguardTeam/PopupBlocker)
|
||||
* [BehindTheOverlay](https://github.com/NicolaeNMV/BehindTheOverlay) - Hide Website Overlays
|
||||
* [BilibiliSponsorBlock](https://github.com/hanydd/BilibiliSponsorBlock) - Skip Sponsored Bilibili Ads
|
||||
|
||||
|
@ -48,8 +48,8 @@
|
|||
* ↪️ **[DNS Filters / Blocklists](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_dns_filters)**
|
||||
* ↪️ **[Free DNS Resolvers](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_free_dns_resolvers)**
|
||||
* ⭐ **[Pi-Hole](https://pi-hole.net/)** - Self-Hosted DNS Adblocking / [X](https://x.com/The_Pi_Hole) / [Subreddit](https://reddit.com/r/pihole/) / [GitHub](https://github.com/pi-hole)
|
||||
* ⭐ **Pi-Hole Tools** - [Filters](https://firebog.net/) / [Anti-Telemetry](https://github.com/MoralCode/pihole-antitelemetry) / [Tray App](https://github.com/PinchToDebug/Pihole-Tray/)
|
||||
* ⭐ **[AdGuard Home](https://adguard.com/en/adguard-home/overview.html)** - Self-Hosted DNS Adblocking / [Balena-Adguard](https://github.com/klutchell/balena-adguard) / [X](https://x.com/adguard) / [Subreddit](https://reddit.com/r/Adguard) / [Telegram](https://t.me/adguarden) / [GitHub](https://github.com/AdguardTeam/AdGuardHome)
|
||||
* ⭐ **Pi-Hole Tools** - [Filters](https://firebog.net/) / [Tray App](https://github.com/PinchToDebug/Pihole-Tray/)
|
||||
* ⭐ **[AdGuard Home](https://adguard.com/en/adguard-home/overview.html)** - Self-Hosted DNS Adblocking / [Balena-AdGuard](https://github.com/klutchell/balena-adguard) / [X](https://x.com/adguard) / [Subreddit](https://reddit.com/r/Adguard) / [Telegram](https://t.me/adguarden) / [GitHub](https://github.com/AdguardTeam/AdGuardHome)
|
||||
* ⭐ **[Mullvad DNS](https://mullvad.net/en/help/dns-over-https-and-dns-over-tls/)** - DNS Adblocking / Filtering / [Extension](https://mullvad.net/en/download/browser/extension) / [GitHub](https://github.com/mullvad)
|
||||
* [YogaDNS](https://yogadns.com/) - Custom DNS Client for Windows
|
||||
* [NextDNS](https://nextdns.io) - Customizable DNS Adblocking Service / [Video](https://youtu.be/WUG57ynLb8I)
|
||||
|
@ -89,35 +89,34 @@
|
|||
* ↪️ **[Virtual Machines](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/system-tools#wiki_.25B7_virtual_machines)**
|
||||
* ⭐ **[Malwarebytes](https://www.malwarebytes.com/)** / [X](https://x.com/malwarebytes) or [ESET](https://rentry.co/FMHYBase64#eset) - Antivirus
|
||||
* ⭐ **[AdwCleaner](https://www.malwarebytes.com/adwcleaner/)** - Anti-Adware / [X](https://x.com/malwarebytes)
|
||||
* ⭐ **[Triage](https://tria.ge/)** or [Cuckoo](https://cuckoo.cert.ee/) - Online Sandboxes
|
||||
* ⭐ **[Security / Antivirus Multireddit](https://www.reddit.com/user/goretsky/m/security/)** - Reddit Communities
|
||||
* ⭐ **[FMHY SafeGuard](https://github.com/fmhy/FMHY-SafeGuard)** - Detects if Current Site is Trusted / Untrusted
|
||||
* [FMHY LinkSafe Guard](https://greasyfork.org/en/scripts/528660-fmhy-safelink-guard) - Shows if Site is Trusted / Untrusted on Web Results
|
||||
* [BleepingComputer Forums](https://www.bleepingcomputer.com/forums/f/22/virus-trojan-spyware-and-malware-removal-help/), [Malwarebytes Forums](https://forums.malwarebytes.com/forum/7-windows-malware-removal-help-support/) or [Sysnative Forums](https://www.sysnative.com/forums/forums/security-arena.66/) - Malware Removal Forums / [Note](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#malware-removal-forums)
|
||||
* [Sandboxie Plus](https://sandboxie-plus.com/) - Sandbox Environment / [Guide](https://rentry.co/sandboxie-guide) / [GitHub](https://github.com/sandboxie-plus/Sandboxie)
|
||||
* [BleepingComputer](https://www.bleepingcomputer.com/forums/f/22/virus-trojan-spyware-and-malware-removal-help/), [Malwarebytes Forums](https://forums.malwarebytes.com/forum/7-windows-malware-removal-help-support/) or [Sysnative](https://www.sysnative.com/forums/forums/security-arena.66/) - Malware Removal Forums / [Note](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#malware-removal-forums)
|
||||
* [Sandboxie Plus](https://sandboxie-plus.com/) - Sandbox Environment / [Guide](https://rentry.co/vtguide) / [GitHub](https://github.com/sandboxie-plus/Sandboxie)
|
||||
* [Windows Sandbox](https://learn.microsoft.com/en-us/windows/security/application-security/application-isolation/windows-sandbox/windows-sandbox-overview) - Full Virtual Machine Sandbox Environment
|
||||
* [Dangerzone](https://dangerzone.rocks/) - Convert Malicious PDFs to Safe Files / [GitHub](https://github.com/freedomofpress/dangerzone)
|
||||
* [Triage](https://tria.ge/) or [Cuckoo](https://cuckoo.cert.ee/) - Online Sandboxes
|
||||
* [SquareX](https://public.sqrx.com/web) - Browser Sandbox
|
||||
* [No More Ransom](https://www.nomoreransom.org/en/decryption-tools.html) - Ransomware Decryption Tools
|
||||
* [ID Ransomware](https://id-ransomware.malwarehunterteam.com/) - Ransomware Identification Tool
|
||||
* [ConfigureDefender](https://github.com/AndyFul/ConfigureDefender) - Configure Windows Defender Settings
|
||||
* [DefenderUI](https://www.cyberlock.global/DefenderUI.aspx) - Improved Windows Defender UI
|
||||
|
||||
***
|
||||
|
||||
## ▷ File Scanners
|
||||
|
||||
* 🌐 **[The Second Opinion](https://jijirae.github.io/thesecondopinion/index.html)**, [2](https://rentry.co/thesecondopinion) - Portable Malware Scanners / Removal Tools / [GitHub](https://github.com/jijirae/thesecondopinion/)
|
||||
* ⭐ **[VirusTotal](https://www.virustotal.com/)** / [Scan Results Guide](https://rentry.co/piracy-faq-virustotal), [2](https://rentry.co/VTGuide) or **[Hybrid Analysis](https://hybrid-analysis.com/)** - Online File Scanner
|
||||
* ⭐ **[VirusTotal](https://www.virustotal.com/)** / [Scan Results Guide](https://rentry.co/vtguide) or **[Hybrid Analysis](https://hybrid-analysis.com/)** - Online File Scanner
|
||||
* ⭐ **VirusTotal Tools** - [CLI](https://github.com/VirusTotal/vt-cli) / [Uploader](https://github.com/SamuelTulach/VirusTotalUploader) / [Lite Version](https://www.virustotal.com/old-browsers/)
|
||||
* [Microsoft Safety Scanner](https://learn.microsoft.com/en-us/defender-endpoint/safety-scanner-download) or [Emsisoft Emergency Kit](https://www.emsisoft.com/en/home/emergencykit/) - On-demand AV Scanners
|
||||
* [Microsoft Safety Scanner](https://learn.microsoft.com/en-us/defender-endpoint/safety-scanner-download) - On-demand AV Scanner
|
||||
* [Manalyzer](https://manalyzer.org/) - PE File Scanner / [GitHub](https://github.com/JusticeRage/Manalyze)
|
||||
* [YARA](https://virustotal.github.io/yara/) - Malware Identification Tool / [GitHub](https://github.com/virustotal/yara)
|
||||
* [Winitor](https://www.winitor.com/) - EXE Malware Assessment
|
||||
* [pyWhat](https://github.com/bee-san/pyWhat) - Identify Anything / [Discord](https://discord.com/invite/zYTM3rZM4T)
|
||||
* [Grype](https://github.com/anchore/grype) - Container Images Vulnerability Scanner
|
||||
* [Jotti](https://virusscan.jotti.org/en) - Online File Scanner
|
||||
* [Filescan.io](https://www.filescan.io/) - Online File Scanner / [X](https://x.com/filescan_itsec) / [GitHub](https://github.com/filescanio)
|
||||
* [Filescan.io](https://www.filescan.io/) or [MetaDefender Cloud](https://metadefender.com/) - Online File Scanner / [X](https://x.com/filescan_itsec) / [GitHub](https://github.com/filescanio)
|
||||
* [Farbar](https://www.bleepingcomputer.com/download/farbar-recovery-scan-tool/) / [Guide](https://www.bleepingcomputer.com/forums/t/781976/) - Local File Scanner
|
||||
|
||||
***
|
||||
|
@ -166,7 +165,7 @@
|
|||
* ⭐ **[The New Oil](https://thenewoil.org/)** - Educational Guide / [GitHub](https://github.com/tnonate/thenewoil)
|
||||
* ⭐ **[No Trace](https://www.notrace.how/)** - Educational Guide / [.onion](http://i4pd4zpyhrojnyx5l3d2siauy4almteocqow4bp2lqxyocrfy6prycad.onion/)
|
||||
* ⭐ **[The Hitchhiker’s Guide](https://anonymousplanet.org/)** - Extensive Guide to Online Anonymity / [GitHub](https://github.com/Anon-Planet/thgtoa)
|
||||
* [Consumer Rights Wiki](https://consumerrights.wiki/) - Documents Practices That Impact Consumer Rights
|
||||
* ⭐ **[Consumer Rights Wiki](https://consumerrights.wiki/)** - Documents Practices That Impact Consumer Rights
|
||||
* [Lissy93's Awesome Privacy](https://awesome-privacy.xyz/) / [GitHub](https://github.com/lissy93/awesome-privacy), [Awesome Security Hardening](https://github.com/decalage2/awesome-security-hardening) or [pluja's Awesome Privacy](https://pluja.github.io/awesome-privacy/) / [GitHub](https://github.com/pluja/awesome-privacy) - Privacy App / Service Lists
|
||||
* [Defensive Computing Checklist](https://defensivecomputingchecklist.com/) - Educational Guide
|
||||
* [OPSEC guide](https://whos-zycher.github.io/opsec-guide/) - Educational Guide
|
||||
|
@ -219,7 +218,6 @@
|
|||
* [OpenPhish](https://openphish.com/), [Netcraft Report](https://report.netcraft.com/report), [isitPhishing](https://isitphishing.org/), [PhishStats](https://phishstats.info/) / [Telegram](https://t.me/joinchat/AAAAAElZRwd0aBrYTaHHcQ) / [GitHub](https://github.com/eschultze/phishstats-api-network) or [PhishTank](https://phishtank.org/) - Report Phishing Sites
|
||||
* [DNS Jumper](https://www.sordum.org/7952/dns-jumper-v2-3/) - DNS Switcher
|
||||
* [PeerTube](https://joinpeertube.org/) - Decentralized Video Hosting / [Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/social-media#wiki_.25B7_peertube_tools) / [GitHub](https://github.com/Chocobozzz/PeerTube)
|
||||
* [Redact](https://redact.dev/) - Delete X.com / Reddit Data / [Discord](https://discord.com/invite/PbyTFBEhtV)
|
||||
* [tweetXer](https://github.com/lucahammer/tweetXer) - Delete X.com Posts
|
||||
* [delete-likes-from-x-com.md](https://gist.github.com/aymericbeaumet/d1d6799a1b765c3c8bc0b675b1a1547d) - Delete X.com Likes / Favorites
|
||||
* [Power Delete Suite](https://github.com/j0be/PowerDeleteSuite) - Reddit Auto Post Delete
|
||||
|
@ -233,7 +231,7 @@
|
|||
* 🌐 **[Browser Privacy Guides](https://www.privacyguides.org/en/desktop-browsers)** - Browser Privacy / Setup Guides
|
||||
* ↪️ **[Browser Comparisons](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/internet-tools#wiki_.25BA_browser_tools)**
|
||||
* ↪️ **[Android Privacy Browsers](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/android#wiki_.25B7_android_browsers)**
|
||||
* ⭐ **[Tor Browser](https://www.torproject.org/)**, [2](https://tor.eff.org/) - Onion-Routed Browser / [TG Downloads](https://t.me/gettor_bot) / [Telegram](https://t.me/torproject) / [.onion](http://2gzyxa5ihm7nsggfxnu52rck2vv4rvmdlkiu3zzui5du4xyclen53wid.onion/) / [GitLab](https://gitlab.torproject.org/tpo/applications/tor-browser) / [GitHub](https://github.com/torproject)
|
||||
* ⭐ **[Tor Browser](https://www.torproject.org/)**, [2](https://tor.eff.org/) - Onion-Routed Browser / [TG Downloads / Bridges](https://t.me/torproject) / [.onion](http://2gzyxa5ihm7nsggfxnu52rck2vv4rvmdlkiu3zzui5du4xyclen53wid.onion/) / [GitLab](https://gitlab.torproject.org/tpo/applications/tor-browser)
|
||||
* ⭐ **[Mullvad Browser](https://mullvad.net/en/browser)** - Tor Browser Fork (without Tor network) / [GitHub](https://github.com/mullvad)
|
||||
* ⭐ **[arkenfox](https://github.com/arkenfox/user.js)** - Firefox Privacy Tweak / [Video](https://youtu.be/F7-bW2y6lcI) / [GUI](https://arkenfox.github.io/gui/)
|
||||
* [Phoenix](https://codeberg.org/celenity/Phoenix) - Firefox Privacy Tweak / [GitHub](https://github.com/celenityy/Phoenix)
|
||||
|
@ -271,7 +269,7 @@
|
|||
|
||||
## ▷ Encrypted Messengers
|
||||
|
||||
* 🌐 **[Chat Protocols & Services](https://docs.google.com/spreadsheets/u/0/d/1-UlA4-tslROBDS9IqHalWVztqZo7uxlCeKPQ-8uoFOU)**, [Eyelenburg Comparisons](https://eylenburg.github.io/im_comparison.htm), [SecuChart](https://bkil.gitlab.io/secuchart/), [Messenger-Matrix](https://www.messenger-matrix.de/messenger-matrix-en.html) or [Secure Messaging Apps](https://www.securemessagingapps.com/) - Chat App Indexes / Comparisons
|
||||
* 🌐 **[Eylenburg Comparisons](https://eylenburg.github.io/im_comparison.htm)**, [SecuChart](https://bkil.gitlab.io/secuchart/), [Messenger-Matrix](https://www.messenger-matrix.de/messenger-matrix-en.html) or [Secure Messaging Apps](https://www.securemessagingapps.com/) - Chat App Indexes / Comparisons
|
||||
* ⭐ **[SimpleX](https://simplex.chat/)** - All Platforms / [GitHub](https://github.com/simplex-chat)
|
||||
* ⭐ **[Signal](https://signal.org/)** - All Platforms / Phone # Required / [GitHub](https://github.com/signalapp) or **[Molly](https://github.com/mollyim/mollyim-android)** / Android
|
||||
* ⭐ **[Briar](https://briarproject.org/)** / Android / [GitLab](https://code.briarproject.org/briar/briar)
|
||||
|
@ -310,10 +308,9 @@
|
|||
|
||||
* ⭐ **[Have I Been Pwned?](https://haveibeenpwned.com/)** - Monitor Email Breaches / [GitHub](https://github.com/HaveIBeenPwned)
|
||||
* ⭐ **[Have I Been Pwned Passwords](https://haveibeenpwned.com/Passwords)** - Password Breach Check
|
||||
* [FirefoxMonitor](https://monitor.mozilla.org/) - Data Breach Check / [GitHub](https://github.com/mozilla/blurts-server)
|
||||
* [Mozilla Monitor](https://monitor.mozilla.org/) - Data Breach Check / Sign-up Required / [GitHub](https://github.com/mozilla/blurts-server)
|
||||
* [BreachDirectory](https://breachdirectory.org), [Snusbase](https://snusbase.com/), [Leak Lookup](https://leak-lookup.com/), [Trufflehog](https://trufflesecurity.com/) / [Discord](https://discord.gg/8Hzbrnkr7E) / [GitHub](https://github.com/trufflesecurity/trufflehog) or [LeakPeek](https://leakpeek.com/) / [Discord](https://discord.com/invite/mNxhSRWKwq) - Data Breach Search Engines
|
||||
* [Intelligence X](https://intelx.io/) - Password Breach Check / [GitHub](https://github.com/IntelligenceX)
|
||||
* [psbdmp](https://psbdmp.ws/) - Password Breach Check
|
||||
* [ScatteredSecrets](https://scatteredsecrets.com/) - Password Breach Check
|
||||
* [BreachDetective](https://breachdetective.com/) - Password Breach Check
|
||||
|
||||
|
@ -344,11 +341,8 @@
|
|||
* ⭐ **[Brave Search](https://search.brave.com/)** - Independent
|
||||
* ⭐ **[DuckDuckGo](https://start.duckduckgo.com/)** - Metasearch / Bing Based / [Shortcuts](https://duckduckgo.com/bangs), [2](https://github.com/dmlls/yang) / [Subreddit](https://www.reddit.com/r/duckduckgo/)
|
||||
* [Fuck Off Google](https://search.fuckoffgoogle.net/), [searx.neocities](https://searx.neocities.org/), [nixnet](https://searx.nixnet.services/) or [monocles](https://monocles.de/) - Searx Instances / Metasearch
|
||||
* [LibreY](https://github.com/Ahwxorg/librey) - Metasearch
|
||||
* [4get](https://4get.ca/) - Metasearch / [Source Code](https://git.lolcat.ca/lolcat/4get)
|
||||
* [Mojeek](https://www.mojeek.com/) - Independent / [Subreddit](https://www.reddit.com/r/mojeek/)
|
||||
* [Qwant](https://www.qwant.com/) - Bing / Independatant / [Discord](https://discord.com/invite/vjhCHnFMkw)
|
||||
* [Swisscows](https://swisscows.com/) - Bing Based
|
||||
* [YaCy](https://yacy.net/) - Decentralized / P2P Independant / [GitHub](https://github.com/yacy/yacy_search_server)
|
||||
* [Startpage](https://www.startpage.com/) - Google Based / [Subreddit](https://www.reddit.com/r/StartpageSearch/)
|
||||
* [SearXNG](https://docs.searxng.org/) - Self-Hosted / Metasearch / [GitHub](https://github.com/searxng/searxng)
|
||||
|
@ -357,13 +351,13 @@
|
|||
|
||||
# ► VPN
|
||||
|
||||
* **Note** - Keep in mind outside of WARP, its generally best to use a paid, rather than free VPN especially if you have privacy or speed in mind. Free VPNs are mainly useful for things like unblocking sites.
|
||||
* **Note** - Outside of WARP it's generally best to use a paid VPN, especially if you have privacy or speed in mind. Free VPNs are mostly useful for things like unblocking websites.
|
||||
|
||||
***
|
||||
|
||||
* 🌐 **[Techlore Chart](https://techlore.tech/vpn)** - VPN Comparison Charts
|
||||
* 🌐 **[VPN Relationships](https://kumu.io/Windscribe/vpn-relationships)**, [2](https://windscribe.com/vpnmap) - VPN Relationship Map
|
||||
* ⭐ **[WARP](https://one.one.one.one/)** - Free / Unlimited / [Wireguard](https://rentry.co/foss-warp), [2](https://f0rc3run.github.io/free-warp-endpoints/)
|
||||
* ⭐ **[WARP](https://one.one.one.one/)** - Free / Unlimited / [Wireguard](https://rentry.co/foss-warp), [2](https://f0rc3run.github.io/free-warp-endpoints/) / [Alt Client](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#alt-warp-clients)
|
||||
* ⭐ **[Windscribe](https://windscribe.com)** - Free / 10GB Monthly / [Subreddit](https://www.reddit.com/r/Windscribe/) / [GitHub](https://github.com/windscribe)
|
||||
* ⭐ **[Proton VPN](https://protonvpn.com)** - No Torrenting with Free Plan / Unlimited / [Wireguard](https://protonvpn.com/support/wireguard-configurations) / [Subreddit](https://www.reddit.com/r/ProtonVPN/) / [Telegram](https://t.me/proton_privacy) / [GitHub](https://github.com/ProtonVPN/)
|
||||
* ⭐ **[RiseupVPN](https://riseup.net/en/vpn)** - Free / Unlimited / [OpenVPN](https://github.com/kmille/riseup-vpn-configurator) / [GitHub](https://github.com/riseupnet)
|
||||
|
@ -377,14 +371,15 @@
|
|||
## ▷ VPN Tools
|
||||
|
||||
* ↪️ **[Free VPN Configs](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_free_vpn_configs)**
|
||||
* ⭐ **[VPN Binding Guide](https://gist.github.com/VVispy/765c6723436f386ef113040f8fc968b8)** - Bind VPN to Torrent Client to Avoid ISP Letters
|
||||
* ⭐ **[VPN Binding Guide](https://wispydocs.pages.dev/vpn-binding/)** - Bind VPN to Torrent Client to Avoid ISP Letters
|
||||
* ⭐ **[WireGuard](https://www.wireguard.com/)** - VPN Tunnel / [Guide](https://www.wireguard.com/quickstart/) / [Web UI](https://github.com/wg-easy/wg-easy) / [Source Code](https://www.wireguard.com/repositories/)
|
||||
* ⭐ **[Tailscale](https://tailscale.com/)**, [NetBird](https://netbird.io/) or [ZeroTier](https://www.zerotier.com/) - Secure Network VPN
|
||||
* [Nebula](https://github.com/slackhq/nebula) or [Headscale](https://github.com/juanfont/headscale) - Self-Hosted Secure Network VPN
|
||||
* [WGDashboard](https://wgdashboard.dev/) - WireGuard and Amnezia Manager / [Subreddit](https://www.reddit.com/r/WGDashboard/) /[Discord](https://discord.gg/72TwzjeuWm) / [GitHub](https://github.com/donaldzou/WGDashboard)
|
||||
* [WGDashboard](https://wgdashboard.dev/) - WireGuard and Amnezia Manager / [Subreddit](https://www.reddit.com/r/WGDashboard/) / [Discord](https://discord.gg/72TwzjeuWm) / [GitHub](https://github.com/donaldzou/WGDashboard)
|
||||
* [WireSock](https://wiresock.net/) or [Tunnl](https://tunnl.to/) - WireGuard Split Tunneling Clients
|
||||
* [Cloudflare Tunnels](https://developers.cloudflare.com/cloudflare-one/connections/connect-networks/) - VPN Tunnel / [WireGuard](https://gist.github.com/WildeBeast2521/adabae243e0b83e344ceef0422c3fa6d)
|
||||
* [OpenVPN](https://openvpn.net/) - VPN Tunnel
|
||||
* [tinc VPN](https://www.tinc-vpn.org/) / [GitHub](https://github.com/gsliepen/tinc) / [GitLab](https://gitlab.com/gsliepen/tinc) - VPN Tunnel
|
||||
* [tinc VPN](https://www.tinc-vpn.org/) - VPN Tunnel / [GitHub](https://github.com/gsliepen/tinc) / [GitLab](https://gitlab.com/gsliepen/tinc)
|
||||
* [WireHole](https://github.com/IAmStoxe/wirehole) - WireGuard VPN with Adblocking Capabilities / [Web UI](https://github.com/10h30/wirehole-ui)
|
||||
* [VpnHood](https://github.com/vpnhood/VpnHood), [IPsec VPN](https://github.com/hwdsl2/setup-ipsec-vpn) or [Outline](https://getoutline.org/) / [Subreddit](https://www.reddit.com/r/outlinevpn/) / [GitHub](https://github.com/Jigsaw-Code/) - Self-Hosted VPNs
|
||||
* [Self-Hosted VPN](https://github.com/rajannpatel/Pi-Hole-on-Google-Compute-Engine-Free-Tier-with-Full-Tunnel-and-Split-Tunnel-Wireguard-VPN-Configs) - Pi-Hole + WireGuard on Google Cloud
|
||||
|
@ -410,7 +405,7 @@
|
|||
* [Proxifier](https://www.proxifier.com/) - Add Proxy Functionality to Apps / [Keys](https://rentry.co/FMHYBase64#proxifier-keys)
|
||||
* [wireproxy](https://github.com/whyvl/wireproxy) - WireGuard as Proxy
|
||||
* [Hiddify](https://hiddify.com/) - V2Ray / Shadowsocks / Wireguard / SSH Client / [Telegram](https://t.me/hiddify) / [GitHub](https://github.com/hiddify)
|
||||
* [Ultraviolet](https://docs.titaniumnetwork.org/proxies/ultraviolet) / [GitHub](https://github.com/titaniumnetwork-dev/Ultraviolet) or [Nebula](https://github.com/NebulaServices/Nebula) - Open Source Web Proxy
|
||||
* [Scramjet](https://docs.titaniumnetwork.org/proxies/scramjet/) / [GitHub](https://github.com/MercuryWorkshop/scramjet/) or [Nebula](https://github.com/NebulaServices/Nebula) - Open Source Web Proxy
|
||||
* [Nginx Proxy Manager](https://nginxproxymanager.com) - Self-Hosted Reverse Proxy UI / [Subreddit](https://reddit.com/r/nginxproxymanager) / [GitHub](https://github.com/NginxProxyManager/nginx-proxy-manager)
|
||||
* [Titanium Network](https://titaniumnetwork.org/services/) - Proxy Developer / [Instances](https://discord.gg/unblock) / [GitHub](https://github.com/titaniumnetwork-dev)
|
||||
|
||||
|
@ -431,6 +426,7 @@
|
|||
* [Delusionz](https://delusionz.xyz/) / [Discord](https://discord.com/invite/Dpj8C8SAmH)
|
||||
* [ProxyPal](https://proxypal.net/) / [Telegram](https://t.me/PlainProxies)
|
||||
* [Proxyium](https://proxyium.com/)
|
||||
* [Szvy Central](https://szvy.lol/), [2](https://play.szvy.win/), [3](https://studying-central.global.ssl.fastly.net/), [4](https://zearn.global.ssl.fastly.net/)
|
||||
* [Google Translate](https://translate.google.com/) / [Explanation](https://redd.it/fawkjy), [2](https://ibb.co/BtWc8ML)
|
||||
* [Proxy Checker](https://proxy-checker.net/), [proxy-scraper](https://github.com/iw4p/proxy-scraper) or [proxy-scraper-checker](https://github.com/monosans/proxy-scraper-checker) - Proxy Scrapers / Checkers
|
||||
* [CheckSocks5](https://checksocks5.com/) - SOCKS5 Proxy Checker
|
|
@ -7,9 +7,8 @@
|
|||
# ► Ebooks
|
||||
|
||||
* 🌐 **[Open Slum](https://open-slum.org/)** - Book Site Index / Uptime Tracking
|
||||
* ⭐ **[Anna's Archive](https://annas-archive.org/)**, [2](https://annas-archive.li/), [3](https://annas-archive.se/) - Books / Comics / [Frontend](https://welib.org/) / [Auto-Expand](https://greasyfork.org/en/scripts/494262) / [Matrix](https://matrix.to/#/#annas:archivecommunication.org) / [Subreddit](https://www.reddit.com/r/Annas_Archive/)
|
||||
* ⭐ **[Anna's Archive](https://annas-archive.org/)**, [2](https://annas-archive.li/), [3](https://annas-archive.se/) - Books / Comics / [Auto-Expand](https://greasyfork.org/en/scripts/494262) / [Matrix](https://matrix.to/#/#annas:archivecommunication.org) / [Subreddit](https://www.reddit.com/r/Annas_Archive/)
|
||||
* ⭐ **[Z-Library](https://z-lib.gd/)**, [2](https://articles.sk/), [3](https://1lib.sk/), [4](https://z-lib.fm/) - Books / Comics / [Apps / Extensions](https://go-to-library.sk/) / [.onion](http://loginzlib2vrak5zzpcocc3ouizykn6k5qecgj2tzlnab5wcbqhembyd.onion/), [2](http://bookszlibb74ugqojhzhg2a63w5i2atv5bqarulgczawnbmsb6s6qead.onion/) / [Subreddit](https://www.reddit.com/r/zlibrary/)
|
||||
* ⭐ **[Bookracy](https://bookracy.ru/)** - Books / Download / [Download Buttons](https://greasyfork.org/en/scripts/536768) / [Mirrors](https://rentry.co/bookracy) / [Subreddit](https://reddit.com/r/bookracy) / [Telegram](https://t.me/bookracy)
|
||||
* ⭐ **[Mobilism](https://forum.mobilism.org)**, [2](https://forum.mobilism.me/) - Books / Audiobooks / Magazines / Newspapers / Comics / [Ranks](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#mobilism-ranks)
|
||||
* ⭐ **[MyAnonaMouse](https://www.myanonamouse.net/)** - Books / Audiobooks / Comics / Sheet Music / [Invite Required](https://www.myanonamouse.net/inviteapp.php)
|
||||
* ⭐ **[Library Genesis](https://libgen.li/)** - 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) / [Subreddit](https://reddit.com/r/libgen)
|
||||
|
@ -17,7 +16,8 @@
|
|||
* [Liber3](https://liber3.eth.limo/) - Book Search / Download
|
||||
* [BookSee](https://en.booksee.org/) - Book Search / Download
|
||||
* [The Library](https://discord.gg/mSyFJz9) - Books / Discord
|
||||
* [eBookHunter](https://ebook-hunter.org/) - Books / Comics / Use [Adblock](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/adblock-vpn-privacy/#wiki_.25BA_adblocking) / [Telegram](https://t.me/ebookhunterorg)
|
||||
* [eBookoz](https://ebookoz.net/) - Books
|
||||
* [WeLib](https://welib.org/) - Anna's Archive Mirror / [Unofficial](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#welib-note)
|
||||
* [Bookstagram](https://vk.com/bookstagram_eng) - Books / Magazines / VK
|
||||
* [dpgroup](https://www.dpgroup.org/) - Books / Magazines / Sign-Up
|
||||
* [eBookBB](https://ebookbb.in/) - Books / Download
|
||||
|
@ -79,7 +79,6 @@
|
|||
|
||||
## ▷ PDF Search
|
||||
|
||||
* ⭐ **[PDF Drive](https://www.pdfdrive.com/)** - Books
|
||||
* [Ocean of PDF](https://oceanofpdf.com/) - Books / Comics
|
||||
* [pdfroom](https://pdfroom.com/) - Books / Comics
|
||||
* [Ebook PDF](https://ebookpdf.com/) - Books
|
||||
|
@ -105,143 +104,6 @@
|
|||
|
||||
***
|
||||
|
||||
## ▷ Fanfiction / Stories
|
||||
|
||||
* ⭐ **[Short Stories](https://short-stories.co/)**
|
||||
* ⭐ **[Archive of Our Own](https://archiveofourown.org/)** - Fanfiction Archive / [Enhancements](https://github.com/jsmnbom/ao3-enhancements/)
|
||||
* [SCP Foundation](https://scp-wiki.wikidot.com/) - Fictional Story Collabs / [Wiki](https://en.wikipedia.org/wiki/SCP_Foundation) / [Subreddit](https://www.reddit.com/r/SCPDeclassified/)
|
||||
* [the Wanderers' Library](https://wanderers-library.wikidot.com/) - Fictional Story Collabs
|
||||
* [RPC Authority](http://rpc-wiki.net/) - Fictional Story Collabs
|
||||
* [OrionsArm](https://www.orionsarm.com/) - Fictional Story Collabs
|
||||
* [Everything2](https://everything2.com/) - Short Stories / Poetry / Writing Help
|
||||
* [Fork Read](https://forkread.com/) - Publish Short Stories
|
||||
* [Fanfiction.net](https://fanfiction.net/) - Fanfiction
|
||||
* [SquidgeWorld](https://squidgeworld.org/) - Fanfiction
|
||||
* [FanMTL](https://www.fanmtl.com/) - Fanfiction
|
||||
* [Inkitt](https://www.inkitt.com/fanfiction) - Fanfiction
|
||||
* [Wattpad](https://wattpad.com/) - Fanfiction
|
||||
* [Royal Road](https://royalroad.com/) - Fanfiction
|
||||
* [FictionPress](https://www.fictionpress.com/) - Fanfiction
|
||||
* [Quotev](https://www.quotev.com/stories/c/Fanfiction) - Fanfiction
|
||||
* [fiction.live](https://fiction.live/) - Fanfiction
|
||||
* [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
|
||||
* [Poop Fiction](https://readpoopfiction.com/) - Random Short Stories
|
||||
* [AlternateHistory](https://www.alternatehistory.com/forum/) - Historical "What if?" Fiction
|
||||
* [Liminal Archives](http://liminal-archives.wikidot.com/) / [Discord](https://discord.gg/fxhwcsyKN2), [The Backrooms Wiki](http://backrooms-wiki.wikidot.com/) or [The Voidclusters](http://voidclusters.wikidot.com/) - Liminal Space Stories
|
||||
* [Potions and Snitches](https://www.potionsandsnitches.org/) - Harry Potter Fanfiction
|
||||
* [Fim Fiction](https://www.fimfiction.net/) - MLP Fanfiction
|
||||
|
||||
***
|
||||
|
||||
## ▷ Esoteric / Cultural
|
||||
|
||||
* 🌐 **[WiLd's Occult Ebooks](https://rentry.co/FMHYBase64#wilds-occult-ebook-sources)** - Occult / Esoterica
|
||||
* 🌐 **[Soren Megathread](https://rentry.co/FMHYBase64#soren-megathread)** - Occult / Esoterica
|
||||
* ↪️ **[Esoterica Telegram Channels](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_magic_.2F_esoteric_telegram_ebooks)**
|
||||
* ⭐ **[Sacred Text Archive](https://sacred-texts.com/)** - Religion / Mythology / Folklore / Esoterica / [Classic View](https://archive.sacred-texts.com/)
|
||||
* ⭐ **[Libris Adepti](https://librisadepti.com/)** - Esoterica / Occult
|
||||
* ⭐ **[The Exerdex](https://rentry.co/FMHYBase64#echerdex-repository)** - Esoterica / [Subreddit](https://www.reddit.com/r/Echerdex/) / [Discord](https://discord.gg/dS5X3d7ype)
|
||||
* [Theoi](https://www.theoi.com/) - Greek Mythology
|
||||
* [Germanic Mythology](https://www.germanicmythology.com/index.html) - Germanic Mythology
|
||||
* [Inuit Myths](https://www.inuitmyths.com/index.htm) - Inuit Mythology
|
||||
* [Grimoar.cz](http://english.grimoar.cz/?Loc=key&Lng=2), [Occult Rentry](https://rentry.co/FMHYBase64#occult-rentry), [766 Occult Books](https://rentry.co/FMHYBase64#766-occult-books), [Darkbooks](https://darkbooks.org/collection/top250.html) or [Astrum Argenteum](https://www.astrumargenteum.org/library/) - Occult Books
|
||||
* [Messy Occult Library](https://rentry.co/FMHYBase64#messy-occult-library) - Occult / Esoterica / Gnosticism
|
||||
* [Hermetic International](https://www.hermetics.net/) - Religion / Occult / Gnosticism / Hermetic / Philosophy
|
||||
* [Hermetics](https://www.hermetics.org/library.html) - Ancient Texts / Mythology / Occult
|
||||
* [EatTheFruit](https://www.eatthefruit.com/media-library/pdf-library/) - Ancient Texts / Mythology
|
||||
* [Dhamma Talks](https://www.dhammatalks.org/) - Sacred Texts / Religion / Buddhism
|
||||
* [Sutta Central](https://suttacentral.net/) - Sacred Texts / Religion / Buddhism
|
||||
* [Jainism Library of Jain Literature](https://www.atmadharma.com/index.html) - Sacred Texts / Religion
|
||||
* [Awakening-Intuition](https://www.awakening-intuition.com/ebooks.html) - Religion / Esoterica / Occult
|
||||
* [Biblioteca Pleyades](https://www.bibliotecapleyades.net/esp_tema.htm) - Mythology / Conspiracy / Esoterica
|
||||
* [Gnostic Society Library](http://www.gnosis.org/library.html) - Gnosticism
|
||||
* [Logoi Library](https://logoilibrary.com/) - Gnosticism / Hermeticism
|
||||
* [The Library of Consciousness](https://www.organism.earth/library/) - Esoterica
|
||||
* [Humanitys Vault](https://rentry.co/FMHYBase64#humanitys-vault) - Esoterica
|
||||
* [Esoteric Archive](https://esotericarchives.com/) - Esoterica
|
||||
* [Esoterica Drive](https://rentry.co/FMHYBase64#archive) - Esoterica
|
||||
* [magZtore](https://t.me/magZtore) - Esoterica / Telegram
|
||||
* [WonderlandLibraryOfMagicBooks](https://t.me/WonderlandLibraryOfMagicBooks) - Esoterica / Telegram
|
||||
* [Synchroncity1111](https://t.me/synchroncity1111) - Esoterica / Telegram
|
||||
* [SpiritualBooks](https://t.me/spiritualbooks) - Esoterica / Telegram
|
||||
* [Masonic Library](https://masonicshop.com/masonic-library/) - Esoterica / Freemasonry
|
||||
* [Azrk's library](https://rentry.co/FMHYBase64#azrks-library) - Occult / Esoterica / Satanism / Religion
|
||||
* [Rosicrucian Esotericism Lecture](https://rsarchive.org/) - Rosicrucian Esotericism
|
||||
* [Spirituality Megadrive](https://rentry.co/FMHYBase64#spirituality-megadrive)
|
||||
* [IAPSOP](http://iapsop.com/) - Spiritualist / Occult Periodicals
|
||||
* [Dhushara Research](https://www.dhushara.com/index.htm) - Metaphysics / Conspiracies / Psychedelics
|
||||
* [CraftStuff](https://rentry.co/FMHYBase64#craftstuff) - Witchcraft
|
||||
* [Witchcraft Library](https://rentry.co/FMHYBase64#witchcraft-library) - Witchcraft / Paganism
|
||||
* [Public Witchcraft Library](https://rentry.co/FMHYBase64#public-witchcraft-library) - Witchcraft / Paganism / Satanism
|
||||
* [Alchemy Drive](https://rentry.co/FMHYBase64#alchemy-drive) - Alchemy
|
||||
* [LeftHandPath](https://rentry.co/FMHYBase64#lefthandpath) - Luciferianism
|
||||
* [Hellenistic Theism Drive](https://rentry.co/FMHYBase64#hellenistic-theism) - Hellenistic Theism
|
||||
* [The Theosophical Society](https://www.theosociety.org/) or [Theosophy World](https://www.theosophy.world/portfolio/term/ebooks) - Theosophy
|
||||
* [Shankaracharya](https://www.shankaracharya.org/) - Hinduism
|
||||
* [Vedanta Shastras](https://www.shastras.com/) - Hinduism
|
||||
* [Encyclopedia Of Hinduism](https://archive.org/details/ConstanceA.JonesJamesD.RyanEncyclopediaOfHinduism/) - Hinduism Encyclopedia
|
||||
* [BhagavadGitaApp](https://github.com/WirelessAlien/BhagavadGitaApp) - Bhagavad Gita App
|
||||
* [Vedabase](https://vedabase.io/en/) - Bhaktivedanta Swami / Books / Transcripts / Letters
|
||||
* [84000](https://84000.co/) - Buddhism
|
||||
* [Encyclopedia Of Buddhism](https://archive.org/details/EdwardA.IronsEncyclopediaOfBuddhismEncyclopediaOfWorldReligions/) - Buddhist Encyclopedia
|
||||
* [Buddhism Dictionary](http://www.buddhism-dict.net/ddb/) - Buddhist Dictionary
|
||||
* [Early Christian Writings](https://www.earlychristianwritings.com/index.html) - Christianity / Gnosticism
|
||||
* [HolyBooks](https://holybooks.com/) - Religious Texts
|
||||
* [The Dead Sea Scrolls](https://www.deadseascrolls.org.il/) - Dead Sea Scrolls Archive
|
||||
* [DigiVatLib](https://digi.vatlib.it/) - Digital Vatican Library
|
||||
* [BibleGateway](https://www.biblegateway.com/), [Armorer](https://armorer.io/) or [Bible.com](https://www.bible.com/) - Christian Bible
|
||||
* [eSword](https://e-sword.net/) - Christian Bible Desktop App
|
||||
* [Classics Ethereal Library](https://www.ccel.org/) - Christianity
|
||||
* [Hidden Bible](http://www.hiddenbible.com/enoch/online.html) - Enoch Translation
|
||||
* [Quran.com](https://quran.com/) or [AbcQuran](https://github.com/jomtek/AbcQuran) - Quran Translations / [Mobile](https://github.com/quran/quran_android)
|
||||
* [Awesome Islam](https://github.com/AhmedKamal/awesome-Islam) - Islam Related Projects / Apps
|
||||
* [OpenMaktaba](https://openmaktaba.com/) - Islamic Books
|
||||
* [TheIslam360](https://theislam360.com/) - Islamic Research App
|
||||
* [Halakhah](https://www.halakhah.com/) - Talmud Translation
|
||||
* [Targum](http://targum.info/targumic-texts/) - Targum Translation
|
||||
* [Sefaria](https://www.sefaria.org/) - Jewish Texts Translations
|
||||
* [Muslim Scholars](https://muslimscholars.info/) - Muslim Scholar Database
|
||||
* [2Muslims](https://www.2muslims.com/) - Muslim Resources
|
||||
* [Five Prayers](https://github.com/Five-Prayers/five-prayers-android) - Muslim Tools App
|
||||
* [Sunnah.com](https://sunnah.com/) - Hadith Translation
|
||||
|
||||
***
|
||||
|
||||
## ▷ Special Interest
|
||||
|
||||
* ↪️ **[Survival / Prepping](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_survival)**
|
||||
* ↪️ **[Quote Collections](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/edu#wiki_.25B7_quote_indexes)**
|
||||
* ⭐ **[Poetry Foundation](https://www.poetryfoundation.org/)**, [Poetry In Translation](https://www.poetryintranslation.com/), [PoemHunter](https://www.poemhunter.com/), [DiscoverPoetry](https://discoverpoetry.com/), [RUVerses](https://ruverses.com/) or [Poetry.com](https://www.poetry.com/) - Poetry
|
||||
* ⭐ **[The Anarchist Library](https://theanarchistlibrary.org/special/index)** - Anarchism
|
||||
* [FreeSFOnline](https://www.freesfonline.net/) - Sci-Fi / Fantasy
|
||||
* [eBookHunter.net](https://www.ebookhunter.net/) or [EpubPuB](https://www.epub.pub/) - Romance / Fantasy
|
||||
* [HourWolf](https://www.hourwolf.com/sfbooks/) - Fantasy
|
||||
* [byGosh](https://bygosh.com), [StoryWhale](https://www.storywhale.com/), [Baldwin Library](https://ufdc.ufl.edu/juv) or [BookDash](https://github.com/bookdash/bookdash-android-app) - Children's Books
|
||||
* [Artbooks Archive](https://t.me/archive_artbooks), [ArtFacultas](https://t.me/ArtFacultas), [FreeArt](https://t.me/free_art_book) or [TheArtbooks](https://t.me/theartbooks) - Artbooks
|
||||
* [VGArtbooks](https://vk.com/vgartbooks) - Video Game Artbooks
|
||||
* [The Eldritch Dark](http://www.eldritchdark.com/) - Clark Ashton Smith
|
||||
* [Booklet Library](https://bookletlibrary.org/) - Booklet Library
|
||||
* [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
|
||||
* [The Trove](https://web.archive.org/web/20210614215400/https://thetrove.is/) - Books / Fantasy / TTRPG
|
||||
* [TTRPG Torrent](https://rentry.co/FMHYBase64#ttrpg-books) - TTRPG Books
|
||||
* [Project Aon](https://www.projectaon.org/en/Main/Home) - Lone Wolf Gamebooks
|
||||
* [Trans Reads](https://transreads.org/) - Transgender-focused Literature
|
||||
* [Anarcho-Copy](https://anarcho-copy.org/) - Anarchism
|
||||
* [Anarchist FAQ](https://www.anarchistfaq.org/) - Anarchism / Translations
|
||||
* [Archive.Leftove.rs](https://archive.leftove.rs/) - Protest Documents
|
||||
* [Marxists Internet Archive](https://www.marxists.org/) - Socialism / Communism
|
||||
* [Liberation School](https://liberationschool.org/) - Communism
|
||||
* [Red Texts](https://redtexts.org/) - Communism
|
||||
* [Communism Essays / FAQs](https://dessalines.github.io/essays) - Communism
|
||||
* [Avalon Library](https://avalonlibrary.net/) - Conspirology Books
|
||||
|
||||
***
|
||||
|
||||
## ▷ Ebook Readers
|
||||
|
||||
* 🌐 **[Ebook Reader Index](https://wiki.mobileread.com/wiki/E-book_software)** or [Mobile Read](https://www.mobileread.com/) - Ebook Reader Indexes
|
||||
|
@ -306,7 +168,7 @@
|
|||
|
||||
* ↪️ **[Kindle Jailbreak Tools](https://rentry.co/FMHYBase64#jailbreak-kindle)**
|
||||
* ⭐ **[Kindle Comic Converter](https://github.com/ciromattia/kcc)** - Multi-Format Converter
|
||||
* [FreeReadFeed](https://www.freereadfeed.com/) - Free Kindle Releases
|
||||
* [FreeReadFeed](https://www.freereadfeed.com/) or [eReaderIQ](https://www.ereaderiq.com/freebies) - Free Kindle Releases
|
||||
* [Send to Kobo/Kindle](https://send.djazz.se/) - Send Ebooks to Kindle / [GitHub](https://github.com/daniel-j/send2ereader)
|
||||
* [md2mobi](https://md2mobi.lapw.at/) - HTML to Kindle Converter
|
||||
* [Remove Kindle DRM](https://itsfoss.com/calibre-remove-drm-kindle/) - Remove DRM from Kindle
|
||||
|
@ -315,6 +177,215 @@
|
|||
|
||||
***
|
||||
|
||||
# ► Special Interest
|
||||
|
||||
* ↪️ **[Survival / Prepping](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_survival)**
|
||||
* ⭐ **[The Anarchist Library](https://theanarchistlibrary.org/special/index)** - Anarchism
|
||||
* [FreeSFOnline](https://www.freesfonline.net/) - Sci-Fi / Fantasy
|
||||
* [eBookHunter.net](https://www.ebookhunter.net/) or [EpubPuB](https://www.epub.pub/) - Romance / Fantasy
|
||||
* [HourWolf](https://www.hourwolf.com/sfbooks/) - Fantasy
|
||||
* [byGosh](https://bygosh.com), [StoryWhale](https://www.storywhale.com/), [Baldwin Library](https://ufdc.ufl.edu/juv) or [BookDash](https://github.com/bookdash/bookdash-android-app) - Children's Books
|
||||
* [Artbooks Archive](https://t.me/archive_artbooks), [ArtFacultas](https://t.me/ArtFacultas), [FreeArt](https://t.me/free_art_book) or [TheArtbooks](https://t.me/theartbooks) - Artbooks
|
||||
* [VGArtbooks](https://vk.com/vgartbooks) - Video Game Artbooks
|
||||
* [The Eldritch Dark](http://www.eldritchdark.com/) - Clark Ashton Smith
|
||||
* [Booklet Library](https://bookletlibrary.org/) - Booklet Library
|
||||
* [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
|
||||
* [The Trove](https://web.archive.org/web/20210614215400/https://thetrove.is/) - Books / Fantasy / TTRPG
|
||||
* [TTRPG Torrent](https://rentry.co/FMHYBase64#ttrpg-books) - TTRPG Books
|
||||
* [Project Aon](https://www.projectaon.org/en/Main/Home) - Lone Wolf Gamebooks
|
||||
* [Trans Reads](https://transreads.org/) - Transgender-focused Literature
|
||||
* [Anarcho-Copy](https://anarcho-copy.org/) - Anarchism
|
||||
* [Anarchist FAQ](https://www.anarchistfaq.org/) - Anarchism / Translations
|
||||
* [Archive.Leftove.rs](https://archive.leftove.rs/) - Protest Documents
|
||||
* [Marxists Internet Archive](https://www.marxists.org/) - Socialism / Communism
|
||||
* [Liberation School](https://liberationschool.org/) - Communism
|
||||
* [Red Texts](https://redtexts.org/) - Communism
|
||||
* [Communism Essays / FAQs](https://dessalines.github.io/essays) - Communism
|
||||
* [Avalon Library](https://avalonlibrary.net/) - Conspirology Books
|
||||
|
||||
***
|
||||
|
||||
## ▷ Light Novels
|
||||
|
||||
* 🌐 **[Wotaku](https://wotaku.wiki/websites#novels)** - Light Novel Index / [Discord](https://discord.gg/vShRGx8ZBC)
|
||||
* 🌐 **[EverythingMoe](https://everythingmoe.com/#section-novel)**, [2](https://everythingmoe.org/#section-novel) - Light Novel Sites Index / [Subreddit](https://www.reddit.com/r/everythingmoe/) / [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/)**
|
||||
* ⭐ **[NovelFire](https://novelfire.net/)**
|
||||
* [Visual Novels Android](https://t.me/visual_novels_android_eng) - Android Visual Novel Ports
|
||||
* [Just Light Novels](https://www.justlightnovels.com/) / Allows Downloads
|
||||
* [LightNovelHeaven](https://lightnovelheaven.com), [AllNovel](https://allnovel.org), [NovelFull](https://novelfull.com/) or [NOVGO](https://novgo.net/)
|
||||
* [Vynovel](https://vynovel.com/)
|
||||
* [Ranobes](https://ranobes.top/)
|
||||
* [Light Novel World](https://lightnovelworld.org/)
|
||||
* [Baka-Tsuki](https://www.baka-tsuki.org)
|
||||
* [Armaell's Library](https://armaell-library.net/) / Allows Downloads
|
||||
* [WuxiaWorld](https://www.wuxiaworld.com/)
|
||||
* [WTR-LAB](https://wtr-lab.com/) / Sign-Up Required for AI Translations
|
||||
* [WuxiaSpot](https://www.wuxiaspot.com/)
|
||||
* [WebNovel.com](https://www.webnovel.com/)
|
||||
* [AsianHobbyist](https://www.asianhobbyist.com/)
|
||||
* [Wordrain69](https://wordrain69.com/)
|
||||
* [Wuxia World](https://wuxiaworld.site/)
|
||||
* [Wuxiabox](https://www.wuxiabox.com/)
|
||||
* [NovelGo](https://novelgo.id)
|
||||
* [Wuxia.click](https://wuxia.click/)
|
||||
* [Ocean of EPUB](https://oceanofepub.net/) / Allows Downloads
|
||||
* [Novel Bin](https://novelbin.com/), [2](https://novelbin.me/)
|
||||
* [ReadNovelFull](https://readnovelfull.com)
|
||||
* [FreeWebNovel](https://freewebnovel.com/)
|
||||
* [Translated Light Novels](https://rentry.co/FMHYBase64#translated-light-novels) / Allows Downloads
|
||||
* [NovelNext](https://novelnext.com/)
|
||||
* [NovelBuddy](https://novelbuddy.io/), [2](https://novelbuddy.com/)
|
||||
* [Wuxia Box](https://www.wuxiabox.com/)
|
||||
* [NovelCool](https://www.novelcool.com/)
|
||||
* [Novels.pl](https://www.novels.pl/) / Allows Downloads
|
||||
* [Scribblehub](https://www.scribblehub.com/)
|
||||
* [Novel Hall](https://www.novelhall.com/)
|
||||
* [Rekt Novel Compilations](https://rektnovelcompilations.wordpress.com/)
|
||||
* [WoopRead](https://woopread.com/)
|
||||
* [Royal Road](https://www.royalroad.com/) - Web Novels
|
||||
* [Light Novel Archive](https://t.me/LightNovelArchives) or [LN_Index](https://t.me/LN_Index) - Telegram
|
||||
* [Book Smelting Bot](https://t.me/epub_smelter_bot) - Telegram / Bot
|
||||
* [Baka-Tsuki](https://www.baka-tsuki.org/project/?title=Main_Page) - Novels / Audio Recordings
|
||||
* [LN-Crawler-Colab](https://colab.research.google.com/github/HongYue1/LightNovel-Crawler-Colab/blob/main/lightnovel_crawler.ipynb) / [GitHub](https://github.com/HongYue1/LightNovel-Crawler-Colab), [Lightnovel Crawler](https://github.com/dipu-bd/lightnovel-crawler/), [novel-downloader](https://greasyfork.org/en/scripts/406070), [QuickNovel](https://github.com/LagradOst/QuickNovel) or [anime-dl](https://github.com/vrienstudios/anime-dl) - Light Novel Downloaders
|
||||
* [WebToEpub](https://github.com/dteviot/WebToEpub) - Novel to EPUB Converter
|
||||
* [LNMTL](https://lnmtl.com/) or [Omni](https://app.readomni.com/) - Light Novel Translators
|
||||
|
||||
***
|
||||
|
||||
## ▷ Fanfiction / Stories
|
||||
|
||||
* ⭐ **[Archive of Our Own](https://archiveofourown.org/)** - Fanfiction Archive / [Enhancements](https://github.com/jsmnbom/ao3-enhancements/)
|
||||
* ⭐ **[Short Stories](https://short-stories.co/)**
|
||||
* [SCP Foundation](https://scp-wiki.wikidot.com/) - Fictional Story Collabs / [Wiki](https://en.wikipedia.org/wiki/SCP_Foundation) / [Subreddit](https://www.reddit.com/r/SCPDeclassified/)
|
||||
* [Everything2](https://everything2.com/) - Short Stories / Poetry / Writing Help
|
||||
* [Fork Read](https://forkread.com/) - Publish Short Stories
|
||||
* [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
|
||||
* [Poop Fiction](https://readpoopfiction.com/) - Random Short Stories
|
||||
* [the Wanderers' Library](https://wanderers-library.wikidot.com/) - Fictional Story Collabs
|
||||
* [RPC Authority](http://rpc-wiki.net/) - Fictional Story Collabs
|
||||
* [OrionsArm](https://www.orionsarm.com/) - Fictional Story Collabs
|
||||
* [Fanfiction.net](https://fanfiction.net/) - Fanfiction
|
||||
* [SquidgeWorld](https://squidgeworld.org/) - Fanfiction
|
||||
* [FanMTL](https://www.fanmtl.com/) - Fanfiction
|
||||
* [Inkitt](https://www.inkitt.com/fanfiction) - Fanfiction
|
||||
* [Wattpad](https://wattpad.com/) - Fanfiction
|
||||
* [Royal Road](https://royalroad.com/) - Fanfiction
|
||||
* [FictionPress](https://www.fictionpress.com/) - Fanfiction
|
||||
* [Quotev](https://www.quotev.com/stories/c/Fanfiction) - Fanfiction
|
||||
* [AlternateHistory](https://www.alternatehistory.com/forum/) - Historical "What if?" Fiction
|
||||
* [Liminal Archives](http://liminal-archives.wikidot.com/) / [Discord](https://discord.gg/fxhwcsyKN2), [The Backrooms Wiki](http://backrooms-wiki.wikidot.com/) or [The Voidclusters](http://voidclusters.wikidot.com/) - Liminal Space Stories
|
||||
* [Potions and Snitches](https://www.potionsandsnitches.org/) - Harry Potter Fanfiction
|
||||
* [Fim Fiction](https://www.fimfiction.net/) - MLP Fanfiction
|
||||
* [fiction.live](https://fiction.live/) - Fanfiction
|
||||
|
||||
***
|
||||
|
||||
## ▷ Newspapers
|
||||
|
||||
* 🌐 **[Veridian](https://veridiansoftware.com/collections/)** - Newspaper Archive List
|
||||
* ↪️ **[Bypass Newspaper Paywalls](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/internet-tools#wiki_.25B7_paywall_bypass)**
|
||||
* ↪️ **[Worldwide News Sites](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/misc#wiki_.25BA_news)**
|
||||
* ⭐ **[Mobilism Newspapers](https://forum.mobilism.org/viewforum.php?f=123)** / [User Ranks](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#mobilism-ranks)
|
||||
* ⭐ **[Google Newspaper Search](https://news.google.com/newspapers)**
|
||||
* [SoftArchive](https://softarchive.download/newspapers)
|
||||
* [Meta-Press](https://www.meta-press.es/) - Newspaper Search
|
||||
* [EngNewspapers](https://vk.com/engnewspapers) - Telegram
|
||||
* [newspaper_archive](https://t.me/newspaper_archive) - Telegram
|
||||
* [Chronicling America](https://chroniclingamerica.loc.gov/newspapers/)
|
||||
* [Kiosko](https://en.kiosko.net/)
|
||||
* [FultonHistory](https://fultonhistory.com/Fulton.html)
|
||||
* [Loc.gov Newspapers](https://www.loc.gov/newspapers/)
|
||||
* [Newspapers](https://newspapers.com/)
|
||||
* [ThoughtCo](https://www.thoughtco.com/us-historical-newspapers-online-by-state-1422215)
|
||||
* [Library of Congress Newspapers](https://guides.loc.gov/foreign-newspapers/digital-resources)
|
||||
* [Archive.org Newspapers](https://rentry.co/FMHYBase64#archiveorg-newspapers)
|
||||
* [World-Newspapers](https://world-newspapers.com/), [NewsPaperIndex](https://www.newspaperindex.com/) or [Paperboy](https://www.thepaperboy.com/) - Online Newspaper Indexes
|
||||
* [LA Times](https://latimes.newspapers.com/)
|
||||
* [Front Pages](https://www.frontpages.com/) - Newspaper Front Pages
|
||||
* [Europeana Newspapers](https://www.europeana.eu/en/collections/topic/18-newspapers) - European Historical Newspapers
|
||||
* [Newspaper Map](https://newspapermap.com/) - Find / Translate Worldwide Newspapers
|
||||
|
||||
***
|
||||
|
||||
## ▷ Esoteric / Cultural
|
||||
|
||||
* 🌐 **[WiLd's Occult Ebooks](https://rentry.co/FMHYBase64#wilds-occult-ebook-sources)** - Occult / Esoterica
|
||||
* 🌐 **[Soren Megathread](https://rentry.co/FMHYBase64#soren-megathread)** - Occult / Esoterica
|
||||
* ⭐ **[Sacred Text Archive](https://sacred-texts.com/)** - Religion / Mythology / Folklore / Esoterica / [Classic View](https://archive.sacred-texts.com/)
|
||||
* ⭐ **[Libris Adepti](https://librisadepti.com/)** - Esoterica / Occult
|
||||
* ⭐ **[The Exerdex](https://rentry.co/FMHYBase64#echerdex-repository)** - Esoterica / [Subreddit](https://www.reddit.com/r/Echerdex/) / [Discord](https://discord.gg/dS5X3d7ype)
|
||||
* [Theoi](https://www.theoi.com/) - Greek Mythology
|
||||
* [Germanic Mythology](https://www.germanicmythology.com/index.html) - Germanic Mythology
|
||||
* [Inuit Myths](https://www.inuitmyths.com/index.htm) - Inuit Mythology
|
||||
* [Grimoar.cz](http://english.grimoar.cz/?Loc=key&Lng=2), [Occult Rentry](https://rentry.co/FMHYBase64#occult-rentry), [766 Occult Books](https://rentry.co/FMHYBase64#766-occult-books), [Darkbooks](https://darkbooks.org/collection/top250.html) or [Astrum Argenteum](https://www.astrumargenteum.org/library/) - Occult Books
|
||||
* [Messy Occult Library](https://rentry.co/FMHYBase64#messy-occult-library) - Occult / Esoterica / Gnosticism
|
||||
* [Hermetic International](https://www.hermetics.net/) - Religion / Occult / Gnosticism / Hermetic / Philosophy
|
||||
* [Hermetics](https://www.hermetics.org/library.html) - Ancient Texts / Mythology / Occult
|
||||
* [EatTheFruit](https://www.eatthefruit.com/media-library/pdf-library/) - Ancient Texts / Mythology
|
||||
* [Dhamma Talks](https://www.dhammatalks.org/) - Sacred Texts / Religion / Buddhism
|
||||
* [Sutta Central](https://suttacentral.net/) - Sacred Texts / Religion / Buddhism
|
||||
* [Jainism Library of Jain Literature](https://www.atmadharma.com/index.html) - Sacred Texts / Religion
|
||||
* [Awakening-Intuition](https://www.awakening-intuition.com/ebooks.html) - Religion / Esoterica / Occult
|
||||
* [Biblioteca Pleyades](https://www.bibliotecapleyades.net/esp_tema.htm) - Mythology / Conspiracy / Esoterica
|
||||
* [Gnostic Society Library](http://www.gnosis.org/library.html) - Gnosticism
|
||||
* [Logoi Library](https://logoilibrary.com/) - Gnosticism / Hermeticism
|
||||
* [The Library of Consciousness](https://www.organism.earth/library/) - Esoterica
|
||||
* [Humanitys Vault](https://rentry.co/FMHYBase64#humanitys-vault) - Esoterica
|
||||
* [Esoteric Archive](https://esotericarchives.com/) - Esoterica
|
||||
* [Esoterica Drive](https://rentry.co/FMHYBase64#archive) - Esoterica
|
||||
* [magZtore](https://t.me/magZtore) - Esoterica / Telegram
|
||||
* [WonderlandLibraryOfMagicBooks](https://t.me/WonderlandLibraryOfMagicBooks) - Esoterica / Telegram
|
||||
* [Synchroncity1111](https://t.me/synchroncity1111) - Esoterica / Telegram
|
||||
* [SpiritualBooks](https://t.me/spiritualbooks) - Esoterica / Telegram
|
||||
* [Masonic Library](https://masonicshop.com/masonic-library/) - Esoterica / Freemasonry
|
||||
* [Azrk's library](https://rentry.co/FMHYBase64#azrks-library) - Occult / Esoterica / Satanism / Religion
|
||||
* [Rosicrucian Esotericism Lecture](https://rsarchive.org/) - Rosicrucian Esotericism
|
||||
* [Spirituality Megadrive](https://rentry.co/FMHYBase64#spirituality-megadrive)
|
||||
* [IAPSOP](http://iapsop.com/) - Spiritualist / Occult Periodicals
|
||||
* [Dhushara Research](https://www.dhushara.com/index.htm) - Metaphysics / Conspiracies / Psychedelics
|
||||
* [CraftStuff](https://rentry.co/FMHYBase64#craftstuff) - Witchcraft
|
||||
* [Witchcraft Library](https://rentry.co/FMHYBase64#witchcraft-library) - Witchcraft / Paganism
|
||||
* [Public Witchcraft Library](https://rentry.co/FMHYBase64#public-witchcraft-library) - Witchcraft / Paganism / Satanism
|
||||
* [Alchemy Drive](https://rentry.co/FMHYBase64#alchemy-drive) - Alchemy
|
||||
* [LeftHandPath](https://rentry.co/FMHYBase64#lefthandpath) - Luciferianism
|
||||
* [The Theosophical Society](https://www.theosociety.org/) or [Theosophy World](https://www.theosophy.world/portfolio/term/ebooks) - Theosophy
|
||||
* [Shankaracharya](https://www.shankaracharya.org/) - Hinduism
|
||||
* [Vedanta Shastras](https://www.shastras.com/) - Hinduism
|
||||
* [Encyclopedia Of Hinduism](https://archive.org/details/ConstanceA.JonesJamesD.RyanEncyclopediaOfHinduism/) - Hinduism Encyclopedia
|
||||
* [BhagavadGitaApp](https://github.com/WirelessAlien/BhagavadGitaApp) - Bhagavad Gita App
|
||||
* [Vedabase](https://vedabase.io/en/) - Bhaktivedanta Swami / Books / Transcripts / Letters
|
||||
* [84000](https://84000.co/) - Buddhism
|
||||
* [Encyclopedia Of Buddhism](https://archive.org/details/EdwardA.IronsEncyclopediaOfBuddhismEncyclopediaOfWorldReligions/) - Buddhist Encyclopedia
|
||||
* [Buddhism Dictionary](http://www.buddhism-dict.net/ddb/) - Buddhist Dictionary
|
||||
* [Early Christian Writings](https://www.earlychristianwritings.com/index.html) - Christianity / Gnosticism
|
||||
* [HolyBooks](https://holybooks.com/) - Religious Texts
|
||||
* [The Dead Sea Scrolls](https://www.deadseascrolls.org.il/) - Dead Sea Scrolls Archive
|
||||
* [DigiVatLib](https://digi.vatlib.it/) - Digital Vatican Library
|
||||
* [BibleGateway](https://www.biblegateway.com/), [Armorer](https://armorer.io/) or [Bible.com](https://www.bible.com/) - Christian Bible
|
||||
* [eSword](https://e-sword.net/) - Christian Bible Desktop App
|
||||
* [Classics Ethereal Library](https://www.ccel.org/) - Christianity
|
||||
* [Hidden Bible](http://www.hiddenbible.com/enoch/online.html) - Enoch Translation
|
||||
* [Quran.com](https://quran.com/) or [AbcQuran](https://github.com/jomtek/AbcQuran) - Quran Translations / [Mobile](https://github.com/quran/quran_android)
|
||||
* [Awesome Islam](https://github.com/AhmedKamal/awesome-Islam) - Islam Related Projects / Apps
|
||||
* [OpenMaktaba](https://openmaktaba.com/) - Islamic Books
|
||||
* [TheIslam360](https://theislam360.com/) - Islamic Research App
|
||||
* [Halakhah](https://www.halakhah.com/) - Talmud Translation
|
||||
* [Targum](http://targum.info/targumic-texts/) - Targum Translation
|
||||
* [Sefaria](https://www.sefaria.org/) - Jewish Texts Translations
|
||||
* [Muslim Scholars](https://muslimscholars.info/) - Muslim Scholar Database
|
||||
* [2Muslims](https://www.2muslims.com/) - Muslim Resources
|
||||
* [Five Prayers](https://github.com/Five-Prayers/five-prayers-android) - Muslim Tools App
|
||||
* [Sunnah.com](https://sunnah.com/) - Hadith Translation
|
||||
|
||||
***
|
||||
|
||||
# ► Audiobooks
|
||||
|
||||
## ▷ Downloading
|
||||
|
@ -375,7 +446,7 @@
|
|||
## ▷ Comics
|
||||
|
||||
* ⭐ **[ReadComicsOnline](https://readcomiconline.li/)**
|
||||
* ⭐ **[BatCave](https://batcave.biz/)** / US IP or VPN Required
|
||||
* ⭐ **[BatCave](https://batcave.biz/)**
|
||||
* ⭐ **[GetComics](https://getcomics.org/)** - Download Comics
|
||||
* ⭐ **[ComicBookPlus](https://comicbookplus.com/)** - Golden Age Comics
|
||||
* ⭐ **[Explosm](https://explosm.net/rcg)** - Cyanide & Happiness Webcomics
|
||||
|
@ -414,7 +485,6 @@
|
|||
* 🌐 **[Rawmangaz](https://rentry.co/rawmangaz)** - List of Raw Manga Sites
|
||||
* ↪️ **[Manga Readers / Managers](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_manga_readers)**
|
||||
* ↪️ **[Manga Downloaders](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_manga_downloaders)**
|
||||
* ⭐ **[ComicK](https://comick.io/)** / [Subreddit](https://reddit.com/r/ComicK/) / [Discord](https://discord.gg/comick)
|
||||
* ⭐ **[MangaDex](https://mangadex.org/)** / [Downloader](https://mangadex-dl.mansuf.link/) / [Script](https://github.com/frozenpandaman/mangadex-dl) / [Subreddit](https://www.reddit.com/r/mangadex/) / [Discord](https://discord.gg/mangadex)
|
||||
* ⭐ **[Weeb Central](https://weebcentral.com/)**
|
||||
* ⭐ **[BATO.TO](https://bato.to/)**, [2](https://fto.to/) / [Proxies](https://rentry.co/batoto) / [Discord](https://discord.com/invite/batoto)
|
||||
|
@ -424,7 +494,6 @@
|
|||
* [MangaKatana](https://mangakatana.com/)
|
||||
* [MangaFire](https://mangafire.to/) / [Subreddit](https://www.reddit.com/r/Mangafire/) / [Discord](https://discord.com/invite/KRQQKzQ6CS)
|
||||
* [The Manga Library](https://rentry.co/FMHYBase64#the-manga-library)
|
||||
* [MangaReader](https://mangareader.to/) / [Subreddit](https://www.reddit.com/r/MangaReaderOfficial/) / [Discord](https://discord.com/invite/Bvc5mVcUqE)
|
||||
* [MangaHub](https://mangahub.io/)
|
||||
* [MangaNato](https://www.manganato.gg/), [2](https://www.nelomanga.net/), [3](https://www.mangakakalot.gg), [4](https://www.natomanga.com/) / [Discord](https://discord.gg/Qhz84GGvE9)
|
||||
* [Cubari Proxy](https://proxy.cubari.moe/) - Multi Site Web Client / [Discord](https://discord.com/invite/SavdUC45MS)
|
||||
|
@ -438,14 +507,14 @@
|
|||
* [MangaHere](https://www.mangahere.cc/) or [MangaFox](https://fanfox.net/)
|
||||
* [MangaBuddy](https://mangabuddy.com), [MangaForest](https://mangaforest.me/) or [MangaMirror](https://mangamirror.com/)
|
||||
* [Webtoon](https://www.webtoons.com/) / [Discord](https://discord.com/invite/webtoonofficial)
|
||||
* [MangaBerri](https://mangaberri.com/) - Use Adblock
|
||||
* [MangaBerri](https://mangaberri.com/) - Use [Adblock](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/adblock-vpn-privacy/#wiki_.25BA_adblocking)
|
||||
* [Toonily](https://toonily.com/) - Manhwa
|
||||
* [ManhwaClan](https://manhwaclan.com/) - Manhwa
|
||||
* [MediaBang](https://medibang.com/mpc/) or [NamiComi](https://namicomi.com/en) - User-Created Manga
|
||||
* [MP4DIRECTS](https://mp4directs.com/) - Manga / Light Novels Download Forum
|
||||
* [MangaUpdates](https://www.mangaupdates.com/) - Manga Database / Releases Updates
|
||||
* [Manga CSE](https://cse.google.com/cse?cx=006516753008110874046:4im0fkhej3z) / [CSE 2](https://cse.google.com/cse?cx=006516753008110874046:a5mavctjnsc#gsc.tab=0) - Multi-Site Manga Search
|
||||
* [Seanime](https://seanime.rahim.app/) - Self-Hosted Manga App
|
||||
* [Seanime](https://seanime.app/) - Self-Hosted Manga App
|
||||
* [Kaizoku](https://github.com/lucy-goblin/kaizoku-next) - Self-Hosted Manga Downloader
|
||||
* [Webcomic Reader](https://openuserjs.org/scripts/anka-213/Webcomic_Reader) - Preloads Images, Remembers Progress and Keyboard Support
|
||||
* [BallonsTranslator](https://github.com/dmMaze/BallonsTranslator/blob/master/README_EN.md), [Cotrans](https://cotrans.touhou.ai/) or [Scanlate](https://scanlate.io/) - Manga Translators
|
||||
|
@ -454,55 +523,6 @@
|
|||
|
||||
***
|
||||
|
||||
## ▷ Light Novels
|
||||
|
||||
* 🌐 **[Wotaku](https://wotaku.wiki/websites#novels)** - Light Novel Index / [Discord](https://discord.gg/vShRGx8ZBC)
|
||||
* 🌐 **[EverythingMoe](https://everythingmoe.com/#section-novel)**, [2](https://everythingmoe.org/#section-novel) - Light Novel Sites Index / [Subreddit](https://www.reddit.com/r/everythingmoe/) / [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/)**
|
||||
* ⭐ **[NovelFire](https://novelfire.net/)**
|
||||
* [Visual Novels Android](https://t.me/visual_novels_android_eng) - Android Visual Novel Ports
|
||||
* [Just Light Novels](https://www.justlightnovels.com/) / Allows Downloads
|
||||
* [LightNovelHeaven](https://lightnovelheaven.com), [AllNovel](https://allnovel.org), [NovelFull](https://novelfull.com/) or [NOVGO](https://novgo.net/)
|
||||
* [Vynovel](https://vynovel.com/)
|
||||
* [Ranobes](https://ranobes.top/)
|
||||
* [Light Novel World](https://lightnovelworld.org/)
|
||||
* [Baka-Tsuki](https://www.baka-tsuki.org)
|
||||
* [Armaell's Library](https://armaell-library.net/) / Allows Downloads
|
||||
* [WuxiaWorld](https://www.wuxiaworld.com/)
|
||||
* [WTR-LAB](https://wtr-lab.com/) / Sign-Up Required for AI Translations
|
||||
* [WuxiaSpot](https://www.wuxiaspot.com/)
|
||||
* [WebNovel.com](https://www.webnovel.com/)
|
||||
* [AsianHobbyist](https://www.asianhobbyist.com/)
|
||||
* [Wordrain69](https://wordrain69.com/)
|
||||
* [Wuxia World](https://wuxiaworld.site/)
|
||||
* [Wuxiabox](https://www.wuxiabox.com/)
|
||||
* [NovelGo](https://novelgo.id)
|
||||
* [Wuxia.click](https://wuxia.click/)
|
||||
* [Ocean of EPUB](https://oceanofepub.net/) / Allows Downloads
|
||||
* [Novel Bin](https://novelbin.com/), [2](https://novelbin.me/)
|
||||
* [ReadNovelFull](https://readnovelfull.com)
|
||||
* [FreeWebNovel](https://freewebnovel.com/)
|
||||
* [Translated Light Novels](https://rentry.co/FMHYBase64#translated-light-novels) / Allows Downloads
|
||||
* [NovelNext](https://novelnext.com/)
|
||||
* [NovelBuddy](https://novelbuddy.io/), [2](https://novelbuddy.com/)
|
||||
* [Wuxia Box](https://www.wuxiabox.com/)
|
||||
* [NovelCool](https://www.novelcool.com/)
|
||||
* [Novels.pl](https://www.novels.pl/) / Allows Downloads
|
||||
* [Scribblehub](https://www.scribblehub.com/)
|
||||
* [Novel Hall](https://www.novelhall.com/)
|
||||
* [Rekt Novel Compilations](https://rektnovelcompilations.wordpress.com/)
|
||||
* [WoopRead](https://woopread.com/)
|
||||
* [Royal Road](https://www.royalroad.com/) - Web Novels
|
||||
* [Light Novel Archive](https://t.me/LightNovelArchives) or [LN_Index](https://t.me/LN_Index) - Telegram
|
||||
* [Book Smelting Bot](https://t.me/epub_smelter_bot) - Telegram / Bot
|
||||
* [Baka-Tsuki](https://www.baka-tsuki.org/project/?title=Main_Page) - Novels / Audio Recordings
|
||||
* [LN-Crawler-Colab](https://colab.research.google.com/github/HongYue1/LightNovel-Crawler-Colab/blob/main/lightnovel_crawler.ipynb) / [GitHub](https://github.com/HongYue1/LightNovel-Crawler-Colab), [Lightnovel Crawler](https://github.com/dipu-bd/lightnovel-crawler/), [novel-downloader](https://greasyfork.org/en/scripts/406070), [QuickNovel](https://github.com/LagradOst/QuickNovel) or [anime-dl](https://github.com/vrienstudios/anime-dl) - Light Novel Downloaders
|
||||
* [WebToEpub](https://github.com/dteviot/WebToEpub) - Novel to EPUB Converter
|
||||
* [LNMTL](https://lnmtl.com/) or [Omni](https://app.readomni.com/) - Light Novel Translators
|
||||
|
||||
***
|
||||
|
||||
## ▷ Magazines
|
||||
|
||||
* ⭐ **[Mobilism Magazines](https://forum.mobilism.org/viewforum.php?f=123)** - Multi-Host / [User Ranks](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#mobilism-ranks)
|
||||
|
@ -537,42 +557,16 @@
|
|||
|
||||
***
|
||||
|
||||
## ▷ Newspapers
|
||||
|
||||
* 🌐 **[Veridian](https://veridiansoftware.com/collections/)** - Newspaper Archive List
|
||||
* ↪️ **[Bypass Newspaper Paywalls](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/internet-tools#wiki_.25B7_paywall_bypass)**
|
||||
* ↪️ **[Worldwide News Sites](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/misc#wiki_.25BA_news)**
|
||||
* ⭐ **[Mobilism Newspapers](https://forum.mobilism.org/viewforum.php?f=123)** / [User Ranks](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#mobilism-ranks)
|
||||
* ⭐ **[Google Newspaper Search](https://news.google.com/newspapers)**
|
||||
* [SoftArchive](https://softarchive.download/newspapers)
|
||||
* [Meta-Press](https://www.meta-press.es/) - Newspaper Search
|
||||
* [EngNewspapers](https://vk.com/engnewspapers) - Telegram
|
||||
* [newspaper_archive](https://t.me/newspaper_archive) - Telegram
|
||||
* [Chronicling America](https://chroniclingamerica.loc.gov/newspapers/)
|
||||
* [Kiosko](https://en.kiosko.net/)
|
||||
* [FultonHistory](https://fultonhistory.com/Fulton.html)
|
||||
* [Loc.gov Newspapers](https://www.loc.gov/newspapers/)
|
||||
* [Newspapers](https://newspapers.com/)
|
||||
* [ThoughtCo](https://www.thoughtco.com/us-historical-newspapers-online-by-state-1422215)
|
||||
* [Library of Congress Newspapers](https://guides.loc.gov/foreign-newspapers/digital-resources)
|
||||
* [Archive.org Newspapers](https://rentry.co/FMHYBase64#archiveorg-newspapers)
|
||||
* [World-Newspapers](https://world-newspapers.com/), [NewsPaperIndex](https://www.newspaperindex.com/) or [Paperboy](https://www.thepaperboy.com/) - Online Newspaper Indexes
|
||||
* [LA Times](https://latimes.newspapers.com/)
|
||||
* [Front Pages](https://www.frontpages.com/) - Newspaper Front Pages
|
||||
* [Europeana Newspapers](https://www.europeana.eu/en/collections/topic/18-newspapers) - European Historical Newspapers
|
||||
* [Newspaper Map](https://newspapermap.com/) - Find / Translate Worldwide Newspapers
|
||||
|
||||
***
|
||||
|
||||
# ► Educational Books
|
||||
|
||||
* 🌐 **[IvyPanda](https://ivypanda.com/blog/1000-open-textbooks-and-learning-resources-for-all-subjects/)** - Educational Book Site Index
|
||||
* ↪️ **[Language Learning Resources](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/edu/#wiki_.25BA_language_learning)**
|
||||
* ↪️ **[Dictionaries / Thesaurus'](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/edu#wiki_.25B7_dictionaries_.2F_thesaurus)**
|
||||
* ↪️ **[Encyclopedias](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/edu#wiki_.25B7_encyclopedias)**
|
||||
* ⭐ **[Openstax](https://openstax.org/)** or [OpenStax College Textbooks](https://philschatz.com/books/)
|
||||
* ⭐ **[AcademicTorrents](https://academictorrents.com/)**
|
||||
* [Institutional Access](https://www.facebook.com/groups/850609558335839) - Request Institutional Access PDFs
|
||||
* [Library Drive](https://rentry.co/FMHYBase64#library-drive)
|
||||
* [opendir](https://rentry.co/FMHYBase64#opendir)
|
||||
* [Online Books Page](https://onlinebooks.library.upenn.edu/)
|
||||
* [The Literature Network](https://www.online-literature.com/)
|
||||
* [Memory of the World](https://www.memoryoftheworld.org/)
|
||||
|
@ -620,6 +614,7 @@
|
|||
* [EveryCulture](https://www.everyculture.com/index.html) - World Culture Encyclopedia
|
||||
* [Japanese Wiki Corpus](https://www.japanesewiki.com/) - Japanese Culture / History Encyclopedia
|
||||
* [Encyclopaedia Iranica](https://www.iranicaonline.org/) - Iranian Culture Encyclopedia
|
||||
* [Technical Library](https://t.me/+Tz4VCcFAMVJGzd8z) - Trading / Stocks
|
||||
* [MedicalStudyZone](https://medicalstudyzone.com/) - Medical
|
||||
* [VetBooks](https://vetbooks.ir/) - Veterinary
|
||||
* [Brill](https://brill.com/) - International Law Books / Free for Students Only
|
||||
|
@ -685,6 +680,27 @@
|
|||
|
||||
***
|
||||
|
||||
## ▷ Quotes / Poetry
|
||||
|
||||
* ⭐ **[Wikiquote](https://en.wikiquote.org)**
|
||||
* ⭐ **[Poetry Foundation](https://www.poetryfoundation.org/)**
|
||||
* [BrainyQuote](https://www.brainyquote.com/)
|
||||
* [AZQuotes](https://www.azquotes.com/)
|
||||
* [QuoteGarden](https://www.quotegarden.com/)
|
||||
* [QuoteMaster](https://www.quotemaster.org/)
|
||||
* [TheOtherPages](https://theotherpages.org/quote.html)
|
||||
* [Quote Collections](https://rentry.co/zeoemsh9)
|
||||
* [Poetry In Translation](https://www.poetryintranslation.com/)
|
||||
* [PoemHunter](https://www.poemhunter.com/)
|
||||
* [DiscoverPoetry](https://discoverpoetry.com/)
|
||||
* [RUVerses](https://ruverses.com/)
|
||||
* [Poetry.com](https://www.poetry.com/)
|
||||
* [Poets.org](https://poets.org/)
|
||||
* [PoetryArchive](https://poetryarchive.org/)
|
||||
* [ScottishPoetryLibrary](https://www.scottishpoetrylibrary.org.uk/)
|
||||
|
||||
***
|
||||
|
||||
## ▷ Programming Books
|
||||
|
||||
* 🌐 **[Free-Programming-Books](https://github.com/EbookFoundation/free-programming-books)** - Programming Book Index
|
||||
|
@ -749,6 +765,7 @@
|
|||
* [Zenodo](https://zenodo.org/) - Research Papers
|
||||
* [re3data](https://www.re3data.org/) - Research Data
|
||||
* [Retraction Watch](https://retractionwatch.com/) - Retracted Research Papers
|
||||
* [HAL](https://hal.science/) - Scientific Paper Search
|
||||
* [Science.gov](https://www.science.gov/) - Scientific Paper Search
|
||||
* [Awesome Detection Transformer](https://github.com/IDEA-Research/awesome-detection-transformer) - Computer Vision Research Papers
|
||||
* [IDEAS](https://ideas.repec.org/) or [RePEc](http://repec.org/) - Economic Research Papers
|
||||
|
@ -855,10 +872,6 @@
|
|||
|
||||
***
|
||||
|
||||
## ▷ [Reference Sites](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/edu#wiki_.25B7_reference_sites)
|
||||
|
||||
***
|
||||
|
||||
# ► Tracking / Database
|
||||
|
||||
* ⭐ **[GoodReads](https://www.goodreads.com/)** - Ratings / Tracking / Reviews / Recommendations / [Ratings Filter](https://www.book-filter.com/) / [Frontend](https://github.com/nesaku/BiblioReads)
|
||||
|
@ -874,7 +887,7 @@
|
|||
* [Oku](https://oku.club/) - Book Tracking Platform
|
||||
* [Literal](https://literal.club/) - Social Book Tracking Platform
|
||||
* [BookWyrm](https://joinbookwyrm.com/) - Book Tracking Platform / [Official Instance](https://bookwyrm.social/)
|
||||
* [MangaBaka](https://mangabaka.dev/) - Multi-Site Manga / Novel Database / [Discord](https://discord.com/invite/XYtPtMkbKs)
|
||||
* [MangaBaka](https://mangabaka.dev/) - Multi-Site Manga / Novel Database / [Discord](https://mangabaka.dev/discord)
|
||||
* [MangaUpdates](https://www.mangaupdates.com/) - Manga Tracking
|
||||
* [Hardcover](https://hardcover.app/) - Tracking / Reviews / Recommendations
|
||||
* [LibraryThing](https://www.librarything.com/) - Book Cataloguing Community
|
||||
|
@ -891,7 +904,7 @@
|
|||
* ⭐ **[Five Books](https://fivebooks.com/)** - Expert Recommended Books
|
||||
* ⭐ **[TasteDive](https://tastedive.com/books)** - Discovery and Recommendations
|
||||
* ⭐ **[MangaUpdates](https://www.mangaupdates.com/)** - Manga Database / Releases Updates
|
||||
* [Rec Charts](https://pastebin.com/ayuqSpGR) - Books / Comics / Manga Recommendation Guides
|
||||
* [Charts and Culture](https://pastebin.com/uRDJVGkL) - Books / Comics / Manga Recommendation Directory
|
||||
* [r/ifyoulikeblank](https://www.reddit.com/r/ifyoulikeblank/) - Personalized Recommendation Subreddit
|
||||
* [BookHype](https://bookhype.com/) - Book Discovery / Recommendations
|
||||
* [Reddit Reads](https://www.redditreads.com/) - Most Popular Books from Subreddits
|
|
@ -26,7 +26,7 @@
|
|||
|
||||
# ► Discord Tools
|
||||
|
||||
* **Warning** - Misuse of chat archivers, mass-deleters, mods or third-party clients is against Discord's terms of service, so use at your own risk.
|
||||
* **Warning** - Chat archivers, mass-deleters, mods and third-party clients are against Discord's terms of service. Misusing them can lead to account terminations, so use them at your own risk.
|
||||
|
||||
***
|
||||
|
||||
|
@ -34,7 +34,7 @@
|
|||
* ⭐ **[embedez](https://embedez.com/)** - Social Link Embedder / [X](https://twitter.com/embedez) / [Discord](https://discord.gg/FmW9c8gtCp)
|
||||
* ⭐ **[Disblock Origin](https://codeberg.org/AllPurposeMat/Disblock-Origin)** or [Discord Adblock](https://github.com/CroissantDuNord/discord-adblock) - Hide Nitro / Boost Ads
|
||||
* ⭐ **[Revolt](https://revolt.chat/)** / [Bots](https://rvlt.gg/discover/bots) / [Resources](https://github.com/revoltchat/awesome-revolt) or [Guilded](https://www.guilded.gg/) - Discord Alternatives
|
||||
* ⭐ **[OpenAsar](https://openasar.dev/)** - Improved Discord Desktop's Asar / [Discord](https://discord.gg/YDMptE8u2b) / [GitHub](https://github.com/GooseMod/OpenAsar) / [Note](https://pastebin.com/PpFhqiMb)
|
||||
* ⭐ **[OpenAsar](https://openasar.dev/)** - Better Performance with Improved `app.asar` / [Note](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#openasar) / [Discord](https://discord.gg/YDMptE8u2b) / [GitHub](https://github.com/GooseMod/OpenAsar)
|
||||
* [Nelly](https://nelly.tools/) - Discord Web Tools
|
||||
* [AnswersOverflow](https://www.answeroverflow.com/) - Discord Search Engine
|
||||
* [Disbox](https://disboxapp.github.io/web/) - Discord Cloud Storage
|
||||
|
@ -196,10 +196,9 @@
|
|||
## ▷ Reddit Alternatives
|
||||
|
||||
* ↪️ **[Lemmy Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/social-media#wiki_.25B7_lemmy_tools)**
|
||||
* ⭐ **[Raddle](https://raddle.me/)** - Minimalist / Privacy-Focused
|
||||
* ⭐ **[Saidit](https://saidit.net/)** - Free-Speech / Dual Upvote System
|
||||
* [Raddle](https://raddle.me/) - Minimalist / Privacy-Focused
|
||||
* [Saidit](https://saidit.net/) - Free-Speech / Dual Upvote System
|
||||
* [r/RedditAlternatives](https://reddit.com/r/RedditAlternatives) - Find Reddit Alternatives
|
||||
* [TheMotte](https://www.themotte.org/) - User-Driven Discussion
|
||||
* [Tildes](https://tildes.net/) - Non-Profit / User-Driven Discussion
|
||||
* [Scored](https://communities.win/) - User-Driven Discussion
|
||||
* [Ramble](https://ramble.pw/) - Privacy-Focused
|
||||
|
@ -210,9 +209,8 @@
|
|||
## ▷ Reddit Search
|
||||
|
||||
* ⭐ **[TheGigaBrain](https://thegigabrain.com/)** - Reddit Search Engines
|
||||
* ⭐ **[Reddit Repost Sleuth](https://www.repostsleuth.com/)** - Reverse Post / Image Search
|
||||
* [Reveddit](https://www.reveddit.com/) or [Reddit Uncensored](https://github.com/Fubs/reddit-uncensored) - View Deleted Reddit Posts / Comments
|
||||
* [New PullPush](https://ihsoyct.github.io/), [Samac](https://samac.io/) or [Better Reddit Search](https://betterredditsearch.web.app/) - Advanced Reddit Search
|
||||
* [New PullPush](https://ihsoyct.github.io/) or [Better Reddit Search](https://betterredditsearch.web.app/) - Advanced Reddit Search
|
||||
* [Redditle](https://redditle.com/) - Reddit-Only Google Search
|
||||
* [Arctic Shift](https://arctic-shift.photon-reddit.com/) - Reddit Archive Dump Search / [GitHub](https://github.com/ArthurHeitmann/arctic_shift)
|
||||
* [Reddit Dump Files](https://academictorrents.com/browse.php?search=stuck_in_the_matrix%2C+Watchful1%2C+RaiderBDev&sort_field=added&sort_dir=DESC) - Reddit Comment Archives
|
||||
|
@ -251,7 +249,6 @@
|
|||
* [TheFeedReaderBot](https://thefeedreaderbot.com/) - RSS Reader
|
||||
* [tg-channel-cloner-workers](https://gitlab.com/ParveenBhadooOfficial/tg-channel-cloner-workers) - Clone Telegram Channels
|
||||
* [tasra](https://the-eye.eu/tasra/) - Telegram Channel Archive
|
||||
* [Telegram Email](https://t.me/etlgr_bot) - Email Alias Telegram Bot
|
||||
* [CHPic](https://chpic.su/), [Stickers Cloud](https://stickers.cloud/en), [ComBot Stickers](https://combot.org/telegram/stickers) or [moe_sticker_bot](https://t.me/moe_sticker_bot) - Telegram Sticker / Emojis
|
||||
|
||||
***
|
||||
|
@ -261,12 +258,9 @@
|
|||
* ⭐ **[AyuGram](https://docs.ayugram.one/downloads/)** - Desktop Client / [Chat](https://t.me/ayugramchat) / [Telegram](https://t.me/ayugram) / [GitHub](https://github.com/AyuGram/AyuGramDesktop)
|
||||
* ⭐ **[Materialgram](https://kukuruzka165.github.io/materialgram/)** - Desktop Client / Portable
|
||||
* ⭐ **[Unigram](https://github.com/UnigramDev/Unigram)** - Desktop Client
|
||||
* ⭐ **[Telegram WebK](https://webk.telegram.org/)** / [Telegram WebA](https://weba.telegram.org/) - Web Apps
|
||||
* [TDesktop](https://github.com/Forkgram/tdesktop) - Desktop Client
|
||||
* [TDesktop x64](https://github.com/TDesktop-x64/tdesktop) - Desktop Client / [Telegram](https://t.me/tg_x64)
|
||||
* [Forkgram](https://github.com/Forkgram/tdesktop) - Desktop Client
|
||||
* [64Gram](https://github.com/TDesktop-x64/tdesktop) - Desktop Client / [Telegram](https://t.me/tg_x64)
|
||||
* [VideoGram](https://vidogram.org/) - Desktop Client
|
||||
* [Pyrogram](https://docs.pyrogram.org/) - Telegram API Client
|
||||
* [Telega.el](https://github.com/zevlg/telega.el) - Telegram Emacs Client
|
||||
* [VanillaTG](https://t.me/VanillaTG) - Client Themes
|
||||
|
||||
***
|
||||
|
@ -274,6 +268,7 @@
|
|||
## ▷ Telegram File Tools
|
||||
|
||||
* ⭐ **[Teldrive](https://teldrive-docs.pages.dev/)** - File Manager / Uploader / [Discord](https://discord.com/invite/8QAeCvTK7G) / [GitHub](https://github.com/tgdrive/teldrive)
|
||||
* [tdl](https://docs.iyear.me/tdl/) - File Download / Upload Tool / [GitHub](https://github.com/iyear/tdl)
|
||||
* [File-Sharing-Bot](https://github.com/CodeXBotz/File-Sharing-Bot) / [Telegram](https://t.me/CodeXBotz), [TelegramCloud](https://github.com/iw4p/telegram-cloud), [easy_share_bot](https://t.me/easy_share_bot) or [UploadBot](https://t.me/uploadbot) - Upload Files to Telegram
|
||||
* [MediaDownBot](https://t.me/mediadownbot), [WZML-X](https://github.com/SilentDemonSD/WZML-X), [Telegram Media Downloader](https://greasyfork.org/en/scripts/446342), [TopSaverBot](https://t.me/TopSaverBot), [CatdlBot](https://t.me/CatdlBot) or [DownloadsMasterBot](https://t.me/DownloadsMasterBot) - Media Downloaders
|
||||
* [Musvkrobot](https://t.me/musvkrobot) - Video Downloader
|
||||
|
@ -313,6 +308,7 @@
|
|||
* [Youtube-shorts block](https://github.com/doma-itachi/Youtube-shorts-block) or [Shorts Deflector](https://evenevan.github.io/shorts-deflector/) / [GitHub](https://github.com/evenevan/shorts-deflector) - Play Shorts In The Normal Desktop Interface
|
||||
* [Remove YouTube Shorts](https://addons.mozilla.org/en-US/firefox/addon/remove-youtube-shorts/) or [Hide YT Shorts Filter List](https://github.com/gijsdev/ublock-hide-yt-shorts) - Hide YouTube Shorts
|
||||
* [YouTube Wrapped](https://videorecap.viewodyssey.com/) - Personal YouTube Rewind
|
||||
* [LocalTube Manager](https://localtubemanager.pages.dev/) - Subscribe, Like Videos, Make Playlists without Account / [GitHub](https://github.com/abhishekY495/localtube-manager)
|
||||
* [YouTube-Subscriptions-RSS](https://github.com/jeb5/YouTube-Subscriptions-RSS) - Export Subscriptions to RSS Feed
|
||||
* [YouTube Subscription History](https://xxluke.de/subscription-history/) - Subscription History Tracker
|
||||
* [MassYoutubeUnsubscriber](https://github.com/DomHeadroom/MassYoutubeUnsubscriber) - Bulk Remove YouTube Subscriptions
|
||||
|
@ -384,7 +380,7 @@
|
|||
* [YouTube Upload Time](https://chromewebstore.google.com/detail/youtube-upload-time/nenoecmaibjcahoahnmeinahlapheblg) - Check Exact Upload Time/Date of Videos
|
||||
* [Annotations Data Archive](https://archive.org/details/youtubeannotations) - Restore Video Annotations
|
||||
* [YouTube Metadata](https://mattw.io/youtube-metadata/) - YouTube Video Metadata Viewer
|
||||
* [YT Cutter](https://ytcutter.link/) or [yt_clipper](https://github.com/exwm/yt_clipper) - Crop YouTube Videos / Create Clips
|
||||
* [yt_clipper](https://github.com/exwm/yt_clipper) - Crop YouTube Videos / Create Clips
|
||||
* [Looptube](https://www.looptube.xyz/) - Loop YouTube Videos / Segments
|
||||
* [YourCodecs](https://github.com/undecV/YourCodecs) - Enable / Disable Player Codecs
|
||||
* [Video Speed Controller](https://github.com/igrigorik/videospeed) - Control Speed of YouTube Videos
|
||||
|
@ -447,7 +443,7 @@
|
|||
|
||||
## ▷ YouTube Archiving
|
||||
|
||||
* ⭐ **[YouTube Video Finder](https://findyoutubevideo.thetechrobo.ca/)** - Multi-Site Archive Search / [GitHub](https://github.com/TheTechRobo/youtubevideofinder/)
|
||||
* ⭐ **[YouTube Video Finder](https://findyoutubevideo.thetechrobo.ca/)** - Multi-Site Archive Search / Try Refreshing or Re-searching / [GitHub](https://github.com/TheTechRobo/youtubevideofinder/)
|
||||
* [Tubeup](https://github.com/bibanon/tubeup) - YouTube Video to IA Uploader
|
||||
* [Tube Archivist](https://www.tubearchivist.com/) - Self-Hosted YouTube Media Server / [GitHub](https://github.com/tubearchivist/tubearchivist)
|
||||
* [yark](https://github.com/Owez/yark) - YouTube Channel Archiver
|
||||
|
@ -522,7 +518,7 @@
|
|||
## ▷ Twitch Downloaders
|
||||
|
||||
* [ClipsGameLab](https://clipsgamelab.github.io/#/download), [Twiclips](https://twiclips.com/) or [clipsey](https://clipsey.com/) - Video Downloaders
|
||||
* [twitch-dl](https://github.com/ihabunek/twitch-dl), [twitch-downloader](https://github.com/jybp/twitch-downloader) - CLI Video Downloaders
|
||||
* [twitch-dl](https://github.com/ihabunek/twitch-dl) or [twitch-downloader](https://github.com/jybp/twitch-downloader) - CLI Video Downloaders
|
||||
* [Twitch Downloader](https://github.com/lay295/TwitchDownloader) or [TwitchLink](https://twitchlink.github.io/) - Desktop Video Downloaders
|
||||
* [TwitchRecover](https://github.com/TwitchRecover/TwitchRecover) - Recover / View / Download Twitch Videos
|
||||
* [Twitch-Chat-Downloader](https://github.com/PetterKraabol/Twitch-Chat-Downloader) - Download Twitch Chat Messages
|
||||
|
@ -534,13 +530,12 @@
|
|||
* ⭐ **[Trends24](https://trends24.in/)** or [GetDayTrends](https://getdaytrends.com/) - Trending Hashtags Trackers
|
||||
* ⭐ **[r/Twitter](https://reddit.com/r/Twitter)** - X.com Subreddit
|
||||
* [Typefully](https://typefully.com/) - Schedule Tweets
|
||||
* [twstalker](https://twstalker.com/), [X Cancelled](https://xcancel.com/) or [nitter](https://nitter.net/), [2](https://nitter.poast.org/) / [Instances](https://status.d420.de/), [2](https://github.com/zedeus/nitter/wiki/Instances) - X.com Frontends
|
||||
* [twstalker](https://twstalker.com/), [X Cancelled](https://xcancel.com/), [sotwe](https://www.sotwe.com/) or [nitter](https://nitter.net/), [2](https://nitter.poast.org/) / [Instances](https://status.d420.de/), [2](https://github.com/zedeus/nitter/wiki/Instances) - X.com Frontends
|
||||
* [Chirr App](https://getchirrapp.com/) - Turn Articles into X.com Threads / [Firefox](https://addons.mozilla.org/en-US/firefox/addon/chirr-app/) / [Chrome](https://chromewebstore.google.com/detail/chirr-app/cmbconaimdngicdnbpjnjocbpkdpmfkg)
|
||||
* [Klear](https://klear.com/free-tools/find-twitter-influencers) - Find Influencers
|
||||
* [FollowerWonk](https://followerwonk.com/) - Find / Analyze / Optimize Followers
|
||||
* [Community Notes Leaderboard](https://community-notes-leaderboard.com/) - X.com Community Notes Leaderboard
|
||||
* [Hoaxy](https://hoaxy.osome.iu.edu/) - Twitter Info Spread Data
|
||||
* [tinfoleak](https://tinfoleak.com/) - View Your Geosocial Footprint
|
||||
* [Osomenet](https://osome.iu.edu/tools/osomenet/) - Twitter Info Spread Data
|
||||
* [Twitter Mass Unfollow](https://github.com/luqmanoop/twitter-mass-unfollow) - X.com Unfollow Tool
|
||||
* [Twitter Detector](https://github.com/stilliard/Twitter-detector) - Detect X.com Link on a Page
|
||||
|
||||
|
@ -562,7 +557,6 @@
|
|||
|
||||
## ▷ Twitter/X Customization
|
||||
|
||||
* ⭐ **[Eight Dollars](https://github.com/wseagar/eight-dollars)** - Show Twitter Blue vs. Real Verified Users
|
||||
* [Control Panel for Twitter](https://soitis.dev/control-panel-for-twitter) - Twitter Enhancement Extensions
|
||||
* [Minimal Twitter](https://typefully.com/minimal-twitter) - Minimal Twitter Themes
|
||||
* [OldTwitter](https://github.com/dimdenGD/OldTwitter) or [GoodTwitter2](https://github.com/Bl4Cc4t/GoodTwitter2) - Original Twitter Theme
|
||||
|
@ -593,7 +587,6 @@
|
|||
|
||||
# ► Instagram Tools
|
||||
|
||||
* ⭐ **[Redirect Logins](https://greasyfork.org/en/scripts/420604)** - Redirect Instagram Login
|
||||
* [InstaFix](https://ddinstagram.com/) - Fix Instagram Embeds on Discord / [GitHub](https://github.com/Wikidepia/InstaFix)
|
||||
* [Proxigram](https://codeberg.org/proxigram/proxigram) or [Imginn](https://imginn.com) - Instagram Frontends
|
||||
* [otzberg](https://www.otzberg.net/iguserid/index.php) or [Find-User-ID](https://codeofaninja.com/tools/find-instagram-user-id/) - ID Finder
|
||||
|
@ -615,6 +608,22 @@
|
|||
|
||||
***
|
||||
|
||||
# ► Blogging Tools
|
||||
|
||||
* ⭐ **[TinyBones](https://tinybones.pages.dev/)** / [GitHub](https://github.com/itzcozi/tinybones), **[Bear Blog](https://bearblog.dev/)**, [Mataroa](https://mataroa.blog/) or [smol.pub](https://smol.pub/) / [Key](https://m15o.ichi.city/smolpub/key-request.html) - Minimalist Blogging Platforms
|
||||
* [Telescope](https://telescope.ac/) - Publishing Platform
|
||||
* [Arbital](https://arbital.com/) - Hybrid Blogging / Wiki Platform
|
||||
* [Dreamwidth](https://www.dreamwidth.org/) - Blogging Platform
|
||||
* [Haven](https://havenweb.org/) or [WriteFreely](https://writefreely.org/) - Self-Hosted Blogging Platforms
|
||||
* [Notepin](https://notepin.co/) - Anonymous Blogging Platform
|
||||
* [Hexo](https://hexo.io/) - Static Blog Template / [Themes](https://hexo.io/themes/) / [GitHub](https://github.com/hexojs/hexo)
|
||||
* [Zonelets](https://zonelets.net/) - Static Blog Template
|
||||
* [twtxt](https://github.com/buckket/twtxt) - Decentralized Minimalist Microblogging Service
|
||||
* [Emanates Docs](https://emanates.deepjyoti30.dev/) - Make GitHub-Based Blogs
|
||||
* [CoverView](https://coverview.vercel.app/) - Blog Banner Creator
|
||||
|
||||
***
|
||||
|
||||
# ► Tumblr Tools
|
||||
|
||||
* [Tumlook](https://www.tumlook.com/), [Tumgik](https://www.tumgik.com/) or [PriviBlur](https://github.com/syeopite/priviblur) - Tumblr Frontends
|
||||
|
@ -659,7 +668,7 @@
|
|||
* 🌐 **[Awesome Mastodon](https://hueyy.github.io/awesome-mastodon/)**, [2](https://github.com/hyperupcall/awesome-mastodon) - Mastodon Resources
|
||||
* ⭐ **[instances.social](https://instances.social/)** or [Mastodon Near Me](http://mastodon-near.me/) - Mastodon Instances
|
||||
* ⭐ **[Mastodon Apps](https://joinmastodon.org/apps)** - Mastodon Client List
|
||||
* [Phanpy](https://phanpy.social/) or [Mastodeck](https://mastodeck.com/) - Mastodon Clients
|
||||
* [Phanpy](https://phanpy.social/) / [GitHub](https://github.com/cheeaun/phanpy) or [Mastodeck](https://mastodeck.com/) - Mastodon Clients
|
||||
* [Fediwall](https://fediwall.social/) - View Public Timelines / Hashtags
|
||||
* [Followgraph](https://followgraph.vercel.app/) or [StreetPass](https://streetpass.social/) - Find Mastodon Users
|
||||
* [MastoGizmos](https://mastogizmos.com/) - Mastodon Search Tools
|
||||
|
@ -710,7 +719,7 @@
|
|||
|
||||
# ► 4chan Tools
|
||||
|
||||
* ⭐ **[4chan X](https://www.4chan-x.net/)**, [SpookyX](https://github.com/Fiddlekins/SpookyX), [4chan XT](https://github.com/TuxedoTako/4chan-xt) or [Dollchan](https://dollchan.net/) - Enhancement Extensions
|
||||
* ⭐ **[4chan XT](https://github.com/TuxedoTako/4chan-xt)**, [4chan X](https://www.4chan-x.net/), [SpookyX](https://github.com/Fiddlekins/SpookyX) or [Dollchan](https://dollchan.net/) - Enhancement Extensions
|
||||
* [Lurka](https://github.com/AdamSalma/Lurka) - Desktop Client
|
||||
* [RedditChan](https://reddit-chan.vercel.app/) - Reddit Style 4chan Web Client
|
||||
* [4Webm](https://www.4webm.org/) - Load All Webm Videos in 4chan Thread
|
||||
|
@ -732,25 +741,10 @@
|
|||
***
|
||||
|
||||
* [4chanSearch](https://4chansearch.com/) or [4search](https://4search.neocities.org/) - Search 4chan Archives
|
||||
* [4rchive](https://4rchive.org/), [sup/tg/](https://suptg.thisisnotatrueending.com/), [Palanq.win](https://archive.palanq.win/), [Desuarchive](https://desuarchive.org/), [Archived.Moe](https://archived.moe/) or [The /b/ Archive](https://thebarchive.com/) - Misc 4chan Archives
|
||||
* [4rchive](https://4rchive.org/), [sup/tg/](https://suptg.thisisnotatrueending.com/), [Palanq.win](https://archive.palanq.win/), [AyaseQuart](https://ayasequart.org/fts), [Desuarchive](https://desuarchive.org/), [Archived.Moe](https://archived.moe/) or [The /b/ Archive](https://thebarchive.com/) - Misc 4chan Archives
|
||||
* [Oldfriend Archive](https://old.sage.moe/) - 2004 - 2014 Archive
|
||||
* [Ten Billion](https://archive.org/details/4chan_threads_archive_10_billion) or [4Museum](https://4museum.neocities.org/) - 2006 - 2008 Archive
|
||||
* [4GBs of 4chan Threads](https://archive.org/details/4chan-threads-2009-2012) - 2009 - 2012 Archive
|
||||
* [Archive.4plebs](https://archive.4plebs.org/) - 2013 - 2023 Archive
|
||||
* [BibAnon](https://vyrd.bibanon.org/) - Vyrd's Archive
|
||||
* [Yotsuba Catalog](https://catalog.neet.tv/) - Yotsuba Archive
|
||||
|
||||
***
|
||||
|
||||
# ► Blogging Tools
|
||||
|
||||
* ⭐ **[Bear Blog](https://bearblog.dev/)**, [Mataroa](https://mataroa.blog/) or [smol.pub](https://smol.pub/) / [Key](https://m15o.ichi.city/smolpub/key-request.html) - Minimalist Blogging Platforms
|
||||
* [Telescope](https://telescope.ac/) - Publishing Platform
|
||||
* [Arbital](https://arbital.com/) - Hybrid Blogging / Wiki Platform
|
||||
* [Dreamwidth](https://www.dreamwidth.org/) - Blogging Platform
|
||||
* [Haven](https://havenweb.org/) or [WriteFreely](https://writefreely.org/) - Self-Hosted Blogging Platforms
|
||||
* [Notepin](https://notepin.co/) - Anonymous Blogging Platform
|
||||
* [Zonelets](https://zonelets.net/) - Static Blog Template
|
||||
* [twtxt](https://github.com/buckket/twtxt) - Decentralized Minimalist Microblogging Service
|
||||
* [Emanates Docs](https://emanates.deepjyoti30.dev/) - Make GitHub-Based Blogs
|
||||
* [CoverView](https://coverview.vercel.app/) - Blog Banner Creator
|
||||
|
|
|
@ -21,14 +21,14 @@
|
|||
* ⭐ **[WebOasis](https://weboasis.su/)**, [2](https://behu.io/), [3](https://ndsamuelson.github.io/weboas-is/) / [GitHub](https://github.com/ParrotDevelopers/WebOasis/)
|
||||
* ⭐ **[MONKNOW](https://www.monknow.com/)**
|
||||
|
||||
[FMHY Startpage](https://fmhy.net/startpage), [r/startpages](https://www.reddit.com/r/startpages/), [8bitdash](https://www.8bitdash.com/), [8 Bit Dashboard](https://8bitdashboard.com/), [Clippingmini](https://www.clippingmini.com/), [Draggo](https://draggo.com/), [Pearltrees](https://www.pearltrees.com/), [Nextcloud](https://apps.nextcloud.com/apps/bookmarks), [Cling](https://cling.com/), [Symbaloo](https://www.symbaloo.com/), [Tixio](https://tixio.io/), [Bento](https://github.com/migueravila/Bento), [nightly](https://github.com/damnitharshit/nightly), [Protopage](https://www.protopage.com/), [tilde](https://github.com/xvvvyz/tilde), [Fluidity](https://prettycoffee.github.io/fluidity/) / [GitHub](https://github.com/PrettyCoffee/fluidity), [AllMyFaves](https://allmyfaves.com/), [start.me](https://start.me/start/int/startpage)
|
||||
[FMHY Startpage](https://fmhy.net/startpage), [r/startpages](https://www.reddit.com/r/startpages/), [8bitdash](https://www.8bitdash.com/), [8 Bit Dashboard](https://8bitdashboard.com/), [Clippingmini](https://www.clippingmini.com/), [Draggo](https://draggo.com/), [Pearltrees](https://www.pearltrees.com/), [Nextcloud](https://apps.nextcloud.com/apps/bookmarks), [Cling](https://cling.com/), [Symbaloo](https://www.symbaloo.com/), [Tixio](https://tixio.io/), [Bento](https://github.com/migueravila/Bento), [nightly](https://github.com/damnitharshit/nightly), [Protopage](https://www.protopage.com/), [tilde](https://github.com/xvvvyz/tilde), [Fluidity](https://prettycoffee.github.io/fluidity/) / [GitHub](https://github.com/PrettyCoffee/fluidity), [AllMyFaves](https://allmyfaves.com/), [start.me](https://start.me/start/int/startpage), [Combobox](https://combobox.me)
|
||||
|
||||
### Customizable New Tab Page
|
||||
|
||||
* ⭐ **[Anori](https://anori.app/)** - Customizable New Tab
|
||||
* ⭐ **[Mue](https://muetab.com/)** / [GitHub](https://github.com/mue/mue) - Customizable New Tab
|
||||
* ⭐ **[Bonjourr](https://bonjourr.fr/)** / [GitHub](https://github.com/victrme/Bonjourr) - Minimalist Startpage
|
||||
* [Renewed Tab](https://renewedtab.com/) / [GitLab](https://gitlab.com/renewedtab/renewedtab/) / [Discord](https://discord.gg/zYjR54b) - Customizable New Tab
|
||||
* ⭐ **[Mue](https://muetab.com/)** - Customizable New Tab / [GitHub](https://github.com/mue/mue)
|
||||
* ⭐ **[Bonjourr](https://bonjourr.fr/)** - Minimalist Startpage / [GitHub](https://github.com/victrme/Bonjourr)
|
||||
* [Renewed Tab](https://renewedtab.com/) - Customizable New Tab / [Discord](https://discord.gg/zYjR54b) / [GitLab](https://gitlab.com/renewedtab/renewedtab/)
|
||||
|
||||
[mtab](https://github.com/maxhu08/mtab), [nightTab](https://github.com/zombieFox/nightTab), [hexagonTab](https://github.com/zombieFox/hexagonTab), [Perfect Home](https://github.com/perfect-things/perfect-home), [Yet Another Speed Dial](https://github.com/conceptualspace/yet-another-speed-dial), [Infinity New Tab](https://en.infinitynewtab.com/), [Momentum](https://momentumdash.com/)
|
||||
|
||||
|
@ -89,7 +89,7 @@
|
|||
* ⭐ **[vads](https://vads.ac.uk/digital/)**
|
||||
* ⭐ **[Arts and Culture](https://artsandculture.google.com/)**
|
||||
|
||||
[Painting Index](https://index-of.eu/Paintings/), [rijksstudio](https://www.rijksmuseum.nl/en/rijksstudio), [Haltadefinizione](https://www.haltadefinizione.com/en/), [Artcyclopedia](http://www.artcyclopedia.com/), [The Wolfman Museum of Art](https://wolfmanmuseum.org/), [DarkClassics](https://darkclassics.blogspot.com/), [European Art](https://photos.app.goo.gl/q5GRdpSvARAqhbSh6), [The Watercolour World](https://www.watercolourworld.org/), [Museo](https://museo.app/), [Arthur](https://arthur.io/), [WGA](https://www.wga.hu/), [Gallerix](https://gallerix.org/), [WikiArt](https://www.wikiart.org/), [Public Work](https://public.work/), [Public Domain Image Archive](https://pdimagearchive.org/), [V&A](https://www.vam.ac.uk/), [Louvre](https://collections.louvre.fr/en/), [Artchive](https://www.artchive.com/), [S.D. Cason](https://sdcason.com/categories/)
|
||||
[Painting Index](https://index-of.eu/Paintings/), [The Met](https://www.metmuseum.org/art/collection), [rijksstudio](https://www.rijksmuseum.nl/en/rijksstudio), [Haltadefinizione](https://www.haltadefinizione.com/en/), [Artcyclopedia](http://www.artcyclopedia.com/), [The Wolfman Museum of Art](https://wolfmanmuseum.org/), [DarkClassics](https://darkclassics.blogspot.com/), [European Art](https://photos.app.goo.gl/q5GRdpSvARAqhbSh6), [The Watercolour World](https://www.watercolourworld.org/), [Museo](https://museo.app/), [Arthur](https://arthur.io/), [WGA](https://www.wga.hu/), [Gallerix](https://gallerix.org/), [WikiArt](https://www.wikiart.org/), [Public Work](https://public.work/), [Public Domain Image Archive](https://pdimagearchive.org/), [V&A](https://www.vam.ac.uk/), [Louvre](https://collections.louvre.fr/en/), [Artchive](https://www.artchive.com/), [S.D. Cason](https://sdcason.com/categories/), [Frick](https://www.frick.org/art), [RCT](https://www.rct.uk/collection/), [Artic](https://www.artic.edu/collection), [Artvee](https://artvee.com/), [Moma](https://www.moma.org/collection/), [Guggenheim](https://www.guggenheim.org/collection-online), [Deutsche Digitale](https://www.deutsche-digitale-bibliothek.de/?lang=de)
|
||||
|
||||
***
|
||||
|
||||
|
@ -112,14 +112,13 @@
|
|||
* 🌐 **[Public DNS indexes](https://www.publicdns.xyz/)** / [2](https://www.bestdns.org/) / [3](https://acavalin.com/p/free_dns) / [4](https://publicdnsserver.com/) / [5](https://public-dns.info/)
|
||||
* ⭐ **[Cloudflare 1.1.1.1](https://developers.cloudflare.com/1.1.1.1/ip-addresses/)**
|
||||
* ⭐ **[Quad9](https://quad9.net/)** - Malware, Phishing, Spyware & Botnet DNS Protection
|
||||
* ⭐ **[Mullvad](https://mullvad.net/en/help/dns-over-https-and-dns-over-tls)**
|
||||
* ⭐ **[Mullvad](https://mullvad.net/en/help/dns-over-https-and-dns-over-tls)** - Ads. Trackers, Adult, Malware, Gambling & Social Media DNS Protection
|
||||
* [NextDNS](https://nextdns.io) / [2](https://adguard-dns.io/kb/general/dns-providers/#nextdns)
|
||||
* [Unbound](https://www.nlnetlabs.nl/projects/unbound/) / [GitHub](https://github.com/NLnetLabs/unbound)
|
||||
* [Bancuh](https://bancuh.com/) / [GitHub](https://github.com/ragibkl/adblock-dns-server)
|
||||
* [Adguard](https://adguard-dns.io/en/public-dns.html)
|
||||
* [AdGuard](https://adguard-dns.io/en/public-dns.html)
|
||||
* [DNS for Family](https://dnsforfamily.com/)
|
||||
* [Hurricane Electric](https://dns.he.net/)
|
||||
* [ DNS Bunker](https://dnsbunker.org/)
|
||||
* [dns0.eu](https://www.dns0.eu/)
|
||||
* [UncensoredDNS](https://blog.uncensoreddns.org/dns-servers/)
|
||||
* [dns.sb](https://dns.sb/)
|
||||
|
@ -132,6 +131,7 @@
|
|||
|
||||
***
|
||||
|
||||
* [F0rc3Run](https://f0rc3run.github.io/F0rc3Run-panel/) / [GitHub](https://github.com/F0rc3Run/F0rc3Run)
|
||||
* [V2Nodes](https://v2nodes.com/)
|
||||
* [RaceVPN](https://www.racevpn.com/)
|
||||
* [GreenSSH](https://www.greenssh.com/)
|
||||
|
@ -212,29 +212,14 @@
|
|||
* https://librarygenesis.net/ - site list
|
||||
* https://libgen.li/ - clone
|
||||
* https://libgen.gs/ - clone
|
||||
* https://libgen.vg/ - clone
|
||||
* https://libgen.la/ - clone
|
||||
* https://libgen.bz/ - clone
|
||||
* https://rentry.co/m2hkqhwb - Differences between the mirrors
|
||||
|
||||
***
|
||||
|
||||
## LibGen Tools
|
||||
|
||||
[Search Extension](https://chromewebstore.google.com/detail/libgen-search/cbcehgllfaddbjidleabcdjpldlognad) / [Amazon Buttons](https://pastebin.com/DdwbbhG8) / [Need Seeds](https://phillm.net/libgen-seeds-needed.php) / [Convert to Text](https://github.com/VikParuchuri/libgen_to_txt) / [Backup](https://redd.it/edwi9b)
|
||||
|
||||
***
|
||||
|
||||
## 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/), [Worldviewstream](https://worldviewstream.com/), [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/), [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/), [liveworldwebcams](https://liveworldwebcams.com/)
|
||||
|
||||
### Animal Cams
|
||||
|
||||
* [meow.camera](https://meow.camera/) - Chinese Cat Cams / [Android](https://play.google.com/store/apps/details?id=com.hello.purr) / [iOS](https://apps.apple.com/app/id6475722361) / [Discord](https://discord.com/invite/QmHWpZF9cP)
|
||||
* [The Fish Doorbell](https://visdeurbel.nl/en/) - Help Fish Migrate
|
||||
|
||||
[Monterey Bay Aquarium](https://www.montereybayaquarium.org/animals/live-cams), [San Diego Zoo](https://zoo.sandiegozoo.org/live-cams), [Zqoo.org](https://www.zoo.org/webcams), [AnimalsLife](https://animalslife.net/), [Africam](https://www.africam.com/), [NationalZoo](https://nationalzoo.si.edu/webcams), [BirdCams](https://birdcams.live/), [CritterYard](https://critteryard.com/), [AquariumOfPacific](https://www.aquariumofpacific.org/exhibits/webcams)
|
||||
[Search Extension](https://chromewebstore.google.com/detail/libgen-search/cbcehgllfaddbjidleabcdjpldlognad) / [Need Seeds](https://phillm.net/libgen-seeds-needed.php) / [Convert to Text](https://github.com/VikParuchuri/libgen_to_txt) / [Backup](https://redd.it/edwi9b)
|
||||
|
||||
***
|
||||
|
||||
|
@ -284,14 +269,14 @@
|
|||
|
||||
### Mod / Resource Pack Indexes
|
||||
|
||||
* ⭐ **[Modrinth](https://modrinth.com/)** / [Redirector](https://github.com/devBoi76/modrinthify)
|
||||
* ⭐ **[UsefulMods](https://github.com/TheUsefulLists/UsefulMods)**
|
||||
* [ModBay](https://modbay.org/) - Bedrock Edition Content
|
||||
* [CurseForge](https://www.curseforge.com/minecraft) / [QOL Fixes](https://greasyfork.org/en/scripts/389255-curseforge-qol-fixes), [2](https://greasyfork.org/en/scripts/445993-modrinthify)
|
||||
* ⭐ **[Modrinth](https://modrinth.com/)** / [Redirector](https://github.com/devBoi76/modrinthify) / [Discord](https://discord.com/invite/EUHuJHt) / [GitHub](https://github.com/modrinth/code)
|
||||
* ⭐ **[UsefulMods](https://github.com/TheUsefulLists/UsefulMods)** - Optimization & Enhancement Mods / [Discord](https://discord.gg/8nzHYhVUQS)
|
||||
* [ModBay](https://modbay.org/) - Bedrock Edition Content / [Discord](https://discord.com/invite/DpNJ5fApJM)
|
||||
* [CurseForge](https://www.curseforge.com/minecraft) / [QOL Fixes](https://greasyfork.org/en/scripts/389255-curseforge-qol-fixes)
|
||||
* [Planet Minecraft](https://www.planetminecraft.com/)
|
||||
* [MC Archive](https://mcarchive.net/)
|
||||
* [FiberMC](https://www.fibermc.com/)
|
||||
* [ModpackIndex](https://www.modpackindex.com/)
|
||||
* [MC Archive](https://mcarchive.net/) - Old Mods
|
||||
* [FiberMC](https://www.fibermc.com/) - Fabric Mods Index
|
||||
* [ModpackIndex](https://www.modpackindex.com/) / [Discord](https://discord.com/invite/9QfENvm)
|
||||
* [Minecraft Forum](https://www.minecraftforum.net/) / [Discord](https://discord.com/invite/wGrQNKX)
|
||||
|
||||
|
||||
|
@ -301,17 +286,6 @@
|
|||
|
||||
***
|
||||
|
||||
## Music Notation Editors
|
||||
|
||||
* ⭐ **[MuseScore](https://musescore.org/)** - Editor
|
||||
* [Noteflight](https://noteflight.com/) - Editor
|
||||
* [MC Musiceditor](https://www.mcmusiceditor.com/) - Editor
|
||||
* [Flat](https://flat.io/) - Editor
|
||||
* [Score Perfect Professional](https://archive.org/details/score-perfect-professional-lite-5.1/) - Editor
|
||||
* [MusicWorks](https://www.tierramedia.com/) - Editor
|
||||
|
||||
***
|
||||
|
||||
## Music Sheet Collections
|
||||
|
||||
### General Music Sheets
|
||||
|
@ -369,10 +343,10 @@
|
|||
|
||||
## Presentation Tools
|
||||
|
||||
* [Slides](https://maaslalani.com/slides/) / [GitHub](https://github.com/maaslalani/slides) - Terminal-Based Presentation Tool
|
||||
* [Slides](https://maaslalani.com/slides/) - Terminal-Based Presentation Tool / [GitHub](https://github.com/maaslalani/slides)
|
||||
* [Z.ai](https://chat.z.ai/) or [PPTX](https://github.com/AmNotAGoose/PPTX-Presentation-Generator) - AI Presentation Generators
|
||||
* [GSlides Maker](https://github.com/vilmacio/gslides-maker) - Turn Wiki Pages into Google Slides
|
||||
* [Inscribed](https://inscribed.app/) / [GitHub](https://github.com/chunrapeepat/inscribed) - Sketch-Based Slides
|
||||
* [Inscribed](https://inscribed.app/) - Sketch-Based Slides / [GitHub](https://github.com/chunrapeepat/inscribed)
|
||||
|
||||
[Marp](https://marp.app/), [ZoomIt](https://learn.microsoft.com/en-us/sysinternals/downloads/zoomit), [Presentator](https://presentator.io/), [Fusuma](https://hiroppy.github.io/fusuma/), [Pitch](https://pitch.com/), [Zoho Show](https://www.zoho.com/show/), [Webslides](https://webslides.tv/), [FreeShow](https://freeshow.app/), [Presenta](https://play.presenta.cc/), [OpenLearning](https://www.openelearning.org/), [Slideshare](https://www.slideshare.net/), [Excalideck](https://excalideck.com/)
|
||||
|
||||
|
@ -392,8 +366,8 @@
|
|||
|
||||
## SMS Verification Sites
|
||||
|
||||
* ⭐ **[receive-sms-online](https://www.receive-sms-online.info/)** - Sign-Up Required
|
||||
* ⭐ **[SMSCodeOnline](https://smscodeonline.com/)**
|
||||
* ⭐ **[receive-sms-online](https://www.receive-sms-online.info/)** - Sign-Up Required
|
||||
* ⭐ **[mianfeijiema](https://mianfeijiema.com/)** or [us-phone-number](https://us-phone-number.com/)
|
||||
* ⭐ **[sms24](https://www.sms24.me/)**
|
||||
* ⭐ **[receive-sms](https://receive-sms.cc/)**
|
||||
|
@ -417,14 +391,14 @@
|
|||
## SVG Icons
|
||||
|
||||
* 🌐 **[Awesome Icons](https://github.com/notlmn/awesome-icons)**, **[Awesome Stock Resources](https://github.com/neutraltone/awesome-stock-resources#icons)** or **[Free Icons](https://www.iconshock.com/freeicons/)** - Icon Indexes
|
||||
* ⭐ **[Iconify](https://iconify.design/)** / [Premium Unlock](https://github.com/Kyutefox/Iconify)
|
||||
* ⭐ **[icons8](https://icons8.com/icons)**
|
||||
* ⭐ **[Iconify](https://iconify.design/)**
|
||||
* ⭐ **[icons8](https://icons8.com/icons)** / [Premium Unlock](https://github.com/Kyutefox/Iconify)
|
||||
* ⭐ **[SVG Repo](https://www.svgrepo.com/)**
|
||||
* [Dashboard Icons](https://dashboardicons.com/) - Program Icons
|
||||
* [GrommetIcons](https://icons.grommet.io/) - SVG Icons for React
|
||||
* [HealthIcons](https://healthicons.org/) - Medical Icons
|
||||
|
||||
[Icofont](https://icofont.com/icons), [VisualPharm](https://visualpharm.com/), [Google Icons](https://fonts.google.com/icons), [svgl](https://svgl.app/), [iconer](https://iconer.app/), [SimpleIcons](https://simpleicons.org/), [xIcons](https://xicons.org), [Polaris](https://polaris.shopify.com/icons), [Phosphor Icons](https://phosphoricons.com/), [iCongo](https://icongo.github.io/), [IconFinder](https://www.iconfinder.com/), [Lucide](https://lucide.dev/), [Ant Design](https://ant.design/components/icon/), [IconPacks](https://www.iconpacks.net/), [svgmix](https://svgmix.com/), [Iconbuddy](https://iconbuddy.com/), [Noun Project](https://thenounproject.com/), [Orion](https://www.orioniconlibrary.com/), [Flaticon](https://www.flaticon.com/), [Devicon](https://devicon.dev/), [Glyphs](https://glyphs.fyi/), [IconArchive](https://iconarchive.com/), [IconDuck](https://iconduck.com/), [icon icons](https://icon-icons.com/), [Icons-For-Free](https://icons-for-free.com/), [Streamline](https://www.streamlinehq.com/), [Dryicons](https://dryicons.com/), [Icones](https://icones.js.org/), [CaptainIconWeb](https://mariodelvalle.github.io/CaptainIconWeb/), [IconNinja](https://www.iconninja.com/), [Teenyicons](https://teenyicons.com/), [awsicons](https://awsicons.dev/), [iconoir](https://iconoir.com/), [heroicons](https://heroicons.dev/), [composeicons](https://composeicons.com/), [iconmonstr](https://iconmonstr.com/), [Nerd Fonts](https://www.nerdfonts.com/), [websvg](https://websvg.com/), [svgsilh](https://svgsilh.com/), [pictogrammers](https://pictogrammers.com/)
|
||||
[Icofont](https://icofont.com/icons), [VisualPharm](https://visualpharm.com/), [Google Icons](https://fonts.google.com/icons), [svgl](https://svgl.app/), [iconer](https://iconer.app/), [SimpleIcons](https://simpleicons.org/), [xIcons](https://xicons.org), [Polaris](https://polaris.shopify.com/icons), [Phosphor Icons](https://phosphoricons.com/), [iCongo](https://icongo.github.io/), [IconFinder](https://www.iconfinder.com/), [Lucide](https://lucide.dev/), [Ant Design](https://ant.design/components/icon/), [IconPacks](https://www.iconpacks.net/), [svgmix](https://svgmix.com/), [Iconbuddy](https://iconbuddy.com/), [Noun Project](https://thenounproject.com/), [Orion](https://www.orioniconlibrary.com/), [Flaticon](https://www.flaticon.com/) / [Premium Unlock](https://github.com/Kyutefox/Iconify), [Devicon](https://devicon.dev/), [Glyphs](https://glyphs.fyi/), [IconArchive](https://iconarchive.com/), [IconDuck](https://iconduck.com/), [icon icons](https://icon-icons.com/), [Icons-For-Free](https://icons-for-free.com/), [Streamline](https://www.streamlinehq.com/), [Dryicons](https://dryicons.com/), [Icones](https://icones.js.org/), [CaptainIconWeb](https://mariodelvalle.github.io/CaptainIconWeb/), [IconNinja](https://www.iconninja.com/), [Teenyicons](https://teenyicons.com/), [awsicons](https://awsicons.dev/), [iconoir](https://iconoir.com/), [heroicons](https://heroicons.dev/), [composeicons](https://composeicons.com/), [iconmonstr](https://iconmonstr.com/), [Nerd Fonts](https://www.nerdfonts.com/), [websvg](https://websvg.com/), [svgsilh](https://svgsilh.com/), [pictogrammers](https://pictogrammers.com/), [svgstack](https://svgstack.com/)
|
||||
|
||||
***
|
||||
|
||||
|
|
|
@ -39,9 +39,10 @@
|
|||
## ▷ System Tweaks
|
||||
|
||||
* ⭐ **[SophiaScript](https://github.com/farag2/Sophia-Script-for-Windows)**, **[Windhawk](https://windhawk.net/)**, [MajorGeeks Windows Tweaks](https://www.majorgeeks.com/files/details/majorgeeks_registry_tweaks.html) or [Winaero](https://winaero.com/) / [2](https://winaerotweaker.com/) - System Tweaking Tools / **[Warning](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#general-tweak-warning)**
|
||||
* ⭐ **[StartAllBack](https://www.startallback.com/)** - Tweaked Start Menu & Taskbar / Windows 11 / [Unlock](https://rentry.co/FMHYBase64#startxback) / [Install Note](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#startallback)
|
||||
* ⭐ **[EverythingToolbar](https://github.com/srwi/EverythingToolbar)** or [yasb](https://github.com/amnweb/yasb) - Tweaked Taskbars
|
||||
* ⭐ **[Open Shell](https://open-shell.github.io/Open-Shell-Menu/)** - Tweak Start Menu / [Start Skin](https://github.com/bonzibudd/Fluent-Metro)
|
||||
* ⭐ **[EarTrumpet](https://eartrumpet.app/)**, [Volumey](https://github.com/G-Stas/Volumey) or [Volume2](https://github.com/irzyxa/Volume2) - Tweak Volume Mixer
|
||||
* ⭐ **[Open Shell](https://open-shell.github.io/Open-Shell-Menu/)** - Tweaked Start Menu / [Start Skin](https://github.com/bonzibudd/Fluent-Metro)
|
||||
* ⭐ **[EarTrumpet](https://eartrumpet.app/)**, [Volumey](https://github.com/G-Stas/Volumey) or [Volume2](https://github.com/irzyxa/Volume2) - Tweaked Volume Mixer
|
||||
* ⭐ **[AltSnap](https://github.com/RamonUnch/AltSnap)** - Tweaked Windows Dragging
|
||||
* ⭐ **[Edge-Uninstall](https://gist.github.com/ave9858/c3451d9f452389ac7607c99d45edecc6)** - Microsoft Edge Removal Script
|
||||
* [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
|
||||
|
@ -49,9 +50,8 @@
|
|||
* [Wox](https://github.com/Wox-launcher/Wox), [Listary](https://www.listary.com/), [FlowLauncher](https://www.flowlauncher.com/), [Ueli](https://ueli.app/) / [GitHub](https://github.com/oliverschwendener/ueli) - Keystroke / App Launchers
|
||||
* [Kando](https://kando.menu/) - App Launcher / Pie Menu / [Discord](https://discord.gg/hZwbVSDkhy) / [GitHub](https://github.com/kando-menu/kando)
|
||||
* [Cerebro App](https://cerebroapp.com/) - Tweaked System Navigation
|
||||
* [SmartSystemMenu](https://github.com/AlexanderPro/SmartSystemMenu) - Tweak System Menu
|
||||
* [EasyContextMenu](https://www.sordum.org/7615/easy-context-menu-v1-6/) or [ContextMenuManager](https://github.com/BluePointLilac/ContextMenuManager/blob/master/README-en.md)
|
||||
* [RCWM](https://github.com/GChuf/RCWM) - Tweaked Context Menus
|
||||
* [SmartSystemMenu](https://github.com/AlexanderPro/SmartSystemMenu) - Tweaked System Menu
|
||||
* [Shell](https://nilesoft.org/) / [GitHub](https://github.com/moudey/shell) or [RCWM](https://github.com/GChuf/RCWM) - Tweaked / Custom Context Menus
|
||||
* [Explorer Tab Utility](https://github.com/w4po/ExplorerTabUtility) - Tweaked File Explorer
|
||||
* [Quick Access Popup](https://www.quickaccesspopup.com/) - File Manager
|
||||
* [Spencer](https://www.the-sz.com/products/spencer/) - Classic Start Menu
|
||||
|
@ -71,7 +71,7 @@
|
|||
* ⭐ **[UniGetUI](https://www.marticliment.com/unigetui/)** - GUI for Popular Package Managers / [GitHub](https://github.com/marticliment/UniGetUI)
|
||||
* ⭐ **[Scoop](https://scoop.sh/)** - Portable Package Manager
|
||||
* ⭐ **[sfsu](https://github.com/winpax/sfsu/)** or [hok](https://github.com/chawyehsu/hok) - Fast Scoop Utilities
|
||||
* [Chocolatey](https://chocolatey.org/) / [GUI](https://github.com/chocolatey/ChocolateyGUI) - Package Manager / [GitHub](https://github.com/chocolatey/choco)
|
||||
* [Chocolatey](https://chocolatey.org/) - Package Manager / [GUI](https://github.com/chocolatey/ChocolateyGUI) / [GitHub](https://github.com/chocolatey/choco)
|
||||
* [RuckZuck](https://ruckzuck.tools/) - Package Manager
|
||||
* [Topgrade](https://github.com/topgrade-rs/topgrade) - CLI Package Manager
|
||||
* [Silent Install](https://www.silentinstall.org/) - Build Multi-Program Installers
|
||||
|
@ -112,7 +112,6 @@
|
|||
* [GetDNote](https://www.getdnote.com/) - Command Line Notebook
|
||||
* [LeanandMean](https://github.com/AveYo/LeanAndMean) - Powershell Snippets / Use with Caution
|
||||
* [PowerShell Scripts](https://github.com/fleschutz/PowerShell), [PowershellGallery](https://www.powershellgallery.com/) or [WindowsPowerShell](https://github.com/stevencohn/WindowsPowerShell) - Shell Scripts
|
||||
* [Starship](https://starship.rs/) - Cross-Shell Prompt
|
||||
|
||||
***
|
||||
|
||||
|
@ -143,7 +142,7 @@
|
|||
|
||||
## ▷ Clipboard Managers
|
||||
|
||||
* ⭐ **[Ditto](https://ditto-cp.sourceforge.io/)** - Clipboard Manager / [GitHub](https://github.com/sabrogden/Ditto)
|
||||
* ⭐ **[Ditto](https://ditto-cp.sourceforge.io/)** - Clipboard Manager / [GitHub](https://sabrogden.github.io/Ditto/)
|
||||
* [PasteBar](https://www.pastebar.app/) - Clipboard Manager / [GitHub](https://github.com/PasteBar/PasteBarApp)
|
||||
* [CrossPaste](https://crosspaste.com/) - Clipboard Manager / [GitHub](https://github.com/crosspaste/crosspaste-desktop)
|
||||
* [ArsClip](https://www.joejoesoft.com/vcms/97/) - Clipboard Manager
|
||||
|
@ -166,8 +165,9 @@
|
|||
|
||||
* 🌐 **[Awesome Web Desktops](https://github.com/syxanash/awesome-web-desktops)** or [Simone's Computer](https://simone.computer/#/webdesktops) - OS Emulators / VMs
|
||||
* ↪️ **[Android Emulators](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/android#wiki_.25BA_android_emulators)**
|
||||
* ⭐ **[VMware Workstation](https://www.majorgeeks.com/files/details/vmware_workstation_for_windows.html)** or **[VirtualBox](https://www.virtualbox.org/)** / [Portable](https://www.vbox.me/) - Virtual Machines
|
||||
* ⭐ **[Virt-Manager](https://virt-manager.org/)** / [GitHub](https://github.com/virt-manager/virt-manager), [MultiPass](https://canonical.com/multipass) / [GitHub](https://github.com/canonical/multipass) or [Vagrantup](https://www.vagrantup.com/) / [GitHub](https://github.com/hashicorp/vagrant) - Virtual Machine Managers
|
||||
* ⭐ **[VMware Workstation](https://www.majorgeeks.com/files/details/vmware_workstation_for_windows.html)** - Virtual Machine / [macOS VM](https://rentry.co/FMHYBase64#vmware-workstation)
|
||||
* ⭐ **[VirtualBox](https://www.virtualbox.org/)** - Virtual Machine / [Portable](https://www.vbox.me/)
|
||||
* ⭐ **[Virt-Manager](https://virt-manager.org/)** / [GitHub](https://github.com/virt-manager/virt-manager) or [Vagrantup](https://www.vagrantup.com/) / [GitHub](https://github.com/hashicorp/vagrant) - Virtual Machine Managers
|
||||
* [Looking Glass](https://looking-glass.io/) - App for Using Kernel-Based Virtual Machine Configured for VGA PCI Pass-Through / [GitHub](https://github.com/gnif/LookingGlass)
|
||||
* [QEMU](https://www.qemu.org/) / [GitLab](https://gitlab.com/qemu-project/qemu), [Hyper-V](https://learn.microsoft.com/en-us/virtualization/hyper-v-on-windows/) or [Denodo Test](https://community.denodo.com/test-drives/) - Virtual Machines
|
||||
* [OSBoxes](https://www.osboxes.org/) - Preinstalled Virtual Machine
|
||||
|
@ -236,7 +236,7 @@
|
|||
* ⭐ **[NVCleanstall](https://www.techpowerup.com/download/techpowerup-nvcleanstall/)** or [NVSlimmer](https://forums.guru3d.com/threads/nvslimmer-nvidia-driver-slimming-utility.423072/) - NVIDIA Driver Packages
|
||||
* [Display Driver Uninstaller](https://www.wagnardsoft.com/display-driver-uninstaller-ddu-), [2](https://www.guru3d.com/download/display-driver-uninstaller-download) - Display Driver Removal Tool / [GitHub](https://github.com/Wagnard/display-drivers-uninstaller)
|
||||
* [TinyNvidiaUpdateChecker](https://github.com/ElPumpo/TinyNvidiaUpdateChecker) - NVIDIA GPU Update Checker
|
||||
* [nvidiaProfileInspector](https://github.com/Orbmu2k/nvidiaProfileInspector) - Modify / View Hidden NVIDIA Settings / [Guide](https://youtu.be/XncmeD8khKY)
|
||||
* [nvidiaProfileInspector](https://github.com/Orbmu2k/nvidiaProfileInspector) or [NvidiaProfileInspectorRevamped](https://github.com/xHybred/NvidiaProfileInspectorRevamped) - Modify / View Hidden NVIDIA Settings / [Guide](https://youtu.be/XncmeD8khKY)
|
||||
* [RadeonSoftwareSlimmer](https://github.com/GSDragoon/RadeonSoftwareSlimmer) - Debloat AMD Drivers
|
||||
* [R.ID](https://rdn-id.com/) - AMD 3rd Party Drivers / [Discord](https://discord.gg/rdnid)
|
||||
* [PresentMon](https://github.com/GameTechDev/PresentMon) - GPU Benchmarking
|
||||
|
@ -320,7 +320,7 @@
|
|||
## ▷ System Audio
|
||||
|
||||
* ⭐ **[Equalizer APO](https://sourceforge.net/projects/equalizerapo/)**, [2](https://equalizerapo.com/) / [GUI](https://sourceforge.net/projects/peace-equalizer-apo-extension/), **[AutoEq](https://autoeq.app/)**, [Dolby Access](https://apps.microsoft.com/detail/9n0866fs04w8) / [Note](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#dolby-access--atmos-note) or [FXSound](https://www.fxsound.com/) - Audio Equalizers
|
||||
* [VoiceMeeter](https://vb-audio.com/Voicemeeter/index.htm) / [Banana](https://vb-audio.com/Voicemeeter/banana.htm) - Audio Mixers / Multi-Device Playback
|
||||
* [VoiceMeeter](https://vb-audio.com/Voicemeeter/index.htm) - Audio Mixers / Multi-Device Playback / [Banana](https://vb-audio.com/Voicemeeter/banana.htm)
|
||||
* [SoundSwitch](https://soundswitch.aaflalo.me/) - Switch Audio Device with Hotkey / [GitHub](https://github.com/Belphemur/SoundSwitch)
|
||||
* [SonyHeadphonesClient](https://github.com/Plutoberth/SonyHeadphonesClient) - Sony Headphones Clone
|
||||
* [Audiocheck](https://www.audiocheck.net/) - Audio Tests
|
||||
|
@ -335,8 +335,8 @@
|
|||
|
||||
# ► Windows ISOs
|
||||
|
||||
* ⭐ **[Genuine Installation Media](https://massgrave.dev/genuine-installation-media)** - Windows ISOs / [Clean Install Guide](https://gravesoft.dev/clean_install_windows)
|
||||
* ⭐ **[Windows Install / Debloat Guide](https://gist.github.com/VVispy/17b228cd9c151a495e7576255e1713b9)**
|
||||
* ⭐ **[Genuine Installation Media](https://rentry.co/FMHYBase64#genuine-installation-media)** - Windows ISOs / [Clean Install Guide](https://gravesoft.dev/clean_install_windows)
|
||||
* ⭐ **[Windows Install / Debloat Guide](https://wispydocs.pages.dev/windows/)**
|
||||
* [files.rg-adguard](https://files.rg-adguard.net/) or [MVS dump](https://awuctl.github.io/mvs/) - Verify ISO Legitimacy
|
||||
* [OS.click](https://os.click/en) - Windows ISOs
|
||||
* [MyDigitalLife](https://forums.mydigitallife.net/) - Windows ISOs / Forums
|
||||
|
@ -370,9 +370,7 @@
|
|||
|
||||
* ⭐ **[Windows 10 After EOL](https://massgrave.dev/windows10_eol)** - Receive Windows Updates After Win10's End-Of-Life
|
||||
* ⭐ **[ChangeWindows](https://www.changewindows.org/timeline)** - Latest Windows Update Info
|
||||
* [stopupdates10](https://greatis.com/stopupdates10/) or [InControl](https://www.grc.com/incontrol.htm) - Enable / Disable Win 10/11 Updates / Can Cause Breakage
|
||||
* [LegacyUpdate](https://legacyupdate.net/) - Fix Windows Updates for Legacy Editions
|
||||
* [Extended Win 7 Updates](https://massgrave.dev/tsforge#windows-esu) - Extended Windows 7 Updates
|
||||
* [WURefresh](https://github.com/AveYo/MediaCreationTool.bat/blob/main/bypass11/windows_update_refresh.bat) - Reset Windows Update Components
|
||||
* [UUP Dump](https://uupdump.net/) or [Microsoft Update Catalog](https://www.catalog.update.microsoft.com/) - Download Previous Windows Updates
|
||||
* [PC Health Check](https://aka.ms/GetPCHealthCheckApp) or [WhyNotWin11](https://github.com/rcmaehl/WhyNotWin11) - Identify why your PC isn't Ready for Windows 11
|
||||
|
@ -406,7 +404,6 @@
|
|||
* [FolderMarker](https://foldermarker.com/), [Flaired Folder](https://flaired-folders.vercel.app/), [CustomFolder](https://www.gdzsoft.com/) - Custom Folder Icons
|
||||
* [Recycle Bin Themes](https://github.com/sdushantha/recycle-bin-themes) - Custom Recycle Bin Icons
|
||||
* [msstyleEditor](https://github.com/nptr/msstyleEditor) - Visual Style Editor
|
||||
* [StartAllBack](https://www.startallback.com/) - Start Menu Customization / [Unlock](https://rentry.co/FMHYBase64#startxback)
|
||||
* [Taskbar Tweaker](https://tweaker.ramensoftware.com/), [TranslucentTB](https://github.com/TranslucentTB/TranslucentTB), [NiceTaskbar](https://www.microsoft.com/en-us/p/nicetaskbar/9pkl2s93xwb5) - Taskbar Customization / [Old School Style](https://github.com/dremin/RetroBar)
|
||||
* [AccentColorizer](https://github.com/krlvm/AccentColorizer) - Accent Color Customization
|
||||
* [BeautySearch](https://github.com/krlvm/BeautySearch) - Search Customization
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
|
||||
# ► Text Tools
|
||||
|
||||
* ↪️ **[Image to Text](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/img-tools#wiki_.25B7_image_to_text_.2F_ocr)**
|
||||
* ↪️ **[Image to Text](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/image-tools#wiki_.25B7_image_to_text_.2F_ocr)**
|
||||
* ↪️ **[Text to Speech](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/ai#wiki_.25B7_text_to_speech)**
|
||||
* ↪️ **[Study / Research](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/edu#wiki_.25B7_study_.2F_research)**
|
||||
* ↪️ **[Data Visualization](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_data_visualization_tools)**
|
||||
|
@ -30,7 +30,7 @@
|
|||
## ▷ Pastebins
|
||||
|
||||
* ⭐ **[Rentry](https://rentry.co/)**, [2](https://rentry.org/) - Markdown Support / [CLI](https://github.com/radude/rentry) / [Styling](https://rentry.co/rentryarchived)
|
||||
* ⭐ **[GitHub Gists](https://gist.github.com/)** - Multi-Syntax / Sign-Up Required
|
||||
* ⭐ **[GitHub Gists](https://gist.github.com/)** or [GitLab Snippets](https://docs.gitlab.com/user/snippets/) - Multi-Syntax / Sign-Up Required
|
||||
* ⭐ **[pastes.dev](https://pastes.dev/)** - Multi-Syntax / Markdown Support / [GitHub](https://github.com/lucko/paste)
|
||||
* ⭐ **[PrivateBin](https://privatebin.net/)**, [2](https://notebin.de/) - Markdown Support / Syntax Highlighting / [Instances](https://privatebin.info/directory) / [GitHub](https://github.com/PrivateBin/PrivateBin)
|
||||
* ⭐ **[Katbin](https://katb.in/)** - Plain Text / [GitHub](https://github.com/sphericalkat/katbin)
|
||||
|
@ -44,6 +44,7 @@
|
|||
* [Paste.ee](https://paste.ee/) - Multi-Syntax / Markdown Support
|
||||
* [pst.moe](https://pst.moe/) - Multi-Syntax / Markdown Support
|
||||
* [dpaste.com](https://dpaste.com/) - Multi-Syntax / Markdown Support
|
||||
* [NoPaste](https://nopaste.boris.sh/) - Multi-Syntax / [GitHub](https://github.com/bokub/nopaste)
|
||||
* [Pastebin.com](https://pastebin.com/) - Multi-Syntax
|
||||
* [pastebin.pl](https://pastebin.pl/) - Multi-Syntax
|
||||
* [CentOS Pastebin](https://paste.centos.org/) - Multi-Syntax
|
||||
|
@ -207,7 +208,7 @@
|
|||
* [Notepads](https://www.notepadsapp.com/) - Text Editor / [GitHub](https://github.com/0x7c13/Notepads)
|
||||
* [FastNotes](https://fastedit.frozenassassine.de/) - Text Editor / [GitHub](https://github.com/FrozenAssassine/Fastedit)
|
||||
* [Kompad](https://kompad.vercel.app/) - Text Editor / [GitHub](https://github.com/hudy9x/kompad)
|
||||
* [Sublime Text](https://www.sublimetext.com/) - Text Editor / [Patcher](https://rentry.co/FMHYBase64#sublime-text) / [Package Manager](https://packagecontrol.io/)
|
||||
* [Sublime Text](https://www.sublimetext.com/) - Text Editor / [Package Manager](https://packagecontrol.io/)
|
||||
* [Zim Wiki](https://zim-wiki.org/) - Wiki Text Editor
|
||||
* [tomboy-ng](https://github.com/tomboy-notes/tomboy-ng) - TomBoy-Based Text Editor
|
||||
|
||||
|
@ -252,7 +253,7 @@
|
|||
|
||||
## ▷ Office Suites
|
||||
|
||||
* ↪️ **[Office Activation](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/system-tools#wiki_.25B7_windows_activation)** / [Guide](https://redd.it/1814gmp) / [Custom Install Guide](https://gravesoft.dev/office_c2r_custom)
|
||||
* ↪️ **[Office Activation](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/system-tools#wiki_.25B7_windows_activation)** / [Custom Install Guide](https://gravesoft.dev/office_c2r_custom)
|
||||
* ⭐ **[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 / [Removal Tool](https://github.com/abbodi1406/WHD/blob/master/scripts/OfficeScrubber_13.zip) / [Hotkeys](https://support.microsoft.com/en-us/office/keyboard-shortcuts-in-microsoft-365-e765366f-24fc-4054-870d-39b214f223fd)
|
||||
|
@ -323,7 +324,6 @@
|
|||
|
||||
* ⭐ **[Google Docs](https://www.google.com/docs/about/)** / [HTML Converter](https://github.com/evbacher/gd2md-html)
|
||||
* ⭐ **[CryptPad](https://cryptpad.fr/)**
|
||||
* ⭐ **[Kludd](https://kludd.co/)**
|
||||
* [Mattermost](https://mattermost.com/)
|
||||
* [Codeshare](https://codeshare.io/)
|
||||
* [HackMD](https://hackmd.io/)
|
||||
|
@ -362,13 +362,14 @@
|
|||
## ▷ Writing Tools
|
||||
|
||||
* 🌐 **[Author Stash](https://authorstash.com/)** - Writing Tools / Resources
|
||||
* ↪️ **[AI Text Generators](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/ai/#wiki_.25BA_text_generators)**
|
||||
* ↪️ **[AI Writing Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/ai#wiki_.25BA_ai_writing_tools)**
|
||||
* ↪️ **[RPG / Fantasy Writing Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/game-tools/#wiki_.25B7_rpg_worldbuilding)**
|
||||
* ⭐ **[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/), [Aurelius](https://aurelius.ink), [ZenPen](https://zenpen.io/), [Write.as](https://write.as/), [Owri](https://owri.netlify.app/), [WriteSpace](https://www.writespace.app/) 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
|
||||
* [Tuesday JS](https://kirill-live.itch.io/tuesday-js) - Visual Novel Editor / [GitHub](https://github.com/Kirilllive/tuesday-js)
|
||||
* ⭐ **[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/) or [jrnl.sh](https://jrnl.sh/) - Journal Apps
|
||||
* ⭐ **[TV Tropes Guide](https://tvtropes.org/pmwiki/pmwiki.php/SoYouWantTo/SeeTheIndex) - Story Writing Tips / Guides
|
||||
* [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/) or [Novelist](https://beta.novelist.app) - Novel Plotting / Editing Workspaces
|
||||
* [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
|
||||
|
@ -417,7 +418,7 @@
|
|||
* ⭐ **[TAAG](https://patorjk.com/software/taag/)**, [DeepAA](https://github.com/OsciiArt/DeepAA), [Kammerl](https://www.kammerl.de/ascii/AsciiSignature.php), [ASCII Art Studio](https://www.majorgeeks.com/files/details/ascii_art_studio.html) or [ASCII Today](https://ascii.today/) - ASCII Art / Text Generators
|
||||
* [REXPaint](https://www.gridsagegames.com/rexpaint/), [Playscii](https://jp.itch.io/playscii) or [PabloDraw](https://picoe.ca/products/pablodraw/) - ASCII Editors
|
||||
* [ASCII Paint](https://ascii.alienmelon.com/) - ASCII Paint Tool
|
||||
* [ascii-art-generator](https://www.ascii-art-generator.org/), [asciiart](https://asciiart.club/), [ascii-image-converter](https://github.com/TheZoraiz/ascii-image-converter), [Monospace](https://codepen.io/Mikhail-Bespalov/pen/JoPqYrz), [ITOA](https://itoa.hex.dance/), [ascii-exploration](https://ascii-exploration.vercel.app/), [text-image](https://www.text-image.com/) or [ASCII-art-creator](https://github.com/CherryPill/ASCII-art-creator) - Image to ASCII Art
|
||||
* [shabzefilters](https://shabzefilters.netlify.app/), [ascii-art-generator](https://www.ascii-art-generator.org/), [asciiart](https://asciiart.club/), [ascii-image-converter](https://github.com/TheZoraiz/ascii-image-converter), [Monospace](https://codepen.io/Mikhail-Bespalov/pen/JoPqYrz), [ITOA](https://itoa.hex.dance/), [ascii-exploration](https://ascii-exploration.vercel.app/), [text-image](https://www.text-image.com/) or [ASCII-art-creator](https://github.com/CherryPill/ASCII-art-creator) - Image to ASCII Art
|
||||
* [Love ASCII](http://loveascii.com/), [asciiart.eu](https://www.asciiart.eu/), [EmojiCombos](https://emojicombos.com/), [16colors](https://16colo.rs/), [ascii.co](https://ascii.co.uk/art) or [RoySAC](http://www.roysac.com/sitemap.html) - Browse / Copy ASCII Art
|
||||
* [Image to Braille](https://505e06b2.github.io/Image-to-Braille/) - Convert Images to Braille
|
||||
* [AnsiLove](https://www.ansilove.org/downloads.html) or [convert-ascii-to-image](https://onlinetools.com/ascii/convert-ascii-to-image) - ANSI / ASCII Art to PNG Converters
|
||||
|
@ -499,11 +500,11 @@
|
|||
|
||||
* ⭐ **[Font Interceptor](https://fontinterceptor.mschfmag.com/)** - Download Fonts from Websites
|
||||
* ⭐ **[FontDrop](https://fontdrop.info/)** - Analyze Font Files
|
||||
* [Adobe Fonts](https://fonts.adobe.com/fonts/vs/upload), [Font Finder](https://www.whatfontis.com/), [WhatTheFont](https://www.myfonts.com/pages/whatthefont), [Identifont](http://www.identifont.com/) - Font Identification Tools
|
||||
* [Fonts Ninja](https://fonts.ninja/tools) or [WhatFont](https://whatfonttool.com/) - Font Identification Extensions
|
||||
* [Unicode Explorer](https://unicode-explorer.com/) or [Compart](https://www.compart.com/en/unicode) - Unicode Character Identification
|
||||
* [Transfonter](https://transfonter.org/) - Create CSS @font-face Kits
|
||||
* [FontBase](https://fontba.se/), [NexusFont](https://www.xiles.app/) or [Linux Font Manager](https://github.com/FontManager/font-manager) - Font Managers
|
||||
* [Adobe Fonts](https://fonts.adobe.com/fonts/vs/upload), [Font Finder](https://www.whatfontis.com/), [WhatTheFont](https://www.myfonts.com/pages/whatthefont), [Identifont](http://www.identifont.com/) - Find Similar Fonts
|
||||
* [Fonts Ninja](https://fonts.ninja/tools) or [WhatFont](https://whatfonttool.com/) - Find Similar Fonts / Extensions
|
||||
* [Unicode Explorer](https://unicode-explorer.com/) or [Compart](https://www.compart.com/en/unicode) - Unicode Character Identification
|
||||
* [Colors & Fonts](https://www.colorsandfonts.com/) - Typography Tools
|
||||
* [DS-Fusion](https://ds-fusion.github.io/) - AI Typography Generator
|
||||
* [Formito](https://formito.com/tools/logo) - Typography Logo Maker
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
***
|
||||
***
|
||||
|
||||
* **Warning** - It's best to avoid torrent sites for software and games, including aggregators that use multiple sources, with the exception of a few listed below. Instead use our sections for [Software](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/download/#wiki_.25BA_software_sites) and [Games](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/games/#wiki_.25BA_download_games).
|
||||
* **Warning** - It's best to avoid torrent sites (including aggregators) for software and games, with the exception of RuTracker and m0nkrus. Instead, you can use our sections for [Software](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/download/#wiki_.25BA_software_sites) and [Games](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/games/#wiki_.25BA_download_games).
|
||||
|
||||
***
|
||||
|
||||
|
@ -12,7 +12,7 @@
|
|||
|
||||
* ⭐ **[RuTracker](https://rutracker.org/)** - Video / Audio / Comics / Magazines / Software / Sign-Up Required
|
||||
* ⭐ **RuTracker Tools** - [Wiki](http://rutracker.wiki/) / [Rules](https://rutracker.org/forum/viewtopic.php?t=1045) / [Translator](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/text-tools/#wiki_.25B7_translators)
|
||||
* ⭐ **[m0nkrus](https://w16.monkrus.ws/)**, [2](https://vk.com/monkrus) - Adobe Software / [Search](https://monkrus.dvuzu.com/) / [Telegram](https://t.me/real_monkrus)
|
||||
* ⭐ **[m0nkrus](https://vk.com/monkrus)** - Adobe / Autodesk Software / [Search](https://monkrus.dvuzu.com/) / [Telegram](https://t.me/real_monkrus)
|
||||
* ⭐ **Adobe Tools** - [GenP](https://rentry.co/FMHYBase64#genp) / [Block Adobe](https://rentry.co/FMHYBase64#a-dove-is-dumb) / [Adobe Guide](https://rentry.co/FMHYBase64#adobe-guide)
|
||||
* [1337x](https://1337x.to/) - Video / Audio / NSFW / [Mirrors](https://1337x-status.org/) / [.onion](http://l337xdarkkaqfwzntnfk5bmoaroivtl6xsbatabvlb52umg6v3ch44yd.onion/)
|
||||
* 1337x Tools - [Telegram Bot](https://t.me/search_content_bot) / [IMDb Ratings](https://github.com/kotylo/1337imdb) / [Display Magnets](https://greasyfork.org/en/scripts/373230) / [Timestamp Fix](https://greasyfork.org/en/scripts/421635)
|
||||
|
@ -33,7 +33,7 @@
|
|||
* ⭐ **[ExT](https://ext.to/)**, [2](https://search.extto.com/) / [Proxy](https://extranet.torrentbay.st/)
|
||||
* ⭐ **[BTDigg](https://btdig.com/)** - DHT-Based / [.i2p](http://btdigg.i2p/) / [.onion](http://btdigggink2pdqzqrik3blmqemsbntpzwxottujilcdjfz56jumzfsyd.onion/)
|
||||
* ⭐ **[Knaben](https://knaben.org/)**
|
||||
* [Torrent CSE](https://cse.google.com/cse?cx=006516753008110874046:0led5tukccj) / [CSE 2](https://cse.google.com/cse?cx=006516753008110874046:kh3piqxus6n) - Multi Site Search
|
||||
* [Trackly](https://trackly.cc/)
|
||||
* [TorrentProject](https://torrentproject.cc/), [2](https://torrentproject2.net/) - DHT-Based
|
||||
* [DaMagNet](https://damag.net/) - DHT-Based
|
||||
* [TorrentDownload](https://www.torrentdownload.info/)
|
||||
|
@ -42,7 +42,6 @@
|
|||
* [Cleanbay](https://cleanbay.netlify.app/)
|
||||
* [CloudTorrents](https://cloudtorrents.com/)
|
||||
* [Torrents-CSV](https://torrents-csv.com/)
|
||||
* [iDope](https://idope.se/)
|
||||
* [FileMood](https://filemood.com/)
|
||||
* [BT4G](https://bt4gprx.com/)
|
||||
* [PiratesParadise](https://piratesparadise.org/)
|
||||
|
@ -50,6 +49,7 @@
|
|||
* [Torlock](https://www.torlock.com/)
|
||||
* [YourBittorrent](https://yourbittorrent.com/)
|
||||
* [BTSearch](https://btsearch.19950817.xyz/en)
|
||||
* [Torrent CSE](https://cse.google.com/cse?cx=006516753008110874046:0led5tukccj) / [CSE 2](https://cse.google.com/cse?cx=006516753008110874046:kh3piqxus6n) - Multi Site Search
|
||||
* [0Mag](https://www.0mag.net/), [2](https://16mag.net/) - Magnet Link Sharing Platform
|
||||
* [Magnetissimo](https://github.com/sergiotapia/magnetissimo) - Magnet Search Web App
|
||||
* [TorrentSearchRobot](https://t.me/TorrentSearchRoBot) or [TorrentHuntBot](https://t.me/torrenthuntbot) - Telegram Torrent Search Bots
|
||||
|
@ -79,7 +79,7 @@
|
|||
|
||||
# ► Torrent Clients
|
||||
|
||||
* **Warning** - Make sure you [BIND](https://gist.github.com/VVispy/765c6723436f386ef113040f8fc968b8) your [VPN](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/adblock-vpn-privacy#wiki_.25BA_vpn) to your client to avoid ISP letters.
|
||||
* **Warning** - Remember to [bind](https://wispydocs.pages.dev/vpn-binding/) your [VPN](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/adblock-vpn-privacy#wiki_.25BA_vpn) to your client to avoid ISP letters.
|
||||
|
||||
***
|
||||
|
||||
|
@ -114,8 +114,6 @@
|
|||
* [qBit Manage](https://github.com/StuffAnThings/qbit_manage) - Manager / Automation Tool
|
||||
* [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 Google Drive](https://colab.research.google.com/github/Xavy-13/qbittorrent/blob/main/qBittorrent.ipynb) - Google Drive Upload Script
|
||||
* [Dark Theme](https://draculatheme.com/qbittorrent) or [iOS Style](https://github.com/ntoporcov/iQbit/) - QBT Themes
|
||||
* [qBitEndpoints](https://rentry.co/qBitEndpoints) - API Endpoints
|
||||
* [Quantum](https://github.com/UHAXM1/Quantum) - Auto Port Updater for Proton
|
||||
|
@ -126,7 +124,6 @@
|
|||
|
||||
* ⭐ **[Seedr](https://www.seedr.cc/)** - [Telegram Bot](https://t.me/TorrentSeedrBot) / [API Wrapper](https://github.com/theabbie/seedr-api), [2](https://github.com/AnjanaMadu/SeedrAPI) - 2GB / Sign-Up Required
|
||||
* ⭐ **[TorBox](https://torbox.app/)** - Freemium / 10GB / 10 Monthly Downloads / Sign-Up Required / [Unofficial Mobile Client](https://github.com/93Pd9s8Jt/atba) / [Subreddit](https://www.reddit.com/r/TorBoxApp/) / [Discord](https://discord.com/invite/wamy) / [GitHub](https://github.com/TorBox-App)
|
||||
* [QBit to Google Drive](https://colab.research.google.com/github/Xavy-13/qbittorrent/blob/main/qBittorrent.ipynb) / [How-To](https://rentry.co/TorrentColab) - Google Colab
|
||||
* [Torrent_To_Google_Drive_Downloader](https://colab.research.google.com/github/FKLC/Torrent-To-Google-Drive-Downloader/blob/master/Torrent_To_Google_Drive_Downloader.ipynb) - Google Colab
|
||||
* [webtor](https://webtor.io/) - No Limit / Download Speed Limited / No Sign-Up
|
||||
* [Multi-Up](https://multiup.io/en/upload/from-torrent) - 10 GB / Sign-Up Required
|
|
@ -39,18 +39,19 @@ To easily see which sites are trusted, and which are unsafe, try the **[FMHY Saf
|
|||
* S0ft4PC / Portable4PC - Caught with malware
|
||||
* CrackingCity - Caught with [malware](https://tria.ge/241021-kfvhhsydpl/behavioral1)
|
||||
* CracksHash - Caught with [malware](https://redd.it/lklst7)
|
||||
* haxNode - Caught with [malware](https://rentry.org/scurvy_malware) / [2](https://www.virustotal.com/gui/file/e6318aa4432c304b234df65f5d87bf2577b930ed68ac7e68efcb76b465dc0784)
|
||||
* haxNode - Caught with [malware](https://claraiscute.github.io/Guides/scurvy_malware/) / [2](https://www.virustotal.com/gui/file/e6318aa4432c304b234df65f5d87bf2577b930ed68ac7e68efcb76b465dc0784)
|
||||
* IGI30 - Caught with malware
|
||||
* 4Download / Download93 - Caught with [malware](https://tria.ge/250116-pcl47azkfw)
|
||||
* MicroTech - Caught with [malware](https://tria.ge/250116-qxj11atmdl)
|
||||
* Softgozar - Caught with [malware](https://tria.ge/250116-ra8aravjfr)
|
||||
* Patoghu - Caught with [malware](https://tria.ge/250116-rrdsgavjbs)
|
||||
* AsanDL - Caught with [malware](https://tria.ge/250117-gac5havkaj/)
|
||||
* Taiwebs - Caught with [scurvy malware](https://www.virustotal.com/gui/file/86aecdf33978f7335c8596229ef21197baf883dec6c8ad39c44780cb1e052bfd)
|
||||
* MainRepo / MRepo - Caught with [malware](https://rentry.co/zu3i6) / Note that Magisk Module MRepo is unrelated
|
||||
* YASDL - Uploaded versions of stardock / jetbrains with malware
|
||||
* AllPCWorld - Uploaded KMS Matrix which is known malware
|
||||
* P30Download - Uploaded version of malwarbytes with known [malware](https://www.virustotal.com/gui/file/01b3bf3f65832f1e9e59ee76964dcf01ac928e51588192607d43319ff070a719) / [2](https://tria.ge/250830-kx75yadp6z/behavioral1).
|
||||
* RSLOAD - Uploaded the same version of malwarebytes that got FileCR in trouble / [utorrent malware](https://i.ibb.co/QXrCfqQ/Untitled.png)
|
||||
* Taiwebs - Uploaded same version of [stardocks](https://pastebin.com/nPjVKYM9), [2](https://imgur.com/a/aeLoaTS) that got FileCR in trouble
|
||||
* Pesktop - Caught with [malware](https://tria.ge/250116-nwnxfszkdq), sources content from [FileCR](https://ibb.co/1KjkKVR), [2](https://imgur.com/a/VS4w6ag), has filecr logo under theirs on some apps.
|
||||
* Appnee - Not very careful with uploads, has multiple [unsafe activators](https://i.imgur.com/ZwjYBfr.png) / [2](https://i.ibb.co/7jKVtSR/ZwjYBfr.png)
|
||||
* AppValley / TutuBox / Ignition - History of [ddos attacks](https://github.com/fmhy/edit/pull/307)
|
||||
|
@ -90,7 +91,7 @@ To easily see which sites are trusted, and which are unsafe, try the **[FMHY Saf
|
|||
* Kik (messaging app) - App used by mostly [predators / scammers](https://youtu.be/9sPaJxRmIPc)
|
||||
* Flix Vision - Malicious app that [remotely enables TraffMonetizer](https://github.com/fmhy/edit/issues/2835)
|
||||
* TLauncher (minecraft launcher) - [Shady](https://redd.it/zmzzrt) business practices / Note that TLauncher Legacy and ATLauncher are unrelated
|
||||
* GShade (ReShade mod) - Dev added code that can trigger unwanted [reboots](https://rentry.co/GShade_notice)
|
||||
* GShade (ReShade mod) - Dev added code that can trigger unwanted [reboots](https://claraiscute.github.io/Guides/gshade_notice/)
|
||||
* TotalAV / PC Protect / Protected - Antivirus Software [Scam](https://www.malwarebytes.com/blog/detections/pup-optional-totalav) / [2](https://www.malwarebytes.com/blog/detections/pup-optional-pcprotect) / [3](https://youtu.be/PcS3EozgyhI)
|
||||
* Watchug / Watchugofficial - Scammers that pretend their domain is for sale, then just block users after they've paid
|
||||
|
|
@ -14,6 +14,7 @@
|
|||
* [VideoHelp Forum](https://forum.videohelp.com/) - All Things Media / Video
|
||||
* [ICAT](https://www.nvidia.com/en-us/geforce/technologies/icat/) - Video Quality Comparison & Analysis Tool
|
||||
* [videoduplicatefinder](https://github.com/0x90d/videoduplicatefinder) - Duplicate Video Finder
|
||||
* [MP4Recover](https://github.com/ActiveTK/MP4Recover) - Recover Broken MP4 Files
|
||||
* [VHS Decode](https://github.com/oyvindln/vhs-decode) - VHS Decoder
|
||||
* [VidClue](https://vidclue.com/) - Short Form Video Inspiration
|
||||
|
||||
|
@ -28,6 +29,7 @@
|
|||
* [PgcDemux](https://www.videohelp.com/software/PgcDemux) - DVD Disk Demuxer
|
||||
* [BatchGuy](https://github.com/yaboy58/BatchGuy) - Blu-ray Ripping
|
||||
* [UHD Drives Flashing Guide](https://forum.makemkv.com/forum/viewtopic.php?f=16&t=19634)
|
||||
* [Redump](http://redump.org/) - Disc Preservation Project
|
||||
|
||||
***
|
||||
|
||||
|
@ -49,6 +51,9 @@
|
|||
* [FileMoon](https://filemoon.sx/), [2](https://filemoon.in/), [3](https://filemoon.to/) - 50GB / 40TB per account / Forever / Sign-Up Required
|
||||
* [Hexupload](https://hexload.com/) or [AnonTransfer](https://anontransfer.com/) - 15GB / 30 Days
|
||||
* [Vidoza](https://vidoza.net/) - 15GB / 15 Days / Sign-Up Required
|
||||
* [Vidmoly](https://vidmoly.me/) - 15TB / 1 Year
|
||||
* [Streamplay](https://streamplay.to/) - 30TB / 20GB
|
||||
* [Luluvdoo](https://luluvdoo.com/) - 15GB / 60 Days Since Last Download
|
||||
* [Streamtape](https://streamtape.com/) - 15GB / Sign-Up Required / [.to](https://streamtape.to/)
|
||||
* [Darkibox](https://darkibox.com/) - 10GB / 53 Days
|
||||
* [Dubz](https://dubz.co/) - 100MB / Forever
|
||||
|
@ -81,9 +86,8 @@
|
|||
* ⭐ **[FFmpeg](https://ffmpeg.org/)** - Multimedia Processors / Windows, Mac, Linux / [GitHub](https://github.com/FFmpeg/FFmpeg) / [Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/video-tools#wiki_.25B7_ffmpeg_tools)
|
||||
* ⭐ **[Shutter Encoder](https://www.shutterencoder.com/)** - Video Encoding Software / Windows, Mac, Linux / [GitHub](https://github.com/paulpacifico/shutter-encoder)
|
||||
* ⭐ **[MKVToolNix](https://mkvtoolnix.download/)** - MKV Editing Tools / Windows, Mac, Linux
|
||||
* ⭐ **[archived-things](https://sometimes-archives-things.github.io/archived-things/)**, [Codec Wiki](https://wiki.x266.mov/) / [Discord](https://discord.gg/bbQD5MjDr3) / [GitHub](https://github.com/av1-community-contributors/codec-wiki), [The Encoding Guide](https://encoding-guide.neocities.org/) or [Silentaperture](https://silentaperture.gitlab.io/mdbook-guide/) - Video Encoding Guides
|
||||
* ⭐ **[Disc Ripping Guide](https://nullish.cat/blog/disc-rip)**, [2](https://rentry.org/disc-rip) - Disc Ripping Guide
|
||||
* ⭐ **[Basics to the Art of Remuxing](https://rentry.co/Remuxing)** - Learn How to Remux Videos
|
||||
* ⭐ **[archived-things](https://sometimes-archives-things.github.io/archived-things/)**, [Codec Wiki](https://wiki.x266.mov/) / [Discord](https://discord.gg/bbQD5MjDr3) / [GitHub](https://github.com/av1-community-contributors/codec-wiki), [JET Guide](https://jaded-encoding-thaumaturgy.github.io/JET-guide/master/), [The Encoding Guide](https://encoding-guide.neocities.org/) or [Silentaperture](https://silentaperture.gitlab.io/mdbook-guide/) - Video Encoding Guides
|
||||
* ⭐ **[Basics to the Art of Remuxing](https://rentry.co/remuxing)** - Learn How to Remux Videos
|
||||
* [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 / Windows, Linux
|
||||
* [IFME](https://github.com/Anime4000/IFME) - Video Encoding / Windows, Linux
|
||||
|
@ -102,7 +106,7 @@
|
|||
## ▷ Online Processing
|
||||
|
||||
* [Compress Video Online](https://compress-video-online.com/) - Compress / Unlimited
|
||||
* [8mb.video](https://8mb.video/) - Compress / 2GB
|
||||
* [8mb.video](https://8mb.video/) - Compress / 2GB / [Discord](https://discord.com/invite/UzmzPfX)
|
||||
* [autocompressor](https://autocompressor.net/) - Compress / 2GB
|
||||
* [Rotato](https://tools.rotato.app/) - Compress / 2GB
|
||||
* [VideoSmaller](https://www.videosmaller.com/) - Compress / 500MB
|
||||
|
@ -118,7 +122,7 @@
|
|||
## ▷ FFmpeg Tools
|
||||
|
||||
* [FFmpeg-Builds](https://github.com/BtbN/FFmpeg-Builds) or [media-autobuild_suite](https://github.com/m-ab-s/media-autobuild_suite) - Autobuild Tools
|
||||
* [ffmpeg-web](https://ffmpeg-web.netlify.app/) - FFmpeg Web App / [GitHub](https://github.com/Dinoosauro/ffmpeg-web)
|
||||
* [ffmpeg-web](https://ffmpeg-web.netlify.app/) or [ffmpeg.gcc](https://ffmpeg.gcc.ac.cn/) - FFmpeg Web App / [GitHub](https://github.com/Dinoosauro/ffmpeg-web)
|
||||
* [FFmpeg Libav](https://github.com/leandromoreira/ffmpeg-libav-tutorial) or [ffmprovisr](https://amiaopensource.github.io/ffmprovisr/) - FFmpeg Guides
|
||||
* [ASM Lessons](https://github.com/FFmpeg/asm-lessons) - FFmpeg Assembly Language Lessons / Multiple Langauges
|
||||
* [FFmpeg Cheat Sheet](https://gist.github.com/steven2358/ba153c642fe2bb1e47485962df07c730), [FFmpeg Commander](https://alfg.dev/ffmpeg-commander/) or [FFmpeg Buddy](https://evanhahn.github.io/ffmpeg-buddy/) - Command Lists
|
||||
|
@ -146,7 +150,6 @@
|
|||
* [Strem](https://github.com/strem-app/strem) - Stream Automation
|
||||
* [ppInk](https://github.com/PubPub-zz/ppInk/), [AnnotateWeb](https://annotateweb.com/), [glnk](https://github.com/geovens/gInk), [Annotate Screen](https://annotatescreen.com/) or [Live Draw](https://github.com/antfu/live-draw) - Screen Annotation
|
||||
* [Amuse](https://6klabs.com/amuse) or [Songify](https://songify.overcode.tv/) - Now Playing Overlays
|
||||
* [StreamPi](https://stream-pi.com/) - 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
|
||||
|
||||
|
@ -164,10 +167,11 @@
|
|||
* [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
|
||||
* [VSeeFace](https://www.vseeface.icu/) - Face / Hand Tracking VRM
|
||||
|
||||
***
|
||||
|
||||
## ▷ [Subtitle Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/video#wiki_.25BA_subtitles)
|
||||
## ▷ [Subtitle Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/video#wiki_.25BA_subtitle_tools)
|
||||
|
||||
***
|
||||
|
||||
|
@ -199,11 +203,9 @@
|
|||
* [MoonPlayer](https://github.com/coslyk/moonplayer) - Video Player
|
||||
* [KikoPlay](https://kikoplay.fun/) - Video Player
|
||||
* [Plyr](https://plyr.io/) - Online HTML5, YouTube and Vimeo Player / [GitHub](https://github.com/sampotts/plyr)
|
||||
* [PlayVideo](https://playvideos.pages.dev/) - Google Drive Video Player
|
||||
* [panoptic](https://panoptic.live/) - Watch Multiple Live Streams At Once
|
||||
* [MotionMonkey](https://omega.gg/MotionMonkey/) - Stream Online Videos in Player
|
||||
* [StreamLink](https://streamlink.github.io/) - Extract Videos from Sites to Players / [Twitch Adblock](https://github.com/2bc4/streamlink-ttvlol) / [GitHub](https://github.com/streamlink/streamlink)
|
||||
* [Hohoema](https://github.com/tor4kichi/Hohoema) - Nico Nico Video Player
|
||||
* [polsy.org.uk](https://polsy.org.uk/) - Alt Players for Video Sites
|
||||
|
||||
***
|
||||
|
@ -272,6 +274,7 @@
|
|||
* [Fixarr](https://github.com/sachinsenal0x64/fixarr) - Media Server File Renamer
|
||||
* [HTPC Download Box](https://github.com/sebgl/htpc-download-box) - Media Server Automation
|
||||
* [Huntarr](https://github.com/plexguide/Huntarr.io) - Automate Media Server Missing Content / Quality Upgrades / [Discord](https://discord.com/invite/PGJJjR5Cww)
|
||||
* [Seanime](https://seanime.app/) - Anime Server
|
||||
* [Plex](https://www.plex.tv/) - Media Server
|
||||
* [Emby](https://emby.media/) - Media Server
|
||||
* [Universal Media Server](https://www.universalmediaserver.com/) - Media Server
|
||||
|
@ -284,7 +287,6 @@
|
|||
* [Kyoo](https://github.com/zoriya/Kyoo) - Media Server
|
||||
* [Chocolate](https://github.com/ChocolateApp/Chocolate) - Media Server
|
||||
* [Media-Hoarder](https://github.com/theMK2k/Media-Hoarder) - Media Catalog Frontend
|
||||
* [Seanime](https://seanime.rahim.app/) - Anime Server
|
||||
* [Frames](https://github.com/Eleven-am/frames) - Google Drive 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
|
||||
|
@ -301,7 +303,7 @@
|
|||
* [Tautulli](https://tautulli.com/) - Server Monitor / [Note](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#tautulli-note)
|
||||
* [SuperPlex](https://normantheidiot.neocities.org/superplex/) - Plex Plugins
|
||||
* [Kitana](https://github.com/pannal/Kitana) - Plugin Frontend
|
||||
* [Plex Ripper](https://www.plexripper.rocks/) - Merge Plex Libraries w/ Your Own
|
||||
* [Reaparr](https://www.reaparr.rocks/) - Merge Plex Libraries w/ Your Own
|
||||
* [PlexDrive](https://github.com/plexdrive/plexdrive) or [mergerfs](https://docs.ultra.cc/books/rclone/page/rclone-vfs-and-mergerfs-setup) - Mount Google Drive
|
||||
* [SyncLounce](https://synclounge.tv/) - Media Sync
|
||||
* [PseudoTV](https://github.com/DEFENDORe/pseudotv) - Create TV Channels
|
||||
|
@ -313,7 +315,7 @@
|
|||
## ▷ Jellyfin Tools
|
||||
|
||||
* 🌐 **[Awesome Jellyfin](https://github.com/awesome-jellyfin/awesome-jellyfin)** - Jellyfin Resources
|
||||
* ⭐ **[Fladder](https://github.com/DonutWare/Fladder/)** - Desktop Client / Windows, Linux, Mac, Android, iOS
|
||||
* ⭐ **[Fladder](https://github.com/DonutWare/Fladder/)** - Desktop Client / Windows, Mac, Linux, Android, iOS
|
||||
* [Blink](https://github.com/prayag17/Blink) - Desktop Client
|
||||
* [jellyfin-media-player](https://github.com/jellyfin/jellyfin-media-player) - Desktop Client
|
||||
* [r/JellyfinShare](https://www.reddit.com/r/JellyfinShare/) - Jellyfin Server Sharing
|
||||
|
@ -380,7 +382,7 @@
|
|||
|
||||
* ⭐ **[LosslessCut](https://github.com/mifi/lossless-cut)** - Video Editor
|
||||
* ⭐ **[kdenlive](https://kdenlive.org/en/)** - Video Editor / [GitHub](https://github.com/KDE/kdenlive)
|
||||
* ⭐ **[DaVinci Resolve](https://www.blackmagicdesign.com/products/davinciresolve)** - Video Editor / Sign-Up Required
|
||||
* ⭐ **[DaVinci Resolve](https://www.blackmagicdesign.com/products/davinciresolve)** - Video Editor / Sign-Up Required / Fake Info Works
|
||||
* ⭐ **[Shotcut](https://shotcut.org/)** - Video Editor / [GitHub](https://github.com/mltframework/shotcut)
|
||||
* [Auto-Editor](https://auto-editor.com/) - CLI Editor
|
||||
* [MoviePy](https://zulko.github.io/moviepy/) - Python Editor
|
||||
|
@ -401,7 +403,6 @@
|
|||
* [suckless-cut](https://github.com/couleur-tweak-tips/suckless-cut) or [vidcutter](https://github.com/ozmartian/vidcutter) - Cut / Trim Videos
|
||||
* [Opus](https://www.opus.pro/) - Clip Creator
|
||||
* [Kurku](https://app.kurku.tech/) or [FreeMoCap](https://freemocap.org/) - Motion Tracking Tools
|
||||
* [VSeeFace](https://www.vseeface.icu/) - Face / Hand Tracking VRM
|
||||
|
||||
***
|
||||
|
||||
|
@ -447,7 +448,7 @@
|
|||
* [Team V.R releases](https://rentry.co/FMHYBase64#team-vr)
|
||||
* [flex_cg_vfx](https://t.me/flex_cg_vfx)
|
||||
* [VFXLoot](https://vfxloot.com/)
|
||||
* [Download Pirate](https://www.downloadpirate.com/) - **Use Adblock / Avoid Fake Download Buttons** / [Discord](https://discord.gg/ucTvVtBz9Z)
|
||||
* [Download Pirate](https://www.downloadpirate.com/) - **Use [Adblock](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/adblock-vpn-privacy/#wiki_.25BA_adblocking)** / [Discord](https://discord.gg/ucTvVtBz9Z)
|
||||
* [ShareAE](https://www.shareae.com/) - After Effects
|
||||
* [HunterAE](https://hunterae.com/) - After Effects
|
||||
* [AETemp](https://t.me/AETemp) - After Effects
|
||||
|
|
|
@ -6,100 +6,96 @@
|
|||
|
||||
# ► Streaming Sites
|
||||
|
||||
* **Note** - Check our [grading system](https://github.com/fmhy/FMHY/wiki/Stream-Site-Grading) to see scores for each site, as well as their respective pros & cons, and remember to use throwaway emails or [aliasing](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/internet-tools/#wiki_.25B7_email_aliasing) when signing up for streaming sites. Try a VPN if sites are blocked for you.
|
||||
* **Note** - Check our [grading system](https://github.com/fmhy/FMHY/wiki/Stream-Site-Grading) to see scores for each site, as well as their respective pros & cons. Remember to use [throwaway emails](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/internet-tools/#wiki_.25B7_temp_mail) or [aliases](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/internet-tools/#wiki_.25B7_email_aliasing) when signing up for streaming sites. Try a [VPN](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/adblock-vpn-privacy/#wiki_.25BA_vpn) if sites are blocked for you.
|
||||
|
||||
***
|
||||
|
||||
* ⭐ **[Cineby](https://www.cineby.app/)**, [2](https://www.bitcine.app/) or [Fmovies+](https://www.fmovies.gd/) - Movies / TV / Anime / Auto-Next / Watch Parties / [Discord](https://discord.gg/C2zGTdUbHE)
|
||||
* ⭐ **[XPrime](https://xprime.tv/)**, [2](https://xprime.today/) - Movies / TV / Anime / Auto-Next / Watch Parties / [Discord](https://discord.gg/ZKcN9KNdn6)
|
||||
* ⭐ **[P-Stream](https://pstream.mov/)** - Movies / TV / Anime / Auto-Next / Watch Parties / [Notes](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#movie-web) / [Discord](https://discord.gg/uHU4knYRPa) / [GitHub](https://github.com/p-stream)
|
||||
* ⭐ **[VeloraTV](https://veloratv.ru/)** or [456movie](https://456movie.net/), [2](https://345movie.net/) - Movies / TV / Anime / Auto-Next / Watch Parties / [Discord](https://discord.gg/4SJ5c9gZUQ)
|
||||
* ⭐ **[SpenFlix](https://watch.spencerdevs.xyz/)**, [2](https://spenflix.ru/) - Movies / TV / Anime / Auto-Next / Watch Parties / [Discord](https://discord.gg/RF8vMBRtTs)
|
||||
* ⭐ **[Flixer](https://flixer.su/)**, [Hexa](https://hexa.watch/) or [Vidora](https://watch.vidora.su/) - Movies / TV / Anime / Auto-Next / Watch Parties / [Discord](https://discord.com/invite/yvwWjqvzjE)
|
||||
* [Rive](https://rivestream.org/), [2](https://rivestream.net/) or [CorsFlix](https://watch.corsflix.net/), [2](https://corsflix.net/), [3](https://watch.corsflix.dpdns.org/) - Movies / TV / Anime / Auto-Next / [Status](https://rentry.co/rivestream) / [Discord](https://discord.gg/6xJmJja8fV)
|
||||
* [FlickyStream](https://flickystream.net) or [CineMora](https://cinemora.ru/) - Movies / TV / Anime / [Telegram](https://t.me/FlickyStream) / [Discord](https://discord.gg/M7y867cg)
|
||||
* [1Shows](https://www.1shows.ru/) or [RgShows](https://www.rgshows.me/) - Movies / TV / Anime / [Auto Next](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#rgshows-autoplay) / [Guide](https://www.rgshows.me/guide.html) / [Discord](https://discord.com/invite/K4RFYFspG4)
|
||||
* ⭐ **[Flixer](https://flixer.su/)** / [2](https://flixy.watch/), [Hexa](https://hexa.watch/) or [Vidora](https://watch.vidora.su/) - Movies / TV / Anime / Auto-Next / Watch Parties / [Discord](https://discord.com/invite/yvwWjqvzjE)
|
||||
* [Rive](https://rivestream.org/), [2](https://rivestream.net/), [3](https://www.rivestream.app/) or [CorsFlix](https://watch.corsflix.net), [2](https://watch.corsflix.dpdns.org/), [3](https://corsflix.net) - Movies / TV / Anime / Auto-Next / [Status](https://rentry.co/rivestream) / [Discord](https://discord.gg/6xJmJja8fV)
|
||||
* [1Shows](https://www.1shows.ru/), [1Flex](https://www.1flex.ru/) or [RgShows](https://www.rgshows.me/) - Movies / TV / Anime / [Auto Next](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#rgshows-autoplay) / [Guide](https://www.rgshows.me/guide.html) / [Discord](https://discord.com/invite/K4RFYFspG4)
|
||||
* [FlickyStream](https://flickystream.net) or [CineMora](https://cinemora.ru/) - Movies / TV / Anime / [Telegram](https://t.me/FlickyStream) / [Discord](https://discord.com/invite/flickystream)
|
||||
* [Cinegram](https://cinegram.net/) - Movies / TV / Anime / Auto-Next
|
||||
* [Netplay](https://netplayz.live/) - Movies / TV / Anime / Auto-Next / [Discord](https://discord.gg/NCH4rzxJ36)
|
||||
* [PopcornMovies](https://popcornmovies.org/) - Movies / TV / Anime / [Discord](https://discord.com/invite/JAxTMkmcpd)
|
||||
* [FileCave](https://filmcave.net/) - Movies / TV / Anime / Auto-Next / [Telegram](https://t.me/fmcave) / [Discord](https://discord.gg/BtpYzMbDjH)
|
||||
* [Vidjoy](https://vidjoy.pro/) - Movies / TV / Anime / Auto-Next
|
||||
* [FilmCave](https://filmcave.net/) - Movies / TV / Anime / Auto-Next / [Telegram](https://t.me/fmcave) / [Discord](https://discord.gg/BtpYzMbDjH)
|
||||
* [Smashystream](https://smashystream.xyz/), [2](https://flix.smashystream.xyz/) - Movies / TV / Anime / [Telegram](https://telegram.me/+vekZX4KtMPtiYmRl) / [Discord](https://discord.com/invite/tcdcxrbDkE)
|
||||
* [StreamM4u](https://streamm4u.com.co/) - Movies / TV / Anime / [Clones](https://rentry.co/sflix#streamm4u-clones)
|
||||
* [CineGo](https://cinego.co/) - Movies / TV
|
||||
* [BFLIX](https://bflix.sh/) - Movies / TV
|
||||
* [MovieHD](https://moviehd.us) - Movies / [Telegram](https://t.me/+NthvAOpP0oNkMWU1)
|
||||
* [PrimeWire](https://www.primewire.mov/), [2](https://www.primewire.tf/) - Movies / TV / Anime / 3rd Party Hosts
|
||||
* [StreamDB](https://streamdb.online/) - Movies / TV / 3rd Party Hosts / [Telegram](https://t.me/streamdb_online)
|
||||
* [SoaPy](https://soapy.to/) - Movies / TV / Anime
|
||||
* [ProjectFreeTV](https://projectfreetv.sx/) - Movies / TV / Anime / 3rd Party Hosts
|
||||
* [Downloads-Anymovies](https://www.downloads-anymovies.co/) - Movies / 3rd Party Hosts
|
||||
* [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
|
||||
|
||||
***
|
||||
|
||||
## ▷ API Frontends
|
||||
## ▷ Stream Aggregators
|
||||
|
||||
* **Note** - These serve as frontends or user interfaces for API sites. Sources will vary from site to site depending on which ones owners feel are worth using. Many listed have custom players that automatically test API streams one by one without user input required.
|
||||
* **Note** - These serve as interfacess for multiple stream providers or APIs. Many have custom players that auto test streams one-by-one without user input required. Sources vary site-to-site depending on which owners feel are worth using. See [website grading](https://github.com/fmhy/FMHY/wiki/Stream-Site-Grading#stream-aggregators) for scores.
|
||||
|
||||
***
|
||||
|
||||
* ⭐ **[P-Stream](https://pstream.mov/)** - Movies / TV / Anime / Auto-Next / Watch Parties / [Alts](https://erynith.github.io/movie-web-instances/) / [Notes](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#movie-web) / [Discord](https://discord.gg/uHU4knYRPa) / [GitHub](https://github.com/p-stream)
|
||||
* ⭐ **[BEECH](https://beech.watch/)** or [Mocine](https://mocine.cam/) - Movies / TV / Anime / Auto-Next / Watch Parties / [Discord](https://discord.gg/FekgaSAtJa)
|
||||
* ⭐ **[CinemaOS](https://cinemaos.live/)**, [2](https://cinemaos.tech/), [3](https://cinemaos.me/) - Movies / TV / Anime / Auto-Next / Watch Parties / [Discord](https://discord.gg/38yFnFCJnA)
|
||||
* [Vidbox](https://vidbox.to/) - Movies / TV / Anime / Auto-Next / [Discord](https://discord.gg/VGQKGPM9Ej)
|
||||
* [Willow](https://willow.arlen.icu/), [2](https://salix.pages.dev/) - Movies / TV / Anime / [4K Guide](https://rentry.co/willow-guide) / [Discord](https://discord.com/invite/gmXvwcmxWR)
|
||||
* ⭐ **[Aether](https://aether.mom/)** - Movies / TV / Anime / Auto-Next / Watch Parties / [Discord](https://discord.gg/MadMF7xb5q)
|
||||
* ⭐ **[Filmex](https://filmex.to/)**, [2](https://fmovies4u.com/) - Movies / TV / Anime / Auto-Next / [Discord](https://discord.com/invite/WWrWnG8qmh)
|
||||
* [Vidbox](https://vidbox.to/), [2](https://cinehd.cc/) - Movies / TV / Anime / Auto-Next / [Discord](https://discord.gg/VGQKGPM9Ej)
|
||||
* [Primeshows](https://www.primeshows.live/) - Movies / TV / Anime / [Discord](https://discord.com/invite/t2PnzRgKeM)
|
||||
* [Willow](https://willow.arlen.icu/), [2](https://salix.pages.dev/) - Movies / TV / Anime / [4K Guide](https://rentry.co/willow-guide) / [Telegram](https://t.me/+8OiKICptQwA4YTJk) / [Discord](https://discord.com/invite/gmXvwcmxWR)
|
||||
* [VLOP](https://www.vlop.fun/) - Movies / TV / Anime / Watch Parties / [Telegram](https://t.me/vlopstreaming) / [Discord](https://discord.gg/GzXQWKUbjh)
|
||||
* [Mapple.tv](https://mapple.mov/) - Movies / TV / Anime / Watch Parties / [Discord](https://discord.gg/V8XUhQb2MZ)
|
||||
* [HydraHD](https://hydrahd.io/) - Movies / TV / Anime / Auto-Next / [Status](https://hydrahd.info/)
|
||||
* [Cinezo](https://www.cinezo.net/) - Movies / TV / Anime / Watch Parties / [Discord](https://discord.gg/k6QxBBzr)
|
||||
* [Mapple.tv](https://mapple.tv/) - Movies / TV / Anime / Watch Parties / [Discord](https://discord.gg/V8XUhQb2MZ)
|
||||
* [Netplay](https://netplayz.live/) - Movies / TV / Anime / Auto-Next / [Discord](https://discord.gg/NCH4rzxJ36)
|
||||
* [Cinezo](https://www.cinezo.net/) - Movies / TV / Anime / Watch Parties / [Discord](https://discord.gg/Gx27YMK73d)
|
||||
* [ViewVault](https://viewvault.org/) - Movies / TV / Anime
|
||||
* [MovieMaze](https://moviemaze.cc/) - Movies / TV / Anime
|
||||
* [Nunflix](https://nunflix.org/), [2](https://nunflix-firebase.web.app/), [3](https://nunflix-ey9.pages.dev/), [4](https://nunflix-firebase.firebaseapp.com/) - Movies / TV / Anime / Watch Parties / [Docs](https://nunflix-doc.pages.dev/) / [Discord](https://discord.gg/CXVyfhgn26)
|
||||
* [Nunflix](https://nunflix.org/), [2](https://nunflix-ey9.pages.dev/) - Movies / TV / Anime / Watch Parties / [Docs](https://nunflix-doc.pages.dev/) / [Discord](https://discord.gg/CXVyfhgn26)
|
||||
* [Hopfly](https://watch.hopfly.site/) - Movies / TV / Anime
|
||||
* [Maxflix](https://maxflix.top/) - Movies / TV / Anime
|
||||
* [7Xtream](https://movies.7xtream.com/), [2](https://cinema.7xtream.com/), [3](https://movies2.7xtream.com/) - Movies / TV / Anime / [Auto Next Note](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#7xtream-autoplay) / [Discord](https://discord.gg/TXqWTKeAAu)
|
||||
* [AlienFlix](https://alienflix.net/), [2](https://hexawatch.cc/) - Movies / TV / Anime
|
||||
* [Cinepeace](https://cinepeace.in/) - Movies / TV / Anime
|
||||
* [Vidjoy](https://vidjoy.pro/) - Movies / TV / Anime / Auto-Next
|
||||
* [Redflix](https://redflix.co/), [2](https://redflix.club/) - Movies / TV / Anime / [Discord](https://discord.gg/wp5SkSWHW5)
|
||||
* [PopcornMovies](https://popcornmovies.org/) - Movies / TV / Anime / [Discord](https://discord.com/invite/JAxTMkmcpd)
|
||||
* [Maxflix](https://maxflix.top/) - Movies / TV / Anime
|
||||
* [TMovie](https://tmovie.tv/) - Movies / TV / Anime / [Discord](https://discord.com/invite/R7a6yWMmfK)
|
||||
* [1PrimeShows](https://1primeshow.online/) - Movies / TV / Anime / [Discord](https://discord.gg/7JKJSbnHqf)
|
||||
* [Cinema Deck](https://cinemadeck.com/), [2](https://cinemadeck.st/) - Movies / TV / Anime / [Status](https://cinemadeck.com/official-domains) / [Discord](https://discord.com/invite/tkGPsX5NTT)
|
||||
* [AlienFlix](https://alienflix.net/), [2](https://hexawatch.cc/) - Movies / TV / Anime
|
||||
* [Purplix](https://neoxa.transdev.pw/), [2](https://purplix.transdev.pw/), [3]( https://tv.starnode.host/) - Movies / TV / Anime / [Discord](https://discord.com/invite/PwMYXRpWBD)
|
||||
* [Filmex](https://filmex.to/) - Movies / TV / Anime / [Discord](https://discord.com/invite/WWrWnG8qmh)
|
||||
* [CineBolt](https://cinebolt.net/) - Movies / TV / Anime / [Discord](https://discord.gg/7ZbCzMPt6f)
|
||||
* [Wooflix](https://www.wooflixtv.co/) - Movies / TV / Anime
|
||||
* [Arabflix](https://www.arabiflix.com/) - Movies / TV / Anime / [Discord](https://discord.gg/AMQdQehThg)
|
||||
* [KaitoVault](https://www.kaitovault.com/) - Movies / TV / Anime
|
||||
* [Yampi](https://yampi.live/) - Movies / TV / Anime
|
||||
* [M-Zone](https://www.m-zone.org/) - Movies / TV / Anime / [Discord](https://discord.com/invite/PFvCNcZCQC)
|
||||
* [Lekuluent](https://lekuluent.et/) - Movies / TV / Anime
|
||||
* [MoviePluto](https://moviepluto.fun/) - Movies / TV / Anime / [Discord](https://discord.com/invite/ynfvjgHrBd)
|
||||
* [Cinema Deck](https://cinemadeck.com/), [2](https://cinemadeck.st/) - Movies / TV / Anime / [Status](https://cinemadeck.com/official-domains) / [Discord](https://discord.com/invite/tkGPsX5NTT)
|
||||
* [Flicker](https://flickermini.pages.dev/), [2](https://flickeraddon.pages.dev/) - Movies / TV / Anime / [Subreddit](https://www.reddit.com/r/flickermini/)
|
||||
* [Flicker](https://flickermini.pages.dev/), [2](https://flickeraddon.pages.dev/) - Movies / TV / Anime / [Proxy](https://flickerminiproxy.pages.dev/) / [Note](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#flicker-proxy) / [Subreddit](https://www.reddit.com/r/flickermini/)
|
||||
* [Altair](https://altair.mollusk.top/) or [Nova](https://novastream.top/) - Movies / TV / [Discord](https://discord.gg/s9kUZw7CqP) / [GitHub](https://github.com/ambr0sial/nova/)
|
||||
* [Autoembed](https://watch.autoembed.cc/) - Movies / TV / Anime / Drama / [Discord](https://discord.gg/BWDSXV9aX4)
|
||||
* [Ask4Movies](https://ask4movie.app/) - Movies / TV / Anime
|
||||
* [CineGo](https://cinego.co/) - Movies / TV
|
||||
* [Novafork](https://novafork.cc/) - Movies / TV / [GitHub](https://github.com/noname25495/novafork)
|
||||
* [PlayIMDb](https://www.playimdb.com/) - Search VidSrc via IMDb URLs / Official Frontend
|
||||
* [SoaPy](https://soapy.to/) - Movies / TV / Anime
|
||||
|
||||
***
|
||||
|
||||
## ▷ Single Server
|
||||
|
||||
* **Note** - These are generally good in terms of speed, consistency, and having less mislabeled content. Many listed also remove and or fix any broken links manually.
|
||||
* **Note** - These are generally good in terms of speed, consistency, and having less mislabeled content. Many also remove and/or fix broken links manually. See [website grading](https://github.com/fmhy/FMHY/wiki/Stream-Site-Grading#single-server) for scores.
|
||||
|
||||
***
|
||||
|
||||
* [Qstream](https://qstream.pages.dev/) - Movies / TV / Anime
|
||||
* [yFlix](https://yflix.to/) - Movies / TV / Anime / Auto-Next / [Clones](https://rentry.co/sflix#yflix-clones)
|
||||
* [EE3](https://ee3.me/), [2](https://rips.cc/) - Movies / Invite Code: `fmhy` / Sign-Up Required
|
||||
* [NEPU](https://nepu.to/) - Movies / TV / Anime / Auto-Next / [Discord](https://discord.gg/nepu)
|
||||
* [PoorFlix](https://poorflix.net/) - Movies / TV / Anime / [Telegram](https://t.me/Poorflix_net)
|
||||
* [Movies7](https://movies7.im/) - Movies / TV / Auto-Next
|
||||
* ⭐ **[yFlix](https://yflix.to/)** or [1Movies](https://1movies.bz/) - Movies / TV / Anime / Auto-Next / [Clones](https://rentry.co/sflix#yflix-clones)
|
||||
* ⭐ **[EE3](https://ee3.me/)** or [RIPS](https://rips.cc/) - Movies / Invite Code: `fmhy` / Sign-Up Required
|
||||
* ⭐ **[Qstream](https://qstream.pages.dev/)** - Movies / TV / Anime
|
||||
* ⭐ **[NEPU](https://nepu.to/)** - Movies / TV / Anime / Auto-Next / [Discord](https://discord.gg/nepu)
|
||||
* [LookMovie](https://lookmovie2.to/) - Movies / TV / Auto-Next / 480p / [Clones](https://proxymirrorlookmovie.github.io/)
|
||||
* [Soaper](https://soaper.live/), [2](https://soaker.tv/) - Movies / TV / Anime / Auto-Next / [Mirrors](https://www.soaperpage.com/)
|
||||
* [Vidsrc.cx](https://vidsrc.cx/) - Movies / TV
|
||||
* [RidoMovies](https://ridomovies.tv/) - Movies / TV
|
||||
* [24Drama](https://24drama.to/) - Movies / TV / Anime / 720p
|
||||
* [OnionPlay](https://onionplay.ch/) - Movies / TV / [Discord](https://discord.com/invite/4QxywT32Uz)
|
||||
* [OnionPlay](https://onionplay.mx/) - Movies / TV / [Discord](https://discord.com/invite/4QxywT32Uz)
|
||||
* [Mp4Hydra](https://mp4hydra.org/), [2](https://mp4hydra.top/) - Movies
|
||||
* [ShowBox](https://www.showbox.media/) - Movies / TV / Anime / Use Throwaway Gmail / [4K Guide](https://rentry.co/febbox), [2](https://pastebin.com/raw/jtwMfCcq)
|
||||
* [ShowBox](https://www.showbox.media/) - Movies / TV / Anime / Use [Throwaway Gmail](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/internet-tools/#wiki_.25B7_temp_mail)
|
||||
* [UniqueStream](https://uniquestream.net/) - Movies / TV / Anime / 720p
|
||||
* [Levidia](https://www.levidia.ch/), [2](https://supernova.to/), [3](https://ww1.goojara.to/) - Movies / TV / Anime
|
||||
* [Movies4F](https://movies4f.com/) - Movies / TV / Anime
|
||||
|
@ -111,12 +107,13 @@
|
|||
* [Zoechip](https://zoechip.org/) - Movies / TV
|
||||
* [Player4U](https://rentry.co/FMHYBase64#player4u) - Movies / TV / Anime
|
||||
* [Gir Society](https://discord.gg/WHxeZ3aTtb) - Movies / TV / Anime / Plex Required
|
||||
* [PlayIMDb](https://www.playimdb.com/) - Search VidSrc via IMDb URLs / Official Frontend
|
||||
|
||||
***
|
||||
|
||||
## ▷ Free w/ Ads
|
||||
|
||||
* 🌐 **[Free-Official-Youtube-Content](https://rentry.co/Free-Official-Youtube-Content)** or [YT-Movies](https://rentry.co/YT-Movies) - YouTube Channel Lists
|
||||
* 🌐 **[Free-Official-Youtube-Content](https://github.com/superlincoln953/Free-Official-Youtube-Content)** - YouTube Channel List
|
||||
* 🌐 **[YT Movies Multireddit](https://www.reddit.com/user/nbatman/m/streaming/)** - YouTube Streaming Subreddits
|
||||
* 🌐 **[JustWatch](https://www.justwatch.com/us?monetization_types=free)** - Free w/ Ads Directory
|
||||
* ⭐ **[Tubi](https://tubitv.com)** - Movies / TV / 720p / [Downloader](https://github.com/warren-bank/node-hls-downloader-tubitv) / [Avaliable Countries](https://corporate.tubitv.com/)
|
||||
|
@ -152,19 +149,17 @@
|
|||
* ⭐ **[VK](https://vkvideo.ru/)** / [Enhancement Extension](https://vknext.net/)
|
||||
* ⭐ **[OK](https://ok.ru/video)**
|
||||
* ⭐ **[YouTube](https://www.youtube.com/)** / [Advanced Search](https://playlists.at/youtube/search/) / [Resources / Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/social-media#wiki_.25BA_youtube_tools) / [Download Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/social-media#wiki_.25B7_youtube_downloaders)
|
||||
* ⭐ **[Dailymotion](https://www.dailymotion.com/us)**
|
||||
* ⭐ **[BiliBili](https://www.bilibili.com/)** / [.tv](https://www.bilibili.tv/) / [Multi-Platform Client](https://xfangfang.github.io/wiliwili/) / [Sign-Up Block](https://greasyfork.org/en/scripts/467474) / [Sponsorblock](https://github.com/hanydd/BilibiliSponsorBlock) / [Enhancement Script](https://github.com/the1812/Bilibili-Evolved)
|
||||
* ⭐ **[Niconico](https://www.nicovideo.jp/)**
|
||||
* ⭐ **[Dailymotion](https://www.dailymotion.com/)**
|
||||
* ⭐ **[BiliBili](https://www.bilibili.com/)** / [.tv](https://www.bilibili.tv/) / [Client](https://xfangfang.github.io/wiliwili/) / [Sign-Up Block](https://greasyfork.org/en/scripts/467474) / [Sponsorblock](https://github.com/hanydd/BilibiliSponsorBlock) / [Enhancement Script](https://github.com/the1812/Bilibili-Evolved)
|
||||
* ⭐ **[Niconico](https://www.nicovideo.jp/)** / [Desktop](https://github.com/tor4kichi/Hohoema)
|
||||
* ⭐ **[Video Search CSE](https://cse.google.com/cse?cx=006516753008110874046:6v9mqdaai6q#gsc.tab=0)** - Multi-Site Video Search
|
||||
* [MotionBox](https://omega.gg/MotionBox/) - Online Video Aggregation App
|
||||
* [PeerTube](https://joinpeertube.org/) / [Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/social-media#wiki_.25B7_peertube_tools)
|
||||
* [Vimeo](https://vimeo.com/)
|
||||
* [Vimeo](https://vimeo.com/watch)
|
||||
* [rutube](https://rutube.ru)
|
||||
* [BitChute](https://www.bitchute.com/)
|
||||
* [Videa](https://videa.hu/)
|
||||
* [tudou](https://www.tudou.com/)
|
||||
* [BitView](https://www.bitview.net/)
|
||||
* [Tape](https://tape.xyz/)
|
||||
* [Tape](https://tape.xyz/) / [GitHub](https://github.com/tapexyz/tape)
|
||||
* [Naver](https://tv.naver.com/)
|
||||
* [ultimedia](https://www.ultimedia.com/)
|
||||
* [odysee](https://odysee.com/) / [Instances](https://codeberg.org/librarian/librarian#instances)
|
||||
|
@ -198,7 +193,7 @@
|
|||
* [Domain Expansion](https://rentry.co/FMHYBase64#domain-expansion) - Reaction Channel Content
|
||||
* [SidePlusLeaks](https://sideplusleaks.online/) - Sidemen Content / [Telegram](https://t.me/sideplusleaks)
|
||||
* [Unus Annus](https://archive.org/details/unus-annus) - Unus Annus Archive
|
||||
* [Daily Commercials](https://dailycommercials.com/) - Commercial Archive
|
||||
* [TVARK](https://tvark.org/) or [Daily Commercials](https://dailycommercials.com/) - Commercial / TV Promo Archives
|
||||
* [Yuzu4K Japanese Commercials](https://archive.org/details/jpcm_yuzu4k) - Japanese Commercial Archive
|
||||
* [Bandersnatch Interactive Player](https://mehotkhan.github.io/BandersnatchInteractive/) - Interactive player for Black Mirror: Bandersnatch / [GitHub](https://github.com/joric/bandersnatch)
|
||||
* [Lumo TV](https://lumotv.co.uk/) - Deaf Entertainment / BSL-Based
|
||||
|
@ -208,20 +203,21 @@
|
|||
|
||||
## ▷ Anime Streaming
|
||||
|
||||
* 🌐 **[Wotaku](https://wotaku.wiki/websites)** / [Discord](https://discord.gg/vShRGx8ZBC) / [GitHub](https://github.com/wotakumoe/Wotaku), [The Index](https://theindex.moe/library/anime) / [Wiki](https://thewiki.moe/) / [Discord](https://discord.gg/Snackbox) or [EverythingMoe](https://everythingmoe.com/), [2](https://everythingmoe.org/) / [Subreddit](https://www.reddit.com/r/everythingmoe/) / [Discord](https://discord.gg/GuueaDgKdS)
|
||||
* 🌐 **[Wotaku](https://wotaku.wiki/websites)** / [Discord](https://discord.gg/vShRGx8ZBC) / [GitHub](https://github.com/wotakumoe/Wotaku), [The Index](https://theindex.moe/library/anime) / [Wiki](https://thewiki.moe/) / [Discord](https://discord.gg/Snackbox) or [EverythingMoe](https://everythingmoe.com/), [2](https://everythingmoe.org/) / [Subreddit](https://www.reddit.com/r/everythingmoe/) / [Discord](https://discord.gg/GuueaDgKdS) - Anime Site Indexes
|
||||
* ⭐ **[AnimeKai](https://animekai.to/home)**, [2](https://animekai.cc/), [3](https://animekai.ac/), [4](https://animekai.bz/) or [AniGo](https://anigo.to/) - Hard Subs / Dub / Auto-Next / [Status](https://animekai.me/) / [X](https://x.com/animekai_to) / [Subreddit](https://www.reddit.com/r/AnimeKAI/) / [Discord](https://discord.com/invite/at5d9rkfUy)
|
||||
* ⭐ **[Miruro](https://www.miruro.com/)** - Hard Subs / Dub / Auto-Next / [Subreddit](https://www.reddit.com/r/miruro/) / [Discord](https://discord.gg/miruro) / [GitHub](https://github.com/Miruro-no-kuon/Miruro)
|
||||
* ⭐ **[HiAnime](https://hianime.to/)**, [2](https://hianime.nz/), [3](https://hianime.sx/), [4](https://hianime.bz/), [5](https://hianime.pe/) - Sub / Dub / Auto-Next / [Subreddit](https://reddit.com/r/HiAnimeZone/) / [Telegram](https://t.me/HiAnimeLobby) / [Discord](https://discord.gg/hianime)
|
||||
* ⭐ **HiAnime Resources** - [Official Mirrors](https://hianime.tv/) / [Enhancements](https://greasyfork.org/en/scripts/506340) / [Auto-Focus](https://greasyfork.org/en/scripts/506891)
|
||||
* ⭐ **[All Manga](https://allmanga.to/)** - Sub / Dub / [Discord](https://discord.gg/YbuYYUwhpP)
|
||||
* ⭐ **[animepahe](https://animepahe.ru/)** - Hard Subs / Dub / [Enhancements](https://greasyfork.org/en/scripts/520048) / [Downloader](https://github.com/KevCui/animepahe-dl)
|
||||
* ⭐ **[animepahe](https://animepahe.si/)** - Hard Subs / Dub / [Enhancements](https://greasyfork.org/en/scripts/520048) / [Downloader](https://github.com/KevCui/animepahe-dl)
|
||||
* ⭐ **[KickAssAnime](https://kaa.to/)** - Sub / Dub / Auto-Next / [Telegram](https://t.me/kickassanimev3) / [Discord](https://discord.gg/6EGTnNQAaV)
|
||||
* ⭐ **[Anime Streaming CSE](https://cse.google.com/cse?cx=006516753008110874046:vzcl7wcfhei)** or **[Kuroiru](https://kuroiru.co/)** - Multi-Site Anime Search
|
||||
* [Anify](https://anify.to/) - Sub / Dub / [Discord](https://discord.com/invite/79GgUXYwey)
|
||||
* [123anime](https://123animes.ru/) - Sub / Dub / Auto-Next
|
||||
* [Gojo](https://animetsu.to/), [2](https://animetsu.cc/) - Sub / Dub
|
||||
* [AnimeZ](https://animeyy.com/) - Sub / Dub
|
||||
* [Animag](https://animag.to/) - Sub / Dub
|
||||
* [otakuu](https://otakuu.se/), [2](https://aniwave.at/) - Sub / Dub / Auto-Next
|
||||
* [TAnime](https://tanime.tv/) - Sub / Dub / Auto-Next / [Discord](https://discord.gg/R7a6yWMmfK)
|
||||
* [AnimeNoSub](https://animenosub.to/) - Sub / Dub
|
||||
* [Anime Nexus](https://anime.nexus/) - Sub / Dub / [Discord](https://discord.gg/AfMau96ppt)
|
||||
* [AnimeRealms](https://www.animerealms.org/) - Sub / Dub
|
||||
|
@ -229,12 +225,11 @@
|
|||
* [AnimeHub](https://animehub.ac/) - Sub / Dub / Auto-Next
|
||||
* [Aninow](https://aninow.tv/) - Sub / Dub / [Subreddit](https://www.reddit.com/r/aninow/) / [Discord](https://discord.gg/tydKVrQ3jS)
|
||||
* [Rive](https://rivestream.org/), [2](https://rivestream.net/) - Sub / Dub / Auto-Next / [Status](https://rentry.co/rivestream) / [Discord](https://discord.gg/6xJmJja8fV)
|
||||
* [Aniplay](https://aniplay.lol/), [2](https://aniplaynow.live/), [3](https://aniwave.at/) - Sub / Dub
|
||||
* [AniZone](https://anizone.to/) - Sub
|
||||
* [AniHQ](https://anihq.to/) - Sub / Dub
|
||||
* [Anoboye](https://anoboye.com/) - Sub
|
||||
* [AnimeParadise](https://www.animeparadise.moe/) - Sub / Dub / [Discord](https://discord.com/invite/q3N6eWMMNP)
|
||||
* [KissAnime](https://kissanime.com.ru/) - Sub / Dub / Auto-Next / [Discord](https://discord.com/invite/w5ghWQG8uM) / [Clones](https://kissanime.help/)
|
||||
* [KissAnime](https://kissanime.com.ru/) - Sub / Dub / Auto-Next / [Clones](https://kissanime.help/) / [Discord](https://discord.com/invite/w5ghWQG8uM)
|
||||
* [AnimeOnsen](https://animeonsen.xyz/) - Sub / 720p / [Discord](https://discord.com/invite/U56ZMrD)
|
||||
* [AnimeStream](https://anime.uniquestream.net/) - Sub / 720p
|
||||
* [AnimeXin](https://animexin.dev/) - Donghua / Sub
|
||||
|
@ -246,27 +241,28 @@
|
|||
* [Crimson Subs](https://crimsonfansubs.com/) - Donghua / Sub / [Discord](https://discord.gg/PmYn97vtue)
|
||||
* [Crunchyroll](https://www.crunchyroll.com/videos/anime) - Sub / Dub / Auto-Next / [US Proxy](https://addons.mozilla.org/en-US/firefox/addon/crunchy-unblocker/) / [Intro Skip](https://github.com/aniskip/aniskip-extension)
|
||||
* [Miu](https://discord.gg/pwkuanXBJh) or [AnimeThemes](https://animethemes.moe/) / [Discord](https://discord.com/invite/m9zbVyQ) / [GitHub](https://github.com/AnimeThemes) - Anime Themes
|
||||
* [Layendimator](https://github.com/Layendan/Layendanimator), [AnymeX](https://anymex.vercel.app/) / [Extension Guide](https://wotaku.wiki/guides/ext/mangayomi) / [GitHub](https://github.com/RyanYuuki/AnymeX), [Anikin](https://github.com/jerry08/Anikin) / [Discord](https://discord.com/invite/U7XweVubJN), [Unyo](https://github.com/K3vinb5/Unyo), [Seanime](https://seanime.rahim.app/) / [Discord](https://discord.gg/3AuhRGqUqh) / [GitHub](https://github.com/5rahim/seanime) or [Miru](https://miru.js.org/en/) / [Telegram](https://t.me/MiruChat) / [GitHub](https://github.com/miru-project/miru-app) - Desktop Streaming Apps
|
||||
* [Layendimator](https://github.com/Layendan/Layendanimator), [AnymeX](https://anymex.vercel.app/) / [Extension Guide](https://wotaku.wiki/guides/ext/mangayomi) / [GitHub](https://github.com/RyanYuuki/AnymeX), [Anikin](https://github.com/jerry08/Anikin) / [Discord](https://discord.com/invite/U7XweVubJN), [Unyo](https://github.com/K3vinb5/Unyo), [Seanime](https://seanime.app/) / [Discord](https://discord.gg/3AuhRGqUqh) / [GitHub](https://github.com/5rahim/seanime) or [Miru](https://miru.js.org/en/) / [Telegram](https://t.me/MiruChat) / [GitHub](https://github.com/miru-project/miru-app) - Desktop Streaming Apps
|
||||
|
||||
***
|
||||
|
||||
## ▷ Cartoon Streaming
|
||||
|
||||
* ⭐ **[WCO](https://www.wco.tv/)**, [2](https://www.wcostream.tv/) - TV / Movies / Anime / [Status](https://www.wcostatus.com/) / [Anti-Adblock Fix](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#wco-note)
|
||||
* ⭐ **[WCO](https://www.wco.tv/)**, [2](https://www.wcostream.tv/) - TV / Movies / Anime / [Status](https://www.wcostatus.com/) / [Anti-Adblock Fix](https://github.com/uBlockOrigin/uAssets/issues/29349#issuecomment-3231974507)
|
||||
* ⭐ **[KimCartoon](https://kimcartoon.si/)** - TV
|
||||
* [HiCartoon](https://hicartoon.to/) - TV / Movies
|
||||
* [KissCartoon](https://kisscartoon.nz/) - TV / [Discord](https://discord.gg/YwpgPrWVSH)
|
||||
* [TamilToon](https://tamiltoon.net/) - TV / Movies / Anime / Switch Language in Player
|
||||
* [HiCartoons](https://hicartoon.to/) - TV / Movies
|
||||
* [Watch Cartoon Online](https://www.watchcartoononline.com/) - TV / Movies / Anime
|
||||
* [FunnierMoments](https://www.funniermoments.net/) - TV
|
||||
* [ToonTales](https://www.toontales.net/) - Classic / TV
|
||||
* [SuperCartoons](https://www.supercartoons.net/) - Classic / TV
|
||||
* [ToonamiAftermath](https://www.toonamiaftermath.com/) - Toonami Streams
|
||||
* [ToonamiAftermath](https://www.toonamiaftermath.com/schedule) - Toonami Streams
|
||||
|
||||
***
|
||||
|
||||
## ▷ TV Streaming
|
||||
|
||||
* **Note** - Keep in mind sites listed in the main streaming sections (like PrimeWire) also have TV shows. The sites in the section below are simply sites that have exclusively TV.
|
||||
* **Note** - Keep in mind sites listed in the main streaming sections also have TV shows. The sites below offer exclusively TV content.
|
||||
|
||||
***
|
||||
|
||||
|
@ -306,18 +302,16 @@
|
|||
* [AsianCrush](https://www.asiancrush.com/) - TV / Movies
|
||||
* [AsianSubs](https://asiansubs.com/) - TV / Movies
|
||||
* [KissAsian](https://kissasian.video/) - TV / Movies
|
||||
* [KissAsianTV](https://kissasiantv.blog/) - TV / Movies
|
||||
* [Dramacool](https://dramacoolk.one/), [2](https://dramacool.com.ly/) - TV / Movies
|
||||
* [Dramacool.sr](https://www12.dramacool.sr/) - TV / Movies
|
||||
* [Dramacool9](https://dramacools9.cam/) - TV / Movies
|
||||
* [dramacool](https://dramacool.com.cv/) - TV / Movies
|
||||
* [OnDemandChina](https://www.ondemandchina.com/) - TV / Movies
|
||||
|
||||
***
|
||||
|
||||
## ▷ Classics / Public Domain
|
||||
|
||||
* ⭐ **[Internet Archive](https://archive.org/details/moviesandfilms)** - Classic / Silent Films
|
||||
* ⭐ **[Internet Archive](https://archive.org/details/moviesandfilms)** - Classic / Silent Films / [Spreadsheet](https://rentry.co/FMHYBase64#archive-films)
|
||||
* [Classic Cinema Online](https://classiccinemaonline.com/) - Classic Films
|
||||
* [The Classic Movies](https://www.the-classic-movies.com/) - Classic Films
|
||||
* [WikiFlix](https://wikiflix.toolforge.org/) - Classic Films
|
||||
|
@ -374,13 +368,12 @@
|
|||
* ⭐ **[EasyWebTV](https://zhangboheng.github.io/Easy-Web-TV-M3u8/routes/countries.html)** or [IPTV Web](https://iptv-web.app/) - TV / Sports
|
||||
* ⭐ **[NTV](https://ntvstream.cx/)** - TV / Sports / Aggregator / [Telegram](https://t.me/ntvsteam) / [Discord](https://discord.gg/uY3ud5gcpW)
|
||||
* ⭐ **[RgShows](https://www.rgshows.me/livetv/)** or **[Heartive](https://heartive.pages.dev/live/)** - TV / Sports
|
||||
* ⭐ **[DaddyLive TV](https://thedaddy.dad/24-7-channels.php)** - TV / [Self-Hosted Proxy](https://rentry.co/FMHYBase64#daddylive-proxy) / [Mirrors](https://daddyny.com/)
|
||||
* ⭐ **[DaddyLive TV](https://daddylivestream.com/24-7-channels.php)**, [2](https://daddylive.sx/), [3](https://thedaddy.dad/), [4](https://dlhd.click/) - TV / [Self-Hosted Proxy](https://rentry.co/FMHYBase64#daddylive-proxy) / [Mirrors](https://daddyny.com/)
|
||||
* [huhu.to](http://huhu.to/), [vavoo.to](http://vavoo.to/), [kool.to](http://kool.to/) or [oha.to](http://oha.to/) - TV / Sports / European
|
||||
* [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
|
||||
* [USTVGo](https://ustvgo.click/) - TV / Sports / [Player Note](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#sport7)
|
||||
* [LiveHDTV](https://www.livehdtv.com/) - TV
|
||||
* [IPTV Play](https://iptvplay.stream/live-tv) - TV / Sports
|
||||
* [Globe TV](https://globetv.app/) - TV / Sports
|
||||
* [CXtv](https://www.cxtvlive.com/) - TV / Sports
|
||||
* [lmao.love](https://lmao.love/channels/) - TV / Sports
|
||||
|
@ -412,14 +405,14 @@
|
|||
|
||||
## ▷ Live Sports
|
||||
|
||||
* 🌐 **[/sport calendars/](https://dan.valeena.dev/guides/sport-calendars/), [2](https://rentry.co/sportcalendars)** - Importable Sports Calendars
|
||||
* 🌐 **[/sport calendars/](https://dan.valeena.dev/guides/sports-calendar), [2](https://rentry.co/sportcalendars)** - Importable Sports Calendars
|
||||
* ⭐ **[WatchSports](https://watchsports.to/)** - Stream Aggregator
|
||||
* ⭐ **[SportyHunter](https://sportyhunter.com/)**, [2](https://nflhunter.com/), [3](https://nhlstreams.io/v1/), [4](https://mlbgamepass.com/) / Community Aggregator / [Discord](https://discord.gg/zbxWcejadm)
|
||||
* ⭐ **[SportyHunter](https://sportyhunter.com/)**, [2](https://nflhunter.com/), [3](https://nhlstreams.io/v1/), [4](https://mlbgamepass.com/) / Community Aggregator / [Discord](https://discord.gg/BZVQ4Ndd)
|
||||
* ⭐ **[Streamed](https://streamed.su/)**, [2](https://strmd.link/) / [Discord](https://discord.gg/streamed)
|
||||
* ⭐ **[DaddyLive](https://thedaddy.dad/)** - TV / Sports / [Self-Hosted Proxy](https://rentry.co/FMHYBase64#daddylive-proxy) / [Mirrors](https://daddyny.com/)
|
||||
* ⭐ **[DaddyLive](https://daddylivestream.com/)**, [2](https://daddylive.sx/), [3](https://thedaddy.dad/), [4](https://dlhd.click/) - TV / Sports / [Self-Hosted Proxy](https://rentry.co/FMHYBase64#daddylive-proxy) / [Mirrors](https://daddyny.com/)
|
||||
* ⭐ **[PPV.TO](https://ppv.to/)** - Live Events / [Mirrors](https://ppv.zone/) / [Discord](https://discord.gg/5AMPdpckjH)
|
||||
* ⭐ **[Sport7](https://sport7.pro/)** / [Player Note](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#sport7) / [Telegram](https://t.me/goatifisports) / [Discord](https://discord.gg/xcdfVwgEx3)
|
||||
* ⭐ **[FSTV](https://fstv.online/)**, [2](https://fstv.space/) / [Mirrors](https://gofstv.live/) / [Discord](https://discord.gg/j9EfEm4AMW)
|
||||
* ⭐ **[BINTV](https://bintv.fun/)** / [Discord](https://discord.gg/fMU4hpDjPg)
|
||||
* ⭐ **[RBTV77](https://www.rbtv77.kaufen/)**
|
||||
* ⭐ **[StreamEast](https://www.streameast.sk/v8/)** / [Mirrors](https://v1.gostreameast.link/)
|
||||
* ⭐ **[LiveTV](https://livetv.sx/enx/)**
|
||||
|
@ -427,29 +420,27 @@
|
|||
* ⭐ **[TimStreams](https://timstreams.xyz/)**, [2](https://timstreams.cfd/) - Live Events / [Status](https://timstreams.online/) / [Discord](https://discord.com/invite/p3aJ7rJGrz)
|
||||
* ⭐ **[WeAreChecking](https://wearechecking.online/)** - Live Events / Motorsports / [Discord](https://discord.com/invite/wearechecking)
|
||||
* [Sportsurge](https://v2.sportsurge.net/home5/) - Stream Aggregator
|
||||
* [TotalSportek.to](https://www.totalsportek.to/), [2](https://totalsportek.me/), [3](https://buffstreams.app/) - Stream Aggregator
|
||||
* [SportsLive](https://sportslive.me/)
|
||||
* [CricHD.to](https://crichd.to/), [2](https://crichd.at/), [3](https://crichd.com.co/)
|
||||
* [TotalSportek.to](https://totalsportek.me/), [2](https://buffstreams.app/) - Stream Aggregator
|
||||
* [CricHD.to](https://crichd.at/), [2](https://crichd.com.co/)
|
||||
* [MrGamingStreams](http://mrgamingstreams.org/), [2](https://www.mrgbackup.link/) / [Discord](https://discord.gg/BCtqVn5JKR)
|
||||
* [SportOnTV](https://sportontv.xyz/), [2](https://sotmatches.netlify.app/) / [Discord](https://discord.gg/YhQPSSMps2)
|
||||
* [SportOnTV](https://sportontv.xyz/) / [Discord](https://discord.gg/YhQPSSMps2)
|
||||
* [Sports Plus](https://en12.sportplus.live/)
|
||||
* [TotalSportek](https://totalsportek.at/), [2](https://streameast.cz/), [3](https://streameast.cz/)
|
||||
* [TotalSportek](https://totalsportek.at/), [2](https://streameast.cz/)
|
||||
* [CrackStreams](https://crackstreams.blog/)
|
||||
* [720pStream](https://720pstream.nu/)
|
||||
* [GoalieTrend](https://goalietrend.com/)
|
||||
* [BuffStream](https://app.buffstream.io/)
|
||||
* [TopSport](https://topsport.live/), [2](https://sport4all.live/)
|
||||
* [LiveMatches](https://livematches.net/) - Live Events
|
||||
* [StarLive](https://starlive.click/) - Live MMA Events
|
||||
* [TFLIX](https://tv.tflix.app/) - Sports Channels
|
||||
* [NBAMonster](https://nbamonster.com/) - Basketball / Aggregator
|
||||
* [Boxing-100](https://boxing-100.com/) - Boxing / Aggregator
|
||||
* [Soccerdoge](https://soccerdoge.com/) - Football
|
||||
* [CricHD](https://crichd.at/) - Cricket / Aggregator
|
||||
* [OnHockey](https://onhockey.tv/) - Hockey / Aggregator
|
||||
* [MLB24ALL](https://mlb24all.ir/) or [NHL24ALL](https://nhl24all.ir/) - Baseball / Hockey
|
||||
* [OvertakeFans](https://overtakefans.com/) - Motorsports / [Discord](https://discord.gg/ZKwTUbdbmc)
|
||||
* [Aceztrims](https://aceztrims.pages.dev/) - Motorsports
|
||||
* [DD12](https://dd12streams.com/) - Motorsports / [Discord](https://discord.com/invite/TTFE8Jfz7G)
|
||||
* [NontonGP](https://esp32.nontonx.com/) - Motorcycle Racing
|
||||
* [r/rugbystreams](https://www.reddit.com/r/rugbystreams/) - Rugby
|
||||
* [Live Snooker Guide](https://redd.it/1ibz2yz) - Snooker
|
||||
* [Tiz-Cycling](https://tiz-cycling.tv/) - Cycling
|
||||
|
@ -464,13 +455,13 @@
|
|||
* ⭐ **[Basketball Video](https://basketball-video.com/)** - Basketball Replays
|
||||
* ⭐ **[Footballia](https://footballia.net/)**, [2](https://footballia.eu/) - Classic Football Replays
|
||||
* ⭐ **[Watch-Wrestling.eu](https://watch-wrestling.eu/)** - MMA / Wrestling Replays
|
||||
* ⭐ **[1Max](https://1max.top/)** or [RealFights](https://realfight.org/) - MMA / Wrestling Replays / 720p
|
||||
* ⭐ **[1Max](https://1max.top/)** or [RealFights](https://realfight.org/) - MMA / Wrestling / Boxing Replays / 720p
|
||||
* ⭐ **[Nascar Classics](https://classics.nascar.com/)** - Nascar Replays
|
||||
* ⭐ **[FullRaces](https://fullraces.com/)** - Motorsport Replays
|
||||
* [SportsReplay](https://discord.com/invite/2r4pj67gCv) - Sports Replays / [Basketball](https://watchreplay.net/) / [Motorsports](https://watchf1full.com/) / [MMA / Wrestling](https://watchmmafull.com/)
|
||||
* [AllReplays](https://allreplays.com/) - Sports Replays
|
||||
* [Classic Sports Fanatic](https://www.youtube.com/@classicsportsfanatic7183/playlists) - Full Classic Sports Replays
|
||||
* [NFL Video](https://nfl-video.com/), [2](https://nfl-replays.com/) - American Football
|
||||
* [NFL Video](https://nfl-video.com/), [2](https://nfl-replays.com/) - American Football Replays
|
||||
* [BasketballReplays](https://basketballreplays.net/) - Basketball Replays
|
||||
* [MLBLive](https://mlblive.net/) - Baseball Replays
|
||||
* [Steves Classic Baseball](https://www.youtube.com/playlist?list=PLbbmEcFXHSnOHeJdpQr0K808cPVzP0t_B) - Baseball Replays
|
||||
|
@ -496,7 +487,7 @@
|
|||
* [OvertakeFans](https://overtakefans.com/) - Motorsports Replays / [Discord](https://discord.gg/ZKwTUbdbmc)
|
||||
* [r/MotorsportsReplays](https://reddit.com/r/MotorsportsReplays) - Motorsports Replays
|
||||
* [F1 Full Races](https://f1fullraces.com/) - Motorsports Replays
|
||||
* [opendir](https://rentry.co/FMHYBase64#opendir) - Motorsports Replays
|
||||
* [NontonGP](https://replay.nontonx.com/) - Motorcycle Racing Replays
|
||||
* [Rugby24](https://rugby24.net/) - Rugby Replays
|
||||
|
||||
***
|
||||
|
@ -507,11 +498,11 @@
|
|||
* 🌐 **[IPTV Playlists](https://rentry.co/fmhybase64#iptv-playlists)** - List of Playlists
|
||||
* ↪️ **[Android IPTV Players](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/android/#wiki_.25B7_android_live_tv)**
|
||||
* ⭐ **[IPTVNator](https://github.com/4gray/iptvnator)** - IPTV Player / [Web App](https://iptvnator.vercel.app) / [Telegram](https://t.me/iptvnator) / [GitHub](https://github.com/4gray/iptvnator)
|
||||
* ⭐ **[Best Player](https://apps.microsoft.com/detail/9wzdncrdpqsx?hl=en-US&gl=US)** - IPTV Player / [Unlock](https://rentry.co/FMHYBase64#best-player)
|
||||
* ⭐ **[Open TV](https://github.com/fredolx/open-tv)** - IPTV Player
|
||||
* [M3Unator](https://github.com/hasanbeder/M3Unator) - Generate M3U Playlists from Open Directories
|
||||
* [PlaylistEditorTV](https://github.com/Isayso/PlaylistEditorTV) - IPTV Player
|
||||
* [LivePush](https://livepush.io/hls-player/index.html) - IPTV Player
|
||||
* [Best Player](https://apps.microsoft.com/detail/9wzdncrdpqsx?hl=en-US&gl=US) - IPTV Player / [Unlock](https://rentry.co/FMHYBase64#best-player)
|
||||
* [IPTVPlayer](https://iptvplayer.stream/) - IPTV Web Player
|
||||
* [M3U IPTV](https://m3u-ip.tv/browser) - IPTV Web Player
|
||||
* [TMDB-To-VOD](https://github.com/gogetta69/TMDB-To-VOD-Playlist) - Generate Playlists
|
||||
|
@ -528,7 +519,7 @@
|
|||
# ► Smart TV / Firestick
|
||||
|
||||
* ⭐ **[Tizentube](https://tizenbrew.6513006.xyz/)** - Ad-Free Samsung Smart TV YouTube / [GitHub](https://github.com/reisxd/TizenTube), [2](https://github.com/reisxd/TizenBrew)
|
||||
* ⭐ **[webOS Homebrew](https://www.webosbrew.org/)** - LG TV Homebrew / [Guide](https://gist.github.com/VVispy/044cd8005260b270728e1d9aa8f6af51) / [Discord](https://discord.gg/xWqRVEm) / [GitHub](https://github.com/webosbrew/)
|
||||
* ⭐ **[webOS Homebrew](https://www.webosbrew.org/)** - LG TV Homebrew / [Guide](https://wispydocs.pages.dev/lg-tv-homebrew/) / [Discord](https://discord.gg/xWqRVEm) / [GitHub](https://github.com/webosbrew/)
|
||||
* [Smart TV Guide](https://redd.it/xa0aya) - Smart TV Piracy Guide
|
||||
* [KPFire](https://linktr.ee/kpfire) - Firestick Apps
|
||||
* [YTCast](https://github.com/MarcoLucidi01/ytcast) - Cast YouTube Videos to Smart TV
|
||||
|
@ -538,7 +529,7 @@
|
|||
* [SmartTwitchTV](https://github.com/fgl27/SmartTwitchTV) - Smart TV Twitch Player
|
||||
* [Go2TV](https://github.com/alexballas/go2tv) or [FCast](https://fcast.org/) - Cast to Smart TVs
|
||||
* [StreamFire](https://rentry.co/FMHYBase64#streamfire), [2](https://streamfireapp.tv/) - Live TV for Smart TV & Firestick
|
||||
* [smart-tv-telegram](https://github.com/andrew-ld/smart-tv-telegram) - Stream Media from iOS to Smart TV
|
||||
* [smart-tv-telegram](https://github.com/andrew-ld/smart-tv-telegram) - Stream Media from Telegram to Smart TV
|
||||
* [ChanSort](https://github.com/PredatH0r/ChanSort) - TV Channel List Editor for Samsung, LG, etc.
|
||||
* [Samsung Smart TV Adblock](https://redd.it/gn7fw5) - Block Samsung Smart TV Ads
|
||||
* [tvQuickActions](https://rentry.co/FMHYBase64#tvquickactions) - Remote Button Remapper / Sign-Up Required
|
||||
|
@ -549,6 +540,7 @@
|
|||
|
||||
* 🌐 **[Awesome Android TV](https://github.com/Generator/Awesome-Android-TV-FOSS-Apps)** - Android TV App Index
|
||||
* ⭐ **[SmartTube](https://github.com/yuliskov/SmartTube)** / [2](https://smarttubeapp.github.io/) or [TizenTube Cobalt](https://github.com/reisxd/TizenTubeCobalt) - Ad-Free Android TV YouTube
|
||||
* [Flicky](https://github.com/mlm-games/flicky) - F-Droid Client
|
||||
* [Android TV Tools v4](https://xdaforums.com/t/tool-all-in-one-tool-for-windows-android-tv-tools-v4.4648239/) - Multiple Android TV Tools
|
||||
* [Android TV Piracy](https://rentry.co/androidtvpiracy) - Android TV Piracy Guide
|
||||
* [Android TV Guide](https://www.androidtv-guide.com/) - Certified Android TV Devices / [Spreadsheet](https://docs.google.com/spreadsheets/d/1kdnHLt673EjoAJisOal2uIpcmVS2Defbgk1ntWRLY3E/)
|
||||
|
@ -578,31 +570,31 @@
|
|||
|
||||
* ↪️ **[General DDL Sites](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/download)**
|
||||
* ↪️ **[Video Download Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/video-tools#wiki_.25BA_video_download)**
|
||||
* ⭐ **[VegaMovies](https://vegamovies.yoga/)** - Movies / TV / Anime / 4K / [Telegram](https://telegram.dog/vega_officials)
|
||||
* ⭐ **[VegaMovies](https://vegamovies.gmbh/)**, [2](https://moviesflix.ad/) - Movies / TV / Anime / 4K / [Telegram](https://telegram.dog/vega_officials)
|
||||
* ⭐ **[Pahe](https://pahe.ink/)** - Movies / TV / Anime / 4K / [Ad-Bypass (Must Have)](https://greasyfork.org/en/scripts/443277) / [Discord](https://discord.gg/4AvaCsd2J4)
|
||||
* ⭐ **[MovieParadise](https://movieparadise.org/)** - Movies / TV / [Sign-Up Code (Important)](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#movieparadise-code)
|
||||
* ⭐ **[Rive](https://rivestream.org/)**, [2](https://rivestream.net/) - Movies / TV / Anime / [Status](https://rentry.co/rivestream) / [Discord](https://discord.gg/6xJmJja8fV)
|
||||
* ⭐ **[BEECH](https://beech.watch/)** or [Mocine](https://mocine.cam/) - Movies / TV / Anime / [Discord](https://discord.gg/FekgaSAtJa)
|
||||
* ⭐ **[1Shows](https://www.1shows.ru/)** or [RgShows](https://www.rgshows.me/) - Movies / TV / Anime / [Discord](https://discord.com/invite/K4RFYFspG4)
|
||||
* ⭐ **[VidBox](https://vidbox.to/)** / [Discord](https://discord.gg/VGQKGPM9Ej)
|
||||
* ⭐ **[Drama Day](https://dramaday.me/)** - Asian Drama
|
||||
* ⭐ **[MKVDrama](https://mkvdrama.org/)** - Asian Drama
|
||||
* ⭐ **[Video Download CSE](https://cse.google.com/cse?cx=006516753008110874046:wevn3lkn9rr)** / [CSE 2](https://cse.google.com/cse?cx=89f2dfcea452fc451) / [CSE 3](https://cse.google.com/cse?cx=aab218d0aa53e3578)
|
||||
* [Medeberiya](https://medeberiya.site/) - Movie / TV
|
||||
* [1Shows](https://www.1shows.ru/) or [RgShows](https://www.rgshows.me/) - Movies / TV / Anime / [Discord](https://discord.com/invite/K4RFYFspG4)
|
||||
* [P-Stream](https://pstream.mov/) - Movies / TV / Anime / [Alts](https://erynith.github.io/movie-web-instances/) / [Discord](https://discord.gg/uHU4knYRPa)
|
||||
* [TFPDL](https://tfpdl.se/category/movies/), [2](https://tfpdl.to/category/movies/) - Movies / TV / Anime
|
||||
* [P-Stream](https://pstream.mov/) - Movies / TV / Anime / [Discord](https://discord.gg/uHU4knYRPa)
|
||||
* [CinemaOS](https://cinemaos.live/download), [2](https://cinemaos.tech/download), [3](https://cinemaos.me/download) - Movies / TV / Anime / [Discord](https://discord.gg/38yFnFCJnA)
|
||||
* [9xFlix](https://www.9xflix.me/) - Movies / TV / Anime
|
||||
* [KatMovieHD](https://katworld.net/?type=KatmovieHD) - Movies / TV / Anime
|
||||
* [BEECH](https://beech.watch/) or [Mocine](https://mocine.cam/) - Movies / TV / Anime / [Discord](https://discord.gg/FekgaSAtJa)
|
||||
* [Sinflix](https://rentry.co/FMHYBase64#sinflix) - Asian Drama
|
||||
* [OlaMovies](https://olamovies.top/) - Movies / TV / 4K / Use [Adblock](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/adblock-vpn-privacy/#wiki_.25BA_adblocking) / Chrome Required
|
||||
* [OlaMovies](https://olamovies.top/) - Movies / TV / 4K / Use [Adblock](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/adblock-vpn-privacy/#wiki_.25BA_adblocking) / Chromium Required
|
||||
* [KatMovie4k](https://katworld.net/?type=Katmovie4k) - Movies / TV / 4K
|
||||
* [PSArips](https://psa.wf/) - Movies / TV / 4K
|
||||
* [DDLBase](https://ddlbase.com/) - Movies / 4K
|
||||
* [TVSeries](https://www.tvseries.in/) - TV / Anime
|
||||
* [StagaTV](https://www.stagatv.com/) - Movies / TV
|
||||
* [LightDLMovies](https://lightdl.xyz/) - Movies / TV / [Use Adblock](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/adblock-vpn-privacy/#wiki_.25BA_adblocking)
|
||||
* [Cineby](https://www.cineby.app/), [2](https://www.bitcine.app/) - Movies / TV / Anime / 4K / Auto-Next / [Discord](https://discord.gg/C2zGTdUbHE) (unofficial)
|
||||
* [FlickyStream](https://flickystream.net) or [CineMora](https://cinemora.ru/) - Movies / TV / Anime / [Telegram](https://t.me/FlickyStream) / [Discord](https://discord.gg/M7y867cg)
|
||||
* [Willow](https://willow.arlen.icu/), [2](https://salix.pages.dev/) - Movies / TV / Anime / [4K Guide](https://rentry.co/willow-guide) / [Discord](https://discord.com/invite/gmXvwcmxWR)
|
||||
* [Willow](https://willow.arlen.icu/), [2](https://salix.pages.dev/) - Movies / TV / Anime / [Telegram](https://t.me/+8OiKICptQwA4YTJk) / [Discord](https://discord.com/invite/gmXvwcmxWR)
|
||||
* [Movies Ni Pipay](https://moviesnipipay.me/) - Movies / TV
|
||||
* [HDRush](https://hdrush.cc/) - Movies / TV / [Telegram](https://t.me/hdrushxyz)
|
||||
* [RLSXTVT](https://rlsxtvt.icu/) - Movies / TV
|
||||
|
@ -610,14 +602,14 @@
|
|||
* [ProjectFreeTV](https://projectfreetv.sx/) - Movies / TV / Anime / Right Click to Save
|
||||
* [downloads-anymovies](https://www.downloads-anymovies.co/) - Movies / Right Click to Save
|
||||
* [HollyMovieHD](https://hollymoviehd.cc/), [2](https://yeshd.net/), [3](https://novamovie.net/) - Movies / TV / Anime / [Clones](https://hollymoviehd-official.com/)
|
||||
* [Cinemalux](https://cinemalux.store/) - Movies / TV
|
||||
* [Cinemalux](https://cinemalux.autos/) - Movies / TV
|
||||
* [ProtonMovies](https://m2.protonmovies.top/) - Movies / TV
|
||||
* [Download.ir](https://download.ir/topics/film/) - Movies / TV
|
||||
* [UHDMovies](https://modlist.in/?type=uhdmovies) - Movies / 4K
|
||||
* [4KHDHub](https://4khdhub.fans/) - Movies / TV / 4K
|
||||
* [ShowBox](https://www.showbox.media/) - Movies / TV / Anime / 4K / Use Throwaway Gmail / [Guide](https://rentry.co/febbox), [2](https://pastebin.com/raw/jtwMfCcq)
|
||||
* [ShowBox](https://www.showbox.media/) - Movies / TV / Anime / 4K / Use [Throwaway Gmail](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/internet-tools/#wiki_.25B7_temp_mail)
|
||||
* [HDHub4u](https://hdhublist.com/?re=hollywood) - Movies / TV / 4K / [Telegram](https://hdhublist.com/?re=telegram)
|
||||
* [ShareSpark](https://ww1.sharespark.cfd/) - Movies / TV
|
||||
* [Cinemalux](https://cinemalux.sbs/) - Movies / TV
|
||||
* [Free Movies](https://free-movies.to/) - Movies / TV
|
||||
* [SeriesVault](https://seriesvault.win/), [2](https://seriesvault.org/) - TV / Anime
|
||||
* [FilmFans](https://filmfans.org/) - Movies / 4K
|
||||
|
@ -632,12 +624,12 @@
|
|||
* [Bollywood.eu](https://bollywood.eu.org/) - Movies / Telegram Required
|
||||
* [FilmGo](https://www.filmgo.live/) - Movies / TV / 720p
|
||||
* [FZMovies](https://fzmovies.host/) - Movies / 720p
|
||||
* [TodayTVSeries](https://www.todaytvseries6.com/) - TV / 1080p
|
||||
* [TV Shows](https://tvshows.ac/) - TV / 720p
|
||||
* [TVSBoy](https://tvsboy.com/) - TV / 720p
|
||||
* [TodayTVSeries](https://www.todaytvseries6.com/) - TV / 720p
|
||||
* [TodayTVSeries](https://www.todaytvseries6.com/) - TV / 1080p
|
||||
* [GoDrivePlayer](https://godriveplayer.com/) - Movies / TV / Anime / Use [Adblock](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/adblock-vpn-privacy/#wiki_.25BA_adblocking)
|
||||
* [TvShows4Mobile](https://tvshows4mobile.org/) - TV / Anime / 480p / [Telegram](https://t.me/o2tvseries_new)
|
||||
* [NetNaija](https://netnaija.xyz/) - Movies / 480p
|
||||
* [Naijavault](https://www.naijavault.com/) - Movies / TV / 480p
|
||||
* [Waploaded](https://films.waploaded.com/movie) - Movies / TV / 480p
|
||||
* [r/DownUnderTV](https://www.reddit.com/r/DownUnderTV/) - AU / NZ TV
|
||||
|
@ -657,11 +649,12 @@
|
|||
* ⭐ **[Acer Movies](https://rentry.co/FMHYBase64#acermovies)** - Movies / TV / Anime
|
||||
* ⭐ **[111477](https://rentry.co/FMHYBase64#directory-111477)** - Movies / TV / Anime / [Discord](https://discord.gg/YjkP4pANpg)
|
||||
* ⭐ **[DramaSuki](https://rentry.co/fmhybase64#dramasuki)** - Asian Drama
|
||||
* [LightDLMovies](https://rentry.co/fmhybase64#lightdl) - Movies / TV / Use [Adblock](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/adblock-vpn-privacy/#wiki_.25BA_adblocking)
|
||||
* [Medeberiya](https://rentry.co/fmhybase64#medeberiya) - Movie / TV
|
||||
* [Vadapav](https://rentry.co/FMHYBase64#vadapav) - Movies / TV
|
||||
* [T4TSA](https://t4tsa.cc/) - Movies / TV / Telegram Required
|
||||
* [ProSearch4Bot](https://t.me/ProSearch4Bot) - Movies / Telegram
|
||||
* [SolidarityCinema](https://www.solidaritycinema.com/) - Movies
|
||||
* [opendir](https://rentry.co/FMHYBase64#opendir) - Stand Up Comedy
|
||||
|
||||
***
|
||||
|
||||
|
@ -675,14 +668,13 @@
|
|||
* 🌐 **[EverythingMoe](https://everythingmoe.com/#section-download)**, [2](https://everythingmoe.org/#section-download) - Anime DDL Index / [Subreddit](https://www.reddit.com/r/everythingmoe/) / [Discord](https://discord.gg/GuueaDgKdS)
|
||||
* 🌐 **[The Index DDL](https://theindex.moe/collection/ddl-communities)** - Anime DDL Sites / [Wiki](https://thewiki.moe/) / [Discord](https://discord.gg/snackbox)
|
||||
* ⭐ **[Tokyo Insider](https://www.tokyoinsider.com/)** - Sub / Dub / [Bulk Downloader](https://github.com/MaJoRX0/Tokyo-Downloader)
|
||||
* ⭐ **[Flugel Anime](https://rentry.co/FMHYBase64#flugel-anime)** - Sub
|
||||
* ⭐ **[Kayoanime](https://kayoanime.com/)** - Sub / Dub / Google Account Required / [Telegram](https://t.me/AnimeKayo)
|
||||
* ⭐ **[hi10anime](https://hi10anime.com/)** - Sub / Sign-Up Required / [Discord](https://discord.gg/uZ85cbAg4T)
|
||||
* ⭐ **[Anime Download CSE](https://cse.google.com/cse?cx=006516753008110874046:osnah6w0yw8)**
|
||||
* ⭐ **[HakuNeko](https://hakuneko.download/) / [GitHub](https://github.com/manga-download/hakuneko)** or [Senpwai](https://github.com/SenZmaKi/Senpwai) - Anime Download Apps
|
||||
* [Anime-Sharing](https://www.anime-sharing.com/) - Sub / Dub / Anime / Manga Download Forum
|
||||
* [Anime2Enjoy](https://www.anime2enjoy.com/) - Sub / [Discord](https://discord.gg/PxSmumS)
|
||||
* [animepahe](https://animepahe.ru/) - Hard Subs / Dub / [Enhancements](https://greasyfork.org/en/scripts/520048) / [Downloader](https://github.com/KevCui/animepahe-dl)
|
||||
* [animepahe](https://animepahe.si/) - Hard Subs / Dub / [Enhancements](https://greasyfork.org/en/scripts/520048) / [Downloader](https://github.com/KevCui/animepahe-dl)
|
||||
* [Chiby](https://www.animechiby.com/) - Sub / [Discord](https://discord.com/invite/WagHbBz)
|
||||
* [anime7.download](https://anime7.download/) - Sub
|
||||
* [AnimeOut](https://www.animeout.xyz/) - Sub / Sign-Up Required
|
||||
|
@ -702,12 +694,14 @@
|
|||
|
||||
# ► Torrent Apps
|
||||
|
||||
* **Note** - Remember to get a [VPN](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/adblock-vpn-privacy#wiki_.25BA_vpn) before torrenting and [bind it to your client](https://gist.github.com/VVispy/765c6723436f386ef113040f8fc968b8) if it allows.
|
||||
* **Note** - Remember to use a [VPN](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/adblock-vpn-privacy#wiki_.25BA_vpn) before torrenting and [bind it to your client](https://wispydocs.pages.dev/vpn-binding/) if it allows.
|
||||
|
||||
***
|
||||
|
||||
* 🌐 **[Awesome *Arr](https://ravencentric.cc/awesome-arr/)** - Torrent App / Automation Tool Index / [GitHub](https://github.com/Ravencentric/awesome-arr)
|
||||
* ↪️ **[Remote Torrenting Services](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/torrent#wiki_.25B7_remote_torrenting)** - Torrent Remotely Without Needing VPN
|
||||
* ⭐ **[Stremio](https://www.stremio.com/)** - Torrent Streaming App / [Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/video/#wiki_.25B7_stremio_tools) / [Subreddit](https://www.reddit.com/r/Stremio/)
|
||||
* ↪️ **[Media Server Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/video-tools#wiki_.25BA_media_servers)**
|
||||
* ⭐ **[Stremio](https://www.stremio.com/)** - Torrent Streaming App / [Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/video/#wiki_.25B7_stremio_tools) / [Subreddit](https://www.reddit.com/r/Stremio/) / [GitHub](https://github.com/Stremio)
|
||||
* ⭐ **[Prowlarr](https://github.com/Prowlarr/Prowlarr)**, **[Jackett](https://github.com/Jackett/Jackett)**, [nefarious](https://lardbit.github.io/nefarious/), [Traktarr](https://github.com/l3uddz/traktarr), [FlexGet](https://flexget.com/), [r/softwarr](https://reddit.com/r/softwarr) or [Watcher](https://nosmokingbandit.github.io/) - Autodownload Torrents
|
||||
* ⭐ **[Radarr](https://radarr.video/)** - Autodownload Movie Torrents / [Auto-Subtitles](https://www.bazarr.media/) / [GitHub](https://github.com/Radarr/Radarr)
|
||||
* ⭐ **[Sonarr](https://sonarr.tv/)** / [GitHub](https://github.com/Sonarr/Sonarr), [SickGear](https://github.com/SickGear/SickGear), [SiCKRAGE](https://github.com/SiCKRAGE/SiCKRAGE), [DuckieTV](https://schizoduckie.github.io/DuckieTV/) or [Medusa](https://pymedusa.com/) - Autodownload TV Torrents / [Guide](https://wiki.servarr.com/) / [Auto-Subtitles](https://www.bazarr.media/)
|
||||
|
@ -734,11 +728,11 @@
|
|||
|
||||
## ▷ Stremio Tools
|
||||
|
||||
* 🌐 **[Stremio Addons](https://stremio-addons.net/)** - Stremio Addons / [Subreddit](https://www.reddit.com/r/StremioAddons/) / [Discord](https://discord.com/invite/zNRf6YF)
|
||||
* 🌐 **[Stremio Addons](https://stremio-addons.net/)** / [Subreddit](https://www.reddit.com/r/StremioAddons/) / [Discord](https://discord.com/invite/zNRf6YF) or [Midnight's Addons](https://addonsfortheweebs.midnightignite.me/addons) - Stremio Addons
|
||||
* ⭐ **[Bye Sudo](https://bye.undi.rest/)** - Simple Stremio Guide
|
||||
* ⭐ **[Viren070's Guides](https://guides.viren070.me/stremio)** - Advanced Stremio Guide
|
||||
* [Stremio Addon Manager](https://addon-manager.viren070.me/) - Addon Manager / [GitHub](https://github.com/pancake3000/stremio-addon-manager)
|
||||
* [Stremio Account Bootstrapper](https://stremio-account-bootstrapper.vercel.app/) - Easy Stremio Setup
|
||||
* [Stremio Account Bootstrapper](https://stremio-account-bootstrapper.vercel.app/) - Easy Stremio Setup / [GitHub](https://github.com/DryKillLogic/stremio-account-bootstrapper)
|
||||
* [Up Next](https://up-next.dontwanttos.top/) - Stremio Catalogs
|
||||
* [Anime Catalogs](https://1fe84bc728af-stremio-anime-catalogs.baby-beamup.club/configure) - Stremio Anime Catalogs
|
||||
* [Simkl Stremio](https://simkl.com/apps/stremio/) - Simkl for Stremio
|
||||
|
@ -748,7 +742,7 @@
|
|||
|
||||
# ► Torrent Sites
|
||||
|
||||
* **Note** - Keep in mind Stremio + Torrentio or other [aggregators](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/torrent/#wiki_.25B7_aggregators) are sometimes best when it comes to finding content.
|
||||
* **Note** - Keep in mind that [torrent aggregators](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/torrent/#wiki_.25B7_aggregators), or setups like Stremio & Torrentio, are sometimes better when it comes to finding content.
|
||||
|
||||
***
|
||||
|
||||
|
@ -756,8 +750,8 @@
|
|||
* ⭐ **[1337x Movies](https://1337x.to/movie-library/1/)** - 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)
|
||||
* ⭐ **[Rive](https://rivestream.org/)** - Movies / TV / Anime / [Status](https://rentry.co/rivestream) / [Discord](https://discord.gg/6xJmJja8fV)
|
||||
* ⭐ **[Heartive](https://heartive.pages.dev/)** - Movies / TV / Anime / Magnets on Files
|
||||
* ⭐ **[Kinozal](https://kinozal.tv/)** - Movies / TV / 4K / Sign-Up Required
|
||||
* ⭐ **[Heartive](https://heartive.pages.dev/)** - Movies / TV / Anime / Magnets on Files
|
||||
* ⭐ **[EZTV](https://eztvx.to/)** - TV / Anime
|
||||
* [Video Torrent CSE](https://cse.google.com/cse?cx=006516753008110874046:gaoebxgop7j) or [RGShows](https://www.rgshows.me/torrent/) - Multi-Site Search
|
||||
* [TPB Movies](https://thepiratebay.org/search.php?q=top100:200) - Movies / TV / 4K / **Avoid Software / Games**
|
||||
|
@ -777,13 +771,14 @@
|
|||
|
||||
* ⭐ **[Nyaa](https://nyaa.si/)**, [2](https://nyaa.iss.one/), [3](https://nyaa.iss.ink/) - Sub / Dub
|
||||
* ⭐ **Nyaa Tools** - [TUI](https://github.com/Beastwick18/nyaa) / [Batch Download](https://github.com/wotakumoe/meow), [2](https://github.com/marcpinet/nyaadownloader), [3](https://t.me/meow_in_japanese_bot), [4](https://t.me/NyaaTorrents) / [Python Wrapper](https://github.com/JuanjoSalvador/NyaaPy) / [Torrent Fetch](https://github.com/daynum/nyaabag) / [Quality Tags](https://releases.moe/about/)
|
||||
* ⭐ **[Hayase](https://hayase.watch/)** / [Discord](https://discord.com/invite/Z87Nh7c4Ac) or [Migu](https://miguapp.pages.dev/) - Stream Anime Torrents
|
||||
* ⭐ **[Hayase](https://hayase.watch/)** - Torrent Streaming App / [Discord](https://discord.com/invite/Z87Nh7c4Ac)
|
||||
* [Seanime](https://seanime.app/) - Torrent Streaming App
|
||||
* [Shiru](https://github.com/RockinChaos/Shiru) or [Migu](https://miguapp.pages.dev/) - Torrent Streaming Apps
|
||||
* [AnimeTosho](https://animetosho.org/) - Sub / Dub
|
||||
* [TokyoTosho](https://www.tokyotosho.info/) - Sub
|
||||
* [ShanaProject](https://www.shanaproject.com/) - Sub
|
||||
* [Hi10Anime](https://hi10anime.com/) - Sub
|
||||
* [bakabt](https://bakabt.me/) - Sub / Dub / [Interviews](https://wiki.bakabt.me/index.php/Sign_up)
|
||||
* [Shiru](https://github.com/RockinChaos/Shiru) or [Seanime](https://seanime.rahim.app/) - Anime Torrent App
|
||||
* [Anime Torrent CSE](https://cse.google.com/cse?cx=006516753008110874046:lamzt6ls4iz)
|
||||
* [SeaDex](https://releases.moe/) - Anime Video Quality Guides
|
||||
* [Fansub Cartel](https://index.fansubcar.tel/), [2](https://docs.google.com/spreadsheets/d/1PJYwhjzLNPXV2X1np-S4rdZE4fb7pxp-QbHY1O0jH6Q/htmlview) - Fansubbers Index
|
||||
|
@ -843,12 +838,14 @@
|
|||
* ⭐ **[FlickMetrix](https://flickmetrix.com/)** or [agoodmovietowatch](https://agoodmovietowatch.com/) - Combine IMDb, Rotten Tomatoes & Letterboxd Ratings
|
||||
* ⭐ **[TasteDive](https://tastedive.com/)** - Recommendations
|
||||
* ⭐ **[RatingsGraph](https://www.ratingraph.com/)** - Movie / TV Ratings Graphs
|
||||
* [Rec Charts](https://pastebin.com/ayuqSpGR) - Movie / TV / Anime Recommendation Guides
|
||||
* [RYM Ultimate Film Lists](https://rateyourmusic.com/list/TheScientist/rym-ultimate-film-genres-and-lists/) - In-Depth Film Genre & Recommendation Lists
|
||||
* [Charts and Culture](https://pastebin.com/uRDJVGkL) - Movie / TV / Anime Recommendation Directory
|
||||
* [listal](https://www.listal.com/) - Movies / TV
|
||||
* [RelatedAnime](https://relatedanime.com/) - Related Anime Index
|
||||
* [IMDb Table](https://docyx.github.io/imdb-table), [TV Chart](https://tvchart.benmiz.com/), [Episode Hive](https://episodehive.com/), [TV Charts](https://tvcharts.co/), [SeriesGraph](https://seriesgraph.com), [TheShowGrid](https://theshowgrid.com/) or [WhatToWatchOn.tv](https://whattowatchon.tv/) - TV Episode Rating Graphs
|
||||
* [AnimeStats](https://anime-stats.net/), [AnimeKarmaList](https://animekarmalist.com/) or [Sprout](https://anime.ameo.dev/) - Anime Recommendations
|
||||
* [MRQE](https://www.mrqe.com/) - Movie Review Search Engine
|
||||
* [Sight and Sound](https://www.bfi.org.uk/sight-and-sound/greatest-films-all-time/) - Movie Top 250 List
|
||||
* [kudos.wiki](https://kudos.wiki/) - Wikipedia Top 1000 List
|
||||
* [DigitalDreamDoor](https://digitaldreamdoor.com/) - Greatest 100 Lists
|
||||
* [They Shoot Zombies](https://theyshootzombies.com/) - Horror Movie Top 1000 List
|
||||
|
@ -862,6 +859,7 @@
|
|||
|
||||
## ▷ Recommendation Tools
|
||||
|
||||
* [Nothing To Watch](https://nothing-to-watch.port80.ch/) - Interactive Movie Discovery Visualization / [GitHub](https://github.com/gnovotny/nothing-to-watch)
|
||||
* [SuggestStream](https://suggestream.com/) - Movie / TV Recommendations
|
||||
* [BestSimilar](https://bestsimilar.com/) - Movie Recommendations
|
||||
* [Taste.io](https://www.taste.io/) - Movie Recommendations
|
||||
|
@ -908,7 +906,7 @@
|
|||
* [mkv-extract](https://qgustavor.github.io/mkv-extract/), [gmkvextractgui](https://sourceforge.net/projects/gmkvextractgui/) or [MKVcleaver](https://www.videohelp.com/software/MKVcleaver) - Extract Subtitles from MKV Files
|
||||
* [VideoSubFinder](https://sourceforge.net/projects/videosubfinder/) - Hardcoded Subtitle Extractor
|
||||
* [Subtitling Guide](https://baechusquad.download/guide/) - Subtitling Guide
|
||||
* [YukiSubs Guides](https://yukisubs.wordpress.com/guides/), [I am Scum](https://iamscum.wordpress.com/guides/), [Fansub Guide](https://unanimated.github.io/guides.htm) or [JET Guide](https://jaded-encoding-thaumaturgy.github.io/JET-guide/master/) - Fansubbing Encoding Guides
|
||||
* [YukiSubs Guides](https://yukisubs.wordpress.com/guides/), [I am Scum](https://iamscum.wordpress.com/guides/) or [Fansub Guide](https://unanimated.github.io/guides.htm) - Fansubbing Encoding Guides
|
||||
|
||||
***
|
||||
|
||||
|
@ -920,8 +918,8 @@
|
|||
* ⭐ **[Addic7ed](https://www.addic7ed.com/)** - Subtitles / [Frontend](https://www.gestdown.info/)
|
||||
* ⭐ **[Auto-Subtitles](https://www.bazarr.media/)** - Subtitle Autosearch / Download Tool
|
||||
* [Subsearch](https://github.com/vagabondHustler/subsearch) or [Subliminal](https://subliminal.readthedocs.io/) - Python Download Scripts
|
||||
* [Subtitle Cat](https://www.subtitlecat.com/) - Subtitles
|
||||
* [SubSource](https://subsource.net/) - Subtitles
|
||||
* [Subtitle Cat](https://www.subtitlecat.com/) - Subtitles
|
||||
* [Podnapisi](https://www.podnapisi.net/) - Subtitles
|
||||
* [opensubtitles.com](https://www.opensubtitles.com/) - Subtitles
|
||||
* [Subs4Free](https://www.subs4free.info/) - Subtitles
|
||||
|
@ -940,7 +938,7 @@
|
|||
# ► Helpful Sites / Tools
|
||||
|
||||
* 🌐 **[r/Animepiracy Wiki](https://thewiki.moe/)** or [Awesome ACG](https://github.com/soruly/awesome-acg) - Anime Tool Indexes
|
||||
* ↪️ **[Media Posters / Covers](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/img-tools#wiki_.25B7_media_covers_.2F_posters)**
|
||||
* ↪️ **[Media Posters / Covers](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/image-tools#wiki_.25B7_media_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/)
|
Loading…
Add table
Add a link
Reference in a new issue