Merge branch 'fmhy:main' into patch-1

This commit is contained in:
PeppeMonster 2025-09-06 17:33:04 +02:00 committed by GitHub
commit e1cf21e8a1
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
61 changed files with 775 additions and 622 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,29 +15,29 @@
*/ */
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',
'video.md' 'video.md'
] as const ] as const

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',
@ -209,35 +230,35 @@ export const sidebar: DefaultTheme.Sidebar | DefaultTheme.NavItemWithLink[] = [
}, },
{ {
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,
@ -198,11 +198,11 @@ export function transform(text: string): string {
) )
.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,7 +116,7 @@ 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'
}, },
@ -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,18 +13,19 @@
## ▷ 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) * ⭐ **[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)
* ⭐ **[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)
* ⭐ **[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) * ⭐ **[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-0905 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
* [Ernie](https://ernie.baidu.com/) - ERNIE X1 Turbo / Baidu's Chatbot / [4.5 Demo](https://huggingface.co/spaces/baidu/ernie_4.5_turbo_demo) / [x1 Demo](https://huggingface.co/spaces/baidu/ernie_x1_turbo_demo) / [Discord](https://discord.gg/3Wb36Zp7) * [Ernie](https://ernie.baidu.com/) - ERNIE X1 Turbo / Baidu's Chatbot / [4.5 Demo](https://huggingface.co/spaces/baidu/ernie_4.5_turbo_demo) / [x1 Demo](https://huggingface.co/spaces/baidu/ernie_x1_turbo_demo) / [Discord](https://discord.gg/3Wb36Zp7)
* [Apertus](https://chat.publicai.co/) - Apertus 70B / Sign-up Required Public
* [Mistral](https://chat.mistral.ai) - Magistral Medium / Privacy-Focused / [Discord](https://discord.gg/mistralai) * [Mistral](https://chat.mistral.ai) - Magistral Medium / Privacy-Focused / [Discord](https://discord.gg/mistralai)
* [Reka](https://www.reka.ai/) - Reka Flash 3.1 / Reka's Chatbot / [Discord](https://discord.gg/jtjNSD52mf) * [Reka](https://www.reka.ai/) - Reka Flash 3.1 / Reka's Chatbot / [Discord](https://discord.gg/jtjNSD52mf)
* [dots.vlm1.inst](https://huggingface.co/spaces/rednote-hilab/dots-vlm1-demo) or [dots-demo](https://huggingface.co/spaces/rednote-hilab/dots-demo) - Dots Chatbots / No Sign-Up * [dots.vlm1.inst](https://huggingface.co/spaces/rednote-hilab/dots-vlm1-demo) or [dots-demo](https://huggingface.co/spaces/rednote-hilab/dots-demo) - Dots Chatbots / No Sign-Up
@ -35,16 +36,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 +56,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,7 +87,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://ch.at/) - Self-Hosted / Minimal / Lightweight / [GitHub](https://github.com/Deep-ai-inc/ch.at) * [ch.at](https://github.com/Deep-ai-inc/ch.at) - Self-Hosted / Minimal / Lightweight / [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 / [Discord](https://discord.com/invite/YCtUYD5vBf) / [GitHub](https://github.com/Mintplex-Labs/anything-llm) * [AnythingLLM](https://anythingllm.com/) - Self-Hosted / [Discord](https://discord.com/invite/YCtUYD5vBf) / [GitHub](https://github.com/Mintplex-Labs/anything-llm)
* [LibreChat](https://librechat.ai/) - Self-Hosted / [Discord](https://discord.com/invite/CEe6vDg9Ky) / [GitHub](https://github.com/danny-avila/LibreChat) * [LibreChat](https://librechat.ai/) - Self-Hosted / [Discord](https://discord.com/invite/CEe6vDg9Ky) / [GitHub](https://github.com/danny-avila/LibreChat)
@ -165,7 +167,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
@ -299,13 +301,14 @@
# ► Image Generation # ► Image Generation
* 🌐 **[Imgsys Rankings](https://imgsys.org/rankings)** - Image Generator Benchmarks / Leaderboards * 🌐 **[Imgsys Rankings](https://imgsys.org/rankings)** - Image Generator Benchmarks / Leaderboards
* ⭐ **[LMArena](https://lmarena.ai/?mode=direct&chat-modality=image)** - Multiple Generators / Editing / No Sign-Up / [Discord](https://discord.com/invite/lmarena) / [GitHub](https://github.com/lm-sys/FastChat)
* ⭐ **[AI Studio](https://aistudio.google.com/generate-image)**, [Whisk](https://labs.google/fx/en/tools/whisk) or [Gemini](https://gemini.google.com/) - Imagen 4 + Ultra / Editing / 2.5 Flash (nano-banana) / Unlimited / Region-Based / [Discord](https://discord.com/invite/gemini) * ⭐ **[AI Studio](https://aistudio.google.com/generate-image)**, [Whisk](https://labs.google/fx/en/tools/whisk) or [Gemini](https://gemini.google.com/) - Imagen 4 + Ultra / Editing / 2.5 Flash (nano-banana) / Unlimited / Region-Based / [Discord](https://discord.com/invite/gemini)
* ⭐ **[ImageFX](https://labs.google/fx/tools/image-fx)** - Imagen 3 / Unlimited / Region-Based / [Discord](https://discord.com/invite/googlelabs) * ⭐ **[ImageFX](https://labs.google/fx/tools/image-fx)** - Imagen 3 / Unlimited / Region-Based / [Discord](https://discord.com/invite/googlelabs)
* ⭐ **[Qwen](https://chat.qwen.ai/)** / 30 Per 24 Hours / Editing / [Discord](https://discord.com/invite/CV4E9rpNSD) / [GitHub](https://github.com/QwenLM) * ⭐ **[Qwen](https://chat.qwen.ai/)** / 30 Per 24 Hours / Editing / [Discord](https://discord.com/invite/CV4E9rpNSD) / [GitHub](https://github.com/QwenLM)
* ⭐ **[Grok](https://grok.com/)** / 20 Per 2 Hours / Editing / [Subreddit](https://www.reddit.com/r/grok/) / [Discord](https://discord.com/invite/kqCc86jM55) * ⭐ **[Grok](https://grok.com/)** / 20 Per 2 Hours / Editing / [Subreddit](https://www.reddit.com/r/grok/) / [Discord](https://discord.com/invite/kqCc86jM55)
* ⭐ **[LMArena](https://lmarena.ai/?mode=direct&chat-modality=image)** - Multiple Generators / Editing / Google Login Required / [Discord](https://discord.com/invite/lmarena) / [GitHub](https://github.com/lm-sys/FastChat)
* ⭐ **[Mage](https://www.mage.space/)** / [Discord](https://discord.com/invite/GT9bPgxyFP) * ⭐ **[Mage](https://www.mage.space/)** / [Discord](https://discord.com/invite/GT9bPgxyFP)
* ⭐ **[FLUX.1 Schnell](https://huggingface.co/spaces/black-forest-labs/FLUX.1-schnell)**, [FLUX.1-Kontext-Dev](https://huggingface.co/spaces/black-forest-labs/FLUX.1-Kontext-Dev) or [FLUX-Pro-Unlimited](https://huggingface.co/spaces/NihalGazi/FLUX-Pro-Unlimited) / [Limits](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#hugging-face-warning) / No Sign-Up / Editing (Kontext) * ⭐ **[FLUX.1 Schnell](https://huggingface.co/spaces/black-forest-labs/FLUX.1-schnell)**, [FLUX.1-Kontext-Dev](https://huggingface.co/spaces/black-forest-labs/FLUX.1-Kontext-Dev) or [FLUX-Pro-Unlimited](https://huggingface.co/spaces/NihalGazi/FLUX-Pro-Unlimited) / [Limits](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#hugging-face-warning) / No Sign-Up / Editing (Kontext)
* [Yupp.ai](https://yupp.ai/) / Google Login Required
* [PigenAI](https://pigenai.onrender.com/) / Unlimited * [PigenAI](https://pigenai.onrender.com/) / Unlimited
* [Perchance](https://perchance.org/ai-text-to-image-generator), [2](https://perchance.org/ai-photo-generator) / Unlimited / No Sign-Up * [Perchance](https://perchance.org/ai-text-to-image-generator), [2](https://perchance.org/ai-photo-generator) / Unlimited / No Sign-Up
* [Dreamina](https://dreamina.capcut.com/ai-tool/home) / 60 Daily / Seedream 3.0 / 4 Gens Per Prompt * [Dreamina](https://dreamina.capcut.com/ai-tool/home) / 60 Daily / Seedream 3.0 / 4 Gens Per Prompt
@ -368,7 +371,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

@ -209,7 +209,9 @@
* ↪️ **[Android](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/android#wiki_.25B7_android_podcasts_.2F_radio) / [iOS](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/android#wiki_.25B7_ios_podcasts_.2F_radio)** - Podcast / Radio Apps * ↪️ **[Android](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/android#wiki_.25B7_android_podcasts_.2F_radio) / [iOS](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/android#wiki_.25B7_ios_podcasts_.2F_radio)** - Podcast / Radio Apps
* ⭐ **[Spotify Podcasts](https://open.spotify.com/browse/podcasts)** - Podcasts / [Companion](https://sebschaef.bitbucket.io/podify/) / [RSS](https://github.com/Yetangitu/Spodcast) / [Video Download](https://rentry.co/spotifypodcast) / [Audio Download](https://rentry.co/dlspotifypodcast) * ⭐ **[Spotify Podcasts](https://open.spotify.com/browse/podcasts)** - Podcasts / [Companion](https://sebschaef.bitbucket.io/podify/) / [RSS](https://github.com/Yetangitu/Spodcast) / [Video Download](https://rentry.co/spotifypodcast) / [Audio Download](https://rentry.co/dlspotifypodcast)
* ⭐ **[Pocket Casts](https://play.pocketcasts.com/discover)** - Podcasts / [Desktop App](https://pocketcasts.com/downloads/windows/) * ⭐ **[Pocket Casts](https://play.pocketcasts.com/discover)** - Podcasts / [Desktop App](https://pocketcasts.com/downloads/windows/)
* [Podchaser](https://podchaser.com/), [Rephonic](https://rephonic.com/graph) or [Listen Notes](https://www.listennotes.com/) - Podcast Databases / Trackers * [Podchaser](https://www.podchaser.com/charts) or [Podstatus](https://podstatus.com/charts) - Podcast Charts / Databases
* [Listen Notes](https://www.listennotes.com/) - Podcast Search Engine
* [Rephonic](https://rephonic.com/graph) - Find Similar Podcasts
* [Apple Podcasts](https://podcasts.apple.com/us/home) - Podcasts * [Apple Podcasts](https://podcasts.apple.com/us/home) - Podcasts
* [PodParadise](https://www.podparadise.com/) - Podcasts * [PodParadise](https://www.podparadise.com/) - Podcasts
* [Podbean](https://www.podbean.com/) - Podcasts * [Podbean](https://www.podbean.com/) - Podcasts
@ -668,7 +670,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
@ -740,6 +742,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/)
@ -811,8 +814,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)
@ -871,7 +874,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
@ -937,12 +940,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
@ -203,7 +203,7 @@
* 🌐 **[Awesome README](https://github.com/matiassingers/awesome-readme)** - GitHub Readme Resources * 🌐 **[Awesome README](https://github.com/matiassingers/awesome-readme)** - GitHub Readme Resources
* 🌐 **[Forge Comparison](https://git.sdf.org/humanacollaborator/humanacollabora/src/branch/master/forge_comparison.md)**, [Forgejo](https://forgejo.org/compare/#only-develops-free-software) or [Forgeperf.org](https://forgeperf.org/) - Git Collab Tool Comparison * 🌐 **[Forge Comparison](https://git.sdf.org/humanacollaborator/humanacollabora/src/branch/master/forge_comparison.md)**, [Forgejo](https://forgejo.org/compare/#only-develops-free-software) or [Forgeperf.org](https://forgeperf.org/) - Git Collab Tool Comparison
* ↪️ **[Git Project Indexes](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_git_projects)** * ↪️ **[Git Project Indexes](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_git_projects)**
* ⭐ **[Git-Fork](https://git-fork.com/)**, [GitButler](https://github.com/gitbutlerapp/gitbutler) or [GitQlient](https://github.com/francescmm/GitQlient) - Git Desktop Clients * ⭐ **[Fork](https://git-fork.com/)**, [GitButler](https://github.com/gitbutlerapp/gitbutler) or [GitQlient](https://github.com/francescmm/GitQlient) - Git Desktop Clients
* ⭐ **[Codeberg](https://codeberg.org/)** / [Matrix](https://matrix.to/#/#codeberg-space:matrix.org), [Drift](https://drift.lol/), [Gitea](https://about.gitea.com/), [GitLab.com](https://about.gitlab.com/) or [sourcehut](https://sourcehut.org/) - GitHub Alts / Version Control Systems * ⭐ **[Codeberg](https://codeberg.org/)** / [Matrix](https://matrix.to/#/#codeberg-space:matrix.org), [Drift](https://drift.lol/), [Gitea](https://about.gitea.com/), [GitLab.com](https://about.gitlab.com/) or [sourcehut](https://sourcehut.org/) - GitHub Alts / Version Control Systems
* [Git](https://git-scm.com/) - Version Control System * [Git](https://git-scm.com/) - Version Control System
* [searchcode](https://searchcode.com/) or [PublicWWW](https://publicwww.com/) - Source Code Search * [searchcode](https://searchcode.com/) or [PublicWWW](https://publicwww.com/) - Source Code Search
@ -242,7 +242,7 @@
* 🌐 **[Awesome Browser Extensions](https://stefanbuck.com/awesome-browser-extensions-for-github)** - GitHub Browser Extensions * 🌐 **[Awesome Browser Extensions](https://stefanbuck.com/awesome-browser-extensions-for-github)** - GitHub Browser Extensions
* 🌐 **[Awesome Badges](https://dev.to/envoy_/150-badges-for-github-pnk)** - GitHub Badge Resources * 🌐 **[Awesome Badges](https://dev.to/envoy_/150-badges-for-github-pnk)** - GitHub Badge Resources
* 🌐 **[GitHub-Userscripts](https://greasyfork.org/en/users/24847)** - GitHub Userscripts * 🌐 **[GitHub-Userscripts](https://greasyfork.org/en/users/24847)** - GitHub Userscripts
* ⭐ **[GitHub Desktop](https://desktop.github.com/)** / [Linux](https://github.com/shiftkey/desktop) - GitHub Desktop Client * ⭐ **[GitHub Desktop](https://github.com/apps/desktop)** / [Linux](https://github.com/shiftkey/desktop) - GitHub Desktop Client
* [Gothub](https://codeberg.org/gothub/gothub) - GitHub Frontend * [Gothub](https://codeberg.org/gothub/gothub) - GitHub Frontend
* [GitHub Cheat Sheet](https://github.com/tiimgreen/github-cheat-sheet) - GitHub Cheat Sheet * [GitHub Cheat Sheet](https://github.com/tiimgreen/github-cheat-sheet) - GitHub Cheat Sheet
* [GitHubStatus](https://www.githubstatus.com/) - GitHub Outage Status * [GitHubStatus](https://www.githubstatus.com/) - GitHub Outage Status
@ -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

@ -118,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/)
@ -135,6 +134,7 @@
* [Make it Yourself](https://makeityourself.org/) - 1000 DIY Projects / [Video](https://youtu.be/TSFJ2OH1PQA) * [Make it Yourself](https://makeityourself.org/) - 1000 DIY Projects / [Video](https://youtu.be/TSFJ2OH1PQA)
* [Animated Knots](https://www.animatedknots.com/) or [NetKnots](https://www.netknots.com/) - Learn to Tie Knots * [Animated Knots](https://www.animatedknots.com/) or [NetKnots](https://www.netknots.com/) - Learn to Tie Knots
* [Ian's Shoelace Site](https://www.fieggen.com/shoelace/) - Learn to Tie Shoelaces * [Ian's Shoelace Site](https://www.fieggen.com/shoelace/) - Learn to Tie Shoelaces
* [Polymaker](https://wiki.polymaker.com/) - 3D Printing Guide / Community / [Discord](https://discord.com/invite/polymaker)
* [Perry Morse](https://www.perry.qa/morse), [Morse Typing Trainer](https://morse.withgoogle.com/learn/) or [ICWO](https://lcwo.net/) - Learn / Practice Morse Code * [Perry Morse](https://www.perry.qa/morse), [Morse Typing Trainer](https://morse.withgoogle.com/learn/) or [ICWO](https://lcwo.net/) - Learn / Practice Morse Code
* [Lock Picking 101](https://www.lockpicking101.com/) - Lock Picking Forum * [Lock Picking 101](https://www.lockpicking101.com/) - Lock Picking Forum
* [LibraryOfJuggling](https://libraryofjuggling.com/) - Juggling Technique Database * [LibraryOfJuggling](https://libraryofjuggling.com/) - Juggling Technique Database
@ -178,7 +178,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
@ -487,7 +487,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)
@ -538,10 +538,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
@ -664,6 +664,7 @@
* [University of Utah Pathology](https://webpath.med.utah.edu/webpath.html) - Pathology Guide * [University of Utah Pathology](https://webpath.med.utah.edu/webpath.html) - Pathology Guide
* [The Iowa Virtual Slidebox](https://www.mbfbioscience.com/iowavirtualslidebox) - Pathology Atlas Software * [The Iowa Virtual Slidebox](https://www.mbfbioscience.com/iowavirtualslidebox) - Pathology Atlas Software
* [Nextstrain](https://nextstrain.org/) - Pathogen Evolution Tracking * [Nextstrain](https://nextstrain.org/) - Pathogen Evolution Tracking
* [EyeWiki](https://eyewiki.org/) - Eye Encyclopedia
* [Passmedicine](https://www.passmedicine.com/ucat/) - UCAT Practice Questions * [Passmedicine](https://www.passmedicine.com/ucat/) - UCAT Practice Questions
* [UCAT Score](https://codepen.io/souramoo/full/OJMQzVm) - UCAT Score Converter * [UCAT Score](https://codepen.io/souramoo/full/OJMQzVm) - UCAT Score Converter
* [r/medicalschoolanki](https://www.reddit.com/r/medicalschoolanki/) - Community for Medical Anki Cards * [r/medicalschoolanki](https://www.reddit.com/r/medicalschoolanki/) - Community for Medical Anki Cards
@ -845,6 +846,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
@ -934,7 +936,6 @@
* [Chess Tempo](https://chesstempo.com/) - Chess Practice * [Chess Tempo](https://chesstempo.com/) - Chess Practice
* [Lucas Chess](https://lucaschess.pythonanywhere.com/) - Chess Practice * [Lucas Chess](https://lucaschess.pythonanywhere.com/) - Chess Practice
* [Chess Coach](https://rentry.co/FMHYBase64#chess-coach) - Chess Coaching App * [Chess Coach](https://rentry.co/FMHYBase64#chess-coach) - Chess Coaching App
* [Chessercise](https://www.chessercise.xyz/) - Chess Game / Move Analysis
* [WintrChess](https://wintrchess.com/), [2](https://chess.wintrcat.uk/) - Chess Game / Move Analysis * [WintrChess](https://wintrchess.com/), [2](https://chess.wintrcat.uk/) - Chess Game / Move Analysis
* [Decode Chess](https://app.decodechess.com/) - Chess Game / Move Analysis * [Decode Chess](https://app.decodechess.com/) - Chess Game / Move Analysis
* [YottaChess](https://www.yottachess.com/) - Chess Game / Move Analysis * [YottaChess](https://www.yottachess.com/) - Chess Game / Move Analysis
@ -981,7 +982,7 @@
* [Oh My Git!](https://ohmygit.org/) or [Oh Shit, Git!?!](https://ohshitgit.com/) - Git Learning Game * [Oh My Git!](https://ohmygit.org/) or [Oh Shit, Git!?!](https://ohshitgit.com/) - Git Learning Game
* [Git Tutorial](https://4geeksacademy.github.io/git-interactive-tutorial/) - Interactive Git Tutorial * [Git Tutorial](https://4geeksacademy.github.io/git-interactive-tutorial/) - Interactive Git Tutorial
* [Learn Git Branching](https://learngitbranching.js.org/) - Interactive Git Branching Guide * [Learn Git Branching](https://learngitbranching.js.org/) - Interactive Git Branching Guide
* [Git Time](https://git.bradwoods.io/) - Git Version Control System Learning Game * [Git Time](https://git.bradwoods.io/) - Git Learning Game
* [DevToolTips](https://devtoolstips.org/) - Developer Tips * [DevToolTips](https://devtoolstips.org/) - Developer Tips
* [Roadmap](https://roadmap.sh/) - Developer Roadmaps / [GitHub](https://github.com/kamranahmedse/developer-roadmap) * [Roadmap](https://roadmap.sh/) - Developer Roadmaps / [GitHub](https://github.com/kamranahmedse/developer-roadmap)
* [Checki0](https://checkio.org/) - Code Learning Games * [Checki0](https://checkio.org/) - Code Learning Games
@ -1217,6 +1218,7 @@
* 🌐 **[Free Cyber Resources](https://github.com/gerryguy311/Free_CyberSecurity_Professional_Development_Resources)**, [BlueTeam Tools](https://github.com/A-poc/BlueTeam-Tools) or [Applied Cybersecurity](https://www.nist.gov/itl/applied-cybersecurity/nice/resources/online-learning-content) - Cybersecurity Learning Resources * 🌐 **[Free Cyber Resources](https://github.com/gerryguy311/Free_CyberSecurity_Professional_Development_Resources)**, [BlueTeam Tools](https://github.com/A-poc/BlueTeam-Tools) or [Applied Cybersecurity](https://www.nist.gov/itl/applied-cybersecurity/nice/resources/online-learning-content) - Cybersecurity Learning Resources
* 🌐 **[CTF Sites](https://ctfsites.github.io/)**, [echoCTF.RED](https://echoctf.red/), [CTF101](https://ctf101.org/), [picoCTF](https://picoctf.org/), [CTF Beginners Guide](https://jaimelightfoot.com/blog/so-you-want-to-ctf-a-beginners-guide/), [CTFtime](https://ctftime.org/) or [CTFLearn](https://ctflearn.com/) - CTF Resources / Guides * 🌐 **[CTF Sites](https://ctfsites.github.io/)**, [echoCTF.RED](https://echoctf.red/), [CTF101](https://ctf101.org/), [picoCTF](https://picoctf.org/), [CTF Beginners Guide](https://jaimelightfoot.com/blog/so-you-want-to-ctf-a-beginners-guide/), [CTFtime](https://ctftime.org/) or [CTFLearn](https://ctflearn.com/) - CTF Resources / Guides
* 🌐 **[Awesome Sites to Test On](https://github.com/BMayhew/awesome-sites-to-test-on)** - Cybersecurity Practice Sites
* ⭐ **[HackTricks](https://book.hacktricks.wiki/)** - Practical Penetration Testing & Security Auditing Tips * ⭐ **[HackTricks](https://book.hacktricks.wiki/)** - Practical Penetration Testing & Security Auditing Tips
* ⭐ **[PortSwigger Academy](https://portswigger.net/web-security)** - Web Security Learning * ⭐ **[PortSwigger Academy](https://portswigger.net/web-security)** - Web Security Learning
* ⭐ **[OWASP Cheatsheet](https://cheatsheetseries.owasp.org/)** - Application Security Guide * ⭐ **[OWASP Cheatsheet](https://cheatsheetseries.owasp.org/)** - Application Security Guide
@ -1327,7 +1329,7 @@
* ↪️ **[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)**
* ↪️ **[Grammar / Spell Check](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/text-tools#wiki_.25B7_grammar_check)** * ↪️ **[Grammar / Spell Check](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/text-tools#wiki_.25B7_grammar_check)**
* ↪️ **[Text Rephrasing](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/text-tools#wiki_.25B7_text_rephrasing)** * ↪️ **[Text Rephrasing](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/text-tools#wiki_.25B7_text_rephrasing)**
* ⭐ **[OpenBoard](https://openboard.ch/index.en.html)**, [DGM](https://dgm.sh/), [NotebookCast](https://www.notebookcast.com/), [WebWhiteboard](https://webwhiteboard.com/), [Microsoft Whiteboard](https://apps.microsoft.com/detail/9MSPC6MP8FM4), [WBO](https://wbo.ophir.dev/), [OurBoard](https://www.ourboard.io/), [Whiteboard.fi](https://whiteboard.fi/) or [Whiteboard Fox](https://r3.whiteboardfox.com/) - Whiteboards * ⭐ **[Excalidraw](https://excalidraw.com/)** / [Sharing](https://excalihub.dev/), **[OpenBoard](https://openboard.ch/index.en.html)**, [DGM](https://dgm.sh/), [NotebookCast](https://www.notebookcast.com/), [WebWhiteboard](https://webwhiteboard.com/), [Microsoft Whiteboard](https://apps.microsoft.com/detail/9MSPC6MP8FM4), [WBO](https://wbo.ophir.dev/), [OurBoard](https://www.ourboard.io/), [Whiteboard.fi](https://whiteboard.fi/) or [Whiteboard Fox](https://r3.whiteboardfox.com/) - Whiteboards
* [FreeForStudent](https://freeforstudents.org/) - Free for Student Deals * [FreeForStudent](https://freeforstudents.org/) - Free for Student Deals
* [Better Canvas](https://github.com/UseBetterCanvas/bettercanvas) - Canvas Enhancement Extension * [Better Canvas](https://github.com/UseBetterCanvas/bettercanvas) - Canvas Enhancement Extension
* [Tasks for Canvas](https://github.com/jtcheng26/canvas-task-extension) - Improved Canvas To-Do List * [Tasks for Canvas](https://github.com/jtcheng26/canvas-task-extension) - Improved Canvas To-Do List
@ -1345,7 +1347,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
*** ***
@ -1364,7 +1366,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

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)
@ -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/) or [PolyUploader](https://polyuploader.vercel.app/) / [GitHub](https://github.com/spel987/PolyUploader) - Multi-Host Upload Desktop Apps * [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)
@ -99,6 +100,7 @@
* [JoyToKey](https://joytokey.net/en/) - Controller Emulator * [JoyToKey](https://joytokey.net/en/) - Controller Emulator
* [Spud Controller](https://sadwhale-studios.itch.io/) - Controller / Mouse Input Displays * [Spud Controller](https://sadwhale-studios.itch.io/) - Controller / Mouse Input Displays
* [Gamepad-Tester](https://hardwaretester.com/gamepad) or [AresLuna](https://aresluna.org/gamepad-tester/) - Controller Connectivity Testers * [Gamepad-Tester](https://hardwaretester.com/gamepad) or [AresLuna](https://aresluna.org/gamepad-tester/) - Controller Connectivity Testers
* [DualSense Tester](https://ds.daidr.me/) - Web DualSense Tester / [GitHub](https://github.com/daidr/dualsense-tester)
* [hidusbf](https://github.com/LordOfMice/hidusbf) - Decrease DS4/5 Input Lag / [Video](https://youtu.be/x0wcJM4FtXQ) * [hidusbf](https://github.com/LordOfMice/hidusbf) - Decrease DS4/5 Input Lag / [Video](https://youtu.be/x0wcJM4FtXQ)
* [HidHide](https://docs.nefarius.at/projects/HidHide/) - Input Device Firewall * [HidHide](https://docs.nefarius.at/projects/HidHide/) - Input Device Firewall
* [Whitescent Engine](https://apt.izzysoft.de/fdroid/index/apk/com.github.whitescent.engine) - Use Phone as Joy Stick / [GitHub](https://github.com/whitescent/Engine) * [Whitescent Engine](https://apt.izzysoft.de/fdroid/index/apk/com.github.whitescent.engine) - Use Phone as Joy Stick / [GitHub](https://github.com/whitescent/Engine)
@ -130,7 +132,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 +255,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 +383,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 +399,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 +459,11 @@
## ▷ Switch Homebrew ## ▷ Switch Homebrew
* ⭐ **[Switch Hacks Guide]](https://switch.hacks.guide/)** or [Switchway](https://switchway.net/) * ⭐ **[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 +475,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 +502,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 +563,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 +599,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 +823,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,16 +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
* [Virgil Game Search](https://virgil.samidy.com/), [2](https://virgil-search.pages.dev/) / [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 * [Virgil Game Search](https://virgil.samidy.com/Game-search/) / [GitHub](https://github.com/SamidyFR/Virgil), [Rezi Search](https://rezi.one/), [Playseek](https://playseek.app/), [Game Download CSE](https://cse.google.com/cse?cx=006516753008110874046:cbjowp5sdqg), [Game Torrent CSE](https://cse.google.com/cse?cx=006516753008110874046:pobnsujblyx) or [r/PiratedGames CSE](https://cse.google.com/cse?cx=20c2a3e5f702049aa) - Multi-Site Search Engines
* [g4u](https://g4u.to/) - Download / PW: `404` * [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)
@ -136,6 +136,7 @@
* [Chrono Divide](https://rentry.co/FMHYBase64#chrono-divide) / [Discord](https://discord.gg/uavJ34JTWY) / [GitHub](https://github.com/chronodivide) or [OpenRA](https://openra.net/) / [Discord](https://discord.com/invite/m5dVWH4aQE) / [GitHub](https://github.com/OpenRA/OpenRA) - Command & Conquer Recreations / Ports * [Chrono Divide](https://rentry.co/FMHYBase64#chrono-divide) / [Discord](https://discord.gg/uavJ34JTWY) / [GitHub](https://github.com/chronodivide) or [OpenRA](https://openra.net/) / [Discord](https://discord.com/invite/m5dVWH4aQE) / [GitHub](https://github.com/OpenRA/OpenRA) - Command & Conquer Recreations / Ports
* [Beyond All Reason](https://www.beyondallreason.info/) - Open-Source Total Annihilation / Supreme Commander / [Discord](https://discord.gg/beyond-all-reason) / [GitHub](https://github.com/beyond-all-reason) * [Beyond All Reason](https://www.beyondallreason.info/) - Open-Source Total Annihilation / Supreme Commander / [Discord](https://discord.gg/beyond-all-reason) / [GitHub](https://github.com/beyond-all-reason)
* [DFWorkshop](https://www.dfworkshop.net/) - Daggerfall Unity Engine Port * [DFWorkshop](https://www.dfworkshop.net/) - Daggerfall Unity Engine Port
* [The Dark Mod](https://www.thedarkmod.com/) - Modernized Thief Recreation / [Community Missions](https://www.thedarkmod.com/missions/)
* [OpenMW](https://openmw.org/) - Morrowind Remake / [GitHub](https://github.com/OpenMW/openmw) / [Multiplayer](https://github.com/TES3MP/TES3MP) * [OpenMW](https://openmw.org/) - Morrowind Remake / [GitHub](https://github.com/OpenMW/openmw) / [Multiplayer](https://github.com/TES3MP/TES3MP)
* [ECWolf](https://maniacsvault.net/ecwolf/) - Wolfenstein 3D, Spear of Destiny & Super 3D Noah's Ark Port * [ECWolf](https://maniacsvault.net/ecwolf/) - Wolfenstein 3D, Spear of Destiny & Super 3D Noah's Ark Port
* [IOQuake3](https://ioquake3.org/) - Quake 3 Source Port / [Discord](https://discord.gg/YY9UvMHGYb) / [GitHub](https://github.com/ioquake/ioq3) * [IOQuake3](https://ioquake3.org/) - Quake 3 Source Port / [Discord](https://discord.gg/YY9UvMHGYb) / [GitHub](https://github.com/ioquake/ioq3)
@ -357,10 +358,10 @@
* [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. * [Super Mario War](http://smwstuff.net/) - Multiplayer Deathmatch Style Super Mario. Bros.
* [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)
*** ***
@ -526,6 +527,7 @@
* [FlyOrDie](https://www.flyordie.com/) - Multiplayer Tabletop Games * [FlyOrDie](https://www.flyordie.com/) - Multiplayer Tabletop Games
* [PlayOK](https://www.playok.com/) - Multiplayer Tabletop Games * [PlayOK](https://www.playok.com/) - Multiplayer Tabletop Games
* [Screentop](https://screentop.gg/) - Online Tabletop Games / [Discord](https://discord.gg/wva8ebh) * [Screentop](https://screentop.gg/) - Online Tabletop Games / [Discord](https://discord.gg/wva8ebh)
* [FreeBoardGames](https://www.freeboardgames.org/) - Online Board Games / [Discord](https://discord.gg/AaE6n3n) / [GitHub](https://github.com/freeboardgames/FreeBoardGames.org)
* [FunNode](https://www.funnode.com/) - Online Board Games * [FunNode](https://www.funnode.com/) - Online Board Games
* [Board Game Online](https://www.boardgame-online.com/) - Online Board Games * [Board Game Online](https://www.boardgame-online.com/) - Online Board Games
* [Board Game Arena](https://en.boardgamearena.com/) - Online Board Games / Sign-Up Required * [Board Game Arena](https://en.boardgamearena.com/) - Online Board Games / Sign-Up Required
@ -596,6 +598,7 @@
* [Tetris](https://tetris.com/), [LazyTetris](https://lazytetris.com/) or [Tetr.js](http://farter.cn/tetr.js/) - Tetris * [Tetris](https://tetris.com/), [LazyTetris](https://lazytetris.com/) or [Tetr.js](http://farter.cn/tetr.js/) - Tetris
* [SMBGames](https://smbgames.be/) - Browser Super Mario * [SMBGames](https://smbgames.be/) - Browser Super Mario
* [SMWGames](https://www.smwgames.com/) - Modded Browser Super Mario World * [SMWGames](https://www.smwgames.com/) - Modded Browser Super Mario World
* [Level Share Square](https://levelsharesquare.com/) - Custom Mario Fangame Maps
* [Jelly Mario](https://jellymar.io/) - Jelly Super Mario * [Jelly Mario](https://jellymar.io/) - Jelly Super Mario
* [Snubby](https://rentry.co/FMHYBase64#sr-game) - Browser Slime Rancher * [Snubby](https://rentry.co/FMHYBase64#sr-game) - Browser Slime Rancher
* [CelesteClassic](https://maddymakesgamesinc.itch.io/celesteclassic) - Full Classic Celeste * [CelesteClassic](https://maddymakesgamesinc.itch.io/celesteclassic) - Full Classic Celeste
@ -669,7 +672,6 @@
* [Snokido](https://www.snokido.com/) - Browser Games * [Snokido](https://www.snokido.com/) - Browser Games
* [Game-Game](https://game-game.com/) - Browser Games * [Game-Game](https://game-game.com/) - Browser Games
* [ArcadeSpot](https://arcadespot.com/) - Browser Games * [ArcadeSpot](https://arcadespot.com/) - Browser Games
* [Gaming Wonderland](https://www.gamingwonderland.com/) - Browser Games
* [Alfy](https://www.alfy.com/) - Browser Games * [Alfy](https://www.alfy.com/) - Browser Games
* [Andkon](https://andkon.com/arcade/) - Browser Games * [Andkon](https://andkon.com/arcade/) - Browser Games
* [FreeGames](https://freegames.org/) - Browser Games * [FreeGames](https://freegames.org/) - Browser Games
@ -682,7 +684,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
@ -137,7 +138,6 @@
* 🌐 **[Digital Art Brushes](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_digital_brushes)** - Download Brushes * 🌐 **[Digital Art Brushes](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_digital_brushes)** - Download Brushes
* ⭐ **[Krita](https://krita.org/en/)** - Painting App / Windows, Mac, Linux / [AI Generation](https://github.com/Acly/krita-ai-diffusion/) / [GitHub](https://github.com/KDE/krita) * ⭐ **[Krita](https://krita.org/en/)** - Painting App / Windows, Mac, Linux / [AI Generation](https://github.com/Acly/krita-ai-diffusion/) / [GitHub](https://github.com/KDE/krita)
* ⭐ **[miniPaint](https://viliusle.github.io/miniPaint/)** - Browser Painting / Web * ⭐ **[miniPaint](https://viliusle.github.io/miniPaint/)** - Browser Painting / Web
* ⭐ **[Excalidraw](https://excalidraw.com/)** - Drawing / Sketching / Web / [Sharing](https://excalihub.dev/)
* ⭐ **[AutoDraw](https://www.autodraw.com/)** - AI Drawing Tools / Web * ⭐ **[AutoDraw](https://www.autodraw.com/)** - AI Drawing Tools / Web
* [SmoothDraw](https://qrli.github.io/smoothdraw/) - Painting App / Windows * [SmoothDraw](https://qrli.github.io/smoothdraw/) - Painting App / Windows
* [inkscape](https://inkscape.org/) - Drawing / Sketching / Windows, Mac, Linux / [GitLab](https://gitlab.com/inkscape/inkscape) * [inkscape](https://inkscape.org/) - Drawing / Sketching / Windows, Mac, Linux / [GitLab](https://gitlab.com/inkscape/inkscape)
@ -318,7 +318,7 @@
* [AvaxGFX](https://avxgfx.com/) * [AvaxGFX](https://avxgfx.com/)
* [Freeject](https://www.freeject.net/) * [Freeject](https://www.freeject.net/)
* [Salvaged](https://salvaged.nu/) * [Salvaged](https://salvaged.nu/)
* [Cg_peers](https://t.me/Cg_peers) * [Cg_peers Archive](https://t.me/Cgpeers_archive)
* [PNGTree](https://pngtree.com/) * [PNGTree](https://pngtree.com/)
* [TianUI](https://www.titanui.com/) * [TianUI](https://www.titanui.com/)
* [Designer Candies](https://designercandies.net/category/freebies/) * [Designer Candies](https://designercandies.net/category/freebies/)
@ -326,7 +326,7 @@
* [PSDLY](https://www.psdly.to/) * [PSDLY](https://www.psdly.to/)
* [Unblast](https://unblast.com/) * [Unblast](https://unblast.com/)
* [CGArchives](https://cgarchives.com/) * [CGArchives](https://cgarchives.com/)
* [CGPlugin](https://t.me/s/cgplugin) * [CGPerec](https://t.me/cgperec)
* [SearchGFX](https://searchgfx.com/) * [SearchGFX](https://searchgfx.com/)
* [Quasual](https://m.vk.com/quasual) * [Quasual](https://m.vk.com/quasual)
* [designersgan9](https://m.vk.com/designersgan9) * [designersgan9](https://m.vk.com/designersgan9)
@ -553,6 +553,7 @@
## ▷ 3D Modeling Tools ## ▷ 3D Modeling Tools
* [3D Printer Recs](https://redd.it/1bh9jud) - Hobbyist 3D Printer Recommendations * [3D Printer Recs](https://redd.it/1bh9jud) - Hobbyist 3D Printer Recommendations
* [Polymaker](https://wiki.polymaker.com/) - 3D Printing Guide / Community / [Discord](https://discord.com/invite/polymaker)
* [Embossify](https://www.embossify.com/) or [Tripo3D](https://www.tripo3d.ai/app/home) - Image to 3D Model Converters * [Embossify](https://www.embossify.com/) or [Tripo3D](https://www.tripo3d.ai/app/home) - Image to 3D Model Converters
* [3D Transformer](https://www.3dtransformer.com/) - Rotate 3D Images * [3D Transformer](https://www.3dtransformer.com/) - Rotate 3D Images
* [3DConvert](https://3d-convert.com/en/) - Online 3D Image Converter * [3DConvert](https://3d-convert.com/en/) - Online 3D Image Converter
@ -796,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>
@ -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) - 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,7 +284,7 @@
* [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
* [Virgil Game Search](https://virgil.samidy.com/), [2](https://virgil-search.pages.dev/) / [GitHub](https://github.com/SamidyFR/Virgil), [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) - 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
@ -454,6 +454,7 @@
* [Guerrilla Mail](https://www.guerrillamail.com/) - Forever / 1 Hour / 11 Domains / [SharkLasers](https://www.sharklasers.com/) * [Guerrilla Mail](https://www.guerrillamail.com/) - Forever / 1 Hour / 11 Domains / [SharkLasers](https://www.sharklasers.com/)
* [Bloody Vikings!](https://addons.mozilla.org/en-US/firefox/addon/bloody-vikings/) - Temp Email Extension * [Bloody Vikings!](https://addons.mozilla.org/en-US/firefox/addon/bloody-vikings/) - Temp Email Extension
* [Tmail.io](https://tmail.io/) - Gmail / Forever / 1 Day / 4 Domains * [Tmail.io](https://tmail.io/) - Gmail / Forever / 1 Day / 4 Domains
* [AltAddress](https://altaddress.org/) - Forever / 3 Days / 14 Domains
* [22.Do](https://22.do/) - Gmail / 1 Day / 1 Day / 3 Domains * [22.Do](https://22.do/) - Gmail / 1 Day / 1 Day / 3 Domains
* [Vortex Email](https://vortex.skyfall.dev/) - Forever / 9 Domains / [GitHub](https://github.com/SkyfallWasTaken/vortex.email) * [Vortex Email](https://vortex.skyfall.dev/) - Forever / 9 Domains / [GitHub](https://github.com/SkyfallWasTaken/vortex.email)
* [MailTicking](https://www.mailticking.com/) - Gmail / 2 Domains * [MailTicking](https://www.mailticking.com/) - Gmail / 2 Domains
@ -587,7 +588,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 +826,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

@ -458,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
@ -688,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)

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) - 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
@ -353,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
@ -524,7 +525,7 @@
* ↪️ **[Dev / Cybersecurity News](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/dev-tools#wiki_.25BA_dev_news)** * ↪️ **[Dev / Cybersecurity News](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/dev-tools#wiki_.25BA_dev_news)**
* ⭐ **[GamersNexus](https://gamersnexus.net/)** - PC Gaming News * ⭐ **[GamersNexus](https://gamersnexus.net/)** - PC Gaming News
* ⭐ **[Hacker News](https://news.ycombinator.com/)** - Tech / Hacking News / [Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/misc#wiki_.25B7_hacker_news_tools) * ⭐ **[Hacker News](https://news.ycombinator.com/)** - Tech News / [Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/misc#wiki_.25B7_hacker_news_tools)
* [AlternativeTo Aggregator](https://alternativeto.net/news/all/) - Tech News Aggregator * [AlternativeTo Aggregator](https://alternativeto.net/news/all/) - Tech News Aggregator
* [TechURLs](https://techurls.com/) - Tech News * [TechURLs](https://techurls.com/) - Tech News
* [Techmeme](https://www.techmeme.com/) - Tech News * [Techmeme](https://www.techmeme.com/) - Tech News
@ -548,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
*** ***
@ -821,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
@ -837,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
@ -873,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
@ -903,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
@ -950,9 +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
* [NoBids](https://nobids.net/) - eBay No Bid 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
@ -995,6 +998,7 @@
* [Crinacle's Ultimate IEM List](https://list.hangout.audio/iem/) or [IEMGazette](https://4ciemg.github.io/IEMGazette/) - In-Ear Monitor Comparisons / Reviews * [Crinacle's Ultimate IEM List](https://list.hangout.audio/iem/) or [IEMGazette](https://4ciemg.github.io/IEMGazette/) - In-Ear Monitor Comparisons / Reviews
* [SpeakerRanking](https://www.speakerranking.com/) - Speaker Comparisons / Reviews * [SpeakerRanking](https://www.speakerranking.com/) - Speaker Comparisons / Reviews
* [Erin's Audio Corner](https://www.erinsaudiocorner.com/) or [Equipboard](https://equipboard.com/) - Audio Equipment Comparisons * [Erin's Audio Corner](https://www.erinsaudiocorner.com/) or [Equipboard](https://equipboard.com/) - Audio Equipment Comparisons
* [Audio Test Kitchen](https://www.audiotestkitchen.com/) - Compare Microphone Sounds
* [Dont kill my app!](https://dontkillmyapp.com/) - Manufacturer Battery Life vs. App Functionality * [Dont kill my app!](https://dontkillmyapp.com/) - Manufacturer Battery Life vs. App Functionality
* [PhoneSized](https://phonesized.com/) or [HotSpot3D](https://www.hotspot3d.com/) - Phone Size Comparisons * [PhoneSized](https://phonesized.com/) or [HotSpot3D](https://www.hotspot3d.com/) - Phone Size Comparisons
* [Gamepadla](https://gamepadla.com/) - Gamepad / Controller Latency Tests * [Gamepadla](https://gamepadla.com/) - Gamepad / Controller Latency Tests
@ -1227,12 +1231,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
@ -1497,6 +1500,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

@ -431,8 +431,8 @@
* 🌐 **[Awesome Android Security](https://github.com/ashishb/android-security-awesome)** - Security Resources * 🌐 **[Awesome Android Security](https://github.com/ashishb/android-security-awesome)** - Security Resources
* ↪️ **[Encrypted Messengers](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/adblock-vpn-privacy#wiki_.25B7_encrypted_messengers)** * ↪️ **[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://www.virustotal.com/) 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
@ -766,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
@ -813,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)
@ -946,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

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 / הזרמה
@ -718,9 +719,8 @@
* ⭐ **[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 * [Tamil Blasters](https://www.1tamilblasters.yachts/) - Movies / TV / Sub / Dub / 1080p / 4K / Anime / Indian Languages
* [TamilMV](https://www.1tamilmv.vc/) - Movies / TV / Sub / Dub / 1080p / 4K / Anime / Indian Languages * [TamilMV](https://www.1tamilmv.vc/) - Movies / TV / Sub / Dub / 1080p / 4K / Anime / Indian Languages
* [Einthusan](https://einthusan.tv/) - Movies / 1080p * [Einthusan](https://einthusan.tv/) - Movies / 1080p
@ -823,7 +823,7 @@
## ▷ Streaming ## ▷ Streaming
* [StreamingCommunity](https://streamingcommunityz.chat/) - Movies / TV / 1080p / [Status](https://telegra.ph/Link-Aggiornato-StreamingCommunity-09-29) * [StreamingCommunity](https://streamingcommunityz.bid/) - Movies / TV / 1080p / [Status](https://telegra.ph/Link-Aggiornato-StreamingCommunity-09-29)
* [Altadefinizione](https://altadefinizionegratis.gold/) - Movies / Dub / 1080p / [Status](https://telegra.ph/Link-Aggiornato-Altadefinizione-08-07) / [Telegram](https://t.me/+x_9jyFBbYBpkYTRi) * [Altadefinizione](https://altadefinizionegratis.gold/) - Movies / Dub / 1080p / [Status](https://telegra.ph/Link-Aggiornato-Altadefinizione-08-07) / [Telegram](https://t.me/+x_9jyFBbYBpkYTRi)
* [CB01](https://cb01net.guru/), [2](https://cb01.uno) - Movies / TV / Dub / 1080p / [Status](https://cineblog01.red/) / [Telegram](https://t.me/s/cb01_nuovo_indirizzo_ufficiale) * [CB01](https://cb01net.guru/), [2](https://cb01.uno) - Movies / TV / Dub / 1080p / [Status](https://cineblog01.red/) / [Telegram](https://t.me/s/cb01_nuovo_indirizzo_ufficiale)
* [CasaCinema](https://casacinema.lat/) - Movies / TV / Anime / Sub / Dub / 1080p * [CasaCinema](https://casacinema.lat/) - Movies / TV / Anime / Sub / Dub / 1080p
@ -1299,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
@ -1443,7 +1443,6 @@
## ▷ Streaming ## ▷ Streaming
* [Kukaj](https://vvv.kukaj.fi/) - Movies / TV
* [jOj Archive](https://www.joj.sk/archiv) - Movies / TV * [jOj Archive](https://www.joj.sk/archiv) - Movies / TV
* [Markiza](https://www.markiza.sk/) - Movies / TV * [Markiza](https://www.markiza.sk/) - Movies / TV
* [rtvs](https://www.rtvs.sk/televizia/archiv) - TV * [rtvs](https://www.rtvs.sk/televizia/archiv) - TV
@ -1521,7 +1520,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
@ -1763,50 +1762,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
## ▷ Torrenting / Tải tệp bằng torrent
* [NetHD](https://nethd.org/) - Video / Audio / Sign-Up Required
## ▷ Downloading / Tải xuống ## ▷ Downloading / Tải xuống
* [NhạcHayVN](https://nhachayvn.net/) - Music * [NhạcHayVN](https://nhachayvn.net/) - Music
## ▷ Torrenting / Tải tệp bằng torrent
* [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)
* [Phimmoi](https://vuaphimmoi.net/) - Movies / TV / Anime / Sub / Dub / 720p * [Phimmoi](https://vuaphimmoi.net/) - Movies / TV / Anime / Sub / Dub / 1080p
* [Danet](https://danet.vn/) - Movies / TV / Anime / Live TV / Sub / 720p * [kkphim](https://kkphim.com/) - Movies / TV / Anime / Sub / Dub / 1080p
* [XemPhim](https://xemphim.app/) - Movies / TV / Sub / 720p * [NguonC](https://phim.nguonc.com/) - Movies / TV / Anime / Sub / Dub / 1080p
* [kkphim](https://kkphim.com/), [2](https://phim.nguonc.com/), [3](https://ophim.movie/) / Movies / TV / Anime / [Ad Script](https://github.com/Hth4nh/PureMovies) * [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 * [TVMienPhi](https://tvmienphi.org/), [2](https://tv.tvhayhd.org/) - Live TV / 1080p
* [TVHayHD](https://tv.tvhayhd.org/) - Live TV / 720p * [XemPhim](https://xemphim.app/) - Movies / TV / Sub / 720p
* [6SVN](https://xem.6svn.com/) - Live TV * [TokuVN](https://tokuvn.com/) - Tokusatsu / Sub / 480p
## ▷ Free w/ Ads / Miễn phí với quảng cáo ## ▷ Free w/ Ads / Miễn phí với quảng cáo
* ⭐ **[VTVGo](https://vtvgo.vn/)** - Live TV
* ⭐ **[ZingMP3](https://zingmp3.vn/)** or [NhacCuaTui](https://www.nhaccuatui.com/) - Music * ⭐ **[ZingMP3](https://zingmp3.vn/)** or [NhacCuaTui](https://www.nhaccuatui.com/) - Music
* [HPlus](https://hplus.com.vn/), [2](https://htvc.com.vn/) - Live TV / TV / 1080p * [FPT Play](https://fptplay.vn/) - Live TV / Movies / TV / Anime / Cartoon / Sub / Dub / 1080p
* [FPT Play](https://fptplay.vn/) - Live TV / Movies / TV / Anime / Cartoon * [THVL](https://www.thvli.vn/) - Live TV / Movies / TV / Music / Dub / 1080p
* [VieON](https://vieon.vn/) - Live TV / Movies / TV / Anime / Cartoon / Sub / Dub / 1080p * [TV360](https://tv360.vn/) - Live TV / Movies / TV / Sub / Dub / 1080p
* [THVL](https://www.thvli.vn/) - Live TV / Movies / TV / Dub * [VieON](https://vieon.vn/) - Live TV / Movies / TV / Anime / Cartoon / Sub / Dub / 720p
* [TV360](https://tv360.vn/) - Live TV / Sub / 1080p * [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 / Sign-Up Required
## ▷ 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
@ -1815,7 +1814,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 on the site below:
# https://fightchatcontrol.eu/
There is also a change.org petition [here](https://stopchatcontrol.eu/) if you'd like to sign it.
Discussion: https://redd.it/1n840p9

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.
@ -62,10 +62,10 @@ in seeing all minor changes you can follow our
- 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 /
@ -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](/video/#multi-server), - Renamed Multi Hosts to [Multi Server](/video/#multi-server),
Dedicated Hosts to [Single Server](/video/#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,7 +45,7 @@ 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](/video/#multi-server) in Streaming Sites. - Starred [SmashyStream](/video/#multi-server) in Streaming Sites.
@ -54,12 +54,12 @@ in seeing all minor changes you can follow our
- 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](/video/#live-tv--sports) in Live Sports. A - Starred [FreeSports](/video/#live-tv--sports) in Live Sports. A

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
@ -85,29 +85,29 @@ in seeing all minor changes you can follow our
- Starred [FullReplays](https://fmhy.net/video#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

View file

@ -22,37 +22,37 @@ 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/video#classics-public-domain) + [Film Archive](https://fmhy.net/video#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.
@ -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/video#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.
@ -64,16 +64,16 @@ in seeing all minor changes you can follow our
- Starred [watch.lonelil](/video#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,10 +88,10 @@ 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](/video#smart-tv-firestick) in Smart TV / - Starred [SmartTube](/video#smart-tv-firestick) in Smart TV /

View file

@ -23,11 +23,11 @@ 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)
@ -35,7 +35,7 @@ in seeing all minor changes you can follow our
- Split [Smart TV](https://fmhy.net/video#smart-tv-firestick) and [Android TV](https://fmhy.net/video#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/video#single-server) and [Free w/ Ads](https://fmhy.net/video#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.
@ -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/video#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

@ -29,22 +29,22 @@ in seeing all minor changes you can follow our
[streaming section.](/video) [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,7 +80,7 @@ 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](/video#multi-server) in Streaming Sites. Nice - Starred [PrimeFlix](/video#multi-server) in Streaming Sites. Nice
@ -95,13 +95,13 @@ in seeing all minor changes you can follow our
- 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).
@ -47,19 +47,19 @@ in seeing all minor changes you can follow our
- Starred [TV Garden](https://fmhy.net/video#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,24 +47,24 @@ 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.
--- ---
@ -74,7 +74,7 @@ FMHY. Here's to another year of growth and success! 💙
- Starred [Braflix](/video#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](/video/#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.
@ -49,25 +49,25 @@ in seeing all minor changes you can follow our
- Starred [UHDMovies](/video/#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

@ -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.
@ -77,12 +77,12 @@ see most.
[Downloads](https://fmhy.net/video#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,21 +27,21 @@ 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/video#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.
*** ***
@ -53,31 +53,31 @@ in seeing all minor changes you can follow our
- 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,7 +19,7 @@ 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
@ -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/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 [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.
--- ---
@ -48,9 +48,9 @@ in seeing all minor changes you can follow our
- Starred [Footballia](https://fmhy.net/video#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.)
@ -74,7 +74,7 @@ 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/video#live-tv-sports) in - Starred [MrGamingStreams](https://fmhy.net/video#live-tv-sports) in

View file

@ -28,24 +28,24 @@ 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](/video/#dedicated-hosts) in Streaming - Starred [Streaminal-TV](/video/#dedicated-hosts) in Streaming
@ -54,7 +54,7 @@ in seeing all minor changes you can follow our
- Starred [TokyoInsider](/video/#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](/video/#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.
--- ---
@ -76,7 +76,7 @@ in seeing all minor changes you can follow our
- Starred [Nunflix](https://fmhy.net/video#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/video#helpful-sites-tools) in - Starred [FastStream](https://fmhy.net/video#helpful-sites-tools) in
@ -86,16 +86,16 @@ in seeing all minor changes you can follow our
- 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).
@ -42,11 +42,11 @@ in seeing all minor changes you can follow our
- 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 & 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.
@ -58,23 +58,23 @@ in seeing all minor changes you can follow our
- Starred both [111477 + DramaSuki](https://fmhy.net/video#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.

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,7 +39,7 @@ 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
@ -49,7 +49,7 @@ in seeing all minor changes you can follow our
[Video Drives](/video/#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](/video/#live-tv--sports) in Live TV. Fast - Starred [Time4TV](/video/#live-tv--sports) in Live TV. Fast
@ -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

@ -38,13 +38,13 @@ in seeing all minor changes you can follow our
- Starred [Miruro](https://fmhy.net/video#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.

View file

@ -20,15 +20,15 @@ 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](/video/#anime-streaming) as they've - Replaced 9anime with [AniWave](/video/#anime-streaming) as they've
@ -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](/video/#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/video#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,13 +62,13 @@ 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.

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
@ -48,7 +48,7 @@
* ↪️ **[DNS Filters / Blocklists](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_dns_filters)** * ↪️ **[DNS Filters / Blocklists](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_dns_filters)**
* ↪️ **[Free DNS Resolvers](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_free_dns_resolvers)** * ↪️ **[Free DNS Resolvers](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_free_dns_resolvers)**
* ⭐ **[Pi-Hole](https://pi-hole.net/)** - Self-Hosted DNS Adblocking / [X](https://x.com/The_Pi_Hole) / [Subreddit](https://reddit.com/r/pihole/) / [GitHub](https://github.com/pi-hole) * ⭐ **[Pi-Hole](https://pi-hole.net/)** - Self-Hosted DNS Adblocking / [X](https://x.com/The_Pi_Hole) / [Subreddit](https://reddit.com/r/pihole/) / [GitHub](https://github.com/pi-hole)
* ⭐ **Pi-Hole Tools** - [Filters](https://firebog.net/) / [Anti-Telemetry](https://github.com/MoralCode/pihole-antitelemetry) / [Tray App](https://github.com/PinchToDebug/Pihole-Tray/) * ⭐ **Pi-Hole Tools** - [Filters](https://firebog.net/) / [Tray App](https://github.com/PinchToDebug/Pihole-Tray/)
* ⭐ **[AdGuard Home](https://adguard.com/en/adguard-home/overview.html)** - Self-Hosted DNS Adblocking / [Balena-Adguard](https://github.com/klutchell/balena-adguard) / [X](https://x.com/adguard) / [Subreddit](https://reddit.com/r/Adguard) / [Telegram](https://t.me/adguarden) / [GitHub](https://github.com/AdguardTeam/AdGuardHome) * ⭐ **[AdGuard Home](https://adguard.com/en/adguard-home/overview.html)** - Self-Hosted DNS Adblocking / [Balena-Adguard](https://github.com/klutchell/balena-adguard) / [X](https://x.com/adguard) / [Subreddit](https://reddit.com/r/Adguard) / [Telegram](https://t.me/adguarden) / [GitHub](https://github.com/AdguardTeam/AdGuardHome)
* ⭐ **[Mullvad DNS](https://mullvad.net/en/help/dns-over-https-and-dns-over-tls/)** - DNS Adblocking / Filtering / [Extension](https://mullvad.net/en/download/browser/extension) / [GitHub](https://github.com/mullvad) * ⭐ **[Mullvad DNS](https://mullvad.net/en/help/dns-over-https-and-dns-over-tls/)** - DNS Adblocking / Filtering / [Extension](https://mullvad.net/en/download/browser/extension) / [GitHub](https://github.com/mullvad)
* [YogaDNS](https://yogadns.com/) - Custom DNS Client for Windows * [YogaDNS](https://yogadns.com/) - Custom DNS Client for Windows
@ -270,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)
@ -309,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
@ -343,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)
@ -380,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
@ -410,7 +407,7 @@
* [Proxifier](https://www.proxifier.com/) - Add Proxy Functionality to Apps / [Keys](https://rentry.co/FMHYBase64#proxifier-keys) * [Proxifier](https://www.proxifier.com/) - Add Proxy Functionality to Apps / [Keys](https://rentry.co/FMHYBase64#proxifier-keys)
* [wireproxy](https://github.com/whyvl/wireproxy) - WireGuard as Proxy * [wireproxy](https://github.com/whyvl/wireproxy) - WireGuard as Proxy
* [Hiddify](https://hiddify.com/) - V2Ray / Shadowsocks / Wireguard / SSH Client / [Telegram](https://t.me/hiddify) / [GitHub](https://github.com/hiddify) * [Hiddify](https://hiddify.com/) - V2Ray / Shadowsocks / Wireguard / SSH Client / [Telegram](https://t.me/hiddify) / [GitHub](https://github.com/hiddify)
* [Ultraviolet](https://docs.titaniumnetwork.org/proxies/ultraviolet) / [GitHub](https://github.com/titaniumnetwork-dev/Ultraviolet) or [Nebula](https://github.com/NebulaServices/Nebula) - Open Source Web Proxy * [Ultraviolet](https://docs.titaniumnetwork.org/proxies/scramjet/) / [GitHub](https://github.com/MercuryWorkshop/scramjet/) or [Nebula](https://github.com/NebulaServices/Nebula) - Open Source Web Proxy
* [Nginx Proxy Manager](https://nginxproxymanager.com) - Self-Hosted Reverse Proxy UI / [Subreddit](https://reddit.com/r/nginxproxymanager) / [GitHub](https://github.com/NginxProxyManager/nginx-proxy-manager) * [Nginx Proxy Manager](https://nginxproxymanager.com) - Self-Hosted Reverse Proxy UI / [Subreddit](https://reddit.com/r/nginxproxymanager) / [GitHub](https://github.com/NginxProxyManager/nginx-proxy-manager)
* [Titanium Network](https://titaniumnetwork.org/services/) - Proxy Developer / [Instances](https://discord.gg/unblock) / [GitHub](https://github.com/titaniumnetwork-dev) * [Titanium Network](https://titaniumnetwork.org/services/) - Proxy Developer / [Instances](https://discord.gg/unblock) / [GitHub](https://github.com/titaniumnetwork-dev)

View file

@ -17,6 +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)
* [eBookoz](https://ebookoz.net/) - Books
* [WeLib](https://welib.org/) - Anna's Archive Mirror / [Unofficial](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#welib-note) * [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
@ -177,7 +178,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
@ -303,7 +303,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
@ -441,7 +441,7 @@
* [MP4DIRECTS](https://mp4directs.com/) - Manga / Light Novels Download Forum * [MP4DIRECTS](https://mp4directs.com/) - Manga / Light Novels Download Forum
* [MangaUpdates](https://www.mangaupdates.com/) - Manga Database / Releases Updates * [MangaUpdates](https://www.mangaupdates.com/) - Manga Database / Releases Updates
* [Manga CSE](https://cse.google.com/cse?cx=006516753008110874046:4im0fkhej3z) / [CSE 2](https://cse.google.com/cse?cx=006516753008110874046:a5mavctjnsc#gsc.tab=0) - Multi-Site Manga Search * [Manga CSE](https://cse.google.com/cse?cx=006516753008110874046:4im0fkhej3z) / [CSE 2](https://cse.google.com/cse?cx=006516753008110874046:a5mavctjnsc#gsc.tab=0) - Multi-Site Manga Search
* [Seanime](https://seanime.rahim.app/) - Self-Hosted Manga App * [Seanime](https://seanime.app/) - Self-Hosted Manga App
* [Kaizoku](https://github.com/lucy-goblin/kaizoku-next) - Self-Hosted Manga Downloader * [Kaizoku](https://github.com/lucy-goblin/kaizoku-next) - Self-Hosted Manga Downloader
* [Webcomic Reader](https://openuserjs.org/scripts/anka-213/Webcomic_Reader) - Preloads Images, Remembers Progress and Keyboard Support * [Webcomic Reader](https://openuserjs.org/scripts/anka-213/Webcomic_Reader) - Preloads Images, Remembers Progress and Keyboard Support
* [BallonsTranslator](https://github.com/dmMaze/BallonsTranslator/blob/master/README_EN.md), [Cotrans](https://cotrans.touhou.ai/) or [Scanlate](https://scanlate.io/) - Manga Translators * [BallonsTranslator](https://github.com/dmMaze/BallonsTranslator/blob/master/README_EN.md), [Cotrans](https://cotrans.touhou.ai/) or [Scanlate](https://scanlate.io/) - Manga Translators
@ -564,6 +564,8 @@
* 🌐 **[IvyPanda](https://ivypanda.com/blog/1000-open-textbooks-and-learning-resources-for-all-subjects/)** - Educational Book Site Index * 🌐 **[IvyPanda](https://ivypanda.com/blog/1000-open-textbooks-and-learning-resources-for-all-subjects/)** - Educational Book Site Index
* ↪️ **[Language Learning Resources](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/edu/#wiki_.25BA_language_learning)** * ↪️ **[Language Learning Resources](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/edu/#wiki_.25BA_language_learning)**
* ↪️ **[Dictionaries / Thesaurus'](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/edu#wiki_.25B7_dictionaries_.2F_thesaurus)**
* ↪️ **[Encyclopedias](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/edu#wiki_.25B7_encyclopedias)**
* ⭐ **[Openstax](https://openstax.org/)** or [OpenStax College Textbooks](https://philschatz.com/books/) * ⭐ **[Openstax](https://openstax.org/)** or [OpenStax College Textbooks](https://philschatz.com/books/)
* ⭐ **[AcademicTorrents](https://academictorrents.com/)** * ⭐ **[AcademicTorrents](https://academictorrents.com/)**
* [Institutional Access](https://www.facebook.com/groups/850609558335839) - Request Institutional Access PDFs * [Institutional Access](https://www.facebook.com/groups/850609558335839) - Request Institutional Access PDFs
@ -615,6 +617,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
@ -872,10 +875,6 @@
*** ***
## ▷ [Reference Sites](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/edu#wiki_.25B7_reference_sites)
***
# ► Tracking / Database # ► Tracking / Database
* ⭐ **[GoodReads](https://www.goodreads.com/)** - Ratings / Tracking / Reviews / Recommendations / [Ratings Filter](https://www.book-filter.com/) / [Frontend](https://github.com/nesaku/BiblioReads) * ⭐ **[GoodReads](https://www.goodreads.com/)** - Ratings / Tracking / Reviews / Recommendations / [Ratings Filter](https://www.book-filter.com/) / [Frontend](https://github.com/nesaku/BiblioReads)
@ -891,7 +890,7 @@
* [Oku](https://oku.club/) - Book Tracking Platform * [Oku](https://oku.club/) - Book Tracking Platform
* [Literal](https://literal.club/) - Social Book Tracking Platform * [Literal](https://literal.club/) - Social Book Tracking Platform
* [BookWyrm](https://joinbookwyrm.com/) - Book Tracking Platform / [Official Instance](https://bookwyrm.social/) * [BookWyrm](https://joinbookwyrm.com/) - Book Tracking Platform / [Official Instance](https://bookwyrm.social/)
* [MangaBaka](https://mangabaka.dev/) - Multi-Site Manga / Novel Database / [Discord](https://discord.com/invite/XYtPtMkbKs) * [MangaBaka](https://mangabaka.dev/) - Multi-Site Manga / Novel Database / [Discord](https://mangabaka.dev/discord)
* [MangaUpdates](https://www.mangaupdates.com/) - Manga Tracking * [MangaUpdates](https://www.mangaupdates.com/) - Manga Tracking
* [Hardcover](https://hardcover.app/) - Tracking / Reviews / Recommendations * [Hardcover](https://hardcover.app/) - Tracking / Reviews / Recommendations
* [LibraryThing](https://www.librarything.com/) - Book Cataloguing Community * [LibraryThing](https://www.librarything.com/) - Book Cataloguing Community

View file

@ -52,7 +52,6 @@
* [Discord-Api](https://discord.gg/discord-api) - Discord API Chat * [Discord-Api](https://discord.gg/discord-api) - Discord API Chat
* [Discord-Datamining](https://github.com/Discord-Datamining/Discord-Datamining) - Discord Datamining via JS Files * [Discord-Datamining](https://github.com/Discord-Datamining/Discord-Datamining) - Discord Datamining via JS Files
* [Discord TTS Bot](https://docs.moonstar-x.dev/discord-tts-bot/) - Text to Speech for Discord * [Discord TTS Bot](https://docs.moonstar-x.dev/discord-tts-bot/) - Text to Speech for Discord
* [Koutube](https://github.com/iGerman00/koutube) - Improved YouTube / Invidious Video Embedder
* [Embed Visualizer](https://embed.discord.website/) or [EB](https://eb.nadeko.bot/) - Preview Embeds * [Embed Visualizer](https://embed.discord.website/) or [EB](https://eb.nadeko.bot/) - Preview Embeds
* [BetterTwitFix](https://github.com/dylanpdx/BetterTwitFix) - Fix X.com / Telegram Embeds * [BetterTwitFix](https://github.com/dylanpdx/BetterTwitFix) - Fix X.com / Telegram Embeds
* [Discord Packages](https://github.com/peterhanania/discord-package) - View Discord Packages / Self Host for Privacy / [Discord](https://discordpackage.com/discord) * [Discord Packages](https://github.com/peterhanania/discord-package) - View Discord Packages / Self Host for Privacy / [Discord](https://discordpackage.com/discord)
@ -197,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
@ -314,6 +312,7 @@
* [Youtube-shorts block](https://github.com/doma-itachi/Youtube-shorts-block) or [Shorts Deflector](https://evenevan.github.io/shorts-deflector/) / [GitHub](https://github.com/evenevan/shorts-deflector) - Play Shorts In The Normal Desktop Interface * [Youtube-shorts block](https://github.com/doma-itachi/Youtube-shorts-block) or [Shorts Deflector](https://evenevan.github.io/shorts-deflector/) / [GitHub](https://github.com/evenevan/shorts-deflector) - Play Shorts In The Normal Desktop Interface
* [Remove YouTube Shorts](https://addons.mozilla.org/en-US/firefox/addon/remove-youtube-shorts/) or [Hide YT Shorts Filter List](https://github.com/gijsdev/ublock-hide-yt-shorts) - Hide YouTube Shorts * [Remove YouTube Shorts](https://addons.mozilla.org/en-US/firefox/addon/remove-youtube-shorts/) or [Hide YT Shorts Filter List](https://github.com/gijsdev/ublock-hide-yt-shorts) - Hide YouTube Shorts
* [YouTube Wrapped](https://videorecap.viewodyssey.com/) - Personal YouTube Rewind * [YouTube Wrapped](https://videorecap.viewodyssey.com/) - Personal YouTube Rewind
* [LocalTube Manager](https://localtubemanager.pages.dev/) - Subcribe, Like Videos, Make Playlists without Account / [GitHub](https://github.com/abhishekY495/localtube-manager)
* [YouTube-Subscriptions-RSS](https://github.com/jeb5/YouTube-Subscriptions-RSS) - Export Subscriptions to RSS Feed * [YouTube-Subscriptions-RSS](https://github.com/jeb5/YouTube-Subscriptions-RSS) - Export Subscriptions to RSS Feed
* [YouTube Subscription History](https://xxluke.de/subscription-history/) - Subscription History Tracker * [YouTube Subscription History](https://xxluke.de/subscription-history/) - Subscription History Tracker
* [MassYoutubeUnsubscriber](https://github.com/DomHeadroom/MassYoutubeUnsubscriber) - Bulk Remove YouTube Subscriptions * [MassYoutubeUnsubscriber](https://github.com/DomHeadroom/MassYoutubeUnsubscriber) - Bulk Remove YouTube Subscriptions
@ -360,7 +359,7 @@
* ↪️ **[Android](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/android#wiki_.25B7_android_youtube_apps)** / **[iOS](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/android#wiki_.25B7_ios_youtube_apps)** - Mobile YouTube Apps * ↪️ **[Android](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/android#wiki_.25B7_android_youtube_apps)** / **[iOS](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/android#wiki_.25B7_ios_youtube_apps)** - Mobile YouTube Apps
* ⭐ **[FreeTube](https://freetubeapp.io/)** - Local YouTube Frontend / [GitHub](https://github.com/FreeTubeApp/FreeTube) * ⭐ **[FreeTube](https://freetubeapp.io/)** - Local YouTube Frontend / [GitHub](https://github.com/FreeTubeApp/FreeTube)
* ⭐ **[Invidious](https://invidious.io/)**, [Invuedious](https://github.com/bocchilorenzo/invuedious) or [Materialio](https://materialio.us/) - YouTube Frontends / [Instances](https://api.invidious.io/), [2](https://redirect.invidious.io/) / [TUI](https://github.com/darkhz/invidtui) / [Discord Embed](https://github.com/iGerman00/koutube) * ⭐ **[Invidious](https://invidious.io/)**, [Invuedious](https://github.com/bocchilorenzo/invuedious) or [Materialio](https://materialio.us/) - YouTube Frontends / [Instances](https://api.invidious.io/), [2](https://redirect.invidious.io/) / [TUI](https://github.com/darkhz/invidtui)
* ⭐ **[GrayJay](https://grayjay.app/desktop/)** - Combines YouTube, Twitch, Rumble, etc. / [Guide](https://youtu.be/EnZrv37u66c) * ⭐ **[GrayJay](https://grayjay.app/desktop/)** - Combines YouTube, Twitch, Rumble, etc. / [Guide](https://youtu.be/EnZrv37u66c)
* [YouTube Notes](https://instadeq.com/youtube-notes/) - YouTube Note-Taking Frontend * [YouTube Notes](https://instadeq.com/youtube-notes/) - YouTube Note-Taking Frontend
* [Walrus](https://joinwalrus.tv/), [Sync-Tube](https://sync-tube.de/), [YouTube Party](https://youtubeparty.netlify.app/) or [Hergetto](https://hergetto.live/) - YouTube Watch Parties * [Walrus](https://joinwalrus.tv/), [Sync-Tube](https://sync-tube.de/), [YouTube Party](https://youtubeparty.netlify.app/) or [Hergetto](https://hergetto.live/) - YouTube Watch Parties
@ -385,7 +384,7 @@
* [YouTube Upload Time](https://chromewebstore.google.com/detail/youtube-upload-time/nenoecmaibjcahoahnmeinahlapheblg) - Check Exact Upload Time/Date of Videos * [YouTube Upload Time](https://chromewebstore.google.com/detail/youtube-upload-time/nenoecmaibjcahoahnmeinahlapheblg) - Check Exact Upload Time/Date of Videos
* [Annotations Data Archive](https://archive.org/details/youtubeannotations) - Restore Video Annotations * [Annotations Data Archive](https://archive.org/details/youtubeannotations) - Restore Video Annotations
* [YouTube Metadata](https://mattw.io/youtube-metadata/) - YouTube Video Metadata Viewer * [YouTube Metadata](https://mattw.io/youtube-metadata/) - YouTube Video Metadata Viewer
* [YT Cutter](https://ytcutter.link/) or [yt_clipper](https://github.com/exwm/yt_clipper) - Crop YouTube Videos / Create Clips * [yt_clipper](https://github.com/exwm/yt_clipper) - Crop YouTube Videos / Create Clips
* [Looptube](https://www.looptube.xyz/) - Loop YouTube Videos / Segments * [Looptube](https://www.looptube.xyz/) - Loop YouTube Videos / Segments
* [YourCodecs](https://github.com/undecV/YourCodecs) - Enable / Disable Player Codecs * [YourCodecs](https://github.com/undecV/YourCodecs) - Enable / Disable Player Codecs
* [Video Speed Controller](https://github.com/igrigorik/videospeed) - Control Speed of YouTube Videos * [Video Speed Controller](https://github.com/igrigorik/videospeed) - Control Speed of YouTube Videos
@ -562,7 +561,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

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)
*** ***
@ -224,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)**
@ -300,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
@ -391,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/)**
@ -416,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,6 +39,7 @@
## ▷ 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/)** - Tweaked 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) - Tweaked Volume Mixer * ⭐ **[EarTrumpet](https://eartrumpet.app/)**, [Volumey](https://github.com/G-Stas/Volumey) or [Volume2](https://github.com/irzyxa/Volume2) - Tweaked Volume Mixer
@ -53,7 +54,6 @@
* [Shell](https://nilesoft.org/) / [GitHub](https://github.com/moudey/shell) or [RCWM](https://github.com/GChuf/RCWM) - Tweaked / Custom Context Menus * [Shell](https://nilesoft.org/) / [GitHub](https://github.com/moudey/shell) or [RCWM](https://github.com/GChuf/RCWM) - Tweaked / Custom Context Menus
* [Explorer Tab Utility](https://github.com/w4po/ExplorerTabUtility) - Tweaked File Explorer * [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
* [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)
* [Spencer](https://www.the-sz.com/products/spencer/) - Classic Start Menu * [Spencer](https://www.the-sz.com/products/spencer/) - Classic Start Menu
* [Taskbar Tweaker](https://ramensoftware.com/7-taskbar-tweaker) - Taskbar Advanced Features / Win 10 * [Taskbar Tweaker](https://ramensoftware.com/7-taskbar-tweaker) - Taskbar Advanced Features / Win 10
* [AppGroup](https://github.com/iandiv/AppGroup) - Create Taskbar App Groups / Folders * [AppGroup](https://github.com/iandiv/AppGroup) - Create Taskbar App Groups / Folders
@ -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
*** ***
@ -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

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

View file

@ -49,6 +49,7 @@ To easily see which sites are trusted, and which are unsafe, try the **[FMHY Saf
* MainRepo / MRepo - Caught with [malware](https://rentry.co/zu3i6) / Note that Magisk Module MRepo is unrelated * MainRepo / MRepo - Caught with [malware](https://rentry.co/zu3i6) / Note that Magisk Module MRepo is unrelated
* YASDL - Uploaded versions of stardock / jetbrains with malware * YASDL - Uploaded versions of stardock / jetbrains with malware
* AllPCWorld - Uploaded KMS Matrix which is known malware * AllPCWorld - Uploaded KMS Matrix which is known malware
* P30Download - Uploaded version of malwarbytes with known [malware](https://www.virustotal.com/gui/file/01b3bf3f65832f1e9e59ee76964dcf01ac928e51588192607d43319ff070a719) / [2](https://tria.ge/250830-kx75yadp6z/behavioral1).
* RSLOAD - Uploaded the same version of malwarebytes that got FileCR in trouble / [utorrent malware](https://i.ibb.co/QXrCfqQ/Untitled.png) * RSLOAD - Uploaded the same version of malwarebytes that got FileCR in trouble / [utorrent malware](https://i.ibb.co/QXrCfqQ/Untitled.png)
* Taiwebs - Uploaded same version of [stardocks](https://pastebin.com/nPjVKYM9), [2](https://imgur.com/a/aeLoaTS) that got FileCR in trouble * Taiwebs - Uploaded same version of [stardocks](https://pastebin.com/nPjVKYM9), [2](https://imgur.com/a/aeLoaTS) that got FileCR in trouble
* Pesktop - Caught with [malware](https://tria.ge/250116-nwnxfszkdq), sources content from [FileCR](https://ibb.co/1KjkKVR), [2](https://imgur.com/a/VS4w6ag), has filecr logo under theirs on some apps. * Pesktop - Caught with [malware](https://tria.ge/250116-nwnxfszkdq), sources content from [FileCR](https://ibb.co/1KjkKVR), [2](https://imgur.com/a/VS4w6ag), has filecr logo under theirs on some apps.

View file

@ -166,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
*** ***
@ -272,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.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
@ -284,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
@ -380,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
@ -401,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)
@ -64,19 +63,15 @@
* [AlienFlix](https://alienflix.net/), [2](https://hexawatch.cc/) - Movies / TV / Anime * [AlienFlix](https://alienflix.net/), [2](https://hexawatch.cc/) - Movies / TV / Anime
* [Purplix](https://neoxa.transdev.pw/), [2](https://purplix.transdev.pw/), [3]( https://tv.starnode.host/) - Movies / TV / Anime / [Discord](https://discord.com/invite/PwMYXRpWBD) * [Purplix](https://neoxa.transdev.pw/), [2](https://purplix.transdev.pw/), [3]( https://tv.starnode.host/) - Movies / TV / Anime / [Discord](https://discord.com/invite/PwMYXRpWBD)
* [Wooflix](https://www.wooflixtv.co/) - Movies / TV / Anime * [Wooflix](https://www.wooflixtv.co/) - Movies / TV / Anime
* [Arabflix](https://www.arabiflix.com/) - Movies / TV / Anime / [Discord](https://discord.gg/AMQdQehThg)
* [KaitoVault](https://www.kaitovault.com/) - Movies / TV / Anime * [KaitoVault](https://www.kaitovault.com/) - Movies / TV / Anime
* [Yampi](https://yampi.live/) - Movies / TV / Anime * [Yampi](https://yampi.live/) - Movies / TV / Anime
* [M-Zone](https://www.m-zone.org/) - Movies / TV / Anime / [Discord](https://discord.com/invite/PFvCNcZCQC) * [M-Zone](https://www.m-zone.org/) - Movies / TV / Anime / [Discord](https://discord.com/invite/PFvCNcZCQC)
* [Lekuluent](https://lekuluent.et/) - Movies / TV / Anime
* [MoviePluto](https://moviepluto.fun/) - Movies / TV / Anime / [Discord](https://discord.com/invite/ynfvjgHrBd) * [MoviePluto](https://moviepluto.fun/) - Movies / TV / Anime / [Discord](https://discord.com/invite/ynfvjgHrBd)
* [Cinema Deck](https://cinemadeck.com/), [2](https://cinemadeck.st/) - Movies / TV / Anime / [Status](https://cinemadeck.com/official-domains) / [Discord](https://discord.com/invite/tkGPsX5NTT) * [Cinema Deck](https://cinemadeck.com/), [2](https://cinemadeck.st/) - Movies / TV / Anime / [Status](https://cinemadeck.com/official-domains) / [Discord](https://discord.com/invite/tkGPsX5NTT)
* [Flicker](https://flickermini.pages.dev/), [2](https://flickeraddon.pages.dev/) - Movies / TV / Anime / [Subreddit](https://www.reddit.com/r/flickermini/) * [Flicker](https://flickermini.pages.dev/), [2](https://flickeraddon.pages.dev/) - Movies / TV / Anime / [Subreddit](https://www.reddit.com/r/flickermini/)
* [Altair](https://altair.mollusk.top/) or [Nova](https://novastream.top/) - Movies / TV / [Discord](https://discord.gg/s9kUZw7CqP) / [GitHub](https://github.com/ambr0sial/nova/) * [Altair](https://altair.mollusk.top/) or [Nova](https://novastream.top/) - Movies / TV / [Discord](https://discord.gg/s9kUZw7CqP) / [GitHub](https://github.com/ambr0sial/nova/)
* [Autoembed](https://watch.autoembed.cc/) - Movies / TV / Anime / Drama / [Discord](https://discord.gg/BWDSXV9aX4) * [Autoembed](https://watch.autoembed.cc/) - Movies / TV / Anime / Drama / [Discord](https://discord.gg/BWDSXV9aX4)
* [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 +81,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 +106,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/)
@ -220,6 +216,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
@ -229,12 +226,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
@ -246,16 +242,17 @@
* [Crimson Subs](https://crimsonfansubs.com/) - Donghua / Sub / [Discord](https://discord.gg/PmYn97vtue) * [Crimson Subs](https://crimsonfansubs.com/) - Donghua / Sub / [Discord](https://discord.gg/PmYn97vtue)
* [Crunchyroll](https://www.crunchyroll.com/videos/anime) - Sub / Dub / Auto-Next / [US Proxy](https://addons.mozilla.org/en-US/firefox/addon/crunchy-unblocker/) / [Intro Skip](https://github.com/aniskip/aniskip-extension) * [Crunchyroll](https://www.crunchyroll.com/videos/anime) - Sub / Dub / Auto-Next / [US Proxy](https://addons.mozilla.org/en-US/firefox/addon/crunchy-unblocker/) / [Intro Skip](https://github.com/aniskip/aniskip-extension)
* [Miu](https://discord.gg/pwkuanXBJh) or [AnimeThemes](https://animethemes.moe/) / [Discord](https://discord.com/invite/m9zbVyQ) / [GitHub](https://github.com/AnimeThemes) - Anime Themes * [Miu](https://discord.gg/pwkuanXBJh) or [AnimeThemes](https://animethemes.moe/) / [Discord](https://discord.com/invite/m9zbVyQ) / [GitHub](https://github.com/AnimeThemes) - Anime Themes
* [Layendimator](https://github.com/Layendan/Layendanimator), [AnymeX](https://anymex.vercel.app/) / [Extension Guide](https://wotaku.wiki/guides/ext/mangayomi) / [GitHub](https://github.com/RyanYuuki/AnymeX), [Anikin](https://github.com/jerry08/Anikin) / [Discord](https://discord.com/invite/U7XweVubJN), [Unyo](https://github.com/K3vinb5/Unyo), [Seanime](https://seanime.rahim.app/) / [Discord](https://discord.gg/3AuhRGqUqh) / [GitHub](https://github.com/5rahim/seanime) or [Miru](https://miru.js.org/en/) / [Telegram](https://t.me/MiruChat) / [GitHub](https://github.com/miru-project/miru-app) - Desktop Streaming Apps * [Layendimator](https://github.com/Layendan/Layendanimator), [AnymeX](https://anymex.vercel.app/) / [Extension Guide](https://wotaku.wiki/guides/ext/mangayomi) / [GitHub](https://github.com/RyanYuuki/AnymeX), [Anikin](https://github.com/jerry08/Anikin) / [Discord](https://discord.com/invite/U7XweVubJN), [Unyo](https://github.com/K3vinb5/Unyo), [Seanime](https://seanime.app/) / [Discord](https://discord.gg/3AuhRGqUqh) / [GitHub](https://github.com/5rahim/seanime) or [Miru](https://miru.js.org/en/) / [Telegram](https://t.me/MiruChat) / [GitHub](https://github.com/miru-project/miru-app) - Desktop Streaming Apps
*** ***
## ▷ Cartoon Streaming ## ▷ 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
* [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
@ -374,7 +371,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
@ -416,10 +413,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/)**
@ -427,7 +425,7 @@
* ⭐ **[TimStreams](https://timstreams.xyz/)**, [2](https://timstreams.cfd/) - Live Events / [Status](https://timstreams.online/) / [Discord](https://discord.com/invite/p3aJ7rJGrz) * ⭐ **[TimStreams](https://timstreams.xyz/)**, [2](https://timstreams.cfd/) - Live Events / [Status](https://timstreams.online/) / [Discord](https://discord.com/invite/p3aJ7rJGrz)
* ⭐ **[WeAreChecking](https://wearechecking.online/)** - Live Events / Motorsports / [Discord](https://discord.com/invite/wearechecking) * ⭐ **[WeAreChecking](https://wearechecking.online/)** - Live Events / Motorsports / [Discord](https://discord.com/invite/wearechecking)
* [Sportsurge](https://v2.sportsurge.net/home5/) - Stream Aggregator * [Sportsurge](https://v2.sportsurge.net/home5/) - Stream Aggregator
* [TotalSportek.to](https://www.totalsportek.to/), [2](https://totalsportek.me/), [3](https://buffstreams.app/) - Stream Aggregator * [TotalSportek.to](https://totalsportek.me/), [2](https://buffstreams.app/) - Stream Aggregator
* [SportsLive](https://sportslive.me/) * [SportsLive](https://sportslive.me/)
* [CricHD.to](https://crichd.to/), [2](https://crichd.at/), [3](https://crichd.com.co/) * [CricHD.to](https://crichd.to/), [2](https://crichd.at/), [3](https://crichd.com.co/)
* [MrGamingStreams](http://mrgamingstreams.org/), [2](https://www.mrgbackup.link/) / [Discord](https://discord.gg/BCtqVn5JKR) * [MrGamingStreams](http://mrgamingstreams.org/), [2](https://www.mrgbackup.link/) / [Discord](https://discord.gg/BCtqVn5JKR)
@ -436,9 +434,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
@ -674,7 +671,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)**
@ -778,13 +774,14 @@
* ⭐ **[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/)** - Torrent Streaming App / [Discord](https://discord.com/invite/Z87Nh7c4Ac)
* [Seanime](https://seanime.app/) - Torrent Streaming App
* [Shiru](https://github.com/RockinChaos/Shiru) or [Migu](https://miguapp.pages.dev/) - Torrent Streaming Apps
* [AnimeTosho](https://animetosho.org/) - Sub / Dub * [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
@ -864,6 +861,7 @@
## ▷ Recommendation Tools ## ▷ Recommendation Tools
* [Nothing To Watch](https://nothing-to-watch.port80.ch/) - Interactive Movie Discovery Visualization / [GitHub](https://github.com/gnovotny/nothing-to-watch)
* [SuggestStream](https://suggestream.com/) - Movie / TV Recommendations * [SuggestStream](https://suggestream.com/) - Movie / TV Recommendations
* [BestSimilar](https://bestsimilar.com/) - Movie Recommendations * [BestSimilar](https://bestsimilar.com/) - Movie Recommendations
* [Taste.io](https://www.taste.io/) - Movie Recommendations * [Taste.io](https://www.taste.io/) - Movie Recommendations
@ -942,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/)