diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md
index 4948eb7eb..3244ed43b 100644
--- a/.github/CONTRIBUTING.md
+++ b/.github/CONTRIBUTING.md
@@ -17,11 +17,11 @@ Here you'll find some general guidelines for those who would like to start contr
**Don't submit any of the following:**
-- **💰️ Paid / Trial Sites** - We don't accept any paid or free trial only entries, with the exception of select paid [VPNs](/adblockvpnguide#vpn) and [Debrid](/downloadpiracyguide#leeches-debrid).
-- **🕹️ Emulators** - Already listed on [Index Sites](/gamingpiracyguide#emulators).
+- **💰️ Paid / Trial Sites** - We don't accept any paid or free trial only entries, with the exception of select paid [VPNs](/privacy#vpn) and [Debrid](/downloading#leeches-debrid).
+- **🕹️ Emulators** - Already listed on [Index Sites](/gaming#emulators).
- **🌐 Web Browsers** - Good open-source browsers are already listed, so we just accept [indexes](/internet-tools#browser-tools), privacy-focused, and good mobile ones.
-- **🔻 Leeches** - Unless it's not already listed on existing [Leech Lists](/downloadpiracyguide#leeches-debrid), don't submit these.
-- **🐧 Linux Distros** - Already listed on [Index Sites](/linuxguide#linux-distros).
+- **🔻 Leeches** - Unless it's not already listed on existing [Leech Lists](/downloading#leeches-debrid), don't submit these.
+- **🐧 Linux Distros** - Already listed on [Index Sites](/linux-macos#linux-distros).
- **🌍 Non-english Software** - We don't add non-english software sites (APKs, games, torrents, etc.) unless they have a very good reputation.
- **🗂️ Coding Libraries** - There's too many of them and there are better places to find them.
- **🎲 Mining / Betting Sites** - Don't submit anything related to betting, mining, BINs, CCs, etc.
@@ -119,6 +119,6 @@ This creates an environment in the browser [(with 60h/month free quota)](https:/
#### Local Instance
-Making changes on a local repository may require a basic understanding of Git. You can find learning resources [here](/edupiracyguide#developer-learning).
+Making changes on a local repository may require a basic understanding of Git. You can find learning resources [here](/educational#developer-learning).
More info on manual setup can be found [here](/other/selfhosting).
\ No newline at end of file
diff --git a/api/routes/single-page.ts b/api/routes/single-page.ts
index ebfe3fee6..bb137e700 100644
--- a/api/routes/single-page.ts
+++ b/api/routes/single-page.ts
@@ -15,29 +15,29 @@
*/
const files = (
[
- 'adblockvpnguide.md',
+ 'privacy.md',
'ai.md',
- 'android-iosguide.md',
- 'audiopiracyguide.md',
+ 'mobile.md',
+ 'audio.md',
'beginners-guide.md',
- 'devtools.md',
- 'downloadpiracyguide.md',
- 'edupiracyguide.md',
+ 'developer-tools.md',
+ 'downloading.md',
+ 'educational.md',
'file-tools.md',
'gaming-tools.md',
- 'gamingpiracyguide.md',
- 'img-tools.md',
+ 'gaming.md',
+ 'image-tools.md',
'internet-tools.md',
- 'linuxguide.md',
- 'miscguide.md',
+ 'linux-macos.md',
+ 'misc.md',
'non-english.md',
- 'readingpiracyguide.md',
+ 'reading.md',
'social-media-tools.md',
'storage.md',
'system-tools.md',
'text-tools.md',
- 'torrentpiracyguide.md',
- 'unsafesites.md',
+ 'torrenting.md',
+ 'unsafe.md',
'video-tools.md',
'video.md'
] as const
diff --git a/docs/.vitepress/constants.ts b/docs/.vitepress/constants.ts
index 259e064a1..aeff1fa72 100644
--- a/docs/.vitepress/constants.ts
+++ b/docs/.vitepress/constants.ts
@@ -197,7 +197,7 @@ export const sidebar: DefaultTheme.Sidebar | DefaultTheme.NavItemWithLink[] = [
items: [
{
text: ' Adblocking / Privacy',
- link: '/adblockvpnguide'
+ link: '/privacy'
},
{
text: ' Artificial Intelligence',
@@ -209,35 +209,35 @@ export const sidebar: DefaultTheme.Sidebar | DefaultTheme.NavItemWithLink[] = [
},
{
text: ' Music / Podcasts / Radio',
- link: '/audiopiracyguide'
+ link: '/audio'
},
{
text: ' Gaming / Emulation',
- link: '/gamingpiracyguide'
+ link: '/gaming'
},
{
text: ' Books / Comics / Manga',
- link: '/readingpiracyguide'
+ link: '/reading'
},
{
text: ' Downloading',
- link: '/downloadpiracyguide'
+ link: '/downloading'
},
{
text: ' Torrenting',
- link: '/torrentpiracyguide'
+ link: '/torrenting'
},
{
text: ' Educational',
- link: '/edupiracyguide'
+ link: '/educational'
},
{
text: ' Android / iOS',
- link: '/android-iosguide'
+ link: '/mobile'
},
{
text: ' Linux / macOS',
- link: '/linuxguide'
+ link: '/linux-macos'
},
{
text: ' Non-English',
@@ -245,7 +245,7 @@ export const sidebar: DefaultTheme.Sidebar | DefaultTheme.NavItemWithLink[] = [
},
{
text: ' Miscellaneous',
- link: '/miscguide'
+ link: '/misc'
}
]
},
@@ -279,7 +279,7 @@ export const sidebar: DefaultTheme.Sidebar | DefaultTheme.NavItemWithLink[] = [
},
{
text: ' Image Tools',
- link: '/img-tools'
+ link: '/image-tools'
},
{
text: ' Video Tools',
@@ -287,15 +287,15 @@ export const sidebar: DefaultTheme.Sidebar | DefaultTheme.NavItemWithLink[] = [
},
{
text: ' Audio Tools',
- link: '/audiopiracyguide#audio-tools'
+ link: '/audio#audio-tools'
},
{
text: ' Educational Tools',
- link: '/edupiracyguide#educational-tools'
+ link: '/educational#educational-tools'
},
{
text: ' Developer Tools',
- link: '/devtools'
+ link: '/developer-tools'
}
]
},
@@ -311,7 +311,7 @@ export const sidebar: DefaultTheme.Sidebar | DefaultTheme.NavItemWithLink[] = [
: {},
{
text: ' Unsafe Sites',
- link: '/unsafesites'
+ link: '/unsafe'
},
{
text: ' Storage',
diff --git a/docs/.vitepress/transformer.ts b/docs/.vitepress/transformer.ts
index e2a141610..f5e76f377 100644
--- a/docs/.vitepress/transformer.ts
+++ b/docs/.vitepress/transformer.ts
@@ -134,31 +134,31 @@ export function transform(text: string): string {
.replace(/https:\/\/www.reddit.com\/r\/FREEMEDIAHECKYEAH\/wiki\/ai/g, '/ai')
.replace(
/https:\/\/www.reddit.com\/r\/FREEMEDIAHECKYEAH\/wiki\/adblock-vpn-privacy/g,
- '/adblockvpnguide'
+ '/privacy'
)
.replace(
/https:\/\/www.reddit.com\/r\/FREEMEDIAHECKYEAH\/wiki\/android/g,
- '/android-iosguide'
+ '/mobile'
)
.replace(
/https:\/\/www.reddit.com\/r\/FREEMEDIAHECKYEAH\/wiki\/games/g,
- '/gamingpiracyguide'
+ '/gaming'
)
.replace(
/https:\/\/www.reddit.com\/r\/FREEMEDIAHECKYEAH\/wiki\/reading/g,
- '/readingpiracyguide'
+ '/reading'
)
.replace(
/https:\/\/www.reddit.com\/r\/FREEMEDIAHECKYEAH\/wiki\/download/g,
- '/downloadpiracyguide'
+ '/downloading'
)
.replace(
/https:\/\/www.reddit.com\/r\/FREEMEDIAHECKYEAH\/wiki\/torrent/g,
- '/torrentpiracyguide'
+ '/torrenting'
)
.replace(
/https:\/\/www.reddit.com\/r\/FREEMEDIAHECKYEAH\/wiki\/edu/g,
- '/edupiracyguide'
+ '/educational'
)
.replace(
/https:\/\/www.reddit.com\/r\/FREEMEDIAHECKYEAH\/wiki\/system-tools/g,
@@ -198,11 +198,11 @@ export function transform(text: string): string {
)
.replace(
/https:\/\/www.reddit.com\/r\/FREEMEDIAHECKYEAH\/wiki\/audio/g,
- '/audiopiracyguide'
+ '/audio'
)
.replace(
/https:\/\/www.reddit.com\/r\/FREEMEDIAHECKYEAH\/wiki\/linux/g,
- '/linuxguide'
+ '/linux-macos'
)
.replace(
/https:\/\/www.reddit.com\/r\/FREEMEDIAHECKYEAH\/wiki\/non-eng/g,
@@ -210,7 +210,7 @@ export function transform(text: string): string {
)
.replace(
/https:\/\/www.reddit.com\/r\/FREEMEDIAHECKYEAH\/wiki\/misc/g,
- '/miscguide'
+ '/misc'
)
.replace(
/https:\/\/www.reddit.com\/r\/FREEMEDIAHECKYEAH\/wiki\/storage/g,
@@ -218,11 +218,11 @@ export function transform(text: string): string {
)
.replace(
/https:\/\/www.reddit.com\/r\/FREEMEDIAHECKYEAH\/wiki\/dev-tools/g,
- '/devtools'
+ '/developer-tools'
)
.replace(
- /https:\/\/www.reddit.com\/r\/FREEMEDIAHECKYEAH\/wiki\/img-tools/g,
- '/img-tools'
+ /https:\/\/www.reddit.com\/r\/FREEMEDIAHECKYEAH\/wiki\/image-tools/g,
+ '/image-tools'
)
_text = replaceUnderscore(_text)
diff --git a/docs/.vitepress/transformer/constants.ts b/docs/.vitepress/transformer/constants.ts
index 70970811a..be96d350b 100644
--- a/docs/.vitepress/transformer/constants.ts
+++ b/docs/.vitepress/transformer/constants.ts
@@ -20,7 +20,7 @@ interface Header {
}
export const headers: Header = {
- 'adblockvpnguide.md': {
+ 'privacy.md': {
title: 'Adblocking / Privacy',
description: 'Adblocking, Privacy, VPNs, Proxies, Antiviruses'
},
@@ -28,11 +28,11 @@ export const headers: Header = {
title: 'Artificial Intelligence',
description: 'Chatbots, Text Generators, Image Generators, Chatbot Tools'
},
- 'android-iosguide.md': {
+ 'mobile.md': {
title: 'Android / iOS',
description: 'Apps, Jailbreaking, Android Emulators'
},
- 'audiopiracyguide.md': {
+ 'audio.md': {
title: 'Music / Podcasts / Radio',
description: 'Stream Audio, Download Audio, Torrent Audio'
},
@@ -40,23 +40,23 @@ export const headers: Header = {
title: 'Beginners Guide',
description: 'A Guide for Beginners to Piracy'
},
- 'downloadpiracyguide.md': {
+ 'downloading.md': {
title: 'Downloading',
description: 'Download Sites, Software Sites, Open Directories'
},
- 'edupiracyguide.md': {
+ 'educational.md': {
title: 'Educational',
description: 'Courses, Documentaries, Learning Resources'
},
- 'gamingpiracyguide.md': {
+ 'gaming.md': {
title: 'Gaming / Emulation',
description: 'Download Games, ROMs, Gaming Tools'
},
- 'linuxguide.md': {
+ 'linux-macos.md': {
title: 'Linux / macOS',
description: 'Apps, Software Sites, Gaming'
},
- 'miscguide.md': {
+ 'misc.md': {
title: 'Miscellaneous',
description: 'Extensions, Indexes, News, Health, Food, Fun'
},
@@ -68,7 +68,7 @@ export const headers: Header = {
title: 'Non-English',
description: 'International Piracy Sites'
},
- 'readingpiracyguide.md': {
+ 'reading.md': {
title: 'Books / Comics / Manga',
description: 'Books, Comics, Magazines, Newspapers'
},
@@ -76,11 +76,11 @@ export const headers: Header = {
title: 'Gaming Tools',
description: 'Gaming Optimization, Game Launchers, Multiplayer'
},
- 'devtools.md': {
+ 'developer-tools.md': {
title: 'Developer Tools',
description: 'Git, Hosting, App Dev, Software Dev'
},
- 'img-tools.md': {
+ 'image-tools.md': {
title: 'Image Tools',
description: 'Image Editors, Generators, Compress'
},
@@ -116,7 +116,7 @@ export const headers: Header = {
title: 'Storage',
description: 'Sections too big to fit on main pages'
},
- 'torrentpiracyguide.md': {
+ 'torrenting.md': {
title: 'Torrenting',
description: 'Torrent Clients, Torrent Sites, Trackers'
},
@@ -128,7 +128,7 @@ export const headers: Header = {
title: 'Base64',
description: 'Base64 storage'
},
- 'unsafesites.md': {
+ 'unsafe.md': {
title: 'Unsafe Sites',
description: 'Unsafe/harmful sites to avoid.'
}
diff --git a/docs/ai.md b/docs/ai.md
index 1e5a7f08c..aa6776414 100644
--- a/docs/ai.md
+++ b/docs/ai.md
@@ -367,7 +367,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)
***
diff --git a/docs/audiopiracyguide.md b/docs/audio.md
similarity index 100%
rename from docs/audiopiracyguide.md
rename to docs/audio.md
diff --git a/docs/beginners-guide.md b/docs/beginners-guide.md
index d8672e122..903484df6 100644
--- a/docs/beginners-guide.md
+++ b/docs/beginners-guide.md
@@ -162,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
* **[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
* **[FMHY.net](https://fmhy.net/)** - Our website with many more sites / tools
diff --git a/docs/devtools.md b/docs/developer-tools.md
similarity index 99%
rename from docs/devtools.md
rename to docs/developer-tools.md
index cd9a82093..9d8f0466f 100644
--- a/docs/devtools.md
+++ b/docs/developer-tools.md
@@ -102,7 +102,7 @@
## ▷ Online Toolkits
-* ⭐ **[AppDevTools](https://appdevtools.com/)**
+* ⭐ **[Appdeveloper-tools](https://appdeveloper-tools.com/)**
* [IT Tools](https://it-tools.tech/)
* [Web Toolbox](https://web-toolbox.dev/en)
* [devina](https://devina.io/)
@@ -150,7 +150,7 @@
* ⭐ **[Android Developer Roadmap](https://github.com/skydoves/android-developer-roadmap)**
* [App ideas](https://github.com/florinpop17/app-ideas) - Collection of App Ideas
* [IconKitchen](https://icon.kitchen/) or [AppIcon](https://appicon.co/) - App Icon Generator
-* [MobiDevTools](https://addons.mozilla.org/en-US/firefox/addon/mobidevtools/) or [ChromeXt](https://github.com/JingMatrix/ChromeXt) - Add Dev Tools / Inspect Element to Mobile Browsers
+* [Mobideveloper-tools](https://addons.mozilla.org/en-US/firefox/addon/mobideveloper-tools/) or [ChromeXt](https://github.com/JingMatrix/ChromeXt) - Add Dev Tools / Inspect Element to Mobile Browsers
* [namae](https://namae.dev/) - App Name Availability Check
* [XDGuru](https://www.xdguru.com/) - Adobe XD Resources
* [Media Kit](https://github.com/media-kit/media-kit) - Video / Audio Library for Flutter and Dart
@@ -432,8 +432,8 @@
## ▷ Asset Creation
-* ↪️ **[3D Models / Modeling Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/img-tools#wiki_.25B7_3d_models)**
-* ↪️ **[Design Tools / Resources](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/img-tools/)**
+* ↪️ **[3D Models / Modeling Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/image-tools#wiki_.25B7_3d_models)**
+* ↪️ **[Design Tools / Resources](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/image-tools/)**
* ↪️ **[Art Resources](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/edu/#wiki_.25B7_art_.2F_editing)**
* ↪️ **[Animation Resources](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/video-tools/#wiki_.25B7_animation_tools)**
* ↪️ **[Writing Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/text-tools/#wiki_.25B7_writing_tools)**
@@ -862,8 +862,8 @@
## ▷ Color Schemes
* 🌐 **[Colorful](https://github.com/Siddharth11/Colorful)** - Color Scheme Resources
-* ↪️ **[Color Palette Generators](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/img-tools#wiki_.25B7_palette_generators)**
-* ↪️ **[Color Pickers](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/img-tools#wiki_.25B7_color_pickers)**
+* ↪️ **[Color Palette Generators](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/image-tools#wiki_.25B7_palette_generators)**
+* ↪️ **[Color Pickers](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/image-tools#wiki_.25B7_color_pickers)**
* ⭐ **[ColorHexa](https://www.colorhexa.com/)** - Color Hex Encyclopedia
* ⭐ **[Realtime Colors](https://realtimecolors.com/)** - Preview Color Palettes
* ⭐ **[Color & Contrast](https://colorandcontrast.com/)** - Color / Contrast Guide
@@ -888,7 +888,7 @@
* 🌐 **[Awesome Design Systems](https://github.com/alexpate/awesome-design-systems)** - UI Design Systems / Libraries
* 🌐 **[Awesome Web Animation](https://awesome-web-animation.netlify.app/)** - Web Animation Resources
-* ↪️ **[Design Resources](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/img-tools#wiki_.25BA_design_resources)** or [Open Source Design](https://opensourcedesign.net/)
+* ↪️ **[Design Resources](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/image-tools#wiki_.25BA_design_resources)** or [Open Source Design](https://opensourcedesign.net/)
* ⭐ **[Design Checklist](https://www.checklist.design/)**, [Performance Checklist](https://github.com/thedaviddias/Front-End-Performance-Checklist) or [Front-End Checklist](https://frontendchecklist.io/) - Frontend Development Checklist
* ⭐ **[ThemeWagon](https://themewagon.com/theme-price/free/)** or [Tooplate](https://www.tooplate.com/) - Free HTML Templates
* ⭐ **[Boilerplate](https://html5boilerplate.com/)** or [html5up](https://html5up.net/) - Custom HTML Templates
@@ -1246,7 +1246,7 @@
* 🌐 **[Awesome Malware Analysis](https://github.com/rshipp/awesome-malware-analysis)** - Malware Analysis Resources
* ⭐ **[GHIDRA](https://ghidra-sre.org/)** - Reverse Engineering
* ⭐ **[x64dbg](https://x64dbg.com/)** - Debugger for Reverse Engineering
-* [LemmeDebug](https://greasyfork.org/en/scripts/537775) - Disable Anti-Devtools for Reverse Engineering / Debugging
+* [LemmeDebug](https://greasyfork.org/en/scripts/537775) - Disable Anti-developer-tools for Reverse Engineering / Debugging
* [Radare](https://www.radare.org/n/) - Free Reversing Toolkit / [Discord](https://discord.gg/YBey7CR9jf) / [GitHub](https://github.com/radareorg/radare2)
* [Rizin](https://rizin.re/) or [Cutter](https://cutter.re/) - Reverse Engineering Framework
* [Frida](https://frida.re/) - Reverse Engineering
diff --git a/docs/downloadpiracyguide.md b/docs/downloading.md
similarity index 100%
rename from docs/downloadpiracyguide.md
rename to docs/downloading.md
diff --git a/docs/edupiracyguide.md b/docs/educational.md
similarity index 99%
rename from docs/edupiracyguide.md
rename to docs/educational.md
index c27463aa1..97a94e743 100644
--- a/docs/edupiracyguide.md
+++ b/docs/educational.md
@@ -538,7 +538,7 @@
* 🌐 **[Awesome Electronics](https://github.com/kitspace/awesome-electronics)** - Electronic Engineering Resources
* 🌐 **[Engineering Blogs](https://github.com/kilimchoi/engineering-blogs)** - Engineering Blogs
* ↪️ **[Comp Sci Resources](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/edu/#wiki_.25B7_computer_science)**
-* ↪️ **[3D Modeling](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/img-tools#wiki_.25BA_3d_models) / [CAD Apps](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/img-tools#wiki_.25B7_cad_engineering)**
+* ↪️ **[3D Modeling](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/image-tools#wiki_.25BA_3d_models) / [CAD Apps](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/image-tools#wiki_.25B7_cad_engineering)**
* ⭐ **[r/AskEngineers](https://www.reddit.com/r/AskEngineers/)** / [Wiki](https://www.reddit.com/r/AskEngineers/wiki/), **[r/engineering](https://www.reddit.com/r/engineering/)** or [r/AutomotiveEngineering](https://www.reddit.com/r/AutomotiveEngineering/) - Engineering Subreddits
* ⭐ **[NPTEL](https://nptel.ac.in/courses)** or [Sabin](https://www.youtube.com/@SabinCivil) - Engineering Courses
* ⭐ **[KiCad](https://kicad.github.io/)** or [Horizon EDA](https://horizon-eda.org/) - Schematics Editor / PCB Creator / SPICE Integration
@@ -982,7 +982,7 @@
* [Git Tutorial](https://4geeksacademy.github.io/git-interactive-tutorial/) - Interactive Git Tutorial
* [Learn Git Branching](https://learngitbranching.js.org/) - Interactive Git Branching Guide
* [Git Time](https://git.bradwoods.io/) - Git Version Control System Learning Game
-* [DevToolTips](https://devtoolstips.org/) - Developer Tips
+* [DevToolTips](https://developer-toolstips.org/) - Developer Tips
* [Roadmap](https://roadmap.sh/) - Developer Roadmaps / [GitHub](https://github.com/kamranahmedse/developer-roadmap)
* [Checki0](https://checkio.org/) - Code Learning Games
* [Scrimba](https://scrimba.com/) - Interactive Programming Courses
diff --git a/docs/gaming-tools.md b/docs/gaming-tools.md
index cccc404de..44cd82435 100644
--- a/docs/gaming-tools.md
+++ b/docs/gaming-tools.md
@@ -7,7 +7,7 @@
# ► Gaming Tools
* ↪️ **[Download Managers](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/file-tools/#wiki_.25B7_download_managers)**
-* ↪️ **[Media Posters / Covers](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/img-tools#wiki_.25B7_media_covers_.2F_posters)**
+* ↪️ **[Media Posters / Covers](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/image-tools#wiki_.25B7_media_covers_.2F_posters)**
* ↪️ **[Game Soundtracks](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/audio#wiki_.25B7_game_soundtracks)**
* ⭐ **[PCGamingWiki](https://www.pcgamingwiki.com/)** - Game Fixes & Workarounds / [Discord](https://discord.gg/KDfrTZ8)
* ⭐ **[Library of Codexes](https://libraryofcodexes.com/)** - Game Codex Library
diff --git a/docs/gamingpiracyguide.md b/docs/gaming.md
similarity index 100%
rename from docs/gamingpiracyguide.md
rename to docs/gaming.md
diff --git a/docs/img-tools.md b/docs/image-tools.md
similarity index 99%
rename from docs/img-tools.md
rename to docs/image-tools.md
index b52df952b..8ce836523 100644
--- a/docs/img-tools.md
+++ b/docs/image-tools.md
@@ -796,7 +796,7 @@
## ▷ Screenshot Tools
-* ⭐ **[ShareX](https://getsharex.com/)** - Screenshot & Screen Recorder Tool / [Image Hosts](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/img-tools/#wiki_.25B7_image_hosts) / [File Manager](https://xbackbone.app/) / [Discord](https://discord.com/invite/ShareX) / [GitHub](https://github.com/ShareX/ShareX)
+* ⭐ **[ShareX](https://getsharex.com/)** - Screenshot & Screen Recorder Tool / [Image Hosts](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/image-tools/#wiki_.25B7_image_hosts) / [File Manager](https://xbackbone.app/) / [Discord](https://discord.com/invite/ShareX) / [GitHub](https://github.com/ShareX/ShareX)
* ⭐ **[Flameshot](https://flameshot.org/)** / [GitHub](https://github.com/flameshot-org/flameshot)
* ⭐ **[Zipline](https://zipline.diced.sh/)** / [GitHub](https://github.com/diced/zipline) or [yaass](https://github.com/tycrek/yaass) - Self-Hosted ShareX Server
* [Greenshot](https://getgreenshot.org/) / [GitHub](https://github.com/greenshot/greenshot)
diff --git a/docs/index.md b/docs/index.md
index 4fd104566..bf8e144ae 100644
--- a/docs/index.md
+++ b/docs/index.md
@@ -28,7 +28,7 @@ hero:
features:
- title: Adblocking / Privacy
- link: /adblockvpnguide
+ link: /privacy
details: Learn how to block ads, trackers and other nasty things.
icon: |
@@ -59,7 +59,7 @@ features:
lucide-drum">
Listening
- link: /audiopiracyguide
+ link: /audio
details: Stream, download and torrent songs, podcasts and more!
- title: Gaming
@@ -72,7 +72,7 @@ features:
y2="20"/>Gaming
- link: /gamingpiracyguide
+ link: /gaming
details:
Download and play all your favourite games or emulate some old but gold
ones!
@@ -85,7 +85,7 @@ features:
lucide-book-marked">Reading
- link: /readingpiracyguide
+ link: /reading
details:
Whether you're a bookworm, otaku or comic book fan, you'll be able to find
your favourite pieces of literature here!
@@ -93,7 +93,7 @@ features:
- title: Downloading
icon: |
- link: /downloadpiracyguide
+ link: /downloading
details:
Download all your favourite software, movies, shows, music, games and
more!
@@ -101,7 +101,7 @@ features:
- title: Torrenting
icon: |
- link: /torrentpiracyguide
+ link: /torrenting
details: Download your favourite media using the BitTorrent protocol.
- title: Educational
@@ -112,7 +112,7 @@ features:
lucide-book-copy">Educational
- link: /edupiracyguide
+ link: /educational
details: Educational content for all ages.
- title: Android / iOS
@@ -122,13 +122,13 @@ features:
stroke-linecap="round" stroke-linejoin="round" class="lucide
lucide-smartphone">Android / iOS
- link: /android-iosguide
+ link: /mobile
details: All forms of content for Android and iOS.
- title: Linux / macOS
icon: |
- link: /linuxguide
+ link: /linux-macos
details: The $HOME of Linux and macOS.
- title: Non English
@@ -152,7 +152,7 @@ features:
0 1 2 2Z"/>Miscellaneous
- link: /miscguide
+ link: /misc
details: Content too niche to be included elsewhere.
---
diff --git a/docs/internet-tools.md b/docs/internet-tools.md
index 90e8b0308..48e4aba38 100644
--- a/docs/internet-tools.md
+++ b/docs/internet-tools.md
@@ -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
* ↪️ **[AI Search Engines](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/ai#wiki_.25B7_specialized_chatbots)**
* ↪️ **[Privacy Search Engines](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/adblock-vpn-privacy#wiki_.25B7_search_engines)**
-* ↪️ **[Image Search Engines](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/img-tools/#wiki_.25B7_image_search_engines)**
+* ↪️ **[Image Search Engines](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/image-tools/#wiki_.25B7_image_search_engines)**
* ⭐ **[Yandex](https://yandex.com/)**
* ⭐ **[pSearch](https://serjsx.github.io/wpSearch/)**, [Search All](https://www.searchall.net/), [WebSitesSearch](https://web-sites-search.web.app/), [CombinedSearch](https://combinedsearch.io/), [gnod Search](https://www.gnod.com/search/) or [AIO Search](https://www.aiosearch.com/) - Multi-Site Search
* [100 Search Engines](https://www.100searchengines.com/) - Search with 100 Search Engines
@@ -587,7 +587,7 @@
* ↪️ **[Translation Extensions](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/text-tools#wiki_.25B7_translators)**
* ↪️ **[Download Managers](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/file-tools#wiki_.25B7_download_managers)**
* ↪️ **[Video Downloaders](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/video-tools#wiki_.25BA_video_download)**
-* ↪️ **[Image Downloaders](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/img-tools#wiki_.25B7_download_extensions)**
+* ↪️ **[Image Downloaders](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/image-tools#wiki_.25B7_download_extensions)**
* ↪️ **[Productivity / Site Blocking](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/misc#wiki_.25B7_productivity_tools)**
* ↪️ **[Bookmark Managers](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/internet-tools#wiki_.25B7_bookmark_managers)**
* ↪️ **[Tab Managers](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_tab_managers)**
@@ -825,7 +825,7 @@
# ► Open Source Intelligence
* 🌐 **[Awesome OSINT](https://github.com/jivoi/awesome-osint)** - Awesome OSINT
-* ↪️ **[Photo Forensics](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/img-tools/#wiki_.25B7_photo_forensics)**
+* ↪️ **[Photo Forensics](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/image-tools/#wiki_.25B7_photo_forensics)**
* ↪️ **[Domain / DNS Info](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/internet-tools#wiki_.25B7_domain_.2F_dns)**
* ↪️ **[Search Engine OSINT](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/internet-tools#wiki_.25BA_search_tools)**
* ⭐ **[IntelTechniques](https://inteltechniques.com/index.html)** or [OSINT Techniques](https://www.osinttechniques.com/) - OSINT Resources
diff --git a/docs/linuxguide.md b/docs/linux-macos.md
similarity index 100%
rename from docs/linuxguide.md
rename to docs/linux-macos.md
diff --git a/docs/miscguide.md b/docs/misc.md
similarity index 99%
rename from docs/miscguide.md
rename to docs/misc.md
index 988bf8849..6810a3111 100644
--- a/docs/miscguide.md
+++ b/docs/misc.md
@@ -1228,11 +1228,11 @@
## ▷ Image / Video
-* ↪️ **[Image Creation](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/img-tools#wiki_.25BA_image_creation)**
+* ↪️ **[Image Creation](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/image-tools#wiki_.25BA_image_creation)**
* ↪️ **[ASCII Art](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/text-tools#wiki_.25B7_ascii_art)**
-* ↪️ **[Art / Illustations](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/img-tools#wiki_.25B7_art_.2F_illustrations)**
-* ↪️ **[GIF Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/img-tools#wiki_.25B7_gif_tools)**
-* ↪️ **[Meme Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/img-tools/#wiki_.25B7_meme_tools)**
+* ↪️ **[Art / Illustations](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/image-tools#wiki_.25B7_art_.2F_illustrations)**
+* ↪️ **[GIF Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/image-tools#wiki_.25B7_gif_tools)**
+* ↪️ **[Meme Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/image-tools/#wiki_.25B7_meme_tools)**
* ↪️ **[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)**
* ⭐ **[SakugaBooru](https://www.sakugabooru.com/)** - Anime Animation Booru / [Enhancements](https://chromewebstore.google.com/detail/sakuga-extended/khmnmdaghmhkcbooicndamlhkcmpklmc)
diff --git a/docs/android-iosguide.md b/docs/mobile.md
similarity index 100%
rename from docs/android-iosguide.md
rename to docs/mobile.md
diff --git a/docs/posts/april-2023.md b/docs/posts/april-2023.md
index d57d8e905..3abf21f76 100644
--- a/docs/posts/april-2023.md
+++ b/docs/posts/april-2023.md
@@ -25,16 +25,16 @@ in seeing all minor changes you can follow our
section.
- Added Optimization, Tabletop, and Git Gud subsections in
- [Gaming](/gamingpiracyguide/#gaming-tools).
+ [Gaming](/gaming/#gaming-tools).
-- Split [Language Learning](/edupiracyguide/#language-learning) into
+- Split [Language Learning](/educational/#language-learning) into
subsections.
-- Split [Shopping](/miscguide/#shopping) into subsections.
+- Split [Shopping](/misc/#shopping) into subsections.
-- Split the learning portion of [Dev Tools](/devtools/) into subsections.
+- Split the learning portion of [Dev Tools](/developer-tools/) into subsections.
-- Added Art Education section to [Image Tools](/img-tools/#art-education).
+- Added Art Education section to [Image Tools](/image-tools/#art-education).
- Added NoFap section to NSFW to save souls.
@@ -62,10 +62,10 @@ in seeing all minor changes you can follow our
- Starred [Wotaku](https://wotaku.pages.dev/) in Indexes. Awesome Japanese
piracy index.
-- Starred [RLSLOAD](/downloadpiracyguide/#software-sites) in software sites.
+- Starred [RLSLOAD](/downloading/#software-sites) in software sites.
Software site with single click downloads.
-- Starred [Flameshot](/img-tools/#screenshot-tools) in Screenshot Tools. Some
+- Starred [Flameshot](/image-tools/#screenshot-tools) in Screenshot Tools. Some
people like this more than ShareX.
---
diff --git a/docs/posts/april-2024.md b/docs/posts/april-2024.md
index 42af1d286..d80c98e4d 100644
--- a/docs/posts/april-2024.md
+++ b/docs/posts/april-2024.md
@@ -21,38 +21,38 @@ in seeing all minor changes you can follow our
### Wiki Updates
- Split Android Tools into subsections:
- [Optimization](https://fmhy.net/android-iosguide#optimization),
- [Battery](https://fmhy.net/android-iosguide#battery-tools),
- [Keyboard](https://fmhy.net/android-iosguide#keyboard-text),
- [Screen](https://fmhy.net/android-iosguide#screen-tools),
- [Files](https://fmhy.net/android-iosguide#android-file-tools),
- [Root / Flash](https://fmhy.net/android-iosguide#root-flash),
- [Productivity](https://fmhy.net/android-iosguide#productivity-calendars),
- [Maps](https://fmhy.net/android-iosguide#maps-location),
- [Notifications](https://fmhy.net/android-iosguide#notifications-widgets) and
- [Social Media](https://fmhy.net/android-iosguide#social-media-apps).
+ [Optimization](https://fmhy.net/mobile#optimization),
+ [Battery](https://fmhy.net/mobile#battery-tools),
+ [Keyboard](https://fmhy.net/mobile#keyboard-text),
+ [Screen](https://fmhy.net/mobile#screen-tools),
+ [Files](https://fmhy.net/mobile#android-file-tools),
+ [Root / Flash](https://fmhy.net/mobile#root-flash),
+ [Productivity](https://fmhy.net/mobile#productivity-calendars),
+ [Maps](https://fmhy.net/mobile#maps-location),
+ [Notifications](https://fmhy.net/mobile#notifications-widgets) and
+ [Social Media](https://fmhy.net/mobile#social-media-apps).
-- Added [Abandonware](https://fmhy.net/gamingpiracyguide#abandonware),
- [MOBA](https://fmhy.net/gamingpiracyguide#moba-tools),
- [Gacha](https://fmhy.net/gamingpiracyguide#gacha-tools),
- [Counter-Strike](https://fmhy.net/gamingpiracyguide#counter-strike-tools),
- [Doom](https://fmhy.net/gamingpiracyguide#doom-tools) and
- [Controller Tool](https://fmhy.net/gamingpiracyguide#controller-tools)
+- Added [Abandonware](https://fmhy.net/gaming#abandonware),
+ [MOBA](https://fmhy.net/gaming#moba-tools),
+ [Gacha](https://fmhy.net/gaming#gacha-tools),
+ [Counter-Strike](https://fmhy.net/gaming#counter-strike-tools),
+ [Doom](https://fmhy.net/gaming#doom-tools) and
+ [Controller Tool](https://fmhy.net/gaming#controller-tools)
sections to Gaming.
-- Added [Toys / Figures](https://fmhy.net/miscguide#toys-figures) section to
+- Added [Toys / Figures](https://fmhy.net/misc#toys-figures) section to
Shopping.
-- Added [Manga](https://fmhy.net/android-iosguide#android-manga) section to
+- Added [Manga](https://fmhy.net/mobile#android-manga) section to
Android Reading.
- Added [MPV Shaders](https://fmhy.net/storage#mpv-shaders) section to Video
Tools.
-- Added [Email](https://fmhy.net/adblockvpnguide#email-privacy) section to
+- Added [Email](https://fmhy.net/privacy#email-privacy) section to
Privacy.
-- Added [Regex](https://fmhy.pages.dev/devtools#regex-tools) section to Dev
+- Added [Regex](https://fmhy.pages.dev/developer-tools#regex-tools) section to Dev
Tools.
- Our [FMHY Social](https://social.fmhy.net/@fmhy) (fediverse instance /
@@ -74,7 +74,7 @@ in seeing all minor changes you can follow our
- Starred [Motrix](https://fmhy.net/file-tools#download-managers) in Download
Managers. Some people prefer this over Jdownloader / IDM.
-- Starred [Openlib](https://fmhy.net/android-iosguide#android-reading) in
+- Starred [Openlib](https://fmhy.net/mobile#android-reading) in
Android Reading. Anna’s Archive app.
- Starred [Stacher](https://fmhy.net/social-media-tools#youtube-downloaders) in
@@ -86,7 +86,7 @@ in seeing all minor changes you can follow our
- Starred [Claude](https://fmhy.net/ai#online-chatbots) in Online Chatbots.
Works better than things like gemini.
-- Starred [Soft98](https://fmhy.net/downloadpiracyguide#software-sites) in
+- Starred [Soft98](https://fmhy.net/downloading#software-sites) in
Software Sites. Big library, single click DDL.
- Starred [JellyPlayer](https://fmhy.net/video-tools#jellyfin-tools) in Jellyfin
@@ -95,14 +95,14 @@ in seeing all minor changes you can follow our
- Starred [UniGetUI](https://fmhy.net/system-tools#package-managers) in Package
Managers. Nice user-interface for Winget.
-- Starred [Zipline](https://fmhy.net/img-tools#screenshot-tools) in Screenshot
+- Starred [Zipline](https://fmhy.net/image-tools#screenshot-tools) in Screenshot
Tools. Self-hosted, feature-rich ShareX server.
-- Starred [WSABuilds](https://fmhy.net/android-iosguide#android-emulators) in
+- Starred [WSABuilds](https://fmhy.net/mobile#android-emulators) in
Android Emulators. Pre-built WSA binaries that will continue to be
[updated](https://ibb.co/R4hssDc).
-- Starred [SmartImage](https://fmhy.net/img-tools#reverse-image-search) in
+- Starred [SmartImage](https://fmhy.net/image-tools#reverse-image-search) in
Reverse Image Search. Multi-site reverse image search tool.
---
diff --git a/docs/posts/april-2025.md b/docs/posts/april-2025.md
index eb33f80c8..3b117d999 100644
--- a/docs/posts/april-2025.md
+++ b/docs/posts/april-2025.md
@@ -41,7 +41,7 @@ in seeing all minor changes you can follow our
# Stars Added ⭐
-- Starred [DAB Music Player](https://fmhy.net/audiopiracyguide#download-sites) in Audio DDL. Single click FLAC album downloads, has web app + desktop apps for for windows, mac, and linux, with android support coming soon.
+- Starred [DAB Music Player](https://fmhy.net/audio#download-sites) in Audio DDL. Single click FLAC album downloads, has web app + desktop apps for for windows, mac, and linux, with android support coming soon.
- Starred [IronFox](https://fmhy.net/storage#privacy-based) in Android Privacy Browsers. Firefox-based browser with a focus on privacy / security. Feature-rich, recommended by the librewolf dev team, and our community seems to really like it.
@@ -49,13 +49,13 @@ in seeing all minor changes you can follow our
- Starred [AMP4](https://fmhy.net/social-media-tools#youtube-downloaders) in YouTube Video Downloaders, ad-free, supports playlists and 3 hour long videos.
-- Starred [JustDeleteMe](https://fmhy.net/adblockvpnguide#web-privacy) in Web Privacy. Directory of links to more easily delete your accounts from web services.
+- Starred [JustDeleteMe](https://fmhy.net/privacy#web-privacy) in Web Privacy. Directory of links to more easily delete your accounts from web services.
-- Starred [PocketCasts](https://fmhy.net/audiopiracyguide) in Podcast Streaming. Popular iOS podcast player that recently added both desktop + web apps.
+- Starred [PocketCasts](https://fmhy.net/audio) in Podcast Streaming. Popular iOS podcast player that recently added both desktop + web apps.
-- Starred [ADS-B Exchange](https://fmhy.net/miscguide#flights) in Flights section, one of the only that doesn't lock features behind paywalls.
+- Starred [ADS-B Exchange](https://fmhy.net/misc#flights) in Flights section, one of the only that doesn't lock features behind paywalls.
-- Replaced star for xManager with [ReVanced Manager](https://fmhy.net/android-iosguide#android-audio) in Ad-Free Spotify as it has more features, less issues, and xManager itself recommends it.
+- Replaced star for xManager with [ReVanced Manager](https://fmhy.net/mobile#android-audio) in Ad-Free Spotify as it has more features, less issues, and xManager itself recommends it.
- Removed star for bark as its limited, and star for Tortoise TTS as it doesn't sound good, and instead starred [TTS Online](https://fmhy.net/ai#text-to-speech), which sounds better and has a 10k daily character limit.
diff --git a/docs/posts/aug-2023.md b/docs/posts/aug-2023.md
index f39bdf4f1..a3fa42020 100644
--- a/docs/posts/aug-2023.md
+++ b/docs/posts/aug-2023.md
@@ -23,20 +23,20 @@ in seeing all minor changes you can follow our
- Moved fmhy.ml to **[fmhy.net](/)**, and updated its UI to more closely match
[fmhy.pages.dev](/).
- Separated Android Tools into subcategories:
- [Device](/android-iosguide/#android-device),
- [Utilities](/android-iosguide/#android-utilities),
- [Internet](/android-iosguide/#android-internet),
- [Camera](/android-iosguide/#android-camera) and
- [Customization](/android-iosguide/#customization).
+ [Device](/mobile/#android-device),
+ [Utilities](/mobile/#android-utilities),
+ [Internet](/mobile/#android-internet),
+ [Camera](/mobile/#android-camera) and
+ [Customization](/mobile/#customization).
-- Added a [Engineering](/edupiracyguide/#engineering) section to Educational.
+- Added a [Engineering](/educational/#engineering) section to Educational.
- Renamed Multi Hosts to [Multi Server](/video/#multi-server),
Dedicated Hosts to [Single Server](/video/#single-server), and
bumped Multi above Single as they're generally better.
- Moved all the APK sections out of storage, and back into the main
- [Android section](/android-iosguide/#android-apks).
+ [Android section](/mobile/#android-apks).
- Combined all [Indian Language sites](/non-english/#indian-languages) into one
section in Non-Eng, as most host content for more than one language.
@@ -45,7 +45,7 @@ in seeing all minor changes you can follow our
### Stars Added ⭐
-- Starred [Ova Games](/gamingpiracyguide/#download-games) in Game Download. Big
+- Starred [Ova Games](/gaming/#download-games) in Game Download. Big
library, fast hosts.
- Starred [SmashyStream](/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
Launchers. New game launcher and downloader, made by our friends.
-- Starred Androeed and Modyolo in [Modded APKs](/android-iosguide/#modded-apks).
+- Starred Androeed and Modyolo in [Modded APKs](/mobile/#modded-apks).
-- Starred [Skraper](/gamingpiracyguide/#emulation--roms) in Emulation. Automate
+- Starred [Skraper](/gaming/#emulation--roms) in Emulation. Automate
ROM Covers / Metadata.
-- Starred [ROMhacking](/gamingpiracyguide/#rom-sites) in ROM Sites. One of the
+- Starred [ROMhacking](/gaming/#rom-sites) in ROM Sites. One of the
oldest sites for fan translations.
- Starred [FreeSports](/video/#live-tv--sports) in Live Sports. A
diff --git a/docs/posts/aug-2024.md b/docs/posts/aug-2024.md
index f4d39ad98..2c1e2a8e4 100644
--- a/docs/posts/aug-2024.md
+++ b/docs/posts/aug-2024.md
@@ -37,9 +37,9 @@ in seeing all minor changes you can follow our
[Servers](https://fmhy.net/gaming-tools#multiplayer-servers).
- Split Game Dev Tools into subsections:
- [Game Engines](https://fmhy.net/devtools#game-engines),
- [Asset Creation](https://fmhy.net/devtools#asset-creation) and
- [Map Creators](https://fmhy.net/devtools#map-creators-editors).
+ [Game Engines](https://fmhy.net/developer-tools#game-engines),
+ [Asset Creation](https://fmhy.net/developer-tools#asset-creation) and
+ [Map Creators](https://fmhy.net/developer-tools#map-creators-editors).
- Added [Office Suites](https://fmhy.net/text-tools#office-suites) section to
Text Tools.
@@ -70,7 +70,7 @@ in seeing all minor changes you can follow our
### Stars Added ⭐
-- Starred [lucida](https://fmhy.net/audiopiracyguide#audio-ripping-sites) in
+- Starred [lucida](https://fmhy.net/audio#audio-ripping-sites) in
Audio Ripping. Multi-site audio ripping with 320kb / FLAC support.
- Starred [Proton Docs](https://fmhy.net/text-tools#online-editors) in Text
@@ -85,29 +85,29 @@ in seeing all minor changes you can follow our
- Starred [FullReplays](https://fmhy.net/video#sports-replays) in
sports replays. Full soccer match replays.
-- Starred [Aurora Store](https://fmhy.net/android-iosguide#untouched-apks) in
+- Starred [Aurora Store](https://fmhy.net/mobile#untouched-apks) in
Untouched APKs. FOSS version of the Play Store.
-- Starred [No Trace](https://fmhy.net/adblockvpnguide#privacy-indexes) in
+- Starred [No Trace](https://fmhy.net/privacy#privacy-indexes) in
Privacy Indexes. In-depth privacy guides / anti-surveillance.
- Starred
- [Futo Keyboard / Voice](https://fmhy.net/android-iosguide#keyboard-text) in
+ [Futo Keyboard / Voice](https://fmhy.net/mobile#keyboard-text) in
Android Keyboard Tools. Privacy-focused keyboards.
-- Starred [Piko](https://fmhy.net/android-iosguide#social-media-apps) in Android
+- Starred [Piko](https://fmhy.net/mobile#social-media-apps) in Android
Social Media. ReVanced patches for X.com.
- Starred [auto-mcs](https://fmhy.net/storage#minecraft-server-tools) in
Minecraft Server Tools. Simple Minecraft server setup.
-- Starred [Vijay's Virtual Vibes](https://fmhy.net/miscguide#random) in Fun
+- Starred [Vijay's Virtual Vibes](https://fmhy.net/misc#random) in Fun
Sites. Find random sites.
- Starred [Codeium](https://fmhy.net/ai#coding-ais) in Coding AIs. Popular
coding AI with unlimited GPT-3.5.
-- Starred [Print Chess](https://fmhy.net/gamingpiracyguide#strategy) in Strategy
+- Starred [Print Chess](https://fmhy.net/gaming#strategy) in Strategy
Games. Printable paper chess set.
- Starred both Streamflix and PrimeFlix in
diff --git a/docs/posts/aug-2025.md b/docs/posts/aug-2025.md
index 5d74b97f3..75a300e40 100644
--- a/docs/posts/aug-2025.md
+++ b/docs/posts/aug-2025.md
@@ -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.
-- 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 [Hacker News Tools](https://fmhy.pages.dev/miscguide#hacker-news-tools) section to News Sites.
+- Added [Hacker News Tools](https://fmhy.pages.dev/misc#hacker-news-tools) section to News Sites.
-- Added [Sign Language](https://fmhy.net/edupiracyguide#sign-language) section to Language Learning.
+- Added [Sign Language](https://fmhy.net/educational#sign-language) section to Language Learning.
-- Added [Assistance / Charity](https://fmhy.net/miscguide#assistance-charity) section to Free Stuff.
+- Added [Assistance / Charity](https://fmhy.net/misc#assistance-charity) section to Free Stuff.
-- Added [Vehicle](https://fmhy.net/miscguide#vehicle) section to Miscellaneous.
+- Added [Vehicle](https://fmhy.net/misc#vehicle) section to Miscellaneous.
-- Moved [Coding Tutorials](https://fmhy.net/edupiracyguide#coding-tutorials) out of storage, reformatted, added labels and removed some sites. [Before vs. After](https://i.ibb.co/0VVhmrrT/image.png)
+- Moved [Coding Tutorials](https://fmhy.net/educational#coding-tutorials) out of storage, reformatted, added labels and removed some sites. [Before vs. After](https://i.ibb.co/0VVhmrrT/image.png)
-- Moved [Android Telegram Clients](https://fmhy.net/android-iosguide#telegram-clients) out of storage, cleaned it up, added labels. [Before vs. After](https://i.ibb.co/276xNQWS/image.png)
+- Moved [Android Telegram Clients](https://fmhy.net/mobile#telegram-clients) out of storage, cleaned it up, added labels. [Before vs. After](https://i.ibb.co/276xNQWS/image.png)
-- Moved [Media Covers / Posters](https://fmhy.net/img-tools#media-covers-posters) out of storage + added labels. [Before vs. After](https://i.ibb.co/DDrN5zDt/image.png)
+- Moved [Media Covers / Posters](https://fmhy.net/image-tools#media-covers-posters) out of storage + added labels. [Before vs. After](https://i.ibb.co/DDrN5zDt/image.png)
-- Moved [Album Artwork](https://fmhy.net/audiopiracyguide#album-artwork) out of storage + added labels.
+- Moved [Album Artwork](https://fmhy.net/audio#album-artwork) out of storage + added labels.
-- Moved [Static Page Hosting](https://fmhy.net/devtools#static-page-hosting) out of storage + reorganized and added labels. [Before vs. After](https://i.ibb.co/Kpq1shtP/Untitled.png)
+- Moved [Static Page Hosting](https://fmhy.net/developer-tools#static-page-hosting) out of storage + reorganized and added labels. [Before vs. After](https://i.ibb.co/Kpq1shtP/Untitled.png)
- Cleaned up [Link in Bio](https://fmhy.net/internet-tools#link-in-bio) section, removed sites that didn't stand out + starred Carrd. [Before vs. After](https://i.ibb.co/8gfjXg2G/image.png)
-- Cleaned up [Ebook section](https://fmhy.net/readingpiracyguide#ebooks), added / fixed labels, moved sites that didn't fit the section. [Before vs. After](https://i.ibb.co/0yYcZQWW/Untitled.jpg)
+- Cleaned up [Ebook section](https://fmhy.net/reading#ebooks), added / fixed labels, moved sites that didn't fit the section. [Before vs. After](https://i.ibb.co/0yYcZQWW/Untitled.jpg)
-- Cleaned up [Spotify Tools](https://fmhy.net/audiopiracyguide#spotify-tools) + [Spotify Playlist Tools](https://fmhy.net/audiopiracyguide#playlist-tools). Re-organized + removed sites that didn't stand out.
+- Cleaned up [Spotify Tools](https://fmhy.net/audio#spotify-tools) + [Spotify Playlist Tools](https://fmhy.net/audio#playlist-tools). Re-organized + removed sites that didn't stand out.
-- Cleaned up formatting in [Adblock section](https://fmhy.net/adblockvpnguide#adblocking). [Before vs. After](https://i.ibb.co/0jcysGV3/Adblock-Before.png)
+- Cleaned up formatting in [Adblock section](https://fmhy.net/privacy#adblocking). [Before vs. After](https://i.ibb.co/0jcysGV3/Adblock-Before.png)
- Decided to bring back our [Saidit backup](https://saidit.net/s/freemediaheckyeah/wiki/index). Saidit has always supported us, their owner actually posted FMHY themselves on the main Saidit wiki. Its always good to have places like this we know we can trust.
@@ -64,7 +64,7 @@ in seeing all minor changes you can follow our
# Stars Added ⭐
-- Starred [Google Assistant](https://fmhy.net/audiopiracyguide#song-identification) in Song Identification. Works by humming the songs, seems to be even more accurate than Shazam in our testing.
+- Starred [Google Assistant](https://fmhy.net/audio#song-identification) in Song Identification. Works by humming the songs, seems to be even more accurate than Shazam in our testing.
- Starred [Qwen](https://fmhy.net/ai#image-generation) in Image Gen. Unlimited, no signup required, seems to be almost as good as 4o as of now.
@@ -72,21 +72,21 @@ in seeing all minor changes you can follow our
- Starred [keybr](https://fmhy.net/text-tools#typing-lessons) in Typing Lessons. Custom touch typing practice, has nice UI, multiplayer, profiles, themes, etc.
-- Starred [Seal](https://fmhy.net/android-iosguide#android-youtube-apps) in Android YouTube Downloaders. Open-source downloader that supports many sites.
+- Starred [Seal](https://fmhy.net/mobile#android-youtube-apps) in Android YouTube Downloaders. Open-source downloader that supports many sites.
-- Starred [SaverTuner](https://fmhy.net/android-iosguide#battery-tools) in Android Battery Tools. Battery saving app that many people have had good results with in our testing.
+- Starred [SaverTuner](https://fmhy.net/mobile#battery-tools) in Android Battery Tools. Battery saving app that many people have had good results with in our testing.
-- Starred [Xtra](https://fmhy.net/android-iosguide#social-media-apps) in Android Social Media. Open-source Twitch client that seems to work well for people.
+- Starred [Xtra](https://fmhy.net/mobile#social-media-apps) in Android Social Media. Open-source Twitch client that seems to work well for people.
- Starred [FSTV](https://fmhy.net/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.
***
diff --git a/docs/posts/dec-2023.md b/docs/posts/dec-2023.md
index dbaad1f70..da0fbc13a 100644
--- a/docs/posts/dec-2023.md
+++ b/docs/posts/dec-2023.md
@@ -27,26 +27,26 @@ in seeing all minor changes you can follow our
[Text Tools](/text-tools), [Video Tools](/video-tools) and
[Audio Tools](/audio-tools).
-- Separated Health into subsections: [Mental](/miscguide#mental-health),
- [Physical](/miscguide#physical-health),
- [Nutritional](/miscguide#nutritional-health),
- [Sexual](/miscguide#sexual-health) and [Detoxing](/miscguide#detoxing).
+- Separated Health into subsections: [Mental](/misc#mental-health),
+ [Physical](/misc#physical-health),
+ [Nutritional](/misc#nutritional-health),
+ [Sexual](/misc#sexual-health) and [Detoxing](/misc#detoxing).
-- Added a section for [Open-Source Games](/gamingpiracyguide#open-source-games)
+- Added a section for [Open-Source Games](/gaming#open-source-games)
in Gaming.
- Added a section for [Animation Tools](/video-tools#animation-tools) in Video
Tools.
-- Added a section for [Academic Papers](/readingpiracyguide#academic-papers) in
+- Added a section for [Academic Papers](/reading#academic-papers) in
Educational Reading.
-- Added sections for [Illustrations](/img-tools#illustrations) and
+- Added sections for [Illustrations](/image-tools#illustrations) and
[Textures / Patterns](/storage#textures-patterns) in Images.
-- Added sections in Linux for [Video](/linuxguide#linux-video),
- [Audio](/linuxguide#linux-audio), [Images](/linuxguide#linux-images) and
- [File Tools](/linuxguide#file-tools).
+- Added sections in Linux for [Video](/linux-macos#linux-video),
+ [Audio](/linux-macos#linux-audio), [Images](/linux-macos#linux-images) and
+ [File Tools](/linux-macos#file-tools).
- Made a ["safe for work"](https://rentry.org/piracy) version of our index with
no NSFW link listed.
@@ -64,16 +64,16 @@ in seeing all minor changes you can follow our
- Starred [watch.lonelil](/video#multi-server) in Streaming Sites.
Nice UI, fast 4K + 1080p, live tv.
-- Starred [Game Bounty](/gamingpiracyguide#download-games) in Game Download.
+- Starred [Game Bounty](/gaming#download-games) in Game Download.
Fast hosts, pre-installs, clean uploads, ran by members of our community.
- Starred [AbandonwareGames](/storage#abandonware-games) in Abandonware Games.
Nice site with a big library of oldschool games.
-- Starred [Heroic Games Launcher](/gamingpiracyguide#steam-epic) in Steam /
+- Starred [Heroic Games Launcher](/gaming#steam-epic) in Steam /
Epic. Open-source Epic Games launcher.
-- Starred [TG Archive](/downloadpiracyguide#download-directories) in Download
+- Starred [TG Archive](/downloading#download-directories) in Download
Directories. Telegram file archive + search tool.
- Starred [BleachBit](/system-tools#system-debloating) in system debloating.
@@ -88,10 +88,10 @@ in seeing all minor changes you can follow our
- Starred [DeepL](/text-tools#translators) in Translators. People feel this
gives some of the best results.
-- Starred [Magpie](/gamingpiracyguide#optimization-tools) in Gaming
+- Starred [Magpie](/gaming#optimization-tools) in Gaming
Optimization. Enable AMD FSR on any game or device.
-- Starred [TrollStore](/android-iosguide#ios-apps) in iOS Apps. Permanently
+- Starred [TrollStore](/mobile#ios-apps) in iOS Apps. Permanently
install non-appstore iOS apps w/o pc, paid dev account or being jailbroken.
- Starred [SmartTube](/video#smart-tv-firestick) in Smart TV /
diff --git a/docs/posts/dec-2024.md b/docs/posts/dec-2024.md
index 37668010a..b98aed023 100644
--- a/docs/posts/dec-2024.md
+++ b/docs/posts/dec-2024.md
@@ -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 [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)
@@ -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 [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.
@@ -53,21 +53,21 @@ in seeing all minor changes you can follow our
- Starred [Directory Opus](https://fmhy.net/file-tools#file-explorers) in File Explorers. Powerful and highly customizable windows file manager.
-- Starred [Censorship Bypass Guide](https://fmhy.net/adblockvpnguide#anti-censorship) in Anti-Censorship. Easy to follow censorship bypass guides.
+- Starred [Censorship Bypass Guide](https://fmhy.net/privacy#anti-censorship) in Anti-Censorship. Easy to follow censorship bypass guides.
- Starred [Mistral](https://fmhy.net/ai#online-chatbots) in Online Chatbots. Feature-rich bot which includes web search, a canvas tool, image generation and more.
-- Starred [OnTheSpot](https://fmhy.net/audiopiracyguide#audio-ripping-tools) in Audio Ripping. Spotify Downloader with a GUI that still works after the spotify's changes.
+- Starred [OnTheSpot](https://fmhy.net/audio#audio-ripping-tools) in Audio Ripping. Spotify Downloader with a GUI that still works after the spotify's changes.
- Starred [LanguageTool](https://fmhy.net/text-tools#grammar-check) in Grammar Check. This seemed to pick up the most errors when compared to other options.
-- Starred [BlockAway](https://fmhy.net/adblockvpnguide#proxy-sites) in Proxy Sites. Popular proxy site that seems to work well for most people.
+- Starred [BlockAway](https://fmhy.net/privacy#proxy-sites) in Proxy Sites. Popular proxy site that seems to work well for most people.
- Starred [Plutonium](https://fmhy.net/gaming-tools#multiplayer-mods) in Multiplayer Mods. The most popular COD multiplayer server mod, works with multiple games.
- Starred [webOS Dev Manager](https://fmhy.net/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.
***
diff --git a/docs/posts/feb-2024.md b/docs/posts/feb-2024.md
index f759ef474..71a4fa62e 100644
--- a/docs/posts/feb-2024.md
+++ b/docs/posts/feb-2024.md
@@ -29,22 +29,22 @@ in seeing all minor changes you can follow our
[streaming section.](/video)
- Turned Spotify into its own section w/ subsections:
- [Clients](/audiopiracyguide#spotify-clients),
- [Adblockers](/audiopiracyguide#spotify-adblockers),
- [Download](/audiopiracyguide#spotify-download) and
- [Tools](/audiopiracyguide#spotify-tools).
+ [Clients](/audio#spotify-clients),
+ [Adblockers](/audio#spotify-adblockers),
+ [Download](/audio#spotify-download) and
+ [Tools](/audio#spotify-tools).
-- Added a section for [Soundtracks](/audiopiracyguide#media-soundtracks) in
+- Added a section for [Soundtracks](/audio#media-soundtracks) in
Audio.
-- Added sections for [Computer Science](/devtools#computer-science) and
- [Docker](/devtools#docker-tools) in Dev Tools.
+- Added sections for [Computer Science](/developer-tools#computer-science) and
+ [Docker](/developer-tools#docker-tools) in Dev Tools.
- Added a section for
- [Two-Factor Authentication](/adblockvpnguide#two-factor-authentication) in Web
+ [Two-Factor Authentication](/privacy#two-factor-authentication) in Web
Privacy.
-- Re-organized [Magazine Sites](/readingpiracyguide#magazines) + added filehosts
+- Re-organized [Magazine Sites](/reading#magazines) + added filehosts
to their descriptions.
- Removed OnStream from unsafe sites. The ["evidence"](https://rentry.co/upo2r)
@@ -80,7 +80,7 @@ in seeing all minor changes you can follow our
- Starred [Linqbin](/internet-tools#url-tools) in URL Tools. Privacy focused
temp link shortener/pastebin, made by one of our discord mods.
-- Starred [Gnarly Repacks](/gamingpiracyguide#game-repacks) in Game Repacks +
+- Starred [Gnarly Repacks](/gaming#game-repacks) in Game Repacks +
ROMs. Trusted repacker who's been around for years.
- Starred [PrimeFlix](/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
Tools. The best piracy focused instance on Lemmy.
-- Starred [CRACKSurl](/downloadpiracyguide#software-sites) in Software Sites.
+- Starred [CRACKSurl](/downloading#software-sites) in Software Sites.
Clean scans + admins are members of FMHY.
-- Starred [PDF Drive](/readingpiracyguide#pdf-search) in PDF Sites as their
+- Starred [PDF Drive](/reading#pdf-search) in PDF Sites as their
downloads are working again.
-- Starred [Bypass All Shortlinks](/adblockvpnguide#redirect-bypass) in Redirect
+- Starred [Bypass All Shortlinks](/privacy#redirect-bypass) in Redirect
Bypass. This is a fork of the original script with all tracking elements
removed.
@@ -112,7 +112,7 @@ in seeing all minor changes you can follow our
- Removed Tachiyomi as it is
[no longer being developed](https://tachiyomi.org/news/2024-01-13-goodbye).
We've replaced it with its successor
- [Mihon](/android-iosguide#android-reading), and keep in mind the forks linked
+ [Mihon](/mobile#android-reading), and keep in mind the forks linked
there still work.
- Removed Revanced Extended in YouTube Apps as its been
diff --git a/docs/posts/feb-2025.md b/docs/posts/feb-2025.md
index 50415d3b9..893d78ab6 100644
--- a/docs/posts/feb-2025.md
+++ b/docs/posts/feb-2025.md
@@ -21,13 +21,13 @@ in seeing all minor changes you can follow our
### Wiki Updates
-- Added [Concerts / Live Shows](https://fmhy.net/audiopiracyguide#concerts-live-shows) section to Audio.
+- Added [Concerts / Live Shows](https://fmhy.net/audio#concerts-live-shows) section to Audio.
-- Added [Genre Specific](https://fmhy.net/audiopiracyguide#genre-specific) section to Audio Downloading.
+- Added [Genre Specific](https://fmhy.net/audio#genre-specific) section to Audio Downloading.
-- Added [Drinks section](https://fmhy.net/miscguide#drinks) under Food.
+- Added [Drinks section](https://fmhy.net/misc#drinks) under Food.
-- Moved [Collaboration Platforms](https://fmhy.net/miscguide#collaboration-platforms) out of storage, cleaned up section, and added labels.
+- Moved [Collaboration Platforms](https://fmhy.net/misc#collaboration-platforms) out of storage, cleaned up section, and added labels.
- For individual notes we've stopped linking to pastebins, and instead link our own [GitHub page](https://github.com/fmhy/FMHY/wiki/FMHY‐Notes.md).
@@ -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 [PipePipe](https://fmhy.net/android-iosguide#android-youtube-apps) in Android YouTube Apps. Feature-rich fork of NewPipe w/ SponsorBlock / ReturnYTDislikes.
+- Starred [PipePipe](https://fmhy.net/mobile#android-youtube-apps) in Android YouTube Apps. Feature-rich fork of NewPipe w/ SponsorBlock / ReturnYTDislikes.
- Starred [PokéRogue](https://fmhy.net/gaming-tools#pokemon-tools) in Pokémon section. Popular and fun Pokémon dungeon crawler.
- Starred [WatchParty](https://fmhy.net/video-tools#stream-sync) in Stream Sync. Feature-rich app video sync app that seems to work well for people.
-- Starred [Gifski + EZGif](https://fmhy.net/img-tools#gif-tools) under GIF Tools. High quality GIF creation tools.
+- Starred [Gifski + EZGif](https://fmhy.net/image-tools#gif-tools) under GIF Tools. High quality GIF creation tools.
-- Starred [Blatant's IPA Library](https://fmhy.net/android-iosguide#telegram-channels-1) in iOS Apps. High quality iOS app releases, stands out compared to similar TG groups.
+- Starred [Blatant's IPA Library](https://fmhy.net/mobile#telegram-channels-1) in iOS Apps. High quality iOS app releases, stands out compared to similar TG groups.
-- Starred [Reaper](https://fmhy.net/audiopiracyguide#audio-editors) under Audio Editors. Feature-rich digital audio workstation. Says its a trial, but trial never actually ends.
+- Starred [Reaper](https://fmhy.net/audio#audio-editors) under Audio Editors. Feature-rich digital audio workstation. Says its a trial, but trial never actually ends.
-- Added star back to [SteamGG](https://fmhy.net/gamingpiracyguide#download-games) in Game DDL. Game download site with pre-installs and good hosts, similar to SteamRIP.
+- Added star back to [SteamGG](https://fmhy.net/gaming#download-games) in Game DDL. Game download site with pre-installs and good hosts, similar to SteamRIP.
***
@@ -67,4 +67,4 @@ in seeing all minor changes you can follow our
- Unstarred Firehawk52 as Deezer ARLs are being nuked instantly now.
-- Unstarred IPALibrary, and replaced it with [CodeVN](https://fmhy.net/android-iosguide#ios-ipas) as this is where IPALibrary sources their apps.
+- Unstarred IPALibrary, and replaced it with [CodeVN](https://fmhy.net/mobile#ios-ipas) as this is where IPALibrary sources their apps.
diff --git a/docs/posts/jan-2024.md b/docs/posts/jan-2024.md
index 7f55d302f..79a8b4e04 100644
--- a/docs/posts/jan-2024.md
+++ b/docs/posts/jan-2024.md
@@ -47,24 +47,24 @@ FMHY. Here's to another year of growth and success! 💙
added subsections for popular sites that needed them. (Reddit, Discord,
YouTube etc.)
-- Added sections for [Game Soundtracks](/audiopiracyguide#game-soundtracks),
- [IRC Tools](/downloadpiracyguide#irc-tools) and
- [Coding AIs](/devtools#coding-ais).
+- Added sections for [Game Soundtracks](/audio#game-soundtracks),
+ [IRC Tools](/downloading#irc-tools) and
+ [Coding AIs](/developer-tools#coding-ais).
-- Split Career into subsections: [Remote Jobs](/miscguide#remote-jobs),
- [Tech Jobs](/miscguide#tech-jobs), [Startup](/miscguide#startup) and
- [Finance / Crypto](/miscguide#finance-crypto)
+- Split Career into subsections: [Remote Jobs](/misc#remote-jobs),
+ [Tech Jobs](/misc#tech-jobs), [Startup](/misc#startup) and
+ [Finance / Crypto](/misc#finance-crypto)
- Split Game Mods into subsections:
- [Mod Indexes](/gamingpiracyguide#mod-indexes) and
- [Single Mods](/gamingpiracyguide#game-mods)
+ [Mod Indexes](/gaming#mod-indexes) and
+ [Single Mods](/gaming#game-mods)
-- Split News into subsections: [Aggregators](/miscguide#aggregators) and
- [Tech News](/miscguide#tech-news)
+- Split News into subsections: [Aggregators](/misc#aggregators) and
+ [Tech News](/misc#tech-news)
- Re-organized both
- [Android Operating Systems](/android-iosguide#operating-systems) +
- [App Launchers](/android-iosguide#app-launchers), and moved them out of
+ [Android Operating Systems](/mobile#operating-systems) +
+ [App Launchers](/mobile#app-launchers), and moved them out of
storage.
---
@@ -74,7 +74,7 @@ FMHY. Here's to another year of growth and success! 💙
- Starred [Braflix](/video#streaming-sites) in Streaming Sites. Fast
streams, no ads, nice UI, 4K + 1080p.
-- Starred [Liber3](/readingpiracyguide#ebooks) in Reading Sites. Big library,
+- Starred [Liber3](/reading#ebooks) in Reading Sites. Big library,
nice UI, single click downloads.
- Starred [Screenbox](/video-tools#video-players) in Video Players. Open-source,
@@ -85,19 +85,19 @@ FMHY. Here's to another year of growth and success! 💙
- Starred [SydneyQt](/ai#proprietary-llms) in AI Chatbots. Jailbroken Bing AI.
-- Starred [App Manager](/android-iosguide#foss-apks) in FOSS APKs. Open-source
+- Starred [App Manager](/mobile#foss-apks) in FOSS APKs. Open-source
Android app package manager.
-- Starred [scrcpy](/android-iosguide#android-device) in Android Tools. Manage
+- Starred [scrcpy](/mobile#android-device) in Android Tools. Manage
mobile devices via desktop.
-- Starred [KernelSU](/android-iosguide#android-device) in Android Device. Root
+- Starred [KernelSU](/mobile#android-device) in Android Device. Root
tool that some people prefer over Magisk.
-- Starred [Onion Browser](/android-iosguide#ios-privacy) in iOS Privacy.
+- Starred [Onion Browser](/mobile#ios-privacy) in iOS Privacy.
Recommended by Tor on their site.
-- Starred [Wii Guide](/gamingpiracyguide#homebrew) in Homebrew.
+- Starred [Wii Guide](/gaming#homebrew) in Homebrew.
- Starred [Video2x](/video-tools#video-tools-1) in Video Tools. Lossless
video/GIF/image upscaler.
@@ -105,7 +105,7 @@ FMHY. Here's to another year of growth and success! 💙
- Starred [VCRedist](/system-tools#windows-updates) in Windows Updates. Easily
download all Microsoft Visual C++ redists.
-- Starred [CanvasBlocker](/adblockvpnguide#privacy-extensions) in Privacy
+- Starred [CanvasBlocker](/privacy#privacy-extensions) in Privacy
Extensions. Prevent Javascript API fingerprinting.
---
diff --git a/docs/posts/jan-2025.md b/docs/posts/jan-2025.md
index dc3731665..71e240bcc 100644
--- a/docs/posts/jan-2025.md
+++ b/docs/posts/jan-2025.md
@@ -23,19 +23,19 @@ in seeing all minor changes you can follow our
* Created **[guides.fmhy.lol](https://guides.fmhy.lol/)** which lists all the guides we have throughout FMHY.
-* Re-ordered [Game DDL](https://fmhy.net/gamingpiracyguide#download-games) based on [poll results](https://challonge.com/1mqmqrdq). Congrats to CS.RIN for coming out on top.
+* Re-ordered [Game DDL](https://fmhy.net/gaming#download-games) based on [poll results](https://challonge.com/1mqmqrdq). Congrats to CS.RIN for coming out on top.
-* Added both [Sideloading](https://fmhy.net/android-iosguide#ios-sideloading) and [Social Media App](https://fmhy.net/android-iosguide#social-media-apps-1) sections to iOS.
+* Added both [Sideloading](https://fmhy.net/mobile#ios-sideloading) and [Social Media App](https://fmhy.net/mobile#social-media-apps-1) sections to iOS.
-* Added [Last.fm section](https://fmhy.net/audiopiracyguide#last-fm-tools) to Audio Tracking.
+* Added [Last.fm section](https://fmhy.net/audio#last-fm-tools) to Audio Tracking.
* Cleaned up Font section + split it into subcategories: [Open Source](https://fmhy.net/text-tools#open-source-freeware) / [Free Fonts](https://fmhy.net/text-tools#free-fonts).
-* Added guides + better descriptions to all the [Jailbreaking Tools](https://fmhy.net/android-iosguide#ios-jailbreaking).
+* Added guides + better descriptions to all the [Jailbreaking Tools](https://fmhy.net/mobile#ios-jailbreaking).
-* Added License Tags to [Stock Photo Sites](https://fmhy.net/img-tools#stock-images).
+* Added License Tags to [Stock Photo Sites](https://fmhy.net/image-tools#stock-images).
-* De-bloated [IDEs section](https://fmhy.net/devtools#ides-code-editors) in dev tools.
+* De-bloated [IDEs section](https://fmhy.net/developer-tools#ides-code-editors) in dev tools.
---
@@ -43,21 +43,21 @@ in seeing all minor changes you can follow our
* Starred [Image FX](https://fmhy.net/ai#image-generation) in Image Gen + [Video FX](https://fmhy.net/ai#video-generation) in Video Gen. AI generators made by Google, US only.
-* Starred [Alu](https://fmhy.net/adblockvpnguide#proxy-sites) in Proxy Sites. Proxy site similar to things like HolyUnblocker.
+* Starred [Alu](https://fmhy.net/privacy#proxy-sites) in Proxy Sites. Proxy site similar to things like HolyUnblocker.
* Starred [Lively](https://fmhy.net/system-tools#wallpaper-managers) in Wallpaper Managers. Feature-rich live wallpaper manager for Windows.
-* Starred [BandLab](https://fmhy.net/audiopiracyguide#browser-editors-synths) in Audio Browser Editors. Popular and feature-rich digital audio workstation.
+* Starred [BandLab](https://fmhy.net/audio#browser-editors-synths) in Audio Browser Editors. Popular and feature-rich digital audio workstation.
-* Starred [Kvaesitso](https://fmhy.net/android-iosguide#app-launchers) in Android App Launchers. Feature-rich, search focused launcher.
+* Starred [Kvaesitso](https://fmhy.net/mobile#app-launchers) in Android App Launchers. Feature-rich, search focused launcher.
-* Starred [SideStore](https://fmhy.net/android-iosguide#ios-sideloading) in iOS Sideloading. Fork of AltStore that doesn't require PC.
+* Starred [SideStore](https://fmhy.net/mobile#ios-sideloading) in iOS Sideloading. Fork of AltStore that doesn't require PC.
-* Starred [uYouEnhanced](https://fmhy.net/android-iosguide#ios-youtube-apps) in iOS YouTube apps. Modded YouTube IPA.
+* Starred [uYouEnhanced](https://fmhy.net/mobile#ios-youtube-apps) in iOS YouTube apps. Modded YouTube IPA.
-* Starred [The Book of Secret Knowledge](https://fmhy.net/linuxguide#software-sites) in Linux Software. Lists, manuals, cheatsheets, tools and more.
+* Starred [The Book of Secret Knowledge](https://fmhy.net/linux-macos#software-sites) in Linux Software. Lists, manuals, cheatsheets, tools and more.
-* Starred [You Don't Need JavaScript](https://fmhy.net/devtools#css) in CSS Tools. Curated list of CSS demos.
+* Starred [You Don't Need JavaScript](https://fmhy.net/developer-tools#css) in CSS Tools. Curated list of CSS demos.
---
diff --git a/docs/posts/july-2023.md b/docs/posts/july-2023.md
index af0c54700..2b4235c3d 100644
--- a/docs/posts/july-2023.md
+++ b/docs/posts/july-2023.md
@@ -20,17 +20,17 @@ in seeing all minor changes you can follow our
### Wiki Updates
-- Added a [Study / Research](/edupiracyguide/#study--research) section to
+- Added a [Study / Research](/educational/#study--research) section to
Educational.
-- Added a [Travel](/miscguide/#travel) section to Miscellaneous.
+- Added a [Travel](/misc/#travel) section to Miscellaneous.
- Added a [Hardware](/system-tools#hardware-tools) section to System Tools.
- Added qualities (720p, 1080p) to
[Anime Streaming](/video/#anime-streaming) sites.
-- [Combined](/gamingpiracyguide/#steam--epic) Steam / Epic Tools with DLC
+- [Combined](/gaming/#steam--epic) Steam / Epic Tools with DLC
Unlockers.
- Linked the ["missing sections"](https://ibb.co/X8K2GTc) in all index pages.
@@ -49,25 +49,25 @@ in seeing all minor changes you can follow our
- Starred [UHDMovies](/video/#download-sites) in Video Download. 4K
Movie Host.
-- Starred [Glitchwave](/gamingpiracyguide/#tracking--discovery) in Game
+- Starred [Glitchwave](/gaming/#tracking--discovery) in Game
Tracking. RYM's new game rating site.
-- Starred [hate5six](/audiopiracyguide/#streaming-sites) in Audio Streaming.
+- Starred [hate5six](/audio/#streaming-sites) in Audio Streaming.
Huge collection of live band videos.
-- Starred [SittingOnClouds](/audiopiracyguide/#download-sites) in Audio
+- Starred [SittingOnClouds](/audio/#download-sites) in Audio
Download. Game / Anime Soundtracks.
-- Starred [Koalageddon](/gamingpiracyguide/#steam--epic) in Steam / Epic. DLC
+- Starred [Koalageddon](/gaming/#steam--epic) in Steam / Epic. DLC
Unlocker.
-- Starred [SpotC++](/android-iosguide/#ios-audio) in iOS Audio. Spotilife +
+- Starred [SpotC++](/mobile/#ios-audio) in iOS Audio. Spotilife +
Sposify IPA.
- Starred [Favoree](/toolsguide/#youtube-tools) in YouTube Tools. Channel
Discovery.
-- Starred [CloakStream](/adblockvpnguide/#browser-tools) in Privacy Tools.
+- Starred [CloakStream](/privacy/#browser-tools) in Privacy Tools.
Encrypt Download URLs.
---
diff --git a/docs/posts/july-2024.md b/docs/posts/july-2024.md
index a809b059a..45e168a18 100644
--- a/docs/posts/july-2024.md
+++ b/docs/posts/july-2024.md
@@ -54,17 +54,17 @@ see most.
[USB / Bootloaders](https://fmhy.net/system-tools#usb-bootloaders) sections to
System Tools.
-- Added [Network Security](https://fmhy.net/adblockvpnguide#network-security)
+- Added [Network Security](https://fmhy.net/privacy#network-security)
section to Privacy.
- Added
- [Fanfiction / Stories](https://fmhy.net/readingpiracyguide#fanfiction-stories)
+ [Fanfiction / Stories](https://fmhy.net/reading#fanfiction-stories)
section to Reading.
-- Added [Audio Metadata](https://fmhy.net/audiopiracyguide#audio-metadata)
+- Added [Audio Metadata](https://fmhy.net/audio#audio-metadata)
section to Audio.
-- Added [Wayland Compositors](https://fmhy.net/linuxguide#wayland-compositors)
+- Added [Wayland Compositors](https://fmhy.net/linux-macos#wayland-compositors)
section to Linux.
- Added [Latex Tools](https://fmhy.net/storage#latex-tools) section to Math.
@@ -77,12 +77,12 @@ see most.
[Downloads](https://fmhy.net/video#download-subtitles).
- Added multiple (15) new sections to
- [Dev Tools](https://fmhy.pages.dev/devtools), and cleaned up a lot of old
+ [Dev Tools](https://fmhy.pages.dev/developer-tools), and cleaned up a lot of old
sections.
- Cleaned up [Video Hosts](https://fmhy.pages.dev/video-tools#video-file-hosts),
- [Image Optimization](https://fmhy.net/img-tools#image-optimization) and
- [Icons / Avatars](https://fmhy.net/img-tools#icons-avatars) sections.
+ [Image Optimization](https://fmhy.net/image-tools#image-optimization) and
+ [Icons / Avatars](https://fmhy.net/image-tools#icons-avatars) sections.
- Started adding Non-English spellings (i.e. Chinese / 汉语方言) to titles in
the [Non-Eng section](https://fmhy.pages.dev/non-english). We haven't been
@@ -103,7 +103,7 @@ see most.
in Bio Sites. Feature-rich, nice UI, stood out to us when going through the
section.
-- Starred [RetroAchievements](https://fmhy.net/gamingpiracyguide#emulators) in
+- Starred [RetroAchievements](https://fmhy.net/gaming#emulators) in
Emulators. Add achievements to retro games / ROMs.
- Starred [r/Translator](https://www.reddit.com/r/translator/) in Translators.
@@ -112,26 +112,26 @@ see most.
- Starred [sdk.vercel](https://fmhy.net/ai#online-chatbots) in Online Chatbots.
Chatbot playground with unlimited GPT-4o.
-- Starred [FossifyOrg](https://fmhy.net/android-iosguide#foss-apks) in FOSS
+- Starred [FossifyOrg](https://fmhy.net/mobile#foss-apks) in FOSS
APKs. Covers most basic apps, minimal UI.
- Starred
- [Universal Android Debloater](https://fmhy.net/android-iosguide#optimization)
+ [Universal Android Debloater](https://fmhy.net/mobile#optimization)
in Android Optimization. Updated fork of original UAD.
-- Starred [Amarok](https://fmhy.net/android-iosguide#android-privacy) in Android
+- Starred [Amarok](https://fmhy.net/mobile#android-privacy) in Android
Privacy. Easily hide private files / apps on android.
-- Starred [Sideloadly](https://fmhy.net/android-iosguide#ios-apps) in iOS Apps.
+- Starred [Sideloadly](https://fmhy.net/mobile#ios-apps) in iOS Apps.
Lightweight, simple setup, auto-updates apps.
-- Starred [EeveeSpotify](https://fmhy.net/android-iosguide#ios-audio) in iOS
+- Starred [EeveeSpotify](https://fmhy.net/mobile#ios-audio) in iOS
Audio. Updated Spotify premium app now that spotilife has stopped working.
-- Starred [S0undTV](https://fmhy.net/android-iosguide#smart-tv-firestick) in
+- Starred [S0undTV](https://fmhy.net/mobile#smart-tv-firestick) in
Firestick. Ad-free Twitch for Firestick.
-- Starred [Uncyclopedia](https://fmhy.net/miscguide#random) in Fun Sites.
+- Starred [Uncyclopedia](https://fmhy.net/misc#random) in Fun Sites.
- Added star back to [Bloxstrap](https://fmhy.net/gaming-tools#roblox-tools).
Most issues are being fixed and repo seems to be active again.
diff --git a/docs/posts/july-2025.md b/docs/posts/july-2025.md
index 25e2824ab..072fbf9cd 100644
--- a/docs/posts/july-2025.md
+++ b/docs/posts/july-2025.md
@@ -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 [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 [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 [Axekin](https://fmhy.net/gamingpiracyguide#rom-sites) in ROM sites. Fast hosts, big library, lots of platforms.
+- Starred [Axekin](https://fmhy.net/gaming#rom-sites) in ROM sites. Fast hosts, big library, lots of platforms.
- Starred [NoPayStation](https://nopaystation.com/) in Sony ROMs. One of the best sources for Sony platform ROMs.
-- Starred [1DM](https://fmhy.net/android-iosguide#android-file-tools) in Android Download Managers as it [won in polls](https://i.ibb.co/zh2BKZ0z/image.png), and has features like split file support.
+- Starred [1DM](https://fmhy.net/mobile#android-file-tools) in Android Download Managers as it [won in polls](https://i.ibb.co/zh2BKZ0z/image.png), and has features like split file support.
-- Starred [Metrolist](https://fmhy.net/android-iosguide#youtube-music) in Android YouTube Music players as people feel this stands out the most of the Outertune forks.
+- Starred [Metrolist](https://fmhy.net/mobile#youtube-music) in Android YouTube Music players as people feel this stands out the most of the Outertune forks.
-- Starred [AntiSplit-M](https://fmhy.net/android-iosguide#apk-tools) in APK Tools. Easily merge split APK files.
+- Starred [AntiSplit-M](https://fmhy.net/mobile#apk-tools) in APK Tools. Easily merge split APK files.
-- Starred [bleh](https://fmhy.net/audiopiracyguide#last-fm-tools) in Last.fm Tools. Feature-rich customization script that makes the site look much better.
+- Starred [bleh](https://fmhy.net/audio#last-fm-tools) in Last.fm Tools. Feature-rich customization script that makes the site look much better.
-- Starred [PDALife](https://fmhy.net/android-iosguide#modded-apks) in Modded APKs. Easy download process, fast host, good for modded games.
+- Starred [PDALife](https://fmhy.net/mobile#modded-apks) in Modded APKs. Easy download process, fast host, good for modded games.
-- Starred [GamersNexus](https://fmhy.net/miscguide#tech-news) in Tech News. In-depth component reviews / news for PC building.
+- Starred [GamersNexus](https://fmhy.net/misc#tech-news) in Tech News. In-depth component reviews / news for PC building.
-- Starred [bt.etree, MiroPPB (ASOT), and BBC Essential](https://fmhy.net/audiopiracyguide#concerts-live-shows) in Concert / Live Shows.
+- Starred [bt.etree, MiroPPB (ASOT), and BBC Essential](https://fmhy.net/audio#concerts-live-shows) in Concert / Live Shows.
-- Starred [NovelFire](https://fmhy.net/readingpiracyguide#light-novels) in Light Novels. Nice UI, allows login to rate and save progress.
+- Starred [NovelFire](https://fmhy.net/reading#light-novels) in Light Novels. Nice UI, allows login to rate and save progress.
- Starred [LM Studio](https://fmhy.net/ai#self-hosting-tools) in AI Self-Hosting. Useful for running models locally, supports all GPUs, or runs on CPU if needed.
-- Starred [Tailscale](https://fmhy.net/adblockvpnguide#vpn-tools) in VPN Tools. Secure Network VPN that's easy to use and very [feature-rich](https://i.ibb.co/ZRhQBNtX/image.png).
+- Starred [Tailscale](https://fmhy.net/privacy#vpn-tools) in VPN Tools. Secure Network VPN that's easy to use and very [feature-rich](https://i.ibb.co/ZRhQBNtX/image.png).
-- Starred [Stop The Bleed](https://fmhy.net/edupiracyguide#med-school) in Med School. Free first aid video courses and resources.
+- Starred [Stop The Bleed](https://fmhy.net/educational#med-school) in Med School. Free first aid video courses and resources.
***
diff --git a/docs/posts/jun-2023.md b/docs/posts/jun-2023.md
index 07d960dc6..533c211b4 100644
--- a/docs/posts/jun-2023.md
+++ b/docs/posts/jun-2023.md
@@ -19,7 +19,7 @@ in seeing all minor changes you can follow our
### Wiki Updates
-- Added a [Chess / Checkers](/gamingpiracyguide/#chess--checkers) section to
+- Added a [Chess / Checkers](/gaming/#chess--checkers) section to
Browser Games.
- Added a [Stable Diffusion](/ai/#stable-diffusion) section to Artificial
@@ -58,25 +58,25 @@ in seeing all minor changes you can follow our
- Starred [Bark](/ai/#text-to-speech) in Text to Speech.
-- Starred [Firehawk52 Guide](/audiopiracyguide/#download-apps) in Audio
+- Starred [Firehawk52 Guide](/audio/#download-apps) in Audio
Downloading.
-- Starred [store.rg](/downloadpiracyguide/#freeware-sites) in Freeware Sites.
+- Starred [store.rg](/downloading/#freeware-sites) in Freeware Sites.
- Starred [f.lux](/toolsguide/#tweaking) in System Tweaking.
-- Starred [MacroDroid](/android-iosguide/#android-tools) in Android Tools.
+- Starred [MacroDroid](/mobile/#android-tools) in Android Tools.
- Starred [Rating Graph](https://www.ratingraph.com/) and
[DeepSearch](https://deepsearch.mycelebs.com/movie) in Tracking / Discovery.
-- Starred [Programming Learning Resources](/devtools/#learning--cheat-sheets) in
+- Starred [Programming Learning Resources](/developer-tools/#learning--cheat-sheets) in
Dev Tools.
-- Starred [CityHop](/audiopiracyguide/#ambient--relaxation) in Ambient /
+- Starred [CityHop](/audio/#ambient--relaxation) in Ambient /
Relaxation.
-- Starred [Knockout](/miscguide/#chat--forums) in Chat / Forums. Made by members
+- Starred [Knockout](/misc/#chat--forums) in Chat / Forums. Made by members
of facepunch forums after it shut down.
---
@@ -101,4 +101,4 @@ in seeing all minor changes you can follow our
- Unstarred Awesome ChatGPT as its no longer updated.
- Bromite doesn't seem to be maintained anymore, so we've replaced the main repo
- with an [autobuild](/android-iosguide/) for now.
+ with an [autobuild](/mobile/) for now.
diff --git a/docs/posts/june-2024.md b/docs/posts/june-2024.md
index 0ef6c94ec..ea80b59c1 100644
--- a/docs/posts/june-2024.md
+++ b/docs/posts/june-2024.md
@@ -25,31 +25,31 @@ in seeing all minor changes you can follow our
[3DS / DS](https://fmhy.net/gaming-tools#_3ds-ds-homebrew) and
[Playstation](https://fmhy.net/gaming-tools#playstation-homebrew) sections to
Homebrew.
-- Added [Virtual Reality](https://fmhy.net/gamingpiracyguide#virtual-reality)
+- Added [Virtual Reality](https://fmhy.net/gaming#virtual-reality)
and [Game Save](https://fmhy.net/gaming-tools#game-saves) sections to Gaming.
-- Added [Dev Communities](https://fmhy.net/devtools#dev-communities) and
- [Reverse Engineering](https://fmhy.net/devtools#reverse-engineering) sections
+- Added [Dev Communities](https://fmhy.net/developer-tools#dev-communities) and
+ [Reverse Engineering](https://fmhy.net/developer-tools#reverse-engineering) sections
to Dev Tools.
-- Added [Linux Communities](https://fmhy.net/linuxguide#linux-communities)
+- Added [Linux Communities](https://fmhy.net/linux-macos#linux-communities)
section to Linux.
-- Added [Flights](https://fmhy.net/miscguide#flights) section to Travel.
+- Added [Flights](https://fmhy.net/misc#flights) section to Travel.
- Organized the Maps section, and added multiple
- [new subsections](https://fmhy.net/miscguide#maps) to it.
+ [new subsections](https://fmhy.net/misc#maps) to it.
-- Debloated [Indexes](https://fmhy.net/miscguide#indexes),
- [Multi-Tool](https://fmhy.net/miscguide#multi-tool-sites),
- [File Scanners](https://fmhy.net/adblockvpnguide#file-scanners),
+- Debloated [Indexes](https://fmhy.net/misc#indexes),
+ [Multi-Tool](https://fmhy.net/misc#multi-tool-sites),
+ [File Scanners](https://fmhy.net/privacy#file-scanners),
[Archiving](https://fmhy.net/internet-tools#archiving) and
[Sheet Music](https://fmhy.net/storage#music-sheet-collections) sections.
- Re-added our
[Unsafe Sites Filter](https://github.com/WindowsAurora/FMHYFilterlist/). This
can be added to uBlock to stop anything in
- [unsafe sites](https://fmhy.net/unsafesites) from loading in your browser.
+ [unsafe sites](https://fmhy.net/unsafe) from loading in your browser.
- We compared FMHY to the badware filter list to make sure we didn't have
anything on it, [and we didn't](https://ibb.co/9TQ6Nnv).
@@ -62,16 +62,16 @@ in seeing all minor changes you can follow our
### Stars Added ⭐
- Starred both squid.wtf and MP3 Daddy in
- [Audio Ripping](https://fmhy.net/audiopiracyguide#audio-ripping-sites). Deezer
+ [Audio Ripping](https://fmhy.net/audio#audio-ripping-sites). Deezer
ripping sites both capable of getting FLAC files.
- Starred [Morphic](https://fmhy.net/ai#online-chatbots) in Online Chatbots.
GPT4o powered search w/ no limits.
-- Starred [ROM Heaven](https://fmhy.net/gamingpiracyguide#rom-sites) in ROM
+- Starred [ROM Heaven](https://fmhy.net/gaming#rom-sites) in ROM
sites. Badass new ROM site with single click DDL and a high quality UI.
-- Starred [All Things Linux](https://fmhy.net/linuxguide#linux-communities) in
+- Starred [All Things Linux](https://fmhy.net/linux-macos#linux-communities) in
Linux Communities. Linux Discord server focused on helping others and
learning.
@@ -81,7 +81,7 @@ in seeing all minor changes you can follow our
- Starred [CompactGUI](https://fmhy.net/file-tools#file-archivers) in File
Archivers. Very [useful](https://ibb.co/xm23Xbh) archiver with nice UI.
-- Starred [Spicetify](https://fmhy.net/audiopiracyguide#spotify-adblockers) in
+- Starred [Spicetify](https://fmhy.net/audio#spotify-adblockers) in
Spotify Adblockers. This has adblock plugins that work just as well as SpotX.
- Starred [UI Revert Script](https://fmhy.net/social-media-tools#reddit-tools)
@@ -93,13 +93,13 @@ in seeing all minor changes you can follow our
- Starred [PurpleAdblock](https://fmhy.net/social-media-tools#twitch-adblockers)
in Twitch Adblockers. Got a update recently and seems to be working again.
-- Starred [ImageGlass](https://fmhy.net/img-tools#image-viewers) in Image
+- Starred [ImageGlass](https://fmhy.net/image-tools#image-viewers) in Image
Viewers. Popular lightweight image viewer with a nice UI.
- Starred [Neal.fun](https://fmhy.net/storage#fun-indexes) in Fun Indexes. OG
site with lots of fun games / experiments.
-- Starred [Pi-hole](https://fmhy.net/adblockvpnguide#dns-adblocking) in DNS
+- Starred [Pi-hole](https://fmhy.net/privacy#dns-adblocking) in DNS
Adblockers as their lists are more updated than NextDNS.
- Starred [ChatGPT](https://fmhy.net/ai#online-chatbots) in Online Chatbots as
diff --git a/docs/posts/june-2025.md b/docs/posts/june-2025.md
index 91f1e3482..cc714a1c2 100644
--- a/docs/posts/june-2025.md
+++ b/docs/posts/june-2025.md
@@ -24,35 +24,35 @@ in seeing all minor changes you can follow our
- You can now search FMHY using [Brave Goggles](https://github.com/fmhy/bookmarks?tab=readme-ov-file#goggle).
-- Added [Nintendo](https://fmhy.net/gamingpiracyguide#nintendo-roms), [Sony](https://fmhy.net/gamingpiracyguide#sony-roms), and [Resource](https://fmhy.net/gamingpiracyguide#rom-resources) sections to ROMs.
+- Added [Nintendo](https://fmhy.net/gaming#nintendo-roms), [Sony](https://fmhy.net/gaming#sony-roms), and [Resource](https://fmhy.net/gaming#rom-resources) sections to ROMs.
-- Added [Rubik's Cube](https://fmhy.net/gamingpiracyguide#rubiks-cube), [Minesweeper](https://fmhy.net/gamingpiracyguide#minesweeper), and [Crossword](https://fmhy.net/gamingpiracyguide#crossword-puzzles) sections to Puzzles.
+- Added [Rubik's Cube](https://fmhy.net/gaming#rubiks-cube), [Minesweeper](https://fmhy.net/gaming#minesweeper), and [Crossword](https://fmhy.net/gaming#crossword-puzzles) sections to Puzzles.
-- Added [Game Learning](https://fmhy.net/edupiracyguide#game-learning) section to Educational, with [Rubik's Cube](https://fmhy.net/edupiracyguide#rubiks-cube) + [Chess](https://fmhy.net/edupiracyguide#chess) subsections.
+- Added [Game Learning](https://fmhy.net/educational#game-learning) section to Educational, with [Rubik's Cube](https://fmhy.net/educational#rubiks-cube) + [Chess](https://fmhy.net/educational#chess) subsections.
- Added [Firefox Tools](https://fmhy.net/internet-tools#firefox-tools) section to Internet.
-- Added [Data Breach Monitoring](https://fmhy.net/adblockvpnguide#data-breach-monitoring) section to Privacy.
+- Added [Data Breach Monitoring](https://fmhy.net/privacy#data-breach-monitoring) section to Privacy.
- Added [Task Automation](https://fmhy.net/system-tools#task-automation) section to System Tools.
-- Added [Unix-Like](https://fmhy.net/linuxguide#unix-like) section to the bottom of Linux.
+- Added [Unix-Like](https://fmhy.net/linux-macos#unix-like) section to the bottom of Linux.
-- Added Size Limits + Signup Requirements to [Remote Torrenting](https://fmhy.net/torrentpiracyguide#remote-torrenting) descriptions.
+- Added Size Limits + Signup Requirements to [Remote Torrenting](https://fmhy.net/torrenting#remote-torrenting) descriptions.
-- Re-organized [Android Audio Players](https://fmhy.net/android-iosguide#android-audio-players) based on [Poll Results](https://i.imgur.com/2FOFOth.png). The four stars are now: Poweramp, Musicolet, VLC, and Foobar.
+- Re-organized [Android Audio Players](https://fmhy.net/mobile#android-audio-players) based on [Poll Results](https://i.imgur.com/2FOFOth.png). The four stars are now: Poweramp, Musicolet, VLC, and Foobar.
-- Re-organized [Android Keyboards](https://fmhy.net/android-iosguide#keyboard-tools) based on [Poll Results](https://i.imgur.com/OE8zsC0.png). FUTO managed to keep its top spot, and Heli was bumped up much higher.
+- Re-organized [Android Keyboards](https://fmhy.net/mobile#keyboard-tools) based on [Poll Results](https://i.imgur.com/OE8zsC0.png). FUTO managed to keep its top spot, and Heli was bumped up much higher.
- Re-organized [Live Sports](https://fmhy.net/video#live-sports), removed sites w/ broken or dupe players, and starred a few that seemed to stand out. [Before vs. After](https://i.imgur.com/eDioF9L.png).
-- Re-organized [Radio Streaming](https://fmhy.net/audiopiracyguide#radio-streaming) + [Internet Radio](https://fmhy.net/audiopiracyguide#internet-radio), added new stars, new labels, and moved both sections out of storage.
+- Re-organized [Radio Streaming](https://fmhy.net/audio#radio-streaming) + [Internet Radio](https://fmhy.net/audio#internet-radio), added new stars, new labels, and moved both sections out of storage.
- Re-organized [RSS Readers](https://fmhy.net/internet-tools#rss-readers), improved labels, removed bad ones. [Before vs. After](https://i.imgur.com/oAVEC6H.png).
-- Re-organized [Text Adventures](https://fmhy.net/gamingpiracyguide#text-adventures), added labels, and moved out of storage. [Before vs. After](https://i.imgur.com/JrdEDC3.png).
+- Re-organized [Text Adventures](https://fmhy.net/gaming#text-adventures), added labels, and moved out of storage. [Before vs. After](https://i.imgur.com/JrdEDC3.png).
-- Re-organized Dev Tool Sites, moved out of storage, and separated into [Indexes](https://fmhy.net/devtools#dev-tool-indexes) + [Online Toolkits](https://fmhy.net/devtools#online-toolkits). [Before vs. After](https://i.imgur.com/JyJOW9v.png).
+- Re-organized Dev Tool Sites, moved out of storage, and separated into [Indexes](https://fmhy.net/developer-tools#dev-tool-indexes) + [Online Toolkits](https://fmhy.net/developer-tools#online-toolkits). [Before vs. After](https://i.imgur.com/JyJOW9v.png).
- Updated [grading criteria #4 and #5](https://github.com/fmhy/FMHY/wiki/Stream-Site-Grading) to reward sites that have source auto-switch + episode auto-next working across all their servers. Also merged quality, subtitle, and media type criteria into #1, to simplify scoring, and started giving points for watch party support. This has reduced the total amount of stars, and helped the best sites stand out more. [Before vs. After]( https://i.imgur.com/omYr1pQ.png).
@@ -66,7 +66,7 @@ in seeing all minor changes you can follow our
- Starred [Blip](https://fmhy.net/file-tools#file-transfer) in File Transfer. Easily transfer large files over the internet, or your own devices. Well-liked by everyone in our discord who has tried it.
-- Starred [ImageToolbox](https://fmhy.net/android-iosguide#camera-tools) in Android Image Editors. Open-source, feature-rich, and well maintained.
+- Starred [ImageToolbox](https://fmhy.net/mobile#camera-tools) in Android Image Editors. Open-source, feature-rich, and well maintained.
- Starred [Parabolic](https://fmhy.net/social-media-tools#youtube-downloaders) in YouTube Downloaders. Open-source, multi-platform, one of the easier to use YT-DLP frontends.
@@ -74,13 +74,13 @@ in seeing all minor changes you can follow our
- Starred [GameBanana](https://fmhy.net/gaming-tools#game-mods) in Game Mods. High quality, well-organized, the go-to for certain franchises like Sonic, Celeste, etc.
-- Starred [TETR.IO](https://fmhy.net/gamingpiracyguide#party-multiplayer) in Multiplayer Browser Games. F2P multiplayer Tetris thats popular, feature-rich, and [well-maintained](https://tetr.io/about/patchnotes/) by its devs.
+- Starred [TETR.IO](https://fmhy.net/gaming#party-multiplayer) in Multiplayer Browser Games. F2P multiplayer Tetris thats popular, feature-rich, and [well-maintained](https://tetr.io/about/patchnotes/) by its devs.
-- Starred [Mario Kart PC](https://fmhy.net/gamingpiracyguide#browser-games) in Browser Games. SNES Style Mario Kart w/ [Custom Maps](https://mkpc.malahieude.net/creations.php) & Multiplayer.
+- Starred [Mario Kart PC](https://fmhy.net/gaming#browser-games) in Browser Games. SNES Style Mario Kart w/ [Custom Maps](https://mkpc.malahieude.net/creations.php) & Multiplayer.
-- Starred [RootlessJamesDSP](https://fmhy.net/android-iosguide#android-audio) in Android Audio Equalizers. Open-source, supports many apps, AutoEQ support, good Poweramp alt.
+- Starred [RootlessJamesDSP](https://fmhy.net/mobile#android-audio) in Android Audio Equalizers. Open-source, supports many apps, AutoEQ support, good Poweramp alt.
-- Starred [Plonk It](https://fmhy.net/gamingpiracyguide#geoguessr-games) in GeoGuessr Games. Active community for learning GeoGuessr.
+- Starred [Plonk It](https://fmhy.net/gaming#geoguessr-games) in GeoGuessr Games. Active community for learning GeoGuessr.
- Starred [Zed](https://fmhy.net/ai#coding-ais) in Coding AIs. Collaborative coding AI, getting positive attention from [HackerNews](https://news.ycombinator.com/item?id=43959710) + our members.
diff --git a/docs/posts/mar-2025.md b/docs/posts/mar-2025.md
index acd58bd3f..7f53385fe 100644
--- a/docs/posts/mar-2025.md
+++ b/docs/posts/mar-2025.md
@@ -22,7 +22,7 @@ in seeing all minor changes you can follow our
- Re-ordered [AI image generators](https://fmhy.net/ai#image-generation) based on [poll results](https://challonge.com/xfu596g9). Thanks to everyone who voted, and congrats to NexusAI Image for coming out on top.
-- Separated [Image Hosts](https://fmhy.net/img-tools#image-hosts) & [Online Galleries](https://fmhy.net/img-tools#online-galleries) into their own subsections + added size, file retention, and signup requirement tags.
+- Separated [Image Hosts](https://fmhy.net/image-tools#image-hosts) & [Online Galleries](https://fmhy.net/image-tools#online-galleries) into their own subsections + added size, file retention, and signup requirement tags.
- Split Web Hosting Sites into [Dynamic](https://fmhy.net/storage#dynamic-page-hosting), [Static](https://fmhy.net/storage#static-page-hosting) & [Builders](https://fmhy.net/storage#website-builders) + added space, monthly transfer and traffic tags to each.
@@ -32,7 +32,7 @@ in seeing all minor changes you can follow our
- Added mobile optimization scores for all the [streaming sites]().
-- 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 [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.
diff --git a/docs/posts/march-2024.md b/docs/posts/march-2024.md
index 5b61deb5d..394e3a4cd 100644
--- a/docs/posts/march-2024.md
+++ b/docs/posts/march-2024.md
@@ -23,29 +23,29 @@ in seeing all minor changes you can follow our
[Fonts](https://cse.google.com/cse?cx=82154ebab193e493d).
- Added section for
- [Productivity Tools](https://fmhy.net/miscguide#productivity-tools) in Useful
+ [Productivity Tools](https://fmhy.net/misc#productivity-tools) in Useful
Sites.
- Added section for [File Recovery](https://fmhy.net/file-tools#file-recovery)
in File Tools.
- Added section for
- [Fingerprinting / Tracking](https://fmhy.net/adblockvpnguide#fingerprinting-tracking)
+ [Fingerprinting / Tracking](https://fmhy.net/privacy#fingerprinting-tracking)
in Privacy.
- Added sections for
- [Mario Kart](https://fmhy.net/gamingpiracyguide#mario-kart-tools) +
- [Geometry Dash](https://fmhy.net/gamingpiracyguide#geometry-dash-tools) in
+ [Mario Kart](https://fmhy.net/gaming#mario-kart-tools) +
+ [Geometry Dash](https://fmhy.net/gaming#geometry-dash-tools) in
Gaming.
- Added section for
- [Crypto / Bitcoin](https://fmhy.net/miscguide#crypto-bitcoin) in Career.
+ [Crypto / Bitcoin](https://fmhy.net/misc#crypto-bitcoin) in Career.
-- Added section for [Raspberry Pi](https://fmhy.net/linuxguide#raspberry-pi) in
+- Added section for [Raspberry Pi](https://fmhy.net/linux-macos#raspberry-pi) in
Linux.
-- Added sections for [Design Apps](https://fmhy.net/img-tools#design-apps) +
- [Design Assets](https://fmhy.net/img-tools#free-assets) in Image Tools.
+- Added sections for [Design Apps](https://fmhy.net/image-tools#design-apps) +
+ [Design Assets](https://fmhy.net/image-tools#free-assets) in Image Tools.
- Our Minecraft Server is now live. Click
**[here](https://fmhy.net/posts/minecraft-server)** to join.
@@ -55,7 +55,7 @@ in seeing all minor changes you can follow our
### Stars Added ⭐
- Starred
- [yet another music server](https://fmhy.net/audiopiracyguide#audio-downloading)
+ [yet another music server](https://fmhy.net/audio#audio-downloading)
in Audio Downloading. Multi-site DDL (deezer, qobuz, tidal, spotify, youtube,
FLAC.)
@@ -74,7 +74,7 @@ in seeing all minor changes you can follow our
[Simply Optimized](https://fmhy.net/storage#minecraft-optimization-mods) in
Minecraft Optimization. Some prefer this to Fabulously Optimized.
-- Starred [SolidTorrents](https://fmhy.net/torrentpiracyguide#aggregators) in
+- Starred [SolidTorrents](https://fmhy.net/torrenting#aggregators) in
Torrent Aggregators.
- Starred [MrGamingStreams](https://fmhy.net/video#live-tv-sports) in
diff --git a/docs/posts/may-2023.md b/docs/posts/may-2023.md
index d813fb529..0be699f78 100644
--- a/docs/posts/may-2023.md
+++ b/docs/posts/may-2023.md
@@ -28,24 +28,24 @@ in seeing all minor changes you can follow our
to [System Tools](/system-tools).
- Added Chat / Forums, Image / Video, Interactive, Interesting and Random
- subsections to [Fun Sites](/miscguide/#fun-sites).
+ subsections to [Fun Sites](/misc/#fun-sites).
-- Added [Gardening](/miscguide/#gardening) section to Miscellaneous.
+- Added [Gardening](/misc/#gardening) section to Miscellaneous.
-- Made a [Software CSE](/downloadpiracyguide/#software-sites) out of the
+- Made a [Software CSE](/downloading/#software-sites) out of the
software sites.
---
### Stars Added ⭐
-- Starred [Torrminatorr](/gamingpiracyguide/#download-games) in Gaming Sites.
+- Starred [Torrminatorr](/gaming/#download-games) in Gaming Sites.
Tormminatorr is back!
-- Starred [GOG Games](/gamingpiracyguide/#download-games) in Gaming Sites. Gog
+- Starred [GOG Games](/gaming/#download-games) in Gaming Sites. Gog
is back on clearnet!
-- Starred [FileCR](/downloadpiracyguide/#software-sites) in Software Sites.
+- Starred [FileCR](/downloading/#software-sites) in Software Sites.
FileCR has removed their anti-adblock.
- Starred [Streaminal-TV](/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
Downloading. Anime site with single click DDLs.
-- Starred [Cubari](/readingpiracyguide/#manga-sites) in Manga Sites. Multi-site
+- Starred [Cubari](/reading/#manga-sites) in Manga Sites. Multi-site
manga scraper.
- Starred [FoxyTab](https://addons.mozilla.org/en-US/firefox/addon/foxytab/),
@@ -63,12 +63,12 @@ in seeing all minor changes you can follow our
[Scroll Anywhere](https://addons.mozilla.org/en-US/firefox/addon/scroll_anywhere/)
in Browser Extensions.
-- Starred [PokeSmash](/miscguide/#random) in Fun Sites.
+- Starred [PokeSmash](/misc/#random) in Fun Sites.
- Re-added + starred [WCO](/video/#cartoon-streaming) in Cartoon
Streaming. This went paid for a bit, but seems to be free again.
-- Re-added + starred [CloudStream](/android-iosguide/#android-streaming) in
+- Re-added + starred [CloudStream](/mobile/#android-streaming) in
Android Streaming. Some extensions are still getting updates.
---
diff --git a/docs/posts/may-2024.md b/docs/posts/may-2024.md
index 980b6ae95..cfc725f04 100644
--- a/docs/posts/may-2024.md
+++ b/docs/posts/may-2024.md
@@ -20,50 +20,50 @@ in seeing all minor changes you can follow our
### Wiki Updates
-- Added [Multi-Game](https://fmhy.net/gamingpiracyguide#multi-game-sites),
- [Party](https://fmhy.net/gamingpiracyguide#party-games),
- [Shooter](https://fmhy.net/gamingpiracyguide#shooter),
- [Platforming](https://fmhy.net/gamingpiracyguide#platformer),
- [Simulation](https://fmhy.net/gamingpiracyguide#simulation),
- [Arcade](https://fmhy.net/gamingpiracyguide#arcade) and
- [RPG](https://fmhy.net/gamingpiracyguide#rpg) sections to Browser Games.
+- Added [Multi-Game](https://fmhy.net/gaming#multi-game-sites),
+ [Party](https://fmhy.net/gaming#party-games),
+ [Shooter](https://fmhy.net/gaming#shooter),
+ [Platforming](https://fmhy.net/gaming#platformer),
+ [Simulation](https://fmhy.net/gaming#simulation),
+ [Arcade](https://fmhy.net/gaming#arcade) and
+ [RPG](https://fmhy.net/gaming#rpg) sections to Browser Games.
-- Added [Med School](https://fmhy.net/edupiracyguide#med-school),
- [Philosophy](https://fmhy.net/edupiracyguide#philosophy) and
- [Geography](https://fmhy.net/edupiracyguide#geography-datasets) sections to
+- Added [Med School](https://fmhy.net/educational#med-school),
+ [Philosophy](https://fmhy.net/educational#philosophy) and
+ [Geography](https://fmhy.net/educational#geography-datasets) sections to
Education.
-- Added [Linux Guides](https://fmhy.net/linuxguide#linux-guides) and
- [Window Managers](https://fmhy.net/linuxguide#window-managers) sections to
+- Added [Linux Guides](https://fmhy.net/linux-macos#linux-guides) and
+ [Window Managers](https://fmhy.net/linux-macos#window-managers) sections to
Linux.
-- Added [Public Domain](https://fmhy.net/readingpiracyguide#public-domain)
+- Added [Public Domain](https://fmhy.net/reading#public-domain)
section to Reading.
-- Added [German](https://fmhy.net/edupiracyguide#german) section to Language
+- Added [German](https://fmhy.net/educational#german) section to Language
Learning.
- Renamed Audio Download to
- [Audio Ripping](https://fmhy.net/audiopiracyguide#audio-ripping), cleaned up
+ [Audio Ripping](https://fmhy.net/audio#audio-ripping), cleaned up
the section, and separated sites and tools into their own subsections.
- Cleaned up
- [qBittorrent Tools](https://fmhy.net/torrentpiracyguide#qbittorrent-tools),
+ [qBittorrent Tools](https://fmhy.net/torrenting#qbittorrent-tools),
[Paywall Bypass](https://fmhy.net/internet-tools#paywall-bypass),
[Pastebins](https://fmhy.pages.dev/text-tools#pastebins) and
[OSINT](https://fmhy.net/internet-tools#open-source-intelligence) sections.
-- Moved [Periodic Tables](https://fmhy.net/edupiracyguide#periodic-tables),
- [Quotes](https://fmhy.net/edupiracyguide#quote-indexes),
- [File Scanners](https://fmhy.net/adblockvpnguide#file-scanners) and
- [Sheet Music](https://fmhy.net/audiopiracyguide#sheet-music) out of storage
+- Moved [Periodic Tables](https://fmhy.net/educational#periodic-tables),
+ [Quotes](https://fmhy.net/educational#quote-indexes),
+ [File Scanners](https://fmhy.net/privacy#file-scanners) and
+ [Sheet Music](https://fmhy.net/audio#sheet-music) out of storage
into main sections.
- Moved [Gaming Tools](https://fmhy.net/gaming-tools) out of gaming onto its own
page.
-- Separated [Painting](https://fmhy.net/img-tools#painting) and
- [Drawing](https://fmhy.net/img-tools#drawing) into their own sections.
+- Separated [Painting](https://fmhy.net/image-tools#painting) and
+ [Drawing](https://fmhy.net/image-tools#drawing) into their own sections.
---
@@ -76,7 +76,7 @@ in seeing all minor changes you can follow our
- Starred [Nunflix](https://fmhy.net/video#multi-server) in
Streaming. Multi-server streaming with fast hosts and nice UI.
-- Starred [Game Bounty](https://fmhy.net/downloadpiracyguide#software-sites) in
+- Starred [Game Bounty](https://fmhy.net/downloading#software-sites) in
Software as they've started uploading software recently.
- Starred [FastStream](https://fmhy.net/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.
Oldschool voice chat client used and loved by many.
-- Starred [Tixati](https://fmhy.net/torrentpiracyguide#torrent-clients) in
+- Starred [Tixati](https://fmhy.net/torrenting#torrent-clients) in
Torrent Clients. Simple client still popular in some circles.
- Starred [SpecialK](https://fmhy.net/gaming-tools#optimization-tools) in Gaming
Optimization. Feature-rich game optimization tool.
-- Starred [qView](https://fmhy.net/img-tools#image-viewers) in Image Viewers.
+- Starred [qView](https://fmhy.net/image-tools#image-viewers) in Image Viewers.
Minimal and efficient open-source image viewer.
-- Starred [SauceNAO](https://fmhy.net/img-tools#reverse-image-search) in Reverse
+- Starred [SauceNAO](https://fmhy.net/image-tools#reverse-image-search) in Reverse
Image Search. Multi-site search engine.
- Starred [Puter](https://fmhy.net/system-tools#os-emulators) in OS Emulators.
@@ -109,7 +109,7 @@ in seeing all minor changes you can follow our
Minecraft Tools. Comprehensive block info database.
- Starred
- [Shazam + WatZatSong](https://fmhy.net/audiopiracyguide#song-identification)
+ [Shazam + WatZatSong](https://fmhy.net/audio#song-identification)
in Song Identification. Popular song identification tools.
---
diff --git a/docs/posts/may-2025.md b/docs/posts/may-2025.md
index 62aee5576..59f2f12ca 100644
--- a/docs/posts/may-2025.md
+++ b/docs/posts/may-2025.md
@@ -24,13 +24,13 @@ in seeing all minor changes you can follow our
- Added [ARPG / MMORPG](https://fmhy.net/gaming-tools#arpg-mmorpg-tools) section in Gaming Tools.
-- Added [STEM](https://fmhy.net/readingpiracyguide#stem-resources) + [Kindle Tools](https://fmhy.net/readingpiracyguide#kindle-tools) sections in Reading.
+- Added [STEM](https://fmhy.net/reading#stem-resources) + [Kindle Tools](https://fmhy.net/reading#kindle-tools) sections in Reading.
- Added [Disc Utilities](https://fmhy.net/video-tools#disc-utilities) + [Video Enhancement / Effects](https://fmhy.net/video-tools#video-enhancement-effects) sections in Video Tools.
- Split Steam / Epic section into subsections: [Client Tools](https://fmhy.net/gaming-tools#client-tools), [DLC Unlock / DRM Bypass](https://fmhy.net/gaming-tools#dlc-unlock-drm-bypass), [Steam Store](https://fmhy.net/gaming-tools#steam-store).
-- Split macOS section into subsections: [Video](https://fmhy.net/linuxguide#mac-video), [Audio](https://fmhy.net/linuxguide#mac-audio), [Image](https://fmhy.net/linuxguide#mac-images), [Internet](https://fmhy.net/linuxguide#mac-internet), [System](https://fmhy.net/linuxguide#system-tools), [File](https://fmhy.net/linuxguide#file-tools-1).
+- Split macOS section into subsections: [Video](https://fmhy.net/linux-macos#mac-video), [Audio](https://fmhy.net/linux-macos#mac-audio), [Image](https://fmhy.net/linux-macos#mac-images), [Internet](https://fmhy.net/linux-macos#mac-internet), [System](https://fmhy.net/linux-macos#system-tools), [File](https://fmhy.net/linux-macos#file-tools-1).
- Split PDF Tools into subsections: [Online Toolkits](https://fmhy.net/file-tools#online-pdf-toolkits), [Offline Toolkits](https://fmhy.net/file-tools#offline-pdf-toolkits), [Conversion](https://fmhy.net/file-tools#pdf-conversion-tools), [Utilities](https://fmhy.net/file-tools#pdf-utilities).
@@ -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 [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.
@@ -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 [BatCave](https://fmhy.net/readingpiracyguide#comics) in Comic Sites. New comic site with tracking, ratings, and a nice UI.
+- Starred [BatCave](https://fmhy.net/reading#comics) in Comic Sites. New comic site with tracking, ratings, and a nice UI.
- Starred [PairDrop](https://fmhy.net/file-tools#p2p-transfer) in P2P File Transfer. Open-source, easy to use, allows creating rooms.
-- Starred [Five Books](https://fmhy.net/readingpiracyguide#curated-recommendations) in Book Recommendations. Expert recommended top 5 lists with lots of categories.
+- Starred [Five Books](https://fmhy.net/reading#curated-recommendations) in Book Recommendations. Expert recommended top 5 lists with lots of categories.
- Starred [VideoGameCanon](https://fmhy.net/gaming-tools#curated-recommendations) in Game Recommendations. Game top 1000 list that people in our server find useful.
- Starred [Mini QR](https://fmhy.net/internet-tools#url-tools) in URL Tools. Lets you create custom QR code art.
-- Starred [Table Habit](https://fmhy.net/android-iosguide#productivity-trackers) in Android Productivity Trackers. Open-source, updated regularly, and has a nice UI.
+- Starred [Table Habit](https://fmhy.net/mobile#productivity-trackers) in Android Productivity Trackers. Open-source, updated regularly, and has a nice UI.
- Starred both [BGBye + pixelcut](https://fmhy.net/storage#background-removers) in Background Removers as they seemed to work the best.
- Starred [EncycloSearch](https://encyclosearch.org/) in Encyclopedias. Combines two dozen encyclopedias into one search engine.
-- Starred [Exact Audio Copy](https://fmhy.net/audiopiracyguide#audio-ripping-tools) in Audio Ripping. Popular CD ripping tool, recommended in Redacted's interview guide.
+- Starred [Exact Audio Copy](https://fmhy.net/audio#audio-ripping-tools) in Audio Ripping. Popular CD ripping tool, recommended in Redacted's interview guide.
- Switched to [AI Studio](https://fmhy.net/ai#online-chatbots) as Google's main chatbot as it works well on mobile, is less laggy, has chat history, and less censorship than Gemini.
diff --git a/docs/posts/nov-2024.md b/docs/posts/nov-2024.md
index a498b308f..086b5a15f 100644
--- a/docs/posts/nov-2024.md
+++ b/docs/posts/nov-2024.md
@@ -24,11 +24,11 @@ in seeing all minor changes you can follow our
- The [FMHY SafeGuard](https://github.com/kenhendricks00/FMHY-SafeGuard) extension is ready to be tested. Let us know how it works for you guys, and ty to everyone who made it happen.
-- Split [FOSS](https://fmhy.net/downloadpiracyguide#foss-sites) and [Freeware](https://fmhy.net/downloadpiracyguide#freeware-sites) into separate sections, and cleaned up formatting: [before vs after](https://i.ibb.co/M5F1Dk7/image.png).
+- Split [FOSS](https://fmhy.net/downloading#foss-sites) and [Freeware](https://fmhy.net/downloading#freeware-sites) into separate sections, and cleaned up formatting: [before vs after](https://i.ibb.co/M5F1Dk7/image.png).
- Split [Text Editors](https://fmhy.net/text-tools#text-editors) and [Note-Taking](https://fmhy.net/text-tools#note-taking) into separate sections, added labels, and removed any that were low quality or abandoned.
-- Split [Radio Stations](https://fmhy.net/audiopiracyguide#radio-streaming) and [Podcasts](https://fmhy.net/audiopiracyguide#podcast-streaming) into separate sections.
+- Split [Radio Stations](https://fmhy.net/audio#radio-streaming) and [Podcasts](https://fmhy.net/audio#podcast-streaming) into separate sections.
- Added tags to bookmark managers, and removed ones that looked low quality: [before vs after](https://i.ibb.co/nczmmrv/3453453453.jpg).
@@ -38,7 +38,7 @@ in seeing all minor changes you can follow our
- Added tags to Link in Bio, and removed any that seemed low quality: [before vs after](https://i.ibb.co/BjZ3SpR/image.png).
-- Added a [Special Interests](https://fmhy.net/gamingpiracyguide#special-interest) section to gaming, to help debloat the main DDL section a bit.
+- Added a [Special Interests](https://fmhy.net/gaming#special-interest) section to gaming, to help debloat the main DDL section a bit.
***
@@ -48,23 +48,23 @@ in seeing all minor changes you can follow our
- Starred [Kdenlive](https://fmhy.net/video-tools#video-editors) in Video Editors. Open-source, feature-rich, multi-platform editor.
-- Starred [Khinsider](https://fmhy.net/audiopiracyguide#game-soundtracks) in Game Soundtracks. Popular soundtrack site with big library.
+- Starred [Khinsider](https://fmhy.net/audio#game-soundtracks) in Game Soundtracks. Popular soundtrack site with big library.
- Starred [Camo](https://fmhy.net/video-tools) in Video Tools. Allows you to use any device as a webcam.
- Starred [FMSTREAM](https://fmhy.net/storage#live-radio) in Radio Streaming. The biggest online radio directory on the internet.
-- Starred [Thunderbird](https://fmhy.net/android-iosguide#android-internet) in Android Internet as its just a better version of K-9 Mail.
+- Starred [Thunderbird](https://fmhy.net/mobile#android-internet) in Android Internet as its just a better version of K-9 Mail.
-- Starred [Pixlr](https://fmhy.net/img-tools#online-editors) in Online Image Editors. Feature-rich editor with nice UI. Has daily limit but it can be bypassed with the script linked.
+- Starred [Pixlr](https://fmhy.net/image-tools#online-editors) in Online Image Editors. Feature-rich editor with nice UI. Has daily limit but it can be bypassed with the script linked.
- Starred [x266.mov](https://fmhy.net/social-media-tools#discord-tools) in Discord Tools. Allows you to embed large videos on Discord.
-- Starred [Playlists.cloud](https://fmhy.net/audiopiracyguide#spotify-tools) in Spotify Tools. Unlimited playlist transfer between Spotify / Apple Music.
+- Starred [Playlists.cloud](https://fmhy.net/audio#spotify-tools) in Spotify Tools. Unlimited playlist transfer between Spotify / Apple Music.
-- Starred [InfiCourses](https://fmhy.net/edupiracyguide#downloading) in Course DDL. Big library with courses tough to find elsewhere.
+- Starred [InfiCourses](https://fmhy.net/educational#downloading) in Course DDL. Big library with courses tough to find elsewhere.
-- Starred [Excalidraw](https://fmhy.net/img-tools#drawing) in Drawing Tools. Feature-rich compared to similar web apps.
+- Starred [Excalidraw](https://fmhy.net/image-tools#drawing) in Drawing Tools. Feature-rich compared to similar web apps.
- Went through [SMS verification](https://fmhy.net/storage#sms-verification-sites) and starred ones that stood out the most.
diff --git a/docs/posts/oct-2023.md b/docs/posts/oct-2023.md
index bc2db0b11..9c43fa87a 100644
--- a/docs/posts/oct-2023.md
+++ b/docs/posts/oct-2023.md
@@ -25,7 +25,7 @@ in seeing all minor changes you can follow our
from FMHY. You can also download the guides yourself by using this
[script](https://gist.github.com/Rust1667/efc055debaf4876e4de39cc0d32f18c1).
-- Made a [Pokémon](/gamingpiracyguide/#pok%C3%A9mon-tools) section in Gaming
+- Made a [Pokémon](/gaming/#pok%C3%A9mon-tools) section in Gaming
Tools and an [Email](/internet-tools#email-tools) section in Internet Tools.
- Added [emojis](https://i.imgur.com/mgYq8nF.png) to indicate when we're linking
@@ -39,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 [BlueROMs](/gamingpiracyguide/#rom-sites) in ROM sites. Simple DDL
+- Starred [BlueROMs](/gaming/#rom-sites) in ROM sites. Simple DDL
site with lots of systems.
- Starred [Qiwi](/storage/#file-sharing-tools) in File Hosts. Fast host that's
@@ -49,7 +49,7 @@ in seeing all minor changes you can follow our
[Video Drives](/video/#drives--directories). Fast drives with lots
of content.
-- Starred [WiiUDownloader](/gamingpiracyguide/#rom-sites) in ROM sites. Updated
+- Starred [WiiUDownloader](/gaming/#rom-sites) in ROM sites. Updated
more frequently than WiiUSBHelper.
- Starred [Time4TV](/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.
Open-source, supports many formats.
-- Starred [Miru](/android-iosguide/#android-streaming) in Android Streaming.
+- Starred [Miru](/mobile/#android-streaming) in Android Streaming.
Open-source, multi-format media app.
-- Starred [gibMacOS](/linuxguide/#mac-tools--apps) in Mac Tools. Easily download
+- Starred [gibMacOS](/linux-macos/#mac-tools--apps) in Mac Tools. Easily download
MacOS.
-- Starred [AppsTorrent](/linuxguide/#mac-software) in Mac Software. Popular Mac
+- Starred [AppsTorrent](/linux-macos/#mac-software) in Mac Software. Popular Mac
Software site with many Apps.
- Starred [PlayPhrase](/video-tools) in Video Tools. Search entire internet for
@@ -76,7 +76,7 @@ in seeing all minor changes you can follow our
- Starred [Magic ToDo](/storage/#note-taking--to-do-apps) in To Do Apps.
Automatic Task Breakdown AI.
-- Starred [SafeSubstance](/miscguide/#health) in Health. Drug Information / Side
+- Starred [SafeSubstance](/misc/#health) in Health. Drug Information / Side
Effects.
- Starred [TinyKittens](https://tinykittens.com/) in General Tools. Kitten
diff --git a/docs/posts/oct-2024.md b/docs/posts/oct-2024.md
index d93d162ed..1ccbb07e4 100644
--- a/docs/posts/oct-2024.md
+++ b/docs/posts/oct-2024.md
@@ -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 [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.
diff --git a/docs/posts/sept-2023.md b/docs/posts/sept-2023.md
index 2a4c9b872..495d8df4b 100644
--- a/docs/posts/sept-2023.md
+++ b/docs/posts/sept-2023.md
@@ -20,15 +20,15 @@ in seeing all minor changes you can follow our
### Wiki Updates
-- Split Linux Tools into subcategories: [System](/linuxguide/#linux-system),
- [Apps](/linuxguide/#linux-apps), [Internet](/linuxguide/#linux-internet),
- [Terminal / Shell](/linuxguide/#terminal--shell) and
- [Customization](/linuxguide/#customization).
+- Split Linux Tools into subcategories: [System](/linux-macos/#linux-system),
+ [Apps](/linux-macos/#linux-apps), [Internet](/linux-macos/#linux-internet),
+ [Terminal / Shell](/linux-macos/#terminal--shell) and
+ [Customization](/linux-macos/#customization).
- NSFW has been [overhauled](/nsfwpiracy/) with a bunch of new sites and
sections.
-- Added Z-Libs new [Desktop App / Extension](/readingpiracyguide/#reading-sites)
+- Added Z-Libs new [Desktop App / Extension](/reading/#reading-sites)
in Reading Sites.
- Replaced 9anime with [AniWave](/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.
Open-source, modern design, preferred over 7-Zip by some.
-- Starred [Deluge](/torrentpiracyguide/#torrent-clients) in Torrent Clients.
+- Starred [Deluge](/torrenting/#torrent-clients) in Torrent Clients.
Open-source client with many useful
[plugins](https://dev.deluge-torrent.org/wiki/Plugins).
-- Starred [InnerTune](/android-iosguide/#android-audio) in Android Audio.
+- Starred [InnerTune](/mobile/#android-audio) in Android Audio.
Open-source YouTube Music client.
- Starred APKPure and UpToDown in
- [Untouched APKs](/android-iosguide/#untouched-apks).
+ [Untouched APKs](/mobile/#untouched-apks).
-- Starred EverythingMoe and Ripped in [Indexes](/miscguide/#indexes). Solid
+- Starred EverythingMoe and Ripped in [Indexes](/misc/#indexes). Solid
Piracy Indexes.
-- Starred [ReadAllComics](/readingpiracyguide/#comic-sites) in Comics. Big
+- Starred [ReadAllComics](/reading/#comic-sites) in Comics. Big
library, no captcha.
- Starred [WatchWrestling24](/video/#sports-streaming) in Sports
Streaming. Good video hosts, quick uploads.
-- Starred [Sandboxie Plus](/adblockvpnguide/#antivirus) in Antivirus.
+- Starred [Sandboxie Plus](/privacy/#antivirus) in Antivirus.
User-friendly software sandbox / [Guide](https://rentry.co/sandboxie-guide).
-- Starred [DarkPatternsTipline](/miscguide/#shopping) in Shopping. Deceptive
+- Starred [DarkPatternsTipline](/misc/#shopping) in Shopping. Deceptive
Service Design Tipline.
- Starred [Scoop](/storage/#package-managers) in Package Managers. Command-line
diff --git a/docs/posts/sept-2024.md b/docs/posts/sept-2024.md
index b4b6baf38..be3172e85 100644
--- a/docs/posts/sept-2024.md
+++ b/docs/posts/sept-2024.md
@@ -28,19 +28,19 @@ in seeing all minor changes you can follow our
- Added [ChatGPT Tools](https://fmhy.net/ai#chatgpt-tools), [AI Benchmarks](https://fmhy.net/ai#ai-benchmarks) and [AI Search Engine](https://fmhy.net/ai#ai-search-engines) sections to AI.
-- Added [YouTube Music](https://fmhy.net/android-iosguide#youtube-music-clients) and [YouTube App](https://fmhy.net/android-iosguide#ios-youtube-apps) (ios) sections to Mobile.
+- Added [YouTube Music](https://fmhy.net/mobile#youtube-music-clients) and [YouTube App](https://fmhy.net/mobile#ios-youtube-apps) (ios) sections to Mobile.
-- Added [Coding Tools](https://fmhy.net/devtools#coding-tools) and [Android Code Editor](https://fmhy.net/devtools#android-code-editors) sections to Code Editors.
+- Added [Coding Tools](https://fmhy.net/developer-tools#coding-tools) and [Android Code Editor](https://fmhy.net/developer-tools#android-code-editors) sections to Code Editors.
-- Added [Geoguessr](https://fmhy.net/gamingpiracyguide#geoguessr-games) section to Browser Games.
+- Added [Geoguessr](https://fmhy.net/gaming#geoguessr-games) section to Browser Games.
- Added [Cloud Managers](https://fmhy.net/file-tools#cloud-managers) section to File Tools.
-- Added [JEE / NEET](https://fmhy.net/edupiracyguide#jee-neet) section in Edu Tools.
+- Added [JEE / NEET](https://fmhy.net/educational#jee-neet) section in Edu Tools.
- Added [Streaming APIs](https://fmhy.net/video#streaming-apis) section to Streaming.
-- Split Audiobooks into [Downloading](https://fmhy.net/readingpiracyguide#downloading) and [Streaming](https://fmhy.net/readingpiracyguide#streaming).
+- Split Audiobooks into [Downloading](https://fmhy.net/reading#downloading) and [Streaming](https://fmhy.net/reading#streaming).
- Made FMHY site logo easier to switch (click it 5 times).
@@ -50,11 +50,11 @@ in seeing all minor changes you can follow our
### Stars Added ⭐
-- Starred [Bookracy](https://fmhy.net/readingpiracyguide#ebooks) in Ebook Sites. Promising book site with solid UI and community.
+- Starred [Bookracy](https://fmhy.net/reading#ebooks) in Ebook Sites. Promising book site with solid UI and community.
-- Starred [Droid-ify](https://fmhy.net/android-iosguide#foss-apks) in FOSS APKs. Open source F-Droid client some like more than the official.
+- Starred [Droid-ify](https://fmhy.net/mobile#foss-apks) in FOSS APKs. Open source F-Droid client some like more than the official.
-- Starred [Disblock Origin](https://fmhy.net/adblockvpnguide#adblocking) in Adblocking. Removes nitro / boost ads from Discord.
+- Starred [Disblock Origin](https://fmhy.net/privacy#adblocking) in Adblocking. Removes nitro / boost ads from Discord.
- Starred [Sidebery](https://fmhy.net/storage#tab-managers) in Tab Managers. Useful open source tab manager / bookmark manager.
@@ -62,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 [Archive of Our Own](https://fmhy.net/readingpiracyguide#fanfiction-stories) in Fanfiction Sites. Popular and extensive archive of fanfiction.
+- Starred [Archive of Our Own](https://fmhy.net/reading#fanfiction-stories) in Fanfiction Sites. Popular and extensive archive of fanfiction.
-- Starred [Materialgram](https://fmhy.net/social-media-tools#telegram-clients) and [AyuGram](https://fmhy.net/android-iosguide#social-media-apps) (android) in Telegram Clients. Simple, ad-free, feature-rich clients.
+- Starred [Materialgram](https://fmhy.net/social-media-tools#telegram-clients) and [AyuGram](https://fmhy.net/mobile#social-media-apps) (android) in Telegram Clients. Simple, ad-free, feature-rich clients.
- Starred [NCS](https://fmhy.net/storage#royalty-free-music) in Royalty Free Music. Popular library for free music.
-- Starred [K-9 Mail](https://fmhy.net/android-iosguide#android-internet) in Android Internet. Open source mobile mail client.
+- Starred [K-9 Mail](https://fmhy.net/mobile#android-internet) in Android Internet. Open source mobile mail client.
- Starred [Lossless Scaling](https://fmhy.net/gaming-tools#optimization-tools) in Game Optimization. Powerful upscaling with frame generation for all GPUs.
diff --git a/docs/adblockvpnguide.md b/docs/privacy.md
similarity index 100%
rename from docs/adblockvpnguide.md
rename to docs/privacy.md
diff --git a/docs/readingpiracyguide.md b/docs/reading.md
similarity index 100%
rename from docs/readingpiracyguide.md
rename to docs/reading.md
diff --git a/docs/text-tools.md b/docs/text-tools.md
index 72ed78707..573541eb2 100644
--- a/docs/text-tools.md
+++ b/docs/text-tools.md
@@ -6,7 +6,7 @@
# ► Text Tools
-* ↪️ **[Image to Text](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/img-tools#wiki_.25B7_image_to_text_.2F_ocr)**
+* ↪️ **[Image to Text](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/image-tools#wiki_.25B7_image_to_text_.2F_ocr)**
* ↪️ **[Text to Speech](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/ai#wiki_.25B7_text_to_speech)**
* ↪️ **[Study / Research](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/edu#wiki_.25B7_study_.2F_research)**
* ↪️ **[Data Visualization](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_data_visualization_tools)**
diff --git a/docs/torrentpiracyguide.md b/docs/torrenting.md
similarity index 100%
rename from docs/torrentpiracyguide.md
rename to docs/torrenting.md
diff --git a/docs/unsafesites.md b/docs/unsafe.md
similarity index 100%
rename from docs/unsafesites.md
rename to docs/unsafe.md
diff --git a/docs/video.md b/docs/video.md
index 75e5b571f..75a71e44c 100644
--- a/docs/video.md
+++ b/docs/video.md
@@ -942,7 +942,7 @@
# ► Helpful Sites / Tools
* 🌐 **[r/Animepiracy Wiki](https://thewiki.moe/)** or [Awesome ACG](https://github.com/soruly/awesome-acg) - Anime Tool Indexes
-* ↪️ **[Media Posters / Covers](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/img-tools#wiki_.25B7_media_covers_.2F_posters)**
+* ↪️ **[Media Posters / Covers](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/image-tools#wiki_.25B7_media_covers_.2F_posters)**
* ↪️ **[Media Soundtracks](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/audio#wiki_.25BA_media_soundtracks)**
* ↪️ **[File Data Automation](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/file-tools#wiki_.25B7_data_automation)**
* ⭐ **[FastStream](https://faststream.online/)** - Fragmentation Streaming Extension / [GitHub](https://github.com/Andrews54757/FastStream/)