Merge branch 'fmhy:main' into main

This commit is contained in:
VespuccioTech 2025-09-04 16:57:33 +02:00 committed by GitHub
commit c4ef51dc73
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
61 changed files with 904 additions and 752 deletions

View file

@ -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:** **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). - **💰️ 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](/gamingpiracyguide#emulators). - **🕹️ Emulators** - Already listed on [Index Sites](/gaming#emulators).
- **🌐 Web Browsers** - Good open-source browsers are already listed, so we just accept [indexes](/internet-tools#browser-tools), privacy-focused, and good mobile ones. - **🌐 Web Browsers** - Good open-source browsers are already listed, so we just accept [indexes](/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. - **🔻 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](/linuxguide#linux-distros). - **🐧 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. - **🌍 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. - **🗂️ 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. - **🎲 Mining / Betting Sites** - Don't submit anything related to betting, mining, BINs, CCs, etc.
@ -119,6 +119,6 @@ This creates an environment in the browser [(with 60h/month free quota)](https:/
#### Local Instance #### 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). More info on manual setup can be found [here](/other/selfhosting).

View file

@ -15,31 +15,31 @@
*/ */
const files = ( const files = (
[ [
'adblockvpnguide.md', 'privacy.md',
'ai.md', 'ai.md',
'android-iosguide.md', 'mobile.md',
'audiopiracyguide.md', 'audio.md',
'beginners-guide.md', 'beginners-guide.md',
'devtools.md', 'developer-tools.md',
'downloadpiracyguide.md', 'downloading.md',
'edupiracyguide.md', 'educational.md',
'file-tools.md', 'file-tools.md',
'gaming-tools.md', 'gaming-tools.md',
'gamingpiracyguide.md', 'gaming.md',
'img-tools.md', 'image-tools.md',
'internet-tools.md', 'internet-tools.md',
'linuxguide.md', 'linux-macos.md',
'miscguide.md', 'misc.md',
'non-english.md', 'non-english.md',
'readingpiracyguide.md', 'reading.md',
'social-media-tools.md', 'social-media-tools.md',
'storage.md', 'storage.md',
'system-tools.md', 'system-tools.md',
'text-tools.md', 'text-tools.md',
'torrentpiracyguide.md', 'torrenting.md',
'unsafesites.md', 'unsafe.md',
'video-tools.md', 'video-tools.md',
'videopiracyguide.md' 'video.md'
] as const ] as const
).map((file) => ({ ).map((file) => ({
name: file, name: file,

View 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') { if (process.env.FMHY_BUILD_NSFW === 'false') {
consola.info('FMHY_BUILD_NSFW is set to false, disabling NSFW content') consola.info('FMHY_BUILD_NSFW is set to false, disabling NSFW content')
meta.build.nsfw = false 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'] = { export const search: DefaultTheme.Config['search'] = {
options: { options: {
_render(src, env, md) { _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 let contents = src
// I do this as env.frontmatter is not available until I call `md.render` // I do this as env.frontmatter is not available until I call `md.render`
if (contents.includes('Beginners Guide')) if (contents.includes('Beginners Guide'))
@ -197,7 +218,7 @@ export const sidebar: DefaultTheme.Sidebar | DefaultTheme.NavItemWithLink[] = [
items: [ items: [
{ {
text: '<span class="i-twemoji:name-badge"></span> Adblocking / Privacy', text: '<span class="i-twemoji:name-badge"></span> Adblocking / Privacy',
link: '/adblockvpnguide' link: '/privacy'
}, },
{ {
text: '<span class="i-twemoji:robot"></span> Artificial Intelligence', 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', 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', 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', 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', text: '<span class="i-twemoji:green-book"></span> Books / Comics / Manga',
link: '/readingpiracyguide' link: '/reading'
}, },
{ {
text: '<span class="i-twemoji:floppy-disk"></span> Downloading', text: '<span class="i-twemoji:floppy-disk"></span> Downloading',
link: '/downloadpiracyguide' link: '/downloading'
}, },
{ {
text: '<span class="i-twemoji:cyclone"></span> Torrenting', text: '<span class="i-twemoji:cyclone"></span> Torrenting',
link: '/torrentpiracyguide' link: '/torrenting'
}, },
{ {
text: '<span class="i-twemoji:brain"></span> Educational', text: '<span class="i-twemoji:brain"></span> Educational',
link: '/edupiracyguide' link: '/educational'
}, },
{ {
text: '<span class="i-twemoji:mobile-phone"></span> Android / iOS', text: '<span class="i-twemoji:mobile-phone"></span> Android / iOS',
link: '/android-iosguide' link: '/mobile'
}, },
{ {
text: '<span class="i-twemoji:penguin"></span> Linux / macOS', 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', 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', 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', text: '<span class="i-twemoji:camera"></span> Image Tools',
link: '/img-tools' link: '/image-tools'
}, },
{ {
text: '<span class="i-twemoji:videocassette"></span> Video 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', 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', 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', 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', text: '<span class="i-twemoji:warning"></span> Unsafe Sites',
link: '/unsafesites' link: '/unsafe'
}, },
{ {
text: '<span class="i-twemoji:package"></span> Storage', text: '<span class="i-twemoji:package"></span> Storage',

View file

@ -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\/ai/g, '/ai')
.replace( .replace(
/https:\/\/www.reddit.com\/r\/FREEMEDIAHECKYEAH\/wiki\/adblock-vpn-privacy/g, /https:\/\/www.reddit.com\/r\/FREEMEDIAHECKYEAH\/wiki\/adblock-vpn-privacy/g,
'/adblockvpnguide' '/privacy'
) )
.replace( .replace(
/https:\/\/www.reddit.com\/r\/FREEMEDIAHECKYEAH\/wiki\/android/g, /https:\/\/www.reddit.com\/r\/FREEMEDIAHECKYEAH\/wiki\/android/g,
'/android-iosguide' '/mobile'
) )
.replace( .replace(
/https:\/\/www.reddit.com\/r\/FREEMEDIAHECKYEAH\/wiki\/games/g, /https:\/\/www.reddit.com\/r\/FREEMEDIAHECKYEAH\/wiki\/games/g,
'/gamingpiracyguide' '/gaming'
) )
.replace( .replace(
/https:\/\/www.reddit.com\/r\/FREEMEDIAHECKYEAH\/wiki\/reading/g, /https:\/\/www.reddit.com\/r\/FREEMEDIAHECKYEAH\/wiki\/reading/g,
'/readingpiracyguide' '/reading'
) )
.replace( .replace(
/https:\/\/www.reddit.com\/r\/FREEMEDIAHECKYEAH\/wiki\/download/g, /https:\/\/www.reddit.com\/r\/FREEMEDIAHECKYEAH\/wiki\/download/g,
'/downloadpiracyguide' '/downloading'
) )
.replace( .replace(
/https:\/\/www.reddit.com\/r\/FREEMEDIAHECKYEAH\/wiki\/torrent/g, /https:\/\/www.reddit.com\/r\/FREEMEDIAHECKYEAH\/wiki\/torrent/g,
'/torrentpiracyguide' '/torrenting'
) )
.replace( .replace(
/https:\/\/www.reddit.com\/r\/FREEMEDIAHECKYEAH\/wiki\/edu/g, /https:\/\/www.reddit.com\/r\/FREEMEDIAHECKYEAH\/wiki\/edu/g,
'/edupiracyguide' '/educational'
) )
.replace( .replace(
/https:\/\/www.reddit.com\/r\/FREEMEDIAHECKYEAH\/wiki\/system-tools/g, /https:\/\/www.reddit.com\/r\/FREEMEDIAHECKYEAH\/wiki\/system-tools/g,
@ -194,15 +194,15 @@ export function transform(text: string): string {
) )
.replace( .replace(
/https:\/\/www.reddit.com\/r\/FREEMEDIAHECKYEAH\/wiki\/video/g, /https:\/\/www.reddit.com\/r\/FREEMEDIAHECKYEAH\/wiki\/video/g,
'/videopiracyguide' '/video'
) )
.replace( .replace(
/https:\/\/www.reddit.com\/r\/FREEMEDIAHECKYEAH\/wiki\/audio/g, /https:\/\/www.reddit.com\/r\/FREEMEDIAHECKYEAH\/wiki\/audio/g,
'/audiopiracyguide' '/audio'
) )
.replace( .replace(
/https:\/\/www.reddit.com\/r\/FREEMEDIAHECKYEAH\/wiki\/linux/g, /https:\/\/www.reddit.com\/r\/FREEMEDIAHECKYEAH\/wiki\/linux/g,
'/linuxguide' '/linux-macos'
) )
.replace( .replace(
/https:\/\/www.reddit.com\/r\/FREEMEDIAHECKYEAH\/wiki\/non-eng/g, /https:\/\/www.reddit.com\/r\/FREEMEDIAHECKYEAH\/wiki\/non-eng/g,
@ -210,7 +210,7 @@ export function transform(text: string): string {
) )
.replace( .replace(
/https:\/\/www.reddit.com\/r\/FREEMEDIAHECKYEAH\/wiki\/misc/g, /https:\/\/www.reddit.com\/r\/FREEMEDIAHECKYEAH\/wiki\/misc/g,
'/miscguide' '/misc'
) )
.replace( .replace(
/https:\/\/www.reddit.com\/r\/FREEMEDIAHECKYEAH\/wiki\/storage/g, /https:\/\/www.reddit.com\/r\/FREEMEDIAHECKYEAH\/wiki\/storage/g,
@ -218,11 +218,11 @@ export function transform(text: string): string {
) )
.replace( .replace(
/https:\/\/www.reddit.com\/r\/FREEMEDIAHECKYEAH\/wiki\/dev-tools/g, /https:\/\/www.reddit.com\/r\/FREEMEDIAHECKYEAH\/wiki\/dev-tools/g,
'/devtools' '/developer-tools'
) )
.replace( .replace(
/https:\/\/www.reddit.com\/r\/FREEMEDIAHECKYEAH\/wiki\/img-tools/g, /https:\/\/www.reddit.com\/r\/FREEMEDIAHECKYEAH\/wiki\/image-tools/g,
'/img-tools' '/image-tools'
) )
_text = replaceUnderscore(_text) _text = replaceUnderscore(_text)

View file

@ -20,19 +20,19 @@ interface Header {
} }
export const headers: Header = { export const headers: Header = {
'adblockvpnguide.md': { 'privacy.md': {
title: 'Adblocking / Privacy', title: 'Adblocking / Privacy',
description: 'Adblocking, Privacy, VPNs, Proxies, Antiviruses' description: 'Adblocking, Privacy, VPNs, Proxies, Antiviruses'
}, },
'ai.md': { 'ai.md': {
title: 'Artificial Intelligence', 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', title: 'Android / iOS',
description: 'Apps, Jailbreaking, Android Emulators' description: 'Apps, Jailbreaking, Android Emulators'
}, },
'audiopiracyguide.md': { 'audio.md': {
title: 'Music / Podcasts / Radio', title: 'Music / Podcasts / Radio',
description: 'Stream Audio, Download Audio, Torrent Audio' description: 'Stream Audio, Download Audio, Torrent Audio'
}, },
@ -40,23 +40,23 @@ export const headers: Header = {
title: 'Beginners Guide', title: 'Beginners Guide',
description: 'A Guide for Beginners to Piracy' description: 'A Guide for Beginners to Piracy'
}, },
'downloadpiracyguide.md': { 'downloading.md': {
title: 'Downloading', title: 'Downloading',
description: 'Download Sites, Software Sites, Open Directories' description: 'Download Sites, Software Sites, Open Directories'
}, },
'edupiracyguide.md': { 'educational.md': {
title: 'Educational', title: 'Educational',
description: 'Courses, Documentaries, Learning Resources' description: 'Courses, Documentaries, Learning Resources'
}, },
'gamingpiracyguide.md': { 'gaming.md': {
title: 'Gaming / Emulation', title: 'Gaming / Emulation',
description: 'Download Games, ROMs, Gaming Tools' description: 'Download Games, ROMs, Gaming Tools'
}, },
'linuxguide.md': { 'linux-macos.md': {
title: 'Linux / macOS', title: 'Linux / macOS',
description: 'Apps, Software Sites, Gaming' description: 'Apps, Software Sites, Gaming'
}, },
'miscguide.md': { 'misc.md': {
title: 'Miscellaneous', title: 'Miscellaneous',
description: 'Extensions, Indexes, News, Health, Food, Fun' description: 'Extensions, Indexes, News, Health, Food, Fun'
}, },
@ -68,7 +68,7 @@ export const headers: Header = {
title: 'Non-English', title: 'Non-English',
description: 'International Piracy Sites' description: 'International Piracy Sites'
}, },
'readingpiracyguide.md': { 'reading.md': {
title: 'Books / Comics / Manga', title: 'Books / Comics / Manga',
description: 'Books, Comics, Magazines, Newspapers' description: 'Books, Comics, Magazines, Newspapers'
}, },
@ -76,11 +76,11 @@ export const headers: Header = {
title: 'Gaming Tools', title: 'Gaming Tools',
description: 'Gaming Optimization, Game Launchers, Multiplayer' description: 'Gaming Optimization, Game Launchers, Multiplayer'
}, },
'devtools.md': { 'developer-tools.md': {
title: 'Developer Tools', title: 'Developer Tools',
description: 'Git, Hosting, App Dev, Software Dev' description: 'Git, Hosting, App Dev, Software Dev'
}, },
'img-tools.md': { 'image-tools.md': {
title: 'Image Tools', title: 'Image Tools',
description: 'Image Editors, Generators, Compress' description: 'Image Editors, Generators, Compress'
}, },
@ -116,11 +116,11 @@ export const headers: Header = {
title: 'Storage', title: 'Storage',
description: 'Sections too big to fit on main pages' description: 'Sections too big to fit on main pages'
}, },
'torrentpiracyguide.md': { 'torrenting.md': {
title: 'Torrenting', title: 'Torrenting',
description: 'Torrent Clients, Torrent Sites, Trackers' description: 'Torrent Clients, Torrent Sites, Trackers'
}, },
'videopiracyguide.md': { 'video.md': {
title: 'Movies / TV / Anime', title: 'Movies / TV / Anime',
description: 'Stream Videos, Download Videos, Torrent Videos' description: 'Stream Videos, Download Videos, Torrent Videos'
}, },
@ -128,7 +128,7 @@ export const headers: Header = {
title: 'Base64', title: 'Base64',
description: 'Base64 storage' description: 'Base64 storage'
}, },
'unsafesites.md': { 'unsafe.md': {
title: 'Unsafe Sites', title: 'Unsafe Sites',
description: 'Unsafe/harmful sites to avoid.' description: 'Unsafe/harmful sites to avoid.'
} }

View file

@ -13,14 +13,14 @@
## ▷ Official Model Sites ## ▷ 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) * ⭐ **[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) * ⭐ **[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) * ⭐ **[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)
* ⭐ **[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) * ⭐ **[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) * ⭐ **[Grok](https://grok.com/)** - Grok 3 (20 per 2 hours) / Grok 4 (5 per 12 hours) / [Subreddit](https://www.reddit.com/r/grok/) / [Discord](https://discord.com/invite/kqCc86jM55)
* [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://www.kimi.com/)** - Kimi K2 Chatbot / [Subreddit](https://www.reddit.com/r/kimi/) / [Discord](https://discord.gg/TYU2fdJykW) / [GitHub](https://github.com/MoonshotAI)
* [Kimi](https://kimi.ai/) - Kimi K2 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) * [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) * [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) * [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 * [StepFun](https://stepfun.ai/) - Step 3 / DeepSeek R1 Chatbot
@ -35,16 +35,16 @@
## ▷ Multiple Model Sites ## ▷ Multiple Model Sites
* 🌐 **[Free LLM API Resources](https://github.com/cheahjs/free-llm-api-resources)** - Chatbot Resources / Mirrors * 🌐 **[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) * ⭐ **[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 Required * [Yupp.ai](https://yupp.ai/) - o3 Pro / Claude 4.1 Opus / Grok 4 / Gemini 2.5 Pro / DeepSeek V3.1 / Google Login Required
* [Genspark](https://www.genspark.ai/) - o3 / Gemini 2.5 Pro / [Discord](https://discord.com/invite/CsAQ6F4MPy) * [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) * [ISH](https://ish.junioralive.in/) - o1 / Grok 3 / DeepSeek R1 / Multiple Chatbots / [Discord](https://discord.gg/cwDTVKyKJz)
* [DuckDuckGo AI](https://duck.ai/) - Multiple Chatbots / GPT-5 mini / No Sign-Up * [DuckDuckGo AI](https://duck.ai/) - Multiple Chatbots / GPT-5 mini / No Sign-Up
* [Mirexa](https://mirexa.vercel.app/) - Deepseek R1 / GPT 4.1 / Mistral / Grok 3 mini * [Mirexa](https://mirexa.vercel.app/) - Deepseek R1 / GPT 4.1 / Mistral / Grok 3 mini
* [Together.ai](https://chat.together.ai/) - DeepSeek V3.1 / Qwen 3 235B-2507 / Up-To 110 Daily
* [Groq](https://groq.com/) - Kimi K2 / Multiple Chatbots / [Discord](https://discord.gg/invite/groq) * [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 * [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) * [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 * [NVIDIA NIM](https://build.nvidia.com/) - Deepseek-R1 / Multiple Chatbots / No Sign-Up
* [AI Assistant](https://aiassistantbot.pages.dev/) - Deepseek-R1 / Qwen QwQ-32B / 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 * [FreePass](https://freepass.ai/) - Gemini 2.5 Pro / GPT-4.1
@ -55,6 +55,7 @@
## ▷ Specialized Chatbots ## ▷ 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 * 🌐 **[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
* ⭐ **[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/) / [Open Source Models](https://labs.perplexity.ai/) / [Discord](https://discord.com/invite/perplexity-ai) * ⭐ **[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 * [Google AI Mode](https://google.com/aimode), [2](https://www.google.com/search?udm=50) - AI Search Engine / US Only
* [Perplexica](https://github.com/ItzCrazyKns/Perplexica) - FOSS AI Search Engine / Self-Hosted / [Discord](https://discord.gg/26aArMy8tT) * [Perplexica](https://github.com/ItzCrazyKns/Perplexica) - FOSS AI Search Engine / Self-Hosted / [Discord](https://discord.gg/26aArMy8tT)
@ -85,6 +86,7 @@
* [Leon](https://getleon.ai/) - Self-Hosted / [Discord](https://discord.gg/MNQqqKg) / [GitHub](https://github.com/leon-ai/leon) * [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) * [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 * [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/)
* [LoLLMs Web UI](https://github.com/ParisNeo/lollms-webui) - Self-Hosted / [Discord](https://discord.gg/4rR282WJb6) * [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
* [LibreChat](https://librechat.ai/) - Self-Hosted / [Discord](https://discord.com/invite/CEe6vDg9Ky) / [GitHub](https://github.com/danny-avila/LibreChat) * [LibreChat](https://librechat.ai/) - Self-Hosted / [Discord](https://discord.com/invite/CEe6vDg9Ky) / [GitHub](https://github.com/danny-avila/LibreChat)
@ -164,7 +166,7 @@
* [Msty](https://msty.app/) - Download & Run Models Locally / [Discord](https://discord.gg/2QBw6XxkCC) * [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) * [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) * [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) * [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) * [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 * [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 * [ChatPDF](https://www.chatpdf.com/) (No Sign-Up) or [AskYourPDF](https://askyourpdf.com/) - Turn Books / PDFs into Chatbots
@ -313,6 +315,7 @@
* [Art Genie](https://artgenie.pages.dev/) / Unlimited / No Sign-Up * [Art Genie](https://artgenie.pages.dev/) / Unlimited / No Sign-Up
* [Bing Create](https://www.bing.com/images/create) - Unlimited / GPT-4o * [Bing Create](https://www.bing.com/images/create) - Unlimited / GPT-4o
* [Genspark](https://www.genspark.ai/) / Unlimited / Flux Schnell / [Discord](https://discord.com/invite/CsAQ6F4MPy) * [Genspark](https://www.genspark.ai/) / Unlimited / Flux Schnell / [Discord](https://discord.com/invite/CsAQ6F4MPy)
* [Text2Image](https://taterai.github.io/Text2Image-Generator.html) / Unlimited / Flux Schnell
* [Loras](https://www.loras.dev/) / Unlimited / [GitHub](https://github.com/Nutlope/loras-dev) * [Loras](https://www.loras.dev/) / 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) * [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/) / 50 Daily / [Discord](https://discord.gg/recraft)
@ -366,7 +369,7 @@
*** ***
## ▷ [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)
*** ***

View file

@ -165,6 +165,7 @@
* [1a Radio](https://www.1aradio.com/) - Online Radio Directory * [1a Radio](https://www.1aradio.com/) - Online Radio Directory
* [Radiodeck](https://www.radiodeck.com/) - Online Radio Player / Directory * [Radiodeck](https://www.radiodeck.com/) - Online Radio Player / Directory
* [Quasar Radio](https://kuasark.com/en/) - Online Radio 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 * [AccuRadio](https://www.accuradio.com/) - Online Radio
* [Q-3](https://www.q-3.eu/) - Online Radio * [Q-3](https://www.q-3.eu/) - Online Radio
* [DubLab](https://www.dublab.com/) - Online Radio * [DubLab](https://www.dublab.com/) - Online Radio
@ -667,7 +668,7 @@
* 🌐 **[Awesome Last.fm](https://github.com/jnguyen1098/awesome-lastfm)** or [Last.fm Tool List](https://redd.it/1h8ec76) - Last.fm Tool Indexes * 🌐 **[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) * ⭐ **[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) * ⭐ **[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) * ⭐ **[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 * [Web Scrobbler](https://github.com/web-scrobbler/web-scrobbler) - Scrobble Any Site
* [Edit Scrobbles](https://greasyfork.org/en/scripts/485278) - Manually Edit Scrobbles * [Edit Scrobbles](https://greasyfork.org/en/scripts/485278) - Manually Edit Scrobbles
@ -739,6 +740,7 @@
* ⭐ **[koel](https://koel.dev/)** * ⭐ **[koel](https://koel.dev/)**
* ⭐ **[iBroadcast](https://ibroadcast.com)** * ⭐ **[iBroadcast](https://ibroadcast.com)**
* ⭐ **[AudioRelay](https://audiorelay.net/)** - Stream Audio Between Devices / [Mobile](https://rentry.co/FMHYBase64#audio-relay) * ⭐ **[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 * [SnapCast](https://github.com/badaix/snapcast) or [SonoBus](https://sonobus.net/) - Sound System Sync
* [mStream](https://mstream.io/) * [mStream](https://mstream.io/)
* [Mopidy](https://mopidy.com/) * [Mopidy](https://mopidy.com/)
@ -810,8 +812,8 @@
* 🌐 **[Awesome Music](https://github.com/noteflakes/awesome-music)** - Music / Notation Tools Index * 🌐 **[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 * 🌐 **[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)** * ↪️ **[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 * [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 * [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) * [Chordly](https://chordly.co.uk/) - Chord Sheet Creator / [GitHub](https://github.com/stufro/chordly)
@ -836,6 +838,7 @@
* ⭐ **[Sonic Visualizer](https://www.sonicvisualiser.org/)** * ⭐ **[Sonic Visualizer](https://www.sonicvisualiser.org/)**
* ⭐ **[Spek](https://www.spek.cc/)** * ⭐ **[Spek](https://www.spek.cc/)**
* [Visual Analyser](https://www.sillanumsoft.org/) * [Visual Analyser](https://www.sillanumsoft.org/)
* [WhatsMyBitrate](https://whatsmybitrate.com/)
* [Friture](https://friture.org/) * [Friture](https://friture.org/)
* [Spectro](http://spectro.enpts.com/) * [Spectro](http://spectro.enpts.com/)
* [Cambia](https://logs.musichoarders.xyz/) - CD Rip Log Checker * [Cambia](https://logs.musichoarders.xyz/) - CD Rip Log Checker
@ -869,7 +872,7 @@
* ⭐ **[Tenacity](https://tenacityaudio.org/)**, [Audacity](https://www.audacityteam.org/) or [ocenaudio](https://www.ocenaudio.com/) - 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 * ⭐ **[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
* ⭐ **[Moises](https://moises.ai/)** - Live Music Mixer * ⭐ **[Moises](https://moises.ai/)** - Live Music Mixer
* ⭐ **[OpenMPT](https://openmpt.org/)**, [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 * ⭐ **[OpenMPT](https://openmpt.org/)** / [Source](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 * [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) * [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 * [Mixxx](https://mixxx.org/), [VirtualDJ](https://www.virtualdj.com/) or [Serato](https://serato.com/) - DJ Software
@ -935,12 +938,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) * [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 * [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 * [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 * [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 * [Krush](https://www.tritik.com/product/krush/) - Bitcrusher Plugin
* [samplv1](https://samplv1.sourceforge.io/) - Voice Synth * [samplv1](https://samplv1.sourceforge.io/) - Voice Synth
* [Maim](https://github.com/ArdenButterfield/Maim) - Audio Distortion Plugin * [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 * [r/SynthRecipes](https://www.reddit.com/r/synthrecipes/) - Synth Request Subreddit
*** ***

View file

@ -88,7 +88,7 @@ For iOS, we recommend **[Orion](https://kagi.com/orion/)**, [Brave](https://brav
> How can I safely scan files, and determine if detections are false positives? > How can I safely scan files, and determine if detections are false positives?
Before installing any file, it's recommended to scan the setup / install with **[VirusTotal](https://www.virustotal.com/)**. If you're having trouble determining if something is a false positive, refer to the **[Scan Guide](https://rentry.co/VTGuide)**, or send it to us in Discord and we'll take a look for you. Before installing any file, it's recommended to scan the setup / install with **[VirusTotal](https://www.virustotal.com/)**. If you're having trouble determining if something is a false positive, refer to the **[Scan Guide](https://rentry.co/piracy-faq-virustotal)**, or send it to us in Discord and we'll take a look for you.
!!!note Most antivirus programs are unnecessary and can cause slow down. If you use trusted websites, Windows Defender should be all you need to stay safe, and you can run a [Malwarebytes](https://www.malwarebytes.com/) scan from time to time for extra protection. !!!note Most antivirus programs are unnecessary and can cause slow down. If you use trusted websites, Windows Defender should be all you need to stay safe, and you can run a [Malwarebytes](https://www.malwarebytes.com/) scan from time to time for extra protection.
@ -112,16 +112,21 @@ For email privacy, we recommend **[Proton](https://proton.me/mail)** and for sea
> How can I download / activate Windows for free? > 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://rentry.co/FMHYBase64#win10-eol)**.
* **[Windows Install / Debloat Guide](https://wispydocs.netlify.app/docs/windows/)** * **[Windows Install / Debloat Guide](https://wispydocs.netlify.app/docs/windows/)**
* **Software Piracy: [CracksURL](https://cracksurl.com/) / [LRepacks](https://lrepacks.net/)** * **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. !!!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 ### Torrenting
> Do I need a VPN to torrent? > Do I need a VPN to torrent?
@ -157,7 +162,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 * **[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 * **[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 * **[Unsafe Sites / Software](https://fmhy.net/unsafe)** / [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 * **[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
* **[FMHY.net](https://fmhy.net/)** - Our website with many more sites / tools * **[FMHY.net](https://fmhy.net/)** - Our website with many more sites / tools

View file

@ -67,7 +67,7 @@
* [reddit-moderator-toolbox](https://github.com/toolbox-team/reddit-moderator-toolbox) - Toolbox for Reddit Extension Development * [reddit-moderator-toolbox](https://github.com/toolbox-team/reddit-moderator-toolbox) - Toolbox for Reddit Extension Development
* [devSwag](https://devswag.io/) - Developer Giveaways * [devSwag](https://devswag.io/) - Developer Giveaways
* [Commands.dev](https://www.commands.dev/) - Terminal Commands * [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 * [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 * [Mockaroo](https://mockaroo.com/) - Generate Mock Data
* [Mockium](https://softwium.com/mockium/) - Generate Test Data * [Mockium](https://softwium.com/mockium/) - Generate Test Data
@ -354,7 +354,7 @@
* 🌐 **[LMAerena Price Compare](https://countless.dev/)** - AI API Price Comparisons * 🌐 **[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 * ⭐ **[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) * ⭐ **[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 * [HTTPie](https://httpie.io/) - Test REST, GraphQL, and HTTP APIs
* [Rest Test Test](https://resttesttest.com/) - Test REST / CORS Services * [Rest Test Test](https://resttesttest.com/) - Test REST / CORS Services
* [Beeceptor](https://beeceptor.com/) - Mock REST APIs * [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 * ⭐ **[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 * ⭐ **[Deep playground](http://playground.tensorflow.org/)** - Neural Networks Playground
* [Awesome Generative AI Guide](https://github.com/aishwaryanr/awesome-generative-ai-guide) - LLM Research Resources * [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 * [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 * [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) * [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 * [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 * [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 * [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 ## ▷ Asset Creation
* ↪️ **[3D Models / Modeling Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/img-tools#wiki_.25B7_3d_models)** * ↪️ **[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/img-tools/)** * ↪️ **[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)** * ↪️ **[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)** * ↪️ **[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)** * ↪️ **[Writing Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/text-tools/#wiki_.25B7_writing_tools)**
@ -862,8 +863,8 @@
## ▷ Color Schemes ## ▷ Color Schemes
* 🌐 **[Colorful](https://github.com/Siddharth11/Colorful)** - Color Scheme Resources * 🌐 **[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 Palette Generators](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/image-tools#wiki_.25B7_palette_generators)**
* ↪️ **[Color Pickers](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/img-tools#wiki_.25B7_color_pickers)** * ↪️ **[Color Pickers](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/image-tools#wiki_.25B7_color_pickers)**
* ⭐ **[ColorHexa](https://www.colorhexa.com/)** - Color Hex Encyclopedia * ⭐ **[ColorHexa](https://www.colorhexa.com/)** - Color Hex Encyclopedia
* ⭐ **[Realtime Colors](https://realtimecolors.com/)** - Preview Color Palettes * ⭐ **[Realtime Colors](https://realtimecolors.com/)** - Preview Color Palettes
* ⭐ **[Color & Contrast](https://colorandcontrast.com/)** - Color / Contrast Guide * ⭐ **[Color & Contrast](https://colorandcontrast.com/)** - Color / Contrast Guide
@ -888,7 +889,7 @@
* 🌐 **[Awesome Design Systems](https://github.com/alexpate/awesome-design-systems)** - UI Design Systems / Libraries * 🌐 **[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 * 🌐 **[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 * ⭐ **[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 * ⭐ **[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 * ⭐ **[Boilerplate](https://html5boilerplate.com/)** or [html5up](https://html5up.net/) - Custom HTML Templates

View file

@ -82,7 +82,6 @@
* [MediafireTrend](https://mediafiretrend.com/) - Mediafire Search * [MediafireTrend](https://mediafiretrend.com/) - Mediafire Search
* [WarezOmen](https://warezomen.com/) - Indexer / Search Engine * [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 * [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
*** ***
@ -119,8 +118,8 @@
* ⭐ **[Mobilism](https://forum.mobilism.org/)** * ⭐ **[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) / PW: `soft98.ir` * ⭐ **[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 * ⭐ **[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 * ⭐ **[AlternativeTo](https://alternativeto.net/)** or [European Alternatives](https://european-alternatives.eu/) - Crowdsourced Recommendations
* [Virgil Software Search](https://virgil.samidy.com/software-search/) or [Software CSE](https://cse.google.com/cse?cx=ae17d0c72fa6cbcd4) - Multi-Site Software Search
* [AIOWares](https://www.aiowares.com/) - Software Forum * [AIOWares](https://www.aiowares.com/) - Software Forum
* [DownloadHa](https://www.downloadha.com/) * [DownloadHa](https://www.downloadha.com/)
* [Team V.R releases](https://rentry.co/FMHYBase64#team-vr) - Adobe Plugins * [Team V.R releases](https://rentry.co/FMHYBase64#team-vr) - Adobe Plugins

View file

@ -26,7 +26,6 @@
* [Folkstreams](https://www.folkstreams.net/) * [Folkstreams](https://www.folkstreams.net/)
* [Films For Action](https://www.filmsforaction.org/) * [Films For Action](https://www.filmsforaction.org/)
* [r/Documentaries](https://reddit.com/r/Documentaries) * [r/Documentaries](https://reddit.com/r/Documentaries)
* [Open-Video](https://open-video.org/)
* [Videoneat](https://www.videoneat.com/) * [Videoneat](https://www.videoneat.com/)
* [MVGroup](https://forums.mvgroup.org/) * [MVGroup](https://forums.mvgroup.org/)
@ -97,6 +96,7 @@
* 🌐 **[The Free Learning List](https://freelearninglist.org/)** - Learning Resources * 🌐 **[The Free Learning List](https://freelearninglist.org/)** - Learning Resources
* 🌐 **[Awesome Educational Games](https://github.com/yrgo/awesome-educational-games)** - Educational Games Index * 🌐 **[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)** * ↪️ **[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)** * ↪️ **[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)** * ↪️ **[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 * ⭐ **[r/coolguides](https://reddit.com/r/coolguides/)** or [coolguid.es](https://coolguid.es/) - Guides & Tutorials
@ -177,7 +177,7 @@
* [Mission US](https://www.mission-us.org/) - American History Learning Games * [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 * [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 * [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 * [ETHW](https://ethw.org/) - Engineering and Technology History Wiki
* [Royal Armouries Collections](https://royalarmouries.org/collection/) - Ancient Armaments Museum * [Royal Armouries Collections](https://royalarmouries.org/collection/) - Ancient Armaments Museum
* [NuclearWeaponArchive](https://nuclearweaponarchive.org/) - Nuclear Weapons History * [NuclearWeaponArchive](https://nuclearweaponarchive.org/) - Nuclear Weapons History
@ -360,32 +360,6 @@
*** ***
## ▷ Quote Collections
* ⭐ **[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)
***
## ▷ Poetry Collections
* ⭐ **[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/)
* [Poetry.com](https://www.poetry.com/)
* [Poets.org](https://poets.org/)
* [PoetryArchive](https://poetryarchive.org/)
* [ScottishPoetryLibrary](https://www.scottishpoetrylibrary.org.uk/)
***
## ▷ Virtual Tours ## ▷ Virtual Tours
* 🌐 **[Virtual Museum Resources](https://mcn.edu/a-guide-to-virtual-museum-resources/)** - Online Museums * 🌐 **[Virtual Museum Resources](https://mcn.edu/a-guide-to-virtual-museum-resources/)** - Online Museums
@ -512,7 +486,7 @@
* 🌐 **[Awesome Math](https://github.com/rossant/awesome-math)** or [Math Resources](https://docs.google.com/document/d/1rtokzhpvkUPnymudl_ZVmfAA7H33VIyLQUpujNGwrTo/) - Math Resources * 🌐 **[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)** * ↪️ **[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 * ⭐ **[Number Academy](https://number.academy/)** - Encyclopedia of Numbers
* ⭐ **[Wumbo](https://wumbo.net/)** - Math Reference Site * ⭐ **[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) * ⭐ **[Open Source Society University](https://github.com/ossu/math)** / [PT-BR](https://github.com/ossu/math-br) - Math Roadmap / [Discord](https://discord.gg/wuytwK5s9h)
@ -563,10 +537,10 @@
* 🌐 **[Awesome Electronics](https://github.com/kitspace/awesome-electronics)** - Electronic Engineering Resources * 🌐 **[Awesome Electronics](https://github.com/kitspace/awesome-electronics)** - Electronic Engineering Resources
* 🌐 **[Engineering Blogs](https://github.com/kilimchoi/engineering-blogs)** - Engineering Blogs * 🌐 **[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)** * ↪️ **[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 * ⭐ **[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 * ⭐ **[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 * [Formulia](https://play.google.com/store/apps/details?id=m4.enginary) - Engineering Formulas / Tools
* [Sanfoundry](https://www.sanfoundry.com/) - Engineering Questions & Answers * [Sanfoundry](https://www.sanfoundry.com/) - Engineering Questions & Answers
* [CESDB](https://www.cesdb.com/) - Engineering Software * [CESDB](https://www.cesdb.com/) - Engineering Software
@ -870,6 +844,7 @@
* [FluentWithStories](https://www.fluentwithstories.com/) - Learn Spanish via Stories * [FluentWithStories](https://www.fluentwithstories.com/) - Learn Spanish via Stories
* [DreamingSpanish](https://www.dreamingspanish.com/) - Spanish Learning Videos * [DreamingSpanish](https://www.dreamingspanish.com/) - Spanish Learning Videos
* [The French Tutorial](http://www.frenchtutorial.com/) - French Learning Tutorials * [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 * [LCSpeakFrench](https://t.me/LCSpeakFrench) - Live French Lessons
* [Uusi Kielemme](https://uusikielemme.fi/) - Finnish Learning * [Uusi Kielemme](https://uusikielemme.fi/) - Finnish Learning
@ -906,7 +881,7 @@
* ⭐ **[SpreadTheSign](https://spreadthesign.com/)** - Sign Langauge Dictionary * ⭐ **[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 * [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 * [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 * [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 * [Signbank](https://auslan.org.au/) - Australian Sign Langauge Dictionary
* [NZSL](https://nzsl.nz/) - New Zealand Sign Langauge Dictionary * [NZSL](https://nzsl.nz/) - New Zealand Sign Langauge Dictionary
@ -1370,7 +1345,7 @@
* [Wordwall](https://wordwall.net/) - Lesson Creator * [Wordwall](https://wordwall.net/) - Lesson Creator
* [The Chomsky Index](https://github.com/jasons-gh/the-chomsky-index) - Noam Chomsky Content Index Tool * [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) * [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
*** ***
@ -1389,7 +1364,7 @@
* ⭐ **[Refseek](https://www.refseek.com/)**, [Explorer](https://explorer.globe.engineer/) or [Merlot](https://www.merlot.org/merlot/index.htm) - Academic Search Engines * ⭐ **[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 * [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 * [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 * [Publish or Perish](https://harzing.com/resources/publish-or-perish) - Citation Analyzer
* [Inciteful](https://inciteful.xyz/) - Find Connected Literature via Citations * [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 * [PLText](https://pltext.com/), [PlagiarismDetector](https://plagiarismdetector.net/) or [Duplichecker](https://www.duplichecker.com/) - Plagiarism Checkers
@ -1409,7 +1384,8 @@
* [LearnedEasy](https://learnedeasy.com/) - Create Summaries / Quizzes from Books * [LearnedEasy](https://learnedeasy.com/) - Create Summaries / Quizzes from Books
* [SearchifyX](https://github.com/daijro/SearchifyX) - Search Flashcards * [SearchifyX](https://github.com/daijro/SearchifyX) - Search Flashcards
* [ForgetMeNot](https://github.com/tema6120/ForgetMeNot) - Flashcard Mobile App * [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 * [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 * [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 * [Space Finder](https://spacefinder.lib.cam.ac.uk/) - UK Study Space Search
@ -1478,7 +1454,6 @@
* ⭐ **[Wolfram Alpha](https://www.wolframalpha.com/)** - Searchable Knowledgebase * ⭐ **[Wolfram Alpha](https://www.wolframalpha.com/)** - Searchable Knowledgebase
* [Omniglot](https://www.omniglot.com/index.htm) - Writing Systems & Languages Encyclopedia * [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) * [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/) * [Britannica](https://www.britannica.com/)
* [EverybodyWiki](https://en.everybodywiki.com/) * [EverybodyWiki](https://en.everybodywiki.com/)
* [Encyclopedia](https://www.encyclopedia.com/) * [Encyclopedia](https://www.encyclopedia.com/)

View file

@ -68,7 +68,7 @@
* [ezyZip](https://www.ezyzip.com/) - Zip Files Online * [ezyZip](https://www.ezyzip.com/) - Zip Files Online
* [unzip-online](https://unzip-online.com/en) - Unzip Files Online * [unzip-online](https://unzip-online.com/en) - Unzip Files Online
* [Unrar online](https://unrar.online/) - Unrar Files Online * [Unrar online](https://unrar.online/) - Unrar Files Online
* [WinRAR](https://www.win-rar.com/), [2](https://rarlab.com/) - File Archiver / [Hide Popups](https://rentry.co/FMHYBase64#winrar-licenses) / [Update (Important)](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#winrar) * [WinRAR](https://www.win-rar.com/), [2](https://www.rarlab.com) - File Archiver / [Hide Popups](https://rentry.co/FMHYBase64#winrar-licenses) / [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) * [UPX](https://upx.github.io/) - Executable File Compressor / [GitHub](https://github.com/upx/upx)
*** ***
@ -216,7 +216,7 @@
## ▷ Online PDF Toolkits ## ▷ Online PDF Toolkits
* ⭐ **[Sejda](https://www.sejda.com/)** * ⭐ **[Sejda](https://www.sejda.com/)**
* [ILovePDF](https://www.ilovepdf.com/) * **[ILovePDF](https://www.ilovepdf.com/)**
* [BreezePDF](https://breezepdf.com/) * [BreezePDF](https://breezepdf.com/)
* [DigiPDF](https://digipdf.app/?lang=en_US) * [DigiPDF](https://digipdf.app/?lang=en_US)
* [PDF2Go](https://www.pdf2go.com/) * [PDF2Go](https://www.pdf2go.com/)
@ -292,6 +292,7 @@
*** ***
* 🌐 **[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)** * ↪️ **[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) * ⭐ **[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) * ⭐ **[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)
@ -306,7 +307,7 @@
* [Ranoz](https://ranoz.gg/) - 20GB / 30 Days After Last Download * [Ranoz](https://ranoz.gg/) - 20GB / 30 Days After Last Download
* [1fichier.com](https://1fichier.com/) - 300GB / 15 Days (30 Days w/ Account) * [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) * [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 / [File Expiry](https://file.kiwi/en/price)
* [Easyupload.io](https://easyupload.io/) - 100GB / 30 Days * [Easyupload.io](https://easyupload.io/) - 100GB / 30 Days
* [DoraDrop](http://doradrop.com/) - Unlimited / 10GB / Sign-Up Required * [DoraDrop](http://doradrop.com/) - Unlimited / 10GB / Sign-Up Required
* [FEX.NET](https://fex.net/) - 100GB / 7 Days * [FEX.NET](https://fex.net/) - 100GB / 7 Days
@ -354,7 +355,7 @@
* [Clicknupload](https://clicknupload.click) - 10GB / 8 Days / Sign-Up Required * [Clicknupload](https://clicknupload.click) - 10GB / 8 Days / Sign-Up Required
* [Smash](https://fromsmash.com/) - 2GB / 7 Days / Email Required * [Smash](https://fromsmash.com/) - 2GB / 7 Days / Email Required
* [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 * [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
* [Z-o-o-m](https://z-o-o-m.eu/) - Multi-Host Upload Desktop App * [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 * [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 * [Limited Upload Hosts](https://rentry.org/xc48kg) - More Hosts / 1GB or Below

View file

@ -7,7 +7,7 @@
# ► Gaming Tools # ► Gaming Tools
* ↪️ **[Download Managers](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/file-tools/#wiki_.25B7_download_managers)** * ↪️ **[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)** * ↪️ **[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) * ⭐ **[PCGamingWiki](https://www.pcgamingwiki.com/)** - Game Fixes & Workarounds / [Discord](https://discord.gg/KDfrTZ8)
* ⭐ **[Library of Codexes](https://libraryofcodexes.com/)** - Game Codex Library * ⭐ **[Library of Codexes](https://libraryofcodexes.com/)** - Game Codex Library
@ -54,6 +54,7 @@
* [GameHUB Launcher](https://www.deviantart.com/not-finch/art/GameHUB-launcher-2-for-Rainmeter-785369648) - Rainmeter Game 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) * [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 * [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) * [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) * [GameVault](https://gamevau.lt) - Self-Hosted Gaming Platform / [Discord](https://discord.gg/NEdNen2dSu) / [GitHub](https://github.com/Phalcode/gamevault-app)
@ -130,7 +131,7 @@
* [GameFront](https://gamefront.com/) - Game Mods / [Discord](https://discord.com/invite/gamefront) * [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) * [Video Game Mods](https://videogamemods.com/) - Game Mods / [Discord](https://discord.com/invite/C2JussB8hk)
* [SMods](https://catalogue.smods.ru/) - Game Mods * [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 * [Silent's Blog](https://cookieplmonster.github.io/mods/index/) - Game Mods / Patches
* [FlingTrainer](https://flingtrainer.com/) - Game Mods / Trainers / Single Player Games Only * [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 * [GameCopyWorld](https://www.gamecopyworld.com/), [2](https://gamecopyworld.eu/) - Game Patchers / Trainers / Single Player Games Only
@ -253,7 +254,8 @@
* 🌐 **[Awesome Engineering Games](https://github.com/arcataroger/awesome-engineering-games)** - Engineering Games * 🌐 **[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 * ⭐ **[AcclaimedVideoGames](https://www.acclaimedvideogames.com/)** or **[VideoGameCanon](https://www.videogamecanon.com/)** - Game Top 1000 List
* ⭐ **[OpenCritic](https://opencritic.com/)** - Critic Game Reviews / Ratings * ⭐ **[OpenCritic](https://opencritic.com/)** - Critic Game Reviews / Ratings
* ⭐ **[TasteDive](https://tastedive.com/games)** or [r/ifyoulikeblank](https://www.reddit.com/r/ifyoulikeblank/) - Game Recommendations * ⭐ **[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
* [Rec Charts](https://pastebin.com/ayuqSpGR) - Game Recommendation Guides * [Rec Charts](https://pastebin.com/ayuqSpGR) - Game Recommendation Guides
* [Can I Play That?](https://caniplaythat.com/) - Video Game Accessibility Reviews * [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 * [MoreGamesLike](https://www.moregameslike.com/) or [Games Like Finder](https://gameslikefinder.com/) - Find Similar Games
@ -380,7 +382,7 @@
* [Slippi](https://slippi.gg/) - Super Smash Bros Melee Online / [Discord](https://discord.com/invite/pPfEaW5) * [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) * [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) * [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) * [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 * [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 * [OnlineCTR](https://www.online-ctr.com/) - Crash Team Racing Multiplayer
@ -396,7 +398,7 @@
* ⭐ **[TrackyServer](https://www.trackyserver.com/)** - Find Private Multiplayer Servers * ⭐ **[TrackyServer](https://www.trackyserver.com/)** - Find Private Multiplayer Servers
* [Server.pro](https://server.pro/) - Game Server Hosting * [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) * [Impostor](https://impostor.github.io/Impostor/) - Among Us Private Server / [Discord](https://discord.com/invite/Mk3w6Tb)
* [VRCList](https://vrclist.com/) - Find VRChat Worlds / Signup * [VRCList](https://vrclist.com/) - Find VRChat Worlds / Signup
* [OldUnreal](https://www.oldunreal.com/) - Unreal Tournement Servers / [Discord](https://discord.gg/thURucxzs6) * [OldUnreal](https://www.oldunreal.com/) - Unreal Tournement Servers / [Discord](https://discord.gg/thURucxzs6)
@ -456,11 +458,11 @@
## ▷ Switch Homebrew ## ▷ 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 * ⭐ **[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 * [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 * [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 * [NSP Forwarder](https://nsp-forwarder.n8.io/) - Switch NSP Forwarder
* [Switch Army Knife](https://www.gamebrew.org/wiki/Switch_Army_Knife) - Switch File Converter * [Switch Army Knife](https://www.gamebrew.org/wiki/Switch_Army_Knife) - Switch File Converter
* [SysDVR](https://github.com/exelix11/SysDVR) - Switch Game Capture * [SysDVR](https://github.com/exelix11/SysDVR) - Switch Game Capture
@ -472,7 +474,7 @@
## ▷ Wii U / Wii Homebrew ## ▷ Wii U / Wii Homebrew
* ⭐ **[Wii U Hacks Guide](https://wiiu.hacks.guide/)** - Wii U Jailbreak Guide * ⭐ **[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 * ⭐ **[WiiBrew](https://wiibrew.org/)** - Wii Homebrew Wiki
* ⭐ **[WiiUBrew](https://wiiubrew.org/wiki/Main_Page)** - Wii U 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) * ⭐ **[WiiLink](https://wiilink.ca/)** - Wii Channel Restoration / [X](https://x.com/WiiLink24) / [Discord](https://discord.gg/wiilink) / [GitHub](https://github.com/WiiLink24)
@ -499,7 +501,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) * [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/) * [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 * [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 * [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 * [Rverse](https://discord.gg/wCvJSCxf4G) - 3DS Miiverse Recreation Discord Server
@ -560,7 +562,7 @@
* [MC Utils](https://mcutils.com/) - Minecraft Web Tools / [Discord](https://discord.com/invite/flyte) * [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) * [Minecraft Forum](https://www.minecraftforum.net/) - Minecraft Community / Support / [Discord](https://discord.com/invite/wGrQNKX)
* [MCPEDL](https://mcpedl.com/) - Bedrock Resources * [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) * [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) * [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 * [The Minecraft Archive Project](https://map.crummy.com/) - Minecraft Archive
@ -596,7 +598,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 * [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/) * [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 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 * [mcsrvstat](https://mcsrvstat.us/) - Server Status Updates
* [MC-Server-Banner-API](https://github.com/LOOHP/MC-Server-Banner-API) - Real-Time Updated Server Banners * [MC-Server-Banner-API](https://github.com/LOOHP/MC-Server-Banner-API) - Real-Time Updated Server Banners
@ -821,7 +822,7 @@
## ▷ GTA Tools ## ▷ 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 * 🌐 **[GTA5-Mods](https://www.gta5-mods.com/)** - GTAV Mods
* 🌐 **[MixMods](https://www.mixmods.com.br/)** - GTASA Mods * 🌐 **[MixMods](https://www.mixmods.com.br/)** - GTASA Mods
* ⭐ **[FiveM](https://fivem.net/)**, [alt:V](https://altv.mp/) or [RAGE](https://rage.mp/) - Modded GTAV Servers / Requires Legit Copy * ⭐ **[FiveM](https://fivem.net/)**, [alt:V](https://altv.mp/) or [RAGE](https://rage.mp/) - Modded GTAV Servers / Requires Legit Copy

View file

@ -14,17 +14,16 @@
* 🌐 **[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 * 🌐 **[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.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) * ⭐ **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/)
* ⭐ **[SteamRIP](https://steamrip.com/)** - Download / Pre-Installs / [Subreddit](https://www.reddit.com/r/SteamRip/) / [Discord](https://discord.gg/WkyjpA3Ua9) * ⭐ **[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) * ⭐ **[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) * ⭐ **[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) * ⭐ **[GameBounty](https://gamebounty.world/)** - Download / [Discord](https://discord.gg/dmjUJ4xCEV)
* ⭐ **[UnionCrax](https://union-crax.xyz/)** - Download / Pre-Installs / [Lightweight Site](https://fuzzy.union-crax.xyz/) / [Discord](https://discord.gg/dkVame6BQS) * ⭐ **[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) * ⭐ **[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) * ⭐ **[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 * ⭐ **[Torrminatorr](https://forum.torrminatorr.com/)** - Download / Forum / Sign-Up Required
* [Rezi Search](https://rezi.one/), [Rave Search](https://idleendeavor.github.io/gamesearch/) / [2](https://ravegamesearch.pages.dev/), [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) * [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
or [r/PiratedGames CSE](https://cse.google.com/cse?cx=20c2a3e5f702049aa) - Multi-Site Search Engines
* [g4u](https://g4u.to/) - Download / PW: `404` * [g4u](https://g4u.to/) - Download / PW: `404`
* [GLoad](https://gload.to/) - Download * [GLoad](https://gload.to/) - Download
* [Gamesdrive](https://gamesdrive.net/) - Download / [Telegram](https://t.me/+qkrAOiq7k7ozNzRk) / [Discord](https://discord.gg/wXdNEhf73x) * [Gamesdrive](https://gamesdrive.net/) - Download / [Telegram](https://t.me/+qkrAOiq7k7ozNzRk) / [Discord](https://discord.gg/wXdNEhf73x)
@ -336,12 +335,12 @@
* [taodung](https://taodung.com/) - ROMs / 3DS / Switch * [taodung](https://taodung.com/) - ROMs / 3DS / Switch
* [Homebrew Hub](https://hh.gbdev.io/) - Homebrew ROMs / NES / Gameboy * [Homebrew Hub](https://hh.gbdev.io/) - Homebrew ROMs / NES / Gameboy
* [64DD.org](https://64dd.org/) - ROMs / 64DD * [64DD.org](https://64dd.org/) - ROMs / 64DD
* [NXBrew](https://nxbrew.net/) - ROMs / Switch
* [NswRom](https://nswrom.com/) - ROMs / Switch * [NswRom](https://nswrom.com/) - ROMs / Switch
* [SwitchGamesMall](https://switchgamesmall.icu/) - ROMs / Switch / DDL / Torrents / [Discord](https://discord.gg/rgttByzYRY) * [SwitchGamesMall](https://switchgamesmall.icu/) - ROMs / Switch / DDL / Torrents / [Discord](https://discord.gg/rgttByzYRY)
* [notUltraNX](https://not.ultranx.ru/en) - ROMs / Switch / Sign-Up Required * [notUltraNX](https://not.ultranx.ru/en) - ROMs / Switch / Sign-Up Required
* [ROMSim](https://romsim.com/) - ROMs / Switch / [Discord](https://discord.gg/Zgdhq7xDcd) * [ROMSim](https://romsim.com/) - ROMs / Switch / [Discord](https://discord.gg/Zgdhq7xDcd)
* [ROMSLAB](https://romslab.com/) - ROMs / Switch * [ROMSLAB](https://romslab.com/) - ROMs / Switch
* [NXBrew](https://nxbrew.net/) - ROMs / Switch
* [SwitchROM](https://switchroms.io/) - ROMs / Switch * [SwitchROM](https://switchroms.io/) - ROMs / Switch
* [GNS](https://rentry.co/FMHYBase64#gns) - ROMs / Switch * [GNS](https://rentry.co/FMHYBase64#gns) - ROMs / Switch
* [NSWDB](https://www.nswdb.com) - Switch Release Tracker * [NSWDB](https://www.nswdb.com) - Switch Release Tracker
@ -357,10 +356,12 @@
* [SMBX2](http://codehaus.wohlsoft.ru/index.php) - Super Mario Enhancement Mod / [Levels](https://rentry.co/FMHYBase64#smbx-preservation) / [Discord](https://discord.com/invite/aCZqadJ) * [SMBX2](http://codehaus.wohlsoft.ru/index.php) - Super Mario Enhancement Mod / [Levels](https://rentry.co/FMHYBase64#smbx-preservation) / [Discord](https://discord.com/invite/aCZqadJ)
* [SMB Arena](https://www.smbarena.com/) - Super Mario Bros. 1 Mods * [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) * [Super Mario and the Rainbow Stars](https://superstarshi.github.io/smatrs/) - Super Mario Mod / [Discord](https://discord.gg/GBXUa7NF2J)
* [Super Mario War](http://smwstuff.net/) - Multiplayer Deathmatch Style Super Mario. Bros.
* [Level Share Square](https://levelsharesquare.com/) - Custom Maps for Mario Fangames * [Level Share Square](https://levelsharesquare.com/) - Custom Maps for Mario Fangames
* [Mario Party Legacy](https://mariopartylegacy.com/forum/) - Mario Party Mods * [Mario Party Legacy](https://mariopartylegacy.com/forum/) - Mario Party Mods
* [Super Mario Bros Crossover](https://archive.org/details/SuperMarioCrossoverOffline) - Play SMB with Alternative Characters * [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) * [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)
*** ***
@ -682,7 +683,7 @@
* [Rosebud AI](https://www.rosebud.ai/) or [Wild West](https://www.wildwest.gg/) - AI Made Browser Games * [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 * [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 * [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 * [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 * [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 * [Js13kGames](https://js13kgames.com/entries), [HTML5 Games](https://html5games.com/) or [TheBestarcade](https://html5.thebestarcadescript.com/) - HTML5 Games

View file

@ -106,6 +106,7 @@
* [Palettum](https://palettum.com/) - Add Custom Color Palettes to Images & GIFs / [GitHub](https://github.com/arrowpc/palettum) * [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 * [InColor](https://www.myheritage.com/incolor) - B&W Image Colorization / Sign-Up Required
* [PhotoJoiner](https://www.photojoiner.com/) - Collage Maker * [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 * [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 * [Tiler](https://github.com/nuno-faria/tiler) - Mosaic Image Generator
* [Fotosketcher](https://fotosketcher.com/) - Turn Photos into Artwork / Windows * [Fotosketcher](https://fotosketcher.com/) - Turn Photos into Artwork / Windows
@ -185,12 +186,11 @@
* [Piskel](https://www.piskelapp.com/) - Pixel Art Editor / Web * [Piskel](https://www.piskelapp.com/) - Pixel Art Editor / Web
* [Pixelated](https://pixelated.vercel.app/) - Pixel Art Editor / Web * [Pixelated](https://pixelated.vercel.app/) - Pixel Art Editor / Web
* [PixilArt](https://www.pixilart.com/draw) - 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
* [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 * [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) * [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 * [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 * [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
*** ***
@ -687,6 +687,7 @@
* [Project Naptha](https://projectnaptha.com/) - Automatic OCR while Browsing Images * [Project Naptha](https://projectnaptha.com/) - Automatic OCR while Browsing Images
* [i2ocr](https://www.i2ocr.com/) - Online OCR * [i2ocr](https://www.i2ocr.com/) - Online OCR
* [OCR.SPACE](https://ocr.space/) - Online OCR * [OCR.SPACE](https://ocr.space/) - Online OCR
* [OCRTool](https://ocrtool.net/) - Online OCR
* [2OCR](https://2ocr.com/) - Online OCR * [2OCR](https://2ocr.com/) - Online OCR
* [Ocrify](https://ocrify.com/) - Online OCR * [Ocrify](https://ocrify.com/) - Online OCR
* [OnlineOCR](https://onlineocr.org/) - Online OCR * [OnlineOCR](https://onlineocr.org/) - Online OCR
@ -714,7 +715,6 @@
* [ImagefanReloaded](https://github.com/mihnea-radulescu/imagefanreloaded) * [ImagefanReloaded](https://github.com/mihnea-radulescu/imagefanreloaded)
* [Image Eye](https://www.fmjsoft.com/imageeye.html) * [Image Eye](https://www.fmjsoft.com/imageeye.html)
* [Quick Picture Viewer](https://moduleart.github.io/quick-picture-viewer/) * [Quick Picture Viewer](https://moduleart.github.io/quick-picture-viewer/)
* [Fragment](https://www.fragmentapp.info/)
* [HoneyView](https://en.bandisoft.com/honeyview/) * [HoneyView](https://en.bandisoft.com/honeyview/)
* [picturama](https://picturama.github.io/) * [picturama](https://picturama.github.io/)
* [narrative](https://narrative.so/) * [narrative](https://narrative.so/)
@ -797,7 +797,7 @@
## ▷ Screenshot Tools ## ▷ 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) * ⭐ **[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 * ⭐ **[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) * [Greenshot](https://getgreenshot.org/) / [GitHub](https://github.com/greenshot/greenshot)

View file

@ -7,8 +7,8 @@ hero:
name: freemediaheckyeah name: freemediaheckyeah
tagline: The largest collection of free stuff on the internet! tagline: The largest collection of free stuff on the internet!
announcement: announcement:
title: Aug 2025 Updates ✨ title: Fight Chat Control 🔒
link: /posts/aug-2025 link: /posts/FCC
image: image:
src: /test.png src: /test.png
alt: FMHY Icon alt: FMHY Icon
@ -28,7 +28,7 @@ hero:
features: features:
- title: Adblocking / Privacy - title: Adblocking / Privacy
link: /adblockvpnguide link: /privacy
details: Learn how to block ads, trackers and other nasty things. details: Learn how to block ads, trackers and other nasty things.
icon: | 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> <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> <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 - title: Streaming
link: /videopiracyguide link: /video
details: Stream, download, torrent and binge all your favourite movies and shows! details: Stream, download, torrent and binge all your favourite movies and shows!
icon: | icon: |
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 <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" 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 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> 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! details: Stream, download and torrent songs, podcasts and more!
- title: Gaming - title: Gaming
@ -72,7 +72,7 @@ features:
y2="20"/><line x1="19" x2="21" y1="21" y2="19"/><polyline points="14.5 6.5 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 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> 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: details:
Download and play all your favourite games or emulate some old but gold Download and play all your favourite games or emulate some old but gold
ones! ones!
@ -85,7 +85,7 @@ features:
lucide-book-marked"><path d="M10 2v8l3-3 3 3V2"/><path d="M4 19.5v-15A2.5 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 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> 0-5H20"/><title>Reading</title></svg>
link: /readingpiracyguide link: /reading
details: details:
Whether you're a bookworm, otaku or comic book fan, you'll be able to find Whether you're a bookworm, otaku or comic book fan, you'll be able to find
your favourite pieces of literature here! your favourite pieces of literature here!
@ -93,7 +93,7 @@ features:
- title: Downloading - title: Downloading
icon: | 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> <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: details:
Download all your favourite software, movies, shows, music, games and Download all your favourite software, movies, shows, music, games and
more! more!
@ -101,7 +101,7 @@ features:
- title: Torrenting - title: Torrenting
icon: | 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> <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. details: Download your favourite media using the BitTorrent protocol.
- title: Educational - title: Educational
@ -112,7 +112,7 @@ features:
lucide-book-copy"><path d="M2 16V4a2 2 0 0 1 2-2h11"/><path d="M22 18H11a2 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 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> 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. details: Educational content for all ages.
- title: Android / iOS - title: Android / iOS
@ -122,13 +122,13 @@ features:
stroke-linecap="round" stroke-linejoin="round" class="lucide stroke-linecap="round" stroke-linejoin="round" class="lucide
lucide-smartphone"><rect width="14" height="20" x="5" y="2" rx="2" 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> 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. details: All forms of content for Android and iOS.
- title: Linux / macOS - title: Linux / macOS
icon: | 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> <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. details: The $HOME of Linux and macOS.
- title: Non English - title: Non 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 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 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> 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. details: Content too niche to be included elsewhere.
--- ---

View file

@ -229,7 +229,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 * 🌐 **[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)** * ↪️ **[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)** * ↪️ **[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/)** * ⭐ **[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 * ⭐ **[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 * [100 Search Engines](https://www.100searchengines.com/) - Search with 100 Search Engines
@ -267,7 +267,7 @@
* [TV Streaming CSE](https://cse.google.com/cse?cx=006516753008110874046:hrhinud6efg) - Search TV Streaming Sites * [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) * [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 * [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 * [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 * [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 * [Audiobooks CSE](https://cse.google.com/cse?cx=006516753008110874046:cwbbza56vhd) - Search Audiobook Sites
@ -284,8 +284,8 @@
* [Anime Torrent CSE](https://cse.google.com/cse?cx=006516753008110874046:lamzt6ls4iz) - Search Anime Torrent Sites * [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 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 * [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 * [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) or [Rave Search](https://ravegamesearch.pages.dev/) - Search Game Torrent Sites * [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 * [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 * [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 * [Linux Software CSE](https://cse.google.com/cse?cx=81bd91729fe2a412b) - Search Linux Software Sites
@ -587,7 +587,7 @@
* ↪️ **[Translation Extensions](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/text-tools#wiki_.25B7_translators)** * ↪️ **[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)** * ↪️ **[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)** * ↪️ **[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)** * ↪️ **[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)** * ↪️ **[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)** * ↪️ **[Tab Managers](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_tab_managers)**
@ -825,7 +825,7 @@
# ► Open Source Intelligence # ► Open Source Intelligence
* 🌐 **[Awesome OSINT](https://github.com/jivoi/awesome-osint)** - Awesome OSINT * 🌐 **[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)** * ↪️ **[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)** * ↪️ **[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 * ⭐ **[IntelTechniques](https://inteltechniques.com/index.html)** or [OSINT Techniques](https://www.osinttechniques.com/) - OSINT Resources

View file

@ -157,7 +157,7 @@
* [Input Leap](https://github.com/input-leap/input-leap) - Multi-Computer Control * [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 * [auto-cpufreq](https://github.com/AdnanHodzic/auto-cpufreq) - CPU Speed & Power Optimization Automation
* [Fan Control](https://github.com/wiiznokes/fan-control) - Fan Controller * [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 * [Teleport](https://teleportsite.pages.dev/) - Windows App Compatibility Analyzer
* [NetBoot](https://netboot.xyz/) - iPXE Network Boot * [NetBoot](https://netboot.xyz/) - iPXE Network Boot
* [CloverBootloader](https://github.com/CloverHackyColor/CloverBootloader/) - Windows, Mac & Linux Bootloader / [Config](https://mackie100projects.altervista.org/) * [CloverBootloader](https://github.com/CloverHackyColor/CloverBootloader/) - Windows, Mac & Linux Bootloader / [Config](https://mackie100projects.altervista.org/)
@ -296,7 +296,7 @@
* [Online-Fix Linux](https://github.com/ZzEdovec/onlinefix-linux) - Launch Games w/ Online-Fix Patches * [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/) * [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 * [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 * [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 * [lsfg-vk](https://github.com/PancakeTAS/lsfg-vk) - Lossless Scaling for Linux
* [VKBasAlt](https://github.com/DadSchoorse/vkBasalt) - Game Post Processing Layer * [VKBasAlt](https://github.com/DadSchoorse/vkBasalt) - Game Post Processing Layer
@ -364,6 +364,7 @@
* [apt-fast](https://github.com/ilikenwf/apt-fast) - APT Download Accelerator * [apt-fast](https://github.com/ilikenwf/apt-fast) - APT Download Accelerator
* [Nala](https://gitlab.com/volian/nala) - APT Frontend * [Nala](https://gitlab.com/volian/nala) - APT Frontend
* [aMule](https://www.amule.org/) - eMule-like P2P Client * [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 * [Linux Router](https://github.com/garywill/linux-router) - Set Linux as Router
* [Netcat](https://rentry.co/Netcat) - Networking Tool * [Netcat](https://rentry.co/Netcat) - Networking Tool
* [Bandwhich](https://github.com/imsnif/bandwhich) - Terminal Bandwidth Utilization Tool * [Bandwhich](https://github.com/imsnif/bandwhich) - Terminal Bandwidth Utilization Tool
@ -457,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) * ⭐ **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 * ⭐ **[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 * ⭐ **[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 * [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 * [Gum](https://github.com/charmbracelet/gum) - Shell Script Creator
* [ShellCheck](https://www.shellcheck.net/) - Shell Script Bug Check * [ShellCheck](https://www.shellcheck.net/) - Shell Script Bug Check
@ -687,6 +688,7 @@
* ⭐ **[Goldberg](https://github.com/inflation/goldberg_emulator)** - Steam Multiplayer Client Emulator * ⭐ **[Goldberg](https://github.com/inflation/goldberg_emulator)** - Steam Multiplayer Client Emulator
* [SCNLOG](https://scnlog.me/games/mac/) - Mac Games * [SCNLOG](https://scnlog.me/games/mac/) - Mac Games
* [RuTracker](https://rutracker.org/forum/viewforum.php?f=960) - 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 * [MacintoshRepository](https://www.macintoshrepository.org/games/) - Oldschool Mac Games
* [Mac Source Ports](https://www.macsourceports.com/) - Run Old 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) * [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)
@ -746,7 +748,7 @@
## ▷ System Tools ## ▷ System Tools
* 🌐 **[AppleDB](https://appledb.dev/)** - Apple Device / Software Info Database * 🌐 **[AppleDB](https://appledb.dev/)** - Apple Device / Software Info Database
* ⭐ **[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/) or [SOL](https://sol.ospfranco.com/) - Keystroke Launchers / Spotlight Replacements * ⭐ **[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 * ⭐ **[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 * ⭐ **[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 * [Advanced macOS Commands](https://saurabhs.org/advanced-macos-commands) - Advanced Command-Line Tools

View file

@ -16,7 +16,7 @@
* [Track Awesome List](https://www.trackawesomelist.com/) - Daily Awesome List Updates * [Track Awesome List](https://www.trackawesomelist.com/) - Daily Awesome List Updates
* [ForumDirectory](https://www.forumdirectory.com/) - Forum Directory * [ForumDirectory](https://www.forumdirectory.com/) - Forum Directory
* [ooh.directory](https://ooh.directory/) - Blog 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 * [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 * [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 * [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) * [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 * [BAEN](https://www.baen.com/catalog/category/view/s/free-library/id/2012) - Books
* [FreeForStudent](https://freeforstudents.org/) - Free for Student Deals * [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/FREE](https://reddit.com/r/FREE/)
* [r/freebies](https://www.reddit.com/r/freebies/) * [r/freebies](https://www.reddit.com/r/freebies/)
* [r/eFreebies](https://reddit.com/r/eFreebies) * [r/eFreebies](https://reddit.com/r/eFreebies)
@ -152,14 +153,14 @@
* ⭐ **[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 * ⭐ **[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) * ⭐ **[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 * ⭐ **[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 * [FoodSubs](https://foodsubs.com/) - Ingredient Substitutions Database
* [Food Mood](https://artsandculture.google.com/experiment/food-mood/HwHnGalZ3up0EA?hl=en) - Blend Two Cuisines for Recipes * [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 * [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 * [Search-22](https://search-22.com/recipe-search-tools) - Multi-Site Recipe Search
* [Wikibook Recipes](https://en.wikibooks.org/wiki/Category:Cookbook) - Recipe Wiki * [Wikibook Recipes](https://en.wikibooks.org/wiki/Category:Cookbook) - Recipe Wiki
* [Epicurious](https://www.epicurious.com/) - Recipe Search / Index * [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 * [Recipe Search](https://recipe-search.typesense.org/) - Recipe Search
* [Hari Recipes](https://hari.recipes/) - Recipe Search * [Hari Recipes](https://hari.recipes/) - Recipe Search
* [RecipeRadar](https://www.reciperadar.com/) - Recipe Search * [RecipeRadar](https://www.reciperadar.com/) - Recipe Search
@ -262,6 +263,7 @@
* [Bike Sharing](https://bikesharingworldmap.com/) - Bike Rental Map * [Bike Sharing](https://bikesharingworldmap.com/) - Bike Rental Map
* [SkyDB](https://www.skydb.net/) - Skyscraper Locations / Info * [SkyDB](https://www.skydb.net/) - Skyscraper Locations / Info
* [Seat61](https://www.seat61.com/) - Train Travel Guide * [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 * [SitInShade](https://sitinshade.com/) - Avoid the Sun While Traveling
* [eSIMDB](https://esimdb.com/) - Compare eSIM Prices * [eSIMDB](https://esimdb.com/) - Compare eSIM Prices
@ -352,7 +354,7 @@
## ▷ Climate / Weather ## ▷ 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 * [CyclonicWx](https://cyclonicwx.com/) - Tropical Weather Tracking Tools / Plotting
* [Netweather](https://www.netweather.tv/charts-and-data/global-jetstream) - Global Jetstream Forcast Map * [Netweather](https://www.netweather.tv/charts-and-data/global-jetstream) - Global Jetstream Forcast Map
* [Cyclocane](https://www.cyclocane.com/) - Cyclone and Hurricane Tracker Map * [Cyclocane](https://www.cyclocane.com/) - Cyclone and Hurricane Tracker Map
@ -547,7 +549,7 @@
* [Related Submissions](https://hnrelevant.imadij.com/) - Similar Posts Sidebar Extension / [GitHub](https://github.com/imdj/HNRelevant) * [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 * [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 * [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 * [Hacker News RSS](https://hnrss.github.io/) - HN RSS Feeds
*** ***
@ -604,7 +606,7 @@
* [Weight Loss Side Effects](https://weight-loss-side-effects.netlify.app/) - Weight Loss Side Effect Mitigation * [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/GainIt](https://www.reddit.com/r/gainit/) - Healthy Weight Gain Subreddit
* [r/Flexibility](https://www.reddit.com/r/flexibility/) - Flexibility 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 * [oshaction](https://www.oshaction.org/resources/) - Occupational Health and Safety Resources
* [CancerFactFinder](https://cancerfactfinder.org/) - Cancer Fact Search * [CancerFactFinder](https://cancerfactfinder.org/) - Cancer Fact Search
@ -820,6 +822,7 @@
* 🌐 **[TheRemoteFreelancer](https://github.com/engineerapart/TheRemoteFreelancer)** - Remote Tech Jobs Index * 🌐 **[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 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)** * ↪️ **[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 * [MoAiJobs](https://www.moaijobs.com/) - Find Jobs in AI Companies
* [FOSS Jobs](https://www.fossjobs.net/) - FOSS Project Jobs * [FOSS Jobs](https://www.fossjobs.net/) - FOSS Project Jobs
* [key : values](https://www.keyvalues.com/) - Find Companies that Match Your Values * [key : values](https://www.keyvalues.com/) - Find Companies that Match Your Values
@ -836,7 +839,6 @@
* [Levels.fyi](https://www.levels.fyi/) - Tech Career Salaries * [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) * [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 * [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 * [Interview Warmup](https://grow.google/certificates/interview-warmup/) - Interview Practice
* [Cyberseek](https://www.cyberseek.org/index.html) - Cybersecurity US Job Market Info * [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 * [NIST](https://www.nist.gov/nice/apprenticeship-finder) - Find NICE Cybersecurity Apprenticeship Programs
@ -872,6 +874,7 @@
* [Zulip](https://zulip.com/) - Team Chat / [GitHub](https://github.com/zulip/zulip/) * [Zulip](https://zulip.com/) - Team Chat / [GitHub](https://github.com/zulip/zulip/)
* [Freedcamp](https://freedcamp.com/) - Project / Task Organization * [Freedcamp](https://freedcamp.com/) - Project / Task Organization
* [Asana](https://asana.com/) - Project / Task Organization * [Asana](https://asana.com/) - Project / Task Organization
* [Linear](https://linear.app/) - Project / Task Organization
* [Factsplat](https://factsplat.com/) - Project Manager * [Factsplat](https://factsplat.com/) - Project Manager
* [Mural](https://www.mural.co/) - Project Manager * [Mural](https://www.mural.co/) - Project Manager
* [Taskcafe](https://github.com/JordanKnott/taskcafe) - Task Manager * [Taskcafe](https://github.com/JordanKnott/taskcafe) - Task Manager
@ -902,6 +905,7 @@
* [Financials Extension](https://github.com/cmallwitz/Financials-Extension) - Stock Market Data for LibreOffice Calc * [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 * [YieldFinder](https://yieldfinder.app/) - Rates for Savings Accounts, Market Funds, and Treasuries
* [Quiver Quantitative](https://www.quiverquant.com/) - Stock Trading Research * [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 * [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 * [tickrs](https://github.com/tarkah/tickrs) - Ticker Data in Terminal
* [BestETF](https://www.bestetf.net/) or [ETFDB](https://etfdb.com/) - ETF Databases * [BestETF](https://www.bestetf.net/) or [ETFDB](https://etfdb.com/) - ETF Databases
@ -949,8 +953,9 @@
* [Hagglezon](https://www.hagglezon.com/) - Price Comparisons for Amazon Stores Across Europe * [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 * [Remove Amazon Sponsored](https://greasyfork.org/en/scripts/536756) - Remove Amazon Sponsored Listings
* [Slant](https://www.slant.co/) - "What are the best..." Product Rankings * [Slant](https://www.slant.co/) - "What are the best..." Product Rankings
* [PicClick](https://picclick.com/) - Ebay Quick 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 * [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 * [a view from my seat](https://aviewfrommyseat.co.uk/) - See Event Views Before Buying Tickets
* [Desenmascara](https://desenmascara.me/) - Spot Counterfeit Sites * [Desenmascara](https://desenmascara.me/) - Spot Counterfeit Sites
* [r/MaleFashionAdvice Spreadsheet](https://docs.google.com/spreadsheets/d/1mhOIpjUUibBf3QueJs8iRJy5gBKCILq82ekJkiC5uqQ/) - Male Clothing Brand / Price Spreadsheet * [r/MaleFashionAdvice Spreadsheet](https://docs.google.com/spreadsheets/d/1mhOIpjUUibBf3QueJs8iRJy5gBKCILq82ekJkiC5uqQ/) - Male Clothing Brand / Price Spreadsheet
@ -1019,6 +1024,7 @@
* [CheapShark](https://www.cheapshark.com/) - Multi-Store / [Discord](https://discord.com/invite/cheapshark) * [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) * [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) * [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 * [r/GameDeals](https://www.reddit.com/r/gamedeals) - Game Deal Subreddit
* [PriceCharting](https://www.pricecharting.com/) - Game, Comic & Trading Card Price Tracker * [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 * [VRDB](https://vrdb.app/) or [QuestStoreDB](https://queststoredb.com/) - VR Game / App Price Tracker
@ -1224,12 +1230,11 @@
## ▷ Image / Video ## ▷ 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)** * ↪️ **[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)** * ↪️ **[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/img-tools#wiki_.25B7_gif_tools)** * ↪️ **[GIF Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/image-tools#wiki_.25B7_gif_tools)**
* ↪️ **[Meme Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/img-tools/#wiki_.25B7_meme_tools)** * ↪️ **[Meme Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/image-tools/#wiki_.25B7_meme_tools)**
* ↪️ **[Random Webcams](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_live_webcams)**
* ↪️ **[4chan Archives](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/social-media#wiki_.25B7_4chan_archives)** * ↪️ **[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) * ⭐ **[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 * [loc.alize](https://loc.alize.us/) - Explore Earth via Images
@ -1256,6 +1261,7 @@
* [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 * [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 * [r/Place Atlas](https://place-atlas.stefanocoding.me/) - r/Place Info
* [LameBook](https://www.lamebook.com/) - Funny Facebook Statuses * [LameBook](https://www.lamebook.com/) - Funny Facebook Statuses
* [TinyFox](https://tinyfox.dev/image-list/) - Random Animal Images
* [Kittenwar!](https://www.kittenwar.com/) - Rate Kittens * [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 * [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 * [procatinator](https://procatinator.com/) - Cat GIFs & Music
@ -1375,6 +1381,7 @@
* [Odyssey](https://experience.odyssey.world/) - Interactive 3D AI Generated Video * [Odyssey](https://experience.odyssey.world/) - Interactive 3D AI Generated Video
* [Koalas to the Max](https://www.koalastothemax.com/) - Make Smaller & Smaller Dots * [Koalas to the Max](https://www.koalastothemax.com/) - Make Smaller & Smaller Dots
* [Popcat](https://popcat.click/) - Worldwide Popcat Clicking Competition * [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 * [Spherical Trochoids](https://claytonmain.github.io/spherical-trochoids/) - Experiment with Spherical Trochoids
* [DrawAFish](https://drawafish.com/) - Global Fish Drawing Tank * [DrawAFish](https://drawafish.com/) - Global Fish Drawing Tank
* [DrawAurora](https://www.drawaurora.com/) - Draw Auroras * [DrawAurora](https://www.drawaurora.com/) - Draw Auroras
@ -1417,7 +1424,7 @@
* ⭐ **[TVTropes](https://tvtropes.org/)** - Tropes & Media Encyclopedia * ⭐ **[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 * ⭐ **[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 * ⭐ **[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/) / [Discord](https://discord.gg/NFsM8YbBYH) or [/r/lostmedia](https://www.reddit.com/r/lostmedia/)
* ⭐ **[Goody2](https://www.goody2.ai/chat)** - World's Most Ethical AI * ⭐ **[Goody2](https://www.goody2.ai/chat)** - World's Most Ethical AI
* [The Pudding](https://pudding.cool/) - Explains Ideas w/ Visual Essays * [The Pudding](https://pudding.cool/) - Explains Ideas w/ Visual Essays
* [Google Earth](https://www.google.com/earth/about/versions) - Explore Earth * [Google Earth](https://www.google.com/earth/about/versions) - Explore Earth
@ -1492,6 +1499,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 ## ▷ Random
* 🌐 **[Funny / Useless](https://rentry.org/aksry2vc)** - Funny / Useless Websites * 🌐 **[Funny / Useless](https://rentry.org/aksry2vc)** - Funny / Useless Websites

View file

@ -11,7 +11,7 @@
* ⭐ **[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) * ⭐ **[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) / [Telegram](https://t.me/real4pda) * ⭐ **[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) / [Telegram](https://t.me/real4pda)
* ⭐ **[RockMods](https://www.rockmods.net/)** / [Telegram](https://t.me/RBMods) * ⭐ **[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) * ⭐ **[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) * ⭐ **[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) * [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)
@ -348,8 +348,6 @@
* ⭐ **[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](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) * ⭐ **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 * ⭐ **[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 * [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 * [aShell](https://gitlab.com/sunilpaulmathew/ashell) or [aShellYou](https://github.com/DP-Hridayan/aShellYou) - ADB Shells
* [LogFox](https://github.com/F0x1d/LogFox) - LogCat Reader * [LogFox](https://github.com/F0x1d/LogFox) - LogCat Reader
@ -434,7 +432,7 @@
* ↪️ **[Encrypted Messengers](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/adblock-vpn-privacy#wiki_.25B7_encrypted_messengers)** * ↪️ **[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)** * ↪️ **[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 * ⭐ **[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 * ⭐ **[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 * ⭐ **[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 * ⭐ **[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 * ⭐ **[NekoBoxForAndroid](https://github.com/MatsuriDayo/NekoBoxForAndroid)** or [Matsuri](https://matsuridayo.github.io/) - Proxy Clients
@ -694,11 +692,11 @@
* ↪️ **[Android on Linux](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/linux#wiki_.25B7_android_on_linux)** * ↪️ **[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 * ⭐ **[WSABuilds](https://github.com/MustardChef/WSABuilds)** - Windows Subsystem / Pre-built Binaries
* ⭐ **[Google Play Games](https://play.google.com/googleplaygames)** - Android Mobile Games on Windows * ⭐ **[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 * [Docker Android](https://github.com/budtmo/docker-android) - Android on Docker
* [Genymotion](https://www.genymotion.com/download/) - Android Emulator * [Genymotion](https://www.genymotion.com/download/) - Android Emulator
* [NoxPlayer](https://www.bignox.com/) - Android Emulator / [Debloat](https://gist.github.com/TameemS/72c4b92131977aced56e727d51599a48) * [NoxPlayer](https://www.bignox.com/) - Android Emulator / [Debloat](https://gist.github.com/TameemS/72c4b92131977aced56e727d51599a48)
* [GameLoop](https://www.gameloop.com/) - Android Emulator * [GameLoop](https://www.gameloop.com/) - Android Emulator
* [MuMuPlayer](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/) * [LDPlayer](https://www.ldplayer.net/) - Android Emulator / [Debloat](https://gist.github.com/TameemS/894cdb8adae1d6042a5f21c4e80bcd9e/)
@ -768,7 +766,7 @@
* ⭐ **[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) * ⭐ **[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) * ⭐ **[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](https://git.rebelonion.dev/rebelonion/Dantotsu/) / [Telegram](https://t.me/+gzBCQExtLQo1YTNh)
* [Mangayomi](https://github.com/kodjodevf/mangayomi) - Manga Reader * [Mangayomi](https://github.com/kodjodevf/mangayomi) - Manga Reader
* [LNReader](https://github.com/LNReader/lnreader) - Manga Reader * [LNReader](https://github.com/LNReader/lnreader) - Manga Reader
* [Perfect Viewer](https://rentry.co/FMHYBase64#perfect-viewer) - Manga File Viewer * [Perfect Viewer](https://rentry.co/FMHYBase64#perfect-viewer) - Manga File Viewer
@ -804,7 +802,7 @@
* [Airbuds](https://play.google.com/store/apps/details?id=com.capp.poplive) - Friends Listening Activity * [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 * [Super Sound](https://play.google.com/store/apps/details?id=com.tianxingjian.supersound) - Audio Editor
* [ViPER4Android](https://github.com/programminghoch10/ViPER4AndroidRepackaged) - Audio Modifier / Equalizer * [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 * [Musekit](https://github.com/Kwasow/Musekit) or [Tack](https://github.com/patzly/tack-android) - Tuning Fork / Metronome
*** ***
@ -815,7 +813,7 @@
* ⭐ **[Musicolet Music Player](https://krosbits.in/musicolet/)** * ⭐ **[Musicolet Music Player](https://krosbits.in/musicolet/)**
* ⭐ **[Namida](https://github.com/namidaco/namida)** * ⭐ **[Namida](https://github.com/namidaco/namida)**
* ⭐ **[VLC for Android](https://www.videolan.org/vlc/download-android.html)** * ⭐ **[VLC for Android](https://www.videolan.org/vlc/download-android.html)**
* ⭐ **[Foobar2000](https://www.foobar2000.org/apk)** * ⭐ **[Foobar2000](https://www.foobar2000.org/android)**
* ⭐ **[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) * ⭐ **[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)
* [AIMP](https://www.aimp.ru/?do=download&os=android) * [AIMP](https://www.aimp.ru/?do=download&os=android)
* [Gramophone](https://github.com/AkaneTan/Gramophone) * [Gramophone](https://github.com/AkaneTan/Gramophone)
@ -948,7 +946,7 @@
* ⭐ **[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 * ⭐ **[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) * ⭐ **[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) * [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) * [Dantotsu](https://discord.com/invite/4HPZ5nAWwM) / [Extension Guide](https://wotaku.wiki/guides/ext/mihon) / [Source](https://git.rebelonion.dev/rebelonion/Dantotsu/) / [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) * [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)
* [Animiru](https://github.com/Quickdesh/Animiru) * [Animiru](https://github.com/Quickdesh/Animiru)
* [Shiru](https://github.com/RockinChaos/Shiru) or [Migu](https://miguapp.pages.dev/) - Stream Anime Torrents * [Shiru](https://github.com/RockinChaos/Shiru) or [Migu](https://miguapp.pages.dev/) - Stream Anime Torrents
@ -1175,7 +1173,7 @@
* [fnd](https://fnd.io/) - App Store Search * [fnd](https://fnd.io/) - App Store Search
* [TrollStore-IPAs](https://github.com/Neoncat-OG/TrollStore-IPAs) - Tweaked Apps * [TrollStore-IPAs](https://github.com/Neoncat-OG/TrollStore-IPAs) - Tweaked Apps
* [PlatinMods](https://platinmods.com/) - Tweaked Apps / Sign-Up Required * [PlatinMods](https://platinmods.com/) - Tweaked Apps / Sign-Up Required
* [Scholars Lounge](https://t.me/thescholarslounge) - Tweaked Apps * [Scholars Lounge](https://t.me/thescholarslounge) - Tweaked Apps / [Discord](https://discord.gg/3FMj4T7j)
* [AppTesters](https://repository.apptesters.org/) - Tweaked Apps / [Telegram](https://t.me/AppleTesters) * [AppTesters](https://repository.apptesters.org/) - Tweaked Apps / [Telegram](https://t.me/AppleTesters)
* [iOSDecrypted](https://t.me/+ZyDPcj76C99lNzQy) - Modded Social Media Apps * [iOSDecrypted](https://t.me/+ZyDPcj76C99lNzQy) - Modded Social Media Apps
* [IPA Archive](https://stuffed18.github.io/ipa-archive-updated) - Search Engine * [IPA Archive](https://stuffed18.github.io/ipa-archive-updated) - Search Engine

View file

@ -34,6 +34,7 @@
* ⭐ **[Cimaleek](https://m.cimaleek.to/)** - Movies / TV * ⭐ **[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) * ⭐ **[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 * [ArabLionz](https://arlionztv.ink/) - Movies / TV / Sub / 1080p
* [egydead](https://egydead.space/) - Movies / TV / Anime / Sub / 1080p * [egydead](https://egydead.space/) - Movies / TV / Anime / Sub / 1080p
* [FajerShow](https://fajer.show) - Movies / TV / Cartoons / Sub / 720p * [FajerShow](https://fajer.show) - Movies / TV / Cartoons / Sub / 720p
@ -615,7 +616,7 @@
* [AB-Maps](https://www.abmaps.com/) - Map Tool * [AB-Maps](https://www.abmaps.com/) - Map Tool
* [WizdomSubs](https://wizdom.xyz/) or [Ktuvit](https://www.ktuvit.me/) - Subtitles * [WizdomSubs](https://wizdom.xyz/) or [Ktuvit](https://www.ktuvit.me/) - Subtitles
* [TranslationsMovieHEB](https://t.me/translationsmoviesheb) - Request Subtitle Translations * [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 / הזרמה ## ▷ Streaming / הזרמה
@ -634,18 +635,24 @@
# ► Hungarian / Magyar # ► Hungarian / Magyar
* [TorrentEmpire](https://torrent-empire.me/) - Torrent Discussion
* [Turistautak](https://turistautak.hu/) - Hungarian Maps * [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 * [hdmozi](https://hdmozi.hu/) - Movies / TV / Sub / Dub / 1080p
* [OnlineFilmekIngyen](https://www.onlinefilmekingyen1.com/) - Movies / Sub / Dub / 1080p * [OnlineFilmekIngyen](https://www.onlinefilmekingyen1.com/) - Movies / Sub / Dub / 1080p
* [filmezz](https://filmezz.club/) - Movies / TV / Dub / 720p * [filmezz](https://filmezz.club/) - Movies / TV / Dub / 720p
* [filmezek](https://filmezek.com/) - Movies * [filmezek](https://filmezek.com/) - Movies
* [mozicsillag](https://mozicsillag1.me/) - Movies / TV / Sub / Dub / 720p * [mozicsillag](https://mozicsillag1.me/) - Movies / TV / Sub / Dub / 720p
* [animedrive](https://animedrive.hu/) - Anime / [Discord](https://discord.com/invite/blackfire) * [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
*** ***
@ -658,7 +665,7 @@
## ▷ Downloading ## ▷ 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 * ⭐ **[UHDMovies](https://modlist.in/?type=uhdmovies)** - Movies / 4K
* ⭐ **[MkvCinemas](https://mkvcinemas.moi/)** - Movies / TV / Anime / Sub / Dub / 1080p / 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/) * ⭐ **[HDHub4u](https://hdhublist.com/?re=hdhub)** - Movies / TV / 1080p / [Telegram](https://hdhub4u.frl/join-our-group/)
@ -668,8 +675,8 @@
* ⭐ **[AToZ Cartoonist](https://atozcartoonist.me/)** - Cartoons / Anime / Sub / Dub / 1080p / [Discord](https://discord.com/invite/ZUW8yzDutd) * ⭐ **[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) * ⭐ **[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 * ⭐ **[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 * ⭐ **[Tamil Blasters](https://www.1tamilblasters.yachts/)** - Movies / TV / Sub / Dub / 1080p / 4K / Anime / Indian Languages
* ⭐ **[TamilMV](https://www.1tamilmv.blue/)** - 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 * [9xFlix](https://www.9xflix.me/) - Movies / TV / Anime
* [Bollyflix](https://bollyflix.army/) - Movies / TV / Anime * [Bollyflix](https://bollyflix.army/) - Movies / TV / Anime
* [Mallumv](https://mallumv.guru/) - Movies / Sub / Dub / 1080p / [Telegram](https://t.me/MalluMvoff) * [Mallumv](https://mallumv.guru/) - Movies / Sub / Dub / 1080p / [Telegram](https://t.me/MalluMvoff)
@ -702,8 +709,8 @@
## ▷ Torrenting ## ▷ Torrenting
* ⭐ **[TamilBlasters](https://www.tamilblasters.coupons/)** - 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.blue/)** - Movies / TV / Sub / Dub / 1080p / 4K / Anime / Indian Languages * ⭐ **[TamilMV](https://www.1tamilmv.vc/)** - Movies / TV / Sub / Dub / 1080p / 4K / Anime / Indian Languages
## ▷ Streaming ## ▷ Streaming
@ -712,11 +719,10 @@
* ⭐ **[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) * ⭐ **[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) * ⭐ **[ToonStream](https://toonstream.love/)** - Cartoons / Anime / 1080p / [Telegram](https://telegram.me/toonstream)
* ⭐ **[AniSAGA](https://anisaga.org/)** - Anime / Dub / 1080p * ⭐ **[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 * ⭐ **[MultiMovies](https://multimovies.guru)** - Movies / TV / .guru Always Redirects to Main
* ⭐ **[Anime World India](https://anime-world.app/)** - Anime * [Tamil Blasters](https://www.1tamilblasters.yachts/) - Movies / TV / Sub / Dub / 1080p / 4K / Anime / Indian Languages
* [Streamblasters](https://www.streamblasters.city/) - Movies / TV / Sub / Dub / 1080p / 4K / Anime / Indian Languages * [TamilMV](https://www.1tamilmv.vc/) - Movies / TV / Sub / Dub / 1080p / 4K / Anime / Indian Languages
* [TamilMV](https://www.1tamilmv.blue/) - Movies / TV / Sub / Dub / 1080p / 4K / Anime / Indian Languages
* [Einthusan](https://einthusan.tv/) - Movies / 1080p * [Einthusan](https://einthusan.tv/) - Movies / 1080p
* [TamilCrow](https://www.1tamilcrow.net/) - Tamil Movies / TV / Dub / 720p / 1080p * [TamilCrow](https://www.1tamilcrow.net/) - Tamil Movies / TV / Dub / 720p / 1080p
* [TamilGun](https://tamilgun.group/) - Tamil Movies / TV / Dub / 720p / 1080p * [TamilGun](https://tamilgun.group/) - Tamil Movies / TV / Dub / 720p / 1080p
@ -1293,7 +1299,7 @@
## ▷ Downloading / Скачивание ## ▷ 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) * ⭐ **[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 * [Androeed](https://androeed.store/), [2](https://androeed.ru/) / Android
* [CWER](http://cwer.ru/), [2](http://cwer.ws/) - Video / Audio / Games / Books * [CWER](http://cwer.ru/), [2](http://cwer.ws/) - Video / Audio / Games / Books
* [2BakSa](http://2baksa.ws/) - Video / Audio / Books * [2BakSa](http://2baksa.ws/) - Video / Audio / Books
* [Allmults](https://allmults.org/) - Cartoons / Sub / Dub / 1080p * [Allmults](https://allmults.org/) - Cartoons / Sub / Dub / 1080p
@ -1515,7 +1521,7 @@
## ▷ Torrenting / Torrentear ## ▷ 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 * ⭐ **[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) * [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 * [EliteTorrent](https://www.elitetorrent.wf/) - Movies / TV
@ -1757,44 +1763,50 @@
* ⭐ **[Unikey](https://www.unikey.org/)** - Vietnamese Keyboard / [SourceForge](https://sourceforge.net/projects/unikey/) * ⭐ **[Unikey](https://www.unikey.org/)** - Vietnamese Keyboard / [SourceForge](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) * ⭐ **[Baomoi](https://baomoi.com/)** - News Aggregator / [Mobile](https://play.google.com/store/apps/details?id=com.epi&hl=en_US)
* [hostsVN](https://github.com/bigdargon/hostsVN/wiki) - Adblocking Guides * [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 * [Phudeviet](http://phudeviet.org/) - Subtitles
* [Forumvi](https://www.forumvi.com/) - Create a Forum * [Forumvi](https://www.forumvi.com/) - Create a Forum
* [HocMai Forum](https://diendan.hocmai.vn/) - Study Forum * [HocMai Forum](https://diendan.hocmai.vn/) - Study Forum
* [MuaThongMinh](https://muathongminh.vn/) - E-commerce Price Tracker * [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 * [Unity_Cheat_Sheet](https://github.com/NaomiLe1811/Unity_Cheat_Sheet_Tieng_Viet) - Unity Game Engine Cheat Sheet
## ▷ Downloading / Tải xuống
* [NhạcHayVN](https://nhachayvn.net/) - Music
## ▷ Torrenting / Tải tệp bằng torrent ## ▷ Torrenting / Tải tệp bằng torrent
* [NetHD](https://nethd.org/) - Video / Audio * [NetHD](https://nethd.org/) - Video / Audio / Sign-Up Required
## ▷ Streaming / Phát trực tuyến ## ▷ 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 * ⭐ **[rophim](https://www.rophim.me/phimhay)** - Movies / TV / Anime / Watch Parties / Sub / Dub / 1080p / [Telegram](https://t.me/rophimzone), [Telegram](https://t.me/congdongrophim) (Alt) / [Discord](https://discord.gg/rophim)
* ⭐ **[VTVGo](https://vtvgo.vn/)** - Live TV / Free w/ Ads * [Phimmoi](https://vuaphimmoi.net/) - Movies / TV / Anime / Sub / Dub / 1080p
* ⭐ **[ZingMP3](https://zingmp3.vn/)** or [NhacCuaTui](https://www.nhaccuatui.com/) - Music / Free w/ Ads
* [HPlus](https://hplus.com.vn/), [2](https://htvc.com.vn/) - Live TV / TV / 1080p / Free w/ Ads
* [FPT Play](https://fptplay.vn/) - Live TV / Movies / TV / Anime / Cartoon / Free w/ Ads
* [THVL](https://www.thvli.vn/) - Live TV / Movies / TV / Dub / Free w/ Ads
* [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 * [XemPhim](https://xemphim.app/) - Movies / TV / 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) * [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 * [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 * [Ani4u](https://ani4u.org/) - Anime / Sub / 1080p
* [Tokuvn](https://tokuvn.com/) - Tokusatsu / Sub * [TVHayHD](https://tv.tvhayhd.org/) - Live TV / 1080p
* [TV360](https://tv360.vn/) - Live TV / Sub / 1080p * [TokuVN](https://tokuvn.com/) - Tokusatsu / Sub / 480p
* [TVHayHD](https://tv.tvhayhd.org/) - Live TV / 720p
* [6SVN](https://xem.6svn.com/) - Live TV ## ▷ Free w/ Ads / Miễn phí với quảng cáo
* ⭐ **[ZingMP3](https://zingmp3.vn/)** or [NhacCuaTui](https://www.nhaccuatui.com/) - Music
* [Danet](https://danet.vn/) - Movies / TV / Anime / Live TV / Sub / 720p
* [HTV](https://hplus.com.vn/), [2](https://htvc.com.vn/) - Live TV / TV / 1080p
* [FPT Play](https://fptplay.vn/) - Live TV / Movies / TV / Anime / Cartoon
* [VieON](https://vieon.vn/) - Live TV / Movies / TV / Anime / Cartoon / Sub / Dub / 1080p * [VieON](https://vieon.vn/) - Live TV / Movies / TV / Anime / Cartoon / Sub / Dub / 1080p
* [Muvi](https://muvi.vn/), [Nhacvn](https://nhac.vn/), [Keeng](https://keeng.vn/) or [Imuzik](https://imuzik.com.vn/) - Music * [THVL](https://www.thvli.vn/) - Live TV / Movies / TV / Dub
* [TV360](https://tv360.vn/) - Live TV / Sub / 1080p
## ▷ Reading / Đọc ## ▷ Reading / Đọc
* ⭐ **[hoc10](https://hoc10.vn/)** - Textbooks, Study Material, Lecture Notes, etc. * ⭐ **[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/) * ⭐ **[Thư Viện Pháp Luật](https://thuvienphapluat.vn/)** - Legal Information Portal / [Facebook](https://www.facebook.com/ThuVienPhapLuat.vn/)
* ⭐ **[VietJack](https://vietjack.com/)**, **[LoiGiaiHay](https://loigiaihay.com/)**, **[VNDoc](https://vndoc.com/)** or **[Tech12h](https://tech12h.com/)** - Educational Books / Documents / Study References * ⭐ **[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 * [Thivien](https://www.thivien.net/) - Poetry
* [MeTaiSach](https://metaisach.com/) - Books * [MeTaiSach](https://metaisach.com/) - Books
* [GacSach](https://gacsach.org/) - Books * [GacSach](https://gacsach.org/) - Books
@ -1803,7 +1815,6 @@
* [tieulun](https://tieulun.hd.free.fr/) - Books * [tieulun](https://tieulun.hd.free.fr/) - Books
* [SachHay](https://www.sachhayonline.com/) - Books * [SachHay](https://www.sachhayonline.com/) - Books
* [TruyenPlus](https://Truyenplus.vn) - Books / Novel * [TruyenPlus](https://Truyenplus.vn) - Books / Novel
* [DocTaiLieu](https://doctailieu.com/) - Educational Books / Documents
* [CongTruyen](https://congtruyen.org/) - Manga / Manhwa / Manhua * [CongTruyen](https://congtruyen.org/) - Manga / Manhwa / Manhua
* [TruyenQQ](https://truyenqqviet.com/) - Manga / Manhwa / Manhua * [TruyenQQ](https://truyenqqviet.com/) - Manga / Manhwa / Manhua
* [COMI](https://comi.mobi/) - Manga / Manhwa / Manhua / Novel * [COMI](https://comi.mobi/) - Manga / Manhwa / Manhua / Novel

26
docs/posts/FCC.md Normal file
View 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 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

View file

@ -25,16 +25,16 @@ in seeing all minor changes you can follow our
section. section.
- Added Optimization, Tabletop, and Git Gud subsections in - 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. 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. - 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 - Starred [ChatPDF](/ai/#ai-chatbots) in AI chatbots. AI that turns any book
into a chatbot. into a chatbot.
- Starred [Foogle](/videopiracyguide/#drives--directories) in Video Download. - Starred [Foogle](/video/#drives--directories) in Video Download.
Fast, single click video downloads. 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. 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. 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. Primewire has started adding links to pirated content again.
- Starred [Wotaku](https://wotaku.pages.dev/) in Indexes. Awesome Japanese - Starred [Wotaku](https://wotaku.pages.dev/) in Indexes. Awesome Japanese
piracy index. piracy index.
- Starred [RLSLOAD](/downloadpiracyguide/#software-sites) in software sites. - Starred [RLSLOAD](/downloading/#software-sites) in software sites.
Software site with single click downloads. 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. people like this more than ShareX.
--- ---

View file

@ -21,38 +21,38 @@ in seeing all minor changes you can follow our
### Wiki Updates ### Wiki Updates
- Split Android Tools into subsections: - Split Android Tools into subsections:
[Optimization](https://fmhy.net/android-iosguide#optimization), [Optimization](https://fmhy.net/mobile#optimization),
[Battery](https://fmhy.net/android-iosguide#battery-tools), [Battery](https://fmhy.net/mobile#battery-tools),
[Keyboard](https://fmhy.net/android-iosguide#keyboard-text), [Keyboard](https://fmhy.net/mobile#keyboard-text),
[Screen](https://fmhy.net/android-iosguide#screen-tools), [Screen](https://fmhy.net/mobile#screen-tools),
[Files](https://fmhy.net/android-iosguide#android-file-tools), [Files](https://fmhy.net/mobile#android-file-tools),
[Root / Flash](https://fmhy.net/android-iosguide#root-flash), [Root / Flash](https://fmhy.net/mobile#root-flash),
[Productivity](https://fmhy.net/android-iosguide#productivity-calendars), [Productivity](https://fmhy.net/mobile#productivity-calendars),
[Maps](https://fmhy.net/android-iosguide#maps-location), [Maps](https://fmhy.net/mobile#maps-location),
[Notifications](https://fmhy.net/android-iosguide#notifications-widgets) and [Notifications](https://fmhy.net/mobile#notifications-widgets) and
[Social Media](https://fmhy.net/android-iosguide#social-media-apps). [Social Media](https://fmhy.net/mobile#social-media-apps).
- Added [Abandonware](https://fmhy.net/gamingpiracyguide#abandonware), - Added [Abandonware](https://fmhy.net/gaming#abandonware),
[MOBA](https://fmhy.net/gamingpiracyguide#moba-tools), [MOBA](https://fmhy.net/gaming#moba-tools),
[Gacha](https://fmhy.net/gamingpiracyguide#gacha-tools), [Gacha](https://fmhy.net/gaming#gacha-tools),
[Counter-Strike](https://fmhy.net/gamingpiracyguide#counter-strike-tools), [Counter-Strike](https://fmhy.net/gaming#counter-strike-tools),
[Doom](https://fmhy.net/gamingpiracyguide#doom-tools) and [Doom](https://fmhy.net/gaming#doom-tools) and
[Controller Tool](https://fmhy.net/gamingpiracyguide#controller-tools) [Controller Tool](https://fmhy.net/gaming#controller-tools)
sections to Gaming. 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. Shopping.
- Added [Manga](https://fmhy.net/android-iosguide#android-manga) section to - Added [Manga](https://fmhy.net/mobile#android-manga) section to
Android Reading. Android Reading.
- Added [MPV Shaders](https://fmhy.net/storage#mpv-shaders) section to Video - Added [MPV Shaders](https://fmhy.net/storage#mpv-shaders) section to Video
Tools. Tools.
- Added [Email](https://fmhy.net/adblockvpnguide#email-privacy) section to - Added [Email](https://fmhy.net/privacy#email-privacy) section to
Privacy. 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. Tools.
- Our [FMHY Social](https://social.fmhy.net/@fmhy) (fediverse instance / - 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 ⭐ ### 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. Sports. Fast streams, no ads.
- Starred [Poke](https://fmhy.net/social-media-tools#youtube-frontends) in - 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 - Starred [Motrix](https://fmhy.net/file-tools#download-managers) in Download
Managers. Some people prefer this over Jdownloader / IDM. 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. Annas Archive app. Android Reading. Annas Archive app.
- Starred [Stacher](https://fmhy.net/social-media-tools#youtube-downloaders) in - 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. - Starred [Claude](https://fmhy.net/ai#online-chatbots) in Online Chatbots.
Works better than things like gemini. 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. Software Sites. Big library, single click DDL.
- Starred [JellyPlayer](https://fmhy.net/video-tools#jellyfin-tools) in Jellyfin - 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 - Starred [UniGetUI](https://fmhy.net/system-tools#package-managers) in Package
Managers. Nice user-interface for Winget. 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. 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 Android Emulators. Pre-built WSA binaries that will continue to be
[updated](https://ibb.co/R4hssDc). [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. Reverse Image Search. Multi-site reverse image search tool.
--- ---

View file

@ -41,7 +41,7 @@ in seeing all minor changes you can follow our
# Stars Added ⭐ # 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. - 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 [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. - 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.

View file

@ -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 - Moved fmhy.ml to **[fmhy.net](/)**, and updated its UI to more closely match
[fmhy.pages.dev](/). [fmhy.pages.dev](/).
- Separated Android Tools into subcategories: - Separated Android Tools into subcategories:
[Device](/android-iosguide/#android-device), [Device](/mobile/#android-device),
[Utilities](/android-iosguide/#android-utilities), [Utilities](/mobile/#android-utilities),
[Internet](/android-iosguide/#android-internet), [Internet](/mobile/#android-internet),
[Camera](/android-iosguide/#android-camera) and [Camera](/mobile/#android-camera) and
[Customization](/android-iosguide/#customization). [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), - Renamed Multi Hosts to [Multi Server](/video/#multi-server),
Dedicated Hosts to [Single Server](/videopiracyguide/#single-server), and Dedicated Hosts to [Single Server](/video/#single-server), and
bumped Multi above Single as they're generally better. bumped Multi above Single as they're generally better.
- Moved all the APK sections out of storage, and back into the main - 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 - Combined all [Indian Language sites](/non-english/#indian-languages) into one
section in Non-Eng, as most host content for more than one language. 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 ⭐ ### 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. library, fast hosts.
- Starred [SmashyStream](/videopiracyguide/#multi-server) in Streaming Sites. - Starred [SmashyStream](/video/#multi-server) in Streaming Sites.
Nice UI, fast 1080p. Nice UI, fast 1080p.
- Starred [BlackPearlOrigin](/storage/#game-libraries--launcher) in Game - Starred [BlackPearlOrigin](/storage/#game-libraries--launcher) in Game
Launchers. New game launcher and downloader, made by our friends. 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. 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. 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. 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. Streaming. Full Match replays.
- Starred [DownloadPirate](/storage/#vfx-sites) in VFX Sites. Popular site for - Starred [DownloadPirate](/storage/#vfx-sites) in VFX Sites. Popular site for

View file

@ -37,9 +37,9 @@ in seeing all minor changes you can follow our
[Servers](https://fmhy.net/gaming-tools#multiplayer-servers). [Servers](https://fmhy.net/gaming-tools#multiplayer-servers).
- Split Game Dev Tools into subsections: - Split Game Dev Tools into subsections:
[Game Engines](https://fmhy.net/devtools#game-engines), [Game Engines](https://fmhy.net/developer-tools#game-engines),
[Asset Creation](https://fmhy.net/devtools#asset-creation) and [Asset Creation](https://fmhy.net/developer-tools#asset-creation) and
[Map Creators](https://fmhy.net/devtools#map-creators-editors). [Map Creators](https://fmhy.net/developer-tools#map-creators-editors).
- Added [Office Suites](https://fmhy.net/text-tools#office-suites) section to - Added [Office Suites](https://fmhy.net/text-tools#office-suites) section to
Text Tools. Text Tools.
@ -70,7 +70,7 @@ in seeing all minor changes you can follow our
### Stars Added ⭐ ### 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. Audio Ripping. Multi-site audio ripping with 320kb / FLAC support.
- Starred [Proton Docs](https://fmhy.net/text-tools#online-editors) in Text - 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 - Starred [Pikimov](https://fmhy.net/video-tools#online-editors) in Online Video
Editors. Online adobe after effects alternative. 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. 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. 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. 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. Privacy Indexes. In-depth privacy guides / anti-surveillance.
- Starred - 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. 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. Social Media. ReVanced patches for X.com.
- Starred [auto-mcs](https://fmhy.net/storage#minecraft-server-tools) in - Starred [auto-mcs](https://fmhy.net/storage#minecraft-server-tools) in
Minecraft Server Tools. Simple Minecraft server setup. 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. Sites. Find random sites.
- Starred [Codeium](https://fmhy.net/ai#coding-ais) in Coding AIs. Popular - Starred [Codeium](https://fmhy.net/ai#coding-ais) in Coding AIs. Popular
coding AI with unlimited GPT-3.5. 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. Games. Printable paper chess set.
- Starred both Streamflix and PrimeFlix in - 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. lot recently.
- Re-added + Starred [Gmailnator](https://fmhy.net/internet-tools#temp-mail). - 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 ### Things Removed
- Removed Fmovies as its been offline for weeks. We've replaced it with - 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). - Removed Cipher Files as they've [shutdown](https://ibb.co/gzYX4Gb).

View file

@ -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. - 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 [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. - 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. - 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 ⭐ # 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. - 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 [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.
*** ***

View file

@ -27,26 +27,26 @@ in seeing all minor changes you can follow our
[Text Tools](/text-tools), [Video Tools](/video-tools) and [Text Tools](/text-tools), [Video Tools](/video-tools) and
[Audio Tools](/audio-tools). [Audio Tools](/audio-tools).
- Separated Health into subsections: [Mental](/miscguide#mental-health), - Separated Health into subsections: [Mental](/misc#mental-health),
[Physical](/miscguide#physical-health), [Physical](/misc#physical-health),
[Nutritional](/miscguide#nutritional-health), [Nutritional](/misc#nutritional-health),
[Sexual](/miscguide#sexual-health) and [Detoxing](/miscguide#detoxing). [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. in Gaming.
- Added a section for [Animation Tools](/video-tools#animation-tools) in Video - Added a section for [Animation Tools](/video-tools#animation-tools) in Video
Tools. Tools.
- Added a section for [Academic Papers](/readingpiracyguide#academic-papers) in - Added a section for [Academic Papers](/reading#academic-papers) in
Educational Reading. 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. [Textures / Patterns](/storage#textures-patterns) in Images.
- Added sections in Linux for [Video](/linuxguide#linux-video), - Added sections in Linux for [Video](/linux-macos#linux-video),
[Audio](/linuxguide#linux-audio), [Images](/linuxguide#linux-images) and [Audio](/linux-macos#linux-audio), [Images](/linux-macos#linux-images) and
[File Tools](/linuxguide#file-tools). [File Tools](/linux-macos#file-tools).
- Made a ["safe for work"](https://rentry.org/piracy) version of our index with - Made a ["safe for work"](https://rentry.org/piracy) version of our index with
no NSFW link listed. no NSFW link listed.
@ -58,22 +58,22 @@ in seeing all minor changes you can follow our
### Stars Added ⭐ ### 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. 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. 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. Fast hosts, pre-installs, clean uploads, ran by members of our community.
- Starred [AbandonwareGames](/storage#abandonware-games) in Abandonware Games. - Starred [AbandonwareGames](/storage#abandonware-games) in Abandonware Games.
Nice site with a big library of oldschool 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. 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. Directories. Telegram file archive + search tool.
- Starred [BleachBit](/system-tools#system-debloating) in system debloating. - 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 - Starred [DeepL](/text-tools#translators) in Translators. People feel this
gives some of the best results. 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. 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. 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. Firestick. Ad-free YouTube app. Previously called SmartTubeNext.
--- ---

View file

@ -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 [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) - 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 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. - 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 [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 [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 [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 [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.
*** ***

View file

@ -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 - Ran a [poll](https://i.imgur.com/73paJlr.png) regarding streaming sites, and
used the results to help us re-order the used the results to help us re-order the
[streaming section.](/videopiracyguide) [streaming section.](/video)
- Turned Spotify into its own section w/ subsections: - Turned Spotify into its own section w/ subsections:
[Clients](/audiopiracyguide#spotify-clients), [Clients](/audio#spotify-clients),
[Adblockers](/audiopiracyguide#spotify-adblockers), [Adblockers](/audio#spotify-adblockers),
[Download](/audiopiracyguide#spotify-download) and [Download](/audio#spotify-download) and
[Tools](/audiopiracyguide#spotify-tools). [Tools](/audio#spotify-tools).
- Added a section for [Soundtracks](/audiopiracyguide#media-soundtracks) in - Added a section for [Soundtracks](/audio#media-soundtracks) in
Audio. Audio.
- Added sections for [Computer Science](/devtools#computer-science) and - Added sections for [Computer Science](/developer-tools#computer-science) and
[Docker](/devtools#docker-tools) in Dev Tools. [Docker](/developer-tools#docker-tools) in Dev Tools.
- Added a section for - Added a section for
[Two-Factor Authentication](/adblockvpnguide#two-factor-authentication) in Web [Two-Factor Authentication](/privacy#two-factor-authentication) in Web
Privacy. Privacy.
- Re-organized [Magazine Sites](/readingpiracyguide#magazines) + added filehosts - Re-organized [Magazine Sites](/reading#magazines) + added filehosts
to their descriptions. to their descriptions.
- Removed OnStream from unsafe sites. The ["evidence"](https://rentry.co/upo2r) - 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 - Starred [Linqbin](/internet-tools#url-tools) in URL Tools. Privacy focused
temp link shortener/pastebin, made by one of our discord mods. 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. 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. 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. 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. Archive of nyaa.si with fast downloads.
- Starred [Divisions by zero](/social-media-tools#fediverse-tools) in Fediverse - Starred [Divisions by zero](/social-media-tools#fediverse-tools) in Fediverse
Tools. The best piracy focused instance on Lemmy. 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. 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. 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 Bypass. This is a fork of the original script with all tracking elements
removed. removed.
@ -112,7 +112,7 @@ in seeing all minor changes you can follow our
- Removed Tachiyomi as it is - Removed Tachiyomi as it is
[no longer being developed](https://tachiyomi.org/news/2024-01-13-goodbye). [no longer being developed](https://tachiyomi.org/news/2024-01-13-goodbye).
We've replaced it with its successor 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. there still work.
- Removed Revanced Extended in YouTube Apps as its been - Removed Revanced Extended in YouTube Apps as its been

View file

@ -21,13 +21,13 @@ in seeing all minor changes you can follow our
### Wiki Updates ### 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/FMHYNotes.md). - For individual notes we've stopped linking to pastebins, and instead link our own [GitHub page](https://github.com/fmhy/FMHY/wiki/FMHYNotes.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 [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 [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 [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 [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 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.

View file

@ -47,34 +47,34 @@ FMHY. Here's to another year of growth and success! 💙
added subsections for popular sites that needed them. (Reddit, Discord, added subsections for popular sites that needed them. (Reddit, Discord,
YouTube etc.) YouTube etc.)
- Added sections for [Game Soundtracks](/audiopiracyguide#game-soundtracks), - Added sections for [Game Soundtracks](/audio#game-soundtracks),
[IRC Tools](/downloadpiracyguide#irc-tools) and [IRC Tools](/downloading#irc-tools) and
[Coding AIs](/devtools#coding-ais). [Coding AIs](/developer-tools#coding-ais).
- Split Career into subsections: [Remote Jobs](/miscguide#remote-jobs), - Split Career into subsections: [Remote Jobs](/misc#remote-jobs),
[Tech Jobs](/miscguide#tech-jobs), [Startup](/miscguide#startup) and [Tech Jobs](/misc#tech-jobs), [Startup](/misc#startup) and
[Finance / Crypto](/miscguide#finance-crypto) [Finance / Crypto](/misc#finance-crypto)
- Split Game Mods into subsections: - Split Game Mods into subsections:
[Mod Indexes](/gamingpiracyguide#mod-indexes) and [Mod Indexes](/gaming#mod-indexes) and
[Single Mods](/gamingpiracyguide#game-mods) [Single Mods](/gaming#game-mods)
- Split News into subsections: [Aggregators](/miscguide#aggregators) and - Split News into subsections: [Aggregators](/misc#aggregators) and
[Tech News](/miscguide#tech-news) [Tech News](/misc#tech-news)
- Re-organized both - Re-organized both
[Android Operating Systems](/android-iosguide#operating-systems) + [Android Operating Systems](/mobile#operating-systems) +
[App Launchers](/android-iosguide#app-launchers), and moved them out of [App Launchers](/mobile#app-launchers), and moved them out of
storage. storage.
--- ---
### Stars Added ⭐ ### 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. 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. nice UI, single click downloads.
- Starred [Screenbox](/video-tools#video-players) in Video Players. Open-source, - 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 [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. 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. 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. 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. 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 - Starred [Video2x](/video-tools#video-tools-1) in Video Tools. Lossless
video/GIF/image upscaler. 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 - Starred [VCRedist](/system-tools#windows-updates) in Windows Updates. Easily
download all Microsoft Visual C++ redists. 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. Extensions. Prevent Javascript API fingerprinting.
--- ---

View file

@ -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. * 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). * 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 [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 [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.
--- ---

View file

@ -20,17 +20,17 @@ in seeing all minor changes you can follow our
### Wiki Updates ### Wiki Updates
- Added a [Study / Research](/edupiracyguide/#study--research) section to - Added a [Study / Research](/educational/#study--research) section to
Educational. 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 a [Hardware](/system-tools#hardware-tools) section to System Tools.
- Added qualities (720p, 1080p) to - 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. Unlockers.
- Linked the ["missing sections"](https://ibb.co/X8K2GTc) in all index pages. - 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 ⭐ ### Stars Added ⭐
- Starred [Seez](/videopiracyguide/#multi-hosts) in Streaming Sites. Nice UI, - Starred [Seez](/video/#multi-hosts) in Streaming Sites. Nice UI,
fast 1080p. fast 1080p.
- Starred [SockShare](/videopiracyguide/#dedicated-hosts) in Streaming Sites. - Starred [SockShare](/video/#dedicated-hosts) in Streaming Sites.
Great for obscure TV. Great for obscure TV.
- Starred [UHDMovies](/videopiracyguide/#download-sites) in Video Download. 4K - Starred [UHDMovies](/video/#download-sites) in Video Download. 4K
Movie Host. Movie Host.
- Starred [Glitchwave](/gamingpiracyguide/#tracking--discovery) in Game - Starred [Glitchwave](/gaming/#tracking--discovery) in Game
Tracking. RYM's new game rating site. 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. Huge collection of live band videos.
- Starred [SittingOnClouds](/audiopiracyguide/#download-sites) in Audio - Starred [SittingOnClouds](/audio/#download-sites) in Audio
Download. Game / Anime Soundtracks. Download. Game / Anime Soundtracks.
- Starred [Koalageddon](/gamingpiracyguide/#steam--epic) in Steam / Epic. DLC - Starred [Koalageddon](/gaming/#steam--epic) in Steam / Epic. DLC
Unlocker. Unlocker.
- Starred [SpotC++](/android-iosguide/#ios-audio) in iOS Audio. Spotilife + - Starred [SpotC++](/mobile/#ios-audio) in iOS Audio. Spotilife +
Sposify IPA. Sposify IPA.
- Starred [Favoree](/toolsguide/#youtube-tools) in YouTube Tools. Channel - Starred [Favoree](/toolsguide/#youtube-tools) in YouTube Tools. Channel
Discovery. Discovery.
- Starred [CloakStream](/adblockvpnguide/#browser-tools) in Privacy Tools. - Starred [CloakStream](/privacy/#browser-tools) in Privacy Tools.
Encrypt Download URLs. Encrypt Download URLs.
--- ---

View file

@ -42,7 +42,7 @@ see most.
### Wiki Updates ### Wiki Updates
- Added [Stremio Tools](https://fmhy.net/videopiracyguide#stremio-tools) section - Added [Stremio Tools](https://fmhy.net/video#stremio-tools) section
to Streaming. to Streaming.
- Added [Video Generation](https://fmhy.net/ai#video-generation) section to AI. - 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 [USB / Bootloaders](https://fmhy.net/system-tools#usb-bootloaders) sections to
System Tools. System Tools.
- Added [Network Security](https://fmhy.net/adblockvpnguide#network-security) - Added [Network Security](https://fmhy.net/privacy#network-security)
section to Privacy. section to Privacy.
- Added - Added
[Fanfiction / Stories](https://fmhy.net/readingpiracyguide#fanfiction-stories) [Fanfiction / Stories](https://fmhy.net/reading#fanfiction-stories)
section to Reading. section to Reading.
- Added [Audio Metadata](https://fmhy.net/audiopiracyguide#audio-metadata) - Added [Audio Metadata](https://fmhy.net/audio#audio-metadata)
section to Audio. 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. section to Linux.
- Added [Latex Tools](https://fmhy.net/storage#latex-tools) section to Math. - Added [Latex Tools](https://fmhy.net/storage#latex-tools) section to Math.
@ -73,16 +73,16 @@ see most.
section with subsections. section with subsections.
- Split Subtitle section into - Split Subtitle section into
[Tools](https://fmhy.net/videopiracyguide#subtitles) and [Tools](https://fmhy.net/video#subtitles) and
[Downloads](https://fmhy.net/videopiracyguide#download-subtitles). [Downloads](https://fmhy.net/video#download-subtitles).
- Added multiple (15) new sections to - 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. sections.
- Cleaned up [Video Hosts](https://fmhy.pages.dev/video-tools#video-file-hosts), - Cleaned up [Video Hosts](https://fmhy.pages.dev/video-tools#video-file-hosts),
[Image Optimization](https://fmhy.net/img-tools#image-optimization) and [Image Optimization](https://fmhy.net/image-tools#image-optimization) and
[Icons / Avatars](https://fmhy.net/img-tools#icons-avatars) sections. [Icons / Avatars](https://fmhy.net/image-tools#icons-avatars) sections.
- Started adding Non-English spellings (i.e. Chinese / 汉语方言) to titles in - 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 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 in Bio Sites. Feature-rich, nice UI, stood out to us when going through the
section. section.
- Starred [RetroAchievements](https://fmhy.net/gamingpiracyguide#emulators) in - Starred [RetroAchievements](https://fmhy.net/gaming#emulators) in
Emulators. Add achievements to retro games / ROMs. Emulators. Add achievements to retro games / ROMs.
- Starred [r/Translator](https://www.reddit.com/r/translator/) in Translators. - 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. - Starred [sdk.vercel](https://fmhy.net/ai#online-chatbots) in Online Chatbots.
Chatbot playground with unlimited GPT-4o. 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. APKs. Covers most basic apps, minimal UI.
- Starred - 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. 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. 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. 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. 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. 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). - Added star back to [Bloxstrap](https://fmhy.net/gaming-tools#roblox-tools).
Most issues are being fixed and repo seems to be active again. Most issues are being fixed and repo seems to be active again.

View file

@ -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 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 [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 ⭐ # 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 [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 [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 [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 [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.
*** ***

View file

@ -19,14 +19,14 @@ in seeing all minor changes you can follow our
### Wiki Updates ### Wiki Updates
- Added a [Chess / Checkers](/gamingpiracyguide/#chess--checkers) section to - Added a [Chess / Checkers](/gaming/#chess--checkers) section to
Browser Games. Browser Games.
- Added a [Stable Diffusion](/ai/#stable-diffusion) section to Artificial - Added a [Stable Diffusion](/ai/#stable-diffusion) section to Artificial
Intelligence. Intelligence.
- Added qualities (720p, 1080p, 4k) to - 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 - Created a [Git Organization](https://github.com/fmhy) and combined all FMHY
related projects into it. 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 [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. 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 [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 - Starred [Rating Graph](https://www.ratingraph.com/) and
[DeepSearch](https://deepsearch.mycelebs.com/movie) in Tracking / Discovery. [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. Dev Tools.
- Starred [CityHop](/audiopiracyguide/#ambient--relaxation) in Ambient / - Starred [CityHop](/audio/#ambient--relaxation) in Ambient /
Relaxation. 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. 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. - Unstarred Awesome ChatGPT as its no longer updated.
- Bromite doesn't seem to be maintained anymore, so we've replaced the main repo - 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.

View file

@ -25,31 +25,31 @@ in seeing all minor changes you can follow our
[3DS / DS](https://fmhy.net/gaming-tools#_3ds-ds-homebrew) and [3DS / DS](https://fmhy.net/gaming-tools#_3ds-ds-homebrew) and
[Playstation](https://fmhy.net/gaming-tools#playstation-homebrew) sections to [Playstation](https://fmhy.net/gaming-tools#playstation-homebrew) sections to
Homebrew. 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. and [Game Save](https://fmhy.net/gaming-tools#game-saves) sections to Gaming.
- Added [Dev Communities](https://fmhy.net/devtools#dev-communities) and - Added [Dev Communities](https://fmhy.net/developer-tools#dev-communities) and
[Reverse Engineering](https://fmhy.net/devtools#reverse-engineering) sections [Reverse Engineering](https://fmhy.net/developer-tools#reverse-engineering) sections
to Dev Tools. 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. 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 - 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), - Debloated [Indexes](https://fmhy.net/misc#indexes),
[Multi-Tool](https://fmhy.net/miscguide#multi-tool-sites), [Multi-Tool](https://fmhy.net/misc#multi-tool-sites),
[File Scanners](https://fmhy.net/adblockvpnguide#file-scanners), [File Scanners](https://fmhy.net/privacy#file-scanners),
[Archiving](https://fmhy.net/internet-tools#archiving) and [Archiving](https://fmhy.net/internet-tools#archiving) and
[Sheet Music](https://fmhy.net/storage#music-sheet-collections) sections. [Sheet Music](https://fmhy.net/storage#music-sheet-collections) sections.
- Re-added our - Re-added our
[Unsafe Sites Filter](https://github.com/WindowsAurora/FMHYFilterlist/). This [Unsafe Sites Filter](https://github.com/WindowsAurora/FMHYFilterlist/). This
can be added to uBlock to stop anything in 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 - 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). 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 ⭐ ### Stars Added ⭐
- Starred both squid.wtf and MP3 Daddy in - 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. ripping sites both capable of getting FLAC files.
- Starred [Morphic](https://fmhy.net/ai#online-chatbots) in Online Chatbots. - Starred [Morphic](https://fmhy.net/ai#online-chatbots) in Online Chatbots.
GPT4o powered search w/ no limits. 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. 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 Linux Communities. Linux Discord server focused on helping others and
learning. 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 - Starred [CompactGUI](https://fmhy.net/file-tools#file-archivers) in File
Archivers. Very [useful](https://ibb.co/xm23Xbh) archiver with nice UI. 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. 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) - 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) - Starred [PurpleAdblock](https://fmhy.net/social-media-tools#twitch-adblockers)
in Twitch Adblockers. Got a update recently and seems to be working again. 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. Viewers. Popular lightweight image viewer with a nice UI.
- Starred [Neal.fun](https://fmhy.net/storage#fun-indexes) in Fun Indexes. OG - Starred [Neal.fun](https://fmhy.net/storage#fun-indexes) in Fun Indexes. OG
site with lots of fun games / experiments. 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. Adblockers as their lists are more updated than NextDNS.
- Starred [ChatGPT](https://fmhy.net/ai#online-chatbots) in Online Chatbots as - Starred [ChatGPT](https://fmhy.net/ai#online-chatbots) in Online Chatbots as

View file

@ -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). - 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 [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 [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 [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). - 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 [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. - 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 [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. - 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.

View file

@ -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. - 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. - 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 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 [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. - 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.

View file

@ -23,29 +23,29 @@ in seeing all minor changes you can follow our
[Fonts](https://cse.google.com/cse?cx=82154ebab193e493d). [Fonts](https://cse.google.com/cse?cx=82154ebab193e493d).
- Added section for - Added section for
[Productivity Tools](https://fmhy.net/miscguide#productivity-tools) in Useful [Productivity Tools](https://fmhy.net/misc#productivity-tools) in Useful
Sites. Sites.
- Added section for [File Recovery](https://fmhy.net/file-tools#file-recovery) - Added section for [File Recovery](https://fmhy.net/file-tools#file-recovery)
in File Tools. in File Tools.
- Added section for - Added section for
[Fingerprinting / Tracking](https://fmhy.net/adblockvpnguide#fingerprinting-tracking) [Fingerprinting / Tracking](https://fmhy.net/privacy#fingerprinting-tracking)
in Privacy. in Privacy.
- Added sections for - Added sections for
[Mario Kart](https://fmhy.net/gamingpiracyguide#mario-kart-tools) + [Mario Kart](https://fmhy.net/gaming#mario-kart-tools) +
[Geometry Dash](https://fmhy.net/gamingpiracyguide#geometry-dash-tools) in [Geometry Dash](https://fmhy.net/gaming#geometry-dash-tools) in
Gaming. Gaming.
- Added section for - 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. Linux.
- Added sections for [Design Apps](https://fmhy.net/img-tools#design-apps) + - Added sections for [Design Apps](https://fmhy.net/image-tools#design-apps) +
[Design Assets](https://fmhy.net/img-tools#free-assets) in Image Tools. [Design Assets](https://fmhy.net/image-tools#free-assets) in Image Tools.
- Our Minecraft Server is now live. Click - Our Minecraft Server is now live. Click
**[here](https://fmhy.net/posts/minecraft-server)** to join. **[here](https://fmhy.net/posts/minecraft-server)** to join.
@ -55,7 +55,7 @@ in seeing all minor changes you can follow our
### Stars Added ⭐ ### Stars Added ⭐
- Starred - 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, in Audio Downloading. Multi-site DDL (deezer, qobuz, tidal, spotify, youtube,
FLAC.) FLAC.)
@ -63,7 +63,7 @@ in seeing all minor changes you can follow our
limit GPT-4, tell it to always talk in english. limit GPT-4, tell it to always talk in english.
- Starred - 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 Streaming. Both have huge libraries, fast 1080p, and have been around for over
a decade. 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 [Simply Optimized](https://fmhy.net/storage#minecraft-optimization-mods) in
Minecraft Optimization. Some prefer this to Fabulously Optimized. 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. 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. 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. Sports Streaming. Sport replay torrents.
- Starred - Starred
[Enhancer for YT](https://fmhy.net/social-media-tools#youtube-customization) [Enhancer for YT](https://fmhy.net/social-media-tools#youtube-customization)
in YouTube Customization. YouTube enhancement extension. 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. Tracking / Discovery. Sync media ratings between sites.
--- ---

View file

@ -28,33 +28,33 @@ in seeing all minor changes you can follow our
to [System Tools](/system-tools). to [System Tools](/system-tools).
- Added Chat / Forums, Image / Video, Interactive, Interesting and Random - 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. software sites.
--- ---
### Stars Added ⭐ ### Stars Added ⭐
- Starred [Torrminatorr](/gamingpiracyguide/#download-games) in Gaming Sites. - Starred [Torrminatorr](/gaming/#download-games) in Gaming Sites.
Tormminatorr is back! 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! 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. 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. 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. 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. manga scraper.
- Starred [FoxyTab](https://addons.mozilla.org/en-US/firefox/addon/foxytab/), - 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/) [Scroll Anywhere](https://addons.mozilla.org/en-US/firefox/addon/scroll_anywhere/)
in Browser Extensions. 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. 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. Android Streaming. Some extensions are still getting updates.
--- ---

View file

@ -20,50 +20,50 @@ in seeing all minor changes you can follow our
### Wiki Updates ### Wiki Updates
- Added [Multi-Game](https://fmhy.net/gamingpiracyguide#multi-game-sites), - Added [Multi-Game](https://fmhy.net/gaming#multi-game-sites),
[Party](https://fmhy.net/gamingpiracyguide#party-games), [Party](https://fmhy.net/gaming#party-games),
[Shooter](https://fmhy.net/gamingpiracyguide#shooter), [Shooter](https://fmhy.net/gaming#shooter),
[Platforming](https://fmhy.net/gamingpiracyguide#platformer), [Platforming](https://fmhy.net/gaming#platformer),
[Simulation](https://fmhy.net/gamingpiracyguide#simulation), [Simulation](https://fmhy.net/gaming#simulation),
[Arcade](https://fmhy.net/gamingpiracyguide#arcade) and [Arcade](https://fmhy.net/gaming#arcade) and
[RPG](https://fmhy.net/gamingpiracyguide#rpg) sections to Browser Games. [RPG](https://fmhy.net/gaming#rpg) sections to Browser Games.
- Added [Med School](https://fmhy.net/edupiracyguide#med-school), - Added [Med School](https://fmhy.net/educational#med-school),
[Philosophy](https://fmhy.net/edupiracyguide#philosophy) and [Philosophy](https://fmhy.net/educational#philosophy) and
[Geography](https://fmhy.net/edupiracyguide#geography-datasets) sections to [Geography](https://fmhy.net/educational#geography-datasets) sections to
Education. Education.
- Added [Linux Guides](https://fmhy.net/linuxguide#linux-guides) and - Added [Linux Guides](https://fmhy.net/linux-macos#linux-guides) and
[Window Managers](https://fmhy.net/linuxguide#window-managers) sections to [Window Managers](https://fmhy.net/linux-macos#window-managers) sections to
Linux. Linux.
- Added [Public Domain](https://fmhy.net/readingpiracyguide#public-domain) - Added [Public Domain](https://fmhy.net/reading#public-domain)
section to Reading. section to Reading.
- Added [German](https://fmhy.net/edupiracyguide#german) section to Language - Added [German](https://fmhy.net/educational#german) section to Language
Learning. Learning.
- Renamed Audio Download to - 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. the section, and separated sites and tools into their own subsections.
- Cleaned up - 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), [Paywall Bypass](https://fmhy.net/internet-tools#paywall-bypass),
[Pastebins](https://fmhy.pages.dev/text-tools#pastebins) and [Pastebins](https://fmhy.pages.dev/text-tools#pastebins) and
[OSINT](https://fmhy.net/internet-tools#open-source-intelligence) sections. [OSINT](https://fmhy.net/internet-tools#open-source-intelligence) sections.
- Moved [Periodic Tables](https://fmhy.net/edupiracyguide#periodic-tables), - Moved [Periodic Tables](https://fmhy.net/educational#periodic-tables),
[Quotes](https://fmhy.net/edupiracyguide#quote-indexes), [Quotes](https://fmhy.net/educational#quote-indexes),
[File Scanners](https://fmhy.net/adblockvpnguide#file-scanners) and [File Scanners](https://fmhy.net/privacy#file-scanners) and
[Sheet Music](https://fmhy.net/audiopiracyguide#sheet-music) out of storage [Sheet Music](https://fmhy.net/audio#sheet-music) out of storage
into main sections. into main sections.
- Moved [Gaming Tools](https://fmhy.net/gaming-tools) out of gaming onto its own - Moved [Gaming Tools](https://fmhy.net/gaming-tools) out of gaming onto its own
page. page.
- Separated [Painting](https://fmhy.net/img-tools#painting) and - Separated [Painting](https://fmhy.net/image-tools#painting) and
[Drawing](https://fmhy.net/img-tools#drawing) into their own sections. [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 System Debloating. Collaborative project by our discord members, let us know
what you think or if you have any suggestions for it. 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. 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. 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 Streaming Tools. Fragmentation streaming which speeds up browser video
buffering. buffering.
- Starred [Mumble](https://fmhy.net/internet-tools#chat-tools) in Chat Tools. - Starred [Mumble](https://fmhy.net/internet-tools#chat-tools) in Chat Tools.
Oldschool voice chat client used and loved by many. 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. Torrent Clients. Simple client still popular in some circles.
- Starred [SpecialK](https://fmhy.net/gaming-tools#optimization-tools) in Gaming - Starred [SpecialK](https://fmhy.net/gaming-tools#optimization-tools) in Gaming
Optimization. Feature-rich game optimization tool. 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. 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. Image Search. Multi-site search engine.
- Starred [Puter](https://fmhy.net/system-tools#os-emulators) in OS Emulators. - 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. Minecraft Tools. Comprehensive block info database.
- Starred - Starred
[Shazam + WatZatSong](https://fmhy.net/audiopiracyguide#song-identification) [Shazam + WatZatSong](https://fmhy.net/audio#song-identification)
in Song Identification. Popular song identification tools. in Song Identification. Popular song identification tools.
--- ---

View file

@ -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 [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. - 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 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). - 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 [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. - 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 ⭐ # 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 [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 [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 [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 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 [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. - 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.
*** ***

View file

@ -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. - 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 [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). - 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 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 [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 [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 [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 [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. - Went through [SMS verification](https://fmhy.net/storage#sms-verification-sites) and starred ones that stood out the most.

View file

@ -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 from FMHY. You can also download the guides yourself by using this
[script](https://gist.github.com/Rust1667/efc055debaf4876e4de39cc0d32f18c1). [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. 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 - 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 [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. site with lots of systems.
- Starred [Qiwi](/storage/#file-sharing-tools) in File Hosts. Fast host that's - Starred [Qiwi](/storage/#file-sharing-tools) in File Hosts. Fast host that's
becoming popular in piracy circles. becoming popular in piracy circles.
- Starred Moo and Media in - 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. of content.
- Starred [WiiUDownloader](/gamingpiracyguide/#rom-sites) in ROM sites. Updated - Starred [WiiUDownloader](/gaming/#rom-sites) in ROM sites. Updated
more frequently than WiiUSBHelper. 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. streams, lots of channels.
- Starred [TamperMonkey](/storage/#userscript-managers) in Userscript Managers. - 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. - Starred [PeaZip](/storage/#compression-programs) in File Archivers.
Open-source, supports many formats. 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. 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. 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. Software site with many Apps.
- Starred [PlayPhrase](/video-tools) in Video Tools. Search entire internet for - 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. - Starred [Magic ToDo](/storage/#note-taking--to-do-apps) in To Do Apps.
Automatic Task Breakdown AI. Automatic Task Breakdown AI.
- Starred [SafeSubstance](/miscguide/#health) in Health. Drug Information / Side - Starred [SafeSubstance](/misc/#health) in Health. Drug Information / Side
Effects. Effects.
- Starred [TinyKittens](https://tinykittens.com/) in General Tools. Kitten - Starred [TinyKittens](https://tinykittens.com/) in General Tools. Kitten

View file

@ -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. - 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. - 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 ⭐ ### 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 [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 [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 [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. - Starred [Simple Tab Groups](https://fmhy.net/storage#tab-managers) in Tab Managers. Feature-rich tab manager with plugin support.

View file

@ -20,18 +20,18 @@ in seeing all minor changes you can follow our
### Wiki Updates ### Wiki Updates
- Split Linux Tools into subcategories: [System](/linuxguide/#linux-system), - Split Linux Tools into subcategories: [System](/linux-macos/#linux-system),
[Apps](/linuxguide/#linux-apps), [Internet](/linuxguide/#linux-internet), [Apps](/linux-macos/#linux-apps), [Internet](/linux-macos/#linux-internet),
[Terminal / Shell](/linuxguide/#terminal--shell) and [Terminal / Shell](/linux-macos/#terminal--shell) and
[Customization](/linuxguide/#customization). [Customization](/linux-macos/#customization).
- NSFW has been [overhauled](/nsfwpiracy/) with a bunch of new sites and - NSFW has been [overhauled](/nsfwpiracy/) with a bunch of new sites and
sections. sections.
- Added Z-Libs new [Desktop App / Extension](/readingpiracyguide/#reading-sites) - Added Z-Libs new [Desktop App / Extension](/reading/#reading-sites)
in 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/) [rebranded](https://torrentfreak.com/9anime-rebrands-to-aniwave-citing-legal-troubles-230802/)
to avoid blocking. to avoid blocking.
@ -44,9 +44,9 @@ in seeing all minor changes you can follow our
### Stars Added ⭐ ### Stars Added ⭐
- Starred SusFlix and The Movie Archive in - 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. Big drive, fast downloads.
- Starred - Starred
@ -56,29 +56,29 @@ in seeing all minor changes you can follow our
- Starred [NanaZip](/storage/#compression-programs) in File Archivers. - Starred [NanaZip](/storage/#compression-programs) in File Archivers.
Open-source, modern design, preferred over 7-Zip by some. 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 Open-source client with many useful
[plugins](https://dev.deluge-torrent.org/wiki/Plugins). [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. Open-source YouTube Music client.
- Starred APKPure and UpToDown in - 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. Piracy Indexes.
- Starred [ReadAllComics](/readingpiracyguide/#comic-sites) in Comics. Big - Starred [ReadAllComics](/reading/#comic-sites) in Comics. Big
library, no captcha. library, no captcha.
- Starred [WatchWrestling24](/videopiracyguide/#sports-streaming) in Sports - Starred [WatchWrestling24](/video/#sports-streaming) in Sports
Streaming. Good video hosts, quick uploads. 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). 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. Service Design Tipline.
- Starred [Scoop](/storage/#package-managers) in Package Managers. Command-line - Starred [Scoop](/storage/#package-managers) in Package Managers. Command-line

View file

@ -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 [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 [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). - 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 ⭐ ### 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. - 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 [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 [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 [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 [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
View 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.

View file

@ -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](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) * ⭐ **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 * [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 * [BehindTheOverlay](https://github.com/NicolaeNMV/BehindTheOverlay) - Hide Website Overlays
* [BilibiliSponsorBlock](https://github.com/hanydd/BilibiliSponsorBlock) - Skip Sponsored Bilibili Ads * [BilibiliSponsorBlock](https://github.com/hanydd/BilibiliSponsorBlock) - Skip Sponsored Bilibili Ads
@ -89,6 +89,7 @@
* ↪️ **[Virtual Machines](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/system-tools#wiki_.25B7_virtual_machines)** * ↪️ **[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 * ⭐ **[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) * ⭐ **[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 * ⭐ **[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 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 * [FMHY LinkSafe Guard](https://greasyfork.org/en/scripts/528660-fmhy-safelink-guard) - Shows if Site is Trusted / Untrusted on Web Results
@ -96,7 +97,6 @@
* [Sandboxie Plus](https://sandboxie-plus.com/) - Sandbox Environment / [Guide](https://rentry.co/sandboxie-guide) / [GitHub](https://github.com/sandboxie-plus/Sandboxie) * [Sandboxie Plus](https://sandboxie-plus.com/) - Sandbox Environment / [Guide](https://rentry.co/sandboxie-guide) / [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 * [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) * [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 * [SquareX](https://public.sqrx.com/web) - Browser Sandbox
* [No More Ransom](https://www.nomoreransom.org/en/decryption-tools.html) - Ransomware Decryption Tools * [No More Ransom](https://www.nomoreransom.org/en/decryption-tools.html) - Ransomware Decryption Tools
* [ID Ransomware](https://id-ransomware.malwarehunterteam.com/) - Ransomware Identification Tool * [ID Ransomware](https://id-ransomware.malwarehunterteam.com/) - Ransomware Identification Tool
@ -219,7 +219,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 * [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 * [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) * [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 * [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 * [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 * [Power Delete Suite](https://github.com/j0be/PowerDeleteSuite) - Reddit Auto Post Delete
@ -271,7 +270,7 @@
## ▷ Encrypted Messengers ## ▷ 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 * 🌐 **[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
* ⭐ **[SimpleX](https://simplex.chat/)** - All Platforms / [GitHub](https://github.com/simplex-chat) * ⭐ **[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 * ⭐ **[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) * ⭐ **[Briar](https://briarproject.org/)** / Android / [GitLab](https://code.briarproject.org/briar/briar)
@ -310,7 +309,7 @@
* ⭐ **[Have I Been Pwned?](https://haveibeenpwned.com/)** - Monitor Email Breaches / [GitHub](https://github.com/HaveIBeenPwned) * ⭐ **[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 * ⭐ **[Have I Been Pwned Passwords](https://haveibeenpwned.com/Passwords)** - Password Breach Check
* [Mozilla Monitor](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 * [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) * [Intelligence X](https://intelx.io/) - Password Breach Check / [GitHub](https://github.com/IntelligenceX)
* [psbdmp](https://psbdmp.ws/) - Password Breach Check * [psbdmp](https://psbdmp.ws/) - Password Breach Check
@ -344,11 +343,8 @@
* ⭐ **[Brave Search](https://search.brave.com/)** - Independent * ⭐ **[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/) * ⭐ **[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 * [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) * [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/) * [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) * [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/) * [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) * [SearXNG](https://docs.searxng.org/) - Self-Hosted / Metasearch / [GitHub](https://github.com/searxng/searxng)
@ -381,7 +377,7 @@
* ⭐ **[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/) * ⭐ **[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 * ⭐ **[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 * [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 * [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) * [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 * [OpenVPN](https://openvpn.net/) - VPN Tunnel
@ -452,4 +448,4 @@
* [Hi!Load VPN](https://t.me/hlvpnbot) - Censorship Resistant Proxies / 30GB per month / No Torrenting / [Support](https://t.me/highloadvpn) * [Hi!Load VPN](https://t.me/hlvpnbot) - Censorship Resistant Proxies / 30GB per month / No Torrenting / [Support](https://t.me/highloadvpn)
* [Hysteria](https://v2.hysteria.network/) - Speed-Focused Censorship Bypass Proxy / [Telegram](https://t.me/hysteria_github) / [GitHub](https://github.com/apernet/hysteria) * [Hysteria](https://v2.hysteria.network/) - Speed-Focused Censorship Bypass Proxy / [Telegram](https://t.me/hysteria_github) / [GitHub](https://github.com/apernet/hysteria)
* [Project X](https://github.com/XTLS/Xray-core) - Anti-Censorship Client / Server Core / [Telegram](https://t.me/projectXray), [2](https://t.me/projectVless) * [Project X](https://github.com/XTLS/Xray-core) - Anti-Censorship Client / Server Core / [Telegram](https://t.me/projectXray), [2](https://t.me/projectVless)
* [Shadowsocks](https://shadowsocks.org/) - Simple Proxy Protocol to Bypass Censorship / [Free Servers](https://github.com/ruanfei/cross), [2](https://github.com/vxiaov/free_proxies), [3](https://shadowmere.xyz/) / [GitHub](https://github.com/shadowsocks) * [Shadowsocks](https://shadowsocks.org/) - Simple Proxy Protocol to Bypass Censorship / [Free Servers](https://github.com/ruanfei/cross), [2](https://github.com/vxiaov/free_proxies), [3](https://shadowmere.xyz/) / [GitHub](https://github.com/shadowsocks)

View file

@ -17,7 +17,7 @@
* [BookSee](https://en.booksee.org/) - Book Search / Download * [BookSee](https://en.booksee.org/) - Book Search / Download
* [The Library](https://discord.gg/mSyFJz9) - Books / Discord * [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) * [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)
* [WeLib](https://welib.org/) - Anna's Archive Mirror / Unofficial / [Note](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#welib-note) * [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 * [Bookstagram](https://vk.com/bookstagram_eng) - Books / Magazines / VK
* [dpgroup](https://www.dpgroup.org/) - Books / Magazines / Sign-Up * [dpgroup](https://www.dpgroup.org/) - Books / Magazines / Sign-Up
* [eBookBB](https://ebookbb.in/) - Books / Download * [eBookBB](https://ebookbb.in/) - Books / Download
@ -177,7 +177,6 @@
* [Public Witchcraft Library](https://rentry.co/FMHYBase64#public-witchcraft-library) - Witchcraft / Paganism / Satanism * [Public Witchcraft Library](https://rentry.co/FMHYBase64#public-witchcraft-library) - Witchcraft / Paganism / Satanism
* [Alchemy Drive](https://rentry.co/FMHYBase64#alchemy-drive) - Alchemy * [Alchemy Drive](https://rentry.co/FMHYBase64#alchemy-drive) - Alchemy
* [LeftHandPath](https://rentry.co/FMHYBase64#lefthandpath) - Luciferianism * [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 * [The Theosophical Society](https://www.theosociety.org/) or [Theosophy World](https://www.theosophy.world/portfolio/term/ebooks) - Theosophy
* [Shankaracharya](https://www.shankaracharya.org/) - Hinduism * [Shankaracharya](https://www.shankaracharya.org/) - Hinduism
* [Vedanta Shastras](https://www.shastras.com/) - Hinduism * [Vedanta Shastras](https://www.shastras.com/) - Hinduism
@ -211,8 +210,6 @@
## ▷ Special Interest ## ▷ Special Interest
* ↪️ **[Poetry Collections](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/edu#wiki_.25B7_poetry_collections)**
* ↪️ **[Quote Collections](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/edu#wiki_.25B7_quote_collections)**
* ↪️ **[Survival / Prepping](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_survival)** * ↪️ **[Survival / Prepping](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_survival)**
* ⭐ **[The Anarchist Library](https://theanarchistlibrary.org/special/index)** - Anarchism * ⭐ **[The Anarchist Library](https://theanarchistlibrary.org/special/index)** - Anarchism
* [FreeSFOnline](https://www.freesfonline.net/) - Sci-Fi / Fantasy * [FreeSFOnline](https://www.freesfonline.net/) - Sci-Fi / Fantasy
@ -305,7 +302,7 @@
* ↪️ **[Kindle Jailbreak Tools](https://rentry.co/FMHYBase64#jailbreak-kindle)** * ↪️ **[Kindle Jailbreak Tools](https://rentry.co/FMHYBase64#jailbreak-kindle)**
* ⭐ **[Kindle Comic Converter](https://github.com/ciromattia/kcc)** - Multi-Format Converter * ⭐ **[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) * [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 * [md2mobi](https://md2mobi.lapw.at/) - HTML to Kindle Converter
* [Remove Kindle DRM](https://itsfoss.com/calibre-remove-drm-kindle/) - Remove DRM from Kindle * [Remove Kindle DRM](https://itsfoss.com/calibre-remove-drm-kindle/) - Remove DRM from Kindle
@ -617,6 +614,7 @@
* [EveryCulture](https://www.everyculture.com/index.html) - World Culture Encyclopedia * [EveryCulture](https://www.everyculture.com/index.html) - World Culture Encyclopedia
* [Japanese Wiki Corpus](https://www.japanesewiki.com/) - Japanese Culture / History Encyclopedia * [Japanese Wiki Corpus](https://www.japanesewiki.com/) - Japanese Culture / History Encyclopedia
* [Encyclopaedia Iranica](https://www.iranicaonline.org/) - Iranian Culture Encyclopedia * [Encyclopaedia Iranica](https://www.iranicaonline.org/) - Iranian Culture Encyclopedia
* [Technical Library](https://t.me/+Tz4VCcFAMVJGzd8z) - Trading / Stocks
* [MedicalStudyZone](https://medicalstudyzone.com/) - Medical * [MedicalStudyZone](https://medicalstudyzone.com/) - Medical
* [VetBooks](https://vetbooks.ir/) - Veterinary * [VetBooks](https://vetbooks.ir/) - Veterinary
* [Brill](https://brill.com/) - International Law Books / Free for Students Only * [Brill](https://brill.com/) - International Law Books / Free for Students Only
@ -682,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://pastebin.com/raw/ZH1D8wn3)
* [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 ## ▷ Programming Books
* 🌐 **[Free-Programming-Books](https://github.com/EbookFoundation/free-programming-books)** - Programming Book Index * 🌐 **[Free-Programming-Books](https://github.com/EbookFoundation/free-programming-books)** - Programming Book Index
@ -746,6 +765,7 @@
* [Zenodo](https://zenodo.org/) - Research Papers * [Zenodo](https://zenodo.org/) - Research Papers
* [re3data](https://www.re3data.org/) - Research Data * [re3data](https://www.re3data.org/) - Research Data
* [Retraction Watch](https://retractionwatch.com/) - Retracted Research Papers * [Retraction Watch](https://retractionwatch.com/) - Retracted Research Papers
* [HAL](https://hal.science/) - Scientific Paper Search
* [Science.gov](https://www.science.gov/) - 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 * [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 * [IDEAS](https://ideas.repec.org/) or [RePEc](http://repec.org/) - Economic Research Papers

View file

@ -196,10 +196,9 @@
## ▷ Reddit Alternatives ## ▷ Reddit Alternatives
* ↪️ **[Lemmy Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/social-media#wiki_.25B7_lemmy_tools)** * ↪️ **[Lemmy Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/social-media#wiki_.25B7_lemmy_tools)**
* **[Raddle](https://raddle.me/)** - Minimalist / Privacy-Focused * [Raddle](https://raddle.me/) - Minimalist / Privacy-Focused
* **[Saidit](https://saidit.net/)** - Free-Speech / Dual Upvote System * [Saidit](https://saidit.net/) - Free-Speech / Dual Upvote System
* [r/RedditAlternatives](https://reddit.com/r/RedditAlternatives) - Find Reddit Alternatives * [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 * [Tildes](https://tildes.net/) - Non-Profit / User-Driven Discussion
* [Scored](https://communities.win/) - User-Driven Discussion * [Scored](https://communities.win/) - User-Driven Discussion
* [Ramble](https://ramble.pw/) - Privacy-Focused * [Ramble](https://ramble.pw/) - Privacy-Focused
@ -212,7 +211,7 @@
* ⭐ **[TheGigaBrain](https://thegigabrain.com/)** - Reddit Search Engines * ⭐ **[TheGigaBrain](https://thegigabrain.com/)** - Reddit Search Engines
* ⭐ **[Reddit Repost Sleuth](https://www.repostsleuth.com/)** - Reverse Post / Image Search * ⭐ **[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 * [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 * [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) * [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 * [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
@ -534,7 +533,7 @@
* ⭐ **[Trends24](https://trends24.in/)** or [GetDayTrends](https://getdaytrends.com/) - Trending Hashtags Trackers * ⭐ **[Trends24](https://trends24.in/)** or [GetDayTrends](https://getdaytrends.com/) - Trending Hashtags Trackers
* ⭐ **[r/Twitter](https://reddit.com/r/Twitter)** - X.com Subreddit * ⭐ **[r/Twitter](https://reddit.com/r/Twitter)** - X.com Subreddit
* [Typefully](https://typefully.com/) - Schedule Tweets * [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) * [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 * [Klear](https://klear.com/free-tools/find-twitter-influencers) - Find Influencers
* [FollowerWonk](https://followerwonk.com/) - Find / Analyze / Optimize Followers * [FollowerWonk](https://followerwonk.com/) - Find / Analyze / Optimize Followers
@ -561,7 +560,6 @@
## ▷ Twitter/X Customization ## ▷ 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 * [Control Panel for Twitter](https://soitis.dev/control-panel-for-twitter) - Twitter Enhancement Extensions
* [Minimal Twitter](https://typefully.com/minimal-twitter) - Minimal Twitter Themes * [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 * [OldTwitter](https://github.com/dimdenGD/OldTwitter) or [GoodTwitter2](https://github.com/Bl4Cc4t/GoodTwitter2) - Original Twitter Theme
@ -743,7 +741,7 @@
# ► Blogging Tools # ► 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 * ⭐ **[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 * [Telescope](https://telescope.ac/) - Publishing Platform
* [Arbital](https://arbital.com/) - Hybrid Blogging / Wiki Platform * [Arbital](https://arbital.com/) - Hybrid Blogging / Wiki Platform
* [Dreamwidth](https://www.dreamwidth.org/) - Blogging Platform * [Dreamwidth](https://www.dreamwidth.org/) - Blogging Platform
@ -753,4 +751,4 @@
* [Zonelets](https://zonelets.net/) - Static Blog Template * [Zonelets](https://zonelets.net/) - Static Blog Template
* [twtxt](https://github.com/buckket/twtxt) - Decentralized Minimalist Microblogging Service * [twtxt](https://github.com/buckket/twtxt) - Decentralized Minimalist Microblogging Service
* [Emanates Docs](https://emanates.deepjyoti30.dev/) - Make GitHub-Based Blogs * [Emanates Docs](https://emanates.deepjyoti30.dev/) - Make GitHub-Based Blogs
* [CoverView](https://coverview.vercel.app/) - Blog Banner Creator * [CoverView](https://coverview.vercel.app/) - Blog Banner Creator

View file

@ -89,7 +89,7 @@
* ⭐ **[vads](https://vads.ac.uk/digital/)** * ⭐ **[vads](https://vads.ac.uk/digital/)**
* ⭐ **[Arts and Culture](https://artsandculture.google.com/)** * ⭐ **[Arts and Culture](https://artsandculture.google.com/)**
[Painting Index](https://index-of.eu/Paintings/), [The Met](https://www.metmuseum.org/art/collection), [rijksstudio](https://www.rijksmuseum.nl/en/rijksstudio), [Haltadefinizione](https://www.haltadefinizione.com/en/), [Artcyclopedia](http://www.artcyclopedia.com/), [The Wolfman Museum of Art](https://wolfmanmuseum.org/), [DarkClassics](https://darkclassics.blogspot.com/), [European Art](https://photos.app.goo.gl/q5GRdpSvARAqhbSh6), [The Watercolour World](https://www.watercolourworld.org/), [Museo](https://museo.app/), [Arthur](https://arthur.io/), [WGA](https://www.wga.hu/), [Gallerix](https://gallerix.org/), [WikiArt](https://www.wikiart.org/), [Public Work](https://public.work/), [Public Domain Image Archive](https://pdimagearchive.org/), [V&A](https://www.vam.ac.uk/), [Louvre](https://collections.louvre.fr/en/), [Artchive](https://www.artchive.com/), [S.D. Cason](https://sdcason.com/categories/), [Frick](https://www.frick.org/art), [RCT](https://www.rct.uk/collection/), [Artic](https://www.artic.edu/collection), [Artvee](https://artvee.com/) [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)
*** ***
@ -213,9 +213,7 @@
* https://librarygenesis.net/ - site list * https://librarygenesis.net/ - site list
* https://libgen.li/ - clone * https://libgen.li/ - clone
* https://libgen.gs/ - clone * https://libgen.gs/ - clone
* https://libgen.vg/ - clone
* https://libgen.la/ - clone * https://libgen.la/ - clone
* https://libgen.bz/ - clone
* https://rentry.co/m2hkqhwb - Differences between the mirrors * https://rentry.co/m2hkqhwb - Differences between the mirrors
*** ***
@ -226,19 +224,6 @@
*** ***
## 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)
***
## Manga Downloaders ## Manga Downloaders
* ⭐ **[HakuNeko](https://hakuneko.download/) / [GitHub](https://github.com/manga-download/hakuneko)** * ⭐ **[HakuNeko](https://hakuneko.download/) / [GitHub](https://github.com/manga-download/hakuneko)**
@ -302,17 +287,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 ## Music Sheet Collections
### General Music Sheets ### General Music Sheets
@ -393,8 +367,8 @@
## SMS Verification Sites ## SMS Verification Sites
* ⭐ **[receive-sms-online](https://www.receive-sms-online.info/)** - Sign-Up Required
* ⭐ **[SMSCodeOnline](https://smscodeonline.com/)** * ⭐ **[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/) * ⭐ **[mianfeijiema](https://mianfeijiema.com/)** or [us-phone-number](https://us-phone-number.com/)
* ⭐ **[sms24](https://www.sms24.me/)** * ⭐ **[sms24](https://www.sms24.me/)**
* ⭐ **[receive-sms](https://receive-sms.cc/)** * ⭐ **[receive-sms](https://receive-sms.cc/)**
@ -418,14 +392,14 @@
## SVG Icons ## 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 * 🌐 **[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) * ⭐ **[Iconify](https://iconify.design/)**
* ⭐ **[icons8](https://icons8.com/icons)** * ⭐ **[icons8](https://icons8.com/icons)** / [Premium Unlock](https://github.com/Kyutefox/Iconify)
* ⭐ **[SVG Repo](https://www.svgrepo.com/)** * ⭐ **[SVG Repo](https://www.svgrepo.com/)**
* [Dashboard Icons](https://dashboardicons.com/) - Program Icons * [Dashboard Icons](https://dashboardicons.com/) - Program Icons
* [GrommetIcons](https://icons.grommet.io/) - SVG Icons for React * [GrommetIcons](https://icons.grommet.io/) - SVG Icons for React
* [HealthIcons](https://healthicons.org/) - Medical Icons * [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/)
*** ***

View file

@ -39,9 +39,10 @@
## ▷ System Tweaks ## ▷ 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)** * ⭐ **[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 * ⭐ **[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) * ⭐ **[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) - Tweak Volume Mixer * ⭐ **[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 * ⭐ **[AltSnap](https://github.com/RamonUnch/AltSnap)** - Tweaked Windows Dragging
* ⭐ **[Edge-Uninstall](https://gist.github.com/ave9858/c3451d9f452389ac7607c99d45edecc6)** - Microsoft Edge Removal Script * ⭐ **[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 * [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 * [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) * [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 * [Cerebro App](https://cerebroapp.com/) - Tweaked System Navigation
* [SmartSystemMenu](https://github.com/AlexanderPro/SmartSystemMenu) - Tweak System Menu * [SmartSystemMenu](https://github.com/AlexanderPro/SmartSystemMenu) - Tweaked 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) * [Shell](https://nilesoft.org/) / [GitHub](https://github.com/moudey/shell) or [RCWM](https://github.com/GChuf/RCWM) - Tweaked / Custom Context Menus
* [RCWM](https://github.com/GChuf/RCWM) - Tweaked Context Menus
* [Explorer Tab Utility](https://github.com/w4po/ExplorerTabUtility) - Tweaked File Explorer * [Explorer Tab Utility](https://github.com/w4po/ExplorerTabUtility) - Tweaked File Explorer
* [Quick Access Popup](https://www.quickaccesspopup.com/) - File Manager * [Quick Access Popup](https://www.quickaccesspopup.com/) - File Manager
* [Spencer](https://www.the-sz.com/products/spencer/) - Classic Start Menu * [Spencer](https://www.the-sz.com/products/spencer/) - Classic Start Menu
@ -112,7 +112,6 @@
* [GetDNote](https://www.getdnote.com/) - Command Line Notebook * [GetDNote](https://www.getdnote.com/) - Command Line Notebook
* [LeanandMean](https://github.com/AveYo/LeanAndMean) - Powershell Snippets / Use with Caution * [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 * [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 ## ▷ 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) * [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) * [CrossPaste](https://crosspaste.com/) - Clipboard Manager / [GitHub](https://github.com/crosspaste/crosspaste-desktop)
* [ArsClip](https://www.joejoesoft.com/vcms/97/) - Clipboard Manager * [ArsClip](https://www.joejoesoft.com/vcms/97/) - Clipboard Manager
@ -167,7 +166,7 @@
* 🌐 **[Awesome Web Desktops](https://github.com/syxanash/awesome-web-desktops)** or [Simone's Computer](https://simone.computer/#/webdesktops) - OS Emulators / VMs * 🌐 **[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)** * ↪️ **[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 * ⭐ **[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 * ⭐ **[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
* [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) * [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 * [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 * [OSBoxes](https://www.osboxes.org/) - Preinstalled Virtual Machine
@ -335,7 +334,7 @@
# ► Windows ISOs # ► Windows ISOs
* ⭐ **[Genuine Installation Media](https://massgrave.dev/genuine-installation-media)** - Windows ISOs / [Clean Install Guide](https://gravesoft.dev/clean_install_windows) * ⭐ **[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.netlify.app/docs/windows/)** * ⭐ **[Windows Install / Debloat Guide](https://wispydocs.netlify.app/docs/windows/)**
* [files.rg-adguard](https://files.rg-adguard.net/) or [MVS dump](https://awuctl.github.io/mvs/) - Verify ISO Legitimacy * [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 * [OS.click](https://os.click/en) - Windows ISOs
@ -368,7 +367,7 @@
## ▷ Windows Updates ## ▷ Windows Updates
* ⭐ **[Windows 10 After EOL](https://massgrave.dev/windows10_eol)** - Receive Windows Updates After Win10's End-Of-Life * ⭐ **[Windows 10 After EOL](https://rentry.co/FMHYBase64#win10-eol)** - Receive Windows Updates After Win10's End-Of-Life
* ⭐ **[ChangeWindows](https://www.changewindows.org/timeline)** - Latest Windows Update Info * ⭐ **[ChangeWindows](https://www.changewindows.org/timeline)** - Latest Windows Update Info
* [LegacyUpdate](https://legacyupdate.net/) - Fix Windows Updates for Legacy Editions * [LegacyUpdate](https://legacyupdate.net/) - Fix Windows Updates for Legacy Editions
* [WURefresh](https://github.com/AveYo/MediaCreationTool.bat/blob/main/bypass11/windows_update_refresh.bat) - Reset Windows Update Components * [WURefresh](https://github.com/AveYo/MediaCreationTool.bat/blob/main/bypass11/windows_update_refresh.bat) - Reset Windows Update Components
@ -404,7 +403,6 @@
* [FolderMarker](https://foldermarker.com/), [Flaired Folder](https://flaired-folders.vercel.app/), [CustomFolder](https://www.gdzsoft.com/) - Custom Folder Icons * [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 * [Recycle Bin Themes](https://github.com/sdushantha/recycle-bin-themes) - Custom Recycle Bin Icons
* [msstyleEditor](https://github.com/nptr/msstyleEditor) - Visual Style Editor * [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) * [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 * [AccentColorizer](https://github.com/krlvm/AccentColorizer) - Accent Color Customization
* [BeautySearch](https://github.com/krlvm/BeautySearch) - Search Customization * [BeautySearch](https://github.com/krlvm/BeautySearch) - Search Customization

View file

@ -6,7 +6,7 @@
# ► Text Tools # ► 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)** * ↪️ **[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)** * ↪️ **[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)** * ↪️ **[Data Visualization](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_data_visualization_tools)**
@ -30,7 +30,7 @@
## ▷ Pastebins ## ▷ Pastebins
* ⭐ **[Rentry](https://rentry.co/)**, [2](https://rentry.org/) - Markdown Support / [CLI](https://github.com/radude/rentry) / [Styling](https://rentry.co/rentryarchived) * ⭐ **[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) * ⭐ **[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) * ⭐ **[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) * ⭐ **[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 * [Paste.ee](https://paste.ee/) - Multi-Syntax / Markdown Support
* [pst.moe](https://pst.moe/) - Multi-Syntax / Markdown Support * [pst.moe](https://pst.moe/) - Multi-Syntax / Markdown Support
* [dpaste.com](https://dpaste.com/) - 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.com](https://pastebin.com/) - Multi-Syntax
* [pastebin.pl](https://pastebin.pl/) - Multi-Syntax * [pastebin.pl](https://pastebin.pl/) - Multi-Syntax
* [CentOS Pastebin](https://paste.centos.org/) - Multi-Syntax * [CentOS Pastebin](https://paste.centos.org/) - Multi-Syntax
@ -366,7 +367,7 @@
* ⭐ **[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 * ⭐ **[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 * ⭐ **[Manuskript](https://www.theologeek.ch/manuskript/)** - Writing Organizer / Planner
* ⭐ **[NovelWriter](https://novelwriter.io/)** or [Bibisco](https://bibisco.com/) - Novel Editors * ⭐ **[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 * ⭐ **[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
* [Tuesday JS](https://kirill-live.itch.io/tuesday-js) - Visual Novel Editor / [GitHub](https://github.com/Kirilllive/tuesday-js) * [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) * [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 * [Fortelling](https://www.fortelling.app/) or [Novelist](https://beta.novelist.app) - Novel Plotting / Editing Workspaces
@ -416,7 +417,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 * ⭐ **[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 * [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 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 * [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 * [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 * [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
@ -498,11 +499,11 @@
* ⭐ **[Font Interceptor](https://fontinterceptor.mschfmag.com/)** - Download Fonts from Websites * ⭐ **[Font Interceptor](https://fontinterceptor.mschfmag.com/)** - Download Fonts from Websites
* ⭐ **[FontDrop](https://fontdrop.info/)** - Analyze Font Files * ⭐ **[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 * [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 * [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 * [Colors & Fonts](https://www.colorsandfonts.com/) - Typography Tools
* [DS-Fusion](https://ds-fusion.github.io/) - AI Typography Generator * [DS-Fusion](https://ds-fusion.github.io/) - AI Typography Generator
* [Formito](https://formito.com/tools/logo) - Typography Logo Maker * [Formito](https://formito.com/tools/logo) - Typography Logo Maker

View file

@ -14,6 +14,7 @@
* [VideoHelp Forum](https://forum.videohelp.com/) - All Things Media / Video * [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 * [ICAT](https://www.nvidia.com/en-us/geforce/technologies/icat/) - Video Quality Comparison & Analysis Tool
* [videoduplicatefinder](https://github.com/0x90d/videoduplicatefinder) - Duplicate Video Finder * [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 * [VHS Decode](https://github.com/oyvindln/vhs-decode) - VHS Decoder
* [VidClue](https://vidclue.com/) - Short Form Video Inspiration * [VidClue](https://vidclue.com/) - Short Form Video Inspiration
@ -84,7 +85,7 @@
* ⭐ **[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) * ⭐ **[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) * ⭐ **[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 * ⭐ **[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 * ⭐ **[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 * ⭐ **[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 * [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 * [MKV Muxing Batch GUI](https://github.com/yaser01/mkv-muxing-batch-gui) - Mux Videos / Windows, Linux
@ -165,6 +166,7 @@
* [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 * [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 * [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 * [VTuberized Logos](https://vtuber-style-logos.vercel.app/) - VTuber Style Logos
* [VSeeFace](https://www.vseeface.icu/) - Face / Hand Tracking VRM
*** ***
@ -271,6 +273,7 @@
* [Fixarr](https://github.com/sachinsenal0x64/fixarr) - Media Server File Renamer * [Fixarr](https://github.com/sachinsenal0x64/fixarr) - Media Server File Renamer
* [HTPC Download Box](https://github.com/sebgl/htpc-download-box) - Media Server Automation * [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) * [Huntarr](https://github.com/plexguide/Huntarr.io) - Automate Media Server Missing Content / Quality Upgrades / [Discord](https://discord.com/invite/PGJJjR5Cww)
* [Seanime](https://seanime.rahim.app/) - Anime Server
* [Plex](https://www.plex.tv/) - Media Server * [Plex](https://www.plex.tv/) - Media Server
* [Emby](https://emby.media/) - Media Server * [Emby](https://emby.media/) - Media Server
* [Universal Media Server](https://www.universalmediaserver.com/) - Media Server * [Universal Media Server](https://www.universalmediaserver.com/) - Media Server
@ -283,7 +286,6 @@
* [Kyoo](https://github.com/zoriya/Kyoo) - Media Server * [Kyoo](https://github.com/zoriya/Kyoo) - Media Server
* [Chocolate](https://github.com/ChocolateApp/Chocolate) - Media Server * [Chocolate](https://github.com/ChocolateApp/Chocolate) - Media Server
* [Media-Hoarder](https://github.com/theMK2k/Media-Hoarder) - Media Catalog Frontend * [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 * [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/) * [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 * [MSX](https://msx.benzac.de/info/) - Web App
@ -379,7 +381,7 @@
* ⭐ **[LosslessCut](https://github.com/mifi/lossless-cut)** - Video Editor * ⭐ **[LosslessCut](https://github.com/mifi/lossless-cut)** - Video Editor
* ⭐ **[kdenlive](https://kdenlive.org/en/)** - Video Editor / [GitHub](https://github.com/KDE/kdenlive) * ⭐ **[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) * ⭐ **[Shotcut](https://shotcut.org/)** - Video Editor / [GitHub](https://github.com/mltframework/shotcut)
* [Auto-Editor](https://auto-editor.com/) - CLI Editor * [Auto-Editor](https://auto-editor.com/) - CLI Editor
* [MoviePy](https://zulko.github.io/moviepy/) - Python Editor * [MoviePy](https://zulko.github.io/moviepy/) - Python Editor
@ -400,7 +402,6 @@
* [suckless-cut](https://github.com/couleur-tweak-tips/suckless-cut) or [vidcutter](https://github.com/ozmartian/vidcutter) - Cut / Trim Videos * [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 * [Opus](https://www.opus.pro/) - Clip Creator
* [Kurku](https://app.kurku.tech/) or [FreeMoCap](https://freemocap.org/) - Motion Tracking Tools * [Kurku](https://app.kurku.tech/) or [FreeMoCap](https://freemocap.org/) - Motion Tracking Tools
* [VSeeFace](https://www.vseeface.icu/) - Face / Hand Tracking VRM
*** ***

View file

@ -16,8 +16,8 @@
* ⭐ **[SpenFlix](https://watch.spencerdevs.xyz/)**, [2](https://spenflix.ru/) - Movies / TV / Anime / Auto-Next / Watch Parties / [Discord](https://discord.gg/RF8vMBRtTs) * ⭐ **[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) * ⭐ **[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://watch.corsflix.dpdns.org/), [3](https://corsflix.net) - Movies / TV / Anime / Auto-Next / [Status](https://rentry.co/rivestream) / [Discord](https://discord.gg/6xJmJja8fV) * [Rive](https://rivestream.org/), [2](https://rivestream.net/) 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)
* [FlickyStream](https://flickystream.net) or [CineMora](https://cinemora.ru/) - Movies / TV / Anime / [Telegram](https://t.me/FlickyStream) / [Discord](https://discord.com/invite/flickystream)
* [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) * [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)
* [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 * [Cinegram](https://cinegram.net/) - Movies / TV / Anime / Auto-Next
* [FilmCave](https://filmcave.net/) - Movies / TV / Anime / Auto-Next / [Telegram](https://t.me/fmcave) / [Discord](https://discord.gg/BtpYzMbDjH) * [FilmCave](https://filmcave.net/) - Movies / TV / Anime / Auto-Next / [Telegram](https://t.me/fmcave) / [Discord](https://discord.gg/BtpYzMbDjH)
* [Netplay](https://netplayz.live/) - Movies / TV / Anime / Auto-Next / [Discord](https://discord.gg/NCH4rzxJ36) * [Netplay](https://netplayz.live/) - Movies / TV / Anime / Auto-Next / [Discord](https://discord.gg/NCH4rzxJ36)
@ -52,10 +52,9 @@
* [VLOP](https://www.vlop.fun/) - Movies / TV / Anime / Watch Parties / [Telegram](https://t.me/vlopstreaming) / [Discord](https://discord.gg/GzXQWKUbjh) * [VLOP](https://www.vlop.fun/) - Movies / TV / Anime / Watch Parties / [Telegram](https://t.me/vlopstreaming) / [Discord](https://discord.gg/GzXQWKUbjh)
* [Filmex](https://filmex.to/), [2](https://fmovies4u.com/) - Movies / TV / Anime / Auto-Next / [Discord](https://discord.com/invite/WWrWnG8qmh) * [Filmex](https://filmex.to/), [2](https://fmovies4u.com/) - Movies / TV / Anime / Auto-Next / [Discord](https://discord.com/invite/WWrWnG8qmh)
* [HydraHD](https://hydrahd.io/) - Movies / TV / Anime / Auto-Next / [Status](https://hydrahd.info/) * [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) * [Cinezo](https://www.cinezo.net/) - Movies / TV / Anime / Watch Parties / [Discord](https://discord.gg/Gx27YMK73d)
* [Mapple.tv](https://mapple.tv/) - Movies / TV / Anime / Watch Parties / [Discord](https://discord.gg/V8XUhQb2MZ) * [Mapple.tv](https://mapple.tv/) - Movies / TV / Anime / Watch Parties / [Discord](https://discord.gg/V8XUhQb2MZ)
* [ViewVault](https://viewvault.org/) - Movies / TV / Anime * [ViewVault](https://viewvault.org/) - Movies / TV / Anime
* [MovieMaze](https://moviemaze.cc/) - Movies / TV / Anime
* [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) * [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 * [Hopfly](https://watch.hopfly.site/) - Movies / TV / Anime
* [Redflix](https://redflix.co/), [2](https://redflix.club/) - Movies / TV / Anime / [Discord](https://discord.gg/wp5SkSWHW5) * [Redflix](https://redflix.co/), [2](https://redflix.club/) - Movies / TV / Anime / [Discord](https://discord.gg/wp5SkSWHW5)
@ -76,7 +75,6 @@
* [Autoembed](https://watch.autoembed.cc/) - Movies / TV / Anime / Drama / [Discord](https://discord.gg/BWDSXV9aX4) * [Autoembed](https://watch.autoembed.cc/) - Movies / TV / Anime / Drama / [Discord](https://discord.gg/BWDSXV9aX4)
* [Ask4Movies](https://ask4movie.app/) - Movies / TV / Anime * [Ask4Movies](https://ask4movie.app/) - Movies / TV / Anime
* [Novafork](https://novafork.cc/) - Movies / TV / [GitHub](https://github.com/noname25495/novafork) * [Novafork](https://novafork.cc/) - Movies / TV / [GitHub](https://github.com/noname25495/novafork)
* [PlayIMDb](https://www.playimdb.com/) - Search VidSrc via IMDb URLs / Official Frontend
*** ***
@ -86,7 +84,7 @@
*** ***
* ⭐ **[yFlix](https://yflix.to/)** - Movies / TV / Anime / Auto-Next / [Clones](https://rentry.co/sflix#yflix-clones) * ⭐ **[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/)**, [2](https://rips.cc/) - Movies / Invite Code: `fmhy` / Sign-Up Required * ⭐ **[EE3](https://ee3.me/)**, [2](https://rips.cc/) - Movies / Invite Code: `fmhy` / Sign-Up Required
* ⭐ **[Qstream](https://qstream.pages.dev/)** - Movies / TV / Anime * ⭐ **[Qstream](https://qstream.pages.dev/)** - Movies / TV / Anime
* ⭐ **[NEPU](https://nepu.to/)** - Movies / TV / Anime / Auto-Next / [Discord](https://discord.gg/nepu) * ⭐ **[NEPU](https://nepu.to/)** - Movies / TV / Anime / Auto-Next / [Discord](https://discord.gg/nepu)
@ -111,12 +109,13 @@
* [Zoechip](https://zoechip.org/) - Movies / TV * [Zoechip](https://zoechip.org/) - Movies / TV
* [Player4U](https://rentry.co/FMHYBase64#player4u) - Movies / TV / Anime * [Player4U](https://rentry.co/FMHYBase64#player4u) - Movies / TV / Anime
* [Gir Society](https://discord.gg/WHxeZ3aTtb) - Movies / TV / Anime / Plex Required * [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 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 * 🌐 **[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 * 🌐 **[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/) * ⭐ **[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 +151,18 @@
* ⭐ **[VK](https://vkvideo.ru/)** / [Enhancement Extension](https://vknext.net/) * ⭐ **[VK](https://vkvideo.ru/)** / [Enhancement Extension](https://vknext.net/)
* ⭐ **[OK](https://ok.ru/video)** * ⭐ **[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) * ⭐ **[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)** * ⭐ **[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) * ⭐ **[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) * ⭐ **[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 * ⭐ **[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 * [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) * [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) * [rutube](https://rutube.ru)
* [BitChute](https://www.bitchute.com/) * [BitChute](https://www.bitchute.com/)
* [Videa](https://videa.hu/) * [Videa](https://videa.hu/)
* [tudou](https://www.tudou.com/)
* [BitView](https://www.bitview.net/) * [BitView](https://www.bitview.net/)
* [Tape](https://tape.xyz/) * [Tape](https://tape.xyz/) / [GitHub](https://github.com/tapexyz/tape)
* [Naver](https://tv.naver.com/) * [Naver](https://tv.naver.com/)
* [ultimedia](https://www.ultimedia.com/) * [ultimedia](https://www.ultimedia.com/)
* [odysee](https://odysee.com/) / [Instances](https://codeberg.org/librarian/librarian#instances) * [odysee](https://odysee.com/) / [Instances](https://codeberg.org/librarian/librarian#instances)
@ -221,6 +219,7 @@
* [123anime](https://123animes.ru/) - Sub / Dub / Auto-Next * [123anime](https://123animes.ru/) - Sub / Dub / Auto-Next
* [Gojo](https://animetsu.to/), [2](https://animetsu.cc/) - Sub / Dub * [Gojo](https://animetsu.to/), [2](https://animetsu.cc/) - Sub / Dub
* [AnimeZ](https://animeyy.com/) - Sub / Dub * [AnimeZ](https://animeyy.com/) - 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) * [TAnime](https://tanime.tv/) - Sub / Dub / Auto-Next / [Discord](https://discord.gg/R7a6yWMmfK)
* [Animag](https://animag.to/) - Sub / Dub * [Animag](https://animag.to/) - Sub / Dub
* [AnimeNoSub](https://animenosub.to/) - Sub / Dub * [AnimeNoSub](https://animenosub.to/) - Sub / Dub
@ -230,12 +229,11 @@
* [AnimeHub](https://animehub.ac/) - Sub / Dub / Auto-Next * [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) * [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) * [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 * [AniZone](https://anizone.to/) - Sub
* [AniHQ](https://anihq.to/) - Sub / Dub * [AniHQ](https://anihq.to/) - Sub / Dub
* [Anoboye](https://anoboye.com/) - Sub * [Anoboye](https://anoboye.com/) - Sub
* [AnimeParadise](https://www.animeparadise.moe/) - Sub / Dub / [Discord](https://discord.com/invite/q3N6eWMMNP) * [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) * [AnimeOnsen](https://animeonsen.xyz/) - Sub / 720p / [Discord](https://discord.com/invite/U56ZMrD)
* [AnimeStream](https://anime.uniquestream.net/) - Sub / 720p * [AnimeStream](https://anime.uniquestream.net/) - Sub / 720p
* [AnimeXin](https://animexin.dev/) - Donghua / Sub * [AnimeXin](https://animexin.dev/) - Donghua / Sub
@ -253,11 +251,11 @@
## ▷ Cartoon Streaming ## ▷ 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 * ⭐ **[KimCartoon](https://kimcartoon.si/)** - TV
* [HiCartoon](https://hicartoon.to/) - TV / Movies
* [KissCartoon](https://kisscartoon.nz/) - TV / [Discord](https://discord.gg/YwpgPrWVSH) * [KissCartoon](https://kisscartoon.nz/) - TV / [Discord](https://discord.gg/YwpgPrWVSH)
* [TamilToon](https://tamiltoon.net/) - TV / Movies / Anime / Switch Language in Player * [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 * [Watch Cartoon Online](https://www.watchcartoononline.com/) - TV / Movies / Anime
* [FunnierMoments](https://www.funniermoments.net/) - TV * [FunnierMoments](https://www.funniermoments.net/) - TV
* [ToonTales](https://www.toontales.net/) - Classic / TV * [ToonTales](https://www.toontales.net/) - Classic / TV
@ -376,7 +374,7 @@
* ⭐ **[EasyWebTV](https://zhangboheng.github.io/Easy-Web-TV-M3u8/routes/countries.html)** or [IPTV Web](https://iptv-web.app/) - TV / Sports * ⭐ **[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) * ⭐ **[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 * ⭐ **[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 * [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 * [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 * [Pluto](https://pluto.tv/live-tv), [2](https://app-lgwebos.pluto.tv/live-tv) - TV / Sports / US Only
@ -418,10 +416,11 @@
* ⭐ **[WatchSports](https://watchsports.to/)** - Stream Aggregator * ⭐ **[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/zbxWcejadm)
* ⭐ **[Streamed](https://streamed.su/)**, [2](https://strmd.link/) / [Discord](https://discord.gg/streamed) * ⭐ **[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) * ⭐ **[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) * ⭐ **[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) * ⭐ **[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/)** * ⭐ **[RBTV77](https://www.rbtv77.kaufen/)**
* ⭐ **[StreamEast](https://www.streameast.sk/v8/)** / [Mirrors](https://v1.gostreameast.link/) * ⭐ **[StreamEast](https://www.streameast.sk/v8/)** / [Mirrors](https://v1.gostreameast.link/)
* ⭐ **[LiveTV](https://livetv.sx/enx/)** * ⭐ **[LiveTV](https://livetv.sx/enx/)**
@ -438,9 +437,8 @@
* [TotalSportek](https://totalsportek.at/), [2](https://streameast.cz/), [3](https://streameast.cz/) * [TotalSportek](https://totalsportek.at/), [2](https://streameast.cz/), [3](https://streameast.cz/)
* [CrackStreams](https://crackstreams.blog/) * [CrackStreams](https://crackstreams.blog/)
* [720pStream](https://720pstream.nu/) * [720pStream](https://720pstream.nu/)
* [BINTV](https://bintv.fun/) / [Telegram](https://t.me/+PiQ1lsDtjoU5NmFl) / [Discord](https://discord.gg/fMU4hpDjPg) * [GoalieTrend](https://goalietrend.com/)
* [BuffStream](https://app.buffstream.io/) * [BuffStream](https://app.buffstream.io/)
* [TopSport](https://topsport.live/), [2](https://sport4all.live/)
* [LiveMatches](https://livematches.net/) - Live Events * [LiveMatches](https://livematches.net/) - Live Events
* [StarLive](https://starlive.click/) - Live MMA Events * [StarLive](https://starlive.click/) - Live MMA Events
* [TFLIX](https://tv.tflix.app/) - Sports Channels * [TFLIX](https://tv.tflix.app/) - Sports Channels
@ -581,20 +579,20 @@
* ↪️ **[General DDL Sites](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/download)** * ↪️ **[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)** * ↪️ **[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) * ⭐ **[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) * ⭐ **[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) * ⭐ **[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)
* ⭐ **[Drama Day](https://dramaday.me/)** - Asian Drama * ⭐ **[Drama Day](https://dramaday.me/)** - Asian Drama
* ⭐ **[MKVDrama](https://mkvdrama.org/)** - 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) * ⭐ **[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 * [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) * [P-Stream](https://pstream.mov/) - Movies / TV / Anime / [Alts](https://erynith.github.io/movie-web-instances/) / [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) * [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 * [9xFlix](https://www.9xflix.me/) - Movies / TV / Anime
* [KatMovieHD](https://katworld.net/?type=KatmovieHD) - 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 * [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) / Chrome Required
* [KatMovie4k](https://katworld.net/?type=Katmovie4k) - Movies / TV / 4K * [KatMovie4k](https://katworld.net/?type=Katmovie4k) - Movies / TV / 4K
@ -676,7 +674,6 @@
* 🌐 **[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) * 🌐 **[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) * 🌐 **[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) * ⭐ **[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) * ⭐ **[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) * ⭐ **[hi10anime](https://hi10anime.com/)** - Sub / Sign-Up Required / [Discord](https://discord.gg/uZ85cbAg4T)
* ⭐ **[Anime Download CSE](https://cse.google.com/cse?cx=006516753008110874046:osnah6w0yw8)** * ⭐ **[Anime Download CSE](https://cse.google.com/cse?cx=006516753008110874046:osnah6w0yw8)**
@ -780,13 +777,12 @@
* ⭐ **[Nyaa](https://nyaa.si/)**, [2](https://nyaa.iss.one/), [3](https://nyaa.iss.ink/) - Sub / Dub * ⭐ **[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/) * ⭐ **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/)** / [Discord](https://discord.com/invite/Z87Nh7c4Ac), [Shiru](https://github.com/RockinChaos/Shiru), [Seanime](https://seanime.rahim.app/) or [Migu](https://miguapp.pages.dev/) - Stream Anime Torrents
* [AnimeTosho](https://animetosho.org/) - Sub / Dub * [AnimeTosho](https://animetosho.org/) - Sub / Dub
* [TokyoTosho](https://www.tokyotosho.info/) - Sub * [TokyoTosho](https://www.tokyotosho.info/) - Sub
* [ShanaProject](https://www.shanaproject.com/) - Sub * [ShanaProject](https://www.shanaproject.com/) - Sub
* [Hi10Anime](https://hi10anime.com/) - Sub * [Hi10Anime](https://hi10anime.com/) - Sub
* [bakabt](https://bakabt.me/) - Sub / Dub / [Interviews](https://wiki.bakabt.me/index.php/Sign_up) * [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) * [Anime Torrent CSE](https://cse.google.com/cse?cx=006516753008110874046:lamzt6ls4iz)
* [SeaDex](https://releases.moe/) - Anime Video Quality Guides * [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 * [Fansub Cartel](https://index.fansubcar.tel/), [2](https://docs.google.com/spreadsheets/d/1PJYwhjzLNPXV2X1np-S4rdZE4fb7pxp-QbHY1O0jH6Q/htmlview) - Fansubbers Index
@ -912,7 +908,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 * [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 * [VideoSubFinder](https://sourceforge.net/projects/videosubfinder/) - Hardcoded Subtitle Extractor
* [Subtitling Guide](https://baechusquad.download/guide/) - Subtitling Guide * [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
*** ***
@ -944,7 +940,7 @@
# ► Helpful Sites / Tools # ► Helpful Sites / Tools
* 🌐 **[r/Animepiracy Wiki](https://thewiki.moe/)** or [Awesome ACG](https://github.com/soruly/awesome-acg) - Anime Tool Indexes * 🌐 **[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)** * ↪️ **[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)** * ↪️ **[File Data Automation](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/file-tools#wiki_.25B7_data_automation)**
* ⭐ **[FastStream](https://faststream.online/)** - Fragmentation Streaming Extension / [GitHub](https://github.com/Andrews54757/FastStream/) * ⭐ **[FastStream](https://faststream.online/)** - Fragmentation Streaming Extension / [GitHub](https://github.com/Andrews54757/FastStream/)
@ -987,4 +983,4 @@
*** ***
## ▷ [Video Players / Servers](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/video-tools) ## ▷ [Video Players / Servers](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/video-tools)