Compare commits

..

9 Commits

Author SHA1 Message Date
taskylizard
fdb6a5cfc1
Merge branch 'main' into reorganize 2024-02-25 02:27:09 +00:00
taskylizard
1fe7aa16df
scripts 2024-02-25 02:13:36 +00:00
taskylizard
9065a0aeb7
monorepofiy 2024-02-25 01:31:53 +00:00
taskylizard
b693586301
move these configs respectively 2024-02-25 01:13:16 +00:00
taskylizard
00ab9fd3c6
edu to educational 2024-02-25 01:05:38 +00:00
taskylizard
a85067d01f
drop piracy suffixes 2024-02-25 01:04:37 +00:00
taskylizard
ef5e42c43a
convert into monorepo 2024-02-24 17:20:24 +00:00
taskylizard
5ae5b7e266
restructure 2024-02-24 16:59:30 +00:00
taskylizard
cc3cd6c4af
init
skip-checks: true
2024-02-24 14:45:01 +00:00
132 changed files with 38906 additions and 40373 deletions

View File

@ -1,6 +1,6 @@
name: Create Issue name: Wiki
description: 'Help us improve FMHY for everyone' description: 'Help us improve FMHY for everyone'
title: '<title>' title: 'Wiki: '
body: body:
- type: markdown - type: markdown
attributes: attributes:

View File

@ -1,22 +0,0 @@
<!--- Provide a general summary of your changes in the Title above -->
## Description
<!--- Describe your changes in detail -->
## Context
<!--- Why is this change required? What problem does it solve? -->
<!--- If it fixes an open issue, please link to the issue here. -->
## Types of changes
<!--- What types of changes does your Pull Request introduce? Put an `x` in all the boxes that apply: -->
- [ ] Bad / Deleted sites removal
- [ ] Grammar / Markdown fixes
- [ ] Content addition (sites, projects, tools, etc.)
- [ ] New Wiki section
## Checklist:
<!--- Go over all the following points, and put an `x` in all the boxes that apply to this Pull Request. -->
<!--- If you're unsure about any of these, don't hesitate to ask. We're here to help! -->
- [ ] I have read the [contribution guide](https://rentry.co/Contrib-Guide).
- [ ] I have made sure to [search](https://raw.githubusercontent.com/fmhy/FMHYedit/main/single-page) before making any changes.
- [ ] My code follows the code style of this project.

View File

@ -33,7 +33,6 @@ headers = {
"Books / Comics / Manga", "Books / Comics / Manga",
"Books, Comics, Magazines, Newspapers", "Books, Comics, Magazines, Newspapers",
], ],
"gaming-tools.md": ["Gaming Tools", "Gaming Optimization, Game Launchers, Multiplayer"],
"DEVTools.md": ["Developer Tools", "Git, Hosting, App Dev, Software Dev"], "DEVTools.md": ["Developer Tools", "Git, Hosting, App Dev, Software Dev"],
"img-tools.md": ["Image Tools", "Image Editors, Generators, Compress"], "img-tools.md": ["Image Tools", "Image Editors, Generators, Compress"],
"Audio-Tools.md": [ "Audio-Tools.md": [

7
.github/labeler.yml vendored
View File

@ -1,7 +0,0 @@
# See https://github.com/actions/labeler
docs:
- '**/*.md'
core:
- '.vitepress/**'

6
.github/replace.py vendored
View File

@ -188,11 +188,7 @@ def replace_pages(text):
"/audio-tools", "/audio-tools",
text, text,
) )
text = re.sub(
"https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/game-tools",
"/gaming-tools",
text,
)
text = re.sub( text = re.sub(
"https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/video", "https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/video",
"/videopiracyguide", "/videopiracyguide",

View File

@ -6,9 +6,13 @@ def output():
read = glob.glob("*.md") read = glob.glob("*.md")
content = "" content = ""
nsfw_content = "" nsfw_content = ""
ignore_files = {"README.md", "feedback.md", "posts.md", "index.md"}
for file in read: for file in read:
if file not in ignore_files: if (
file != "README.md"
or file != "feedback.md"
or file != "posts.md"
or file != "index.md"
):
with open(file, "r") as f: with open(file, "r") as f:
if "NSFWPiracy.md" == file: if "NSFWPiracy.md" == file:
nsfw_content += f.read() nsfw_content += f.read()

View File

@ -1,7 +1,9 @@
name: Deploy API name: Deploy API
on: on:
workflow_dispatch: push:
branches:
- main
concurrency: ${{ github.workflow }}-${{ github.ref }} concurrency: ${{ github.workflow }}-${{ github.ref }}
@ -9,26 +11,18 @@ jobs:
ci: ci:
name: Release name: Release
runs-on: ubuntu-latest runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20]
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
with: with:
fetch-depth: 6 fetch-depth: 6
- uses: pnpm/action-setup@v2.4.0
- name: Install pnpm - uses: actions/setup-node@v3
uses: pnpm/action-setup@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with: with:
node-version: ${{ matrix.node-version }} node-version: 18
cache: 'pnpm' cache: 'pnpm'
- name: Install dependencies - run: pnpm install --no-frozen-lockfile
run: pnpm install
- name: Build - name: Build
run: pnpm api:build run: pnpm api:build

View File

@ -1,49 +0,0 @@
name: 'Pull Request Housekeeping'
on: [pull_request_target]
jobs:
triage:
permissions:
contents: read
pull-requests: write
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Label PRs
uses: actions/labeler@v4
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
auto-assign:
runs-on: ubuntu-latest
needs: triage
steps:
- name: Check if PR has 'core' label
id: check_label
uses: actions/github-script@v6
with:
script: |
const prNumber = context.payload.pull_request.number;
const { data: labels } = await github.rest.issues.listLabelsOnIssue({
owner: context.repo.owner,
repo: context.repo.repo,
issue_number: prNumber,
});
const hasCoreLabel = labels.some(label => label.name === 'core');
return hasCoreLabel;
- name: Auto-assign to PR
if: steps.check_label.outputs.result == 'true'
uses: actions/github-script@v6
with:
script: |
const prNumber = context.payload.pull_request.number;
await github.rest.issues.addAssignees({
owner: context.repo.owner,
repo: context.repo.repo,
issue_number: prNumber,
assignees: ['taskylizard'],
});

View File

@ -1,3 +0,0 @@
# https://github.com/vitejs/vite/issues/17291
[tools]
node = "21"

5
.npmrc
View File

@ -1,3 +1,2 @@
package-manager-strict=false shamefully-hoist=true
shell-emulator=true strict-peer-dependencies=false
auto-install-peers=false

View File

@ -1,11 +0,0 @@
import { corsEventHandler } from 'nitro-cors'
export default corsEventHandler(
(_event) => {
/** no-op */
},
{
origin: '*',
methods: '*'
}
)

View File

@ -1,327 +0,0 @@
<script setup lang="ts">
import { ref, reactive } from 'vue'
import {
TransitionRoot,
TransitionChild,
Dialog,
DialogPanel,
DialogTitle,
DialogDescription,
Listbox,
ListboxLabel,
ListboxButton,
ListboxOptions,
ListboxOption
} from '@headlessui/vue'
import { useRouter } from 'vitepress'
import {
type FeedbackType,
getFeedbackOption,
feedbackOptions
} from '../../types/Feedback'
const loading = ref<boolean>(false)
const error = ref<unknown>(null)
const success = ref<boolean>(false)
const router = useRouter()
const feedback = reactive<FeedbackType>({ message: '' })
const options = [
{
label: '💡 Suggestion',
value: 'suggestion'
},
{
label: '❤️ Appreciation',
value: 'appreciate'
},
{ label: '🐞 Bug', value: 'bug' },
{ label: '📂 Other', value: 'other' }
]
const selectedOption = ref(options[0])
async function handleSubmit() {
loading.value = true
const body: FeedbackType = {
message: feedback.message,
type: selectedOption.value.value,
page: router.route.path
}
try {
const response = await fetch('https://feedback.tasky.workers.dev', {
method: 'POST',
headers: {
'Content-Type': 'application/json'
},
body: JSON.stringify(body)
})
const data = await response.json()
if (data.error) {
error.value = data.error
return
}
if (data.status === 'ok') {
success.value = true
}
} catch (error) {
error.value = error
} finally {
loading.value = false
}
}
const isOpen = ref(false)
function closeModal() {
isOpen.value = false
}
function openModal() {
isOpen.value = true
}
</script>
<template>
<button
type="button"
class="p-[4px 8px] text-xl i-carbon:user-favorite-alt-filled"
@click="openModal"
/>
<Teleport to="body">
<TransitionRoot appear :show="isOpen" as="template">
<Dialog as="div" class="relative z-10" @close="closeModal">
<TransitionChild
as="template"
enter="duration-300 ease-out"
enter-from="opacity-0"
enter-to="opacity-100"
leave="duration-200 ease-in"
leave-from="opacity-100"
leave-to="opacity-0"
>
<div class="fixed inset-0 bg-black/25" />
</TransitionChild>
<div class="fixed inset-0 overflow-y-auto">
<div
class="flex min-h-full items-center justify-center p-4 text-center"
>
<TransitionChild
as="template"
enter="duration-300 ease-out"
enter-from="opacity-0 scale-95"
enter-to="opacity-100 scale-100"
leave="duration-200 ease-in"
leave-from="opacity-100 scale-100"
leave-to="opacity-0 scale-95"
>
<DialogPanel
class="w-full max-w-md transform overflow-hidden rounded-2xl bg-bg p-6 text-left align-middle shadow-xl transition-all"
>
<DialogTitle
as="h3"
class="text-lg font-medium leading-6 text-text"
>
Feedback
</DialogTitle>
<div class="mt-4 top-16 w-72" v-if="!success">
<Listbox v-model="selectedOption">
<div class="relative mt-1">
<ListboxButton
class="relative w-full cursor-default rounded-lg bg-bg-alt text-text py-2 pl-3 pr-10 text-left shadow-md focus:outline-none focus-visible:border-indigo-500 focus-visible:ring-2 focus-visible:ring-white/75 focus-visible:ring-offset-2 focus-visible:ring-offset-orange-300 sm:text-sm"
>
<span class="block truncate">
{{ selectedOption.label }}
</span>
<span
class="pointer-events-none absolute inset-y-0 right-0 flex items-center pr-2"
>
<div
class="i-heroicons-solid:chevron-up-down h-5 w-5 text-gray-400"
aria-hidden="true"
/>
</span>
</ListboxButton>
<transition
leave-active-class="transition duration-100 ease-in"
leave-from-class="opacity-100"
leave-to-class="opacity-0"
>
<ListboxOptions
class="absolute mt-1 max-h-60 w-full overflow-auto rounded-md bg-bg-alt py-1 text-base shadow-lg ring-1 ring-black/5 focus:outline-none sm:text-sm"
>
<ListboxOption
v-slot="{ active, selected }"
v-for="option in options"
:key="option.value"
:value="option"
as="template"
>
<li
:class="[
active ? 'text-primary' : 'text-gray-500',
'relative cursor-default select-none py-2 pl-10 pr-4'
]"
>
<span
:class="[
selected ? 'font-medium' : 'font-normal',
'block truncate'
]"
>
{{ option.label }}
</span>
<span
v-if="selected"
class="absolute inset-y-0 left-0 flex items-center pl-3 text-primary"
>
<div
class="i-heroicons-solid:check h-5 w-5"
aria-hidden="true"
/>
</span>
</li>
</ListboxOption>
</ListboxOptions>
</transition>
</div>
</Listbox>
<div class="mt-2">
<div>
<label class="field-label">Message</label>
<textarea
v-model="feedback.message"
class="mt-2 h-32"
placeholder="What a lovely wiki!"
rows="5"
/>
</div>
</div>
<p class="text-sm text-gray-400 mb-2">
If you want a reply to your feedback, feel free to mention a
contact in the message or join our
<a
class="text-primary font-semibold text-underline"
href="https://discord.gg/Stz6y6NgNg"
>
Discord.
</a>
</p>
<details
v-if="selectedOption.value === 'suggestion'"
class="text-sm text-gray-400"
>
<summary class="mb-2">Submission Guidelines</summary>
<strong>🕹 Emulators</strong>
<p>
They're already on the
<a
class="text-primary font-bold text-underline"
href="https://emulation.gametechwiki.com/index.php/Main_Page"
>
Game Tech Wiki.
</a>
</p>
<strong>🔻 Leeches</strong>
<p>
They're already on the
<a
class="text-primary font-bold text-underline"
href="https://filehostlist.miraheze.org/wiki/Free_Premium_Leeches"
>
File Hosting Wiki.
</a>
</p>
<strong>🐧 Distros</strong>
<p>
They're already on
<a
class="text-primary font-bold text-underline"
href="https://distrowatch.com/"
>
DistroWatch.
</a>
</p>
<strong>🎲 Mining / Betting Sites</strong>
<p>
Don't post anything related to betting, mining, BINs, CCs,
etc.
</p>
<strong>🎮 Multiplayer Game Hacks</strong>
<p>
Don't post any hacks/exploits that give unfair advantages
in multiplayer games.
</p>
</details>
<div class="mt-4">
<button
type="button"
class="inline-flex justify-center rounded-md border border-transparent bg-blue-500 px-4 py-2 text-sm font-medium text-blue-100 hover:bg-blue-600 focus:outline-none focus-visible:ring-2 focus-visible:ring-blue-500 focus-visible:ring-offset-2 disabled:bg-blue-400"
:disabled="
feedback.message.length < 5 ||
feedback.message.length > 1000
"
@click="handleSubmit()"
>
Submit
</button>
<button
type="button"
class="ml-2 inline-flex justify-center rounded-md border border-transparent bg-red-500 px-4 py-2 text-sm font-medium text-red-100 hover:bg-red-600 focus:outline-none focus-visible:ring-2 focus-visible:ring-red-500 focus-visible:ring-offset-2"
@click="closeModal()"
>
Close
</button>
</div>
</div>
<div v-else-if="error">
<div class="text-sm font-medium leading-6 text-text">
Error!
</div>
<details>{{ error }}</details>
</div>
<div v-else>
<TransitionRoot
enter="transition-opacity duration-75"
enter-from="opacity-0"
enter-to="opacity-100"
>
Thanks!
</TransitionRoot>
</div>
</DialogPanel>
</TransitionChild>
</div>
</div>
</Dialog>
</TransitionRoot>
</Teleport>
</template>
<style scoped>
textarea,
input {
font-family: var(--vp-font-family-base);
background: var(--vp-c-bg-soft);
font-size: 14px;
border-radius: 4px;
padding: 16px;
width: 100%;
&::placeholder {
color: var(--vp-c-text-2) !important;
opacity: 1;
}
}
</style>

File diff suppressed because it is too large Load Diff

View File

@ -1,683 +0,0 @@
***
***
**[◄◄ Back to Wiki Index](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/index)**
***
***
**Use [redirect bypassers](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/adblock-vpn-privacy#wiki_.25B7_redirect_bypass) to skip link shorteners**
***
# ► Download Games
* 🌐 **[/r/PiratedGames Mega](https://rentry.org/pgames)** / [Discord](https://discord.gg/dZWwhUy) - Game Piracy Megathread
* 🌐 **[CS.RIN Mega](https://cs.rin.ru/forum/viewtopic.php?f=10&t=95461)** - Game Piracy Megathread
* 🌐 **[privateersclub](https://megathread.pages.dev/)** - Game Piracy Megathread / [Discord](https://discord.gg/jz8dUnnD6Q)
* 🌐 **[Wotaku](https://wotaku.moe/games)** - Otaku game Index / [Discord](https://discord.gg/vShRGx8ZBC)
* 🌐 **[EverythingMoe](https://everythingmoe.com/?nsfw=true#section-game)** - Otaku Games Index / [Discord](https://discord.gg/GuueaDgKdS)
* ↪️ **[Scene Release Trackers](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_scene_release_trackers)**
* ⭐ **[GamesDrive](https://gamesdrive.net/)** - Download / [Discord](https://discord.gg/wXdNEhf73x) / [Divolt](https://gamesdrive.divolt.xyz/) / [Telegram](https://t.me/+qkrAOiq7k7ozNzRk)
* ⭐ **[CS.RIN.RU](https://cs.rin.ru/forum)** - Download / Forum / [Status](https://csrinstaff.writeas.com/) / [Enhancement Mod](https://github.com/SubZeroPL/cs-rin-ru-enhanced-mod) / [Steam Buttons](https://github.com/Altansar69/CS.RIN.RU-Enhanced-external) / [Onion](http://csrinrutkb3tshptdctl5lyei4et35itl22qvk5ktdcat6aeavy6nhid.onion/forum)
* ⭐ **[SteamRIP](https://steamrip.com/)** - Download / Torrent / Pre-Installs / [Discord](https://discord.gg/ycDt32VpPH) / pw: 1234 or steamrip.com
* ⭐ **[Torrminatorr](https://forum.torrminatorr.com/)** - Download
* ⭐ **[GOG Games](https://gog-games.to/)** - Download / [.onion](http://goggamespyi7b6ybpnpnlwhb4md6owgbijfsuj6z5hesqt3yfyz42rad.onion/)
* ⭐ **[Ova Games](https://www.ovagames.com/)** - Download / [Bypass All Shortlinks Required](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/adblock-vpn-privacy#wiki_.25B7_redirect_bypass)
* ⭐ **[Online Fix](https://online-fix.me/)** - Download / Torrent / Multiplayer / [Discord](https://discord.gg/yExgFYncMD)
* ⭐ **[SteamGG](https://steamgg.net/)** - Download / Pre-Installs / [Discord](https://discord.gg/3A9gpx8XeJ)
* ⭐ **[Game Bounty](https://gamebounty.world/)** - Download / [Discord](https://dsc.gg/gamebounty)
* ⭐ **[FreeToGame](https://www.freetogame.com/games)**, [Acid Play](https://acid-play.com/) or [/v/ Recs](https://vsrecommendedgames.fandom.com/wiki/Freeware_Games) - F2P Games / [Trackers](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/misc#wiki_.25BA_free_stuff)
* ⭐ **[Game Download CSE](https://cse.google.com/cse?cx=006516753008110874046:cbjowp5sdqg)**, [Game Torrent CSE](https://cse.google.com/cse?cx=006516753008110874046:pobnsujblyx), [Rezi Search](https://rezi.one/), [Rave Search](https://idleendeavor.github.io/gamesearch/) / [2](https://ravegamesearch.pages.dev/) or [/r/PiratedGames CSE](https://cse.google.com/cse?cx=20c2a3e5f702049aa) - Multi-Site Search Engines
* [g4u](https://g4u.to/) - Download / pw: 404
* [appnetica](https://appnetica.com/) - Download / Torrent / Pre-Installs
* [AtopGames](https://atopgames.com/) - Download / Pre-Installs / [Discord](https://discord.gg/KSG9Tg2s7b)
* [Reloaded Steam](https://reloadedsteam.com/) - Download / Pre-Installs / [Discord](https://discord.gg/XqMpBdVWvK)
* [GLoad](https://gload.to/) - Download
* [Leeching Hell](http://www.leechinghell.pw/) - Download
* [GamePCFull](https://gamepcfull.com/) - Download
* [AWTDG](https://awtdg.site/) - Download / [Discord](https://discord.gg/kApRXRjJ7A)
* [World of PC Games](https://worldof-pcgames.net/) - Download / [Discord](https://discord.com/invite/xzFH2yXs) / [Site Info](https://rentry.org/ikc3x8bt) / Use Adblocker
* [IWannaPlay](https://sites.google.com/view/iwannaplay/список-игр) - Download / Telegram Required
* [IRC Games](https://redd.it/x804wg) - Download Games via IRC
* [itch.io](https://itch.io/games/new-and-popular/featured/free), [Killed By A Pixel](https://frankforce.com/all-games/), [Gamdie](https://gamdie.com/), [Indie Rentry](https://rentry.org/hhtxv7ud), [DigiPen](https://games.digipen.edu/) or [Game Jolt](https://gamejolt.com/games?price=free) - Indie Games
* itch.io Tools - [Downloader](https://github.com/Emersont1/itchio) / [Desktop](https://github.com/itchio/itch) / [Auto-Claim](https://github.com/Smart123s/ItchClaim)
* [Alpha Beta Gamer](https://alphabetagamer.com/) - Play Games in Alpha / Beta Testing
* [RPG Maker Games](https://rpgmaker.net/games/?name_filter=&amp;engine=&amp;status=&amp;rating=&amp;commercial=exclude&amp;sort=&amp;portal=None) - Games made via RPG Maker
* [Locomalito](https://locomalito.com/) - Classic Game Remakes
* [Necromanthus](https://necromanthus.com/) - 3D Shockwave Games
* [VGPErson](https://vgperson.com/games/) - Simple Japanese Games
* [SAGE](https://sagexpo.org/) - Sonic Fan Games / [Discord](https://discord.sonicfangameshq.com/)
* [Clone Hero](https://clonehero.net/) - Guitar Hero Clone / [Setlists](https://rentry.co/FMHYBase64#setlists), [2](https://customsongscentral.com/), [3](https://rentry.co/FMHYBase64#frif-drive) / [Wii Controller Support](https://github.com/Meowmaritus/WiitarThing) / [Custom Client](https://clonehero.scorespy.online)
* [DoujinStyle](https://doujinstyle.com) - Doujin Games / [Discord](https://discord.com/invite/z2QDFdA)
* [MoriyaShrine](https://moriyashrine.org/) - Touhou Games
* [GrimReaper's Scene ISO Collection](https://archive.org/details/@waffess) - ISO Collection
* [Redump Forum](http://forum.redump.org/) - Disc Preservation Project
* [/r/CrackSupport](https://reddit.com/r/CrackSupport) - Cracking Discussion / [Matrix](https://matrix.to/#/!MFNtxvVWElrFNHWWRm:nitro.chat?via=nitro.chat&via=envs.net&via=matrix.org) / [Guilded](https://guilded.gg/crackwatch) / [FAQ](https://rentry.co/cracksupport)
***
## ▷ Game Repacks
* **Note** - Repacks are compressed versions of games that exchange smaller downloads for longer installation times. Good if you have low bandwidth or data limits.
***
* ⭐ **[KaOsKrew](https://www.kaoskrew.org/)** - Download / Torrent / [Discord](https://discord.com/invite/WF2pqPTFBs)
* ⭐ **[FitGirl Repacks](https://fitgirl-repacks.site/)** - Download / Torrent / ROM Repacks / [Discord](https://discord.gg/Up3YARe4RW)
* ⭐ **[M4CKD0GE Repacks](https://m4ckd0ge-repacks.site/)** - Download / [Discord](https://discord.gg/693hNBdymb)
* ⭐ **[ARMGDDN Browser](https://cs.rin.ru/forum/viewtopic.php?f=14&t=140593)** / [Telegram](https://t.me/ARMGDDNGames) - Download
* ⭐ **[Gnarly Repacks](https://rentry.co/FMHYBase64#gnarly_repacks)** - Download / Password: gnarly
* [Xatab Repacks](https://byxatab.com/) - Torrent
* [ScOOt3r Repacks (Discord)](https://discord.gg/xe3Fys8Upy) - Download / Torrent
* [Elamigos](https://elamigos.site/) - Download
* [Tiny-Repacks](https://www.tiny-repacks.win) - Torrent
* [DODI Repacks](https://dodi-repacks.site/) - Torrent / [Discord](https://discord.gg/uE273qJ) / [Forum](https://dodi-forums.win/) / [Opera Bypass](https://rentry.co/lootlink) / [Warning](https://pastebin.com/n5xS3v6k)
* [FreeGOGPCGames](https://freegogpcgames.com/) - GOG Games Torrent Uploads / [Hash Note](https://pastebin.com/pNMj3nay), [2](https://i.ibb.co/XbF2dv1/image.png)
* [DigitalZone](https://god0654.github.io/DigitalZone/ ) - Download / Portable Repacks
* [Magipack](https://www.magipack.games), [CollectionChamber](https://collectionchamber.blogspot.com/) or [ClassicPCGames](https://archive.org/details/classicpcgames) - Retro PC Games
* [~archive](https://websites.umich.edu/~archive/) - Retro PC / Mac Games
***
## ▷ Abandonware
* ↪️ **[DOS](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_dos_games)** / **[MSX Games](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_msx_games)**
* ⭐ **[My Abandonware](https://www.myabandonware.com/)** - Abandonware
* ⭐ **[AbandonwareGames](https://abandonwaregames.net/)** - Abandonware
* [PCGameAbandonware](https://www.pcgamesabandonware.com/) - Abandonware
* [Flashtro](https://flashtro.com/) - Abandonware
* [Zombs-Lair](https://www.zombs-lair.com/) - Abandonware
* [Old-Games.com](https://www.old-games.com/) - Abandonware
* [VETUSWARE](https://vetusware.com/category/Games/) - Abandonware
* [Japanese PC Compendium](https://japanesepccompendium.blogspot.com/) - Retro Japanese PC Games
* [World of Spectrum](https://worldofspectrum.org/) or [SpectrumComputing](https://spectrumcomputing.co.uk/) - Sinclair ZX Spectrum
* [GamesNostalgia](https://gamesnostalgia.com/), [lemon64](https://www.lemon64.com/) or [C64.com](https://www.c64.com/) - Commodore 64
* [whdload](https://www.whdload.de/), [lemonamiga](https://www.lemonamiga.com/), [exotica](https://www.exotica.org.uk/) or [hol abime](https://amiga.abime.net/) - Amiga
* [PC-98 Drive](https://rentry.co/FMHYBase64#pc-98) - PC-98
* [LegendsWorld](https://www.legendsworld.net/) - Retro PC Adventures
* [Win7Games](https://win7games.com/) - Classic Windows Games
***
## ▷ Open-Source
* 🌐 **[OSGL](https://trilarion.github.io/opensourcegames/)**, [Awesome Open Source Games](https://github.com/michelpereira/awesome-open-source-games) or [LibreGameWiki](https://libregamewiki.org/List_of_games) - Open-Source Games
* 🌐 **[Awesome Game Remakes](https://github.com/radek-sprta/awesome-game-remakes)** or [Game Clones](https://osgameclones.com/) - Open-Source Remakes
* 🌐 **[Awesome Terminal Games](https://ligurio.github.io/awesome-ttygames/)** - ASCII Terminal Games
* 🌐 **[Kliktopia](https://kliktopia.org/)** - Klik Games
* ⭐ **[OpenRCT2](https://openrct2.io/)**, [2](https://openrct2.org/) - Open-Source RollerCoaster Tycoon 2
* [Minetest](https://www.minetest.net/) or [Cassicube](https://www.classicube.net/) - Open-Source Minecraft Alternatives
* [OpenFortress](https://openfortress.fun/) - Team Fortress 2 Mod
* [TF2 Classic](https://tf2classic.com/) - Team Fortress 2 Classic Mod
* [RisingHub](https://risinghub.net/) - Battlefield Heroes Revival Project
* [OnlineCTR](https://www.online-ctr.com/) - Crash Team Racing Multiplayer
* [OpenRA](https://openra.net/) - Command & Conquer Recreation
* [DFWorkshop](https://www.dfworkshop.net/) - Daggerfall Unity Engine Port
* [OpenMW](https://openmw.org/en/) - Morrowind Remake / [GitHub](https://github.com/OpenMW/openmw) / [Multiplayer](https://github.com/TES3MP/TES3MP)
* [ECWolf](https://maniacsvault.net/ecwolf/) - Wolfenstein 3D, Spear of Destiny & Super 3D Noah's Ark Port
* [IOQuake3](https://ioquake3.org/) - Quake 3 Source Port / [GitHub](https://github.com/ioquake/ioq3)
* [YQuake2](https://www.yamagi.org/quake2/) - Quake 2 Source Port / [GitHub](https://github.com/yquake2/yquake2)
* [Xonotic](https://xonotic.org/) - Open-source Modified Quake Engine FPS
* [Silent Hill 2: Enhanced Edition](https://enhanced.townofsilenthill.com/SH2/) - Silent Hill 2 Mod Project
* [SRB2](https://www.srb2.org/) - Open-Source Sonic Fan Game / [GitLab](https://git.do.srb2.org/STJr/SRB2)
* [SRB2Kart](https://mb.srb2.org/threads/srb2kart.25868/) / [GitHub](https://github.com/STJr/Kart-Public) or [RingRacers](https://github.com/KartKrewDev/RingRacers) - Open-Source Sonic Kart Games
* [Aleph One](https://alephone.lhowon.org/) - Open-Source Marathon Continuation
* [REDRIVER2](https://github.com/OpenDriver2/REDRIVER2) - Driver 2 PC Port
* [Streets of Rage Remake](https://sorr.forumotion.net/t838-new-streets-of-rage-remake-v5-2-download-and-info) - Streets of Rage Remake
* [OpenSA](https://github.com/Dzierzan/OpenSA) - Swarm Assault Recreation / [OpenRA Required](https://www.moddb.com/mods/opensa) / [Non OpenRA Version](https://dzierzan.itch.io/opensa)
* [EDuke32](https://www.eduke32.com/) - Duke Nukem 3D Source Port
* [NBlood](https://github.com/nukeykt/NBlood) - Reverse-Engineered Duke Nukem Ports
* [SP Tarkov](https://www.sp-tarkov.com/) - Escape From Tarkov Single Player Mod
* [doukutsu-rs](https://github.com/doukutsu-rs/doukutsu-rs) - Open-Source Cave Story
* [Arx Libertatis](https://arx-libertatis.org/) - Arx Fatalis PC Port
* [Mars 3D](https://mars3d-game.wixsite.com/index) - Mars 3D Translation & Remake
* [Unciv](https://github.com/yairm210/Unciv) - Civ V Remake
* [OpenTTD](https://www.openttd.org/) - Transport Tycoon Remake
* [CannonBall](https://github.com/djyt/cannonball) - OutRun Remake / [Video](https://youtu.be/t-93kDC8Vac)
* [EDOPro](https://projectignis.github.io/) - Yu-Gi-Oh! TCG Fangame
* [OpenNox](https://github.com/noxworld-dev/opennox) - Nox Revival Project
* [Pixel Gun X](https://discord.com/invite/8796Fs9tZm) - Pixel Gun 3D Revival Project Discord
* [Infinity Blade PC](https://archive.org/details/infinity-blade-pc) - Infinity Blade PC Port
* [Pac-Man](https://github.com/masonicGIT/pacman) - Pac-Man w/ Added Features
* [SpaceCadetPinball](https://github.com/k4zmu2a/SpaceCadetPinball) - Space Cadet Pinball / [Android](https://github.com/fexed/Pinball-on-Android)
* [Visual Pinball](https://github.com/vpinball/vpinball) - Pinball Table Editor / Simulator / [Tables](https://www.vpforums.org/)
* [YARC-Official](https://github.com/YARC-Official) - Rock Band Clone / [Launcher](https://github.com/YARC-Official/YARC-Launcher/releases)
* [ITGmania](https://www.itgmania.com/) - DDR Clone
* [beatoraja](https://mocha-repository.info/) - BMS Player as Alternative to IIDX / [beatoraja English Guide](https://github.com/wcko87/beatoraja-english-guide/wiki)
* [Unnamed SDVX clone](https://github.com/Drewol/unnamed-sdvx-clone) - Sound Voltex Clone
* [OpenTaiko](https://github.com/0auBSQ/OpenTaiko) - Taiko no Tatsujin Clone / [Taiko Simulator Guide](https://guide.tjadataba.se/)
* [Etterna](https://etternaonline.com/) or [Quaver](https://quavergame.com/) - O2Jam Clones
* [osu!](https://osu.ppy.sh/home), [osu!droid](https://osudroid.moe/) or [McOsu](https://store.steampowered.com/app/607260/McOsu/) - Osu! Tatakae! Ouendan Clones
* [PPD](https://projectdxxx.me/) - Project Diva Clone
* [Rhythia (Discord)](https://discord.gg/rhythia) - Sound Space Clone
* [Cytoid](https://cytoid.io/) - Cytus Clone
* [Sonolus](https://sonolus.com/) - Project Sekai Clone / [GitHub](https://github.com/Sonolus) / [Guides](https://wiki-en.purplepalette.net/home)
***
## ▷ Virtual Reality
* ⭐ **[VRPirates](https://vrpirates.wiki/)** - VR Piracy Wiki / [Telegram](https://t.me/VRPirates) / [Discord](https://discord.com/invite/DcfEpwVa4a)
* ⭐ **[ARMGDDN Browser](https://cs.rin.ru/forum/viewtopic.php?f=14&t=140593)** / [Telegram](https://t.me/ARMGDDNGames) - VR Games
* [r/QuestPiracy](https://www.reddit.com/r/QuestPiracy/) - Oculus Quest Piracy
* [SideQuest](https://sidequestvr.com/) - VR Sideloading Platform
* [VRFavs](https://www.vrfavs.com/) - Virtual Reality Resources
* [VRCArena](https://www.vrcarena.com/) - Resources for Social VR Games
* [UEVR](https://uevr.io/) - Convert Unreal Engine Games to VR
* [Oculess](https://github.com/basti564/Oculess) - Remove Oculus Quest Account Requirements & Telemetry
* [ALVR](https://github.com/alvr-org/ALVR) - Stream VR Games from PC to Headset
***
## ▷ [Linux Games](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/linux#wiki_.25B7_linux_gaming)
***
## ▷ [Mac Games](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/linux#wiki_.25B7_mac_gaming)
***
# ► Emulation / ROMs
## ▷ Emulators
* 🌐 **[Emulation Wiki](https://emulation.gametechwiki.com/)**, [Awesome Emulators](https://github.com/DerekTurtleRoe/awesome-emulators), [PlanetEmu](https://www.planetemu.net/), [The Emulator Zone](https://www.emulator-zone.com/) or [EmuCR](https://www.emucr.com/) - Download Emulators
* 🌐 **[Multi System Emulators](https://emulation.gametechwiki.com/index.php/Multi-system_emulators)** / [Frontends](https://emulation.gametechwiki.com/index.php/Frontends) - Emulators with Multiple Consoles
* 🌐 **[RedSquirrel Project List](https://www.redsquirrel87.altervista.org/doku.php/projects-list)** - Emulator Tools
* 🌐 **[Multiplayer Emulation](https://emulation.gametechwiki.com/index.php/Netplay)** - Multiplayer Emulation Tools
* ↪️ **[Android Emulators](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/android#wiki_.25BA_android_emulators)**
* ⭐ **[Recommended Emulator Specs](https://emulation.gametechwiki.com/index.php/Computer_specs)**
* ⭐ **[Emulator BIOS Files](https://emulation.gametechwiki.com/index.php/Emulator_files)** / **[Firmware Files](https://rentry.co/FMHYBase64#console-firmware)** / [2](https://rentry.co/FMHYBase64#sigmapatches)
* ⭐ **[Skraper](https://www.skraper.net/)** - ROM Cover / Metadata Scraper
* ⭐ **[RetroAchievements](https://retroachievements.org/)** - Achievements for Emulators
* ⭐ **[Dolphin Guide](https://github.com/shiiion/dolphin/wiki/Performance-Guide)** - Dolphin Setup Guide
* ⭐ **[Cemu Guide](https://cemu.cfw.guide/)** or [/r/CemuPiracy Tutorial](https://www.reddit.com/r/CemuPiracy/wiki/tutorial/) - WiiU / BOTW Setup Guides
* ⭐ **[Switch Emu Guide](https://github.com/Abd-007/Switch-Emulators-Guide)** or [Ryujinx Guide](https://docs.google.com/document/d/1prxOJaE4WhPeYNHW17W5UaWZxDgB8e5wNHxt2O4FKvs/) - Switch Emulator Setup Guides
* ⭐ **[RAZE](https://github.com/ZDoom/Raze)** or [BuildGDX](https://m210.duke4.net/) / [Discord](https://discord.gg/zZw2eq3n7G) - Oldschool Shooter Engine
* [TOSEC](https://rentry.co/FMHYBase64#tosec) - The Old School Emulation Center
* [Xbox Emulation Hub](https://discord.com/invite/7pcAbZzpXj) - Xbox Emulation Discord
* [EmuDeck](https://www.emudeck.com/) or [GameImage](https://github.com/ruanformigoni/gameimage) - Game/Emulator Setup for Steam Deck and Linux distros
* [Motion Support Bypass](https://redd.it/gobcne) - Fix Cemu BOTW Motion Shrines / [DL](https://mega.nz/file/1Uo3BI6L#X5m-bPK27-X-IijzJH1o4MloivkUqP33zsUJE_kpOdc)
* [SwitchEmuModDownloader](https://github.com/amakvana/SwitchEmuModDownloader) - Download Switch Emulator Mods
* [Green Leaf](https://discord.gg/m6z3ra8ssh) - Switch Saves Discord
* [TOTK Optimization](https://rentry.co/FMHYBase64#totk-optimization) - TOTK Optimization / Fixes
* [UniversalDynamicInput]( https://github.com/Venomalia/UniversalDynamicInput) - Custom Dolphin Button Pack
* [RPCS3 Setup Guide](https://docs.google.com/document/d/1gdjNab-CtVS97jH2diPPP5tCrpBeof9-qPIRRB9-BrU/edit) - RPCS3 Emulator Setup Guide
* [PCSX-Redux](https://pcsx-redux.consoledev.net) - PSCX Development Emulator
* [Modernized PCSX2 Settings](https://mega.nz/folder/WdNAlY5Z#K6PmrQFyDm2k7BEV8KoAmg) - Premade PCSX2 Settings
* [PictoChat Online](https://pict.chat/) - Browser DS PictoChat
* [Mudlet](https://www.mudlet.org/) - Text Adventure Game Platform
* [webnofrendo](https://zardam.github.io/webnofrendo/) - NES Numworks Emulator
***
## ▷ ROM Sites
* 🌐 **[ROM Sites Wiki](https://emulation.gametechwiki.com/index.php/ROM_%26_ISO_Sites)** - List of ROM Download Sites
* 🌐 **[ROM Managers](https://emulation.gametechwiki.com/index.php/ROM_managers)** - List of ROM Managers
* ↪️ **[Switch ROMs](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_switch_roms)**
* ⭐ **[Rom Center](https://r-roms.github.io/)**, [2](https://r-roms.gitlab.io/megathread/), [3](https://pastelink.net/24dhn) - ROMs / [Pastebins](https://rentry.co/FMHYBase64#romcenter)
* ⭐ **[Myrient](https://myrient.erista.me/)** - ROMs
* ⭐ **[AlvRo](https://rentry.co/FMHYBase64#alvro)** - ROMs / pw: ByAlvRo
* ⭐ **[No-Intro](https://rentry.co/FMHYBase64#no-intro)** - ROMs
* ⭐ **[ROM Heaven](https://romheaven.com/)**, [2](https://romheaven.su) - ROMs
* ⭐ **[CrocDB](https://crocdb.net/)** - Emulators / ROMs
* ⭐ **[CDRomance](https://cdromance.org/)** - ROMs / [Discord](https://cdromance.org/discord)
* ⭐ **[ROMhacking](https://www.romhacking.net/)** or [Reality Incorporated](https://sites.google.com/view/bonmarioinc/rom-hacks/released-rom-hacks) - ROM Fan Translations
* ⭐ **[WiiUDownloader](https://github.com/Xpl0itU/WiiUDownloader)**, [WiiUSBHelper](https://github.com/FailedShack/USBHelperInstaller/releases), [WiiU ROMs](https://wiiuroms.net/) or [JNUSTool](https://gbatemp.net/threads/jnustool-nusgrabber-and-cdecrypt-combined.413179/) - ROMs / Wii U
* [/r/ROMs](https://www.reddit.com/r/ROMs/) - Discussion Sub
* [Vimms Lair](https://vimm.net/) - Emulators / ROMs
* [SafeROMs](https://www.saferoms.com/) - Emulators / ROMs
* [Gnarly Repacks](https://rentry.co/FMHYBase64#gnarly_repacks) - ROMs / Emulator Repacks
* [ROM-Collections](https://rentry.co/FMHYBase64#rom-collections) - ROMs
* [WowROMs](https://wowroms.com/en) - ROMs
* [Edge Emulation](https://edgeemu.net/) - ROMs
* [Zophar's Domain](https://www.zophar.net/) - Emulators / ROM Hacks
* [TheRomDepot](https://theromdepot.com/) - ROMs
* [BlueRoms](https://www.blueroms.ws/) - Emulators / ROMs / Torrents
* [Ghostware](https://rentry.co/FMHYBase64#ghostware) - ROMs
* [Arquivista ROMs](https://rentry.co/FMHYBase64#arquivista) - ROMs
* [FinalBurn Neo](https://rentry.co/FMHYBase64#finalburn-neo) - ROMs / Zip
* [Retrostic](https://www.retrostic.com/) - Emulators / ROMs
* [Romsever](https://romsever.com) - Emulators / ROMs
* [ROMsGames](https://www.romsgames.net/roms/) - Emulators / ROMs
* [ConsoleROMs](https://www.consoleROMs.com/) - Emulators / ROMs
* [Emu-Land](https://www.emu-land.net/en) - Emulators / ROMs
* [HexRom](https://hexrom.com/) - Emulators / ROMs
* [GameGinie](https://gameginie.com/) - Emulators / ROMs
* [Technosagar](https://roms.technosagar.com/) - ROMs
* [The Old Computer](https://www.theoldcomputer.com/) - Emulators / ROMs
* [Emulator Games](https://www.emulatorgames.net/) or [FreeROMsDownload](https://roms-download.com/) - Emulators / ROMs
* [Emuparadise](https://www.emuparadise.me/) - Emulators / ROMs / [Forum](https://www.epforums.org/) / [Workaround Script](https://web.archive.org/web/20230115181306/https://gist.github.com/byzantium225/484101c7846ce18e514b7b10bf4815c2)
* [ROMsPURE](https://ROMspure.cc/) - Emulators / ROMs
* [Romspedia](https://www.romspedia.com/) - Emulators / ROMs
* [ROMs DL](https://romsdl.com/) - Emulators / ROMs
* [HappyROMs](https://happyroms.com/) - Emulators / ROMs
* [TechToROMs](https://techtoroms.com/) - Emulators / ROMs
* [RPGOnly](https://rpgonly.com) - ROMs
* [GLoad](https://gload.to/) - ROMs
* [AllMyROMs](https://www.allmyroms.net/) - ROMs
* [ROMsFun](https://ROMsfun.com/) - ROMs
* [FreeROMs](https://www.freeROMs.com/) - ROMs
* [RetroZone](https://retrozone.co/) - ROMs
* [DaROMs](http://daROMs.com/) - ROMs
* [NGR](https://www.nextgenroms.com/) - ROMs
* [FantasyAnime](https://fantasyanime.com/) - ROMs
* [OldGamesDownload](https://oldgamesdownload.com/) - ROMs
* [Ziperto](https://ziperto.com/) - ROMs / Avoid [Fake](https://ibb.co/wWJbkX6) Buttons
* [Rom Magnet Links](https://emulation.gametechwiki.com/index.php/ROM_%26_ISO_Sites#BitTorrent) - ROMs / Torrent
* [ROM CSE](https://cse.google.com/cse?cx=f47f68e49301a07ac) / [CSE 2](https://cse.google.com/cse?cx=744926a50bd7eb010) - Multi-Site ROM Search
* [Wad Archive](https://archive.org/details/wadarchive) - 83k WAD Files
* [Cah4e3](https://cah4e3.shedevr.org.ru/) - Unlicensed ROMs / Bootlegs
* [Muds](https://muds.fandom.com/wiki/) - Text Adventure ROM Wiki
* [MarioCube](https://mariocube.com/) - ROMs / Wii / Gamecube
* [64DD.org](https://64dd.org/) - ROMs / 64DD
* [3DS ROMS](https://3dsroms.org), [taodung](https://taodung.com/) or [hShop](https://hshop.erista.me/) - ROMs / 3DS
* [NoPayStation](https://nopaystation.com/) - ROMs / Playstation Consoles
* [SuperPSX](https://www.superpsx.com/) - ROMs / PS3 / PS4
* [PKGPS4](https://www.pkgps4.click/) or [Hopmarks](https://www.hopmarks.com/) (torrent) - ROMs / PS4
* [/r/PkgLinks1](https://www.reddit.com/r/PkgLinks1/) - PS1 / PS2 Games for Modded PS4
* [PSVitaVPK](https://psvitavpk.com/), [2](https://psvitagamesdd.com/) - ROMs / PSP
* [xbarchive](https://github.com/codemasterv/xbarchive) - ROMs / Xbox Consoles
* [AtariMania](https://www.atarimania.com/) - ROMs / Emulators / Atari Consoles
* [NesFiles](https://www.nesfiles.com/) - ROMs / NES
* [/1CC/](https://1cc.kr.eu.org/1cc/index.html) / [Discord](https://discord.com/invite/e7xffWFf9p), [ROMs For MAME](https://www.romsformame.com/), [PleasureDome](https://pleasuredome.github.io/pleasuredome/mame/), [MAME World](https://mameworld.info/) or [Arcade Database](http://adb.arcadeitalia.net/default.php?lang=en) - Arcade MAME ROMs
* [SMWCentral](https://smwcentral.net/) - Hacked Super Mario World ROMs
* [Wario Land Hack Vault](https://wario-land.github.io/HackVault/index.html) - Hacked Wario Land ROMs
* [Pokemerald](https://pokemerald.com/) - Pokemon ROM Hacks
* [PICOwesome](https://rentry.co/FMHYBase64#picowesome) - PICO-8 ROMs
* [POP Unofficial Website](https://popuw.com/) - Prince of Persia ROMs / Mods
* [Ship of Harkinian](https://github.com/HarbourMasters/Shipwright) - Ocarina of Time PC Port
* [Super Mario Bros Crossover](https://archive.org/details/SuperMarioCrossoverOffline) - Play SMB with Alternative Characters
* [perfect_dark](https://github.com/fgsfdsfgs/perfect_dark), [2](https://github.com/n64decomp/perfect_dark) - Perfect Dark Decompilation
* [sm64](https://github.com/n64decomp/sm64) / [Discord](https://discord.gg/DuYH3Fh) - Super Mario 64 Decompilation
* [Dan's Palace](https://discord.gg/RqQeZwrP8k) - Android / PSVita PC Game Ports Discord
* [wide-snes](https://github.com/VitorVilela7/wide-snes) - Widescreen Super Mario World
* [Dats.site](https://dats.site/) or [No Intro](https://no-intro.org/) - ROM .dat Files
* [Dat-O-Matic](https://datomatic.no-intro.org/index.php) - ROM Datasets
* [NSWDB](https://www.nswdb.com) - Switch Release Tracker
* [RomStation](https://www.romstation.fr/) - ROM Downloader / Manager / Multiplayer
***
## ▷ Browser Emulators
* 🌐 **[Browser Emulator Index](https://emulation.gametechwiki.com/index.php/Emulators_on_browsers)** - List of Browser Emulators
* ↪️ **[Multi-Console Browser Emulators](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_multi-console_browser_emulators)**
* ⭐ **[Telemelt](https://telemelt.com/)** - Multiplayer Browser Emulator
* ⭐ **[PSX Party](https://psxparty.kosmi.io/)** - Multiplayer Playstation Browser Emulator
* [PS1FUN](https://www.ps1fun.com/) - PS1 Browser Emulator
* [LYR9C](https://lyr9c.weebly.com/gba-games.html) - GBA Browser Emulator
* [LetsPlayGB](https://www.letsplaygb.com/) - Game Boy Browser Emulator
* [SNESFun](https://www.snesfun.com/) - SNES Browser Emulator
* [8bbit](https://www.8bbit.com/) or [Play NES](https://www.playnesonline.com/) - NES Browser Emulators
* [SSega](https://www.ssega.com/) - Sega Browser Emulator
* [Let's Play Sega](https://www.letsplaysega.com/) - Sega Genesis Browser Emulator
* [Mega Drive Emulator](https://megadrive-emulator.com/) - Sega Megadrive Browser Emulator
* [Capcom Town](https://captown.capcom.com/en/retro_games) - Capcom Browser Emulator
* [DosGames](https://dosgames.com/), [DOSDeck](https://dosdeck.com/), [DOSZone](https://dos.zone/), [MSDOSGames](https://msdosgames.com/) or [PlayDOSGames](https://www.playdosgames.com/) - DOS Browser Emulators
* [NeoGeoFun](https://www.neogeofun.com/) - Neo Geo Browser Emulator
* [LCD Games](http://bdrgames.nl/lcdgames/) - Retro LCD Game Emulator
* [File-Hunter](https://www.file-hunter.com/) - MSX / Amiga Browser Emulator
* [QAOP](https://torinak.com/qaop/games) - ZX Spectrum
* [MSXGamesWorld](https://www.msxgamesworld.com/) or [CheatMSX](https://www.cheatmsx.com/) - MSX Browser Emulators
* [CommodoreGames](https://www.commodoregames.net/) or [C64Online](https://c64online.com/) - C64 Browser Emulators
* [SMBGames](https://smbgames.be/) - Super Mario Browser Emulator
* [SMWGames](https://www.smwgames.com/) - Hacked Super Mario World Browser Emulators
* [Jelly Mario](https://jellymar.io/) - Jelly Super Mario
* [Level Share Square](https://levelsharesquare.com/) - Custom Maps for Mario Fangames
* [Mega Man Games](https://www.megamangames.net/) - Mega Man Browser Emulator
* [Q1K3](https://js13kgames.com/games/q1k3/index.html) - Quake Inspired Browser Game
* [Lain Game](https://laingame.net/) - Lain Game Browser Emulator
* [OpenLara](http://xproger.info/projects/OpenLara/) - Classic Tomb Raider in Browser / [GitHub](https://github.com/XProger/OpenLara)
* [You Have Not Died Of Dysentery](https://woe-industries.itch.io/you-have-not-died-of-dysentery) - Oregon Tail with Alt Dysentery Mechanics
* [The World's Biggest Pac-Man](https://worldsbiggestpacman.com/) - Giant Pac-Man
* [Tetris](https://tetris.com/), [Tetr.js](http://farter.cn/tetr.js/), [OpenTetris Classic](https://sourceforge.net/projects/opentetrisclassic/) or [NullpoMino](https://github.com/nullpomino/nullpomino) - Play Tetris
* [TETR.IO](https://tetr.io/) - Multiplayer Tetris / [Plus](https://gitlab.com/UniQMG/tetrio-plus) / [Skin Database](https://you.have.fail/tetrioplus//) / [Stats](https://tetrio.team2xh.net/)
* [Jstris](https://jstris.jezevec10.com/) - Multiplayer Tetris / [Plus](https://discord.gg/mtX8ek82xb) / [Skin Database](https://docs.google.com/spreadsheets/d/1xO8DTORacMmSJAQicpJscob7WUkOVuaNH0wzkR_X194/htmlview#)
* [First-Person Tetris](https://firstpersontetris.com/) - Play Tetris in First Person
* [Play Snake](https://playsnake.org/) - Retro Snake
* [Google Maps Snake](https://snake.googlemaps.com/) - Google Snake
* [Google Snake Mods](https://googlesnakemods.com/) - Google Snake Mods
* [Snake-Game](https://www.onemotion.com/snake-game/) - 3D Snake
* [TENNIS!](https://snek-vunderkind.vercel.app/games/tennis.html) - JavaScript Pong
***
# ► Browser Games
* ↪️ **[Interactive Text Adventures](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_text_adventures)**
* ⭐ **[Flashpoint](https://flashpointarchive.org/)** / [Discord](https://discord.gg/Z4gGtJvvn8), [Flash by Night](http://www.flashbynight.com/) or [Flash Library](https://rentry.co/FMHYBase64#software-library-flash) - Flash Game Archives
* ⭐ **[Ninja Kiwi Archive](https://ninjakiwi.com/archive)** - Ninja Kiwi / Bloons Archive
* ⭐ **[Allchemy](https://allchemy.io/)** or [Infinite Craft](https://neal.fun/infinite-craft/) / [Wiki](https://expitau.github.io/InfiniteCraftWiki/) / [Search](https://infinibrowser.zptr.cc/search) - Infinite Item Crafting Games
* ⭐ **[Powerline.io](https://powerline.io/)** - Multiplayer Snake / [Discord](https://discord.com/invite/NckDSyb)
* ⭐ **[QWOP](https://www.foddy.net/Athletics.html)** - Ragdoll Running Game
* ⭐ **[TagPro](https://koalabeast.com/)** - Multiplayer Capture the Flag / [Discord](https://discord.com/invite/hhW3MDzrt3)
* [Moo Moo](https://moomoo.io/) - Multiplayer Survival Game
* [Slither.io](http://slither.io/) - Grow the Longest Worm
* [Hexar.io](http://www.hexar.io/), [splix.io](https://splix.io/) or [paper-io](https://paper-io.com/) - Control the Map
* [agar.io](https://agar.io/) - Become the Biggest Circle
* [Hole.io](https://hole-io.com/) - Become the Biggest Hole / [Discord](https://discord.gg/UA2HdpT)
* [Deeeep](https://beta.deeeep.io/) - Multiplayer Feeding Frenzy Games
* [SpaceCadetPinball](https://alula.github.io/SpaceCadetPinball) - Browser Space Cadet Pinball
* [The Circle](https://the-circle.app/) - Dodge Circles
* [JoeDangerTheGame](https://joedangerthegame.com/) - Trials Inspired Game
* [Polka Dot Game](https://www.polkadotgame.com/) - Dodge & Eat Dots
* [Spinner](https://hyperspace-wizard.itch.io/spinner) - Spinner Timing Game
* [Ehmorris](https://ehmorris.com/lander/) - Spaceship Landing Game
* [Dino Swords](https://dinoswords.gg/) - Stay Alive by Jumping / Destroying Cacti
* [Bemuse](https://bemuse.ninja/) - Rhythm Game
* [Pulsus](https://www.pulsus.cc/play/) - 3x3 Tile Board Rhythm Game
* [Sans Fight](https://jcw87.github.io/c2-sans-fight/) - Undertale Fight Simulator
* [Flappy Bird](https://flappybird.io/) - HTML5 Flappy Bird
* [Marble Blast Gold Web](https://marbleblast.vaniverse.io/) - Marble Blast Gold in Browser
* [Tensor Trust](https://tensortrust.ai/) - AI Prompting Multiplayer Skill Game
* [Rooms](https://rooms.xyz/) - Room Design Game / [Discord](https://discord.gg/rooms)
* [fsh.zone](https://fsh.zone/) / [Discord](https://discord.com/invite/FKEzJSf) - Fishing Games
* [Haxball](https://www.haxball.com/) - Physics-Based Soccer
* [Mexican Train](https://mexicantrain.online/) - Domino Train Game
* [Minecraft Classic](https://classic.minecraft.net/) - Play Minecraft Classic
* [racing-game](https://racing.pmnd.rs/) - Driving Game / [GitHub](https://github.com/pmndrs/racing-game) / [Discord](https://discord.gg/dQW7fDmaAG)
* [slow roads](https://slowroads.io/) - Driving Game
* [The Multiverse](https://across-multiverse.com/) - Universe Exploration Game Across
* [Neopets](https://www.neopets.com/), [tamaNOTchi](https://tamanotchi.world/) or [Marapets](https://www.marapets.com) - Virtual Pet Game
* [Gaia Online](https://www.gaiaonline.com/) - Anime Virtual Pet
* [Edu-Games](https://www.edu-games.org/) - Educational Games
***
## ▷ Multi-Game Sites
* 🌐 **[Browser Games Rentry](https://rentry.org/zn79z)** - Browser Game Site Index
* ⭐ **[itch.io web games](https://itch.io/games/free/platform-web)** - Browser Games
* ⭐ **[Newgrounds](https://www.newgrounds.com/games)** - Browser Games
* ⭐ **[Armor Games](https://armorgames.com/)** - Browser Games
* [/r/WebGames](https://reddit.com/r/WebGames) - Browser Games Subreddit
* [Kongregate](https://www.kongregate.com/) - Browser Games
* [Addicting Games](https://www.addictinggames.com/) - Browser Games
* [Y8](https://www.y8.com/) - Browser Games
* [Crazy Games](https://www.crazygames.com/) - Browser Games
* [GamezHero](https://www.gamezhero.com/) - Browser Games
* [Deepnight](https://deepnight.net/) - Browser Games
* [Nicky Case](https://ncase.me/) - Browser Games
* [yell0wsuit](https://yell0wsuit.page/games.html) - Browser Games
* [N-Arcade](https://n-arcade.io/) - Browser Games
* [watabou](https://watabou.itch.io/) - Browser Games
* [DAN-BALL](https://dan-ball.jp/en/) - Browser Games
* [Miniplay](https://www.miniplay.com/) - Browser Games
* [Yandex Games](https://yandex.com/games/) - Browser Games
* [Spatial](https://www.spatial.io/) - 3D Browser Games
* [Unblock KISD](https://sites.google.com/view/unblockkisd/), [Tyrone's Unblocked](https://sites.google.com/site/tyronesgamesez/) or [UBG365](https://ubg365.github.io/) / [Discord](https://discord.com/invite/jJXpcK6SFv) - Browser Games / Unblocked at Schools
* [CoolMathGames](https://www.coolmathgames.com/) - Browser Game Site (disguised as edu games)
* [FlashMuseum](https://flashmuseum.org/), [Flash Arch](https://flasharch.com/en) or [AlbinoBlackSheep](https://www.albinoblacksheep.com/games/) - Flash Games
* [Arcade Prehacks](https://www.arcadeprehacks.com/), [SamsHackedGames](https://www.samshackedgames.com/) or [KongHack](https://konghack.com/) - Flash Game Hacks
* [HTML5 Games](https://html5games.com/) / [Browser](https://html5.thebestarcadescript.com/) - HTML5 Games
* [iogames.space](https://iogames.space/), [itch.io](https://graebor.itch.io/), [Kindanice](https://kindanice.itch.io/), [Jezzamon](https://jezzamon.itch.io/), [Modd.io](https://www.modd.io/) or [Kevin Games](https://kevin.games/)- .io Games
***
## ▷ Party / Multiplayer
* ⭐ **[Codenames](https://codenames.game/)** - Party Card Games
* ⭐ **[GarticPhone](https://garticphone.com/)** - Telephone Game
* ⭐ **[skribbl](https://skribbl.io/)**, [Sketchful](https://sketchful.io/), [Drawize](https://www.drawize.com/) or [Gartic](https://gartic.io/) - Drawing / Guessing Game / Multiplayer
* [Bloob.io](https://bloob.io/) - Multiple Games
* [Gidd.io](https://gidd.io/) - Multiple Games
* [Yucata](https://www.yucata.de/en/) - Multiple Games
* [Pixoguess](https://pixoguess.io/) - Guess Pixelated Images
* [Gpop.io](https://gpop.io/) - Rhythm Game
* [Spyfall](https://www.spyfall.app/) - Spy Party Game
* [Betrayal](https://betrayal.io/) - Among Us Clone
* [Death by AI](https://deathbyai.gg/) - Survival Plan Game
* [Smash Karts](https://smashkarts.io/) - Kart Battles
* [Plink](http://labs.dinahmoe.com/plink/) - Music Game
* [Make It Meme](https://makeitmeme.com/) - Meme Party Game
* [tix.tax](https://tix.tax/) - Tic-Tac-Toe
***
## ▷ Shooter
* ⭐ **[Play-CS](https://play-cs.com/)** - Browser Counter-Strike 1.6
* ⭐ **[NZP](https://nzp.gay/)** - Browser COD Zombies
* ⭐ **[Krunker.io](https://krunker.io/)**, [2](https://browserfps.com/) - PvP FPS / [Market Ping](https://yee.how/market-ping/)
* [OpenArena Live](https://kosmi.io/openarena) - Quake 3 Arena Clone
* [Venge](https://venge.io/) - PvP FPS
* [kour.io](https://kour.io/) - PvP FPS
* [LolShot](https://lolshot.io/) - PvP FPS
* [1v1.LOL](https://1v1.lol/) - 1v1 Building / Battle Simulator
* [ShellShock](https://www.shellshock.io/) - PvP FPS
* [MiniRoyale](https://miniroyale.io/) - Battle Royale Game
* [ZombsRoyale.io](https://zombsroyale.io/) - Top-Down Battle Royale
* [Wings.io](https://wings.io/) - Multiplayer Plane Battles / [Discord](https://discord.com/invite/HQcTbuZByA)
* [Operius](https://mors-games.itch.io/operius) - Space Shooter
* [Galaxies](https://playcanv.as/p/Ikq6Uk6A/) - Space Combat Game
* [Tanki](https://tankionline.com/) or [Diep](https://diep.io/) - Online Team VS Team Tank Games
* [webXash](https://x8bitrain.github.io/webXash/) - Half Life Demo
***
## ▷ Platformer
* ⭐ **[Bonk](https://bonk.io/)** - Multiplayer Physics Game
* ⭐ **[TotalJerkFace](https://totaljerkface.com/)** - Happy Wheels & Other Games
* ⭐ **[Line Rider](https://www.linerider.com/)** - Draw Sled Tracks
* [LOLBeans](https://lolbeans.io/) - Fall Guys Clone
* [Free Rider HD](https://www.freeriderhd.com/) - Draw / Race Bike Tracks
* [Raptjs](https://madebyevan.com/rapt/) or [Synesthesia in Space](http://synesthesiagame.com/) - Puzzle Platformer
* [Tales of Dorime](https://dorime.udany.net/) - 2D Platformer
* [PrinceJS](https://princejs.com/) - Prince of Persia
***
## ▷ Simulation
* [FSHistory](https://s-macke.github.io/FSHistory/) - Play Classic Flight Simulator
* [Hacker Wars](https://hackerwars.io/) or [SlaveHack2](https://www.slavehack2.com/) - Hacking Simulators
* [Startup Simulator](https://toggl.com/startup-simulator/) - Startup Simulation Game
* [Sim CB](https://benoitessiambre.com/macro.html) - Central Bank Simulator
* [Orbity](https://orbity.io/game.php) - Spaceship Launching Game
* [Plane Food Simulator](https://sheepandram.itch.io/pfs2021) - Plane Food Eating Game
* [Alternate History Simulator](https://abw.blue/) - Write Alternate History
* [NationStates](https://www.nationstates.net/) - Nation Simulation Game
* [GeoFS](https://www.geo-fs.com/geofs.php) - Plane Simulator
* [Money Simulator](https://simulator.money) - Money Simulator
* [BrantSteele](https://brantsteele.net/) or [Simublast](https://www.simublast.com/) - Game Show Simulators
***
## ▷ RPG
* [Fallen London](https://www.fallenlondon.com/) - Text-Based RPG
* [Bit Heroes Arena](https://bitheroesarena.io/) - 8-bit RPG
* [Yume Nikki Online Project](https://ynoproject.net/) - Multiplayer Yume Nikki / [Discord](https://discord.com/invite/fRG3AxUeKN)
* [Wanderers](https://wanderers.io/) - Real-Time Strategy Game
* [Dynast](https://dynast.io/) - Survival Browser Game
* [Kingdom of Loathing](https://www.kingdomofloathing.com/) - Comedy RPG
* [Frasier Fantasy](https://edward-la-barbera.itch.io/frasier-fantasy) - Comedy RPG
* [Gridland](https://gridland.doublespeakgames.com/) - Grid Matching RPG
* [Backpack Hero](https://thejaspel.itch.io/backpack-hero) - Turn-Based RPG
* [Miniconomy](https://www.miniconomy.com/) - Economy Game
* [Forumwarz](https://www.forumwarz.com/) - Browser RPG
* [Dungeon Crawl](https://crawl.develz.org/) - Browser RPG
* [Isleward](https://bigbadwaffle.itch.io/isleward) - Browser RPG
***
## ▷ Board / Card / Dice
* 🌐 **[Online Board Games](https://i.ibb.co/4Yzk4nV/Zb-Q2ste-L-o.png)** / [2](https://imgbox.com/ZbQ2steL/), **[Curlie Board Games](https://curlie.org/en/Games/Video_Games/Recreation/Browser_Based/Board_Games)**, [Board Game Online](https://www.boardgame-online.com/), [Board Game Arena](https://en.boardgamearena.com/) or [FunNode](https://www.funnode.com/) - Board Game Indexes
* 🌐 **[Curlie Cards](https://curlie.org/en/Games/Video_Games/Recreation/Browser_Based/Cards)** - Card Game Index
* 🌐 **[Curlie Yahtzee](https://curlie.org/en/Games/Video_Games/Recreation/Browser_Based/Dice/Yahtzee)** - Yahtzee Game Index
* ⭐ **[WorldOfCardGames](https://worldofcardgames.com/)**, [CardGames.io](https://cardgames.io/), [247Games](https://www.247games.com/), [CardzMania](https://www.cardzmania.com/) or [World of Solitaire](https://worldofsolitaire.com/) - Multiplayer Card Games
* [PartyProject](https://char64.itch.io/partyproject) - Mario Party Style Multiplayer Game
* [FlyOrDie](https://www.flyordie.com/) - Multiplayer Card Games
* [Playok](https://www.playok.com/) - Multiplayer Card Games
* [PlayingCards](https://playingcards.io/) - Multiplayer Card Games
* [Richup](https://richup.io/) - Monopoly-Style Board Game
* [Rally The Troops](https://www.rally-the-troops.com/) - Historical Board Games / [Discord](https://discord.gg/CBrTh8k84A)
* [AllBad.Cards](https://bad.cards/) - Cards Against Humanity Online
* [Wikidata Card Game Generator](https://cardgame.blinry.org/) - Generate "Top Trumps" Cards with Wikidata
* [Solitaired](https://solitaired.com/), [Solitr](https://www.solitr.com/) or [Solitaire Owl](https://solitaireowl.com/) - Solitaire
* [Mah-Jongg](https://www.mahjongfun.com/), [Mahjong4Friends](https://mahjong4friends.com/) or [Classic Mahjong](https://classic-mahjong.com/) - Mahjong Games
* [lishogi](https://lishogi.org/) - Shogi
* [Online GO](https://online-go.com/) - Multiplayer GO
* [Blackjack Break](https://blackjackbreak.com/) or [HTML5 Blackjack](https://www.html5blackjack.net/) - Browser Blackjack
* [Poker Now](https://www.pokernow.club/) or [247 Free Poker](https://www.247freepoker.com/) - Multiplayer Poker
* [KDice](https://www.kdice.com/) - Multiplayer Dice War
* [Colonist](https://colonist.io/) - Multiplayer "Settlers of Catan"
* [Hexxagon](https://hexxagon.com/) - Hexagonal Board Game
* [The Bafflement Fires](https://www.dpoetry.com/fires/) - 1950's Freemasonic Board Game
* [Scorecard.gg](https://scorecard.gg/) - Board Game Scorecards
***
## ▷ Strategy
* ↪️ **[Chess Learning Resources](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/edu#wiki_.25B7_chess)**
* ⭐ **[lichess](https://lichess.org/)**, [GameKnot Chess](https://gameknot.com/), [SparkChess](https://www.sparkchess.com/) or [Chess.com](https://www.chess.com/) - Chess Platforms
* ⭐ **lichess Tools** - [Mobile](https://lichess.org/mobile) / [Customize](https://prettierlichess.github.io/) / [Leagues](https://www.lichess4545.com/)
* ⭐ **[Print Chess](https://www.printchess.com/)** - Printable Paper Chess Set
* ⭐ **[Super Auto Pets](https://teamwood.itch.io/super-auto-pets)** - Pet Battle Game
* [Warzone](https://www.warzone.com/) - RISK Clone
* [Neptune's Pride](https://np4.ironhelmet.com/) - Space Strategy game
* [generals.io](https://generals.io/) - War Strategy Game
* [Chesses](https://pippinbarr.com/chesses/) or [Omnichess](https://omnichess.club/) - Multiple Styles of Chess
* [The Kilobytes Gambit](https://vole.wtf/kilobytes-gambit/) - 1k Chess Game
* [Kung Fu Chess](https://www.kfchess.com/) - Real-Time Chess without Turns
* [PokemonChess](https://pokemonchess.com/) - Pokémon Style Chess / [Discord](https://discord.gg/fp5bcCqg8q)
* [Laser](https://playlaser.xyz/) - Alt Style Chess
* [Chess Base](https://chessbase.in/) / [2](https://en.chessbase.com/) - Indian Chess News
* [Lidraughts](https://lidraughts.org/) - Multiplayer Checkers
***
## ▷ Puzzle Games
* ⭐ **[BestCrosswords](https://www.bestcrosswords.com/)**, [TheWordSearch](https://thewordsearch.com/) or [Regex-Crossword](https://jimbly.github.io/regex-crossword/) - Crossword Puzzles / [Creator](https://puzzlemaker.discoveryeducation.com/), [2](https://www.xwords-generator.de/en) / [Solver](https://www.wordplays.com/), [2](https://www.dictionary.com/e/crosswordsolver/), [3](https://crossword-solver.io/)
* ⭐ **[KillerCrossword](https://killercrossword.com/)** - No Clue Crosswords
* ⭐ **[MoreWords](https://www.morewords.com/)** , [PlayScrabble](https://playscrabble.com/)or [WordHub](https://wordhub.com/) - Scrabble
* ⭐ **[Rubiks Cube Explorer](https://iamthecu.be/)**, [Grubiks](https://www.grubiks.com/), [pCubes](https://twistypuzzles.com/forum/viewtopic.php?f=1&t=27054) or [The Cube](https://bsehovac.github.io/the-cube/) - Rubix Cubes / [Solver](https://rubiksolve.com/), [2](https://rubiks-cube-solver.com/)
* ⭐ **[jiggie](https://jiggie.fun/)** - Custom Puzzles + Multiplayer
* ⭐ **[Minesweeper.online](https://minesweeper.online/)** - Minesweeper
* [Puzzle Party](https://artsandculture.google.com/experiment/puzzle-party/EwGBPZlIzv0KRw) - Multiplayer Jigsaws
* [PuzzlePrime](https://www.puzzleprime.com/) - Problems / Puzzles
* [Truncate](https://truncate.town/) - Crossword Strategy Game
* [HoverCats](https://hovercats.gg/) - Multiplayer Crosswords
* [Regex Cross­word](https://regexcrossword.com/) - Regex Cross­words
* [Web Paint-by-Number](https://webpbn.com/) or [Nonograms](https://www.nonograms.org/) - Graphic Crosswords
* [Connections](https://connections.swellgarfo.com/) - Custom Word Puzzles
* [eWordChallenge](https://www.ewordchallenge.net/) - Boggle Online
* [Game for the Brain](https://www.gamesforthebrain.com/) - Puzzles / Quizzes
* [MasasGames](https://masasgames.com/) - Virtual Escape Rooms
* [Sokoban Online](https://www.sokobanonline.com/) - Sokoban Puzzles
* [Sokoban](https://suppilulemur.neocities.org/) - Zelda-Themed Sokoban Puzzles
* [All The 2048](https://true65536.github.io/allthe2048/), [DuckDuckgo 2048](https://duckduckgo.com/?q=play+2048&amp;ia=answer) or [2048](https://play2048.co/) - 2048 Puzzles
* [JetHolt](https://jetholt.com/hacking/), [RebelWithoutACause](https://rebelwithoutarootcause.com/demos/terminal/) or [Aramor](http://aramor.epizy.com/fallout-terminal/main) - Fallout Terminal Hacking Game
* [Minesweeper Twist](https://polyreplay.com/minesweepertwist) - Irregular Grid Minesweeper
* [PROXX](https://proxx.app/) - Space Minesweeper
* [Rockbasher](https://www.rockbasher.com/) - Retro Style Puzzle Game
* [Game about Squares](http://gameaboutsquares.com/) or [Orion](https://orion.lukasbach.com/) - Puzzle Game
* [Euclidea](https://www.euclidea.xyz/) - Geometric Puzzles
* [Pixel Puzzler](https://pixel-puzzler.playcurious.games/) or [UnFlip](https://unflipgame.com/) - Block Puzzles
* [Sudoku XV](https://keeri.place/sudoku-xv) - Sudoku
* [picture dots](https://www.picturedots.com/) - Make & Play Dot Puzzles
* [MakeAWordSearch](http://www.makeawordsearch.net/) - Word Search Creator
* [RobinWords](https://www.robinwords.com/) - Word Ladder Game
* [Oh, My Dots!](https://www.ohmydots.com/) - Connect the Dots Game
* [Kuku Kube](https://kuku-kube.com/) - Find the Different Squares
* [MazeGenerator](https://www.mazegenerator.net/), [Maze Toys](https://maze.toys/) or [Maze](https://www.epgsoft.com/maze/) - Maze Generators
***
## ▷ Incremental / Idle
* 🌐 **[/r/Incremental_Games](https://www.reddit.com/r/incremental_games/wiki/list_of_incremental_games)**, [Galaxy Click](https://galaxy.click/), [Incremental Game Plaza](https://plaza.dsolver.ca/), [IncrementalDB](https://www.incrementaldb.com/) or [Almost Idle](https://almostidle.com/) - Incremental Games Indexes
* ⭐ **[Cookie Clicker](https://orteil.dashnet.org/cookieclicker/) / [2](https://orteil.dashnet.org/experiments/cookie/)** - Incremental Cookie Game
* ⭐ **Cookie Clicker Tools** - [Multiple Tools](https://github.com/CookieMonsterTeam/CookieMonster) / [Calculator](https://coderpatsy.bitbucket.io/cookies/cookies.html) / [Discord](https://discord.com/invite/cookie)
* [The Thorp of Woodstock](https://cheerfulghost.github.io/civ-clicker/index.html) - Build a Civilization
* [Universal paperclips](https://www.decisionproblem.com/paperclips/index2.html) - A Paperclip Creation Simulator
* [MousePoint](https://creativetechguy.com/mousepoint) - Incremental Mouse Movement Game
* [BitBurner](https://bitburner-official.github.io/) - Incremental RPG
* [CandyBox](https://candybox2.github.io/) - Candy Eating Game
* [Particle Clicker](https://particle-clicker.web.cern.ch/) - Incremental Particle Physics Games
* [KittensGame](https://kittensgame.com/web/) - Incremental Kitten Maker
* [A Dark Room](https://adarkroom.doublespeakgames.com/) - Dark Room Survival Game
* [The Fed](https://thefed.app/) - Incremental Banking Game
* [WarClicks](https://warclicks.com/) - Incremental War Game
* [Goblin Bet](https://goblin.bet/) - Bet on 1v1 Monster Fights
* [The First Alkahistorian](https://nagshell.github.io/elemental-inception-incremental/) - Incremental Elemental Game
* [FactoryIdle](https://factoryidle.com/) - Factory Idle Simulator
* [Idlescape](https://www.play.idlescape.com/) - Idle MMORPG
* [ProgressQuest](http://progressquest.com/) - Idle RPG
* [Anti Matter Dimesions](https://ivark.github.io/) - Anti Matter Idle Game
* [Theory of Magic](https://mathiashjelm.gitlab.io/arcanum/) - Magic Idle Game
* [Succubox](https://www.glaielgames.com/succubox/) - Loot Box Idle Game
* [Swarm Simulator](https://www.swarmsim.com/) - Idle Bug Swarm Game
***
## ▷ Trivia Games
* ⭐ **[GuessTheGame](https://guessthe.game/)** - Game Guessing Game
* ⭐ **[Globle](https://globle-game.com/)**, [OpenGuessr](https://openguessr.netlify.app/), [City Guesser](https://virtualvacation.us/guess), [Quizzity](https://david-peter.de/quizzity/), [Where Am I?](https://whereami.io/) or [Geotastic](https://geotastic.de/) - Location Guessing Games
* [GeoTips](https://geotips.net/) / [Discord](https://discord.gg/svhWzU7FMa), [Plonk It](https://www.plonkit.net/) / [Discord](https://discord.gg/plonk-it-854419081813164042) or [Top Tricks](https://somerandomstuff1.wordpress.com/2019/02/08/geoguessr-the-top-tips-tricks-and-techniques/) - GeoGuessr Guides
* ⭐ **[Free Rice](https://freerice.com/)** - Earn Rice for the World Food Programme
* [Huedle](https://huedle.com/)
* [BoxOfficeGA](https://boxofficega.me/)
* [Akinator](https://en.akinator.com/) - 20 Questions
* [LostGamer](https://lostgamer.io/) - Video Game GeoGuessr
* [GTA V GeoGuesser](https://gta-geoguesser.com/) - GTA V GeoGuessr
* [GeoArtwork](https://artsandculture.google.com/experiment/geo-artwork/wgEPVBAUiRVlEQ) - Guess Origins of Cultural Artifacts
* [TimeGuessr](https://timeguessr.com/) - Historical GeoGuessr
* [travle](https://travle.earth/) - Guess Countries Between Two Locations
* [English Sandwhich](https://englishsandwich.github.io/) - Guess Where Dishes are From
* [FlightGuesser](https://flightguesser.com/) - Flight Path Guessing Game
* [WTM](https://whatthemovie.com/), [Kino.wtf](https://www.kino.wtf/), [RT Daily](https://www.rottentomatoes.com/daily/) or [Framed](https://framed.wtf/) - Movie Guessing Games
* [Cinenerdle2](https://www.cinenerdle2.app/) - Movie Puzzle
* [GuessAnimeQuiz](https://guessanimequiz.com/) - Anime Guessing
* [ConnectTheStars](https://connectthestars.xyz/) or [Movie To Movie](https://movietomovie.com/) - Connect Stars through Movies
* [The Wiki Game](https://www.thewikigame.com/), [Six Degrees of Wikipedia](https://www.sixdegreesofwikipedia.com/) or [WikiRacer](https://wikiracer.io/) - Wiki Exploration Games / [Automation Tool](https://gitlab.com/johanbluecreek/wikiracer)
* [MusicNerd](https://musicnerd.io/) - Music Guessing Game
* [DanceMusic](http://dancemusic.wtf/) - Electronic Music Genre Guessing Game
* [Guess My Rank](https://guessmyrank.com/) - Guess Player Game Ranks
* [Poeltl](https://poeltl.dunk.town/) - NBA Guessing Game
* [The Higher Lower Game](https://www.higherlowergame.com/) or [GoogleFued](https://googlefeud.com/) - Guess What's Googled More
* [Guess The Price](https://guesstheprice.net/) - Price Guessing Game
* [Apparle](https://www.apparle.com/) - Apparel Price Guessing Game
* [Metazooa](https://metazooa.com/) - Animal Guessing Game
* [ChessGuessr](https://www.chessguessr.com/) - Chess Style Guessing Game
* [Guess The Year](https://guess-the-year.davjhan.com/) or [ChronoPhoto](https://www.chronophoto.app/) - Year Guessing Game
* [Approved, or Not Approved?](https://approvednotapproved.com/) - Approved Advertising Guessing Game
* [Wikitrivia](https://wikitrivia.tomjwatson.com/) - Guess Which Event Came First
* [WhatBeatsRock](https://www.whatbeatsrock.com/) - Guess What Beats What
* [LoLdle](https://loldle.net/) - League of Legends Wordle
* [Minecraftle](https://minecraftle.zachmanson.com/) - Minecraft Crafting Style Wordle
* [Squirdle](https://squirdle.fireblend.com/) - Pokémon Style Wordle
* [Human or Not?](https://www.humanornot.ai/) - Guess Human vs. AI
* [AI Bingo](https://ai-bingo.lipsumar.io/) - AI Art Guessing Games
***
## ▷ Word Games
* 🌐 **[Awesome Wordle](https://github.com/prakhar897/awesome-wordle)**, [Wordles of the World](https://rwmpelstilzchen.gitlab.io/wordles/) or [Wordleverse](https://wordleverse.net/games) - Wordle Game Index
* ⭐ **[Wordle](https://www.nytimes.com/games/wordle/index.html)** - Original Wordle
* ⭐ **[Wordle Analyzer](https://wordle-analyzer.com/)**
* [JKLM.FUN](https://jklm.fun/) - Multiplayer Word Guessing Game
* [Sqword](https://www.sqword.com/)
* [Wordle Unlimited](https://wordleunlimited.org/)
* [Pixletters](https://pixletters.com/)
* [Alphabeticle](https://alphabeticle.xyz/)
* [WordMaze](https://wordmaze.click/)
* [WordleGame](https://wordlegame.org/)
* [Squaredle](https://squaredle.app/)
* [Wordlevs](https://wordlevs.com/)
* [Octordle](https://www.britannica.com/games/octordle/)
* [Nerdle](https://nerdlegame.com/) - Number Guessing Game
* [Factle](https://factle.app/) - Fact Style Wordle
* [Countle](https://www.countle.org/) - Math Style Wordle
* [Ridella](https://ridella.xyz/) - Riddle Style Wordle
***
# ► [Gaming Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/game-tools)

1198
STORAGE.md

File diff suppressed because it is too large Load Diff

7
api/eslint.config.js Normal file
View File

@ -0,0 +1,7 @@
// @ts-check
import tasky from '@taskylizard/eslint-config'
export default tasky({
browser: true,
ignores: ['**/.nitro']
})

6
api/middleware/cors.ts Normal file
View File

@ -0,0 +1,6 @@
import { corsEventHandler } from 'nitro-cors'
export default corsEventHandler((_event) => {}, {
origin: '*',
methods: '*'
})

View File

@ -3,7 +3,6 @@ export default defineNitroConfig({
runtimeConfig: { runtimeConfig: {
WEBHOOK_URL: process.env.WEBHOOK_URL WEBHOOK_URL: process.env.WEBHOOK_URL
}, },
srcDir: '.vitepress',
routeRules: { routeRules: {
'/': { '/': {
cors: false cors: false

24
api/package.json Normal file
View File

@ -0,0 +1,24 @@
{
"name": "@fmhy/api",
"version": "1.0.0",
"type": "module",
"description": "FMHY API.",
"scripts": {
"prepare": "nitropack prepare",
"dev": "nitropack dev",
"build": "nitropack build",
"preview": "node .output/server/index.mjs",
"types": "nitropack prepare",
"lint": "eslint --cache -f pretty routes types middleware nitro.config.ts"
},
"dependencies": {
"itty-fetcher": "^0.9.4",
"nitro-cors": "^0.7.0",
"nitropack": "latest"
},
"devDependencies": {
"@taskylizard/eslint-config": "^1.1.1",
"eslint": "^8.56.0"
},
"author": "taskylizard <taskylizard@fmhy.net>"
}

View File

@ -7,14 +7,6 @@ export default defineEventHandler(async (event) => {
FeedbackSchema.parseAsync FeedbackSchema.parseAsync
) )
const env = useRuntimeConfig(event) const env = useRuntimeConfig(event)
const { pathname } = new URL(event.node.req.url)
const { success } = await env.MY_RATE_LIMITER.limit({ key: pathname })
if (!success) {
return new Response(`429 Failure rate limit exceeded for ${pathname}`, {
status: 429
})
}
let description = `${message}\n\n` let description = `${message}\n\n`
if (page) description += `**Page:** \`${page}\`` if (page) description += `**Page:** \`${page}\``

6
api/tsconfig.json Normal file
View File

@ -0,0 +1,6 @@
{
"extends": "./.nitro/types/tsconfig.json",
"compilerOptions": {
"verbatimModuleSyntax": true
}
}

View File

@ -3,9 +3,3 @@ main = ".output/server/index.mjs"
workers_dev = true workers_dev = true
account_id = "fe5d9bd14160b07939282e45f63eb5ad" account_id = "fe5d9bd14160b07939282e45f63eb5ad"
compatibility_date = "2022-09-10" compatibility_date = "2022-09-10"
[[unsafe.bindings]]
name = "RATE_LIMITER"
type = "ratelimit"
namespace_id = "1001"
simple = { limit = 100, period = 30 }

View File

@ -1,32 +0,0 @@
{
"$schema": "https://biomejs.dev/schemas/1.8.3/schema.json",
"extends": ["@taskylizard/biome-config"],
"files": {
"ignore": [".vitepress/**/*.vue", ".vitepress/vue-shim.d.ts"]
},
"formatter": {
"enabled": false
},
"javascript": {
"globals": [
"defineNitroConfig",
"eventHandler",
"useRuntimeConfig",
"readValidatedBody",
"defineEventHandler"
]
},
"linter": {
"rules": {
"style": {
"useFilenamingConvention": {
"level": "info",
"options": {
"filenameCases": ["camelCase", "PascalCase"]
}
},
"noDefaultExport": "off"
}
}
}
}

View File

@ -99,9 +99,7 @@ export default defineConfig({
items: [ items: [
{ text: 'Posts', link: '/posts' }, { text: 'Posts', link: '/posts' },
{ text: 'Feedback', link: '/feedback' }, { text: 'Feedback', link: '/feedback' },
{ text: 'snowbin', link: 'https://pastes.fmhy.net' }, { text: 'snowbin', link: 'https://pastes.fmhy.net' }
{ text: 'SearXNG', link: 'https://searx.fmhy.net/'},
{ text: 'Whoogle', link: 'https://whoogle.fmhy.net/'}
] ]
} }
], ],

View File

@ -14,60 +14,23 @@ export const commitRef = process.env.CF_PAGES
}">${process.env.CF_PAGES_COMMIT_SHA.slice(0, 8)}</a>` }">${process.env.CF_PAGES_COMMIT_SHA.slice(0, 8)}</a>`
: 'dev' : 'dev'
export const feedback = `<a href="/feedback" class="feedback-footer">Made with ❤</a>` export const feedback = `<a href="/feedback" class="feedback-footer">Made with ❤</a>`
export const search: DefaultTheme.Config['search'] = { export const search: DefaultTheme.Config['search'] = {
options: { options: {
miniSearch: { miniSearch: {
options: {
tokenize: (text) => text.split(/[\n\r #%*,=/:;?[\]{}()&]+/u), // simplified charset: removed [-_.@] and non-english chars (diacritics etc.)
processTerm: (term, fieldName) => {
// biome-ignore lint/style/noParameterAssign: h
term = term
.trim()
.toLowerCase()
.replace(/^\.+/, '')
.replace(/\.+$/, '')
const stopWords = [
'frontmatter',
'$frontmatter.synopsis',
'and',
'about',
'but',
'now',
'the',
'with',
'you'
]
if (term.length < 2 || stopWords.includes(term)) return false
if (fieldName === 'text') {
const parts = term.split('.')
if (parts.length > 1) {
const newTerms = [term, ...parts]
.filter((t) => t.length >= 2)
.filter((t) => !stopWords.includes(t))
return newTerms
}
}
return term
}
},
searchOptions: { searchOptions: {
combineWith: 'AND', combineWith: 'AND',
fuzzy: true, fuzzy: false,
// @ts-ignore // @ts-ignore
boostDocument: ( boostDocument: (
documentId, _,
term, term,
storedFields: Record<string, string | string[]> storedFields: Record<string, string | string[]>
) => { ) => {
const titles = (storedFields?.titles as string[]) const titles = (storedFields?.titles as string[])
.filter((t) => Boolean(t)) .filter((t) => Boolean(t))
.map((t) => t.toLowerCase()) .map((t) => t.toLowerCase())
// Downrank posts
if (documentId.match(/\/posts/)) return -5
// Uprate if term appears in titles. Add bonus for higher levels (i.e. lower index) // Uprate if term appears in titles. Add bonus for higher levels (i.e. lower index)
const titleIndex = const titleIndex =
titles titles
@ -172,7 +135,7 @@ export const sidebar: DefaultTheme.Sidebar | DefaultTheme.NavItemWithLink[] = [
}, },
{ {
text: '<span class="i-twemoji:alien-monster"></span> Gaming Tools', text: '<span class="i-twemoji:alien-monster"></span> Gaming Tools',
link: '/gaming-tools' link: '/gamingpiracyguide#gaming-tools'
}, },
{ {
text: '<span class="i-twemoji:camera"></span> Image Tools', text: '<span class="i-twemoji:camera"></span> Image Tools',

View File

@ -13,12 +13,12 @@ export async function generateFeed(config: SiteConfig): Promise<void> {
const feed: Feed = new Feed({ const feed: Feed = new Feed({
id: meta.hostname, id: meta.hostname,
link: meta.hostname, link: meta.hostname,
title: 'FMHY blog', title: `FMHY blog`,
description: meta.description, description: meta.description,
language: 'en-US', language: 'en-US',
image: 'https://github.com/fmhy.png', image: 'https://github.com/fmhy.png',
favicon: `${meta.hostname}/favicon.ico`, favicon: `${meta.hostname}/favicon.ico`,
copyright: 'Copyright (c) 2023-present FMHY' copyright: `Copyright (c) 2023-present FMHY`
}) })
const posts: ContentData[] = await createContentLoader('posts/*.md', { const posts: ContentData[] = await createContentLoader('posts/*.md', {

View File

@ -1,4 +1,4 @@
import type { MarkdownRenderer } from 'vitepress' import { type MarkdownRenderer } from 'vitepress'
// FIXME: tasky: possibly write less horror jank? // FIXME: tasky: possibly write less horror jank?
export function base64DecodePlugin(md: MarkdownRenderer) { export function base64DecodePlugin(md: MarkdownRenderer) {
@ -7,7 +7,7 @@ export function base64DecodePlugin(md: MarkdownRenderer) {
// Save the original rule for backticks // Save the original rule for backticks
const defaultRender = const defaultRender =
md.renderer.rules.code_inline || md.renderer.rules.code_inline ||
function (tokens, idx, options, _env, self) { function (tokens, idx, options, env, self) {
return self.renderToken(tokens, idx, options) return self.renderToken(tokens, idx, options)
} }

View File

@ -11,7 +11,8 @@ export function toggleStarredPlugin(md: MarkdownRenderer) {
contentToken.content.startsWith(':star:') contentToken.content.startsWith(':star:')
) { ) {
return `<li class="starred">` return `<li class="starred">`
} else {
return self.renderToken(tokens, index, options)
} }
return self.renderToken(tokens, index, options)
} }
} }

View File

@ -41,7 +41,7 @@ const authors = computed(() =>
<template> <template>
<div class="flex flex-wrap gap-4 pt-2"> <div class="flex flex-wrap gap-4 pt-2">
<div v-for="(c, index) of authors" class="flex gap-2 items-center"> <div v-for="(c, index) of authors" class="flex gap-2 items-center">
<img :src="`${c.github}.png`" class="w-8 h-8 rounded-full" /> <img :src="`${c.github}.png`" class="w-8 h-8 rounded-full" >
<a :href="c.github">{{ c.name }}</a> <a :href="c.github">{{ c.name }}</a>
<span v-if="index < authors.length - 1"></span> <span v-if="index < authors.length - 1"></span>
</div> </div>

View File

@ -0,0 +1,255 @@
<script setup lang="ts">
import { reactive, ref } from 'vue'
import { useRouter } from 'vitepress'
import {
type FeedbackType,
getFeedbackOption,
feedbackOptions
} from '../../../../api/types/Feedback'
const loading = ref<boolean>(false)
const error = ref<unknown>(null)
const success = ref<boolean>(false)
const router = useRouter()
const feedback = reactive<FeedbackType>({ message: '' })
async function handleSubmit(type?: FeedbackType['type']) {
if (type) feedback.type = type
loading.value = true
const body: FeedbackType = {
message: feedback.message,
type: feedback.type,
page: router.route.path
}
try {
const response = await fetch('https://feedback.tasky.workers.dev', {
method: 'POST',
headers: {
'Content-Type': 'application/json'
},
body: JSON.stringify(body)
})
const data = await response.json()
if (data.error) {
error.value = data.error
return
}
if (data.status === 'ok') {
success.value = true
}
} catch (error) {
error.value = error
} finally {
loading.value = false
}
}
</script>
<template>
<div class="wrapper">
<Transition name="fade" mode="out-in">
<div v-if="!feedback.type" class="step">
<div>
<div>
<p class="heading">Feedback</p>
</div>
</div>
<div class="button-container">
<button
v-for="item in feedbackOptions"
:key="item.value"
class="btn"
@click="handleSubmit(item.value as FeedbackType['type'])"
>
<span>{{ item.label }}</span>
</button>
</div>
</div>
<div v-else-if="feedback.type && !success" class="step">
<div>
<p class="desc">Page: {{ router.route.path }}</p>
<div>
<span>{{ getFeedbackOption(feedback.type)?.label }}</span>
<button
style="margin-left: 0.5rem"
class="btn"
@click="feedback.type = undefined"
>
<span class="i-carbon-close-large">close</span>
</button>
</div>
</div>
<div v-if="feedback.type === 'suggestion'" class="text-sm mb-2">
<strong>🕹 Emulators</strong>
<p class="desc">
They're already on the
<a
class="text-primary font-bold text-underline"
href="https://emulation.gametechwiki.com/index.php/Main_Page"
>
Game Tech Wiki.
</a>
</p>
<strong>🔻 Leeches</strong>
<p class="desc">
They're already on the
<a
class="text-primary font-bold text-underline"
href="https://filehostlist.miraheze.org/wiki/Free_Premium_Leeches"
>
File Hosting Wiki.
</a>
</p>
<strong>🐧 Distros</strong>
<p class="desc">
They're already on
<a
class="text-primary font-bold text-underline"
href="https://distrowatch.com/"
>
DistroWatch.
</a>
</p>
<strong>🎲 Mining / Betting Sites</strong>
<p class="desc">
Don't post anything related to betting, mining, BINs, CCs, etc.
</p>
<strong>🎮 Multiplayer Game Hacks</strong>
<p class="desc">
Don't post any hacks/exploits that give unfair advantages in
multiplayer games.
</p>
</div>
<textarea
v-model="feedback.message"
autofocus
class="input"
placeholder="What a lovely wiki!"
/>
<p class="desc mb-2">
If you want a reply to your feedback, feel free to mention a contact
in the message or join our
<a
class="text-primary font-semibold text-underline"
href="https://discord.gg/Stz6y6NgNg"
>
Discord.
</a>
</p>
<button
type="submit"
class="btn btn-primary"
:disabled="
feedback.message.length < 5 || feedback.message.length > 1000
"
@click="handleSubmit()"
>
Submit
</button>
</div>
<div v-else class="step">
<p class="heading">Thanks for your feedback!</p>
</div>
</Transition>
</div>
</template>
<style scoped>
.step > * + * {
margin-top: 1rem;
}
.btn {
border: 1px solid var(--vp-c-divider);
background-color: var(--vp-c-bg);
border-radius: 8px;
transition:
border-color 0.25s,
background-color 0.25s;
display: inline-block;
font-size: 14px;
font-weight: 500;
line-height: 1.5;
margin: 0;
padding: 0.375rem 0.75rem;
text-align: center;
vertical-align: middle;
white-space: nowrap;
}
.btn:disabled {
opacity: 0.5;
}
.btn:hover {
border-color: var(--vp-c-brand);
}
.btn-primary {
color: #fff;
background-color: var(--vp-c-brand);
border-color: var(--vp-c-brand);
}
.btn-primary:hover {
background-color: var(--vp-c-brand-darker);
border-color: var(--vp-c-brand-darker);
}
.heading {
font-size: 1.2rem;
font-weight: 700;
}
.button-container {
display: grid;
grid-gap: 0.5rem;
}
.wrapper {
margin: 2rem 0;
padding: 1.5rem;
border: 1px solid var(--vp-c-divider);
border-radius: 8px;
background: var(--vp-c-bg-alt);
}
.input {
width: 100%;
height: 100px;
border: 1px solid #ccc;
border-radius: 4px;
padding: 0.375rem 0.75rem;
}
.contact-input {
height: 50px;
border: 1px solid #ccc;
border-radius: 4px;
padding: 0.375rem 0.75rem;
}
.desc {
display: block;
line-height: 20px;
font-size: 12px;
font-weight: 500;
color: var(--vp-c-text-2);
}
.fade-enter-active,
.fade-leave-active {
transition: opacity 0.25s ease;
}
.fade-enter-from,
.fade-leave-to {
opacity: 0;
}
</style>

View File

@ -0,0 +1,157 @@
<script setup lang="ts">
import { ref } from 'vue'
import {
TransitionRoot,
TransitionChild,
Dialog,
DialogPanel,
DialogTitle,
DialogDescription
} from '@headlessui/vue'
const isOpen = ref(true)
const feedbackOptions = [
{
label: '💡 Suggestion',
value: 'suggestion'
},
{
label: '❤️ Appreciation',
value: 'appreciate'
},
{ label: '🐞 Bug', value: 'bug' },
{ label: '📂 Other', value: 'other' }
]
function closeModal() {
isOpen.value = false
}
function openModal() {
isOpen.value = true
}
</script>
<template>
<button
type="button"
class="p-[4px 8px] text-xl i-carbon:user-favorite-alt-filled"
@click="openModal"
/>
<TransitionRoot appear :show="isOpen" as="template">
<Dialog as="div" class="relative z-10" @close="closeModal">
<TransitionChild
as="template"
enter="duration-300 ease-out"
enter-from="opacity-0"
enter-to="opacity-100"
leave="duration-200 ease-in"
leave-from="opacity-100"
leave-to="opacity-0"
>
<div class="fixed inset-0 bg-black/25" />
</TransitionChild>
<div class="fixed inset-0 overflow-y-auto">
<div
class="flex min-h-full items-center justify-center p-4 text-center"
>
<TransitionChild
as="template"
enter="duration-300 ease-out"
enter-from="opacity-0 scale-95"
enter-to="opacity-100 scale-100"
leave="duration-200 ease-in"
leave-from="opacity-100 scale-100"
leave-to="opacity-0 scale-95"
>
<DialogPanel
class="w-full max-w-md transform overflow-hidden rounded-2xl bg-bg p-6 text-left align-middle shadow-xl transition-all"
>
<DialogTitle
as="h3"
class="text-lg font-medium leading-6 text-text"
>
Feedback
</DialogTitle>
<div class="mt-2">
<div class="grid gap-[0.5rem]">
<button
v-for="item in feedbackOptions"
:key="item.value"
class="inline-flex justify-center rounded-md border border-transparent bg-bg-alt px-4 py-2 text-sm font-medium text-text hover:border-primary focus-visible:ring-2 focus-visible:ring-primary focus-visible:ring-offset-2"
>
<span>{{ item.label }}</span>
</button>
</div>
</div>
<div class="mt-2">
<div>
<label class="field-label">Feedback*</label>
<textarea placeholder="meow" rows="5" />
</div>
</div>
<div class="mt-4">
<button
type="button"
class="inline-flex justify-center rounded-md border border-transparent bg-blue-100 px-4 py-2 text-sm font-medium text-blue-900 hover:bg-blue-200 focus:outline-none focus-visible:ring-2 focus-visible:ring-blue-500 focus-visible:ring-offset-2"
@click="closeModal"
>
Close
</button>
</div>
</DialogPanel>
</TransitionChild>
</div>
</div>
</Dialog>
</TransitionRoot>
</template>
<style scoped>
textarea,
input {
font-family: var(--vp-font-family-base);
background: var(--vp-c-bg-soft);
font-size: 14px;
border-radius: 4px;
padding: 16px;
width: 100%;
&::placeholder {
color: var(--vp-c-text-2) !important;
opacity: 1;
}
}
.btn {
border: 1px solid var(--vp-c-divider);
background-color: var(--vp-c-bg);
border-radius: 8px;
transition:
border-color 0.25s,
background-color 0.25s;
display: inline-block;
font-size: 14px;
font-weight: 500;
line-height: 1.5;
margin: 0;
padding: 0.375rem 0.75rem;
text-align: center;
vertical-align: middle;
white-space: nowrap;
}
.btn:disabled {
opacity: 0.5;
}
.btn:hover {
border-color: var(--vp-c-brand);
}
</style>

View File

@ -0,0 +1,83 @@
<script setup lang="ts">
import { ref } from 'vue'
import Feedback from './Feedback.vue'
const showModal = ref(false)
</script>
<template>
<button
class="p-[4px 8px] text-xl i-carbon:user-favorite-alt-filled"
@click="showModal = true"
/>
<Teleport to="body">
<Transition name="modal">
<div v-show="showModal" class="modal-mask">
<div class="modal-container">
<Feedback />
<div class="model-footer">
<button class="modal-button" @click="showModal = false">
Close
</button>
</div>
</div>
</div>
</Transition>
</Teleport>
</template>
<style scoped>
.modal-mask {
position: fixed;
z-index: 200;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.5);
display: flex;
align-items: center;
justify-content: center;
transition: opacity 0.3s ease;
}
.modal-container {
width: 300px;
margin: auto;
padding: 20px 30px;
background-color: var(--vp-c-bg);
border-radius: 2px;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.33);
transition: all 0.3s ease;
}
.model-footer {
margin-top: 8px;
text-align: right;
}
.modal-button {
padding: 4px 8px;
border-radius: 4px;
border-color: var(--vp-button-alt-border);
color: var(--vp-button-alt-text);
background-color: var(--vp-button-alt-bg);
}
.modal-button:hover {
border-color: var(--vp-button-alt-hover-border);
color: var(--vp-button-alt-hover-text);
background-color: var(--vp-button-alt-hover-bg);
}
.modal-enter-from,
.modal-leave-to {
opacity: 0;
}
.modal-enter-from .modal-container,
.modal-leave-to .modal-container {
transform: scale(1.1);
}
</style>

View File

@ -1,6 +1,6 @@
<script setup lang="ts"> <script setup lang="ts">
import Field from './CardField.vue' import Field from './CardField.vue'
import Feedback from './Feedback.vue' import Modal from './Modal.vue'
import InputField from './InputField.vue' import InputField from './InputField.vue'
import ToggleStarred from './ToggleStarred.vue' import ToggleStarred from './ToggleStarred.vue'
</script> </script>
@ -10,15 +10,15 @@ import ToggleStarred from './ToggleStarred.vue'
<div class="card-header"> <div class="card-header">
<div class="card-title">Emoji Legend</div> <div class="card-title">Emoji Legend</div>
</div> </div>
<Field icon="i-twemoji-star">Recommendations</Field>
<Field icon="i-twemoji-globe-with-meridians">Indexes</Field> <Field icon="i-twemoji-globe-with-meridians">Indexes</Field>
<Field icon="i-twemoji-repeat-button">Storage Links</Field> <Field icon="i-twemoji-repeat-button">Storage Links</Field>
<Field icon="i-twemoji-star">Recommendations</Field>
<div class="card-header"> <div class="card-header">
<div class="card-title">Options</div> <div class="card-title">Options</div>
</div> </div>
<InputField id="feedback" label="Feedback"> <InputField id="feedback" label="Feedback">
<template #display> <template #display>
<Feedback /> <Modal />
</template> </template>
</InputField> </InputField>
<InputField id="toggle-starred" label="Toggle Starred"> <InputField id="toggle-starred" label="Toggle Starred">

View File

@ -1,4 +1,4 @@
import type { Theme } from 'vitepress' import { type Theme } from 'vitepress'
import DefaultTheme from 'vitepress/theme' import DefaultTheme from 'vitepress/theme'
import Layout from './Layout.vue' import Layout from './Layout.vue'
import Post from './PostLayout.vue' import Post from './PostLayout.vue'

View File

@ -94,7 +94,7 @@
} }
::selection { ::selection {
background-color: #0f2c47; background-color: var(--vp-button-brand-bg);
} }
.VPFooter a { .VPFooter a {

View File

@ -4,7 +4,6 @@ export function groupBy<T, K extends keyof any>(
): Record<K, T[]> { ): Record<K, T[]> {
return arr.reduce( return arr.reduce(
(groups, item) => { (groups, item) => {
// biome-ignore lint/suspicious/noAssignInExpressions: <explanation>
;(groups[key(item)] ||= []).push(item) ;(groups[key(item)] ||= []).push(item)
return groups return groups
}, },

View File

@ -6,83 +6,71 @@
# ► Adblocking # ► Adblocking
* **Note** - Don't run multiple general adblockers (e.g., uBlock Origin and Adblock Plus) simultaneously to [avoid breakage](https://twitter.com/gorhill/status/1033706103782170625). Combining general adblockers with tools like SponsorBlock is fine. **Note** - Don't run multiple general adblockers like ublock and adblock plus at the same time. Running more than one can cause breakage. This only applies to general adblockers, so running things like ublock and sponsorblock at the same time is fine.
*** ***
* ↪️ **[Spotify Adblockers](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/audio#wiki_.25B7_spotify_adblockers)** * ↪️ **[Adblock Filters](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_ublock_filters)** / [Test Filters](http://raymondhill.net/ublock/adbox.html)
* ↪️ **[Twitch Adblockers](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/social-media#wiki_.25B7_twitch_adblockers)** * ↪️ **[Twitch Adblockers](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/social-media#wiki_.25B7_twitch_adblockers)**
* ↪️ **[Bypass Article Paywalls](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/internet-tools#wiki_.25B7_paywall_bypass)** * ↪️ **[Spotify Adblockers](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/audio#wiki_.25B7_spotify_adblockers)**
* ⭐ **[uBlock Origin](https://github.com/gorhill/uBlock#installation)** - Adblocker * ⭐ **[uBlock Origin](https://github.com/gorhill/uBlock#installation)** - Adblocker / [Guide](https://addons.mozilla.org/blog/ublock-origin-everything-you-need-to-know-about-the-ad-blocker/) / [Advanced](https://youtu.be/2lisQQmWQkY)
* ⭐ **uBO Resources** - [Report Issues](https://github.com/uBlockOrigin/uAssets/issues) / [Report Hosts](https://github.com/uBlockOrigin/uAssets/discussions/17361) / [Guides](https://www.reddit.com/r/uBlockOrigin/wiki/index/) / [Advanced](https://youtu.be/2lisQQmWQkY) / [Redundant Extensions](https://github.com/arkenfox/user.js/wiki/4.1-Extensions/#-dont-bother)
* ⭐ **[SponsorBlock](https://sponsor.ajay.app/)** - Skip Sponsored YouTube Ads / [Script](https://github.com/mchangrh/sb.js), [2](https://greasyfork.org/en/scripts/453320) * ⭐ **[SponsorBlock](https://sponsor.ajay.app/)** - Skip Sponsored YouTube Ads / [Script](https://github.com/mchangrh/sb.js), [2](https://greasyfork.org/en/scripts/453320)
* ⭐ **[BehindTheOverlay](https://github.com/NicolaeNMV/BehindTheOverlay)** - Hide Website Overlays * ⭐ **[BehindTheOverlay](https://github.com/NicolaeNMV/BehindTheOverlay)** - Hide Website Overlays
* ⭐ **[OpenVideo](https://openvideofs.github.io)** or [Stream-Bypass](https://github.com/ByteDream/stream-bypass) - Play Videos in Ad-Free Player * ⭐ **[OpenVideo](https://openvideofs.github.io)** or [Stream-Bypass](https://github.com/ByteDream/stream-bypass) - Play Videos in Ad-Free Player
* [uBO Lite](https://github.com/uBlockOrigin/uBOL-home) - MV3 Compatible for Chrome Users / [Note](https://rentry.org/nzvohpzf)
* [fadblock](https://github.com/0x48piraj/fadblock) or [Disable YT Video Ads](https://greasyfork.org/en/scripts/32626) - YouTube Adblockers * [fadblock](https://github.com/0x48piraj/fadblock) or [Disable YT Video Ads](https://greasyfork.org/en/scripts/32626) - YouTube Adblockers
* [Ad Blitz](https://ad-blitz.vercel.app/) - Speed Up YouTube Ads instead of Skipping to Support Creators
* [Popupblocker All](https://addons.mozilla.org/en-US/firefox/addon/popupblockerall/), [PopUpOFF](https://romanisthere.github.io/PopUpOFF-Website/index.html) or [PopupBlocker](https://github.com/AdguardTeam/PopupBlocker) - Popup / New Tab Blockers * [Popupblocker All](https://addons.mozilla.org/en-US/firefox/addon/popupblockerall/), [PopUpOFF](https://romanisthere.github.io/PopUpOFF-Website/index.html) or [PopupBlocker](https://github.com/AdguardTeam/PopupBlocker) - Popup / New Tab Blockers
* [Adguard](https://github.com/AdguardTeam/AdguardBrowserExtension#installation) - Adblocker * [Adguard](https://github.com/AdguardTeam/AdguardBrowserExtension#installation) - Adblocker
* [AdNauseam](https://adnauseam.io/) - Adblocker / Fakes Clicks to Confuse Tracking
* [Adblock Tester](https://adblock-tester.com/) or [AdBlocker Test](https://d3ward.github.io/toolz/adblock.html) - Adblocking Tests * [Adblock Tester](https://adblock-tester.com/) or [AdBlocker Test](https://d3ward.github.io/toolz/adblock.html) - Adblocking Tests
* [12ft.io](https://12ft.io/) - Share Ad-Free URLs * [uBO-bypass-yt](https://drhyperion451.github.io/does-uBO-bypass-yt/) - Check if uBlock Filters are bypassing YouTube Anti-Adblock
***
## ▷ Adblock Filters
* ⭐ **[yokoffing's Recommended Filters](https://github.com/yokoffing/filterlists)**
* ⭐ **[LegitimateURLShortener](https://github.com/DandelionSprout/adfilt/blob/master/LegitimateURLShortener.txt)**
* ⭐ **[FMHY Filterlist](https://windowsaurora.github.io/FMHYFilterlist/site/index.html)** - Unsafe Sites Filter / [Github](https://github.com/WindowsAurora/FMHYFilterlist/)
* [Adbox](http://raymondhill.net/ublock/adbox.html) - Test Filters
* [DandelionSprout adlift](https://github.com/DandelionSprout/adfilt)
* [Facebook Filters](https://www.reddit.com/r/uBlockOrigin/wiki/solutions#wiki_facebook)
* [Clear URLs for uBO](https://github.com/DandelionSprout/adfilt/blob/master/ClearURLs%20for%20uBo/clear_urls_uboified.txt)
* [webannoyances](https://github.com/yourduskquibbles/webannoyances)
* [NoADS_RU](https://raw.githubusercontent.com/Zalexanninev15/NoADS_RU/main/ads_list.txt)
* [Anifiltrs](https://github.com/Karmesinrot/Anifiltrs)
*** ***
## ▷ Redirect Bypass ## ▷ Redirect Bypass
* ⭐ **[Bypass All Shortlinks](https://codeberg.org/Amm0ni4/bypass-all-shortlinks-debloated/)** * ⭐ **[Bypass All Shortlinks](https://codeberg.org/Amm0ni4/bypass-all-shortlinks-debloated/)**
* ⭐ **[bypass.city](https://bypass.city/)**, [2](https://adbypass.org/) / [Userscript](https://bypass.city/how-to-install-userscript) / [Discord](https://discord.com/invite/uMEtrpRvAf) * ⭐ **[bypass.city](https://bypass.city/)**, [2](https://adbypass.org/) / [krnl-and-linkvertise-bypasser](https://web.archive.org/web/20240220163846/https://greasyfork.org/tr/scripts/427869-working-linkvertise-and-krnl-bypasser) / [Discord](https://discord.com/invite/uMEtrpRvAf)
* [FastForward](https://fastforward.team/) / [Discord](https://discord.gg/RSAf7b5njt) / [Note](https://pastebin.com/Gr2AhsE8) * [FastForward](https://fastforward.team/) / [Discord](https://discord.gg/RSAf7b5njt)
* [bypass.vip](https://bypass.vip/) / [Discord](https://bypass.vip/discord)
* [AdsBypasser](https://adsbypasser.github.io/) / [2](https://github.com/adsbypasser/adsbypasser) * [AdsBypasser](https://adsbypasser.github.io/) / [2](https://github.com/adsbypasser/adsbypasser)
* [TheBypasser](https://thebypasser.com/) * [TheBypasser](https://thebypasser.com/)
* [Bypass-Links](https://bypass-links.vercel.app) / [GitHub](https://github.com/amitsingh-007/bypass-links) * [Bypass-Links](https://github.com/amitsingh-007/bypass-links)
* [Yuumari](https://yuumari.com/bypass/) / [Extension](https://chromewebstore.google.com/detail/auto-link-bypasser/doiagnjlaingkmdjlbfalakpnphfmnoh) / [Script](https://yuumari.com/m-links/#js-code) * [Yuumari](https://yuumari.com/bypass/) / [Extension](https://chromewebstore.google.com/detail/auto-link-bypasser/doiagnjlaingkmdjlbfalakpnphfmnoh) / [Script](https://yuumari.com/m-links/#js-code)
* [UploadHEaven](https://greasyfork.org/en/scripts/442019) * [UploadHEaven](https://greasyfork.org/en/scripts/442019)
* [Bypass FileCrypt](https://greasyfork.org/en/scripts/403170) - FileCrypt Bypass * [Skip Script](https://greasyfork.org/en/scripts/473661)
* [Adbypass.eu](https://adbypass.eu/) - Ad-maven Bypass
*** ***
## ▷ DNS Adblocking ## ▷ DNS Adblocking
* **Note** - If your goal is to block browser ads, it's best to just stick with uBlock Origin, as additional filters can cause conflicts or anti-adblock. * **Note** - If your goal is to block browser ads, it's best to just stick with uBlock Origin, as additional filters can cause conflicts or antiadblock.
*** ***
* 🌐 **[DNS Providers](https://adguard-dns.io/kb/general/dns-providers/)** - DNS Provider Index * 🌐 **[DNS Providers](https://adguard-dns.io/kb/general/dns-providers/)** - DNS Provider Index
* ↪️ **[DNS Filters / Blocklists](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_dns_filters)** * ↪️ **[DNS Filters](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_dns_filters)**
* ↪️ **[Free DNS Servers](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_free_dns_servers)** * ↪️ **[Free DNS Servers](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_free_dns_servers)**
* ⭐ **[Pi-Hole](https://pi-hole.net/)** - DNS Adblocking / Self-Hosted
* ⭐ **Pi-Hole Tools** - [Install Script](https://github.com/DesktopECHO/Pi-Hole-for-WSL1) / [Filter](https://firebog.net/) / [Firefox](https://addons.mozilla.org/en-US/firefox/addon/alanine/) / [Chrome](https://chromewebstore.google.com/detail/alanine/lohlpbknpcngpjifmofkidennikljlfi) / [Docker](https://hub.docker.com/repository/docker/kulda22/alanine) / [Antitelemetry](https://github.com/MoralCode/pihole-antitelemetry)
* ⭐ **[AdGuard Home](https://github.com/AdguardTeam/AdGuardHome/wiki/Docker)** - DNS Adblocking / Self-Hosted / [Setup](https://github.com/klutchell/balena-adguard) / [Filters](https://github.com/hl2guide/AdGuard-Home-Whitelist) * ⭐ **[AdGuard Home](https://github.com/AdguardTeam/AdGuardHome/wiki/Docker)** - DNS Adblocking / Self-Hosted / [Setup](https://github.com/klutchell/balena-adguard) / [Filters](https://github.com/hl2guide/AdGuard-Home-Whitelist)
* ⭐ **[Mullvad DNS](https://mullvad.net/en/help/dns-over-https-and-dns-over-tls/)** - DNS Adblocking / [Extension](https://mullvad.net/en/download/browser/extension) * ⭐ **[AhaDNS](https://ahadns.com/)** - DNS Adblocking
* [YogaDNS](https://yogadns.com/) - Custom DNS Client * ⭐ **[BlahDNS](https://blahdns.com/)** - DNS Adblocking
* [ControlD](https://controld.com/free-dns) - DNS Manager * ⭐ **[YogaDNS](https://yogadns.com/)** - DNS Adblocking
* [NextDNS](https://nextdns.io) - DNS Adblocking / [Guide](https://github.com/yokoffing/NextDNS-Config) / [Video](https://youtu.be/WUG57ynLb8I) * ⭐ **[Mullvad DNS](https://mullvad.net/en/help/dns-over-https-and-dns-over-tls/)** - DNS Adblocking
* [BlahDNS](https://blahdns.com/) - DNS Adblocking * ⭐ **[serverless-dns](https://github.com/serverless-dns/serverless-dns)** - Serverless DNS
* [ControlD](https://controld.com/) - DNS Manager
* [Adguard DNS](https://adguard-dns.io/) - DNS Adblocking * [Adguard DNS](https://adguard-dns.io/) - DNS Adblocking
* [AlternateDNS](https://alternate-dns.com/index.php) - DNS Adblocking * [AlternateDNS](https://alternate-dns.com/index.php) - DNS Adblocking
* [LibreDNS](https://libredns.gr/) - DNS Adblocking * [LibreDNS](https://libredns.gr/) - DNS Adblocking
* [Diversion](https://diversion.ch/) - DNS Adblocking * [Diversion](https://diversion.ch/) - DNS Adblocking
* [NxFilter](https://nxfilter.org/) - DNS Adblocking * [NxFilter](https://nxfilter.org/) - DNS Adblocking
* [personalDNSfilter](https://www.zenz-solutions.de/personaldnsfilter-wp/) - DNS Adblocking * [personalDNSfilter](https://www.zenz-solutions.de/personaldnsfilter-wp/) - DNS Adblocking
* [Pi-Hole](https://pi-hole.net/) - DNS Adblocking / Self-Hosted
* Pi-Hole Tools - [Install Script](https://github.com/DesktopECHO/Pi-Hole-for-WSL1) / [Filter](https://firebog.net/) / [Firefox](https://addons.mozilla.org/en-US/firefox/addon/alanine/) / [Chrome](https://chromewebstore.google.com/detail/alanine/lohlpbknpcngpjifmofkidennikljlfi) / [Docker](https://hub.docker.com/repository/docker/kulda22/alanine) / [Antitelemetry](https://github.com/MoralCode/pihole-antitelemetry)
* [TBlock](https://tblock.me/) - DNS Adblocking / [Filters](https://codeberg.org/tblock/filters) * [TBlock](https://tblock.me/) - DNS Adblocking / [Filters](https://codeberg.org/tblock/filters)
* [dog](https://dns.lookup.dog/) - DNS CLI * [dog](https://dns.lookup.dog/) - DNS CLI
* [Stubby](https://dnsprivacy.org/dns_privacy_daemon_-_stubby/) - DNS Stub Resolver * [Stubby](https://github.com/getdnsapi/stubby) - DNS Stub Resolver
* [NextDNS](https://nextdns.io) - DNS Adblocking / [Leak Warning](https://redd.it/jt28e8) / [Guide](https://github.com/yokoffing/NextDNS-Config) / [Video](https://youtu.be/WUG57ynLb8I)
* [DuckDNS](https://www.duckdns.org/), [FreeDNS](https://freedns.afraid.org/), [NoIP](https://www.noip.com/) or [Desec](https://desec.io/) - Dynamic DNS Service
* [Phishing Army](https://phishing.army/) - DNS Phishing Blocklist * [Phishing Army](https://phishing.army/) - DNS Phishing Blocklist
* [BIND](https://gitlab.isc.org/isc-projects/bind9) - Portable DNS Protocol * [BIND](https://gitlab.isc.org/isc-projects/bind9) - Portable DNS Protocol
* [Maza](https://maza-ad-blocking.andros.dev/) - Local DNS Adblocking * [Maza](https://maza-ad-blocking.andros.dev/) - Local DNS Adblocking
@ -111,55 +99,74 @@
*** ***
# ► Antivirus / Malware # ► Antivirus
* 🌐 **[/r/Antivirus Index](https://www.reddit.com/r/antivirus/wiki/index/)** - Antivirus Tools Index
* 🌐 **[Awesome Malware Analysis](https://github.com/rshipp/awesome-malware-analysis)** - Malware Analysis Resources * 🌐 **[Awesome Malware Analysis](https://github.com/rshipp/awesome-malware-analysis)** - Malware Analysis Resources
* 🌐 **[Awesome Pen Testing](https://github.com/enaqx/awesome-pentest)** - Penetration Testing Resources
* 🌐 **[The Second Opinion](https://rentry.co/thesecondopinion)** - Portable Malware Scanners / Removal Tools
* ↪️ **[Virus File Scanners](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_scan_files)**
* ↪️ **[Site Legitimacy Check](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_site_legitimacy_check)** * ↪️ **[Site Legitimacy Check](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_site_legitimacy_check)**
* ⭐ **[How to Avoid Malware](https://www.reddit.com/r/Piracy/wiki/browsing_and_downloading_guide)** - Malware Avoidance Guide * ⭐ **[How to Avoid Malware](https://www.reddit.com/r/Piracy/wiki/browsing_and_downloading_guide)** - Malware Avoidance Guide
* ⭐ **[Sandboxie Plus](https://sandboxie-plus.com/)** / [Guide](https://rentry.co/sandboxie-guide), [Windows Sandbox](https://learn.microsoft.com/en-us/windows/security/application-security/application-isolation/windows-sandbox/windows-sandbox-overview) or [Virtual Machines](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/system-tools#wiki_.25B7_virtual_machines) - Sandbox Environments * ⭐ **[Guide4VirusTotal](https://rentry.org/Guide4VirusTotal)** - Virus Scan Results Guide / [Source](https://www.reddit.com/r/Piracy/comments/n62da6/comment/gx4whhz/)
* ⭐ **[Sandboxie Plus](https://sandboxie-plus.com/)**, [Windows Sandbox](https://learn.microsoft.com/en-us/windows/security/application-security/application-isolation/windows-sandbox/windows-sandbox-overview) or [Virtual Machines](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/system-tools#wiki_.25B7_virtual_machines) - Sandbox Environments / [Guide](https://rentry.co/sandboxie-guide)
* ⭐ **[AdwCleaner](https://www.malwarebytes.com/adwcleaner/)** - Anti-Adware * ⭐ **[AdwCleaner](https://www.malwarebytes.com/adwcleaner/)** - Anti-Adware
* ⭐ **[Malwarebytes Premium](https://rentry.co/fmhybase64#malwarebytes-prem)** - Antivirus * ⭐ **[Malwarebytes Premium](https://rentry.co/fmhybase64#malwarebytes-prem)** - Antivirus
* ⭐ **[Security / Antivirus Multireddit](https://www.reddit.com/user/goretsky/m/security/)** - Reddit Communities * ⭐ **[Security / Antivirus Multireddit](https://www.reddit.com/user/goretsky/m/security/)**
* [BleepingComputer Forums](https://www.bleepingcomputer.com/forums/f/22/virus-trojan-spyware-and-malware-removal-help/), [Malwarebytes Forums](https://forums.malwarebytes.com/forum/7-windows-malware-removal-help-support/) or [Sysnative Forums](https://www.sysnative.com/forums/forums/security-arena.66/) - Malware Removal Forums / [Note](https://pastebin.com/0mrmPXgz) * [BleepingComputer Forums](https://www.bleepingcomputer.com/forums/f/22/virus-trojan-spyware-and-malware-removal-help/), [Malwarebytes Forums](https://forums.malwarebytes.com/forum/7-windows-malware-removal-help-support/) or [Sysnative Forums](https://www.sysnative.com/forums/forums/security-arena.66/) - Malware Removal Help Forums / [Note](https://pastebin.com/0mrmPXgz)
* [ESET](https://rentry.co/FMHYBase64#eset) - Antivirus * [RevealQR](https://revealqr.app/) - Scan QR Codes
* [Dangerzone](https://dangerzone.rocks/) / [GitHub](https://github.com/freedomofpress/dangerzone) - Convert dangerous PDFs to safe PDFs * [Pi.Alert](https://github.com/pucherot/Pi.Alert), [Zeek](https://zeek.org/), [Nmap](https://nmap.org/) / [Results](https://nmap.org/ndiff/), [Kismet](https://www.kismetwireless.net/), [ntop](https://www.ntop.org/), [Sniffnet](https://www.sniffnet.net/) or [Rotty](https://github.com/RoseSecurity/Rotty.py) - Network Monitors
* [ANY.RUN](https://any.run/), [Triage](https://tria.ge/) or [Cuckoo](https://cuckoo.cert.ee/) - Online Sandboxes * [Waircut](https://sourceforge.net/projects/waircut/) - WPS Network Monitor
* [PE-sieve](https://github.com/hasherezade/pe-sieve) - Process Scanner * [Autoruns](https://learn.microsoft.com/en-us/sysinternals/downloads/autoruns) - Change Startup Programs
* [No More Ransom](https://www.nomoreransom.org/en/decryption-tools.html) - Ransomware Decryption Tools * [ESET Keys](https://rentry.co/FMHYBase64#eset-keys-generators) - ESET Antivirus Key Generators
* [Emergency Kit](https://www.emsisoft.com/en/home/emergencykit/) - No Install Required Antivirus
* [Should I Remove It?](https://www.shouldiremoveit.com/) - Easily Find & Remove Adware, Spyware etc.
* [VT4Browsers](https://support.virustotal.com/hc/en-us/articles/115002700745-Browser-Extensions) - Easily Scan Downloads
* [Safety Scanner](https://docs.microsoft.com/en-us/windows/security/threat-protection/intelligence/safety-scanner-download) - Malware Remover
* [Al-Khaser](https://github.com/LordNoteworthy/al-khaser) - Anti-Malware Stress Test
* [WireShark](https://www.wireshark.org/) - Network Protocol Analyzer / [Profiles](https://github.com/amwalding/wireshark_profiles)
* [Termshark](https://termshark.io/) - PCAP / Network Analysis
* [Phish.ly](https://phish.ly/) - Scan Suspicious Emails
* [Dangerzone](https://dangerzone.rocks/) - Convert dangerous PDF to safe PDF
* [CVE Details](https://www.cvedetails.com/) - CVE Details
* [ZScaler](https://zulu.zscaler.com/), [Talos](https://talosintelligence.com/), [Trend Micro](https://global.sitesafety.trendmicro.com/) or [ScamRate](https://www.scamrate.com/) - Check Website Safety
* [BitcoinWhosWho](https://www.bitcoinwhoswho.com/) - Bitcoin Address Scanner
* [Virus Checker](https://add0n.com/virus-checker.html) - Virus Check for Downloads
* [Bad Websites](https://github.com/elbkr/bad-websites) - Phishing Site Index for Bots
* [No More Ransom](https://www.nomoreransom.org/en/decryption-tools.html) - Bypass Ransomware Attacks
* [Ransomwhere](https://ransomwhe.re/) - Ransomware Tracker
* [ID Ransomware](https://id-ransomware.malwarehunterteam.com/) - Ransomware Identification Tool * [ID Ransomware](https://id-ransomware.malwarehunterteam.com/) - Ransomware Identification Tool
* [ConfigureDefender](https://github.com/AndyFul/ConfigureDefender) - Configure Windows Defender Settings
* [DefenderUI](https://www.defenderui.com/) - Improved Windows Defender UI
***
## ▷ File Scanners
* 🌐 **[The Second Opinion](https://rentry.co/thesecondopinion)** - Portable Malware Scanners / Removal Tools
* ⭐ **[VirusTotal](https://www.virustotal.com/)** / [Scan Results Guide](https://rentry.co/piracy-faq-virustotal), [2](https://rentry.co/VTGuide) or **[Hybrid Analysis](https://hybrid-analysis.com/)** - Online File Analyzer
* ⭐ **VirusTotal Tools** - [CLI](https://github.com/VirusTotal/vt-cli) / [Telegram Bot](https://t.me/virus_total_scan_bot) / [Uploader](https://github.com/SamuelTulach/VirusTotalUploader) / [Lite Version](https://www.virustotal.com/old-browsers/)
* [Microsoft Safety Scanner](https://learn.microsoft.com/en-us/defender-endpoint/safety-scanner-download) or [Emsisoft Emergency Kit](https://www.emsisoft.com/en/home/emergencykit/) - On-demand AV Scanners
* [Manalyzer](https://manalyzer.org/) - PE File Scanner
* [YARA](https://virustotal.github.io/yara/) - Malware Identification Tool * [YARA](https://virustotal.github.io/yara/) - Malware Identification Tool
* [Winitor](https://www.winitor.com/) - EXE Malware Assessment * [Winitor](https://www.winitor.com/) - EXE Malware Assessment
* [pyWhat](https://github.com/bee-san/pyWhat) - Identify Anything * [FRST Tutorial](https://www.bleepingcomputer.com/download/farbar-recovery-scan-tool/) - Malware Analysis Tool / [Guide](https://www.bleepingcomputer.com/forums/t/781976/)
* [Grype](https://github.com/anchore/grype) - Container Images Vulnerability Scanner * [Any Run](https://app.any.run/) - Malware Analysis Sandbox
* [Malware Initial Assessment](https://www.winitor.com/) - Local Analysis Tool * [Package Analysis](https://github.com/ossf/package-analysis) - Open Source Package Analysis
* [Jotti](https://virusscan.jotti.org/en) - Online File Scanner * [Manalyzer](https://manalyzer.org/) - PE File Scanner
* [Farbar](https://www.bleepingcomputer.com/download/farbar-recovery-scan-tool/) / [Guide](https://www.bleepingcomputer.com/forums/t/781976/) - Local File Scanner * [PyWhat](https://github.com/bee-san/pyWhat) - .pcap File Scanner
* [Grype](https://github.com/anchore/grype) - Docker Container Vulnerability Scanner
* [Defender Control](https://www.sordum.org/9480/defender-control-v2-1/) - Enable / Disable Windows Defender
* [ConfigureDefender](https://github.com/AndyFul/ConfigureDefender) - Configure Windows Defender Settings
* [DefenderUI](https://www.defenderui.com/) - Improved Windows Defender UI
* [Antivirus Removal Tool](https://antivirus-removal-tool.com/) - Antivirus Software Removal Tool
* [Malware Search+++](https://addons.mozilla.org/en-US/firefox/addon/malware-search-plusplusplus/) - Malware Search Extension
* [Malware Analysis Search](https://cse.google.com/cse?cx=011750002002865445766%3Apc60zx1rliu)
*** ***
# ► Privacy # ► Privacy
* 🌐 **[Awesome Cryptography](https://github.com/sobolevn/awesome-cryptography)** - Cryptography Resources
* 🌐 **[Awesome Vehicle Security](https://github.com/jaredthecoder/awesome-vehicle-security)** - Vehicle Security Resources * 🌐 **[Awesome Vehicle Security](https://github.com/jaredthecoder/awesome-vehicle-security)** - Vehicle Security Resources
* ↪️ **[SMS Verification Sites](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_sms_verification_sites)** * ↪️ **[SMS Verification Sites](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_sms_verification_sites)**
* ↪️ **[Password Data Breach Detection](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_password_data_breach_check)**
* ↪️ **[File Encryption](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/file-tools#wiki_.25B7_file_encryption)** * ↪️ **[File Encryption](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/file-tools#wiki_.25B7_file_encryption)**
* ↪️ **[Drive Formatting / File Deletion](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/file-tools#wiki_.25B7_formatting_.2F_deletion)** * ↪️ **[Drive Formatting / File Deletion](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/file-tools#wiki_.25B7_formatting_.2F_deletion)**
* ⭐ **[Privacy.Sexy](https://privacy.sexy/)** - Privacy Scripts * ⭐ **[Privacy.Sexy](https://privacy.sexy/)** - Privacy Scripts
* ⭐ **[Password Strength Chart](https://i.ibb.co/vZdqMvm/6728c7ef02e9.png)**
* ⭐ **[Tails](https://tails.net/)**, [whonix](https://www.whonix.org/) or [Qubes](https://www.qubes-os.org/) - Privacy-Based Operating Systems * ⭐ **[Tails](https://tails.net/)**, [whonix](https://www.whonix.org/) or [Qubes](https://www.qubes-os.org/) - Privacy-Based Operating Systems
* [ShutUp10](https://www.oo-software.com/en/shutup10), [W10Privacy](https://www.w10privacy.de/english-home/) or [private-secure-windows](https://github.com/troennes/private-secure-windows) - Antispy Tools * [ShutUp10](https://www.oo-software.com/en/shutup10), [W10Privacy](https://www.w10privacy.de/english-home/) or [private-secure-windows](https://github.com/troennes/private-secure-windows) - Antispy Tools
* [Telemetry.md](https://gist.github.com/ave9858/a2153957afb053f7d0e7ffdd6c3dcb89), [2](https://rentry.co/telemetry) - Disable Windows 10/11 Telemetry * [Telemetry.md](https://gist.github.com/ave9858/a2153957afb053f7d0e7ffdd6c3dcb89) - Disable Windows 10/11 Telemetry
* [PasswordMonster](https://www.passwordmonster.com/) - Password Strength Check
* [PasswordsGenerator](https://passwordsgenerator.net/) - Secure Password Generator
* [Frigate](https://frigate.video/), [Smart Sec Cam](https://github.com/scottbarnesg/smart-sec-cam) or [ZoneMinder](https://zoneminder.com/) - Security Camera Systems * [Frigate](https://frigate.video/), [Smart Sec Cam](https://github.com/scottbarnesg/smart-sec-cam) or [ZoneMinder](https://zoneminder.com/) - Security Camera Systems
* [Team Elite](https://www.te-home.net/) or [Technet24](https://technet24.ir/) - Security Software / [Translator](https://github.com/FilipePS/Traduzir-paginas-web) * [Team Elite](https://www.te-home.net/) or [Technet24](https://technet24.ir/) - Security Software / [Translator](https://github.com/FilipePS/Traduzir-paginas-web)
* [Big Ass Data Broker Opt-Out List](https://github.com/yaelwrites/Big-Ass-Data-Broker-Opt-Out-List) - List of Data Broker Opt-Out Resources * [Big Ass Data Broker Opt-Out List](https://github.com/yaelwrites/Big-Ass-Data-Broker-Opt-Out-List) - List of Data Broker Opt-Out Resources
@ -172,11 +179,14 @@
* [Paper Age](https://github.com/matiaskorhonen/paper-age) - Create Paper Backups of Secrets * [Paper Age](https://github.com/matiaskorhonen/paper-age) - Create Paper Backups of Secrets
* [USBKill](https://github.com/hephaest0s/usbkill) - Anti-Forensic USB Killswitch * [USBKill](https://github.com/hephaest0s/usbkill) - Anti-Forensic USB Killswitch
* [HiddenVM](https://github.com/aforensics/HiddenVM) - Run an Oracle VM on TailsOS * [HiddenVM](https://github.com/aforensics/HiddenVM) - Run an Oracle VM on TailsOS
* [V2Ray](https://v2ray.com/en/), [V2Fly](https://www.v2fly.org/), [V2RayN](https://github.com/freefq/free) or [v2ray-core](https://github.com/v2fly/v2ray-core) - DIY Privacy Network
* V2Ray Tools - [GUI](https://github.com/2dust/v2rayN), [2](https://github.com/Qv2ray/Qv2ray) / [GeoIP](https://github.com/Loyalsoldier/geoip) / [Free Server](https://fanqiang.network/) / [Cloudflare Scan](https://cloudflare-v2ray.vercel.app/)/ [Tutorial](https://github.com/freefq/tutorials)
* [FreeCarrierLookup](https://www.freecarrierlookup.com/) - Get Telephone Carrier Data * [FreeCarrierLookup](https://www.freecarrierlookup.com/) - Get Telephone Carrier Data
* [/r/Privacy](https://reddit.com/r/privacy), [/r/TheHatedOne](https://www.reddit.com/r/thehatedone) or [/r/privatelife/](https://www.reddit.com/r/privatelife/) - Privacy Discussion, News & Tools * [/r/Privacy](https://reddit.com/r/privacy), [/r/TheHatedOne](https://www.reddit.com/r/thehatedone) or [/r/privatelife/](https://www.reddit.com/r/privatelife/) - Privacy Discussion, News & Tools
* [Facebook Doc Stories](https://docs.google.com/document/d/1QYqmJsifBjf_xA23Ea7AdeMFyjGWaF_dvhi5EZdNUf4/edit) - Facebook Malpractices Index * [Facebook Doc Stories](https://docs.google.com/document/d/1QYqmJsifBjf_xA23Ea7AdeMFyjGWaF_dvhi5EZdNUf4/edit) - Facebook Malpractices Index
* [Privacy.com](https://privacy.com/) - Make Secure Payments / US only * [Privacy.com](https://privacy.com/) - Make Secure Payments / US only
* [image-scrubber](https://everestpipkin.github.io/image-scrubber) / [GitHub](https://github.com/everestpipkin/image-scrubber) - Anonymize Protest Photos * [OTPClient](https://github.com/paolostivanin/OTPClient) - One-Time Password Client
* [image-scrubber](https://github.com/everestpipkin/image-scrubber) - Anonymize Protest Photos
* [Mobile Verification Toolkit](https://www.privacyguides.org/en/device-integrity/) - Test for Potential Compromises on Android / iOS * [Mobile Verification Toolkit](https://www.privacyguides.org/en/device-integrity/) - Test for Potential Compromises on Android / iOS
* [GoFOSS](https://gofoss.net/) - Why You Should Use FOSS Alternatives * [GoFOSS](https://gofoss.net/) - Why You Should Use FOSS Alternatives
* [If An Agent Knocks](https://docs.google.com/document/d/176Yds1p63Q3iaKilw0luChMzlJhODdiPvF2I4g9eIXo/) - Best Practices if Contacted by Agents * [If An Agent Knocks](https://docs.google.com/document/d/176Yds1p63Q3iaKilw0luChMzlJhODdiPvF2I4g9eIXo/) - Best Practices if Contacted by Agents
@ -185,34 +195,24 @@
## ▷ Privacy Indexes ## ▷ Privacy Indexes
* ⭐ **[Privacy Guides](https://www.privacyguides.org/)** - Educational Guide * ⭐ **[Awesome Privacy](https://awesome-privacy.xyz/)** / [2](https://github.com/pluja/awesome-privacy) - List of Privacy Software & Services
* ⭐ **[Digital Defense](https://digital-defense.io/)** - Personal Checklist for Privacy & Security * ⭐ **[Digital Defense](https://digital-defense.io/)** - Personal Checklist for Privacy & Security
* ⭐ **[The Hitchhikers Guide](https://anonymousplanet.org/)** - Extensive Guide to Online Anonymity
* ⭐ **[Privacy Guides](https://www.privacyguides.org/)** - Educational Guide
* ⭐ **[Surveillance Self-Defense](https://ssd.eff.org/)** - Educational Guide * ⭐ **[Surveillance Self-Defense](https://ssd.eff.org/)** - Educational Guide
* ⭐ **[The New Oil](https://thenewoil.org/)** - Educational Guide * ⭐ **[The New Oil](https://thenewoil.org/)** - Educational Guide
* [Lissy93's Awesome Privacy](https://awesome-privacy.xyz/) / [GitHub](https://github.com/lissy93/awesome-privacy) or [pluja's Awesome Privacy](https://pluja.github.io/awesome-privacy/) / [GitHub](https://github.com/pluja/awesome-privacy) - List of Privacy Software & Services
* [Defensive Computing Checklist](https://defensivecomputingchecklist.com/) - Educational Guide * [Defensive Computing Checklist](https://defensivecomputingchecklist.com/) - Educational Guide
* [Ken Harris](https://cyber.kenharris.io/) - Educational Guide * [Ken Harris](https://cyber.kenharris.io/) - Educational Guide
* [AvoidTheHack](https://avoidthehack.com/) - Educational Blog * [AvoidTheHack](https://avoidthehack.com/) - Educational Blog
* [Privacy Tools List](https://privacytoolslist.com/) - Privacy Tools
* [Hostux](https://hostux.network/) - Privacy Tools * [Hostux](https://hostux.network/) - Privacy Tools
* [The Hitchhikers Guide](https://anonymousplanet.org/) - Extensive Guide to Online Anonymity
* [Privacy Settings](https://github.com/StellarSand/privacy-settings) - Privacy Setting Guides * [Privacy Settings](https://github.com/StellarSand/privacy-settings) - Privacy Setting Guides
* [Alternative Internet](https://github.com/redecentralize/alternative-internet) - Collection of Decentralised Tools
* [EncryptedList](https://encryptedlist.xyz/) - List of Encrypted Services/Apps * [EncryptedList](https://encryptedlist.xyz/) - List of Encrypted Services/Apps
* [ProductivePrivacy](https://productiveprivacy.com/) - Privacy-Focused Productivity Apps * [ProductivePrivacy](https://productiveprivacy.com/) - Privacy-Focused Productivity Apps
*** ***
## ▷ Network Security
* ⭐ **[simplewall](https://github.com/henrypp/simplewall)** - Firewall / Network Monitor
* ⭐ **[Fort](https://github.com/tnodir/fort)** - Firewall
* ⭐ **[Safing Portmaster](https://safing.io/)** - Network Monitor / DNS Resolver / Firewall
* [V2Ray](https://v2ray.com/en/), [V2Fly](https://www.v2fly.org/), [V2RayN](https://github.com/freefq/free) or [v2ray-core](https://github.com/v2fly/v2ray-core) - DIY Privacy Network
* V2Ray Tools - [GUI](https://github.com/2dust/v2rayN), [2](https://github.com/Qv2ray/Qv2ray) / [GeoIP](https://github.com/Loyalsoldier/geoip) / [Free Server](https://fanqiang.network/) / [Cloudflare Scan](https://cloudflare-v2ray.vercel.app/) / [Tutorial](https://github.com/freefq/tutorials)
* [WFC](https://www.binisoft.org/wfc.php) - Firewall
* [Tinywall](https://tinywall.pados.hu/) - Lightweight Firewall
***
## ▷ [Linux Privacy](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/linux#wiki_.25BA_linux_adblock_.2F_privacy) ## ▷ [Linux Privacy](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/linux#wiki_.25BA_linux_adblock_.2F_privacy)
*** ***
@ -231,112 +231,78 @@
# ► Web Privacy # ► Web Privacy
* 🌐 **[Google Alt List](https://www.techspot.com/article/2752-all-google-alternatives/)**, [/r/DeGoogle](https://www.reddit.com/r/degoogle), [Degoogle](https://tycrek.github.io/degoogle/) or [No More Google](https://nomoregoogle.com/) - Google App Alternatives * 🌐 **[Awesome Web Security](https://github.com/qazbnm456/awesome-web-security)** - Web Security Resources
* ↪️ **[Chat Service Comparisons](https://docs.google.com/spreadsheets/u/0/d/1-UlA4-tslROBDS9IqHalWVztqZo7uxlCeKPQ-8uoFOU)** * 🌐 **[Awesome Anti Censorship](https://github.com/danoctavian/awesome-anti-censorship)** or [Geneva](https://geneva.cs.umd.edu/), - Anti-Censorship Resources
* 🌐 **[de-google](https://www.reddit.com/r/privacy/wiki/de-google)**, [De-google-ify](https://degooglisons-internet.org/en/), [Degoogle](https://github.com/tycrek/degoogle), [Google Alt List](https://www.techspot.com/news/80729-complete-list-alternatives-all-google-products.html), [/r/DeGoogle](https://www.reddit.com/r/degoogle) or [No More Google](https://nomoregoogle.com/) - Google App Alternatives
* 🌐 **[Awesome I2P](https://github.com/mikalv/awesome-i2p)** - I2P Resources
* ↪️ **[Encrypted Messaging Apps](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_encrypted_messengers)** / [2](https://docs.google.com/spreadsheets/d/1-UlA4-tslROBDS9IqHalWVztqZo7uxlCeKPQ-8uoFOU) / [3](https://www.securemessagingapps.com/) * ↪️ **[Encrypted Messaging Apps](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_encrypted_messengers)** / [2](https://docs.google.com/spreadsheets/d/1-UlA4-tslROBDS9IqHalWVztqZo7uxlCeKPQ-8uoFOU) / [3](https://www.securemessagingapps.com/)
* ↪️ **[Encrypted XMPP Servers](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_encrypted_xmpp_servers)** * ↪️ **[Encrypted XMPP Servers](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_encrypted_xmpp_servers)**
* ↪️ **[Encode / Decode URLs](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/text-tools#wiki_.25B7_encode_.2F_decode)**
* ⭐ **[PrivacySpy](https://privacyspy.org/)** or [Terms of Service; Didn't Read](https://tosdr.org/) - Sites Privacy Policies * ⭐ **[PrivacySpy](https://privacyspy.org/)** or [Terms of Service; Didn't Read](https://tosdr.org/) - Sites Privacy Policies
* ⭐ **[JustGetMyData](https://justgetmydata.com/)** - Links to Obtain Your Data from Websites * ⭐ **[JustGetMyData](https://justgetmydata.com/)** - Links to Obtain Your Data from Websites
* ⭐ **[simplewall](https://github.com/henrypp/simplewall)**, [WFC](https://www.binisoft.org/wfc.php), [pfSense](https://www.pfsense.org/) / [How-to](https://youtu.be/am7xT-zU1Q0) or [Tinywall](https://tinywall.pados.hu/) - Firewall / Network Monitors
* ⭐ **[Cryptomator](https://cryptomator.org/)**, [Boxcryptor](https://www.boxcryptor.com/en/) or [Tahoe-LAFS](https://tahoe-lafs.org/trac/tahoe-lafs) - Cloud File Encryption * ⭐ **[Cryptomator](https://cryptomator.org/)**, [Boxcryptor](https://www.boxcryptor.com/en/) or [Tahoe-LAFS](https://tahoe-lafs.org/trac/tahoe-lafs) - Cloud File Encryption
* [FirefoxMonitor](https://monitor.firefox.com/) - Data Breach Check * ⭐ **[Have I been Pwned?](https://haveibeenpwned.com/)** or [GhostProject](https://ghostproject.fr/) - Monitor Email Breaches
* [BreachDirectory](https://breachdirectory.org), [Snusbase](https://snusbase.com/), [Leak Lookup](https://leak-lookup.com/), [Trufflehog](https://trufflesecurity.com/) or [leakpeek](https://leakpeek.com/) - Data Breach Search Engines * ⭐ **[Proton Mail](https://proton.me/mail)** - Encrypted Email
* [JustDeleteMe](https://justdeleteme.xyz/) - Find / Terminate Old Accounts * [Tuta](https://tuta.com/) - Encrypted Email
* [OpenPhish](https://openphish.com/), [Netcraft Report](https://report.netcraft.com/report), [isitPhishing](https://isitphishing.org/), [PhishStats](https://phishstats.info/) or [PhishTank](https://phishtank.org/) - Report Phishing Sites * [How Secure is My Password](https://www.security.org/how-secure-is-my-password/) - Password Strength Checker
* [DNS Jumper](https://www.majorgeeks.com/files/details/dns_jumper.html) - DNS Switcher * [h8Mail](https://github.com/khast3x/h8mail) or [FirefoxMonitor](https://monitor.firefox.com/) - Data Breach Check
* [Element](https://element.io/), [linphone](https://www.linphone.org/), [Jami](https://jami.net/), [Tox](https://tox.chat/) or [Bitmask](https://bitmask.net/) - Encrypted Messaging / Video Calls * [BreachDirectory](https://breachdirectory.org), [Snusbase](https://snusbase.com/), [Leak Lookup](https://leak-lookup.com/), [Trufflehog](https://github.com/trufflesecurity/trufflehog), [Database Search](https://search.0t.rocks/) or [leakpeek](https://leakpeek.com/) - Data Breach Search Engines
* [EmailPrivacyTester](https://www.emailprivacytester.com/) - Email Privacy Test
* [OpenPGP](https://www.openpgp.org/) - Email Encryption / [Guide](https://riseup.net/en/security/message-security/openpgp/best-practices)
* [/r/emailprivacy](https://reddit.com/r/emailprivacy) - Discussion of Email Privacy / Security / Anonymity
* [I2P](https://geti2p.net/en/) - Encrypted Private Network Layer / [Guide](https://rentry.co/CBGI2P)
* [JustDeleteMe](https://justdeleteme.xyz/) - Find / Terminate Old Accounts
* [OpenPhish](https://openphish.com/), [Netcraft Report](https://report.netcraft.com/report), [PhishStats](https://phishstats.info/) or [PhishTank](https://phishtank.org/) - Report Phishing Sites
* [encrypted-sni](https://www.cloudflare.com/ssl/encrypted-sni/) - Check Network / Browser Security
* [Element](https://element.io/), [qTox](https://qtox.github.io/), [Utopia](https://u.is/en/), [linphone](https://www.linphone.org/), [Jami](https://jami.net/), [Tox](https://tox.chat/), [Bitmask](https://bitmask.net/) or [Wickr](https://wickr.com/) - Encrypted Messaging / Video Calls
* [SimpleDiscordCrypt](https://gitlab.com/An0/SimpleDiscordCrypt) - Discord Message Encryption * [SimpleDiscordCrypt](https://gitlab.com/An0/SimpleDiscordCrypt) - Discord Message Encryption
* [Hexchat](https://hexchat.github.io/) - Private IRC Client
* [ssh-chat](https://github.com/shazow/ssh-chat) or [Devzat](https://github.com/quackduck/devzat) - SSH Chat / [Info](https://shazow.net/posts/ssh-how-does-it-even/) * [ssh-chat](https://github.com/shazow/ssh-chat) or [Devzat](https://github.com/quackduck/devzat) - SSH Chat / [Info](https://shazow.net/posts/ssh-how-does-it-even/)
* [GPGTools](https://gpgtools.org/) - Encrypt & Sign Data / Communications * [GPGTools](https://gpgtools.org/) - Encrypt & Sign Data / Communications
* [PeerTube](https://joinpeertube.org/) - Decentralized Video Hosting / [Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/social-media#wiki_.25B7_peertube_tools) * [PeerTube](https://joinpeertube.org/) / [2](https://search.joinpeertube.org/) / [3](https://sepiasearch.org/) - Decentralized Video Hosting / [Instances](https://instances.joinpeertube.org/instances)
* [Undiscord](https://victornpb.github.io/undiscord)- Delete Discord Messages / [Warning](https://i.ibb.co/pdg4hRr/0b0d78219f05.png) * [Undiscord](https://github.com/victornpb/undiscord), [discord-delete](https://github.com/cedws/discord-delete), or [QuickDeleteMessages](https://u.nu/9i9jk) - Delete Discord Messages / [Warning](https://i.ibb.co/pdg4hRr/0b0d78219f05.png)
* [Social Amnesia](https://github.com/Nick-Gottschlich/Social-Amnesia) - Reddit / Twitter Auto Post Delete
* [delete-likes-from-twitter](https://gist.github.com/aymericbeaumet/d1d6799a1b765c3c8bc0b675b1a1547d) - Delete Twitter Likes / Favorites * [delete-likes-from-twitter](https://gist.github.com/aymericbeaumet/d1d6799a1b765c3c8bc0b675b1a1547d) - Delete Twitter Likes / Favorites
* [Unfavinator](http://unfavinator.com/) - Delete Twitter Favorites
* [TweetDelete](https://tweetdelete.net/) or [TweetEraser](https://www.tweeteraser.com/) - Delete Twitter Posts in Bulk
* [PowerDeleteSuite](https://github.com/j0be/PowerDeleteSuite) - Reddit Auto Post Delete * [PowerDeleteSuite](https://github.com/j0be/PowerDeleteSuite) - Reddit Auto Post Delete
* [telegram-delete-all-messages](https://github.com/gurland/telegram-delete-all-messages) - Delete Telegram Message
* [Freenet Project](https://freenetproject.org/) - Browse / Publish Freenet Sites * [Freenet Project](https://freenetproject.org/) - Browse / Publish Freenet Sites
* [Mat2](https://0xacab.org/jvoisin/mat2) / [Desktop](https://metadatacleaner.romainvigier.fr/), [2](https://0xacab.org/jvoisin/mat2-web), [metadata-cleaner](https://gitlab.com/rmnvgr/metadata-cleaner) - Remove Metadata from Files * [Mat2](https://0xacab.org/jvoisin/mat2) / [Desktop](https://metadatacleaner.romainvigier.fr/), [2](https://0xacab.org/jvoisin/mat2-web), [metadata-cleaner](https://gitlab.com/rmnvgr/metadata-cleaner) - Remove Metadata from Files
* [SecLists](https://seclists.org/) - Security Mailing List Archive
* [Yggdrasil](https://yggdrasil-network.github.io/), [2](https://github.com/yggdrasil-network) - IPv6 Network / [yggdrasil-go](https://github.com/yggdrasil-network/yggdrasil-go/)
*** ***
## ▷ Browser Privacy ## ▷ Browser Privacy
* 🌐 **[Awesome I2P](https://github.com/mikalv/awesome-i2p)** - I2P Resources * ⭐ **[Tor Browser](https://www.torproject.org/)** - Onion-Routed Browser / [Default Gateway](https://github.com/htrgouvea/nipe)
* ↪️ **[Browser Comparisons](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/internet-tools#wiki_.25BA_browser_tools)** * ⭐ **[Mullvad Browser](https://mullvad.net/en/browser)** - Tor Browser Fork (w/o Tor network)
* ⭐ **[Tor Browser](https://www.torproject.org/)** - Onion-Routed Browser / [Gitlab](https://gitlab.torproject.org/tpo/applications/tor-browser) * ⭐ **[arkenfox](https://github.com/arkenfox/user.js)**- Firefox Privacy Tweak / [Video](https://youtu.be/F7-bW2y6lcI)
* ⭐ **[Mullvad Browser](https://mullvad.net/en/browser)** - Tor Browser Fork (without Tor network) * [Librewolf](https://librewolf.net/)- Pre-tweaked Firefox Fork / [Use Auto-Updater](https://github.com/ltguillaume/librewolf-winupdater)
* ⭐ **[arkenfox](https://github.com/arkenfox/user.js)** - Firefox Privacy Tweak / [Video](https://youtu.be/F7-bW2y6lcI) * [CookieStatus](https://www.cookiestatus.com/) or [PrivacyTests](https://privacytests.org/) - Browser Tracking Protection Comparisons
* [Librewolf](https://librewolf.net/) - Pre-tweaked Firefox Fork / [Use Auto-Updater](https://github.com/ltguillaume/librewolf-winupdater) * [Fingerprint Suite](https://github.com/apify/fingerprint-suite) - Browser Fingerprinting Tools / Scraping Anonymization
* [Brave](https://brave.com/) - Privacy-Focused Browser
* [CookieStatus](https://www.cookiestatus.com/) - Browser Tracking Protection Comparisons
* [Encrypted SNI](https://www.cloudflare.com/ssl/encrypted-sni/) - Cloudflare Browser Check
* [I2P](https://geti2p.net/en/) - Encrypted Private Network Layer / [Guide](https://rentry.co/CBGI2P)
* [Whack](https://lcamtuf.coredump.cx/whack/) or [Earthling](https://earthlng.github.io/testpages/visited_links.html) - Browser History Leak Example Games * [Whack](https://lcamtuf.coredump.cx/whack/) or [Earthling](https://earthlng.github.io/testpages/visited_links.html) - Browser History Leak Example Games
* [SSL Labs](https://clienttest.ssllabs.com:8443/ssltest/viewMyClient.html) - SSL/TLS Browser Capabilities Test * [SSL Labs](https://clienttest.ssllabs.com:8443/ssltest/viewMyClient.html) - SSL/TLS Browser Capabilities Test
*** ***
## ▷ Password Privacy / 2FA
* 🌐 **[2FA Directory](https://2fa.directory/)** - List of Sites with 2FA Support
* ⭐ **[Ente Auth](https://github.com/ente-io/ente#ente-auth)** - Windows / Mac / Android / iOS 2FA / [Audit](https://ente.io/blog/cryptography-audit/)
* ⭐ **[Aegis](https://getaegis.app/)** - Android 2FA
* ⭐ **[AuthenticatorPro](https://authenticatorpro.jmh.me)** - Android 2FA
* ⭐ **[HaveIBeenPwned PW](https://haveibeenpwned.com/Passwords)** - Password Breach Check
* ⭐ **[Password Strength Chart](https://i.ibb.co/vZdqMvm/6728c7ef02e9.png)**
* [2FAS](https://2fas.com/) - Android / iOS 2FA / [Discord](https://discord.gg/q4cP6qh2g5)
* [Mauth](https://github.com/X1nto/Mauth) - Android 2FA
* [FreeOTPPlus](https://github.com/helloworld1/FreeOTPPlus) - Android 2FA
* [KeePassXC](https://keepassxc.org/) - Windows / Mac / Linux 2FA / [Guide](https://youtu.be/ckWPHaQwft8)
* [AuthMe](https://authme.levminer.com/) - Windows / Mac / Linux 2FA / [GitHub](https://github.com/Levminer/authme)
* [Tauthy](https://github.com/pwltr/tauthy) - Windows / Mac / Linux 2FA
* [Yubioath](https://developers.yubico.com/yubioath-flutter/) - Windows / Android 2FA / YubiKeys
* [Protecc](https://apps.microsoft.com/store/detail/protecc-2fa-client/9PJX91M06TZS) / [GitHub](https://github.com/FireCubeStudios/Protecc) - Windows 2FA
* [OTPClient](https://github.com/paolostivanin/OTPClient) - Linux 2FA
* [2FAuth](https://docs.2fauth.app/) - Web App 2FA / Self-hosted
* [Sentinel](https://getsentinel.io/) - iOS / Mac 2FA
* [OTP Auth](https://apps.apple.com/ca/app/otp-auth/id659877384) - iOS 2FA
* [Tofu](https://www.tofuauth.com/) - iOS 2FA
* [Authenticator](https://authenticator.cc/) - Generate Two-Factor QR Codes / [GitHub](https://gitlab.gnome.org/World/Authenticator)
* [Android OTP Extractor](https://github.com/puddly/android-otp-extractor) or [OTP Helper](https://github.com/jd1378/otphelper) - Extract OTP Tokens
* [SteamGuard](https://github.com/dyc3/steamguard-cli) - Generate Steam 2FA Codes
* [PasswordsGenerator](https://passwordsgenerator.net/) - Secure Password Generator
* [Intelligence X](https://intelx.io/) - Password Breach Check
* [psbdmp](https://psbdmp.ws/) - Password Breach Check
* [Dehashed](https://dehashed.com/) - Password Breach Check
* [Spycloud](https://spycloud.com/) - Password Breach Check
* [ScatteredSecrets](https://scatteredsecrets.com/) - Password Breach Check
***
## ▷ Email Privacy
* ↪️ **[Temp Mail Sites](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/internet-tools#wiki_.25B7_temp_mail)** - Create Temporary / Throwaway Emails
* ↪️ **[Email Aliasing](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/internet-tools#wiki_.25B7_email_aliasing)** - Create Permanent Anonymous Emails
* ⭐ **[Have I Been Pwned?](https://haveibeenpwned.com/)** - Monitor Email Breaches
* ⭐ **[Proton Mail](https://proton.me/mail)** - Encrypted Email
* [Tuta](https://tuta.com/) - Encrypted Email
* [Disroot](https://disroot.org/en/services/email) - Encrypted Email
* [lil mail server](https://uq.ci/) - Simple Privacy-Focused Email
* [EmailPrivacyTester](https://www.emailprivacytester.com/) - Email Privacy Test
* [SecLists](https://seclists.org/) - Security Mailing List Archive
* [Phish.ly](https://phish.ly/) - Scan Suspicious Emails
* [Have I Been Sold?](https://haveibeensold.app/) - Monitor Third Party Email Sales
***
## ▷ Fingerprinting / Tracking ## ▷ Fingerprinting / Tracking
* ⭐ **[ClearURLs](https://docs.clearurls.xyz)** - Remove Tracking Elements from URLs / [Features](https://gitlab.com/ClearURLs/ClearUrls#features), [2](https://i.ibb.co/4JsQwP5/sqzfmLD.png) / Can Break Sites * ⭐ **[ClearURLs](https://docs.clearurls.xyz)** - Remove Tracking Elements from URLs / [Features](https://gitlab.com/ClearURLs/ClearUrls#features), [2](https://i.imgur.com/sqzfmLD.png)
* ⭐ **[CanvasBlocker](https://github.com/kkapsner/CanvasBlocker)** - Prevent Canvas Fingerprinting * ⭐ **[CanvasBlocker](https://github.com/kkapsner/CanvasBlocker)** - Prevent Canvas Fingerprinting
* ⭐ **[Creepjs](https://abrahamjuliot.github.io/creepjs)**, [WEBKAY](https://webkay.robinlinus.com/), [BrowserRecon](https://www.computec.ch/projekte/browserrecon/?s=scan), [Device Info](https://www.deviceinfo.me/), [CoverYourTracks](https://firstpartysimulator.org/) / [2](https://coveryourtracks.eff.org/) or [PersonalData](https://personaldata.info/) - Tracking / Fingerprinting Tests * ⭐ **[GameIndustry](https://gameindustry.eu/en/)** - Block Trackers in Desktop / Mobile Games
* [dataskydd](https://webbkoll.dataskydd.net/) or [Blacklight](https://themarkup.org/blacklight) - Site Tracking Info * ⭐ **[Creepjs](https://abrahamjuliot.github.io/creepjs)**, [BrowserRecon](https://www.computec.ch/projekte/browserrecon/?s=scan), [Device Info](https://www.deviceinfo.me/), [Unique Machine](https://uniquemachine.org/), [AmIUnique?](https://amiunique.org/), [CoverYourTracks](https://firstpartysimulator.org/) / [2](https://coveryourtracks.eff.org/) or [PersonalData](https://personaldata.info/) - Tracking / Fingerprinting Tests
* [WhoTracksMe](https://whotracks.me/), [Privacy Score](https://privacyscore.org/), [dataskydd](https://webbkoll.dataskydd.net/), [Blacklight](https://themarkup.org/blacklight) or [Trackography](https://trackography.org/) - Site Tracking Info
* [Data Removal Guide](https://inteltechniques.com/workbook.html) - Remove Online Data * [Data Removal Guide](https://inteltechniques.com/workbook.html) - Remove Online Data
* [GameIndustry](https://gameindustry.eu/en/) - Block Trackers in Desktop / Mobile Games * [BrowserLeaks](https://browserleaks.com/), [Astrill](https://rentry.co/astrill), [Comparitech](https://www.comparitech.com/privacy-security-tools/dns-leak-test/), [Do I leak?](https://www.top10vpn.com/tools/do-i-leak/) or [IPLeak](https://ipleak.org/) / [2](https://ipleak.com/) / [3](https://ipleak.net) - IP Leak Tests
* [BrowserLeaks](https://browserleaks.com/), [Do I leak?](https://www.top10vpn.com/tools/do-i-leak/) or [IPLeak.net](https://ipleak.net) - IP Leak Tests * [DNS Leak Test](https://www.dnsleaktest.com/), [Bash DNS Test](https://bash.ws/dnsleak) or [DNS Check](https://dnscheck.tools) - DNS Leak Tests
* [Voidsec](https://ip.voidsec.com/) - WebRTC Leak Tests
* [WhatIsMyBrowser](https://www.whatismybrowser.com/detect/what-is-my-user-agent) - User-Agent Detection
* [Safing Portmaster](https://safing.io/) - Monitor Network / Block Trackers / [Discord](https://discord.com/invite/safing) / [GitHub](https://github.com/Safing/portmaster)
* [TrackMeNot](https://www.trackmenot.io/) - Tracking Protection
* [JShelter](https://jshelter.org/) - Prevent Fingerprinting / [Warning](https://github.com/arkenfox/user.js/issues/1729#issuecomment-1739135479) * [JShelter](https://jshelter.org/) - Prevent Fingerprinting / [Warning](https://github.com/arkenfox/user.js/issues/1729#issuecomment-1739135479)
* [Extension Detector](https://z0ccc.github.io/extension-detector) / [GitHub](https://github.com/z0ccc/extension-detector) - Extension Fingerprinting Tests * [Extension Detector](https://github.com/z0ccc/extension-detector) - Extension Fingerprinting Tests
* [NoScriptFingerprint](https://noscriptfingerprint.com/) - Non-JavaScript Fingerprinting * [NoScriptFingerprint](https://noscriptfingerprint.com/) - Non-JavaScript Fingerprinting
* [Language Switcher](https://chromewebstore.google.com/detail/locale-switcher/kngfjpghaokedippaapkfihdlmmlafcc) / [GitHub](https://github.com/locale-switcher/locale-switcher), [2](https://addons.mozilla.org/en-US/firefox/addon/languageswitch) - Change Language Identifier
* [AnonymousRedirect](https://adguardteam.github.io/AnonymousRedirect/) - Anonymize Links * [AnonymousRedirect](https://adguardteam.github.io/AnonymousRedirect/) - Anonymize Links
* [Simple Opt Out](https://simpleoptout.com/) - Turn off Targeted Ads * [Simple Opt Out](https://simpleoptout.com/) - Turn off Targeted Ads
* [AdNauseam](https://adnauseam.io/) - Adblocker / Fakes Clicks to Confuse Tracking * [AdNauseam](https://adnauseam.io/) - Adblocker / Fakes Clicks to Confuse Tracking
@ -344,61 +310,111 @@
*** ***
## ▷ Privacy Extensions
* ⭐ **[uBlock Origin](https://github.com/gorhill/uBlock#installation)** - Privacy Extension / Adblock / [Guide](https://addons.mozilla.org/blog/ublock-origin-everything-you-need-to-know-about-the-ad-blocker/) / [Advanced](https://youtu.be/2lisQQmWQkY)
* [Language Switch](https://addons.mozilla.org/en-US/firefox/addon/languageswitch/) - Change Language Identifier
* [SocialSharePrivacy](https://panzi.github.io/SocialSharePrivacy/) - Turn Off Social Sharing Buttons
* [WhatsApp Privacy Extension](https://pfwa.lukaslen.com/) - Hide WhatsApp Messages Until Hovered Over / [GitHub](https://github.com/LukasLen/Privacy-Extension-For-WhatsApp-Web)
* [WAIncognito](https://chromewebstore.google.com/detail/waincognito/alhmbbnlcggfcjjfihglopfopcbigmil) - Disable WhatsApps Read Receipts & Presence Updates
***
## ▷ Frontends ## ▷ Frontends
* 🌐 **[Alt Frontends](https://github.com/mendel5/alternative-front-ends)** / [2](https://rentry.co/8kqrrn), [Farside](https://farside.link/) or [alternative-frontends](https://github.com/digitalblossom/alternative-frontends) - Frontend Indexes * 🌐 **[Alt Frontends](https://github.com/mendel5/alternative-front-ends)** / [2](https://rentry.co/8kqrrn), [Farside](https://farside.link/) or [alternative-frontends](https://github.com/digitalblossom/alternative-frontends) - Frontend Indexes
* ↪️ **[YouTube Frontends](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/social-media#wiki_.25B7_players_.2F_frontends)** * ↪️ **[YouTube Frontends](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/social-media#wiki_.25B7_youtube_frontends)**
* ⭐ **[LibRedirect](https://libredirect.github.io/)** / [2](https://github.com/libredirect/libredirect), [Predirect](https://github.com/libreom/predirect) or [Proxy Redirect](https://openuserjs.org/scripts/sjehuda/Proxy_Redirect) - Frontend Redirect Extensions * ⭐ **[LibRedirect](https://libredirect.github.io/)** / [2](https://github.com/libredirect/libredirect), [Predirect](https://github.com/libreom/predirect) or [Proxy Redirect](https://openuserjs.org/scripts/sjehuda/Proxy_Redirect) - Frontend Redirect Extensions
* [Numblr](https://github.com/heyLu/numblr) - Self-Hosted Frontend Redirect * [Numblr](https://github.com/heyLu/numblr) - Self-Hosted Frontend Redirect
* [Photon](https://photon-reddit.com/), [reditr](https://reditr.com/), [RDX](https://rdx.overdevs.com/) or [redlib](https://github.com/redlib-org/redlib) - Reddit Frontends * [Photon](https://photon-reddit.com/) or [redlib](https://github.com/redlib-org/redlib) - Reddit Frontends
* [Invidious Redirect](https://addons.mozilla.org/en-US/firefox/addon/hooktube-redirect/?src=search) - YouTube Frontend Redirect * [Invidious Redirect](https://addons.mozilla.org/en-US/firefox/addon/hooktube-redirect/?src=search) - YouTube Frontend Redirect
* [twstalker](https://twstalker.com/), [X Cancelled](https://xcancel.com/) or [nitter](https://nitter.poast.org/) / [Instances](https://status.d420.de/), [2](https://github.com/zedeus/nitter/wiki/Instances) - Twitter Frontends
* [Proxigram](https://codeberg.org/ThePenguinDev/Proxigram) or [Imginn](https://imginn.com) - Instagram Frontends * [Proxigram](https://codeberg.org/ThePenguinDev/Proxigram) or [Imginn](https://imginn.com) - Instagram Frontends
* [Proxitok](https://github.com/pablouser1/ProxiTok) - TikTok Frontend * [Proxitok](https://github.com/pablouser1/ProxiTok) or [TikNot](https://tiknot.netlify.app/) / [Redirect](https://greasyfork.org/en/scripts/482683) - TikTok Frontends
* [Tumlook](https://www.tumlook.com/), [Tumgik](https://www.tumgik.com/) or [PriviBlur](https://github.com/syeopite/priviblur) - Tumblr Frontends * [Tumlook](https://www.tumlook.com/) or [PriviBlur](https://github.com/syeopite/priviblur) - Tumblr Frontends
* [BreezeWiki](https://breezewiki.com/) - Fandom Frontend / [Mirrors](https://pastebin.com/DmbrhEDD)
* [MikuInvidious](https://0xacab.org/johnxina/mikuinvidious) - BiliBili Frontend * [MikuInvidious](https://0xacab.org/johnxina/mikuinvidious) - BiliBili Frontend
* [SafeTwitch](https://codeberg.org/SafeTwitch/safetwitch) or [Twineo](https://codeberg.org/CloudyyUw/twineo) - Twitch Frontends * [SafeTwitch](https://codeberg.org/SafeTwitch/safetwitch) or [Twineo](https://codeberg.org/CloudyyUw/twineo) - Twitch Frontends
* [Whoogle](https://benbusby.com/projects/whoogle-search/) - Google Search Frontend * [Whoogle](https://benbusby.com/projects/whoogle-search/) - Google Search Frontend
* [Lingva Translate](https://github.com/TheDavidDelta/lingva-translate) - Google Translate Frontend * [Lingva Translate](https://github.com/TheDavidDelta/lingva-translate) - Google Translate Frontend
* [Scribe](https://sr.ht/~edwardloveall/Scribe/), [medium.rip](https://medium.rip/) or [LibMedium](https://libmedium.batsense.net/) - Medium Frontends * [Scribe](https://sr.ht/~edwardloveall/Scribe/), [medium.rip](https://medium.rip/) or [LibMedium](https://github.com/realaravinth/libmedium) - Medium Frontends
* [Quetre](https://quetre.iket.me) / [GitHub](https://github.com/zyachel/quetre) - Quora Frontend * [Quetre](https://github.com/zyachel/quetre) - Quora Frontend
* [Rimgo](https://codeberg.org/rimgo/rimgo) - Imgur Frontend / [Instances](https://rimgo.codeberg.page/), [2](https://codeberg.org/rimgo/instances) * [Rimgo](https://codeberg.org/rimgo/rimgo) - Imgur Frontend
* [Binternet](https://github.com/Ahwxorg/Binternet) - Pinterest Frontend * [Binternet](https://github.com/Ahwxorg/Binternet) - Pinterest Frontend
* [Pixivfe](https://codeberg.org/VnPower/pixivfe) - Pixiv Frontend * [Pixivfe](https://codeberg.org/VnPower/pixivfe) - Pixiv Frontend
* [Gothub](https://codeberg.org/gothub/gothub) - GitHub Frontend * [Gothub](https://codeberg.org/gothub/gothub) - GitHub Frontend
* [AnonymousOverflow](https://code.whatever.social) - StackOverflow Frontend * [AnonymousOverflow](https://github.com/httpjamesm/AnonymousOverflow) - StackOverflow Frontend
* [BreezeWiki](https://breezewiki.com/) - Fandom Frontend
* [Tent](https://codeberg.org/sun/Tent) - Bandcamp Frontend * [Tent](https://codeberg.org/sun/Tent) - Bandcamp Frontend
* [Dumb](https://codeberg.org/rramiachraf/dumb) or [Intellectual](https://intellectual.insprill.net/) - Genius Frontend * [Dumb](https://codeberg.org/rramiachraf/dumb) or [Intellectual](https://github.com/Insprill/intellectual) - Genius Frontend
* [Rural Dictionary](https://codeberg.org/zortazert/rural-dictionary) - Urban Dictionary Frontend * [Rural Dictionary](https://codeberg.org/zortazert/rural-dictionary) - Urban Dictionary Frontend
* [BiblioReads](https://codeberg.org/nesaku/BiblioReads) - Goodreads Frontend * [BiblioReads](https://codeberg.org/nesaku/BiblioReads) - Goodreads Frontend
* [LibreMDb](https://libremdb.iket.me) - IMDb Frontend * [LibreMDb](https://github.com/zyachel/libremdb) - IMDb Frontend
* [Neuters](https://neuters.de/) - Reuters Frontend * [Neuters](https://github.com/HookedBehemoth/neuters) - Reuters Frontend
*** ***
## ▷ Search Engines ## ▷ Search Engines
* 🌐 **[nixnet](https://searx.nixnet.services/)**, [searx.space](https://searx.space/) or [Searx Index](https://www.startpage.com/sp/search?q=%22powered%20by%20Searx%22) - Searx Instance Indexes * 🌐 **[nixnet](https://searx.nixnet.services/)**, [searx.space](https://searx.space/) or [Searx Index](https://www.startpage.com/sp/search?q=%22powered%20by%20Searx%22) - Searx Instance Indexes
* ⭐ **[searx.fmhy](https://searx.fmhy.net/)**, [Fuck Off Google](https://search.fuckoffgoogle.net/), [searx](https://searx.be/), [tiekoetter](https://searx.tiekoetter.com/), [monocles](https://monocles.de/) - Searx Instance * ⭐ **[searx.fmhy](https://searx.fmhy.net/)** - Searx Instance
* ⭐ **[Metager](https://metager.org/)** * ⭐ **[Metager](https://metager.org/)**
* ⭐ **[Stract](https://trystract.com/)** * ⭐ **[Stract](https://trystract.com/)**
* ⭐ **[Araa](https://araa.extravi.dev/)** / Uses Google / DDG / Qwant * ⭐ **[Araa](https://araa.extravi.dev/)**
* ⭐ **[DuckDuckGo](https://duckduckgo.com/)** - [Shortcuts](https://duckduckgo.com/bangs), [2](https://github.com/dmlls/yang) / Uses Bing * ⭐ **[DuckDuckGo](https://duckduckgo.com/)** - [Shortcuts](https://duckduckgo.com/bangs)
* [whoogle.fmhy](https://whoogle.fmhy.net/) - Whoogle Instance / Uses Google * [whoogle.fmhy](https://whoogle.fmhy.net/) - Whoogle Instance
* [searx-qt](https://notabug.org/CYBERDEViL/searx-qt) - Searx Desktop App
* [Fuck Off Google](https://search.fuckoffgoogle.net/) - Searx Instance
* [searx](https://searx.be/) - Searx Instance
* [tiekoetter](https://searx.tiekoetter.com/) - Searx Instance
* [monocles](https://monocles.de/) - Searx Instance
* [LibreY](https://github.com/Ahwxorg/librey) or [LibreX](https://github.com/hnhx/librex) * [LibreY](https://github.com/Ahwxorg/librey) or [LibreX](https://github.com/hnhx/librex)
* [4get](https://4get.ca/) * [4get](https://4get.ca/)
* [Mojeek](https://www.mojeek.com/) * [Mojeek](https://www.mojeek.com/)
* [Qwant](https://www.qwant.com/) * [Qwant](https://www.qwant.com/)
* [Swisscows](https://swisscows.com/) / Uses Bing * [Swisscows](https://swisscows.com/)
* [YaCy](https://yacy.net/) * [YaCy](https://yacy.net/)
* [Startpage](https://www.startpage.com/) / Uses Google * [Startpage](https://www.startpage.com/)
* [Brave Search](https://search.brave.com/)
* [Search Encrypt](https://www.searchencrypt.com/) * [Search Encrypt](https://www.searchencrypt.com/)
* [ekoru](https://ekoru.org/) / Uses Bing * [ekoru](https://ekoru.org/)
* [Gibiru](https://gibiru.com/) / Uses Google * [Gibiru](https://gibiru.com/)
* [SearXNG](https://docs.searxng.org/) - Self-Hosted * [SearXNG](https://docs.searxng.org/) - Self-Hosted
* [Whoogle](https://pypi.org/project/whoogle-search/) - Self-Hosted * [Whoogle](https://github.com/benbusby/whoogle-search) - Self-Hosted
***
## ▷ Two-Factor Authentication
* 🌐 **[2FA Directory](https://2fa.directory/)** - List of Sites with 2FA Support
* ⭐ **[Aegis](https://getaegis.app/)** - Android 2FA
* ⭐ **[Ente](https://github.com/ente-io/auth/)** - Android / iOS 2FA / [Audit](https://ente.io/blog/cryptography-audit/)
* [2FAS](https://2fas.com/) - Android / iOS 2FA / [Discord](https://discord.gg/q4cP6qh2g5)
* [AuthenticatorPro](https://github.com/jamie-mh/AuthenticatorPro) - Android 2FA
* [Mauth](https://github.com/X1nto/Mauth) - Android 2FA
* [KeePassXC](https://keepassxc.org/) - Windows / Mac / Linux 2FA / [Guide](https://youtu.be/ckWPHaQwft8)
* [AuthMe](https://github.com/Levminer/authme) - Windows / Mac / Linux 2FA
* [Tauthy](https://github.com/pwltr/tauthy) - Windows / Mac / Linux 2FA
* [Yubioath](https://developers.yubico.com/yubioath-flutter/) - Windows / Android 2FA / YubiKeys
* [Protecc](https://github.com/FireCubeStudios/Protecc) - Windows 2FA
* [2FAuth](https://github.com/Bubka/2FAuth) - Web App 2FA / Self-hosted
* [Sentinel](https://getsentinel.io/) - iOS / Mac 2FA
* [Raivo OTP](https://raivo-otp.com) - iOS 2FA
* [OTP Auth](https://apps.apple.com/ca/app/otp-auth/id659877384) - iOS 2FA
* [Tofu](https://www.tofuauth.com/) - iOS 2FA
* [Authenticator](https://authenticator.cc/) - Generate Two-Factor QR Codes / [GitHub](https://gitlab.gnome.org/World/Authenticator)
* [Android OTP Extractor](https://github.com/puddly/android-otp-extractor) or [OTP Helper](https://github.com/jd1378/otphelper) - Extract OTP Tokens
* [SteamGuard](https://github.com/dyc3/steamguard-cli) - Generate Steam 2FA Codes
***
## ▷ Encode / Decode
* ⭐ **[CyberChef](https://gchq.github.io/CyberChef/)** - Encode / Decode Text
* ⭐ **[Universal Encoding Tool](https://unenc.com/)** - Encode / Convert Text
* ⭐ **[Base64 Decode](https://www.base64decode.org/) / [Encode](https://www.base64encode.org/)** / [Dynamic](https://apps.maximelafarie.com/base64/) / [Chrome](https://chromewebstore.google.com/detail/base64-encoderdecoder/afdannbjainhcddbjjlhamdgnojibeoi), [2](https://chromewebstore.google.com/detail/base64-decode-copy/llcfmnginbnmkeddkjjellcimmffjdcf), [3](https://chromewebstore.google.com/detail/clip64-base64-decoder/hdneaoibdfdmifgfjjlkbkceanhjmgch) / [Firefox](https://addons.mozilla.org/en-US/firefox/addon/base64-decoder/) / [Opera](https://addons.opera.com/en/extensions/details/base64-encode-and-decode/)
* [Txtmoji](https://txtmoji.com/) - Text to Emoji Encryption / Decryption
* [Ciphey](https://github.com/Ciphey/Ciphey) - Automated Decryption Tool
* [cryptii](https://cryptii.com/), [DenCode](https://dencode.com/) - Text / URL Encoding
* [Online Tools](https://emn178.github.io/online-tools/index.html) - Text / URL Encoding and Decoding
* [URL Decode](https://url-decode.com/) / [Encode](https://url-decode.com/tool/url-encode) - URL Encoding / Decoding
*** ***
@ -408,18 +424,18 @@
*** ***
* 🌐 **[VPN Comparisons](https://redd.it/171h9qa)** or [Techlore Chart](https://techlore.tech/vpn) - VPN Comparison Charts * 🌐 **[VPN Comparison Chart](https://redd.it/171h9qa)** or [Techlore Chart](https://techlore.tech/vpn)- VPN Comparisons
* 🌐 **[VPN Relationships](https://kumu.io/Windscribe/vpn-relationships)** - VPN Relationship Chart
* ⭐ **[/r/VPNs](https://www.reddit.com/r/vpns/)** - VPN Help and Discussion * ⭐ **[/r/VPNs](https://www.reddit.com/r/vpns/)** - VPN Help and Discussion
* ⭐ **[Windscribe](https://windscribe.com)** - Free Version Available * ⭐ **[AirVPN](https://airvpn.org/)** - [Pricing](https://i.ibb.co/8rVJ5JB/c4b813a6b6bc.png)
* ⭐ **[AirVPN](https://airvpn.org/)** * ⭐ **[Windscribe](https://windscribe.com)** - [Pricing](https://ibb.co/tPZZDhC) / Free Version Available
* ⭐ **[Proton](https://protonvpn.com)** - No Torrenting with Free Version / [Config Generation](https://gist.github.com/fusetim/1a1ee1bdf821a45361f346e9c7f41e5a) * ⭐ **[Proton](https://protonvpn.com)** - [Pricing](https://ibb.co/gg4VCDR) / No Torrenting w/ Free Version
* ⭐ **[Warp](https://one.one.one.one/)** - Traffic Encryption VPN / [Client](https://github.com/ViRb3/wgcf), [2](https://github.com/bepass-org/oblivion-desktop) / [Warp+ Data](https://t.me/warpplus), [2](https://github.com/nxvvvv/warp-plus), [3](https://github.com/totoroterror/warp-cloner), [4](https://t.me/generatewarpplusbot), [5](https://rentry.co/warp_plus_free) / [Warp+ Warning](https://rentry.co/warpwarning2) / [WireGuard Guide](https://rentry.co/foss-warp) * ⭐ **[Warp](https://1.1.1.1/)**, [2](https://1.0.0.1/) - Traffic Encryption VPN / [Client](https://github.com/ViRb3/wgcf) / [Warp+ Data](https://t.me/warpplus), [2](https://github.com/nxvvvv/warp-plus), [3](https://rentry.co/warp_plus_free), [4](https://github.com/totoroterror/warp-cloner), [5](https://t.me/generatewarpplusbot) / [Warp+ Warning](https://rentry.co/warpwarning) / [WireGuard Guide](https://rentry.co/foss-warp)
* ⭐ **[Riseup](https://riseup.net/en/vpn)** - Free VPN / [Config CLI Script](https://github.com/kmille/riseup-vpn-configurator) * ⭐ **[Riseup](https://riseup.net/en/vpn)** - Free VPN
* [Mullvad](https://mullvad.net/) - [No-Logging](https://mullvad.net/en/blog/2023/4/20/mullvad-vpn-was-subject-to-a-search-warrant-customer-data-not-compromised/) / [Port Warning](https://mullvad.net/en/blog/2023/5/29/removing-the-support-for-forwarded-ports/) * [Mullvad](https://mullvad.net/) - [Pricing](https://i.ibb.co/sHB33GJ/daf48a5ee585.png) / [No-Logging](https://mullvad.net/en/blog/2023/4/20/mullvad-vpn-was-subject-to-a-search-warrant-customer-data-not-compromised/) / [Port Warning](https://mullvad.net/en/blog/2023/5/29/removing-the-support-for-forwarded-ports/)
* [IVPN](https://www.ivpn.net/) - [No Logging](https://www.ivpn.net/knowledgebase/privacy/how-do-we-react-when-requested-by-an-authority-for-information-relating-to-a-customer/) / [Port Warning](https://www.ivpn.net/blog/gradual-removal-of-port-forwarding/) * [IVPN](https://www.ivpn.net/) - [Pricing](https://i.ibb.co/6sQKrQL/e06bea93c5ba.png) / [Free Trial](https://redd.it/nzjmqa) / [No Logging](https://www.ivpn.net/knowledgebase/privacy/how-do-we-react-when-requested-by-an-authority-for-information-relating-to-a-customer/) / [Port Warning](https://www.ivpn.net/blog/gradual-removal-of-port-forwarding/)
* [OVPN](https://www.ovpn.com/) - [Pricing](https://ibb.co/BNmCJdS) / [No Logging](https://www.ovpn.com/en/blog/ovpn-wins-court-order)
* [VPN Gate](https://www.vpngate.net/en/download.aspx) - Free VPN / [Note](https://pastebin.com/TrSw7EpF) * [VPN Gate](https://www.vpngate.net/en/download.aspx) - Free VPN / [Note](https://pastebin.com/TrSw7EpF)
* [PrivadoVPN](https://privadovpn.com/) - Free VPN / Unlimited Accounts via [Temp Mail](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/internet-tools#wiki_.25B7_temp_mail) * [PrivadoVPN](https://privadovpn.com/) - Free VPN / Unlimited Accounts via [Temp Mail](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_temp_email_sites)
* [Leap VPN](https://leap.se/) - Free VPNs * [Leap VPN](https://leap.se/) - Free VPNs
* [VPNBook](https://www.vpnbook.com/) - Free VPN Accounts * [VPNBook](https://www.vpnbook.com/) - Free VPN Accounts
@ -431,13 +447,13 @@
* ⭐ **[How-to Bind VPN to Client](https://redd.it/ssy8vv)** - Bind VPN to Client to Avoid ISP Letters * ⭐ **[How-to Bind VPN to Client](https://redd.it/ssy8vv)** - Bind VPN to Client to Avoid ISP Letters
* ⭐ **[WireGuard](https://www.wireguard.com/)** - VPN Tunnel / [Setup Guide](https://github.com/amritb/poor-mans-vpn) / [Tools](https://guardline-vpn.github.io/wireguard-tools/) / [Manager](https://github.com/perara/wg-manager) / [WebUI](https://hub.docker.com/r/weejewel/wg-easy) * ⭐ **[WireGuard](https://www.wireguard.com/)** - VPN Tunnel / [Setup Guide](https://github.com/amritb/poor-mans-vpn) / [Tools](https://guardline-vpn.github.io/wireguard-tools/) / [Manager](https://github.com/perara/wg-manager) / [WebUI](https://hub.docker.com/r/weejewel/wg-easy)
* [OpenVPN](https://openvpn.net/) or [TincVPN](https://www.tinc-vpn.org/) - VPN Tunnels * [OpenVPN](https://openvpn.net/) or [TincVPN](https://www.tinc-vpn.org/) - VPN Tunnels
* [WireHole](https://github.com/IAmStoxe/wirehole) - Wireguard VPN with Adblocking Capabilities / [User-Interface](https://github.com/10h30/wirehole-ui) * [WireHole](https://github.com/IAmStoxe/wirehole) - Wireguard VPN w/ Adblocking Capabilities
* [Syntropy](https://www.syntropystack.com/vpn), [Self Hosted VPN](https://github.com/rajannpatel/Pi-Hole-on-Google-Compute-Engine-Free-Tier-with-Full-Tunnel-and-Split-Tunnel-Wireguard-VPN-Configs), [VpnHood](https://github.com/vpnhood/VpnHood), [n2n](https://github.com/ntop/n2n), [ipsec-vpn](https://github.com/hwdsl2/setup-ipsec-vpn) or [Outline](https://getoutline.org/) - Self-Hosted VPN * [Syntropy](https://www.syntropystack.com/vpn), [Self Hosted VPN](https://github.com/rajannpatel/Pi-Hole-on-Google-Compute-Engine-Free-Tier-with-Full-Tunnel-and-Split-Tunnel-Wireguard-VPN-Configs), [VpnHood](https://github.com/vpnhood/VpnHood), [n2n](https://github.com/ntop/n2n), [ipsec-vpn](https://github.com/hwdsl2/setup-ipsec-vpn) or [Outline](https://getoutline.org/) - Self-Hosted VPN
* [OpenConnect](https://www.infradead.org/openconnect/) - SSL VPN / [GUI](https://openconnect.github.io/openconnect-gui/) * [OpenConnect](https://www.infradead.org/openconnect/) - SSL VPN / [GUI](https://openconnect.github.io/openconnect-gui/)
* [Gluetun](https://hub.docker.com/r/qmcgaw/gluetun) / [GitHub](https://github.com/qdm12/gluetun) - Tunnel your Docker containers through a VPN * [Gluetun](https://github.com/qdm12/gluetun) - Tunnel your Docker containers through a VPN
* [Pritunl](https://pritunl.com/) - VPN Server * [Pritunl](https://pritunl.com/) - VPN Server
* [Algo VPN](https://blog.trailofbits.com/2016/12/12/meet-algo-the-vpn-that-works/) / [GitHub](https://github.com/trailofbits/algo) - Cloud VPN * [Algo VPN](https://github.com/trailofbits/algo) - Cloud VPN
* [Amnezia](https://amnezia.org/) - Self-hosted VPN * [Amnezia](https://github.com/amnezia-vpn/amnezia-client) - Self-hosted VPN
* [VPNHotspot](https://github.com/Mygod/VPNHotspot) - Share VPN Connection over Hotspot * [VPNHotspot](https://github.com/Mygod/VPNHotspot) - Share VPN Connection over Hotspot
*** ***
@ -446,25 +462,25 @@
## ▷ Proxy Apps ## ▷ Proxy Apps
* ⭐ **[Lantern](https://lantern.io/)** or **[Psiphon](https://psiphon.ca/)** - Free Proxy / VPN * ⭐ **[Lantern](https://lantern.io/)** or **[Psiphon](https://psiphon.ca/)** / [Bypass Blocks](https://media.discordapp.net/attachments/953145730736996382/953730963735707719/Screenshot_20220316220604.png) - Free Proxy / VPN
* ⭐ **[SecureDNSClient](https://github.com/msasanmh/SecureDNSClient)** - DNS Proxy GUI / [Guide](https://rentry.co/SecureDNSClient) * ⭐ **[SecureDNSClient](https://github.com/msasanmh/SecureDNSClient)** - DNS Proxy GUI / [Guide](https://rentry.co/SecureDNSClient)
* ⭐ **[Bypass ISP Blocks](https://rentry.co/enable-ech)** - Bypass ISP censorship with Firefox
* [No Thought is a Crime](https://ntc.party/) - Internet Censorship Discussion * [No Thought is a Crime](https://ntc.party/) - Internet Censorship Discussion
* [GoodbyeDPI](https://github.com/ValdikSS/GoodbyeDPI/) / [GUI](https://github.com/mguludag/GUI-for-GoodbyeDPI), [PowerTunnel](https://github.com/krlvm/PowerTunnel) or [Green Tunnel](https://github.com/SadeghHayeri/GreenTunnel) - DPI Circumvention Local Proxies * [GoodbyeDPI](https://github.com/ValdikSS/GoodbyeDPI/) / [GUI](https://github.com/mguludag/GUI-for-GoodbyeDPI), [PowerTunnel](https://github.com/krlvm/PowerTunnel), [Green Tunnel](https://github.com/SadeghHayeri/GreenTunnel) or [GFW-knocker](https://github.com/GFW-knocker/gfw_resist_tls_proxy) / [Test](https://www.howsmyssl.com/) - DPI Circumvention Local Proxies
* [Hola Proxy](https://github.com/Snawoot/hola-proxy) - Alternative Client for Hola Free Proxy Service * [Hola Proxy](https://github.com/Snawoot/hola-proxy) - Alternative Client for Hola Free Proxy Service
* [Hide.me Firefox](https://addons.mozilla.org/en-US/firefox/addon/hide-me-vpn-free-proxy/) / [Chrome](https://chromewebstore.google.com/detail/hideme-proxy/ohjocgmpmlfahafbipehkhbaacoemojp) or [anonymoX](https://anonymox.net/en) - Free Proxy Service Browser Extension * [Hide.me Firefox](https://addons.mozilla.org/en-US/firefox/addon/hide-me-vpn-free-proxy/) / [Chrome](https://chromewebstore.google.com/detail/hideme-proxy/ohjocgmpmlfahafbipehkhbaacoemojp) or [anonymoX](https://anonymox.net/en) - Free Proxy Service Browser Extension
* [Snowflake](https://snowflake.torproject.org/) - Tor Proxy Browser Extension * [Snowflake](https://snowflake.torproject.org/) - Tor Proxy Browser Extension
* [CensorTracker](https://censortracker.org/), [FoxyProxy](https://getfoxyproxy.org/) or [SwitchyOmega](https://github.com/FelisCatus/SwitchyOmega) - Proxy Extensions * [CensorTracker](https://github.com/roskomsvoboda/censortracker), [FoxyProxy](https://getfoxyproxy.org/) or [SwitchyOmega](https://github.com/FelisCatus/SwitchyOmega) - Proxy Extensions
* [Acrylic](https://mayakron.altervista.org/) - DNS Cache Local Proxy * [Acrylic](https://mayakron.altervista.org/) - DNS Cache Local Proxy
* [SimpleDnsCrypt](https://github.com/instantsc/SimpleDnsCrypt) or [DNSCrypt](https://www.dnscrypt.org/) - Local DNS Encryption Proxy * [SimpleDnsCrypt](https://github.com/instantsc/SimpleDnsCrypt) - DNS Encryption Local Proxy
* [Blocky](https://github.com/0xERR0R/blocky) - DNS Proxy
* [Proxifier](https://www.proxifier.com/) - Add Proxy Functionality to Apps / [Keys](https://rentry.co/FMHYBase64#proxifier-keys) * [Proxifier](https://www.proxifier.com/) - Add Proxy Functionality to Apps / [Keys](https://rentry.co/FMHYBase64#proxifier-keys)
* [wireproxy](https://github.com/pufferffish/wireproxy) - Use VPNs as proxies * [wireproxy](https://github.com/pufferffish/wireproxy) - Use VPNs as proxys
* [Hiddify](https://hiddify.com/) - Auto-Proxy Client * [Hiddify](https://hiddify.com/) - Auto-Proxy Client
* [NginxProxyManager](https://nginxproxymanager.com) / [GitHub](https://github.com/NginxProxyManager/nginx-proxy-manager) - Self-Hosted Proxy Server * [NginxProxyManager](https://github.com/NginxProxyManager/nginx-proxy-manager) - Self-Hosted Proxy Server
* [Shadowsocks](https://shadowsocks.org/) - Proxy Client and Self-Hosted Server / [Free Servers](https://github.com/ruanfei/cross), [2](https://github.com/vxiaov/free_proxies), [3](https://shadowmere.akiel.dev/) / [Client](https://github.com/shadowsocks/shadowsocks-windows) * [Shadowsocks](https://shadowsocks.org/) / [Free Servers](https://github.com/ruanfei/cross), [2](https://github.com/learnhard-cn/free_proxy_ss) / [Client](https://github.com/shadowsocks/shadowsocks-windows) - Proxy Client and Self-Hosted Server
* [Hysteria](https://v2.hysteria.network/) - Proxy Client and Self-Hosted Server * [Hysteria](https://github.com/apernet/hysteria) - Proxy Client and Self-Hosted Server
* [Xray](https://github.com/XTLS/Xray-core) - Proxy Client and Self-Hosted Server / [Telegram](https://t.me/projectXray) * [Xray](https://github.com/XTLS/Xray-core) - Proxy Client and Self-Hosted Server / [Telegram](https://t.me/projectXray)
* [Ultraviolet](https://docs.titaniumnetwork.org/proxies/ultraviolet) or [Metallic](https://github.com/cognetwork-dev/Metallic) - Self-Hosted Proxy Websites * [Ultraviolet](https://github.com/titaniumnetwork-dev/Ultraviolet), [Privoxy](https://www.privoxy.org/) / [Docker Build](https://github.com/binhex/arch-privoxyvpn) or [Tsunami](https://github.com/FogNetwork/Tsunami) - Self-Hosted Proxy Websites
* [1337x Proxy](https://redd.it/tz7nyx) - 1337x Proxy Guide / [Example](https://pastebin.com/3n5K0QrP) * [1337x Proxy](https://redd.it/tz7nyx) - 1337x Proxy Guide / [Example](https://pastebin.com/3n5K0QrP)
*** ***
@ -473,6 +489,7 @@
* ↪️ **[Proxy Lists](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_proxy_lists)** * ↪️ **[Proxy Lists](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_proxy_lists)**
* ↪️ **[Piracy Site Proxies](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_piracy_site_proxies)** * ↪️ **[Piracy Site Proxies](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_piracy_site_proxies)**
* ⭐ **[HolyUnblocker](https://www.holyubofficial.net/)**
* [ProxySite](https://www.proxysite.com/) * [ProxySite](https://www.proxysite.com/)
* [GenMirror](https://www.genmirror.com/) * [GenMirror](https://www.genmirror.com/)
* [Hide.me](https://hide.me/en/proxy) * [Hide.me](https://hide.me/en/proxy)
@ -482,10 +499,9 @@
* [KProxy](https://www.kproxy.com/) * [KProxy](https://www.kproxy.com/)
* [Free Proxy](https://freeproxy.win/) * [Free Proxy](https://freeproxy.win/)
* [Blockaway](https://www.blockaway.net/) * [Blockaway](https://www.blockaway.net/)
* [Free Proxy Servers](https://www.free-proxy-servers.com/)
* [VPN Book](https://www.vpnbook.com/webproxy) * [VPN Book](https://www.vpnbook.com/webproxy)
* [CroxyProxy](https://www.croxyproxy.com/) * [CroxyProxy](https://www.croxyproxy.com/)
* [ProxyPx](https://croxyproxy.best/) * [ProxyPx](https://www.proxypx.com/)
* [ProxySite](https://www.proxysite.cc/) * [ProxySite](https://www.proxysite.cc/)
* [ProxyOf2](https://proxyof2.com/) * [ProxyOf2](https://proxyof2.com/)
* [Proxy-URLs](https://www.proxy-urls.com/) * [Proxy-URLs](https://www.proxy-urls.com/)
@ -493,7 +509,8 @@
* [UnblockSites](https://unblocksites.online/) * [UnblockSites](https://unblocksites.online/)
* [Proxyium](https://proxyium.com/) * [Proxyium](https://proxyium.com/)
* [Proxy Site](https://proxysite.cloud/) * [Proxy Site](https://proxysite.cloud/)
* [Google Translate](https://translate.google.com/) / [Proxy Explanation](https://redd.it/fawkjy), [2](https://ibb.co/BtWc8ML) * [Google Translate](https://translate.google.com/) - [How to use](https://redd.it/fawkjy)
* [Proxy-Checker](https://proxy-checker.net/), [proxy-scraper](https://github.com/iw4p/proxy-scraper), [What is my Proxy](http://www.whatismyproxy.com/), [proxy-scraper-checker](https://github.com/monosans/proxy-scraper-checker), [Socker](https://github.com/TheSpeedX/socker) or [Unfx Proxy Checker](https://openproxy.space/software/proxy-checker) / [GitHub](https://github.com/openproxyspace/unfx-proxy-checker) - Proxy Scrapers / Checkers * [Proxy Scrape](https://github.com/JaredLGillespie/proxyscrape) - Python Library for Retrieving Free Proxies
* [Proxy-Checker](https://proxy-checker.net/), [proxy-scraper](https://github.com/iw4p/proxy-scraper), [What is my Proxy](http://www.whatismyproxy.com/), [proxy-scraper-checker](https://github.com/monosans/proxy-scraper-checker), [Socker](https://github.com/TheSpeedX/socker) or [Unfx Proxy Checker](https://github.com/openproxyspace/unfx-proxy-checker) - Proxy Scrapers / Checkers
* [CheckSocks5](https://checksocks5.com/) - Socks5 Proxy Checker * [CheckSocks5](https://checksocks5.com/) - Socks5 Proxy Checker
* [Proxynova](https://www.proxynova.com/proxy-server-list/country-ir/) - Iranian Proxies * [Proxynova](https://www.proxynova.com/proxy-server-list/country-ir/) - Iranian Proxies

View File

@ -4,93 +4,58 @@
*** ***
*** ***
* **Note** - Our [Discord](https://redd.it/17f8msf) has an AI bot with Llama, Mistral, and Stable Diffusion. Feel free to join and try it out.
***
# ► AI Chatbots # ► AI Chatbots
* 🌐 **[Awesome ChatGPT](https://github.com/uhub/awesome-chatgpt)** - ChatGPT Resources * 🌐 **[LMSYS Arena](https://huggingface.co/spaces/lmsys/chatbot-arena-leaderboard)** - Chatbot Leaderboard with Elo rating
* 🌐 **[Every ChatGPT GUI](https://github.com/billmei/every-chatgpt-gui)** - ChatGPT GUI Index * 🌐 **[LLM Leaderboard](https://huggingface.co/spaces/HuggingFaceH4/open_llm_leaderboard)** - Open Source Chatbot Benchmark
* ⭐ **[ChatPDF](https://www.chatpdf.com/)** or [Ask Your PDF](https://askyourpdf.com/) - Turn Books into Chatbots * 🌐 **[Transformer Models Timeline](https://ai.v-gar.de/ml/transformer/timeline/)** - LLM Timeline
* ⭐ **[TypeSet](https://typeset.io/)** - Research Paper Chatbot
* [GPT Crawler](https://github.com/BuilderIO/gpt-crawler) - Turn Websites into Chatbots
* [ChatGPTBox](https://github.com/josStorer/chatGPTBox), [ChatGPT Apps](https://github.com/adamlui/chatgpt-apps), [KeepChatGPT](https://github.com/xcanwin/KeepChatGPT/blob/main/docs/README_EN.md) or [Merlin](https://www.getmerlin.in/) / [Unlimited](https://rentry.co/MerlinAI-Unlim) - Extensions
* [Humata](https://www.humata.ai/), [Sharly](https://app.sharly.ai/), [Docalysis](https://docalysis.com/), [DAnswer](https://docs.danswer.dev/), [DocsGPT](https://docsgpt.arc53.com/) or [ChatDOC](https://chatdoc.com/) - Turn Documents into Chatbots
* [PrivateGPT](https://docs.privategpt.dev/) - Offline Document Chatbots
* [SallyBot](https://github.com/DeSinc/SallyBot/) - ChatGPT Discord Bot
* [TGPT](https://github.com/aandrew-me/tgpt) - ChatGPT TUIs
* [Lobe Chat](https://chat-preview.lobehub.com) - Desktop App
* [Noi](https://noi.nofwl.com/) - Desktop App
* [Chatbot-UI](https://chatbotui.com) - Desktop App / [GitHub](https://github.com/mckaywrigley/chatbot-ui)
* [ChatRTX](https://www.nvidia.com/en-us/ai-on-rtx/chatrtx/) - Desktop App / RTX 30+ Series GPU Only
* [ChatGPT DeMod](https://github.com/4as/ChatGPT-DeMod) - Block ChatGPT Moderation Checks
* [ParallelGPT](https://www.parallelgpt.ai/) - Data Processing AI
* [Voice Control](https://voicecontrol.chat/) - ChatGPT Voice Control
* [ChatGPT Exporter](https://greasyfork.org/en/scripts/456055) - Export Chats
* [GPThemes](https://github.com/itsmartashub/GPThemes) - ChatGPT Themes
*** ***
## ▷ Online Chatbots ## ▷ Online Chatbots
* 🌐 **[Awesome Free ChatGPT](https://github.com/LiLittleCat/awesome-free-chatgpt/blob/main/README_en.md)** or [ChinaGPT](https://github.com/GoldenMelon-Studio/chinagpt-4/) - Online GPT Indexes
* ⭐ **[ChatGPT](https://chatgpt.com/)** - GPT-4o Chatbot / [Discord](https://discord.com/invite/openai)
* ⭐ **[Microsoft Copilot](https://copilot.microsoft.com)** - GPT-4/3.5 Powered Search / [SydneyQT Jailbreak](https://github.com/juzeon/SydneyQt) * ⭐ **[Microsoft Copilot](https://copilot.microsoft.com)** - GPT-4/3.5 Powered Search / [SydneyQT Jailbreak](https://github.com/juzeon/SydneyQt)
* ⭐ **[Morphic](https://www.morphic.sh/)** - GPT-4o Powered Search
* ⭐ **[Perplexity](https://www.perplexity.ai/)** - GPT-3.5 Powered Search / [Open Source Models](https://labs.perplexity.ai/)
* ⭐ **[wrtn](https://wrtn.ai/)** - GPT-4 Chatbot / [Android](https://play.google.com/store/apps/details?id=com.wrtn.app) / [iOS](https://apps.apple.com/us/app/%EB%A4%BC%ED%8A%BC-%EB%AA%A8%EB%91%90%EB%A5%BC-%EC%9C%84%ED%95%9C-ai-%ED%8F%AC%ED%84%B8/id6448556170) (ask for english) * ⭐ **[wrtn](https://wrtn.ai/)** - GPT-4 Chatbot / [Android](https://play.google.com/store/apps/details?id=com.wrtn.app) / [iOS](https://apps.apple.com/us/app/%EB%A4%BC%ED%8A%BC-%EB%AA%A8%EB%91%90%EB%A5%BC-%EC%9C%84%ED%95%9C-ai-%ED%8F%AC%ED%84%B8/id6448556170) (ask for english)
* ⭐ **[Gemini](https://gemini.google.com/)** or [Gemma](https://github.com/google/gemma.cpp), [2](https://ai.google.dev/gemma/) - Google's Chatbot * ⭐ **[Perplexity](https://www.perplexity.ai/)** - GPT-3.5 Powered Search / [Open Source Models](https://labs.perplexity.ai/)
* ⭐ **[Claude](https://claude.ai/)** - Anthropic's Chatbot
* ⭐ **[groq](https://groq.com/)** - Llama 3 and Mixtral Chatbots
* ⭐ **[LMSYS Chat](https://chat.lmsys.org/)** - Chat and Compare Multiple Chatbots * ⭐ **[LMSYS Chat](https://chat.lmsys.org/)** - Chat and Compare Multiple Chatbots
* [LLM Playground](https://llmplayground.net/) - Multiple Chatbots / [Discord](https://discord.com/invite/q55gsH8z5F) / [API](https://api.discord.rocks/) * [ChatGPT](https://chat.openai.com/) - GPT-3.5 Chatbot / [Discord](https://discord.com/invite/openai)
* [feyn](https://feyn.chat/) - GPT-4o / Multiple Chatbots * [Gemini](https://gemini.google.com/) - Google's Chatbot
* [GPT4o.so](https://gpt4o.so/app) - GPT-4o * [groq](https://groq.com/) - LLama and Mixtral Chatbots
* [LibreChat](https://librechat.ai/) - Multiple Chatbots
* [sdk.vercel](https://sdk.vercel.ai/) - Multiple Chatbots
* [FFA](https://ffa.chat/) - Multiple Chatbots
* [DDG Chat](https://duckduckgo.com/chat) - Multiple Chatbots
* [HuggingChat](https://huggingface.co/chat/) - Open-Source Chatbots * [HuggingChat](https://huggingface.co/chat/) - Open-Source Chatbots
* [infermatic](https://infermatic.ai/) / [Discord](https://discord.gg/9GUXmDx9GF) - Multiple Chatbots * [FlowGPT](https://flowgpt.com/chat) - Multiple Chatbots / [Discord](https://discord.com/invite/tWZGzcpTkf)
* [lollms-webui](https://github.com/ParisNeo/lollms-webui) - Multiple Chatbots * [Phind](https://www.phind.com/) - GPT-3.5 Powered Search
* [MagAI](https://rentry.org/freegpt4withmagai) - Multiple Chatbots * [Ora](https://ora.ai/start) - GPT-3.5 Based Chatbots
* [freegpt4](https://rentry.org/freegpt4) - Free GPT-4 Methods
* [Meta AI](https://www.meta.ai/) - Llama 3 Chatbot
* [NVIDIA NIM](https://build.nvidia.com/) - Llama 3
* [Phind](https://www.phind.com/) - Llama Search Engine
* [Perplexica](https://github.com/ItzCrazyKns/Perplexica) - AI Search Engine
* [Komo](https://komo.ai/) - AI Search Engine
* [iAsk](https://iask.ai/) - AI Search Engine
* [Mindfulq](https://www.mindfulq.com/) - AI Search Engine
* [Andi](https://andisearch.com/) - AI Search Engine
* [You](https://you.com/) - AI Search Engine
* [iSeek](https://www.iseek.com/) - AI Search Engine
* [Farfalle](https://www.farfalle.dev/) - AI Search Engine
* [Exa](https://exa.ai/) - AI Search Engine / [Discord](https://discord.com/invite/jvz7GS9W8Y)
* [Lepton Search](https://search.lepton.run/) - AI Search Engine
* [Pi](https://pi.ai/talk) - Inflection AI's Chatbot * [Pi](https://pi.ai/talk) - Inflection AI's Chatbot
* [Reka Playground](https://chat.reka.ai/) - Reka's Chatbot
* [Poe](https://poe.com/) - Multiple Chatbots / 150 Daily / [Discord](https://discord.com/invite/joinpoe) * [Poe](https://poe.com/) - Multiple Chatbots / 150 Daily / [Discord](https://discord.com/invite/joinpoe)
* [Claude](https://claude.ai/) - Anthropic's Chatbot
* [AI Playground](https://play.vercel.ai/) - Compare Multiple Chatbots
* [GlobalGPT](https://www.globalgpt.nspiketech.com/#/) - AI Chatbot with Document Support * [GlobalGPT](https://www.globalgpt.nspiketech.com/#/) - AI Chatbot with Document Support
* [Ai Uncensored](https://www.aiuncensored.info/) - "Uncensored" Chatbot
*** ***
## ▷ Self-Hosting Tools ## ▷ Self-Hosting Tools
* ⭐ **[Jan.ai](https://jan.ai/)** - Self-Hosted * ⭐ **[SillyTavern](https://github.com/SillyTavern/SillyTavern)** - Front-end for LLMs
* ⭐ **[SillyTavern](https://docs.sillytavern.app/)** - Front-end for LLMs
* ⭐ **[llama.cpp](https://github.com/ggerganov/llama.cpp)** - Self-Host Transformer Based LLMs / [Guide](https://rentry.org/llama-mini-guide) * ⭐ **[llama.cpp](https://github.com/ggerganov/llama.cpp)** - Self-Host Transformer Based LLMs / [Guide](https://rentry.org/llama-mini-guide)
* ⭐ **[kobold.cpp](https://github.com/LostRuins/koboldcpp)** - llama.cpp with API + GUI / [rocM](https://github.com/YellowRoseCx/koboldcpp-rocm) / [Colab](https://colab.research.google.com/github/LostRuins/koboldcpp/blob/concedo/colab.ipynb) * ⭐ **[kobold.cpp](https://github.com/LostRuins/koboldcpp)** - llama.cpp with API + GUI / [rocM](https://github.com/YellowRoseCx/koboldcpp-rocm) / [Colab](https://colab.research.google.com/github/LostRuins/koboldcpp/blob/concedo/colab.ipynb)
* ⭐ **[Pinokio](https://pinokio.computer/)** - Single Click AI Model Installer / [Discord](https://discord.gg/TQdNwadtE4) * ⭐ **[Pinokio](https://pinokio.computer/)** - Single Click AI Model Installer / [Discord](https://discord.gg/TQdNwadtE4)
* ⭐ **[Oobabooga Text Generation WebUI](https://github.com/oobabooga/text-generation-webui)** - Self-Host Models / [Colab](https://colab.research.google.com/github/pcrii/Philo-Colab-Collection/blob/main/4bit_TextGen_Gdrive.ipynb) * ⭐ **[Oobabooga Text Generation WebUI](https://github.com/oobabooga/text-generation-webui)** - Self-Host Models / [Colab](https://colab.research.google.com/github/pcrii/Philo-Colab-Collection/blob/main/4bit_TextGen_Gdrive.ipynb)
* ⭐ **[Aphrodite Engine](https://github.com/PygmalionAI/aphrodite-engine)** - Serve LLMs at Scale with Kobold & OpenAI APIs / [Colab](https://colab.research.google.com/github/AlpinDale/misc-scripts/blob/main/Aphrodite.ipynb) * ⭐ **[Aphrodite Engine](https://github.com/PygmalionAI/aphrodite-engine)** - Serve LLMs at Scale with Kobold & OpenAI APIs / [Colab](https://colab.research.google.com/github/AlpinDale/misc-scripts/blob/main/Aphrodite.ipynb)
* [LLaVA](https://llava.hliu.cc/) - Chatbot with Image Support * [LLaVA](https://llava.hliu.cc/) - Chatbot with Image Support
* [OpenAIPlayground](https://github.com/nat/openplayground) - LLM Playground
* [Petals](https://petals.dev/) - Self-Hosted * [Petals](https://petals.dev/) - Self-Hosted
* [Mistral](https://chat.mistral.ai/chat) - Self-Hosted * [Jan.ai](https://jan.ai/) - Self-Hosted
* [Ollama](https://ollama.ai/) - Self-Hosted * [Ollama](https://ollama.ai/) - Self-Hosted
* [LMStudio](https://lmstudio.ai/) - Self-Hosted * [GPT4All](https://gpt4all.io/) - Self-Hosted / [Github](https://github.com/nomic-ai/gpt4all) / [Discord](https://discord.com/invite/mGZE39AS3e)
* [GPT4All](https://www.nomic.ai/gpt4all) - Self-Hosted / [Github](https://github.com/nomic-ai/gpt4all) / [Discord](https://discord.com/invite/mGZE39AS3e) * [LlamaFile](https://github.com/Mozilla-Ocho/llamafile) - Run LLMs w/ Single File
* [LlamaFile](https://github.com/Mozilla-Ocho/llamafile) - Run LLM with Single Files * [Dify](https://dify.ai/) - Create AI Apps
* [Generative AI for Beginners](https://microsoft.github.io/generative-ai-for-beginners/) - Generative AI Guides * [PlugBear](https://plugbear.io/) - Connect LLMs to Apps
* [Generative AI for Beginners](https://github.com/microsoft/generative-ai-for-beginners) - Generative AI Guides
* [TGPT](https://github.com/aandrew-me/tgpt) - ChatGPT TUI
* [LibreChat](https://github.com/danny-avila/LibreChat), [HemulGM](https://github.com/HemulGM/ChatGPT), [SmolAI](https://github.com/smol-ai/menubar/) or [Chatbot-UI](https://github.com/mckaywrigley/chatbot-ui) - ChatGPT Desktop Apps / GUIs
*** ***
@ -100,106 +65,80 @@
* 🌐 **[Img-Resources](https://rentry.org/lmg-resources)** - LLM Character Resources / [Templates](https://rentry.org/lmg_template) * 🌐 **[Img-Resources](https://rentry.org/lmg-resources)** - LLM Character Resources / [Templates](https://rentry.org/lmg_template)
* ⭐ **[PygmalionAI](https://discord.com/invite/pygmalionai)** - Self-Hosted Roleplaying Models with Resources / [Resources](https://rentry.co/PygmalionLinks) * ⭐ **[PygmalionAI](https://discord.com/invite/pygmalionai)** - Self-Hosted Roleplaying Models with Resources / [Resources](https://rentry.co/PygmalionLinks)
* ⭐ **[Call Annie](https://callannie.ai/)** - GPT-3.5 Chatbot with Real-Time Voice and Video / [Discord](https://discord.gg/Rfbzet5R3v) * ⭐ **[Call Annie](https://callannie.ai/)** - GPT-3.5 Chatbot with Real-Time Voice and Video / [Discord](https://discord.gg/Rfbzet5R3v)
* ⭐ **[Character AI](https://character.ai/)** - Roleplaying Chatbots / [Extract Params](https://rentry.org/reverseCAI) * ⭐ **[Character AI](https://beta.character.ai/)** - Roleplaying Chatbots / [Extract Params](https://rentry.org/reverseCAI)
* ⭐ **[FlowGPT](https://flowgpt.com/chat)** - Roleplaying Chatbots / [Discord](https://discord.com/invite/tWZGzcpTkf)
* ⭐ **[Bot Creation Guide](https://wikia.schneedc.com/bot-creation/intro)** - Character Creation Guide * ⭐ **[Bot Creation Guide](https://wikia.schneedc.com/bot-creation/intro)** - Character Creation Guide
* ⭐ **[Chub](https://www.chub.ai/)** - Character Cards * ⭐ **[Chub](https://www.chub.ai/)** - Character Cards
* [LlaMA + SillyTavern](https://rentry.org/llama_v2_sillytavern) - LlaMA + SillyTavern Roleplaying Setup Guide * [LLaMA + SillyTavern](https://rentry.org/llama_v2_sillytavern) - LLaMA + SillyTavern Roleplaying Setup Guide
* [KoboldAI](https://github.com/henk717/KoboldAI) - GUI for Roleplaying Chatbots / [Web App](https://lite.koboldai.net/) * [KoboldAI](https://github.com/henk717/KoboldAI) - GUI for Roleplaying Chatbots / [Web App](https://lite.koboldai.net/)
* [GPT Call](https://gptcall.net/) - Roleplaying Chatbots / [Discord](https://discord.gg/88fQT5Bgfe) * [GPT Call](https://gptcall.net/) - Roleplaying Chatbots / [Discord](https://discord.gg/88fQT5Bgfe)
* [Figgs](https://www.figgs.ai/) - Roleplaying Chatbots
* [Dreamshow](https://dreamshow.ai/) - Roleplaying Chatbots * [Dreamshow](https://dreamshow.ai/) - Roleplaying Chatbots
* [Spicychat.ai](https://spicychat.ai/) - Roleplaying Chatbots * [Spicychat.ai](https://spicychat.ai/) - Roleplaying Chatbots
* [Epigon](https://epigon.ai/) - Roleplaying Chatbots
* [Sakura](https://www.sakura.fm/) - Roleplaying Chatbots * [Sakura](https://www.sakura.fm/) - Roleplaying Chatbots
* [4thWall AI](https://beta.4wall.ai/) - Roleplaying Chatbots * [4thWall AI](https://beta.4wall.ai/) - Roleplaying Chatbots
* [Faraday](https://faraday.dev/) - Self-Hosted Roleplaying Chatbot
* [TavernAI](https://tavernai.net/) - Roleplaying / Adventure Chatbot * [TavernAI](https://tavernai.net/) - Roleplaying / Adventure Chatbot
* [AI Dungeon](https://play.aidungeon.io/main/landing) - Roleplaying / Adventure Chatbot
* [Shapes.ai](https://shapes.inc/) - Discord Roleplaying Bot
* [Broken Bear](https://www.brokenbear.com/) - Vent to AI Bear * [Broken Bear](https://www.brokenbear.com/) - Vent to AI Bear
* [Kajiwoto](https://kajiwoto.ai/), [Miku](https://docs.miku.gg/) / [Discord](https://discord.gg/3XPdpUdGgV) or [Agnai](https://agnai.chat/) - Chatbot Builders * [Kajiwoto](https://kajiwoto.ai/), [Miku](https://docs.miku.gg/) / [Discord](https://discord.gg/3XPdpUdGgV) or [Agnai](https://agnai.chat/) - Chatbot Builders
*** ***
## ▷ Coding AIs ## ▷ ChatGPT Tools
* 🌐 **[EvalPlus Leaderboard](https://evalplus.github.io/leaderboard.html)** or [BigCode](https://huggingface.co/spaces/bigcode/bigcode-models-leaderboard) - Coding AI Leaderboards * 🌐 **[Awesome ChatGPT](https://github.com/uhub/awesome-chatgpt)** - ChatGPT Resources
* 🌐 **[Awesome AI Agents](https://github.com/e2b-dev/awesome-ai-agents)** - Coding / Programming AIs * 🌐 **[Awesome Free ChatGPT](https://github.com/LiLittleCat/awesome-free-chatgpt/blob/main/README_en.md)** or **[FOFA](https://en.fofa.info/result?qbase64=ImxvYWRpbmctd3JhcCIgJiYgImJhbGxzIiAmJiAiY2hhdCIgJiYgaXNfZG9tYWluPXRydWU%3D)** / [2](https://en.fofa.info/result?qbase64=dGl0bGU9PSJDaGF0R1BUIFdlYiI%3D) - ChatGPT WebUI Indexes
* ⭐ **[Codeium](https://codeium.com/)** - Coding AI * ⭐ **[ChatHub](https://chathub.gg/)** - Compare AI Responses
* ⭐ **[Pieces](https://pieces.app/) / [Docs](https://docs.pieces.app)** - Multi-LLM Coding AI / GPT-4 for Free * ⭐ **[ChatPDF](https://www.chatpdf.com/)** or [Ask Your PDF](https://askyourpdf.com/) - Turn PDFs into Chatbots
* [Cursor](https://cursor.sh/) - Coding AI * ⭐ **[TypeSet](https://typeset.io/)** - Research Paper Chatbot
* [tabnine](https://www.tabnine.com/) - Coding AI * [Erin](https://erin.ac/) or [SallyBot](https://github.com/DeSinc/SallyBot/) - ChatGPT Discord Bots
* [ImageCook](https://imgcook.com) / [GitHub](https://github.com/imgcook/imgcook) - Coding AI * [Vault AI](https://vault.pash.city/), [Humata](https://www.humata.ai/), [Unriddle](https://www.unriddle.ai/), [Sharly](https://app.sharly.ai/), [Docalysis](https://docalysis.com/), [DAnswer](https://github.com/danswer-ai/danswer) or [ChatDOC](https://chatdoc.com/) - Turn Documents into Chatbots
* [CodeWhisperer](https://aws.amazon.com/codewhisperer/) - Coding AI * [PrivateGPT](https://github.com/imartinez/privateGPT/) or [ChatDocs](https://github.com/marella/chatdocs) - Offline Document Chatbots
* [Telosys](https://www.telosys.org/) - Coding AI * [ChatGPT DeMod](https://github.com/4as/ChatGPT-DeMod) - Block ChatGPT Moderation Checks
* [WDTCD?](https://whatdoesthiscodedo.com/) - Coding AI * [ParallelGPT](https://www.parallelgpt.ai/) - Data Processing AI
* [Sourcery](https://sourcery.ai/) - Coding AI * [ChatGPT File Uploader](https://chromewebstore.google.com/detail/chatgpt-file-uploader/oaogphgfdbdbmhkiplemgehihiiececj) - File Upload Extension
* [Devv](https://devv.ai/) - Coding AI * [ChatGPT Advanced](https://tools.zmo.ai/webchatgpt) - Add Search Results to ChatGPT
* [Cody](https://about.sourcegraph.com/cody) - Coding AI * [SublimeGPT](https://chromewebstore.google.com/detail/sublimegpt-chatgpt-everyw/eecockeebhenbihmkaamjlgoehkngjea), [DuckDuckGPT](https://github.com/kudoai/duckduckgpt) or [GPTGO](https://gptgo.ai/) - Add ChatGPT to Search Results
* [Cursor](https://www.trycursor.com/) - Coding AI / [Discord](https://discord.gg/PJEgRywgRy) * [ChatGPTBox](https://github.com/josStorer/chatGPTBox), [ChatGPT Apps](https://github.com/adamlui/chatgpt-apps), [KeepChatGPT](https://github.com/xcanwin/KeepChatGPT/blob/main/docs/README_EN.md) or [Walles](https://walles.ai/) - ChatGPT Extensions
* [OpenDevin](https://github.com/OpenDevin/OpenDevin) - Coding AI * [Harpa](https://harpa.ai/), [Merlin](https://www.getmerlin.in/) / [Unlimited](https://rentry.co/MerlinAI-Unlim) or [Glimpse](https://glimpse.surf/) - ChatGPT Chrome Extensions
* [continue](https://continue.dev/) - Coding AI * [/r/ChatGPT](https://www.reddit.com/r/ChatGPT/) - ChatGPT Subreddit
* [Bito AI](https://bito.ai/) - Coding AI * [ChatGPT Exporter](https://greasyfork.org/en/scripts/456055) - Export Chats
* [CodiumAI](https://www.codium.ai/) - Coding AI * [VizGPT](https://www.vizgpt.ai/) - Chat Data Visualization
* [Blackbox](https://www.blackbox.ai/) - Coding AI * [DeepSheet](https://deepsheet.dylancastillo.co/) - Data Visualization AI
* [Codel](https://github.com/semanser/codel) - Coding AI * [Autoclear ChatGPT History](https://github.com/adamlui/userscripts/tree/master/chatgpt/autoclear-chatgpt-history) - Autoclear Chats
* [CollectivAI](https://chat.collectivai.com/) - Coding AI * [EditGPT](https://www.editgpt.app/) - Proofread Chats
* [Denigma](https://denigma.app/#demo) - Coding AI * [RepeatGPT](https://repeatgpt.com/) - Schedule Chats
* [GPT Engineer](https://github.com/AntonOsika/gpt-engineer) - Coding AI * [ChatGPT Old Style](https://greasyfork.org/en/scripts/486909-openai-chat-old-colors) - Old ChatGPT Colors
* [Aider](https://aider.chat/) - Terminal Coding AI
* [Codacy](https://www.codacy.com/) or [AI Code Review](https://ai-code-reviewer.com/) - Code Fixing AIs
* [Open Interpreter](https://github.com/OpenInterpreter/open-interpreter) - Run Code Locally
* [v0](https://v0.dev/) - Text to Site Code
* [AI Code Translator](https://ai-code-translator.vercel.app/), [AI Code Convert](https://aicodeconvert.com/) or [Source Code Converters](https://www.tangiblesoftwaresolutions.com/) - AI Code Converters
* [RTutor](https://rtutor.ai/) - Translate Natural Language to R code
* [Gorilla](https://gorilla.cs.berkeley.edu/) - API to Code LLM
* [CS50.ai](https://cs50.ai/) - AI Rubberducking
***
## ▷ ChatGPT Prompts ## ▷ ChatGPT Prompts
* 🌐 **[Jailbreak Listings](https://rentry.org/jb-listing)** - Prompt / Jailbreak Lists * ⭐ **[Awesome ChatGPT Prompts](https://prompts.chat/)** - Prompt Directory
* ⭐ **[Awesome ChatGPT Prompts](https://prompts.chat/)** - Prompt Directory / [Github](https://github.com/f/awesome-chatgpt-prompts) * ⭐ **[Prompt Engineering Guide](https://www.promptingguide.ai)**, [OpenAI Guide](https://platform.openai.com/docs/guides/prompt-engineering), [LearningPrompt](https://learningprompt.wiki/) or [Jailbreaking ChatGPT](https://arxiv.org/pdf/2305.13860) - Prompting Guides
* ⭐ **[BlackFriday GPTs Prompts](https://github.com/friuns2/BlackFriday-GPTs-Prompts)** - Prompt Directory * ⭐ **[jailbreakchat](https://www.jailbreakchat.com/)** or **[jamessawyer](http://www.jamessawyer.co.uk/pub/gpt_jb.html)** - Jailbreak Prompts
* ⭐ **[Leaked Prompts](https://github.com/linexjlin/GPTs)** - Prompt Directory * ⭐ **[quickref](https://quickref.me/chatgpt)** - Prompt Cheatsheets
* ⭐ **[Prompt Engineering Guide](https://www.promptingguide.ai)**, [LearnPrompting](https://learnprompting.org/docs/intro), [OpenAI Guide](https://platform.openai.com/docs/guides/prompt-engineering), [Claude Guide](https://docs.anthropic.com/claude/docs/prompt-engineering) or [LearningPrompt](https://learningprompt.wiki/) - Prompting Guides * ⭐ **[flowgpt](https://flowgpt.com/)**, **[Leaked Prompts](https://github.com/linexjlin/GPTs)**, [500 Best Prompts](https://puzzle-jute-202.notion.site/500-Best-ChatGPT-Prompts-f5b4ad65deec4b6385316fdb8740af74), [UseThisPrompt](https://www.usethisprompt.io/), [GPTea](https://gptea.io/) or [SnackPrompt](https://snackprompt.com/) - Prompt Directories
* [500 Best Prompts](https://puzzle-jute-202.notion.site/500-Best-ChatGPT-Prompts-f5b4ad65deec4b6385316fdb8740af74) - Prompt Directory * [PromptPerfect](https://promptperfect.jina.ai/) - Prompt Optimization
* [L1B3RT45](https://github.com/elder-plinius/L1B3RT45) - Jailbreak Prompts / [Discord](https://discord.gg/basi) / [Twitter](https://x.com/elder_plinius)
* [promptfoo](https://github.com/typpo/promptfoo) or [PromptKnit](https://promptknit.com/) - Prompt Playgrounds * [promptfoo](https://github.com/typpo/promptfoo) or [PromptKnit](https://promptknit.com/) - Prompt Playgrounds
* [Marketing 2099](https://sintralabs.notion.site/Marketing-2099-Ultimate-ChatGPT-Marketing-Prompts-To-Copy-Paste-200-tasks-fc22c9142d6a4a4286a3fe755be932e6) - ChatGPT Marketing Prompts * [Marketing 2099](https://sintralabs.notion.site/Marketing-2099-Ultimate-ChatGPT-Marketing-Prompts-To-Copy-Paste-200-tasks-fc22c9142d6a4a4286a3fe755be932e6) - ChatGPT Marketing Prompts
* [Tensor Trust](https://tensortrust.ai/) or [Gandalf](https://gandalf.lakera.ai/) - Prompting Skill Games * [Tensor Trust](https://tensortrust.ai/) or [Gandalf](https://gandalf.lakera.ai/) - Prompting Skill Games
* [chat-gpt-games](https://github.com/AdmTal/chat-gpt-games) - Prompt Games
* [Gobble Bot](https://gobble.bot/) - Generate Text Files for Chatbots
*** ***
*** ***
# ► AI Indexes # ► AI Indexes
* 🌐 **[LMSYS Arena](https://chat.lmsys.org/?leaderboard)** - Chatbot Leaderboards / Benchmarks
* 🌐 **[LLM Leaderboard](https://huggingface.co/spaces/open-llm-leaderboard/open_llm_leaderboard)** - Chatbot Leaderboards / Benchmarks
* 🌐 **[Transformer Models Timeline](https://ai.v-gar.de/ml/transformer/timeline/)** - LLM Timeline
* 🌐 **[Toolify](https://www.toolify.ai/)** - AI Directory * 🌐 **[Toolify](https://www.toolify.ai/)** - AI Directory
* 🌐 **[Phygital Library](https://library.phygital.plus/)** - AI Directory / Workflow Builder * 🌐 **[Phygital Library](https://library.phygital.plus/)** - AI Directory / Workflow Builder
* 🌐 **[AI-MF](https://whoisdsmith.gitbook.io/ai-mf/)** - AI Directory / [GitHub](https://github.com/whoisdsmith/AI-MTHRFCKR)
* 🌐 **[LifeArchitect](https://lifearchitect.ai/models-table/)** - LLM Index * 🌐 **[LifeArchitect](https://lifearchitect.ai/models-table/)** - LLM Index
* [Glif](https://glif.app/) or [perchance](https://perchance.org/generators) - Simple AI Builders
* [WildBench](https://huggingface.co/spaces/allenai/WildBench) - Chatbot Benchmarks
* [ArtificialAnalysis](https://artificialanalysis.ai/) - Chatbot Benchmarks
* [The Fastest AI](https://thefastest.ai/) - Chatbot Benchmarks
* [YP for AI](https://www.ypforai.com) - AI Directory
* [AI Search](https://ai-search.io), [What AI Can Do Today](https://whataicandotoday.com/) or [FindAISites](https://findaisites.pro/) - AI Index Search
* [Awesome AI Tools](https://github.com/mahseema/awesome-ai-tools) - AI Directory
* [ToolDirectory](https://www.tooldirectory.ai/) - AI Directory * [ToolDirectory](https://www.tooldirectory.ai/) - AI Directory
* [BasedTools](https://www.basedtools.ai/) - AI Directory / [Discord](https://discord.gg/D8wYxUvwTD)
* [It's Better With AI](https://itsbetterwithai.com/) - AI Directory
* [Futurepedia](https://www.futurepedia.io/) - AI Directory * [Futurepedia](https://www.futurepedia.io/) - AI Directory
* [funfun.tools](https://www.funfun.tools/) - AI Directory * [AI Search](https://ai-search.io/) - AI Directory
* [PowerUsers](https://powerusers.ai/) - AI Directory * [PowerUsers](https://powerusers.ai/) - AI Directory
* [TheresAnAIForThat](https://theresanaiforthat.com/) - AI Directory * [TheresAnAIForThat](https://theresanaiforthat.com/) - AI Directory
* [AI Tools](https://aitools.fyi/) - AI Directory
* [FutureTools](https://www.futuretools.io/?pricing-model=free) - AI Directory * [FutureTools](https://www.futuretools.io/?pricing-model=free) - AI Directory
* [Sieve](https://www.sievedata.com/explore) or [ArtificialStudio](https://www.artificialstudio.ai/tools) - Multi-Tool Browser AIs * [ArtificialStudio](https://www.artificialstudio.ai/tools) - Multi-Tool Browser AI
* [Google Labs](https://labs.google/) or [AI Test Kitchen](https://aitestkitchen.withgoogle.com/) - Google AI Experiments * [Google Labs](https://labs.withgoogle.com/) - AI Experiments
*** ***
*** ***
@ -210,13 +149,17 @@
* [Scrip AI](https://scripai.com/), [InkForAll](https://app.inkforall.com/tools), [QuickPenAI](https://quickpenai.com/) - Online AI Text Tools * [Scrip AI](https://scripai.com/), [InkForAll](https://app.inkforall.com/tools), [QuickPenAI](https://quickpenai.com/) - Online AI Text Tools
* [NovelAI](https://novelai.net/) - Story Writing AI / [Limit Bypass](https://pastebin.com/JDyvqZcz), [2](https://greasyfork.org/en/scripts/448926) * [NovelAI](https://novelai.net/) - Story Writing AI / [Limit Bypass](https://pastebin.com/JDyvqZcz), [2](https://greasyfork.org/en/scripts/448926)
* [Dreamily](https://dreamily.ai/) or [NightSaga](https://nightsaga.ai/) - Story Writing AIs * [Dreamily](https://dreamily.ai/) or [NightSaga](https://nightsaga.ai/) - Story Writing AIs
* [EssayBot](https://www.essaybot.com/) / [2](https://www.essayaibot.com/), [Textero](https://www.textero.ai/), [EssayBuilder](https://essay-builder.ai/) or [EssayService](https://www.essayservice.ai/) - Essay Writing AI * [Essaytyper](http://www.essaytyper.com/), [papertyper](https://papertyper.net/), [EssayBot](https://www.essaybot.com/) / [2](https://www.essayaibot.com/), [Textero](https://www.textero.ai/), [EssayBuilder](https://essay-builder.ai/) or [EssayService](https://www.essayservice.ai/) - Essay Writing AI
* [TextSynth](https://textsynth.com/playground.html) - Text Autocomplete AI * [Chat GPTPhantom](https://chatgpt-phantom.vercel.app/) - Article Writing AI
* [Product Description Generator](https://www.aidirectori.es/tools/product-description-generator) * [GPT4Chat](https://gpt4chat.net/) or [ChatGPT Writer](https://chatgptwriter.ai/) - Email Reply AI
* [Novel.sh](https://novel.sh/) or [TextSynth](https://textsynth.com/playground.html) - Text Autocomplete AI
* [Compose](https://www.compose.ai/) - Text Autocomplete AI Extension
* [NumerousAI](https://numerous.ai/) or [FormulaBot](https://formulabot.com/) - Excel AI Tools
* [Auto Text Expander](https://pastebin.com/TFPRieVN) - Shortcuts to Expand & Replace Text as you Type
*** ***
## ▷ [Text Rephrasing](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/text-tools#wiki_.25B7_text_rephrasing) ## ▷ [Text Rephrashing](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/text-tools#wiki_.25B7_text_rephrasing)
*** ***
@ -224,21 +167,9 @@
*** ***
# ► Video Generation ## ▷ [Coding AIs](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/dev-tools#wiki_.25B7_coding_ais)
* ⭐ **[PixVerse](https://pixverse.ai/)** - Video Generator / [Discord](https://discord.com/invite/MXHErdJHMg)
* [Synthesis Colab](https://github.com/camenduru/text-to-video-synthesis-colab) - Video Generator
* [StableVideo](https://www.stablevideo.com/) - Video Generator
* [Haiper](https://haiper.ai/) - Video Generator
* [Stable Diffusion Videos](https://github.com/nateraw/stable-diffusion-videos) - Video Generator
* [Dream Machine](https://lumalabs.ai/dream-machine) - Video Generator
* [text-to-video](https://text-to-video.vercel.app) - Video Generator
* [Text2Video-Zero](https://github.com/Picsart-AI-Research/Text2Video-Zero) - Video Generator
* [LensGo](https://lensgo.ai/) - Video Generator
* [Pika Labs](https://www.pika.art/) - Video Generator
* [Damo](https://huggingface.co/spaces/damo-vilab/modelscope-text-to-video-synthesis) - Video Generator
* [Rollideo](https://rollideo.com/) - Text to Subbed Video
***
*** ***
# ► Image Generation # ► Image Generation
@ -247,49 +178,53 @@
*** ***
* 🌐 **[RentrySD](https://rentry.org/RentrySD/)**, **[Pharmapsychotic](https://pharmapsychotic.com/tools.html)**, [Paper2GUI](https://github.com/Baiyuetribe/paper2gui/blob/main/README_en.md), [LocalModelsLinks](https://rentry.org/LocalModelsLinks), [SD Goldmine](https://rentry.org/sdgoldmine), [Akashic](https://github.com/Maks-s/sd-akashic), [sdg-link](https://rentry.org/sdg-link), [SDTools](https://sdtools.org) or [AI Creation Tools](https://docs.google.com/spreadsheets/d/1zYJUM-srhgIA7wrj4Pe4QqepAsHIEC00DydoTPv4PWg/edit#gid=0) - AI Image Resources
* 🌐 **[CivitAI](https://civitai.com/)** or [Stable Diffusion Models](https://cyberes.github.io/stable-diffusion-models/) - SD Models Index
* 🌐 **[PromptMania](https://promptomania.com/)**, [PTSearch](https://www.ptsearch.info/tags/list/) or [PublicPrompts](https://publicprompts.art/) / [Discord](https://discord.com/invite/jvQJFFFx26) - Prompt Indexes
* ⭐ **[CLIP Interrogator](https://huggingface.co/spaces/pharma/CLIP-Interrogator)** / [2](https://huggingface.co/spaces/fffiloni/CLIP-Interrogator-2) - Determine Likely Used Image Prompts
* [SD Dynamic Prompts](https://github.com/adieyal/sd-dynamic-prompts) - Dynamic Prompts Extension
* [Stable Horde](https://stablehorde.net/) - Distributed Network of GPUs running Stable Diffusion / [Interface](https://aqualxx.github.io/stable-ui/), [2](https://tinybots.net/artbot), [3](https://artificial-art.eu/)
* [NOP / WAS](https://colab.research.google.com/drive/1jUwJ0owjigpG-9m6AI_wEStwimisUE17) - AI Image Generation Colab
* [MagicBrush](https://www.magicbru.sh/), [image-mixer-demo](https://huggingface.co/spaces/lambdalabs/image-mixer-demo), [AITransformer](https://aitransformer.net/) - AI Image Transformers
* [SD Inpainting](https://huggingface.co/spaces/runwayml/stable-diffusion-inpainting), [Inpaint Anything](https://github.com/geekyutao/Inpaint-Anything) or [Lama Cleaner](https://github.com/Sanster/lama-cleaner) - Image Fill / Item Removal
* [Unstable Diffusion](https://discord.com/invite/unstablediffusion) - AI Image Community
* [/r/sdforall](https://www.reddit.com/r/sdforall/) - Stable Diffusion Subreddit
***
## ▷ Online Generators
* ⭐ **[Microsoft Designer](https://designer.microsoft.com/image-creator)**, [2](https://www.bing.com/images/create) / Unlimited / [Tips](https://rentry.co/bingimagecreatortips) / [Bulk Download](https://github.com/Richard-Weiss/Bing-Creator-Image-Downloader) * ⭐ **[Microsoft Designer](https://designer.microsoft.com/image-creator)**, [2](https://www.bing.com/images/create) / Unlimited / [Tips](https://rentry.co/bingimagecreatortips) / [Bulk Download](https://github.com/Richard-Weiss/Bing-Creator-Image-Downloader)
* ⭐ **[Mage](https://www.mage.space/)** / [Discord](https://discord.com/invite/GT9bPgxyFP) / Unlimited * ⭐ **[Mage](https://www.mage.space/)** / [Discord](https://discord.com/invite/GT9bPgxyFP) / Unlimited
* ⭐ **[Poe](https://poe.com/)** / 100 Daily / [Discord](https://discord.com/invite/joinpoe) * ⭐ **[Poe](https://poe.com/)** / 100 Daily / [Discord](https://discord.com/invite/joinpoe)
* ⭐ **[PlaygroundAI](https://playgroundai.com/)** / 500 Daily
* ⭐ **[Dezgo](https://dezgo.com/)** / [Discord](https://discord.com/invite/RQrGpUhPhx) / Unlimited * ⭐ **[Dezgo](https://dezgo.com/)** / [Discord](https://discord.com/invite/RQrGpUhPhx) / Unlimited
* ⭐ **[Meta AI](https://imagine.meta.com/)** / Unlimited * ⭐ **[Meta AI](https://imagine.meta.com/)** / Unlimited
* ⭐ **[Playground](https://playground.com/)** / 100 Daily
* ⭐ **[Ideogram](https://ideogram.ai/)** / 100 Daily
* ⭐ **[Tensor.art](https://tensor.art/)** / 100 Daily * ⭐ **[Tensor.art](https://tensor.art/)** / 100 Daily
* ⭐ **[Shakker](https://www.shakker.ai/)** / 50 Daily / [Discord](https://discord.gg/djyP5u3vHY) / [Guide](https://docs.google.com/document/d/1PZ6to6Nn995J0o0BbEPhucqge9uyc1acQoNuvWkK6M8/edit#heading=h.kkzhkyyy4ze4)
* ⭐ **[Lexica](https://lexica.art/)** / 48 Weekly * ⭐ **[Lexica](https://lexica.art/)** / 48 Weekly
* ⭐ **[Leonardo.ai](https://app.leonardo.ai/)** / 30 Daily
* [Stable Diffusion](https://huggingface.co/spaces/stabilityai/stable-diffusion) / Unlimited / [GitHub](https://github.com/Stability-AI/stablediffusion) / [Discord](https://discord.com/invite/stablediffusion) * [Stable Diffusion](https://huggingface.co/spaces/stabilityai/stable-diffusion) / Unlimited / [GitHub](https://github.com/Stability-AI/stablediffusion) / [Discord](https://discord.com/invite/stablediffusion)
* [Prodia](https://app.prodia.com/) / [Discord](https://discord.com/invite/495hz6vrFN) / [Huggingchat Demo](https://huggingface.co/spaces/prodia/fast-stable-diffusion) / Unlimited * [Prodia](https://app.prodia.com/) / [Discord](https://discord.com/invite/495hz6vrFN) / [Huggingchat Demo](https://huggingface.co/spaces/prodia/fast-stable-diffusion) / Unlimited
* [Unstability.ai](https://www.unstability.ai/) / 52 Daily
* [NVIDIA NIM](https://build.nvidia.com/) / 50 Daily
* [SeaArt](https://www.seaart.ai/) / 40 Daily * [SeaArt](https://www.seaart.ai/) / 40 Daily
* [OpenArt](https://openart.ai/) / [Discord](https://discord.com/invite/yTMNvk5z97) / 50 Daily * [OpenArt](https://openart.ai/) / [Discord](https://discord.com/invite/yTMNvk5z97) / 50 Daily
* [StableDiffusionWeb](https://stablediffusionweb.com/) / 10 Daily * [StableDiffusionWeb](https://stablediffusionweb.com/) / 10 Daily
* [AIGallery](https://aigallery.app/) / Unlimited * [AIGallery](https://aigallery.app/) / Unlimited
* [ComfyUI Web](https://comfyuiweb.com/) / Unlimited * [ComfyUI Web](https://comfyuiweb.com/) / Unlimited
* [Recraft](https://www.recraft.ai/) / Unlimited
* [PicSynth](https://www.picsynth.me/generation) / Unlimited
* [ImageLabs](https://editor.imagelabs.net/) / Unlimited * [ImageLabs](https://editor.imagelabs.net/) / Unlimited
* [Pollinations](https://pollinations.ai/) / Unlimited / [Discord](https://discord.com/invite/8HqSRhJVxn) * [Pollinations](https://pollinations.ai/) / Unlimited / [Discord](https://discord.com/invite/8HqSRhJVxn)
* [PicFinder](https://picfinder.ai/) / Unlimited * [PicFinder](https://picfinder.ai/) / Unlimited
* [Perchance](https://perchance.org/ai-text-to-image-generator) / Unlimited
* [PixArt-alpha](https://huggingface.co/spaces/PixArt-alpha/PixArt-alpha) / Unlimited
* [GetIMG.ai](https://getimg.ai/) / [Discord](https://discord.com/invite/5KsUXSzVwS) / 100 Monthly * [GetIMG.ai](https://getimg.ai/) / [Discord](https://discord.com/invite/5KsUXSzVwS) / 100 Monthly
* [Leonardo.ai](https://app.leonardo.ai/) / 30 Daily
* [Adobe Firefly](https://firefly.adobe.com/) / 25 Monthly / [Discord](https://discord.com/invite/dJnsV5s8PZ) / Sign-Up Required * [Adobe Firefly](https://firefly.adobe.com/) / 25 Monthly / [Discord](https://discord.com/invite/dJnsV5s8PZ) / Sign-Up Required
* [AITurbo](https://app.aitubo.ai/) / 25 Daily / [Discord](https://discord.gg/qTu6YsRn7F) * [AITurbo](https://app.aitubo.ai/) / 25 Daily / [Discord](https://discord.gg/qTu6YsRn7F)
* [Venice](https://venice.ai/chat/Wyg_3w4M5KDFAcAHnqf-s) / 25 Daily * [Ideogram](https://ideogram.ai/) / 25 Daily
* [Artsio](https://artsio.xyz/) / 20 Daily * [Artsio](https://artsio.xyz/) / 20 Daily
* [Yodayo](https://yodayo.com/) / 15 Daily
* [Maze.guru](https://maze.guru/gallery) / 12 Daily * [Maze.guru](https://maze.guru/gallery) / 12 Daily
* [DreamLike](https://dreamlike.art) / 12 Daily * [DreamLike](https://dreamlike.art) / [Discord](https://discord.com/invite/QyGR2FxsKU) / 12 Daily
* [Craiyon](https://www.craiyon.com/) / 10 Daily / [Github](https://github.com/borisdayma/dalle-mini) / [Colab](https://colab.research.google.com/github/borisdayma/dalle-mini/blob/main/tools/inference/inference_pipeline.ipynb) * [Craiyon](https://www.craiyon.com/) / 10 Daily / [Github](https://github.com/borisdayma/dalle-mini) / [Colab](https://colab.research.google.com/github/borisdayma/dalle-mini/blob/main/tools/inference/inference_pipeline.ipynb)
* [POKEIT](https://pokeit.ai/) / 10 Daily * [POKEIT](https://pokeit.ai/) / 10 Daily
* [PixAI](https://pixai.art/) / 10 Daily * [PixAI](https://pixai.art/) / 10 Daily
* [Krea](https://search.krea.ai/) / [Discord](https://discord.gg/rJurUAR8Kz) * [Krea](https://search.krea.ai/) / [Discord](https://discord.gg/rJurUAR8Kz)
* [ArtHub.ai](https://arthub.ai/) * [ArtHub.ai](https://arthub.ai/)
* [HotPot](https://hotpot.ai/)
* [clipdrop](https://clipdrop.co/tools)
* [imgsys](https://imgsys.org/) - Compare AI Image Generators
* [MemeCam](https://www.memecam.io/) - AI Meme Generator * [MemeCam](https://www.memecam.io/) - AI Meme Generator
* [Genie](https://lumalabs.ai/genie), [Shap-e](https://github.com/openai/shap-e), [Stable Dreamfusion](https://github.com/ashawkey/stable-dreamfusion) or [ThreeStudio](https://github.com/threestudio-project/threestudio) - 3D Image Generators * [Genie](https://lumalabs.ai/genie), [Shap-e](https://github.com/openai/shap-e), [Stable Dreamfusion](https://github.com/ashawkey/stable-dreamfusion) or [ThreeStudio](https://github.com/threestudio-project/threestudio) - 3D Image Generators
* [Insta-3D](https://huggingface.co/spaces/ilumine-AI/Insta-3D) - Turn 2D images into 3D spaces * [Insta-3D](https://huggingface.co/spaces/ilumine-AI/Insta-3D) - Turn 2D images into 3D spaces
@ -300,42 +235,28 @@
## ▷ Local Frontends ## ▷ Local Frontends
* ⭐ **[Stability Matrix](https://lykos.ai/)** / [GitHub](https://github.com/LykosAI/StabilityMatrix) * ⭐ **[StabilityMatrix](https://github.com/LykosAI/StabilityMatrix)**
* ⭐ **[Automatic1111](https://github.com/AUTOMATIC1111/stable-diffusion-webui)** / [Fork](https://github.com/anapnoe/stable-diffusion-webui-ux), [2](https://github.com/vladmandic/automatic) / [Collab](https://colab.research.google.com/drive/1kw3egmSn-KgWsikYvOMjJkVDsPLjEMzl) / [Photoshop](https://github.com/AbdullahAlfaraj/Auto-Photoshop-StableDiffusion-Plugin) / [Templates](https://github.com/ThereforeGames/unprompted) / [Upscaling](https://github.com/Coyote-A/ultimate-upscale-for-automatic1111), [2](https://github.com/pkuliyi2015/multidiffusion-upscaler-for-automatic1111) * ⭐ **[Automatic1111](https://github.com/AUTOMATIC1111/stable-diffusion-webui)** / [Fork](https://github.com/anapnoe/stable-diffusion-webui-ux), [2](https://github.com/vladmandic/automatic) / [Collab](https://colab.research.google.com/drive/1kw3egmSn-KgWsikYvOMjJkVDsPLjEMzl) / [Photoshop Plugin](https://github.com/AbdullahAlfaraj/Auto-Photoshop-StableDiffusion-Plugin) / [Templates](https://github.com/ThereforeGames/unprompted)
* ⭐ **[InvokeAI](https://invoke-ai.github.io/InvokeAI/) / [GitHub](https://github.com/invoke-ai/InvokeAI)** / [Discord](https://discord.com/invite/ZmtBAhwWhy) * ⭐ **[InvokeAI](https://github.com/invoke-ai/InvokeAI)** / [Discord](https://discord.com/invite/ZmtBAhwWhy)
* ⭐ **[ComfyUI](https://github.com/comfyanonymous/ComfyUI)** * ⭐ **[ComfyUI](https://github.com/comfyanonymous/ComfyUI)**
* ⭐ **[Fooocus](https://github.com/lllyasviel/Fooocus)**, [2](https://github.com/MoonRide303/Fooocus-MRE) / [Colab](https://colab.research.google.com/github/lllyasviel/Fooocus/blob/main/fooocus_colab.ipynb) / [Search](https://genly.ai/) * ⭐ **[Fooocus](https://github.com/lllyasviel/Fooocus)**, [2](https://github.com/MoonRide303/Fooocus-MRE) / [Colab](https://colab.research.google.com/github/lllyasviel/Fooocus/blob/main/fooocus_colab.ipynb) / [Search](https://genly.ai/)
* ⭐ **[MochiDiffusion](https://github.com/godly-devotion/MochiDiffusion)** - Stable Diffusion for Mac / [Discord](https://discord.com/invite/x2kartzxGv)
* ⭐ **[DiffusionBee](https://diffusionbee.com/)** - Stable Diffusion for Mac / [GitHub](https://github.com/divamgupta/diffusionbee-stable-diffusion-ui) / [Discord](https://discord.com/invite/t6rC5RaJQn)
* [StableStudio](https://github.com/Stability-AI/StableStudio) * [StableStudio](https://github.com/Stability-AI/StableStudio)
* [Easy Diffusion](https://stable-diffusion-ui.github.io/) * [Easy Diffusion](https://stable-diffusion-ui.github.io/)
* [Makeayo](https://makeayo.com) / [Discord](https://discord.gg/FbdSxdeV8m) * [Makeayo](https://makeayo.com) / [Discord](https://discord.gg/FbdSxdeV8m)
* [Sygil WebUI](https://github.com/Sygil-Dev/sygil-webui) / [Discord](https://discord.com/invite/ttM8Tm6wge) * [Sygil WebUI](https://github.com/Sygil-Dev/sygil-webui) / [Discord](https://discord.com/invite/ttM8Tm6wge)
* [Radiata](https://ddpn08.github.io/Radiata/en/) * [Radiata](https://github.com/ddPn08/Radiata)
* [SD WebUI Forge](https://github.com/lllyasviel/stable-diffusion-webui-forge) * [Noiselith](https://noiselith.com/)
* [NMKD Stable Diffusion GUI](https://github.com/n00mkrad/text2image-gui) * [NMKD Stable Diffusion GUI](https://github.com/n00mkrad/text2image-gui)
* [aiimag.es](https://sunija.itch.io/aiimages) / [Discord](https://discord.com/invite/Fge4dVHFM2) * [aiimag.es](https://sunija.itch.io/aiimages) / [Discord](https://discord.com/invite/Fge4dVHFM2)
*** ***
## ▷ Guides / Tools ## ▷ SD Guides
* 🌐 **[RentrySD](https://rentry.org/RentrySD/)**, **[Pharmapsychotic](https://pharmapsychotic.com/tools.html)**, [Paper2GUI](https://github.com/Baiyuetribe/paper2gui/blob/main/README_en.md), [LocalModelsLinks](https://rentry.org/LocalModelsLinks), [SD Goldmine](https://rentry.org/sdgoldmine), [Akashic](https://github.com/Maks-s/sd-akashic), [sdg-link](https://rentry.org/sdg-link), [SDTools](https://sdtools.org) or [AI Creation Tools](https://docs.google.com/spreadsheets/d/1zYJUM-srhgIA7wrj4Pe4QqepAsHIEC00DydoTPv4PWg/edit#gid=0) - AI Image Resources
* 🌐 **[CivitAI](https://civitai.com/)** or [Stable Diffusion Models](https://cyberes.github.io/stable-diffusion-models/) - SD Models Index
* 🌐 **[PromptMania](https://promptomania.com/)**, [PTSearch](https://www.ptsearch.info/tags/list/) or [PublicPrompts](https://publicprompts.art/) / [Discord](https://discord.com/invite/jvQJFFFx26) - Prompt Indexes
* ⭐ **[A Travelers Guide to the Latent Space](https://sweet-hall-e72.notion.site/A-Traveler-s-Guide-to-the-Latent-Space-85efba7e5e6a40e5bd3cae980f30235f)** - AI Art Guide * ⭐ **[A Travelers Guide to the Latent Space](https://sweet-hall-e72.notion.site/A-Traveler-s-Guide-to-the-Latent-Space-85efba7e5e6a40e5bd3cae980f30235f)** - AI Art Guide
* ⭐ **[Voldy](https://rentry.org/voldy)**, [SD Quickstart](https://redd.it/xvhavo) or [1 Min Stable Diffusion](https://youtu.be/l3JjTDvyVdw) - Stable Diffusion Guides * ⭐ **[Voldy](https://rentry.org/voldy)**, [SD Quickstart](https://redd.it/xvhavo) or [1 Min Stable Diffusion](https://youtu.be/l3JjTDvyVdw) - Stable Diffusion Guides
* ⭐ **[CLIP Interrogator](https://huggingface.co/spaces/pharma/CLIP-Interrogator)** / [2](https://huggingface.co/spaces/fffiloni/CLIP-Interrogator-2) - Determine Likely Used Image Prompts
* [Prompt Llibrary](https://promptlibrary.org/) - Image Prompt Library
* [SD Dynamic Prompts](https://github.com/adieyal/sd-dynamic-prompts) - Dynamic Prompts Extension
* [Stable Horde](https://stablehorde.net/) - Distributed Network of GPUs running Stable Diffusion / [Interface](https://aqualxx.github.io/stable-ui/), [2](https://tinybots.net/artbot), [3](https://artificial-art.eu/)
* [NOP / WAS](https://colab.research.google.com/drive/1jUwJ0owjigpG-9m6AI_wEStwimisUE17) - AI Image Generation Colab
* [image-mixer-demo](https://huggingface.co/spaces/lambdalabs/image-mixer-demo), [AITransformer](https://aitransformer.net/) - AI Image Transformers
* [SD Inpainting](https://huggingface.co/spaces/runwayml/stable-diffusion-inpainting), [Inpaint Anything](https://github.com/geekyutao/Inpaint-Anything) or [Lama Cleaner](https://github.com/Sanster/lama-cleaner) - Image Fill / Item Removal
* [Unstable Diffusion](https://discord.com/invite/unstablediffusion) - AI Image Community
* [/r/sdforall](https://www.reddit.com/r/sdforall/) - Stable Diffusion Subreddit
* [TheAlly's Guide](https://civitai.com/models/22881/) - Stable Diffusion Guide * [TheAlly's Guide](https://civitai.com/models/22881/) - Stable Diffusion Guide
* [StableDiffusion Cheatsheet](https://supagruen.github.io/StableDiffusion-CheatSheet/) - Stable Diffusion Cheatsheet * [StableDiffusion Cheatsheet](https://github.com/SupaGruen/StableDiffusion-CheatSheet) - Stable Diffusion Cheatsheet
* [Textard](https://rentry.org/textard) - Textual Inversion Guide * [Textard](https://rentry.org/textard) - Textual Inversion Guide
* [drfar](https://rentry.org/drfar) - InPainting Guide * [drfar](https://rentry.org/drfar) - InPainting Guide
* [AnimAnon](https://rentry.org/AnimAnon) - AI Animation Guide * [AnimAnon](https://rentry.org/AnimAnon) - AI Animation Guide
@ -349,25 +270,20 @@
*** ***
# ► Audio Generation # ► Audio Generators
* ⭐ **[MusicGen](https://huggingface.co/spaces/facebook/MusicGen)** - Text to Music AI * ⭐ **[MusicGen](https://huggingface.co/spaces/facebook/MusicGen)** - Text to Music AI
* ⭐ **[Riffusion](https://www.riffusion.com/)** * ⭐ **[Riffusion](https://www.riffusion.com/)**
* ⭐ **[Suno](https://suno.com/)** / [Wiki](https://sunoaiwiki.com/en) * ⭐ **[Chirp](https://app.suno.ai/)**
* [Wolfram Tones](https://tones.wolfram.com/) * [Wolfram Tones](https://tones.wolfram.com/)
* [StableAudio](https://www.stableaudio.com/)
* [Udio](https://www.udio.com/)
* [audio visual generator](https://fredericbriolet.com/avg/) * [audio visual generator](https://fredericbriolet.com/avg/)
* [Fake Music Generator](https://www.fakemusicgenerator.com/) * [Fake Music Generator](https://www.fakemusicgenerator.com/)
* [Sonauto](https://sonauto.ai/) / [Discord](https://discord.gg/pfXar3ChH8)
* [Jingle](https://aidn.jp/jingle/) * [Jingle](https://aidn.jp/jingle/)
* [BeatOven](https://www.beatoven.ai/) * [BeatOven](https://www.beatoven.ai/)
* [Waveformer](https://waveformer.replicate.dev/) * [Waveformer](https://waveformer.replicate.dev/)
* [SoundDraw](https://soundraw.io/) * [SoundDraw](https://soundraw.io/)
* [Aiva](https://aiva.ai/) * [Aiva](https://aiva.ai/)
* [Boomy](https://boomy.com/) * [Boomy](https://boomy.com/)
* [Melobytes](https://melobytes.com/en)
* [AI Jukebox](https://huggingface.co/spaces/enzostvs/ai-jukebox)
* [Drum Loop AI](https://www.drumloopai.com/) - Drum Loop Generator * [Drum Loop AI](https://www.drumloopai.com/) - Drum Loop Generator
* [WOMBO](https://www.wombo.ai/) - AI Powered Lip Sync * [WOMBO](https://www.wombo.ai/) - AI Powered Lip Sync
@ -375,13 +291,13 @@
## ▷ Text to Speech ## ▷ Text to Speech
* 🌐 **[TTS Arena](https://huggingface.co/spaces/TTS-AGI/TTS-Arena)** - Text to Speech Voting / Leaderboards
* ⭐ **[ElevenLabs](https://beta.elevenlabs.io/)** / [Discord](https://discord.com/invite/elevenlabs) * ⭐ **[ElevenLabs](https://beta.elevenlabs.io/)** / [Discord](https://discord.com/invite/elevenlabs)
* ⭐ **[Uberduck](https://uberduck.ai/)** * ⭐ **[Uberduck](https://uberduck.ai/)**
* ⭐ **[WhisperSpeech](https://huggingface.co/spaces/collabora/WhisperSpeech)** - [Discord](https://discord.com/invite/FANw4rHD5E) * ⭐ **[WhisperSpeech](https://huggingface.co/spaces/collabora/WhisperSpeech)** - [Discord](https://discord.com/invite/FANw4rHD5E)
* ⭐ **[Tortoise TTS](https://github.com/neonbjb/tortoise-tts)** * ⭐ **[Tortoise TTS](https://github.com/neonbjb/tortoise-tts)**
* ⭐ **[Bark](https://huggingface.co/spaces/suno/bark)** - [Github](https://github.com/suno-ai/bark) / [Discord](https://discord.com/invite/J2B2vsjKuE) * ⭐ **[Bark](https://huggingface.co/spaces/suno/bark)** - [Github](https://github.com/suno-ai/bark) / [Discord](https://discord.com/invite/J2B2vsjKuE)
* [Balabolka](https://www.cross-plus-a.com/bportable.htm) * [Balabolka](https://www.cross-plus-a.com/bportable.htm)
* [Text To Speech](https://texttospeech.ca/)
* [ttsMP3](https://ttsmp3.com/) * [ttsMP3](https://ttsmp3.com/)
* [Vall-e](https://github.com/enhuiz/vall-e) * [Vall-e](https://github.com/enhuiz/vall-e)
* [TextToMP3](https://www.texttomp3.online/) * [TextToMP3](https://www.texttomp3.online/)
@ -393,10 +309,9 @@
* [TextToSpeech](https://texttospeech.io/) * [TextToSpeech](https://texttospeech.io/)
* [SAPI4](https://tetyys.com/SAPI4/) * [SAPI4](https://tetyys.com/SAPI4/)
* [LazyPY](https://lazypy.ro/tts/) * [LazyPY](https://lazypy.ro/tts/)
* [VoiceCraft](https://github.com/jasonppy/VoiceCraft)
* [Murf.ai](https://murf.ai/) * [Murf.ai](https://murf.ai/)
* [EmotiVoice](https://github.com/netease-youdao/EmotiVoice) * [EmotiVoice](https://github.com/netease-youdao/EmotiVoice)
* [Fish Audio](https://fish.audio/) / [Docs](https://diff.fish.audio) / [GitHub](https://github.com/fishaudio/fish-diffusion) * [Fish Diffusion](https://github.com/fishaudio/fish-diffusion)
* [Audio-WebUI](https://github.com/gitmylo/audio-webui) * [Audio-WebUI](https://github.com/gitmylo/audio-webui)
* [Vanilla Voice](https://www.vanillavoice.com/) * [Vanilla Voice](https://www.vanillavoice.com/)
* [Sam](https://discordier.github.io/sam/), [2](https://simulationcorner.net/index.php?page=sam) / [BetterSam](https://imrane03.github.io/better-sam/) * [Sam](https://discordier.github.io/sam/), [2](https://simulationcorner.net/index.php?page=sam) / [BetterSam](https://imrane03.github.io/better-sam/)
@ -423,15 +338,17 @@
## ▷ Voice Change / Clone ## ▷ Voice Change / Clone
* ⭐ **[Applio](https://github.com/IAHispano/Applio-RVC-Fork)** - Voice Cloning / [Discord](https://discord.com/invite/iahispano) / [Playground](https://applio.org/playground) * ⭐ **[RVC](https://github.com/IAHispano/Applio-RVC-Fork)** - Voice Cloning / [AI Hub's Documentation](https://docs.aihub.wtf/)
* ⭐ **[weights.gg](https://www.weights.gg/) / [Discord](https://discord.gg/aihub)** - AI Voice Models and Guides * ⭐ **[RVC HFv2](https://huggingface.co/spaces/r3gm/RVC_HFv2)** - Voice Cloning
* ⭐ **[RVC V2](https://github.com/RVC-Project/Retrieval-based-Voice-Conversion-WebUI/blob/main/docs/en/README.en.md)** - RVC V2 Voice Cloning (locally) * ⭐ **[weights.gg](https://www.weights.gg/) / [Discord](https://discord.gg/A5rgNwDRd4) or [AI Hub](https://discord.gg/aihub)** - AI Voice Models and Guides
* ⭐ **[voice-changer](https://github.com/w-okada/voice-changer)** - Realtime Voice Changer (W-Okada) - [Guide](https://rentry.co/VoiceChangerGuide) * ⭐ **[Replay](https://www.tryreplay.io/)** - RVC Desktop App
* ⭐ **[Ilaria RVC](https://huggingface.co/spaces/TheStinger/Ilaria_RVC)** - RVC V2 Voice Cloning (Cloud/Colab) * ⭐ **[voice-changer](https://github.com/w-okada/voice-changer)** - Realtime Voice Changer
* [Replay](https://www.tryreplay.io/) - RVC Desktop App * [NeuralSVB](https://github.com/MoonInTheRiver/NeuralSVB) - Singing Voice Enhancer
* [Bark with Voice Clone](https://huggingface.co/spaces/kevinwang676/Bark-with-Voice-Cloning) - Voice Cloning * [Ilaria RVC](https://huggingface.co/spaces/TheStinger/Ilaria_RVC) - Voice Cloning
* [RVC_HFv2](https://huggingface.co/spaces/r3gm/RVC_HFv2) - Voice Cloning * [Bark w/ Voice Clone](https://huggingface.co/spaces/kevinwang676/Bark-with-Voice-Cloning) - Voice Cloning
* [RVC Docs](https://docs.aihub.wtf/) - RVC AI Documentation * [Kits.ai](https://www.kits.ai/) - Voice Cloning
* [Retrieval-based-Voice-Conversion](https://github.com/RVC-Project/Retrieval-based-Voice-Conversion-WebUI)
* [OpenVoice](https://github.com/myshell-ai/OpenVoice) - Voice Cloning / [Web UI](https://huggingface.co/spaces/myshell-ai/OpenVoice)
*** ***

1146
docs/android-ios.md Normal file

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -5,17 +5,20 @@
[TOC2] [TOC2]
*** ***
### FAQ ### FAQ
> How can I improve my privacy online? > How can I tell if a site or download link is safe? Any tips?
We'd recommend checking out privacy guides like [SSD](https://ssd.eff.org/) and [The New Oil](https://thenewoil.org/). Check out the [Booty Guard](https://rentry.org/bootyguard), our basic safety guide. You should also avoid using the sites / software we've listed as unsafe [here](https://fmhy.net/unsafesites). Still feel unsure? Feel free to reach out to us via [Discord](https://discord.gg/5W9QJKuPkD).
> I don't know what seeding or *insert another term* means... > I don't know what seeding or *insert another term* means...
You will find almost all terms related to piracy and more in [The Piracy Glossary](https://rentry.org/the-piracy-glossary). Didn't find what you're looking for or still confused? Reach out to us via [Discord](https://discord.gg/5W9QJKuPkD). You will find almost all terms related to piracy and more in [The Piracy Glossary](https://rentry.org/the-piracy-glossary). Didn't find what you're looking for or still confused? Reach out to us via [Discord](https://discord.gg/5W9QJKuPkD).
> How can I download Photoshop / Adobe Products for free?
You can download pre-cracked Adobe products from [M0nkrus](https://w14.monkrus.ws/) by following [this guide](https://rentry.co/adobesoftware). Alternatively, you could patch them yourself by following [these guides](https://www.reddit.com/r/GenP/wiki/index/) / [2](https://genpguides.github.io/).
!!!info M0nkrus is a well-trusted and reputable source for Adobe software in the piracy community.
> How can I download / activate Windows or Microsoft Office for free? > How can I download / activate Windows or Microsoft Office for free?
For Windows check out this [section](#windows-piracy), and for Microsoft Office check out this [guide](https://gravesoft.dev/download_windows_office/office_c2r_links/). For Windows check out this [section](#windows-piracy), and for Microsoft Office check out this [guide](https://massgrave.dev/office_c2r_links.html).
> Where can I find *insert game title / movie title*? > Where can I find *insert game title / movie title*?
You can use [WhereYouWatch](https://whereyouwatch.com) for finding movies, and for new movies it's a good idea to keep an eye on [r/movieleaks](https://reddit.com/r/movieleaks) as well. You should also be able to find most movies you're looking for in the [streaming section](#streaming). For games, you can use [Rezi](https://rezi.one) or any other site listed [here](https://fmhy.net/gamingpiracyguide#download-games), and for newly released games check out [r/crackwatch](https://reddit.com/r/crackwatch). You can use [WhereYouWatch](https://whereyouwatch.com) for finding movies, and for new movies it's a good idea to keep an eye on [r/movieleaks](https://reddit.com/r/movieleaks) as well. You should also be able to find most movies you're looking for in the [streaming section](#streaming). For games, you can use [Rezi](https://rezi.one) or any other site listed [here](https://fmhy.net/gamingpiracyguide#download-games), and for newly released games check out [r/crackwatch](https://reddit.com/r/crackwatch).
@ -31,25 +34,26 @@ No, don't do that. Windows Defender is more than enough to keep you safe, but if
!!!warning Stay away from Avast, Norton, and McAfee, as these are "bloatware" and generally unsafe software. !!!warning Stay away from Avast, Norton, and McAfee, as these are "bloatware" and generally unsafe software.
> How can I bypass a paywalled article? > How can I bypass a paywalled article?
Use this [browser extension](https://github.com/bpc-clone/bpc_updates/releases) / [filter list](https://github.com/bpc-clone/bypass-paywalls-clean-filters) to read the article easily. Use [this](https://bitbucket.org/magnolia1234/bypass-paywalls-firefox-clean/src/master/) / [2](https://gitlab.com/magnolia1234/bypass-paywalls-chrome-clean) to read the article easily.
> How can I download an image from *insert stock image site*? > How can I download an image from *insert stock image site*?
You can use [this downloader](https://downloader.la/), and if it doesn't work you can find other stock image downloaders [here](https://fmhy.net/img-tools#stock-photos). You can use [this downloader](https://downloader.la/), and if it doesn't work you can find other stock image downloaders [here](https://fmhy.net/img-tools#stock-photos).
*** ***
### Windows Piracy ### Windows Piracy
**[Windows ISOs](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/system-tools#wiki_.25BA_windows_isos)** - Download Windows **[Windows ISOs](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/system-tools#wiki_.25BA_windows_isos)** - Download Windows
**[Windows Activation](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/system-tools#wiki_.25B7_windows_activation)** - Activate Windows **[Windows Activation](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/system-tools#wiki_.25B7_windows_activation)** - Activate Windows
**[Windows Piracy Guide](https://rentry.org/windows_piracy)** - How to Pirate windows
*** ***
### Linux Piracy ### Linux Piracy
**[Linux Distros](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/linux#wiki_.25BA_linux_distros)** - Download Linux Distros **[Linux Distros](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_linux_distros)** - Download Linux Distros
**[Linux Gaming Guide](https://github.com/rimsiw/linux-gaming-omg)** - Piracy Guide for Linux **[Linux Piracy](https://rentry.co/LinuxPiracy) / [Linux Gaming Guide](https://github.com/rimsiw/linux-gaming-omg)** - Piracy Guide for Linux
**[Torrminatorr](https://forum.torrminatorr.com/)** / **[Kapital Sin](https://kapitalsin.com/)** - Download Linux Games **[Torrminatorr](https://forum.torrminatorr.com/) / [Kapital Sin](https://kapitalsin.com/)** - Download Linux Games
**[TorrFlix](https://github.com/infinity-plus/TorrFlix)** - Torrent Streaming CLI
**[ani-cli](https://github.com/pystardust/ani-cli)** - Anime Streaming Terminal **[ani-cli](https://github.com/pystardust/ani-cli)** - Anime Streaming Terminal
*** ***
@ -82,14 +86,14 @@ Use this [browser extension](https://github.com/bpc-clone/bpc_updates/releases)
**[Twitch Adblockers](https://fmhy.net/social-media-tools#twitch-adblockers)** - Block Twitch ads **[Twitch Adblockers](https://fmhy.net/social-media-tools#twitch-adblockers)** - Block Twitch ads
**[Redirect Skippers](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/adblock-vpn-privacy#wiki_.25B7_redirect_bypass)** - Bypass redirect sites **[Redirect Skippers](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/adblock-vpn-privacy#wiki_.25B7_redirect_bypass)** - Bypass redirect sites
!!!note Don't run multiple general adblockers like ublock and adblock plus at the same time. Running more than one can [cause breakage](https://twitter.com/gorhill/status/1033706103782170625). This only applies to general adblockers, so running things like ublock and sponsorblock at the same time is fine. !!!note Don't run multiple general adblockers like ublock and adblock plus at the same time. Running more than one can cause breakage. This only applies to general adblockers, so running things like ublock and sponsorblock at the same time is fine.
*** ***
### Anti-virus ### Anti-virus
**[VirusTotal](https://www.virustotal.com)** - Test the safety of files **[VirusTotal](https://www.virustotal.com) / [Kaspersky Cloud](https://opentip.kaspersky.com/)** - Test the safety of files
**[VTGuide](https://rentry.co/VTGuide)** - Virus scan results guide **[Guide for VirusTotal](https://rentry.org/Guide4VirusTotal)** - Virus scan results guide
**[Malwarebytes Premium](https://rentry.co/FMHYBase64#malwarebytes-prem)** - Antivirus software **[Malwarebytes Premium](https://rentry.co/FMHYBase64#malwarebytes-prem)** - Antivirus software
!!!note Antivirus software is usually bloatware. Stick to trusted sources for games and software and you will be fine with nothing but Windows Defender and an occasional Malwarebytes scan. Remember to always scan software before installing it with tools like **[VirusTotal](https://www.virustotal.com/)** or use it in **[Sandboxie](https://rentry.co/sandboxie-guide)**. !!!note Antivirus software is usually bloatware. Stick to trusted sources for games and software and you will be fine with nothing but Windows Defender and an occasional Malwarebytes scan. Remember to always scan software before installing it with tools like **[VirusTotal](https://www.virustotal.com/)** or use it in **[Sandboxie](https://rentry.co/sandboxie-guide)**.
@ -100,12 +104,13 @@ Use this [browser extension](https://github.com/bpc-clone/bpc_updates/releases)
**[Privacy Guides](https://www.privacyguides.org/)** - Privacy guides **[Privacy Guides](https://www.privacyguides.org/)** - Privacy guides
**[DuckDuckGo](https://duckduckgo.com/) / [Mojeek](https://www.mojeek.com/)** - Tracker-free web search **[DuckDuckGo](https://duckduckgo.com/) / [Mojeek](https://www.mojeek.com/)** - Tracker-free web search
**[ProtonMail](https://proton.me/mail)** - Encrypted email service **[ProtonMail](https://protonmail.com/)** - Encrypted email service
**[Email Privacy](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/adblock-vpn-privacy#wiki_.25B7_email_privacy)** - Email privacy resources **[Email Aliasing](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_email_aliasing)** - Email alias forwarding
**[Aegis](https://getaegis.app/) / [Ente](https://github.com/ente-io/auth/)** - 2FA to prevent logins without user authentication **[Aegis](https://getaegis.app/) / [Ente](https://github.com/ente-io/auth/)** - 2FA to prevent logins without user authentication
**[Password Managers](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/internet-tools#wiki_.25B7_password_managers)** - Save multiple passwords **[Password Managers](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/internet-tools#wiki_.25B7_password_managers)** - Save multiple passwords
**[HaveIBeenPwned](https://haveibeenpwned.com/)** - Get notified when your email or phone number has been found in a data breach **[HaveIBeenPwned](https://haveibeenpwned.com/)** - Get notified when your email or phone number has been found in a data breach
**[VPN List](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/adblock-vpn-privacy#wiki_.25BA_vpn)** - VPN index **[VPN List](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/adblock-vpn-privacy#wiki_.25BA_vpn)** - VPN index
**[File Encryption Tools](https://fmhy.pages.dev/storage/#file-encryption-tools)** - File encryption apps / tools
!!!note Note that a VPN is not needed outside torrenting. You can avoid the need for one altogether by sticking to direct download and streaming sites. !!!note Note that a VPN is not needed outside torrenting. You can avoid the need for one altogether by sticking to direct download and streaming sites.
@ -113,11 +118,11 @@ Use this [browser extension](https://github.com/bpc-clone/bpc_updates/releases)
### Streaming ### Streaming
**[movie-web](https://erynith.github.io/movie-web-instances/) + [Add Sources](https://pastebin.com/RHXHtXJZ) / [Braflix](https://www.braflix.ru/) / [watch.lonelil](https://watch.lonelil.ru/) / [FMovies](https://fmovies24.to/) / [Binged](https://binged.live/)** - Fast movie / TV streaming **[lonelil](https://watch.lonelil.com/) / [Braflix](https://www.braflix.app/) / [FMovies](https://fmoviesz.to/)** - Fast movie / TV streaming
**[HiAnime](https://hianime.to/)** - Fast anime streaming **[AniWatch](https://aniwatch.to/) / [AniWave](https://aniwave.to/)** - Fast anime streaming
**[Dramacool](https://dramacool.cy/)** - Fast Asian drama streaming **[Dramacool](https://dramacool.cy/)** - Fast Asian drama streaming
**[SportsSurge](https://v2.sportsurge.net/home4/)** - Live sports streaming **[SportsSurge](https://sportsurge.net/)** - Live sports streaming
**[Spotify](https://spotify.com/) / [YouTube Music](https://music.youtube.com/)** - Music & podcast streaming / [Spotify Adblock](https://github.com/SpotX-Official/SpotX) **[Spotify](https://spotify.com/) / [YouTube Music](https://music.youtube.com/)** - Music & podcast streaming / [Spotify Adblock](https://github.com/amd64fox/SpotX)
**[Streaming CSE](https://cse.google.com/cse?cx=006516753008110874046:cfdhwy9o57g##gsc.tab=0)**, [2](https://cse.google.com/cse?cx=006516753008110874046:o0mf6t-ugea##gsc.tab=0), [3](https://cse.google.com/cse?cx=98916addbaef8b4b6), [4](https://cse.google.com/cse?cx=0199ade0b25835f2e) - Multi-Site Search **[Streaming CSE](https://cse.google.com/cse?cx=006516753008110874046:cfdhwy9o57g##gsc.tab=0)**, [2](https://cse.google.com/cse?cx=006516753008110874046:o0mf6t-ugea##gsc.tab=0), [3](https://cse.google.com/cse?cx=98916addbaef8b4b6), [4](https://cse.google.com/cse?cx=0199ade0b25835f2e) - Multi-Site Search
**[TV CSE](https://cse.google.com/cse?cx=006516753008110874046:hrhinud6efg)** - Multi-site TV search **[TV CSE](https://cse.google.com/cse?cx=006516753008110874046:hrhinud6efg)** - Multi-site TV search
**[Anime Streaming CSE](https://cse.google.com/cse?cx=006516753008110874046:vzcl7wcfhei) / [2](https://cse.google.com/cse?cx=006516753008110874046:mrfarx7-dxu)** - Multi-site anime search **[Anime Streaming CSE](https://cse.google.com/cse?cx=006516753008110874046:vzcl7wcfhei) / [2](https://cse.google.com/cse?cx=006516753008110874046:mrfarx7-dxu)** - Multi-site anime search
@ -127,19 +132,20 @@ Use this [browser extension](https://github.com/bpc-clone/bpc_updates/releases)
### Downloading ### Downloading
**[LRepacks](https://lrepacks.net/) / [CRACKSurl](https://cracksurl.com/) / [M0nkrus](https://w14.monkrus.ws/)** - Trusted software sites **[LRepacks](https://lrepacks.net/)** or **[CRACKSurl](https://cracksurl.com/)** - Trusted software sites
**[Pahe](https://pahe.ink/)** - Fast video downloads **[OlaMovies](https://olamovies.bar/)** - Fast video downloads
**[FitGirl Repacks](https://fitgirl-repacks.site/)** / [Discord](https://discord.gg/Up3YARe4RW) / **[SteamRIP](https://steamrip.com/)** - Game download sites **[FitGirl Repacks](https://fitgirl-repacks.site/) / [SteamRIP](https://steamrip.com/) / [GOG-Games](https://gog-games.to/)** - Game download sites / [FitGirl Discord](https://discord.gg/Up3YARe4RW)
**[Vimms Lair](https://vimm.net/) / [No-Intro](https://rentry.co/FMHYBase64#no-intro)** - ROM download sites / [Emulators](https://emulation.gametechwiki.com/)
**[Firehawk52](https://rentry.org/firehawk52)** - Music ripping guide **[Firehawk52](https://rentry.org/firehawk52)** - Music ripping guide
**[lucida](https://lucida.to/) / [DoubleDouble](https://doubledouble.top/)** - Multi-Site audio download **[DoubleDouble](https://doubledouble.top/)** - Multi-Site audio download
**[Free MP3 Download](https://free-mp3-download.net/)** - MP3 / FLAC downloads
**[Soulseek](https://slsknet.org/)** or [Nicotine+](https://nicotine-plus.org/) - Audio download app **[Soulseek](https://slsknet.org/)** or [Nicotine+](https://nicotine-plus.org/) - Audio download app
**[squid.wtf](https://squid.wtf/)** - Deezer FLAC download
**[Download CSE](https://cse.google.com/cse?cx=006516753008110874046:1ugcdt3vo7z) / [2](https://cse.google.com/cse?cx=006516753008110874046:reodoskmj7h)** - Multi-site download search **[Download CSE](https://cse.google.com/cse?cx=006516753008110874046:1ugcdt3vo7z) / [2](https://cse.google.com/cse?cx=006516753008110874046:reodoskmj7h)** - Multi-site download search
**[Video Download CSE](https://cse.google.com/cse?cx=006516753008110874046:wevn3lkn9rr#gsc.tab=0) / [2](https://cse.google.com/cse?cx=89f2dfcea452fc451) / [3](https://cse.google.com/cse?cx=aab218d0aa53e3578#gsc.tab=0)** - Multi-site video download search **[Video Download CSE](https://cse.google.com/cse?cx=006516753008110874046:wevn3lkn9rr#gsc.tab=0) / [2](https://cse.google.com/cse?cx=89f2dfcea452fc451) / [3](https://cse.google.com/cse?cx=aab218d0aa53e3578#gsc.tab=0)** - Multi-site video download search
**[Anime Download CSE](https://cse.google.com/cse?cx=006516753008110874046:osnah6w0yw8)** - Multi-site anime download search **[Anime Download CSE](https://cse.google.com/cse?cx=006516753008110874046:osnah6w0yw8)** - Multi-site anime download search
**[Game Download CSE](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_game_download_cse)** - Multi-site game download search **[Game Download CSE](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_game_download_cse)** - Multi-site game download search
**[Audio Download CSE](https://cse.google.com/cse?cx=006516753008110874046:ibmyuhh72io) / [2](https://cse.google.com/cse?cx=006516753008110874046:ohobg3wvr_w) / [3](https://cse.google.com/cse?cx=aab218d0aa53e3578)** - Multi-site audio download search **[Audio Download CSE](https://cse.google.com/cse?cx=006516753008110874046:ibmyuhh72io) / [2](https://cse.google.com/cse?cx=006516753008110874046:ohobg3wvr_w) / [3](https://cse.google.com/cse?cx=aab218d0aa53e3578)** - Multi-site audio download search
!!!note When using DDLs, it's generally recommended to use a download manager such as JDownloader, as they improve the ease of downloading along with the speed. You can find them listed [here](https://fmhy.net/file-tools#download-managers). !!!note When using DDLs, it's generally recommended to use a download manager such as Internet Download Manager (IDM) or JDownloader, as they improve the ease of downloading along with the speed. You can find them listed [here](https://fmhy.net/file-tools#download-managers).
*** ***
### Torrenting ### Torrenting
@ -161,8 +167,8 @@ Use this [browser extension](https://github.com/bpc-clone/bpc_updates/releases)
### Reading ### Reading
**[Mobilism](https://forum.mobilism.org) / [Library Genesis](https://libgen.rs/) / [Z-Library](https://singlelogin.re/) / [Annas Archive](https://annas-archive.gs/)** / [2](https://annas-archive.se/) - Books, audiobooks, comics & more **[Mobilism](https://forum.mobilism.org) / [Library Genesis](https://libgen.rs/) / [Z-Library](https://singlelogin.re/) / [Annas Archive](https://annas-archive.org/)** - Books, audiobooks, comics & more
**[Audiobook Bay](https://audiobookbay.is/)** - Audiobook torrents / **Avoid fake DL links, use [Torrents / Magnets](https://i.ibb.co/8sV2061/0fa8159b11bb.png)** **[Audiobook Bay](https://audiobookbay.is/)** - Audiobook torrents / Avoid fake DL links, use [Torrents / Magnets](https://i.ibb.co/8sV2061/0fa8159b11bb.png)
**[ReadComicsOnline](https://readcomiconline.li/)** - Read comics online **[ReadComicsOnline](https://readcomiconline.li/)** - Read comics online
**[MangaReader](https://mangareader.to/)** - Read manga online **[MangaReader](https://mangareader.to/)** - Read manga online
**[Reading CSE](https://cse.google.com/cse?cx=006516753008110874046:s9ddesylrm8) / [2](https://cse.google.com/cse?cx=006516753008110874046:rc855wetniu) / [3](https://cse.google.com/cse?cx=e9657e69c76480cb8) / [4](https://cse.google.com/cse?cx=c46414ccb6a943e39) / [5](https://ravebooksearch.com/)** - Multi-site book search **[Reading CSE](https://cse.google.com/cse?cx=006516753008110874046:s9ddesylrm8) / [2](https://cse.google.com/cse?cx=006516753008110874046:rc855wetniu) / [3](https://cse.google.com/cse?cx=e9657e69c76480cb8) / [4](https://cse.google.com/cse?cx=c46414ccb6a943e39) / [5](https://ravebooksearch.com/)** - Multi-site book search
@ -178,15 +184,16 @@ Use this [browser extension](https://github.com/bpc-clone/bpc_updates/releases)
**[Android AdGuard Premium](https://rentry.co/FMHYBase64#adguard-premium)** / **[iOS AdGuard Premium](https://rentry.co/FMHYBase64#adguard-pro-ios)** - Adblocking app **[Android AdGuard Premium](https://rentry.co/FMHYBase64#adguard-premium)** / **[iOS AdGuard Premium](https://rentry.co/FMHYBase64#adguard-pro-ios)** - Adblocking app
**[Android Modded Spotify](https://rentry.co/FMHYBase64#modded-spotify-apk)** / **[iOS Modded Spotify](https://rentry.co/FMHYBase64#spotify)** - Modded Spotify **[Android Modded Spotify](https://rentry.co/FMHYBase64#modded-spotify-apk)** / **[iOS Modded Spotify](https://rentry.co/FMHYBase64#spotify)** - Modded Spotify
**[Cromite](https://github.com/uazo/cromite) / [Firefox](https://www.mozilla.org/en-US/firefox/browsers/mobile/android/) / [Kiwi](https://play.google.com/store/apps/details?id=com.kiwibrowser.browser&hl=en_US&gl=US)** - Android web browsers **[Cromite](https://github.com/uazo/cromite) / [Firefox](https://www.mozilla.org/en-US/firefox/browsers/mobile/android/) / [Kiwi](https://play.google.com/store/apps/details?id=com.kiwibrowser.browser&hl=en_US&gl=US)** - Android web browsers
**[Brave](https://apps.apple.com/us/app/brave-private-web-browser-vpn/id1052879175)** - iOS web browser / [Improve Safari](https://apps.apple.com/us/app/hyperweb/id1581824571)
**[Mobilism](https://forum.mobilism.org/viewforum.php?f=398)** - Modded APKs **[Mobilism](https://forum.mobilism.org/viewforum.php?f=398)** - Modded APKs
**[/r/ApkApps Megathread](https://apksapps.notion.site/apksapps/096ef38f452342ba99b4e1509a449729?v=9970360b443643789c333bd2c7180009)** - Updated list of modded APKs / [Subreddit](https://www.reddit.com/r/ApksApps) / [Discord](https://discord.gg/Kr5EWKZU5Y) **[/r/ApkApps Megathread](https://apksapps.notion.site/apksapps/096ef38f452342ba99b4e1509a449729?v=9970360b443643789c333bd2c7180009)** - Updated list of modded APKs / [Subreddit](https://www.reddit.com/r/ApksApps) / [Discord](https://discord.gg/Kr5EWKZU5Y)
**[APKMirror](https://www.apkmirror.com/)** - Untouched APKs **[APKMirror](https://www.apkmirror.com/)** - Untouched APKs
**[F-Droid](https://f-droid.org/)** - FOSS Android Apps **[F-Droid](https://f-droid.org/)** - FOSS Android Apps
**[Android APK CSE](https://cse.google.com/cse?cx=e0d1769ccf74236e8) / [2](https://cse.google.com/cse?cx=73948689c2c206528) / [3](https://cse.google.com/cse?cx=a805854b6a196d6a6)** - Multi-site APK search **[Android APK CSE](https://cse.google.com/cse?cx=e0d1769ccf74236e8) / [2](https://cse.google.com/cse?cx=73948689c2c206528) / [3](https://cse.google.com/cse?cx=a805854b6a196d6a6)** - Multi-site APK search
**[Stremio](https://www.stremio.com/)** - Video streaming app / Use VPN / [Guide](https://rentry.co/privatestremio) **[Stremio](https://www.stremio.com/)** - Video streaming app / Use VPN
**[Patch Reddit Clients](https://docs.google.com/document/u/0/d/1wHvqQwCYdJrQg4BKlGIVDLksPN0KpOnJWniT6PbZSrI/mobilebasic)** - How To Patch 3rd Party Reddit Clients **[Patch Reddit Clients](https://docs.google.com/document/u/0/d/1wHvqQwCYdJrQg4BKlGIVDLksPN0KpOnJWniT6PbZSrI/mobilebasic)** - How To Patch 3rd Party Reddit Clients
**[ReVanced Manager](https://github.com/revanced/revanced-manager)** - Ad-Free YouTube, Reddit, X etc. Patcher / [Discord](https://discord.com/invite/rF2YcEjcrT) / [Guide](https://redd.it/xlcny9) **[ReVanced Manager](https://github.com/revanced/revanced-manager)** - Ad-free YouTube / [Discord](https://discord.com/invite/rF2YcEjcrT)
**[Complete Jailbreak Chart](https://ios.cfw.guide/)** - Jailbreaking info & tools **[Complete Jailbreak Chart](https://appledb.dev/)** - Jailbreaking info & tools / [Discord](https://discord.gg/rtfNDxnJfB)
*** ***
@ -199,6 +206,7 @@ Use this [browser extension](https://github.com/bpc-clone/bpc_updates/releases)
**[Download Managers](https://fmhy.net/file-tools#download-managers)** - Manage file downloads **[Download Managers](https://fmhy.net/file-tools#download-managers)** - Manage file downloads
**[File Archivers](https://fmhy.net/file-tools#file-archivers)** - Unzip / Compress files **[File Archivers](https://fmhy.net/file-tools#file-archivers)** - Unzip / Compress files
**[OpenSubtitles](https://opensubtitles.org/)** - Most popular subtitles site **[OpenSubtitles](https://opensubtitles.org/)** - Most popular subtitles site
**[HolyUnblocker](https://www.holyubofficial.net/)** - View sites blocked by ISP / school
**[Unsafe Sites / Software](https://redd.it/10bh0h9)** - Things we recommend avoiding **[Unsafe Sites / Software](https://redd.it/10bh0h9)** - Things we recommend avoiding
*** ***

View File

@ -6,20 +6,24 @@
# ► Download Directories # ► Download Directories
* **Note** - Some Open Directories grab IP's, so use a VPN or Tor when accessing them. **Note** - Some Open Directories grab IP's, so use a VPN or Tor when accessing them.
*** ***
* 🌐 **[/r/opendirectories](https://www.reddit.com/r/opendirectories/)** - Open Directories Subreddit / [Telegram](https://t.me/r_OpenDirectories) / [/u/ODScanner](https://reddit.com/u/ODScanner) * 🌐 **[/r/opendirectories](https://www.reddit.com/r/opendirectories/)** - Open Directories Subreddit / [Telegram](https://t.me/r_OpenDirectories) / [/u/ODScanner](https://reddit.com/u/ODScanner)
* 🌐 **[smolOD](https://rentry.co/FMHYBase64#smolod)** - Small Open Directories
* ↪️ **[Open Directory Indexes](https://rentry.co/FMHYBase64#open-directory-indexes)**
* ↪️ **[Open Directory Search String Builders](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_open_directory_search_string_builder)**, [2](https://redd.it/933pzm), [3](https://redd.it/g4kfem), [4](https://redd.it/lj0a1e) * ↪️ **[Open Directory Search String Builders](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_open_directory_search_string_builder)**, [2](https://redd.it/933pzm), [3](https://redd.it/g4kfem), [4](https://redd.it/lj0a1e)
* ↪️ **[Google Piracy Groups](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_google_piracy_discussion_groups)** * ↪️ **[Google Piracy Groups](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_google_piracy_discussion_groups)**
* ⭐ **[Directory Lister](https://directorylister.com/)** - Open Directory Explorer * ⭐ **[Directory Lister](https://directorylister.com/)** - Open Directory Explorer
* ⭐ **[EyeDex](https://www.eyedex.org/)**, [ODCrawler](https://odcrawler.xyz/), [ODS](https://sites.google.com/view/l33tech/tools/ods) or [mmnt](https://www.mmnt.net/) - Open Directory Search Engines * ⭐ **[EyeDex](https://www.eyedex.org/)**, [ODCrawler](https://odcrawler.xyz/), [OpenSho](https://opendirindex.opensho.com/), [ODS](https://sites.google.com/view/l33tech/tools/ods) or [mmnt](https://www.mmnt.net/) - Open Directory Search Engines
* [mega.archive (Discord)](https://discord.gg/R3zEZUPp3Q) / [Chat](https://discord.gg/ZRhpUtzvkC) - Megadrive Archive * ⭐ **[TG Archive](https://tgarchive.eu.org/)** - Telegram File Search
* [mega.archive](https://discord.gg/R3zEZUPp3Q) / [Chat](https://discord.gg/ZRhpUtzvkC) - Megadrive Archive
* [GDrive Server](https://telegra.ph/GDrive-Server-Direct-Links-06-28) * [GDrive Server](https://telegra.ph/GDrive-Server-Direct-Links-06-28)
* [Napalm FTP](https://www.searchftps.net/), [Mamont](https://www.mmnt.ru/int/) or [Search-22](https://search-22.com/ftp-search-tools) - FTP Search * [Napalm FTP](https://www.searchftps.net/), [Mamont](https://www.mmnt.ru/int/) or [Search-22](https://search-22.com/ftp-search-tools) - FTP Search
* [dedigger](https://www.dedigger.com/) - GDrive File Search * [dedigger](https://www.dedigger.com/) - GDrive File Search
* [Sala De Espera](https://matrix.to/#/!qbOtnJEDGsPuWZBHLX:matrix.org?via=matrix.org) - Drive Sharing Community * [Sala De Espera](https://matrix.to/#/!qbOtnJEDGsPuWZBHLX:matrix.org?via=matrix.org) / [Discord](https://discord.gg/ZRhpUtzvkC) - Drive Sharing Community
* [Create Open Directory Search Engine](https://redd.it/d3w2fu)
* [Open Directory Downloader](https://github.com/KoalaBear84/OpenDirectoryDownloader) - Open Directory Indexer * [Open Directory Downloader](https://github.com/KoalaBear84/OpenDirectoryDownloader) - Open Directory Indexer
* [Pastebin CSE](https://cse.google.com/cse?cx=0cd79b819f26af9d0) - Search Pastebin Directories * [Pastebin CSE](https://cse.google.com/cse?cx=0cd79b819f26af9d0) - Search Pastebin Directories
* [CD.TextFiles](http://cd.textfiles.com/) - CD Text File Archive * [CD.TextFiles](http://cd.textfiles.com/) - CD Text File Archive
@ -29,19 +33,19 @@
# ► Download Sites # ► Download Sites
* **Note** - General DDL sites use a lot of different sources, so it's best to avoid them for anything you install, like software, games or APKs. You can also use **[redirect bypassers](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/adblock-vpn-privacy#wiki_.25B7_redirect_bypass)** to skip link shorteners. **Note** - General DDL sites use a lot of different sources, so it's best to avoid them for anything you install, like software, games or APKs. You can also use **[redirect bypassers](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/adblock-vpn-privacy#wiki_.25B7_redirect_bypass)** to skip link shorteners.
*** ***
* ⭐ **[Archive.org](https://archive.org/)** - Video / Audio / Magazines / Newspapers / ROMs / [Downloader](https://github.com/MiniGlome/Archive.org-Downloader) / [CLI](https://github.com/jjjake/internetarchive) * ⭐ **[Archive.org](https://archive.org/)** - Video / Audio / Magazines / Newspapers / ROMs / [Downloader](https://github.com/MiniGlome/Archive.org-Downloader) / [CLI](https://github.com/jjjake/internetarchive)
* ⭐ **[The Eye](https://beta.the-eye.eu/)** - Audio / Books / Comics / Magazines / [Discord](https://discord.com/invite/the-eye) * ⭐ **[The Eye](https://beta.the-eye.eu/)** - Audio / Books / Comics / Magazines / [Discord](https://discord.com/invite/the-eye)
* ⭐ **[DownloadHa](https://www.downloadha.com)** - Video / Use [Translator](https://addons.mozilla.org/en-US/firefox/addon/traduzir-paginas-web/)
* ⭐ **[DirtyWarez](https://forum.dirtywarez.com/)** - Video / Audio / Books / Comics * ⭐ **[DirtyWarez](https://forum.dirtywarez.com/)** - Video / Audio / Books / Comics
* ⭐ **[/r/DataHoarder](https://reddit.com/r/DataHoarder)**, [Data Horde](https://datahorde.org/), [Archive Team](https://wiki.archiveteam.org/) / [Subreddit](https://www.reddit.com/r/Archiveteam/), [Gnutella Forums](https://www.gnutellaforums.com/) or [FileSharingTalk](https://filesharingtalk.com/forum.php) - File Hoarding Forums * ⭐ **[/r/DataHoarder](https://reddit.com/r/DataHoarder)**, [Data Horde](https://datahorde.org/), [Archive Team](https://wiki.archiveteam.org/) / [Subreddit](https://www.reddit.com/r/Archiveteam/), [Gnutella Forums](https://www.gnutellaforums.com/) or [FileSharingTalk](https://filesharingtalk.com/forum.php) - File Hoarding Forums
* [WorldSRC](https://www.worldsrc.net/) - Video / Audio / [Donate](https://www.worldsrc.net/service_end) * [WorldSRC](https://www.worldsrc.net/) - Video / Audio / [Donate](https://www.worldsrc.net/service_end)
* [WarezForums](https://warezforums.com/) - Video / Audio / ROMs / Books / Comics * [WarezForums](https://warezforums.com/) - Video / Audio / ROMs / Books / Comics
* [rlsbb](https://rlsbb.ru/), [2](https://rlsbb.to/), [3](https://comment.rlsbb.cc/) - Video / Audio / Books / Magazines / [Track Shows](https://openuserjs.org/scripts/drdre1/ReleaseBB_rlsbb_TV_Show_Tracker) * [rlsbb](https://rlsbb.ru/), [2](https://rlsbb.to/), [3](https://comment.rlsbb.cc/) - Video / Audio / Books / Magazines / [Track Shows](https://openuserjs.org/scripts/drdre1/ReleaseBB_rlsbb_TV_Show_Tracker)
* [Adit-HD](https://www.adit-hd.com/) - Video / Audio / Books * [Adit-HD](https://www.adit-hd.com/) - Video / Audio / Books
* [AsanDL](http://asandl.com/) - Use [translator](https://addons.mozilla.org/en-US/firefox/addon/traduzir-paginas-web/)
* [Novanon](https://novanon.net/) - Video / Audio / Magazines / Comics / Books / Courses * [Novanon](https://novanon.net/) - Video / Audio / Magazines / Comics / Books / Courses
* [psychodownloads](https://psychodownloads.com/) - Video / Audio / ROMs / Books / Magazines / NSFW * [psychodownloads](https://psychodownloads.com/) - Video / Audio / ROMs / Books / Magazines / NSFW
* [Merlin Warez](https://merlinwz.com/) - Video / Audio / Books / Audiobooks / Comics / Magazines * [Merlin Warez](https://merlinwz.com/) - Video / Audio / Books / Audiobooks / Comics / Magazines
@ -87,7 +91,7 @@
## ▷ Search Sites ## ▷ Search Sites
* **Note** - These aggregate from multiple sources, so it's best to avoid them for software / games. **Note** - These aggregate from multiple sources, so it's best to avoid them for software / games.
*** ***
@ -95,13 +99,10 @@
* ⭐ **[FilePursuit](https://filepursuit.com)** - [Discord](https://discord.gg/xRfFd8h) * ⭐ **[FilePursuit](https://filepursuit.com)** - [Discord](https://discord.gg/xRfFd8h)
* ⭐ **[4Shared](https://www.4shared.com/)** * ⭐ **[4Shared](https://www.4shared.com/)**
* ⭐ **[Hatt](https://github.com/FrenchGithubUser/Hatt)** - File Search App * ⭐ **[Hatt](https://github.com/FrenchGithubUser/Hatt)** - File Search App
* [Meawfy](https://meawfy.com/) - Mega.nz Search
* [File Host Search](https://cse.google.com/cse?cx=90a35b59cee2a42e1) * [File Host Search](https://cse.google.com/cse?cx=90a35b59cee2a42e1)
* [scnlog](https://scnlog.me/) * [scnlog](https://scnlog.me/)
* [fidigger](https://fidigger.com/)
* [filesearch.link](https://filesearch.link/) * [filesearch.link](https://filesearch.link/)
* [Linktury](https://www.linktury.com/) * [Linktury](https://www.linktury.com/)
* [MediafireTrend](https://mediafiretrend.com/) - Mediafire Search
* [WarezOmen](https://warezomen.com/) - Indexer / Search Engine * [WarezOmen](https://warezomen.com/) - Indexer / Search Engine
* [SunXDCC](https://sunxdcc.com/) or [XDCC.EU](https://www.xdcc.eu/) - XDCC / Search Engine * [SunXDCC](https://sunxdcc.com/) or [XDCC.EU](https://www.xdcc.eu/) - XDCC / Search Engine
* [Find Rare Files Online](https://forums.lostmediawiki.com/thread/10861/find-rare-files-online) - How-to Find Rare Files * [Find Rare Files Online](https://forums.lostmediawiki.com/thread/10861/find-rare-files-online) - How-to Find Rare Files
@ -130,59 +131,80 @@
# ► Software Sites # ► Software Sites
* **Note** - Remember to always scan software before installing with tools like **[VirusTotal](https://www.virustotal.com/)** or use it in **[Sandboxie](https://rentry.co/sandboxie-guide)**. **Note** - Remember to always scan software before installing with tools like **[VirusTotal](https://www.virustotal.com/)** or use it in **[Sandboxie](https://rentry.co/sandboxie-guide)**.
*** ***
* ↪️ **[Windows ISOs / Activation](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/system-tools#wiki_.25BA_windows_isos)**
* ⭐ **[LRepacks](https://lrepacks.net/)** * ⭐ **[LRepacks](https://lrepacks.net/)**
* ⭐ **[CRACKSurl](https://cracksurl.com/)** - [Telegram](https://t.me/cracksurldotcom) * ⭐ **[CRACKSurl](https://cracksurl.com/)** - [Telegram](https://t.me/cracksurldotcom)
* ⭐ **[Mobilism](https://forum.mobilism.org/)** - [Mobile App](https://forum.mobilism.org/app/) * ⭐ **[Mobilism](https://forum.mobilism.org/)** - [Mobile App](https://forum.mobilism.org/app/)
* ⭐ **[soft98](https://soft98.ir/)** - Use [translator](https://addons.mozilla.org/en-US/firefox/addon/traduzir-paginas-web/) * ⭐ **[nsane.down](https://www.nsaneforums.com/)** - Signup Required
* ⭐ **[Game Bounty Software](https://gamebounty.world/software/)** - Download / [Discord](https://dsc.gg/gamebounty)
* ⭐ **[Nsane Forums](https://www.nsaneforums.com/)** - Signup Required
* ⭐ **[Software CSE](https://cse.google.com/cse?cx=ae17d0c72fa6cbcd4)** - Multi-Site Software Search * ⭐ **[Software CSE](https://cse.google.com/cse?cx=ae17d0c72fa6cbcd4)** - Multi-Site Software Search
* [AIOWares](https://www.aiowares.com/) * [AIOWares](https://www.aiowares.com/)
* [TheMicroTech](https://programs.themicrotech.net/) * [TheMicroTech](https://programs.themicrotech.net/)
* [DownloadHa](https://www.downloadha.com/) - Use [translator](https://addons.mozilla.org/en-US/firefox/addon/traduzir-paginas-web/) * [soft98](https://soft98.ir/) - Use [translator](https://addons.mozilla.org/en-US/firefox/addon/traduzir-paginas-web/)
* [Patoghu](https://patoghu.com/) - Use [translator](https://addons.mozilla.org/en-US/firefox/addon/traduzir-paginas-web/) * [Patoghu](https://patoghu.com/) - Use [translator](https://addons.mozilla.org/en-US/firefox/addon/traduzir-paginas-web/)
* [Softlay](https://www.softlay.com/downloads/) * [Softlay](https://www.softlay.com/downloads/)
* [Mutaz](https://www.mutaz.pro/) * [Mutaz.net](https://www.mutaz.net/)
* [Heidoc](https://www.heidoc.net/joomla/) * [Heidoc](https://www.heidoc.net/joomla/)
* [AsanDL](http://asandl.com/) - Use [translator](https://addons.mozilla.org/en-US/firefox/addon/traduzir-paginas-web/)
* [RetroSystemRevival](https://retrosystemsrevival.blogspot.com/) * [RetroSystemRevival](https://retrosystemsrevival.blogspot.com/)
* [SamLab](https://samlab.ws/) - Use [translator](https://addons.mozilla.org/en-US/firefox/addon/traduzir-paginas-web/)
* [ZOMBIE-WAREZ](https://pastebin.com/Mv32ibns) * [ZOMBIE-WAREZ](https://pastebin.com/Mv32ibns)
* [Libreware](https://t.me/Libreware), [PC Cracked Software](https://t.me/pc_cracked_softwares) - Telegram Channels * [Libreware](https://t.me/Libreware), [PC Cracked Software](https://t.me/pc_cracked_softwares) - Telegram Channels
* [Rarewares](https://www.rarewares.org/) - Rare Software * [Rarewares](https://www.rarewares.org/) - Rare Software
* [PLC4Me](https://plc4me.com/) - Automation Software * [PLC4Me](https://plc4me.com/) - Automation Software
* [civileng_soft](https://t.me/civileng_soft) - Civil Engineering Software
* [Software Heritage](https://www.softwareheritage.org/) - Software Source Code Archive * [Software Heritage](https://www.softwareheritage.org/) - Software Source Code Archive
* [Team V.R releases](https://codec.kyiv.ua/releases.html) - Professional Video, Audio & Adobe Software / Plugins * [Team V.R releases](https://codec.kiev.ua/releases.html) - Professional Video, Audio & Adobe Software / Plugins
* [WLSetup-All](https://rentry.co/FMHYBase64#wlsetup-all) - Windows Live Essentials 2012 Archive * [WLSetup-All](https://rentry.co/FMHYBase64#wlsetup-all) - Windows Live Essentials 2012 Archive
* [GenP](https://www.reddit.com/r/GenP/wiki/index), [2](https://genpguides.github.io/) - Adobe Software Patcher / [Discord](https://discord.gg/BVBh2XVn9s) * [GenP](https://www.reddit.com/r/GenP/wiki/index), [2](https://genpguides.github.io/) - Adobe Software Patcher / [Discord](https://discord.com/invite/X9ZuegSM4N)
* [ZXPInstaller](https://zxpinstaller.com/) - Adobe Extension Installer * [ZXPInstaller](https://github.com/elements-storage/ZXPInstaller) - Adobe Extension Installer
*** ***
## ▷ Freeware Sites ## ▷ Freeware Sites
* 🌐 **[Awesome Open Source](https://awesomeopensource.com/)**, [OpenAlternative](https://openalternative.co/), [Opensource Builders](https://opensource.builders/), [OSSSoftware](https://osssoftware.org/), [OSS Gallery](https://oss.gallery/), [Awesome OSS](https://github.com/RunaCapital/awesome-oss-alternatives), [Gadgeteer](https://gadgeteer.co.za/opensourcesoftware/) or [FossHub](https://www.fosshub.com/) - FOSS Indexes * 🌐 **[Awesome Free Software](https://github.com/johnjago/awesome-free-software)** - Freeware Index
* 🌐 **[Awesome Free Software](https://github.com/johnjago/awesome-free-software)**, [Windows Ultimate Collection](https://xdaforums.com/t/windows-ultimate-collection-guides.4507867/), [Free Lunch](https://github.com/auctors/free-lunch), [MajorGeeks](https://www.majorgeeks.com/content/page/top_freeware_picks.html) or [TinyApps](https://tinyapps.org/) - Freeware Indexes * 🌐 **[Awesome Selfhosted](https://github.com/awesome-selfhosted/awesome-selfhosted)**, [2](https://gitlab.com/awesome-selfhosted/awesome-selfhosted) - Selfhosted Software Index
* 🌐 **[Awesome Selfhosted](https://awesome-selfhosted.net/)**, [2](https://gitlab.com/awesome-selfhosted/awesome-selfhosted) or [Selfh.st](https://selfh.st/apps/) - Selfhosted Software Indexes
* 🌐 **[Awesome Python Applications](https://github.com/mahmoud/awesome-python-applications)** - Python App Index * 🌐 **[Awesome Python Applications](https://github.com/mahmoud/awesome-python-applications)** - Python App Index
* ↪️ **[Git Project Indexes](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_git_projects)** * ↪️ **[Git Project Indexes](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_git_projects)**
* ↪️ **[Software Package Managers](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/system-tools#wiki_.25B7_package_managers)** * ↪️ **[Software Package Managers](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/system-tools#wiki_.25B7_package_managers)**
* ↪️ **[Alternative Software Sites](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_alternative_software_.2F_app_sites)**
* ⭐ **[FluentStore](https://github.com/yoshiask/FluentStore)** - Microsoft Store Frontend * ⭐ **[FluentStore](https://github.com/yoshiask/FluentStore)** - Microsoft Store Frontend
* ⭐ **[store.rg](https://store.rg-adguard.net/)** - Paid Microsoft Store Link Generator / [Guide](https://rentry.co/paidAppsMsStore) * ⭐ **[store.rg](https://store.rg-adguard.net/)** - Paid Microsoft Store Link Generator / [Guide](https://rentry.co/paidAppsMsStore)
* [SourceForge](https://sourceforge.net/)- FOSS Repositories * [Windows Ultimate Collection](https://xdaforums.com/t/windows-ultimate-collection-guides.4507867/) - Freeware Index
* [Fossies](https://fossies.org/all.html) - FOSS Archive * [OldVersion](http://www.oldversion.com/) - Old Versions of Software
* [Free Software Directory](https://directory.fsf.org/wiki/Main_Page) or [FOSS Wiki](https://en.wikipedia.org/wiki/Portal:Free_and_open-source_software/Categories) - FOSS Wikis * [OlderGeeks](https://oldergeeks.com/) - Freeware Index
* [Softpedia](https://www.softpedia.com/), [Realityripple](https://realityripple.com/), [OlderGeeks](https://oldergeeks.com/), [FilePuma](https://www.filepuma.com/), [FileEagle](https://www.fileeagle.com/), [LO4D](https://www.lo4d.com/), [GRC](https://www.grc.com/freepopular.htm), [Uwe Sieber's Homepage](https://www.uwe-sieber.de/english.html) or [Software Informer](https://software.informer.com/) - Freeware * [Free Software MF](https://whoisdsmith.gitbook.io/free-software-mf) - Freeware Index
* [PortableApps.com](https://portableapps.com/), [Portapps](https://portapps.io/) or [PortableAppZ](https://portableappz.blogspot.com/) - Portable Apps * [Softpedia](https://www.softpedia.com/) - Freeware Index
* [Realityripple](https://realityripple.com/) - Freeware Index
* [Software Informer](https://software.informer.com/) - Freeware Index
* [Awesome Windows](https://github.com/Awesome-Windows/Awesome) - Freeware Index
* [Major Geeks](https://www.majorgeeks.com/content/page/top_freeware_picks.html) - Freeware Index
* [SourceForge](https://sourceforge.net/)- FOSS Index
* [FossHub](https://www.fosshub.com/)- FOSS Index
* [Fossies](https://fossies.org/all.html)- FOSS Index
* [Free Software Directory](https://directory.fsf.org/wiki/Main_Page)- FOSS Index
* [FOSS Wiki](https://en.wikipedia.org/wiki/Portal:Free_and_open-source_software/Categories)- FOSS Index
* [OSSSoftware](https://osssoftware.org/) - FOSS Index
* [Awesome Open Source](https://awesomeopensource.com/) - FOSS Index
* [Open-Source Alternatives](https://github.com/btw-so/open-source-alternatives) - FOSS Index
* [Opensource Builders](https://opensource.builders/) - FOSS Index
* [Gadgeteer](https://gadgeteer.co.za/opensourcesoftware/) - FOSS Index
* [LO4D](https://www.lo4d.com/) - Freeware Index
* [FilePuma](https://www.filepuma.com/) - Freeware Index
* [GRC](https://www.grc.com/freepopular.htm) - Freeware Index
* [TinyApps](https://tinyapps.org/) - Freeware Index
* [Phrozen](https://www.phrozen.io/) - Freeware Index
* [FileEagle](https://www.fileeagle.com/) - Freeware Index
* [PortableApps.com](https://portableapps.com/) - Portable Apps
* [Portapps](https://portapps.io/) - Portable Apps
* [PortableAppZ](https://portableappz.blogspot.com/) - Portable Apps
* [Uwe Sieber's Homepage](https://www.uwe-sieber.de/english.html)
* [Nirsoft](https://www.nirsoft.net/), [Windows-Utilities](https://orga.cat/windows-utilities), [OS Vault](https://osvault.weebly.com/directory.html) or [WinTools](https://www.wintools.info/) - Windows Software * [Nirsoft](https://www.nirsoft.net/), [Windows-Utilities](https://orga.cat/windows-utilities), [OS Vault](https://osvault.weebly.com/directory.html) or [WinTools](https://www.wintools.info/) - Windows Software
* [UWP Community](https://uwpcommunity.com/) - Universal Windows Programs / [Discord](https://discord.gg/eBHZSKG) * [UWP Community](https://uwpcommunity.com/) - Universal Windows Programs / [Discord](https://discord.gg/eBHZSKG)
* [RaymondFreeSoftware](https://t.me/raymondfreesoftware) - Telegram * [RaymondFreeSoftware](https://t.me/raymondfreesoftware) - Telegram
* [Suckless](https://suckless.org/) - Simple Software Archive * [Suckless](https://suckless.org/) - Simple Software Archive
* [OldVersion](http://www.oldversion.com/) - Old Versions of Software
* [WinWorldPC](https://winworldpc.com/) - Abandonware / Operating Systems * [WinWorldPC](https://winworldpc.com/) - Abandonware / Operating Systems
* [VETUSWARE](https://vetusware.com/) - Abandonware / Operating Systems / Games * [VETUSWARE](https://vetusware.com/) - Abandonware / Operating Systems / Games
* [MS-DOS Index](http://www.lanet.lv/simtel.net/msdos/index-msdos.html) - MS-DOS Software * [MS-DOS Index](http://www.lanet.lv/simtel.net/msdos/index-msdos.html) - MS-DOS Software
@ -191,21 +213,6 @@
*** ***
## ▷ Alt Software Sites
* ⭐ **[AlternativeTo](https://alternativeto.net/)** - Crowdsourced Recommendations
* [Adobe Alternatives](https://github.com/KenneyNL/Adobe-Alternatives) - Adobe Software Alternative Index
* [SaaSHub](https://www.saashub.com/)
* [Alternative.me](https://alternative.me/)
* [opensourcealternative.to](https://www.opensourcealternative.to/) - Open-source Alternatives
* [TopAlter.com](https://topalter.com/)
* [ListAlternative](https://www.listalternative.com/)
* [Alternative Internet](https://github.com/redecentralize/alternative-internet)
* [Appmus](https://appmus.com/)
* [SimilarSiteSearch](https://www.similarsitesearch.com/), [Sitelike.org](https://www.sitelike.org/), [SitesLike](https://www.siteslike.com/) - Similar Site Lists
***
## ▷ [Linux Software](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/linux#wiki_.25B7_software_sites) ## ▷ [Linux Software](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/linux#wiki_.25B7_software_sites)
*** ***
@ -220,6 +227,7 @@
* [DC++](https://dcplusplus.sourceforge.io/index.html) - File Sharing App / [Clients](https://dchublists.com/clients/) / [Hubs](https://dchublists.com/), [2](https://dchublist.org/), [3](https://dchublist.biz/) * [DC++](https://dcplusplus.sourceforge.io/index.html) - File Sharing App / [Clients](https://dchublists.com/clients/) / [Hubs](https://dchublists.com/), [2](https://dchublist.org/), [3](https://dchublist.biz/)
* [eMule](https://www.emule-project.net/), [Fopnu](https://fopnu.com/), [Shareaza](https://shareaza.sourceforge.net/) or [eMule Plus](https://sourceforge.net/projects/emuleplus/) - File Sharing App * [eMule](https://www.emule-project.net/), [Fopnu](https://fopnu.com/), [Shareaza](https://shareaza.sourceforge.net/) or [eMule Plus](https://sourceforge.net/projects/emuleplus/) - File Sharing App
* [WinMX](https://patch.winmxconex.com/) - File Sharing App / [Forum](https://forum.winmxworld.com/) * [WinMX](https://patch.winmxconex.com/) - File Sharing App / [Forum](https://forum.winmxworld.com/)
* [WireShare](https://sourceforge.net/projects/wireshare/) - File Sharing App / LimeWire Fork
*** ***
@ -228,7 +236,6 @@
* 🌐 **[Awesome IRC](https://github.com/davisonio/awesome-irc)** - IRC Resources * 🌐 **[Awesome IRC](https://github.com/davisonio/awesome-irc)** - IRC Resources
* ⭐ **[IRC Tutorial](https://rentry.org/irc)**, [Libera Guides](https://libera.chat/guides/), [LoadGuru](https://www.theloadguru.com/xdcc-irc-beginners-guide/), [New Blood](https://anonops.com/newblood/) or [Simple Wiki Guide](https://en.wikipedia.org/wiki/Wikipedia:IRC/Tutorial) - IRC Guides * ⭐ **[IRC Tutorial](https://rentry.org/irc)**, [Libera Guides](https://libera.chat/guides/), [LoadGuru](https://www.theloadguru.com/xdcc-irc-beginners-guide/), [New Blood](https://anonops.com/newblood/) or [Simple Wiki Guide](https://en.wikipedia.org/wiki/Wikipedia:IRC/Tutorial) - IRC Guides
* [AdiIRC](https://adiirc.com/), [Convos](https://convos.chat/), [mIRC](https://www.mirc.com/get.html) or [Bitchx](https://bitchx.sourceforge.net/) - IRC Clients * [AdiIRC](https://adiirc.com/), [Convos](https://convos.chat/), [mIRC](https://www.mirc.com/get.html) or [Bitchx](https://bitchx.sourceforge.net/) - IRC Clients
* [Hexchat](https://hexchat.github.io/) - Private IRC Client
* [KiwiIRC](https://kiwiirc.com/) or [TheLounge](https://thelounge.chat/) - WebIRC Client * [KiwiIRC](https://kiwiirc.com/) or [TheLounge](https://thelounge.chat/) - WebIRC Client
* [irc2go](https://en.irc2go.com/) - Browse IRC Chat Rooms / [Top 1000](https://netsplit.de/networks/top100.php) * [irc2go](https://en.irc2go.com/) - Browse IRC Chat Rooms / [Top 1000](https://netsplit.de/networks/top100.php)
* [libera](https://libera.chat/), [tilde](https://tilde.chat/), [anonops](https://anonops.com/) or [rizon](https://rizon.net/) - IRC Networks * [libera](https://libera.chat/), [tilde](https://tilde.chat/), [anonops](https://anonops.com/) or [rizon](https://rizon.net/) - IRC Networks
@ -243,8 +250,6 @@
* [/r/usenet](https://reddit.com/r/usenet) * [/r/usenet](https://reddit.com/r/usenet)
* [Usenet-Uploaders](https://github.com/animetosho/Nyuu/wiki/Usenet-Uploaders), [ngPost](https://github.com/mbruel/ngPost) or [Nyuu](https://github.com/animetosho/Nyuu) - Usenet Uploaders * [Usenet-Uploaders](https://github.com/animetosho/Nyuu/wiki/Usenet-Uploaders), [ngPost](https://github.com/mbruel/ngPost) or [Nyuu](https://github.com/animetosho/Nyuu) - Usenet Uploaders
***
## ▷ Indexers ## ▷ Indexers
* 🌐 **[Indexer List](https://www.reddit.com/r/usenet/wiki/indexers/)** - Indexer List * 🌐 **[Indexer List](https://www.reddit.com/r/usenet/wiki/indexers/)** - Indexer List
@ -254,20 +259,20 @@
* [orionoid](https://orionoid.com/) * [orionoid](https://orionoid.com/)
* [binsearch](https://binsearch.info/) * [binsearch](https://binsearch.info/)
* [abnzb](https://www.abnzb.com/) * [abnzb](https://www.abnzb.com/)
* [NZB Index](https://www.nzbindex.com/), [2](https://www.nzbindex.nl/) * [NZB Index](https://www.nzbindex.com/)
* [Newznab](https://www.newznab.com/) * [Newznab](https://www.newznab.com/)
* [NZBIndex](https://www.nzbindex.nl/)
* [NZBGrabit](https://www.nzbgrabit.xyz/)
* [NZBStars](https://nzbstars.com/) * [NZBStars](https://nzbstars.com/)
* [usenet-crawler](https://www.usenet-crawler.com/)
* [GingaDaddy](https://www.gingadaddy.com/) * [GingaDaddy](https://www.gingadaddy.com/)
* [NZBFinder](https://nzbfinder.ws/) * [NZBFinder](https://nzbfinder.ws/)
* [NZBKing](https://nzbking.com/) * [NZBKing](https://nzbking.com/)
* [g4u](https://g4u.to/) - Download Games via Usenet / pw: 404 * [g4u](https://g4u.to/) - Download Games via Usenet / pw: 404
* [OldUSe](https://article.olduse.net/) - Search Usenet Articles * [OldUSe](https://article.olduse.net/) - Search Usenet Articles
* [althub](https://althub.co.za) - Unlimited Free Trials * [althub](https://althub.co.za) - Unlimited Free Trials
* [nZEDb](https://github.com/nZEDb/nZEDb) - Self-Hosted
* [Spotweb](https://github.com/spotweb/spotweb) - Spotnet Client * [Spotweb](https://github.com/spotweb/spotweb) - Spotnet Client
***
## ▷ Providers ## ▷ Providers
* 🌐 **[/r/usenet Providers](https://www.reddit.com/r/usenet/wiki/providers)** - Provider Lists * 🌐 **[/r/usenet Providers](https://www.reddit.com/r/usenet/wiki/providers)** - Provider Lists
@ -278,13 +283,11 @@
* [usenet.farm](https://usenet.farm/#trial) * [usenet.farm](https://usenet.farm/#trial)
* [Free Trials](https://www.ngprovider.com/free-usenet-trials.php) * [Free Trials](https://www.ngprovider.com/free-usenet-trials.php)
***
## ▷ Downloaders ## ▷ Downloaders
* ⭐ **[sabnzbd](https://sabnzbd.org/)** / [Grabber](https://github.com/lem6ns/sabgrab) / [Firefox](https://addons.mozilla.org/en-US/firefox/addon/nzb-unity/) / [Chrome](https://chromewebstore.google.com/detail/nzb-unity/mpejfoghnejnbfkpbiafklkmlhebkapb) * ⭐ **[sabnzbd](https://sabnzbd.org/)** / [Grabber](https://github.com/lem6ns/sabgrab) / [Firefox](https://addons.mozilla.org/en-US/firefox/addon/nzb-unity/) / [Chrome](https://chromewebstore.google.com/detail/nzb-unity/mpejfoghnejnbfkpbiafklkmlhebkapb)
* ⭐ **[NZBUnity](https://github.com/tumblfeed/nzbunity)** - Send Usenet Files to Client * ⭐ **[NZBUnity](https://github.com/tumblfeed/nzbunity)** - Send Usenet Files to Client
* [nzbget](https://nzbget.com/) / [GitHub](https://github.com/nzbgetcom/nzbget) * [nzbget](https://github.com/nzbgetcom/nzbget), [2](https://nzbget.com/download/)
* [Usenet File Hashes](https://gist.github.com/4chenz/de3a3490aff19fd72e4fdd9b7dafc8f4) - Link File Hashes * [Usenet File Hashes](https://gist.github.com/4chenz/de3a3490aff19fd72e4fdd9b7dafc8f4) - Link File Hashes
* [Tg-UsenetBot](https://github.com/sanjit-sinha/Tg-UsenetBot) - Usenet Telegram Bot * [Tg-UsenetBot](https://github.com/sanjit-sinha/Tg-UsenetBot) - Usenet Telegram Bot
@ -292,14 +295,13 @@
# ► Leeches / Debrid # ► Leeches / Debrid
* 🌐 **[Free Premium Leech Wiki](https://filehostlist.miraheze.org/wiki/Free_Premium_Leeches)** or [leechlisting](https://www.leechlisting.com/) - Leech Lists * 🌐 **[Free Premium Leech Wiki](https://filehostlist.miraheze.org/wiki/Main_Page)** or [leechlisting](https://www.leechlisting.com/) - Leech Lists
* [@Transload](https://t.me/transload) - Telegram Leech Bots * [@Transload](https://t.me/transload) - Telegram Leech Bots
* [Multi-OCH Helper](https://greasyfork.org/en/scripts/13884-multi-och-helper) - Send Premium Files to Leeches / 2 Hosts Only * [Multi-OCH Helper](https://greasyfork.org/en/scripts/13884-multi-och-helper) - Send Premium Files to Leeches / 2 Hosts Only
* [RapidGrab](https://rapidgrab.ovh/) or [Newscon](https://www.newscon.net/d1/) / [2](https://www.newscon.org/d3/) - Leech * [RapidGrab](https://rapidgrab.pl/) or [Newscon](https://www.newscon.net/d1/) - Leech
* [Real-Debrid](https://real-debrid.com/) - Paid Debrid service / [Torrent Client](https://github.com/rogerfar/rdt-client) / [Movies / TV](https://hdencode.org/) * [Real-Debrid](https://real-debrid.com/) - Paid Debrid service / [Torrent Client](https://github.com/rogerfar/rdt-client) / [Movies / TV](https://hdencode.org/)
* [Debrid-Link](https://debrid-link.com) - Debrid with Free Tier * [Debrid-Link](https://debrid-link.com) - Debrid w/ Free Tier / [Limits](https://i.imgur.com/vZtlvtA.png)
* [AllDebrid](https://alldebrid.com/) - Paid Debrid service with seven day trial * [AllDebrid](https://alldebrid.com/) - Paid Debrid service with seven day trial
* [Debrid Media Manager](https://debridmediamanager.com/) - Manage / Stream / Download RD Files
*** ***

File diff suppressed because it is too large Load Diff

10
docs/eslint.config.js Normal file
View File

@ -0,0 +1,10 @@
// @ts-check
import tasky from '@taskylizard/eslint-config'
export default tasky({
vue: true,
typescript: true,
browser: true,
unocss: true,
files: ['**/.vitepress/**']
})

View File

@ -39,5 +39,3 @@ outline: false
* *"I love having an extreme amount of privacy. And it's not just for piracy, so this is REALLY useful. Thanks!"* * *"I love having an extreme amount of privacy. And it's not just for piracy, so this is REALLY useful. Thanks!"*
* *"Every person I share this sub with is always completely grateful, and it's no wonder why."* * *"Every person I share this sub with is always completely grateful, and it's no wonder why."*
* *"Finding out about FMHY's wiki is the best thing that has happened to me, it has helped me so much in every way imaginable, i'm very grateful, keep it up!"*

1250
docs/gaming.md Normal file

File diff suppressed because it is too large Load Diff

44
docs/index.md Normal file
View File

@ -0,0 +1,44 @@
---
title: Welcome
layout: home
description: The largest collection of free stuff on the internet!
hero:
name: FMHY
text: freemediaheckyeah
tagline: The largest collection of free stuff on the internet!
prelink:
title: Monthly Updates [Feb 2024]
link: /posts/feb-2024
image:
src: /test.png
alt: FMHY Icon
actions:
- theme: brand
text: Browse Collection
link: /adblockvpnguide
- theme: alt
text: Posts
link: /posts
- theme: alt
text: Discord
link: https://discord.gg/Stz6y6NgNg
features:
- title: Movies / TV / Anime
icon: <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 36 36"><path fill="#31373D" d="M35 31s0 4-4 4H5c-4 0-4-4-4-4V12c0-4 4-4 4-4h26s4 0 4 4v19z"/><path fill="#31373D" d="M21.303 10.389a.999.999 0 1 1-1.414 1.414l-9.192-9.192a.999.999 0 1 1 1.414-1.414l9.192 9.192z"/><path fill="#31373D" d="M14.697 10.389a.999.999 0 1 0 1.414 1.414l9.192-9.192a.999.999 0 1 0-1.414-1.414l-9.192 9.192z"/><path fill="#55ACEE" d="M18 11c8 0 10 1 11 2s2 3 2 8s-1 7-2 8s-3 2-11 2s-10-1-11-2s-2-3-2-8s1-7 2-8s3-2 11-2z"/><circle cx="31.5" cy="31.5" r="1.5" fill="#66757F"/><circle cx="4.5" cy="31.5" r="1.5" fill="#66757F"/></svg>
link: /videopiracyguide
details: Download, stream, torrent and binge all your favourites movies or shows!
- title: Music / Podcasts / Radio
icon: <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 36 36"><path fill="#5DADEC" d="M14.182.168L7.818 1.469A1.07 1.07 0 0 0 7 2.471v15.857A6.226 6.226 0 0 0 5 18c-2.762 0-5 1.741-5 3.889c0 2.147 2.238 3.889 5 3.889c2.713 0 4.908-1.683 4.985-3.777H10V6.477l4.182-.855A1.07 1.07 0 0 0 15 4.62V.835c0-.459-.368-.76-.818-.667zm21 4l-6.363 1.301c-.451.092-.819.543-.819 1.002v15.857A6.198 6.198 0 0 0 26 22c-2.762 0-5 1.741-5 3.889c0 2.147 2.238 3.889 5 3.889c2.713 0 4.908-1.683 4.985-3.777H31V10.477l4.182-.855A1.07 1.07 0 0 0 36 8.62V4.835c0-.459-.368-.76-.818-.667z"/><path fill="#5DADEC" d="m23.182 10.167l-6.363 1.301c-.451.093-.819.544-.819 1.003v15.857A6.198 6.198 0 0 0 14 28c-2.762 0-5 1.741-5 3.889s2.238 3.889 5 3.889c2.713 0 4.908-1.683 4.985-3.777H19V16.477l4.182-.855A1.07 1.07 0 0 0 24 14.62v-3.785c0-.459-.368-.76-.818-.668z"/></svg>
link: /audiopiracyguide
details: Stream, download and torrent songs, podcasts and more!
- title: Games / Emulation
icon: <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 36 36"><path fill="#31373D" d="m2.13 14.856l-.004-.002S.075 27.271.075 29.061c0 1.824 1.343 3.302 3 3.302c.68 0 1.3-.258 1.803-.678l10.166-8.938L2.13 14.856zm31.69 0l.004-.002s2.051 12.417 2.051 14.207c0 1.824-1.343 3.302-3 3.302c-.68 0-1.3-.258-1.803-.678l-10.166-8.938l12.914-7.891z"/><g fill="#14171A"><circle cx="25.975" cy="15.551" r="8.5"/><circle cx="9.975" cy="15.551" r="8.5"/><path d="M9.975 7.051h16v16.87h-16z"/></g><circle cx="13.075" cy="23.301" r="5" fill="#14171A"/><circle cx="22.875" cy="23.301" r="5" fill="#14171A"/><circle cx="22.875" cy="23.301" r="3" fill="#67757F"/><circle cx="13.075" cy="23.301" r="3" fill="#67757F"/><circle cx="25.735" cy="11.133" r="1.603" fill="#FFCC4D"/><circle cx="25.735" cy="17.607" r="1.603" fill="#77B255"/><circle cx="22.498" cy="14.37" r="1.603" fill="#50A5E6"/><circle cx="28.972" cy="14.37" r="1.603" fill="#DD2E44"/><path fill="#8899A6" d="M11.148 12.514v-2.168a.505.505 0 0 0-.505-.505H9.085a.505.505 0 0 0-.505.505v2.168l1.284 1.285l1.284-1.285zm-2.569 3.63v2.168c0 .279.226.505.505.505h1.558a.505.505 0 0 0 .505-.505v-2.168l-1.284-1.285l-1.284 1.285zm5.269-3.1H11.68l-1.285 1.285l1.285 1.285h2.168a.506.506 0 0 0 .505-.505V13.55a.506.506 0 0 0-.505-.506zm-5.799 0H5.88a.506.506 0 0 0-.505.505v1.558c0 .279.226.505.505.505h2.168l1.285-1.285l-1.284-1.283z"/></svg>
link: /gamingpiracyguide
details: Download and play all your favourite games or emulate some old but gold ones!
- title: Book / Comics / Manga
icon: <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 36 36"><path fill="#553788" d="M15 31c0 2.209-.791 4-3 4H5c-4 0-4-14 0-14h7c2.209 0 3 1.791 3 4v6z"/><path fill="#9266CC" d="M34 33h-1V23h1a1 1 0 1 0 0-2H10c-4 0-4 14 0 14h24a1 1 0 1 0 0-2z"/><path fill="#CCD6DD" d="M34.172 33H11c-2 0-2-10 0-10h23.172c1.104 0 1.104 10 0 10z"/><path fill="#99AAB5" d="M11.5 25h23.35c-.135-1.175-.36-2-.678-2H11c-1.651 0-1.938 6.808-.863 9.188C9.745 29.229 10.199 25 11.5 25z"/><path fill="#269" d="M12 8a4 4 0 0 1-4 4H4C0 12 0 1 4 1h4a4 4 0 0 1 4 4v3z"/><path fill="#55ACEE" d="M31 10h-1V3h1a1 1 0 1 0 0-2H7C3 1 3 12 7 12h24a1 1 0 1 0 0-2z"/><path fill="#CCD6DD" d="M31.172 10H8c-2 0-2-7 0-7h23.172c1.104 0 1.104 7 0 7z"/><path fill="#99AAB5" d="M8 5h23.925c-.114-1.125-.364-2-.753-2H8C6.807 3 6.331 5.489 6.562 7.5C6.718 6.142 7.193 5 8 5z"/><path fill="#F4900C" d="M20 17a4 4 0 0 1-4 4H6c-4 0-4-9 0-9h10a4 4 0 0 1 4 4v1z"/><path fill="#FFAC33" d="M35 19h-1v-5h1a1 1 0 1 0 0-2H15c-4 0-4 9 0 9h20a1 1 0 1 0 0-2z"/><path fill="#CCD6DD" d="M35.172 19H16c-2 0-2-5 0-5h19.172c1.104 0 1.104 5 0 5z"/><path fill="#99AAB5" d="M16 16h19.984c-.065-1.062-.334-2-.812-2H16c-1.274 0-1.733 2.027-1.383 3.5c.198-.839.657-1.5 1.383-1.5z"/></svg>
link: /readingpiracyguide
details: Whether you're a bookworm, otaku or comic book fan, you'll be able to find your favourite pieces of literature here for free!
---

View File

@ -6,11 +6,12 @@
# ► Linux Distros # ► Linux Distros
* **Note** - We don't curate individual distros ourselves as we feel the indexes listed are good enough to stand on their own. **Note** - We don't curate individual distros ourselves as we feel the indexes listed are good enough to stand on their own.
*** ***
* ⭐ **[Linux Difficulty Chart](https://i.ibb.co/kXJdBrF/98e87fc317dd.png)** * ⭐ **[Linux Difficulty Chart](https://i.ibb.co/kXJdBrF/98e87fc317dd.png)**
* ⭐ **[Beginner Distros](https://ash.fail/distros.html)**
* ⭐ **[DistroChooser](https://distrochooser.de/)** * ⭐ **[DistroChooser](https://distrochooser.de/)**
* ⭐ **[DistroWatch](https://distrowatch.com/dwres.php?resource=popularity)** * ⭐ **[DistroWatch](https://distrowatch.com/dwres.php?resource=popularity)**
* ⭐ **[Babbies First Linux](https://wiki.installgentoo.com/index.php/Babbies_First_Linux)** * ⭐ **[Babbies First Linux](https://wiki.installgentoo.com/index.php/Babbies_First_Linux)**
@ -21,81 +22,7 @@
* [OS.click](https://os.click/en) * [OS.click](https://os.click/en)
* [LinuxTracker](https://linuxtracker.org/) * [LinuxTracker](https://linuxtracker.org/)
* [OpenSourceFeed](https://www.opensourcefeed.org/) * [OpenSourceFeed](https://www.opensourcefeed.org/)
* [Pkgs](https://pkgs.org/) / [Repology](https://repology.org/) * [Pkgs](https://pkgs.org/)
***
## ▷ Linux Communities
* ⭐ **[All Things Linux](https://discord.gg/linux)** - Linux Discord Server
* [Linux.Chat](https://discord.gg/linuxchat) - Linux Discord Server
* [Linux x Technology](https://linuxdiscord.com/) - Linux Discord Server
* [Discord-Linux](https://discord.gg/discord-linux) - Linux Discord Server
* [Linux.org](https://linux.org/) - Linux Forum
* [Ezlinux](https://ezlinux.net/) - Linux Forum
***
## ▷ Linux Guides
* ↪️ **[Bash / CLI Cheat Sheets](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_cli_cheat_sheets)**
* ⭐ **[Archwiki](https://wiki.archlinux.org/)** - Arch Linux Guide / [Manuals](https://man.archlinux.org/) / [TUI](https://codeberg.org/theooo/mantra.py)
* ⭐ **[InstallGentoo](https://wiki.installgentoo.com/)** - Linux Guides
* [GameShell](https://github.com/phyver/GameShell) - Unix Shell Learning Game
* [Gentoo Wiki](https://wiki.gentoo.org/wiki/Main_Page) - Gentoo Guides
* [HowToLinux](https://howtolinux.vercel.app) - Linux Guides
* [HowtoForge](https://www.howtoforge.com/) - Linux Guides
* [Sindresorhus Guides](https://github.com/sindresorhus/guides) - Linux Guides
* [Erik Dubois](https://www.youtube.com/c/ErikDubois) - Linux Guides
* [LinuxJourney](https://linuxjourney.com/) - Linux Guides
* [Linuxtopia](https://www.linuxtopia.org/) - Linux Guides
* [Mental Outlaw](https://www.youtube.com/channel/UC7YOGHUfC1Tb6E4pudI9STA) - Linux Guides
* [Boot-Repair](https://help.ubuntu.com/community/Boot-Repair) - Grub Repair Guide for Linux Systems
***
## ▷ Linux System
* 🌐 **[Awesome Gnome](https://github.com/Kazhnuz/awesome-gnome)** - GNOME Resources
* ⭐ **[Ventoy](https://www.ventoy.net)** / [GitHub](https://github.com/ventoy/Ventoy) or [Impression](https://gitlab.com/adhami3310/Impression) - Create Bootable USB Linux Drives
* ⭐ **[Btop](https://github.com/aristocratos/btop)**, **[fastfetch](https://github.com/fastfetch-cli/fastfetch)**, **[MangoHud](https://github.com/flightlessmango/MangoHud)**, [CPU-X](https://github.com/TheTumultuousUnicornOfDarkness/CPU-X), [Macchina](https://github.com/Macchina-CLI/macchina), [Archey4](https://github.com/HorlogeSkynet/archey4), [Hyfetch](https://github.com/hykilpikonna/hyfetch) or [s-tui](https://github.com/amanusk/s-tui) - System Info / Resource Monitors
* ⭐ **[TimeShift](https://github.com/linuxmint/timeshift)** - System Restore / Backup
* [DistroSea](https://distrosea.com/), [anuraOS](https://github.com/MercuryWorkshop/anuraOS) - Linux Browser Emulator
* [SysmonForLinux](https://github.com/Sysinternals/SysmonForLinux) - Monitor / Log System Activity
* [screenFetch](https://github.com/KittyKatt/screenFetch) - Bash Screenshot Information Tool
* [Nanobench](https://github.com/andreas-abel/nanoBench) - CPU Microbenchmark / [Documentation](https://nanobench.ankerl.com/)
* [ScanMem](https://github.com/scanmem/scanmem) - Memory Scanner / Debugger
* [pacwall](https://github.com/Kharacternyk/pacwall) - Live Wallpaper Dependency Graph / Package Status
* [keyd](https://github.com/rvaiya/keyd) or [xremap](https://github.com/k0kubun/xremap) - Keyboard Remapping
* [LAN Mouse](https://github.com/feschber/lan-mouse) - Mouse & Keyboard Sharing
* [Input Leap](https://github.com/input-leap/input-leap) - Multi-Computer Control
* [auto-cpufreq](https://github.com/AdnanHodzic/auto-cpufreq) - CPU Speed & Power Optimization Automation
* [node-startup](https://github.com/ralyodio/node-startup) - Startup Script
* [winapps](https://github.com/Fmstrat/winapps) - Run Windows Apps on Linux
* [Teleport](https://teleportsite.pages.dev/) - Windows App Compatibility Analyzer
* [WoeUSB](https://github.com/WoeUSB/WoeUSB) or [Windows2USB](https://github.com/ValdikSS/windows2usb) - Create Bootable USB Windows Drives
* [NetBoot](https://netboot.xyz/) - Distro Installer
* [CloverBootloader](https://github.com/CloverHackyColor/CloverBootloader/) - Windows, Mac & Linux Bootloader / [Config](https://mackie100projects.altervista.org/)
* [zfsBootMenu](https://docs.zfsbootmenu.org/) - ZFS Bootloader
* [Linux Heads](https://osresearch.net/) - Minimal CoreBoot / [GitHub](https://github.com/osresearch/heads)
* [GParted](https://gparted.org/) - Partition Manager
* [Archinstall](https://github.com/archlinux/archinstall) - Arch Linux Installers
* [Pop!_OS Shell](https://github.com/pop-os/shell) - Pop-Shell for GNOME
* [CoreELEC](https://coreelec.org) / [GitHub](https://github.com/CoreELEC/CoreELEC) or [LibreELEC](https://libreelec.tv/) - Kodi-Based Operating System
* [WSL](https://learn.microsoft.com/en-us/windows/wsl/) - Run Linux on Windows / [Resources](https://github.com/sirredbeard/Awesome-WSL) / [Startup Launcher](https://github.com/nullpo-head/wsl-distrod) / [Wayland / X Server](https://github.com/microsoft/wslg)
* [Boxes](https://wiki.gnome.org/Apps/Boxes) - Virtual Machine Manager
* [fvwm](https://www.fvwm.org/) or [Linux-KVM](https://www.linux-kvm.org/page/Downloads) - Virtual Machines
* [WebVM](https://webvm.io/) - Browser Virtual Machine / [Discord](https://discord.gg/yTNZgySKGa)
* [OSX-KVM](https://github.com/kholia/OSX-KVM), [OneClick-macOS-Simple-KVM](https://notAperson535.github.io/OneClick-macOS-Simple-KVM) or [macOS-Simple-KVM](https://github.com/foxlet/macOS-Simple-KVM) - macOS Virtual Machines
* [kmon](https://kmon.cli.rs/) - Kernel Manager and Activity Monitor
* [Kernel Map](https://makelinux.github.io/kernel/map/) - Interactive Linux Kernel Map
* [SystemRescue](https://www.system-rescue.org/) or [Super Grub2 Disk](https://www.supergrubdisk.org/super-grub2-disk/) - Bootable System Rescue Toolkits
* [coreboot](https://coreboot.org/) or [Libreboot](https://libreboot.org/) - Replace Proprietary BIOS/UEFI Firmware
* [bt-dualboot](https://github.com/x2es/bt-dualboot) - Dual-Boot Bluetooth Sync Tool
* [Hardcode Tray](https://github.com/bilelmoussaoui/Hardcode-Tray) - Hardcoded Tray Icon Fix
* [open-gpu-kernel-modules](https://github.com/NVIDIA/open-gpu-kernel-modules) - NVIDIA Linux Open GPU Kernel Module
* [nosystemd](https://nosystemd.org/) - Alternatives to Systemd
* [greetd](https://sr.ht/~kennylevinsen/greetd/) - Login Manager Daemon
*** ***
@ -109,36 +36,6 @@
*** ***
## ▷ Window Managers
* **Note** - Most Window Managers have a steep learning curve. Customization (or "ricing") is a requirement. [See below](https://fmhy.net/linuxguide#ricing-customization) for some resources.
***
* 🌐 **[Window Manager Index](https://wiki.archlinux.org/title/Window_manager)** - List of Window Managers
* [awesomewm](https://github.com/awesomeWM/awesome) - Window Manager / [Arch Wiki](https://wiki.archlinux.org/title/Awesome)
* [dwm](https://dwm.suckless.org) - Window Manager / [Arch Wiki](https://wiki.archlinux.org/title/Dwm)
* [qtile](https://qtile.org/) - Window Manager / [Arch Wiki](https://wiki.archlinux.org/title/Qtile)
* [xmonad](https://xmonad.org/) - Window Manager / [Arch Wiki](https://wiki.archlinux.org/title/Xmonad)
* [Compix](https://github.com/xeome/compix) - Window Manager
* [bspwm](https://github.com/baskerville/bspwm) - Tiling Window Manager / [Binds](https://github.com/baskerville/sxhkd) / [Arch Wiki](https://wiki.archlinux.org/title/Bspwm)
***
## ▷ Wayland Compositors
* 🌐 **[Wayland Compositor Index](https://wiki.archlinux.org/title/Wayland#Compositors)** - List of Wayland Compositors
* ⭐ **[Hyprland](https://hyprland.org/)** - Wayland Compositor / [Arch Wiki](https://wiki.archlinux.org/title/Hyprland) / [Simple Config](https://end-4.github.io/dots-hyprland-wiki/en/)
* ⭐ **[Sway](https://github.com/swaywm/sway)** or [SwayFx](https://github.com/WillPower3309/swayfx) - i3-compatible Wayland Compositor / [Arch Wiki](https://wiki.archlinux.org/title/Sway)
* [Wayland](https://wayland.freedesktop.org/) - Linux Display Server Protocol / [Tools](https://arewewaylandyet.com/)
* [river](https://github.com/riverwm/river/) - Wayland Compositors
* [LabWC](https://github.com/labwc/labwc) - Wayland Compositors
* [kiwmi](https://github.com/buffet/kiwmi) - Wayland Compositors
* [picom](https://github.com/yshui/picom) - Wayland Compositors
* [wayfire](https://github.com/WayfireWM/wayfire/) - Wayland Compositors
***
# ► Linux Apps # ► Linux Apps
* ⭐ **[Bottles](https://usebottles.com/)** - Manage Wine containers * ⭐ **[Bottles](https://usebottles.com/)** - Manage Wine containers
@ -146,39 +43,39 @@
* ⭐ **[Q4Wine](https://sourceforge.net/projects/q4wine/)** - Wine GUI * ⭐ **[Q4Wine](https://sourceforge.net/projects/q4wine/)** - Wine GUI
* ⭐ **[AppImageLauncher](https://github.com/TheAssassin/AppImageLauncher)** - Integrate AppImages to your App Launcher * ⭐ **[AppImageLauncher](https://github.com/TheAssassin/AppImageLauncher)** - Integrate AppImages to your App Launcher
* ⭐ **[winetricks](https://github.com/Winetricks/winetricks)** - Wine Fixes * ⭐ **[winetricks](https://github.com/Winetricks/winetricks)** - Wine Fixes
* ⭐ **[rofi](https://davatorium.github.io/rofi/)** / [Emoji Selector](https://github.com/Mange/rofi-emoji), [Ulauncher](https://ulauncher.io/) or [wofi](https://hg.sr.ht/~scoopta/wofi) - App Launchers * ⭐ **[rofi](https://github.com/davatorium/rofi)** / [Emoji Selector](https://github.com/Mange/rofi-emoji) or [Ulauncher](https://ulauncher.io/) - App Launchers
* [wslu](https://wslutiliti.es/wslu) / [GitHub](https://github.com/wslutilities/wslu) - Utilities for Windows 10 Linux Subsystem * [wslu](https://github.com/wslutilities/wslu) - Utilities for Windows 10 Linux Subsystem
* [Darling](https://www.darlinghq.org/) - Run macOS Apps on Linux * [Darling](https://www.darlinghq.org/) - Run macOS Apps on Linux
* [innoextract](https://constexpr.org/innoextract/) - Windows Installer Unpacker * [DeskCut](https://github.com/NayamAmarshe/DeskCut) - Desktop Shortcuts App
* [nativefier_tauri](https://github.com/hamza72x/web2app) - Turn Webpages into Desktop Apps * [nativefier_tauri](https://github.com/hamza72x/web2app) - Turn Webpages into Desktop Apps
* [Autokey](https://autokey.github.io/index.html) / [GitHub](https://github.com/autokey/autokey) - Linux Automation Utility * [Autokey](https://github.com/autokey/autokey) - Linux Automation Utility
* [Touchégg](https://github.com/JoseExposito/touchegg) - Multi-Touch Gesture Recognizer * [Touchégg](https://github.com/JoseExposito/touchegg) - Multi-Touch Gesture Recognizer
* [Enlightment](https://www.enlightenment.org/), [worm](https://github.com/codic12/worm), [dwm](https://dwm.suckless.org/), [qtile](https://qtile.org/), [xmonad](https://xmonad.org/), [zentile](https://github.com/blrsn/zentile) or [bspwm](https://github.com/baskerville/bspwm) - Window Managers / [Sub](https://www.reddit.com/r/bspwm/) / [Binds](https://github.com/baskerville/sxhkd)
* [Material Shell](https://material-shell.com/) or [Forge](https://github.com/forge-ext/forge) - GNOME Tiling Extension * [Material Shell](https://material-shell.com/) or [Forge](https://github.com/forge-ext/forge) - GNOME Tiling Extension
* [Polonium](https://zeroxoneafour.github.io/polonium/) - KDE6 Tiling Manager Extension / [GitHub](https://github.com/zeroxoneafour/polonium) * [Bismuth](https://bismuth-forge.github.io/bismuth/) - KDE Tiling Extension / [GitHub](https://github.com/Bismuth-Forge/bismuth)
* [Bismuth](https://bismuth-forge.github.io/bismuth/) - KDE5 Tiling Extension / [GitHub](https://github.com/Bismuth-Forge/bismuth)
* [Ghostwriter](https://ghostwriter.kde.org/) or [Remarkable](https://remarkableapp.github.io/) - Markdown Editor * [Ghostwriter](https://ghostwriter.kde.org/) or [Remarkable](https://remarkableapp.github.io/) - Markdown Editor
* [Gedit](https://wiki.gnome.org/Apps/Gedit), [Geany](https://www.geany.org/), [Leafpad](http://tarot.freeshell.org/leafpad/), [NotepadNext](https://github.com/dail8859/NotepadNext), [taskbook](https://github.com/klaudiosinani/taskbook), [Notepadqq](https://github.com/notepadqq/notepadqq), [Featherpad](https://github.com/tsujan/FeatherPad) or [nb](https://xwmx.github.io/nb) / [GitHub](https://github.com/xwmx/nb) - Text Editor / Note Apps * [Gedit](https://wiki.gnome.org/Apps/Gedit), [Geany](https://www.geany.org/), [Leafpad](http://tarot.freeshell.org/leafpad/), [NotepadNext](https://github.com/dail8859/NotepadNext), [Featherpad](https://github.com/tsujan/FeatherPad), [Mousepad](https://github.com/codebrainz/mousepad) or [Notepadqq](https://notepadqq.com/) - Text Editor
* [TextPieces](https://gitlab.com/liferooter/textpieces) - Quick Text Transformations / [Github](https://github.com/liferooter/textpieces) * [TextPieces](https://github.com/liferooter/textpieces) - Quick Text Transformations
* [ly](https://github.com/fairyglade/ly) - Display Manager with Console UI * [ly](https://github.com/fairyglade/ly) - Display Manager with Console UI
* [GammaStep](https://gitlab.com/chinstrap/gammastep) - Adjust Screen Temperature * [GammaStep](https://gitlab.com/chinstrap/gammastep) - Adjust Screen Temperature
* [VirtScreen](https://github.com/kbumsik/VirtScreen) - Use Mobile Device as Monitor
* [Weylus](https://github.com/H-M-H/Weylus) - Use Mobile Device as Trackpad * [Weylus](https://github.com/H-M-H/Weylus) - Use Mobile Device as Trackpad
* [AudioSource](https://github.com/gdzx/audiosource) - Use Mobile Device as Microphone
* [Ollama](https://ollama.ai/) / [Discord](https://discord.gg/ollama) - Run LLMs * [Ollama](https://ollama.ai/) / [Discord](https://discord.gg/ollama) - Run LLMs
* [nyrna](https://nyrna.merritt.codes) - Suspend Apps / Games * [nyrna](https://github.com/Merrit/nyrna) - Suspend Apps / Games
* [Solaar](https://github.com/pwr-Solaar/Solaar) - Logitech Device Manager * [Solaar](https://github.com/pwr-Solaar/Solaar) - Logitech Device Manager
* [bluetuith](https://github.com/darkhz/bluetuith) - Bluetooth Manager * [bluetuith](https://github.com/darkhz/bluetuith) - Bluetooth Manager
* [QR Scan](https://github.com/sayanarijit/qrscan) - QR Code Scanner * [QR Scan](https://github.com/sayanarijit/qrscan) - QR Code Scanner
* [libimobiledevice](https://libimobiledevice.org) - Communicate with iOS Devices * [libimobiledevice](https://github.com/libimobiledevice/libimobiledevice) - Communicate with iOS Devices
* [Meteo](https://gitlab.com/bitseater/meteo) - Weather App * [Meteo](https://gitlab.com/bitseater/meteo) - Weather App
* [Client Evolution](https://help.gnome.org/users/evolution/stable/) - Calendar * [Client Evolution](https://help.gnome.org/users/evolution/stable/) - Calendar
* [todo](https://github.com/sioodmy/todo/) or [Planify](https://github.com/alainm23/planify) - To-Do Apps * [todo](https://github.com/sioodmy/todo/) - To-Do Apps
* [Timestrap](https://timestrap.bythewood.me/) or [Mindfulness at the Computer](https://fswb.codeberg.page/mindfulness-at-the-computer/) - Productivity Managers * [Timestrap](https://timestrap.bythewood.me/) or [Mindfulness at the Computer](https://mindfulness-at-the-computer.gitlab.io/) - Productivity Managers
* [SafeEyes](https://slgobinath.github.io/SafeEyes/) - Break Reminders * [SafeEyes](https://slgobinath.github.io/SafeEyes/) - Break Reminders
* [Dijo](https://github.com/NerdyPepper/dijo) - Activity Tracker * [Dijo](https://github.com/NerdyPepper/dijo) - Activity Tracker
* [libmui](https://github.com/buserror/libmui) - Mac Style Widget Library * [Manga Reader](https://flathub.org/apps/details/com.georgefb.mangareader) - Manga Reader
* [Railway](https://flathub.org/apps/de.schmidhuberj.DieBahn) - Travel Info Manager * [dunst](https://dunst-project.org/) - Customizable Notification Daemon / [GitHub](https://github.com/dunst-project/dunst)
* [Komikku](https://valos.gitlab.io/Komikku/), [Suwayomi-VaadinUI](https://github.com/Suwayomi/Tachidesk-VaadinUI) or [Manga Reader](https://flathub.org/apps/details/com.georgefb.mangareader) - Manga Readers * [A2LN](https://github.com/patri9ck/a2ln-app) - Display Android Notifications on Linux
* [Mako](https://github.com/emersion/mako), [dunst](https://dunst-project.org/) - Customizable Notification Daemon / [GitHub](https://github.com/dunst-project/dunst) * [Breathing](https://github.com/SeaDve/Breathing) - Relaxation / Breathing Tool
* [DidYouMean](https://github.com/hisbaan/didyoumean) - Grammar Check * [DidYouMean](https://github.com/hisbaan/didyoumean) - Grammar Check
* [KTouch](https://apps.kde.org/ktouch/), [typer](https://github.com/maaslalani/typer) or [Toipe](https://github.com/Samyak2/toipe) - Typing Practice * [KTouch](https://apps.kde.org/ktouch/), [typer](https://github.com/maaslalani/typer) or [Toipe](https://github.com/Samyak2/toipe) - Typing Practice
@ -186,31 +83,27 @@
## ▷ Software Sites ## ▷ Software Sites
* 🌐 **[ArchWiki App Sites](https://wiki.archlinux.org/title/List_of_applications)** - Linux Software / Site Index * 🌐 **[Awesome Linux](https://luong-komorebi.github.io/Awesome-Linux-Software/)** or [Awesome KDE](https://github.com/francoism90/awesome-kde) - FOSS Software / [Image](https://i.ibb.co/KyTkKHz/ae00a5177857.png)
* 🌐 **[Awesome Linux](https://luong-komorebi.github.io/Awesome-Linux-Software/)** - FOSS Software Index
* ⭐ **[Kapital Sin](https://www.kapitalsin.com/forum/index.php?board=5.0)** / Use [Translator](https://github.com/FilipePS/Traduzir-paginas-web#install) * ⭐ **[Kapital Sin](https://www.kapitalsin.com/forum/index.php?board=5.0)** / Use [Translator](https://github.com/FilipePS/Traduzir-paginas-web#install)
* ⭐ **[RuTracker](https://rutracker.org/forum/viewforum.php?f=1381)** / [Translator](https://github.com/FilipePS/Traduzir-paginas-web#install) / [Wiki](http://rutracker.wiki/) / [Rules](https://rutracker.org/forum/viewtopic.php?t=1045) * ⭐ **[RuTracker](https://rutracker.org/forum/viewforum.php?f=1381)** / [Translator](https://github.com/FilipePS/Traduzir-paginas-web#install) / [Wiki](http://rutracker.wiki/) / [Rules](https://rutracker.org/forum/viewtopic.php?t=1045)
* ⭐ **[Linux Software CSE](https://cse.google.com/cse?cx=81bd91729fe2a412b)** - Multi-Site Software Search * ⭐ **[Linux Software CSE](https://cse.google.com/cse?cx=81bd91729fe2a412b)** - Multi-Site Software Search
* [Awesome Linux Minimalism](https://github.com/knassar702/awesome-linux-minimalism) - FOSS Software
* [Awesome KDE](https://github.com/francoism90/awesome-kde) - FOSS Software
* [FOSS Torrents](https://fosstorrents.com/) - FOSS Software Torrents
* [Linux FOSS Image](https://i.ibb.co/KyTkKHz/ae00a5177857.png) - FOSS Software List
* [KDE Applications](https://apps.kde.org/) - KDE Apps
* [The Book of Secret Knowledge](https://github.com/trimstray/the-book-of-secret-knowledge) * [The Book of Secret Knowledge](https://github.com/trimstray/the-book-of-secret-knowledge)
* [Ultimate Cheatsheet](https://gist.github.com/bgoonz/be5c5be77169ef333b431bc37d331176) * [Ultimate Cheatsheet](https://gist.github.com/bgoonz/be5c5be77169ef333b431bc37d331176)
* [ArchWiki List of Applications](https://wiki.archlinux.org/title/list_of_applications) * [ArchWiki List of Applications](https://wiki.archlinux.org/title/list_of_applications)
* [LinuxAlt](https://www.linuxalt.com/) * [LinuxAlt](https://www.linuxalt.com/)
* [Plan9Port](https://9fans.github.io/plan9port/) / [GitHub](https://github.com/9fans/plan9port) * [Plan9Port](https://github.com/9fans/plan9port)
* [tlanyan](https://itlanyan.com/) * [tlanyan](https://itlanyan.com/)
* [Flatpak](https://flatpak.org/) or [Flathub](https://flathub.org/) - Flatpak App Repositories * [Flatpak](https://flatpak.org/) or [Flathub](https://flathub.org/) - Flatpak App Repositories
* [SnapCraft](https://snapcraft.io/store) - Snap Repository * [SnapCraft](https://snapcraft.io/store) - Snap Repository
* [GearLever](https://flathub.org/apps/it.mijorus.gearlever) or [AppImageLauncher](https://github.com/TheAssassin/AppImageLauncher) - Appimage Managers * [GearLever](https://flathub.org/apps/it.mijorus.gearlever) or [AppImageLauncher](https://github.com/TheAssassin/AppImageLauncher) - Appimage Managers
* [NixOS](https://nixos.org/) / [Manager](https://github.com/nix-community/home-manager), [AppImagePool](https://github.com/prateekmedia/appimagepool), [Zap](https://zap.srev.in) / [GitHub](https://github.com/srevinsaju/zap), [pkgx](https://pkgx.sh/), [AM](https://github.com/ivan-hc/AM) or [Homebrew](https://brew.sh/) - Package Managers * [NixOS](https://nixos.org/) / [Manager](https://github.com/nix-community/home-manager), [AppImagePool](https://github.com/prateekmedia/appimagepool), [Zap](https://github.com/srevinsaju/zap), [AM-Application-Manager](https://github.com/ivan-hc/AM-Application-Manager) or [Homebrew](https://brew.sh/) - Package Managers
* [cheat.sh](http://cheat.sh/) - App Repos * [cheat.sh](http://cheat.sh/) - App Repos
* [AppImageHub](https://www.appimagehub.com/), [AppImages](https://appimage.github.io/) or [Get AppImage](https://g.srev.in/get-appimage/) - Download Appimages * [AppImageHub](https://www.appimagehub.com/), [AppImages](https://appimage.github.io/) or [Get AppImage](https://g.srev.in/get-appimage/) - Download Appimages
* [yay](https://github.com/Jguer/yay), [paru](https://github.com/morganamilo/paru) or [aura](https://fosskers.github.io/aura/) - Arch User Repository Helpers * [yay](https://github.com/Jguer/yay), [paru](https://github.com/morganamilo/paru) or [aura](https://github.com/fosskers/aura) - Arch User Repository Helpers
* [Apps for GNOME](https://apps.gnome.org/) - GNOME Apps * [Apps for GNOME](https://apps.gnome.org/) - GNOME Apps
* [emplace](https://github.com/tversteeg/emplace) - System Package Sync * [KDE Applications](https://apps.kde.org/) - KDE Apps
* [IzzySoft Apt Repositories](https://apt.izzysoft.de/)
* [Repology](https://repology.org/) - Package Repository Tracker
* [Pling](https://www.pling.com/) / [2](https://www.linux-apps.com/) - Linux Apps and Themes * [Pling](https://www.pling.com/) / [2](https://www.linux-apps.com/) - Linux Apps and Themes
* [Pacstall](https://pacstall.dev/) - AUR-Inspired Package Manager for Ubuntu * [Pacstall](https://pacstall.dev/) - AUR-Inspired Package Manager for Ubuntu
@ -218,17 +111,15 @@
## ▷ Linux Video ## ▷ Linux Video
* ⭐ **[mpv](https://mpv.io/)** - Video Player * ⭐ **[mpv](https://mpv.io/)** - Video Player / [Frontend](https://github.com/celluloid-player/celluloid)
* ⭐ **[Haruna](https://apps.kde.org/haruna/)** or **[Celluloid](https://github.com/celluloid-player/celluloid)** - MPV Frontends
* ⭐ **[Kdenlive](https://apps.kde.org/kdenlive/)** or [Flowblade](https://jliljebl.github.io/flowblade/) - Video Editors
* [MultiPlex](https://github.com/pojntfx/multiplex) - Torrent Watch Party / Use VPN * [MultiPlex](https://github.com/pojntfx/multiplex) - Torrent Watch Party / Use VPN
* [Gromit MPX](https://github.com/bk138/gromit-mpx) - Screen Annotation * [Gromit MPX](https://github.com/bk138/gromit-mpx) - Screen Annotation
* [Spectacle](https://apps.kde.org/spectacle/) - Screen Recorder / Clipping * [Plumber](https://github.com/keshavbhatt/plumber) - Screen Recorder / Clipping
* [AV Linux](https://www.bandshed.net/avlinux/) - Video / Audio Editor * [AV Linux](https://www.bandshed.net/avlinux/) - Video / Audio Editor
* [REAL Video Enhancer](https://github.com/TNTwise/REAL-Video-Enhancer) - Video Upscaling * [Flowblade](https://github.com/jliljebl/flowblade) - Video Editor
* [4KTUBE](https://github.com/rishabh3354/4KTUBE) or [Video Downloader](https://github.com/Unrud/video-downloader) - Video Downloaders
* [Peek](https://github.com/phw/peek) - Simple Video / GIF recorder * [Peek](https://github.com/phw/peek) - Simple Video / GIF recorder
* [Linux-Fake-Background-Webcam](https://github.com/fangfufu/Linux-Fake-Background-Webcam/) - Fake Webcam Background * [Linux-Fake-Background-Webcam](https://github.com/fangfufu/Linux-Fake-Background-Webcam/) - Fake Webcam Background
* [fmedia](https://github.com/stsaz/fmedia) - Media Player and Converter
* [ani-cli](https://github.com/pystardust/ani-cli) - Anime Streaming Terminal * [ani-cli](https://github.com/pystardust/ani-cli) - Anime Streaming Terminal
* [Trackma](https://github.com/z411/trackma/) - Anime Tracking App * [Trackma](https://github.com/z411/trackma/) - Anime Tracking App
* [LiveCaptions](https://github.com/abb128/LiveCaptions) - Real-time Captions * [LiveCaptions](https://github.com/abb128/LiveCaptions) - Real-time Captions
@ -237,8 +128,7 @@
## ▷ Linux Audio ## ▷ Linux Audio
* 🌐 **[Awesome Linux Audio](https://gitlab.com/nodiscc/awesome-linuxaudio)** - Live Audio Resources * ⭐ **[SpotX-Bash](https://github.com/jetfir3/SpotX-Bash)**, [spotify-adblock](https://github.com/abba23/spotify-adblock) or [SpotifyNoPremium](https://github.com/Daksh777/SpotifyNoPremium) - Spotify Adblockers
* ⭐ **[SpotX-Bash](https://github.com/SpotX-Official/SpotX-Bash)**, [spotify-adblock](https://github.com/abba23/spotify-adblock) or [SpotifyNoPremium](https://github.com/Daksh777/SpotifyNoPremium) - Spotify Adblockers
* ⭐ **[SongRec](https://github.com/marin-m/SongRec)** or [Mousai](https://github.com/SeaDve/Mousai) - Song Identifiers * ⭐ **[SongRec](https://github.com/marin-m/SongRec)** or [Mousai](https://github.com/SeaDve/Mousai) - Song Identifiers
* [Tidal Hi-Fi](https://github.com/Mastermindzh/tidal-hifi) - Hi-Fi Tidal for Linux * [Tidal Hi-Fi](https://github.com/Mastermindzh/tidal-hifi) - Hi-Fi Tidal for Linux
* [cmus](https://cmus.github.io/) - Audio Player * [cmus](https://cmus.github.io/) - Audio Player
@ -248,37 +138,34 @@
* [Rhythmbox](https://wiki.gnome.org/Apps/Rhythmbox) - Audio Player * [Rhythmbox](https://wiki.gnome.org/Apps/Rhythmbox) - Audio Player
* [Amberol](https://gitlab.gnome.org/World/amberol) - Audio Player * [Amberol](https://gitlab.gnome.org/World/amberol) - Audio Player
* [Subsonic](https://github.com/twostraws/Subsonic) - Audio Player * [Subsonic](https://github.com/twostraws/Subsonic) - Audio Player
* [Fooyin](https://github.com/ludouzi/fooyin) - Audio Player
* [g4music](https://gitlab.gnome.org/neithern/g4music) - Audio Player * [g4music](https://gitlab.gnome.org/neithern/g4music) - Audio Player
* [dopamine](https://github.com/digimezzo/dopamine) - Audio Player * [dopamine](https://github.com/digimezzo/dopamine) - Audio Player
* [AudioTube](https://invent.kde.org/multimedia/audiotube) - Audio Player * [AudioTube](https://invent.kde.org/multimedia/audiotube) - Audio Player
* [Monophony](https://gitlab.com/zehkira/monophony) - YouTube Music Client * [Monophony](https://gitlab.com/Vistaus/monophony) - YouTube Music Client
* [ytermusic](https://github.com/ccgauche/ytermusic/) - YouTube Music Downloader * [Deezer Linux](https://github.com/aunetx/deezer-linux) - Deezer Client
* [Deezer Linux](https://github.com/aunetx/deezer-linux) or [DZR](https://github.com/yne/dzr) - Deezer Clients
* [Myuzi](https://gitlab.com/albanobattistella/myuzi) - Music Streaming App * [Myuzi](https://gitlab.com/albanobattistella/myuzi) - Music Streaming App
* [MusicPod](https://github.com/ubuntu-flutter-community/musicpod) - Podcast / Radio Player
* [HeadsetControl](https://github.com/Sapd/HeadsetControl) - Headset Settings Manager * [HeadsetControl](https://github.com/Sapd/HeadsetControl) - Headset Settings Manager
* [Pipewire](https://wiki.archlinux.org/title/PipeWire#Noise_suppression_for_voice) / [Plugins](https://github.com/wwmm/easyeffects) or [NoiseTorch](https://github.com/noisetorch/NoiseTorch) - Noise Suppression Software * [Pipewire](https://wiki.archlinux.org/title/PipeWire#Noise_suppression_for_voice) / [Plugins](https://github.com/wwmm/easyeffects) or [NoiseTorch](https://github.com/noisetorch/NoiseTorch) - Noise Suppression Software
* [Qtractor](https://qtractor.org/) - Audio Editor * [Qtractor](https://qtractor.org/) - Audio Editor
* [Calf Studio Gear](https://calf-studio-gear.org/) - Audio Production Plugins * [Calf Studio Gear](https://calf-studio-gear.org/) - Audio Production Plugins
* [Ensembles](https://github.com/ensemblesaw/ensembles-app) - Musical Performance Arranger * [Ensembles](https://github.com/ensemblesaw/ensembles-app) - Musical Performance Arranger
* [Viper4Linux](https://github.com/Audio4Linux/Viper4Linux) / [GUI](https://github.com/Audio4Linux/Viper4Linux-GUI) or [JDSP4Linux](https://github.com/Audio4Linux/JDSP4Linux) - Audio Processors * [Viper4Linux](https://github.com/Audio4Linux/Viper4Linux) / [GUI](https://github.com/Audio4Linux/Viper4Linux-GUI) or [JDSP4Linux](https://github.com/Audio4Linux/JDSP4Linux) - Audio Processors
* [Parlatype](https://www.parlatype.org/) - Audio Transcription
* [cava](https://github.com/karlstav/cava) - Console Audio Visualizer * [cava](https://github.com/karlstav/cava) - Console Audio Visualizer
* [Sunamu](https://github.com/NyaomiDEV/Sunamu) - Now Playing Songs Display
* [CasterSoundboard](https://github.com/JupiterBroadcasting/CasterSoundboard) - Soundboard * [CasterSoundboard](https://github.com/JupiterBroadcasting/CasterSoundboard) - Soundboard
*** ***
## ▷ Linux Images ## ▷ Linux Images
* ⭐ **[Flameshot](https://flameshot.org/)** or [Scrot](https://github.com/resurrecting-open-source-projects/scrot) - Screenshot Tools * ⭐ **[Flameshot](https://flameshot.org/)** - Screenshot Tool
* ⭐ **[TextSnatcher](https://textsnatcher.rf.gd/)** or [Frog](https://getfrog.app/) / [GitHub](https://github.com/TenderOwl/Frog/) - Image to Text * ⭐ **[TextSnatcher](https://github.com/RajSolai/TextSnatcher)** or [Frog](https://tenderowl.com/work/frog/) - Image to Text
* [photoshopCClinux](https://github.com/Gictorbit/photoshopCClinux) - Linux Photoshop Installer * [photoshopCClinux](https://github.com/Gictorbit/photoshopCClinux) - Linux Photoshop Installer
* [V4L2Loopback](https://github.com/umlaeute/v4l2loopback) - Create Virtual Cameras * [V4L2Loopback](https://github.com/umlaeute/v4l2loopback) - Create Virtual Cameras
* [Drawing](https://maoschanz.github.io/drawing/) - Drawing App * [Drawing](https://github.com/maoschanz/drawing) - Drawing App
* [Feh](https://feh.finalrewind.org/) or [NSXIV](https://github.com/nsxiv/nsxiv) - Image Viewer * [Feh](https://feh.finalrewind.org/) or [NSXIV](https://github.com/nsxiv/nsxiv) - Image Viewer
* [lsix](https://github.com/hackerb9/lsix) - View Images in Terminal * [lsix](https://github.com/hackerb9/lsix) - View Images in Terminal
* [Upscaler](https://gitlab.gnome.org/World/Upscaler) - Image Upscaler * [Upscaler](https://gitlab.com/TheEvilSkeleton/Upscaler) - Image Upscaler
* [Trimage](https://trimage.org/) or [Curtail](https://github.com/Huluti/Curtail) - Image Compressor * [Trimage](https://trimage.org/) or [Curtail](https://github.com/Huluti/Curtail) - Image Compressor
* [MkPosters](https://github.com/patrick-kidger/mkposters) - Turn Markdown Files into Posters * [MkPosters](https://github.com/patrick-kidger/mkposters) - Turn Markdown Files into Posters
* [Rapid](https://damonlynch.net/rapid/) - Quick Linux Photo Importer * [Rapid](https://damonlynch.net/rapid/) - Quick Linux Photo Importer
@ -289,26 +176,22 @@
* 🌐 **[Awesome-ttygames](https://github.com/ligurio/awesome-ttygames)** - Unix ASCII Games * 🌐 **[Awesome-ttygames](https://github.com/ligurio/awesome-ttygames)** - Unix ASCII Games
Linux Gaming Guide Linux Gaming Guide
* 🌐 **[Are We Anti-Cheat Yet?](https://areweanticheatyet.com/)** - Anti-Cheat Game Database / GNU/Linux & Wine/Proton Compatibility * ⭐ **[Linux Gaming Guide](https://github.com/rimsiw/linux-gaming-omg)** / [2](https://web.archive.org/web/20221022121735/https://www.reddit.com/r/Piracy/comments/ndrtlf/comment/gyccwhk/?context=3) / [3](https://www.reddit.com/r/LinuxCrackSupport/wiki/index) - Linux Gaming Guides
* ⭐ **[Comprehensive Gaming Guide](https://linux-gaming.kwindu.eu/index.php?title=Main_Page)** / [2](https://github.com/rimsiw/linux-gaming-omg) / [3](https://web.archive.org/web/20221022121735/https://www.reddit.com/r/Piracy/comments/ndrtlf/comment/gyccwhk/?context=3) / [4](https://www.reddit.com/r/LinuxCrackSupport/wiki/index) - Linux Gaming Guides * ⭐ **[protondb](https://www.protondb.com/)** - Proton Compatibility Descriptions
* ⭐ **[protondb](https://www.protondb.com/)**- Proton Compatibility Descriptions / [Steam Extension](https://github.com/Trsnaqe/protondb-community-extension)
* ⭐ **[Lutris](https://lutris.net/)** - Games Manager * ⭐ **[Lutris](https://lutris.net/)** - Games Manager
* ⭐ **[proton-ge-custom](https://github.com/GloriousEggroll/proton-ge-custom)** - Play Windows Games on Linux / [Guide](https://www.reddit.com/r/LinuxCrackSupport/comments/yqfirv/how_to_install_fitgirl_or_dodi_windows_repacks_in/) * ⭐ **[proton-ge-custom](https://github.com/GloriousEggroll/proton-ge-custom)** - Play Windows Games on Linux / [Guide](https://www.reddit.com/r/LinuxCrackSupport/comments/yqfirv/how_to_install_fitgirl_or_dodi_windows_repacks_in/)
* ⭐ **[ProtonUp-QT](https://github.com/DavidoTek/ProtonUp-Qt/)** - Install / Manage Proton-GE for Steam and Wine-GE for Lutris * ⭐ **[ProtonUp-QT](https://github.com/DavidoTek/ProtonUp-Qt/)** - Install / Manage Proton-GE for Steam and Wine-GE for Lutris
* ⭐ **[Kapital Sin](https://www.kapitalsin.com/forum/index.php?board=4.0)** - Linux Games / Use [Translator](https://github.com/FilipePS/Traduzir-paginas-web#install) * ⭐ **[Kapital Sin](https://www.kapitalsin.com/forum/index.php?board=4.0)** - Linux Games / Use [Translator](https://github.com/FilipePS/Traduzir-paginas-web#install)
* ⭐ **[Torrminatorr](https://forum.torrminatorr.com/)** - Linux Games * ⭐ **[Torrminatorr](https://forum.torrminatorr.com/)** - Linux Games
* ⭐ **[johncena141](https://1337x.to/user/johncena141/)** - Linux Games / [Support](https://gitlab.com/jc141x/portal) * ⭐ **[johncena141](https://1337x.to/user/johncena141/)** - Linux Games / [Support](https://gitlab.com/jc141x/portal)
* [GameHub](https://tkashkin.github.io/projects/gamehub/), [Gnome Games](https://wiki.gnome.org/Apps/Games), [UnderTaker141](https://github.com/AbdelrhmanNile/UnderTaker141) or [Steal](https://github.com/AbdelrhmanNile/steal) - Game Libraries / Launchers * [GameHub](https://tkashkin.github.io/projects/gamehub/), [UnderTaker141](https://github.com/AbdelrhmanNile/UnderTaker141) or [Steal](https://github.com/AbdelrhmanNile/steal) - Game Managers
* [RuTracker](https://rutracker.org/forum/viewforum.php?f=899) - Linux Games / [Translator](https://github.com/FilipePS/Traduzir-paginas-web#install) / [Wiki](http://rutracker.wiki/) / [Rules](https://rutracker.org/forum/viewtopic.php?t=1045) * [RuTracker](https://rutracker.org/forum/viewforum.php?f=899) - Linux Games / [Translator](https://github.com/FilipePS/Traduzir-paginas-web#install) / [Wiki](http://rutracker.wiki/) / [Rules](https://rutracker.org/forum/viewtopic.php?t=1045)
* [winesapOS](https://github.com/LukeShortCloud/winesapOS) - Play Games on Storage Devices * [winesapOS](https://github.com/LukeShortCloud/winesapOS) - Play Games on Storage Devices
* [Gamebuntu](https://discourse.ubuntu.com/t/gamebuntu/25544/13) - Setup Gaming Environment on Ubuntu / [GitLab](https://gitlab.com/rswat09/gamebuntu) * [Gamebuntu](https://discourse.ubuntu.com/t/gamebuntu/25544/13) - Setup Gaming Environment on Ubuntu / [GitLab](https://gitlab.com/rswat09/gamebuntu)
* [RetroPlus](https://github.com/Vysp3r/RetroPlus) - ROM Downloader
* [wine-wayland](https://github.com/varmd/wine-wayland) - Play DX9/DX11 / Vulkan Games * [wine-wayland](https://github.com/varmd/wine-wayland) - Play DX9/DX11 / Vulkan Games
* [steam-tui](https://github.com/dmadisetti/steam-tui) - Rust TUI for Steam * [steam-tui](https://github.com/dmadisetti/steam-tui) - Rust TUI for Steam
* [steam-cli](https://github.com/berenm/steam-cli) - CLI for Steam * [steam-cli](https://github.com/berenm/steam-cli) - CLI for Steam
* [Luxtorpeda](https://github.com/luxtorpeda-dev/luxtorpeda) or [Boxtron](https://github.com/dreamer/boxtron) - Run Steam Games on Linux * [Luxtorpeda](https://github.com/luxtorpeda-dev/luxtorpeda) or [Boxtron](https://github.com/dreamer/boxtron) - Run Steam Games on Linux
* [RetroDECK](https://retrodeck.net/) - Emulator for Steam Deck
* [CryoUtilities](https://github.com/CryoByte33/steam-deck-utilities) - Steam Deck Utilities
* [GameScope](https://github.com/ValveSoftware/gamescope) - Steam Session Compositing Window Manager * [GameScope](https://github.com/ValveSoftware/gamescope) - Steam Session Compositing Window Manager
* [SamRewritten](https://github.com/PaulCombal/SamRewritten) - Steam Achievement Manager * [SamRewritten](https://github.com/PaulCombal/SamRewritten) - Steam Achievement Manager
* [Steam for Linux](https://github.com/ValveSoftware/steam-for-linux) - Steam Linux Beta Issue Tracker * [Steam for Linux](https://github.com/ValveSoftware/steam-for-linux) - Steam Linux Beta Issue Tracker
@ -321,13 +204,12 @@ Linux Gaming Guide
* [Liquorix](https://liquorix.net/), [Xanmod](https://xanmod.org/) or [Frogging](https://github.com/Frogging-Family/linux-tkg) - Linux Gaming Kernels * [Liquorix](https://liquorix.net/), [Xanmod](https://xanmod.org/) or [Frogging](https://github.com/Frogging-Family/linux-tkg) - Linux Gaming Kernels
* [Gamemode](https://github.com/FeralInteractive/gamemode) - Linux System Optimizer * [Gamemode](https://github.com/FeralInteractive/gamemode) - Linux System Optimizer
* [LibreGaming](https://github.com/Ahmed-Al-Balochi/LibreGaming) - Linux Game Package Downloader * [LibreGaming](https://github.com/Ahmed-Al-Balochi/LibreGaming) - Linux Game Package Downloader
* [Prism43](https://github.com/DomHeadroom/Prism43) - Prism Launcher / Unlocker
* [mcpelauncher](https://github.com/minecraft-linux/mcpelauncher-manifest) - Minecraft Android Bedrock Edition Launcher for Linux * [mcpelauncher](https://github.com/minecraft-linux/mcpelauncher-manifest) - Minecraft Android Bedrock Edition Launcher for Linux
* [VinegarHQ](https://vinegarhq.org/) - Bootstrapper for Roblox / [Studio Only](https://vinegarhq.org/Home/rol_faq.html) * [VinegarHQ](https://vinegarhq.org/) - Bootstrapper for Roblox Player / Studio
* [Anime Game Launcher](https://github.com/an-anime-team/an-anime-game-launcher) / [Discord](https://discord.gg/ck37X6UWBp) - Genshin Impact Launcher * [Bloxstrap](https://discord.com/invite/nKjV3mGq6R) - Roblox Launcher
* [Anime Game Launcher](https://github.com/an-anime-team/an-anime-game-launcher) - Genshin Impact Launcher
* [among-sus](https://git.sr.ht/~martijnbraam/among-sus) - Play Among Us in your Terminal (Recreation) * [among-sus](https://git.sr.ht/~martijnbraam/among-sus) - Play Among Us in your Terminal (Recreation)
* [Gameboy.live](https://github.com/HFO4/gameboy.live) - Terminal Game Boy Emulator * [Gameboy.live](https://github.com/HFO4/gameboy.live) - Terminal Game Boy Emulator
* [QuickPassthrough](https://github.com/HikariKnight/quickpassthrough) - Simplified Qemu GPU Passthrough
* [Gambit](https://github.com/maaslalani/gambit) - Terminal Chess * [Gambit](https://github.com/maaslalani/gambit) - Terminal Chess
* [Sssnake](https://github.com/AngelJumbo/sssnake) - Terminal Snake * [Sssnake](https://github.com/AngelJumbo/sssnake) - Terminal Snake
@ -337,43 +219,91 @@ Linux Gaming Guide
## ▷ Adblock / Privacy ## ▷ Adblock / Privacy
* ↪️ **[Linux 2FA](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/adblock-vpn-privacy#wiki_.25B7_password_privacy_.2F_2fa)** * ↪️ **[Linux 2FA](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/adblock-vpn-privacy#wiki_.25B7_two-factor_authentication)**
* ⭐ **[Arch Security Wiki](https://wiki.archlinux.org/title/Security)**, [Linux Hardening](https://vez.mrsk.me/linux-hardening.html) / [2](https://madaidans-insecurities.github.io/guides/linux-hardening.html) or [How to Secure a Linux Server](https://github.com/imthenachoman/How-To-Secure-A-Linux-Server) - Linux Security Guides * ⭐ **[Arch Security Wiki](https://wiki.archlinux.org/title/Security)**, [Linux Hardening](https://vez.mrsk.me/linux-hardening.html) / [2](https://madaidans-insecurities.github.io/guides/linux-hardening.html) or [How to Secure a Linux Server](https://github.com/imthenachoman/How-To-Secure-A-Linux-Server) - Linux Security Guides
* ⭐ **[SpoofDPI](https://github.com/xvzc/SpoofDPI)** or [zapret](https://github.com/bol-van/zapret) - DPI circumvention * ⭐ **[SpoofDPI](https://github.com/xvzc/SpoofDPI)** or [zapret](https://github.com/bol-van/zapret) - DPI circumvention
* ⭐ **[CryptSetup](https://gitlab.com/cryptsetup/cryptsetup)** or [Tomb](https://dyne.org/software/tomb/) - File Encryption * ⭐ **[CryptSetup](https://gitlab.com/cryptsetup/cryptsetup)** or [Tomb](https://dyne.org/software/tomb//) - File Encryption
* [Securely Wipe Disk](https://wiki.archlinux.org/title/Securely_wipe_disk) or [SSD Memory Cell Clearing](https://wiki.archlinux.org/title/Solid_state_drive/Memory_cell_clearing) - Linux Disk Wipe Guides
* [JShielder](https://github.com/Jsitech/JShielder) - Hardening Script for Linux Servers * [JShielder](https://github.com/Jsitech/JShielder) - Hardening Script for Linux Servers
* [SShuttle](https://github.com/sshuttle/sshuttle) - Proxy * [SShuttle](https://github.com/sshuttle/sshuttle) - Proxy
* [Lynis](https://github.com/CISOfy/lynis) - Linux Security Auditing Tool * [Lynis](https://github.com/CISOfy/lynis) - Linux Security Auditing Tool
* [Lockigest](https://elma.dev/work/lockigest/) / [GitHub](https://github.com/elmsec/lockigest) - Screen Locker * [Lockigest](https://github.com/elmsec/lockigest) - Screen Locker
* [Mistborn](https://gitlab.com/cyber5k/mistborn) - Manage Cloud Security Apps * [Mistborn](https://gitlab.com/cyber5k/mistborn) - Manage Cloud Security Apps
* [OpenSnitch](https://github.com/evilsocket/opensnitch) or [gufw](https://github.com/costales/gufw) - Linux Firewalls * [OpenSnitch](https://github.com/evilsocket/opensnitch) or [gufw](https://github.com/costales/gufw) - Linux Firewalls
* [Tracee](https://aquasecurity.github.io/tracee/latest) - Runtime Security and Forensics * [Tracee](https://github.com/aquasecurity/tracee) - Runtime Security and Forensics
* [Mofolinux](https://mofolinux.com/), [Tails](https://tails.boum.org/) or [Kodachi](https://www.digi77.com/linux-kodachi/) - Privacy-Based Operating System * [Mofolinux](https://mofolinux.com/), [Tails](https://tails.boum.org/) or [Kodachi](https://www.digi77.com/linux-kodachi/) - Privacy-Based Operating System
* [OpenVPN Wrapper](https://github.com/slingamn/namespaced-openvpn) - VPN Tunnel * [OpenVPN Wrapper](https://github.com/slingamn/namespaced-openvpn) - VPN Tunnel
* [Openconnect VPN Server](https://ocserv.gitlab.io/www/index.html) - Linux SSL VPN Server * [Openconnect VPN Server](https://ocserv.gitlab.io/www/index.html) - Linux SSL VPN Server
* [DSVPN](https://github.com/jedisct1/dsvpn) - Self-Hosted VPN * [arch-delugevpn](https://github.com/binhex/arch-delugevpn) - Docker with Torrent client and VPN on Arch Linux base
* [wireguird](https://github.com/UnnoTed/wireguird) - Wireguard GUI * [wireguird](https://github.com/UnnoTed/wireguird) - Wireguard GUI
* [Netbird](https://github.com/netbirdio/netbird) or [vnStat](https://github.com/vergoh/vnstat) - Network Monitors * [vnStat](https://github.com/vergoh/vnstat) - Network Monitor
* [Howdy](https://github.com/boltgolt/howdy) - Linux Facial Authentication * [Howdy](https://github.com/boltgolt/howdy) - Linux Facial Authentication
* [ShuffleStacks](https://shufflecake.net/) - Create Hidden Volumes * [ShuffleStacks](https://shufflecake.net/) - Create Hidden Volumes
* [Collision](https://flathub.org/apps/details/dev.geopjr.Collision) - Check File Hashes * [Collision](https://flathub.org/apps/details/dev.geopjr.Collision) - Check File Hashes
* [WhoAmI Project](https://owerdogan.github.io/whoami-project) / [GitHub](https://github.com/owerdogan/whoami-project) - Privacy / Anonymity Tool * [WhoAmI Project](https://github.com/owerdogan/whoami-project) - Privacy / Anonymity Tool
* [Yubikey Full Disk Encryption](https://github.com/agherzan/yubikey-full-disk-encryption) - Use YubiKey to unlock a LUKS Partition * [Yubikey Full Disk Encryption](https://github.com/agherzan/yubikey-full-disk-encryption) - Use YubiKey to unlock a LUKS Partition
* [DNSWarden](https://dnswarden.com/) / [GitHub](https://github.com/bhanupratapys/dnswarden) - DNS Adblocking * [BhanUpratpys](https://github.com/bhanupratapys/dnswarden) - DNS Adblocking
* [Firejail](https://firejail.wordpress.com/) or [Bubblewrap](https://github.com/containers/bubblewrap) - Sandboxing tools * [Firejail](https://firejail.wordpress.com/) or [Bubblewrap](https://github.com/containers/bubblewrap) - Sandboxing tools
* [GoogleTeller](https://github.com/berthubert/googerteller) - Google Tracking Notifications * [GoogleTeller](https://github.com/berthubert/googerteller) - Google Tracking Notifications
*** ***
## ▷ Linux System
* 🌐 **[Awesome Gnome](https://github.com/Kazhnuz/awesome-gnome)** - GNOME Resources
* ⭐ **[Linux.Chat](https://discord.gg/linuxchat)**, [Linux x Technology](https://linuxdiscord.com/), [Ezlinux](https://ezlinux.net/) or [Discord-Linux](https://discord.gg/discord-linux) - Linux Discussion / Forums
* ⭐ **[Archwiki](https://wiki.archlinux.org/)** - Arch Linux Wiki / [Manuals](https://man.archlinux.org/) / [TUI](https://codeberg.org/theooo/mantra.py)
* ⭐ **[Ventoy](https://github.com/ventoy/Ventoy)** - Create Bootable USB Linux Drives
* ⭐ **[Btop](https://github.com/aristocratos/btop)**, **[pfetch](https://github.com/dylanaraps/pfetch)**, **[MangoHud](https://github.com/flightlessmango/MangoHud)**, [CPU-X](https://github.com/TheTumultuousUnicornOfDarkness/CPU-X), [vtop](https://github.com/MrRio/vtop), [neofetch](https://github.com/dylanaraps/neofetch) / [Themes](https://github.com/chick2d/neofetch-themes) or [LM Sensors](https://github.com/lm-sensors/lm-sensors) - System Info / Resource Monitors
* [SysmonForLinux](https://github.com/Sysinternals/SysmonForLinux) - Monitor / Log System Activity
* [Nanobench](https://github.com/andreas-abel/nanoBench) - CPU Microbenchmark / [Documentation](https://nanobench.ankerl.com/)
* [ScanMem](https://github.com/scanmem/scanmem) - Memory Scanner / Debugger
* [Linux-dash](https://github.com/tariqbuilds/linux-dash) - Web-based System Dashboard
* [pacwall](https://github.com/Kharacternyk/pacwall) - Live Wallpaper Dependency Graph / Package Status
* [keyd](https://github.com/rvaiya/keyd) or [xremap](https://github.com/k0kubun/xremap) - Keyboard Remapping
* [auto-cpufreq](https://github.com/AdnanHodzic/auto-cpufreq) - CPU Speed & Power Optimization Automation
* [node-startup](https://github.com/ralyodio/node-startup) - Startup Script
* [die.net](https://linux.die.net/) - Linux Documentation
* [HowtoForge](https://www.howtoforge.com/), [Sindresorhus Guides](https://github.com/sindresorhus/guides), [Erik Dubois](https://www.youtube.com/c/ErikDubois), [LinuxJourney](https://linuxjourney.com/), [Mayfrost Guides](https://github.com/mayfrost/guides) or [Mental Outlaw](https://www.youtube.com/channel/UC7YOGHUfC1Tb6E4pudI9STA) - Linux Guides / Tutorials
* [howtodebuntu](https://github.com/themagicalmammal/howtolinux) - Tweaks for Debian Based Distros
* [winapps](https://github.com/Fmstrat/winapps) - Run Windows Apps on Linux
* [WoeUSB](https://github.com/WoeUSB/WoeUSB) or [Windows2USB](https://github.com/ValdikSS/windows2usb) - Create Bootable USB Windows Drives
* [NetBoot](https://netboot.xyz/) - Distro Installer
* [CloverBootloader](https://github.com/CloverHackyColor/CloverBootloader/) - Windows, Mac & Linux Bootloader / [Config](https://mackie100projects.altervista.org/)
* [zfsBootMenu](https://github.com/zbm-dev/zfsbootmenu) - ZFS Bootloader
* [Linux Heads](https://osresearch.net/) - Minimal CoreBoot / [GitHub](https://github.com/osresearch/heads)
* [GParted](https://gparted.org/) - Partition Manager
* [ArchTitus](https://github.com/ChrisTitusTech/ArchTitus), [archinstall](https://github.com/archlinux/archinstall) or [Anarchy](https://anarchyinstaller.gitlab.io/) - Arch Linux Installer
* [Pop!_OS Shell](https://github.com/pop-os/shell) - Pop-Shell for GNOME
* [OneClickDesktop](https://github.com/Har-Kuun/OneClickDesktop) - One-Click Remote Desktop
* [InstantBox](https://github.com/instantbox/instantbox) - Temporary Linux Systems
* [CoreELEC](https://github.com/CoreELEC/CoreELEC) or [LibreELEC](https://libreelec.tv/) - Kodi-Based Operating System
* [WSL](https://learn.microsoft.com/en-us/windows/wsl/) or [Tunic](https://github.com/mikeslattery/tunic) - Run Linux on Windows / [Resources](https://github.com/sirredbeard/Awesome-WSL) / [Startup Launcher](https://github.com/nullpo-head/wsl-distrod) / [Wayland / X Server](https://github.com/microsoft/wslg)
* [DistroSea](https://distrosea.com/) or [JSLinux](https://bellard.org/jslinux/) - Linux Browser Emulators
* [Vivek9Patel](https://vivek9patel.github.io/) - Run Ubuntu on Browser / [GitHub](https://github.com/vivek9patel/vivek9patel.github.io)
* [Boxes](https://wiki.gnome.org/Apps/Boxes) - Virtual Machine Manager
* [Linux-KVM](https://www.linux-kvm.org/page/Downloads) - Kernel-Based Virtual Machine
* [Ubuntu VNC](https://web.archive.org/web/20230729065457/https://cdn.discordapp.com/attachments/787671932957884416/787672107848302612/guicolab.ipynb) - Free Ubuntu VNC
* [OSX-KVM](https://github.com/kholia/OSX-KVM), [OneClick-macOS-Simple-KVM](https://github.com/notAperson535/OneClick-macOS-Simple-KVM) or [macOS-Simple-KVM](https://github.com/foxlet/macOS-Simple-KVM) - macOS Virtual
* [kmon](https://kmon.cli.rs/) - Kernel Manager and Activity Monitor
* [Kernel Map](https://makelinux.github.io/kernel/map/) - Interactive Linux Kernel Map
* [UbuntuCleaner](https://github.com/gerardpuig/ubuntu-cleaner) - Easily clean Ubuntu(-based) Systems
* [TimeShift](https://github.com/linuxmint/timeshift) - System Restore / Backup
* [SystemRescue](https://www.system-rescue.org/) or [Super Grub2 Disk](https://www.supergrubdisk.org/super-grub2-disk/) - Bootable System Rescue Toolkits
* [Boot-Repair](https://help.ubuntu.com/community/Boot-Repair) - Grub Repair Guide for Linux Systems
* [sbupdate](https://github.com/andreyv/sbupdate) - Generate & Sign kernel images for UEFI Secure Boot Arch Linux
* [coreboot](https://coreboot.org/) or [Libreboot](https://libreboot.org/) - Replace Proprietary BIOS/UEFI Firmware
* [Hardcode Tray](https://github.com/bilelmoussaoui/Hardcode-Tray) - Hardcoded Tray Icon Fix
* [open-gpu-kernel-modules](https://github.com/NVIDIA/open-gpu-kernel-modules) - NVIDIA Linux Open GPU Kernel Module
* [nosystemd](https://nosystemd.org/) - Alternatives to Systemd
***
## ▷ Linux Internet ## ▷ Linux Internet
* ⭐ **[Soulseek](https://www.slsknet.org/SoulseekQt/Linux/SoulseekQt-2018-1-30-64bit-appimage.tgz)** - File Sharing App * ⭐ **[Soulseek](https://www.slsknet.org/SoulseekQt/Linux/SoulseekQt-2018-1-30-64bit-appimage.tgz)** - File Sharing App
* ⭐ **[qBittorrent](https://github.com/qbittorrent/qBittorrent/wiki/Installing-qBittorrent#linux)** / [Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_qbitorrent_tools), **[rTorrent](https://rakshasa.github.io/rtorrent/)** / [2](https://github.com/rakshasa/rtorrent), [BitFlu](https://bitflu.workaround.ch/), [kTorrent](https://apps.kde.org/ktorrent/) / [2](https://invent.kde.org/network/ktorrent) - Linux Torrent Clients * ⭐ **[qBittorrent](https://github.com/qbittorrent/qBittorrent/wiki/Installing-qBittorrent#linux)** / [Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_qbitorrent_tools), **[rTorrent](https://rakshasa.github.io/rtorrent/)** / [2](https://github.com/rakshasa/rtorrent), [BitFlu](https://bitflu.workaround.ch/), [kTorrent](https://apps.kde.org/ktorrent/) / [2](https://invent.kde.org/network/ktorrent) - Linux Torrent Clients
* [RuTorrent](https://github.com/Novik/ruTorrent) or [flood](https://flood.js.org/) - RTorrent Web Frontend / [Themes](https://github.com/artyuum/3rd-party-ruTorrent-Themes) * [RuTorrent](https://github.com/Novik/ruTorrent) or [flood](https://flood.js.org/) - RTorrent Web Frontend / [Themes](https://github.com/artyuum/3rd-party-ruTorrent-Themes)
* rTorrent Tools - [Extended](http://rtorrent-ps.readthedocs.io/) / [Tools](https://pyrocore.readthedocs.org/) / [GitHub](https://github.com/pyroscope/pyrocore) / [Mods](https://calomel.org/rtorrent_mods.html) * rTorrent Tools - [Extended](https://github.com/pyroscope/rtorrent-ps) / [Tools](https://github.com/pyroscope/pyrocore) / [Mods](https://calomel.org/rtorrent_mods.html)
* [BTFS](https://github.com/johang/btfs) - Bittorrent Filesystem
* [arch-delugevpn](https://github.com/binhex/arch-delugevpn) - Docker with Torrent client and VPN on Arch Linux base
* [Luakit](https://luakit.github.io/) - Lightweight Linux Browser * [Luakit](https://luakit.github.io/) - Lightweight Linux Browser
* [browsh](https://www.brow.sh/) - Text Based Browser * [browsh](https://www.brow.sh/) - Text Based Browser
* [ElectronMail](https://github.com/vladimiry/ElectronMail) or [dodo](https://github.com/akissinger/dodo) - Email Clients * [ElectronMail](https://github.com/vladimiry/ElectronMail) or [dodo](https://github.com/akissinger/dodo) - Email Clients
@ -381,61 +311,58 @@ Linux Gaming Guide
* [pass](https://www.passwordstore.org/) - Unix Password Manager * [pass](https://www.passwordstore.org/) - Unix Password Manager
* [Seahorse](https://gitlab.gnome.org/GNOME/seahorse) or [GnomeKeyring](https://wiki.gnome.org/Projects/GnomeKeyring) - GNOME Password Manager * [Seahorse](https://gitlab.gnome.org/GNOME/seahorse) or [GnomeKeyring](https://wiki.gnome.org/Projects/GnomeKeyring) - GNOME Password Manager
* [gopass](https://www.gopass.pw/) - CLI Password Manager * [gopass](https://www.gopass.pw/) - CLI Password Manager
* [KGet](https://apps.kde.org/kget/), [Varia](https://github.com/giantpinkrobots/varia) or [GabutDM](https://github.com/gabutakut/gabutdm) - Download Managers * [KGet](https://apps.kde.org/kget/) or [GabutDM](https://github.com/gabutakut/gabutdm) - Download Manager
* [easy-google-drive-downloader](https://github.com/mzramna/easy-google-drive-downloader) or [GDown](https://github.com/wkentaro/gdown) - Google Drive Downloader * [easy-google-drive-downloader](https://github.com/mzramna/easy-google-drive-downloader) or [GDown](https://github.com/wkentaro/gdown) - Google Drive Downloader
* [google-drive-ocamlfuse](https://github.com/astrada/google-drive-ocamlfuse) - Mount GDrive * [google-drive-ocamlfuse](https://github.com/astrada/google-drive-ocamlfuse) - Mount GDrive
* [maestral](https://maestral.app/) - Dropbox Client * [maestral](https://maestral.app/) - Dropbox Client
* [apt-fast](https://github.com/ilikenwf/apt-fast) - APT Download Accelerator * [apt-fast](https://github.com/ilikenwf/apt-fast) - APT Download Accelerator
* [Nala](https://gitlab.com/volian/nala) - APT Frontend * [Nala](https://gitlab.com/volian/nala) - APT Frontend
* [aMule](https://www.amule.org/) - eMule-like P2P Client * [aMule](https://www.amule.org/) - eMule-like P2P Client
* [Linux Router](https://github.com/garywill/linux-router) - Set Linux as Router
* [EasyPanel](https://easypanel.io/) - Server Control Panel * [EasyPanel](https://easypanel.io/) - Server Control Panel
* [Wayland](https://wayland.freedesktop.org/) - Linux Display Server Protocol / [Tools](https://arewewaylandyet.com/)
* [river](https://github.com/riverwm/river/), [LabWC](https://github.com/labwc/labwc), [Hyprland](https://hyprland.org/), [kiwmi](https://github.com/buffet/kiwmi), [picom](https://github.com/yshui/picom), [wayfire](https://github.com/WayfireWM/wayfire/) or [sway](https://swaywm.org/) - Wayland Compositors
* [Compix](https://github.com/xeome/compix) - Xorg Compositor
* [Free Cloud Linux Server](https://rentry.co/FMHYBase64#free-cloud-linux-server) - Free Cloud Server Guide * [Free Cloud Linux Server](https://rentry.co/FMHYBase64#free-cloud-linux-server) - Free Cloud Server Guide
* [yet another bench script](https://github.com/masonr/yet-another-bench-script) - Server Performance Script * [yet another bench script](https://github.com/masonr/yet-another-bench-script) - Server Performance Script
* [Bandwhich](https://github.com/imsnif/bandwhich) - Terminal Bandwidth Utilization Tool * [Bandwhich](https://github.com/imsnif/bandwhich) - Terminal Bandwidth Utilization Tool
* [Rang3r](https://github.com/floriankunushevci/rang3r) - IP / Port Scanner * [Rang3r](https://github.com/floriankunushevci/rang3r) - IP / Port Scanner
* [sttr](https://github.com/abhimanyu003/sttr) - Base64 Encryption / Decryption TUI * [sttr](https://github.com/abhimanyu003/sttr) - Base64 Encryption / Decryption TUI
* [Knapsu](https://knapsu.eu/plex/) or [Cloudbox](https://cloudbox.works/) - Media Server * [Knapsu](https://knapsu.eu/plex/) or [Cloudbox](https://cloudbox.works/) - Media Server
* [ansible-hms-docker](https://github.com/ahembree/ansible-hms-docker) or [DockSTARTer](https://github.com/GhostWriters/DockSTARTer) - Automated Docker Media Server Setups * [ansible-hms-docker](https://github.com/ahembree/ansible-hms-docker) - Automated Media Server Setup
* [Netflix Proxy](https://github.com/ab77/netflix-proxy/) - Streaming Service Proxy * [Netflix Proxy](https://github.com/ab77/netflix-proxy/) - Streaming Service Proxy
* [Docket-Jacket](https://github.com/linuxserver/docker-jackett) - Docker Jacket Container * [Docket-Jacket](https://github.com/linuxserver/docker-jackett) - Docker Jacket Container
* [swizzin](https://swizzin.ltd/) - Seedbox for Ubuntu / Debian * [swizzin](https://swizzin.ltd/) - Seedbox for Ubuntu / Debian
* [rtinst](https://github.com/arakasi72/rtinst) - Seedbox Installation Script for Ubuntu / Debian * [rtinst](https://github.com/arakasi72/rtinst) - Seedbox Installation Script for Ubuntu / Debian
* [SeedSync](https://github.com/ipsingh06/seedsync) - Sync your Seedbox * [SeedSync](https://github.com/ipsingh06/seedsync) - Sync your Seedbox
* [GNU Social](https://gnusocial.network/) - Self-Hosted Social Networking Platform * [GNU Social](https://gnusocial.network/) - Self-Hosted Social Networking Platform
* [Teams for Linux](https://github.com/IsmaelMartinez/teams-for-linux) - Collaboration Platform
* [Hexchat](https://hexchat.github.io/), [Adium](https://adium.im/), [Polari](https://wiki.gnome.org/Apps/Polari), [Irssi](https://github.com/irssi/irssi) or [Weechat](https://weechat.org/) - IRC Clients * [Hexchat](https://hexchat.github.io/), [Adium](https://adium.im/), [Polari](https://wiki.gnome.org/Apps/Polari), [Irssi](https://github.com/irssi/irssi) or [Weechat](https://weechat.org/) - IRC Clients
* [Dino](https://dino.im/) - XMPP Client * [Dino](https://dino.im/) - XMPP Client
* [gurk-rs](https://github.com/boxdot/gurk-rs) - Signal Client * [gurk-rs](https://github.com/boxdot/gurk-rs) - Signal Client
* [ZapZap](https://rtosta.com/zapzap-web/) - WhatsApp Client * [YouTube-Viewer](https://github.com/trizen/youtube-viewer) - YouTube Linux Client / [Fork](https://github.com/trizen/pipe-viewer)
* [YouTube-Viewer](https://github.com/trizen/youtube-viewer), [Pipe Viewer](https://github.com/trizen/pipe-viewer) or [Pipeline](https://gitlab.com/schmiddi-on-mobile/pipeline) - YouTube Clients
* [Giara](https://aur.archlinux.org/packages/giara/) - Reddit Client * [Giara](https://aur.archlinux.org/packages/giara/) - Reddit Client
* [BetterDiscordctl](https://github.com/bb010g/betterdiscordctl) - Modded Discord Client / [Guide](https://gist.github.com/ObserverOfTime/d7e60eb9aa7fe837545c8cb77cf31172) * [BetterDiscordctl](https://github.com/bb010g/betterdiscordctl) - Modded Discord Client / [Guide](https://gist.github.com/ObserverOfTime/d7e60eb9aa7fe837545c8cb77cf31172)
* [Nextcord](https://docs.nextcord.dev/) - Discord API Wrapper * [Nextcord](https://github.com/nextcord/nextcord) - Discord API Wrapper
* [Discover](https://github.com/trigg/Discover) - Discord Overlay * [Discover](https://github.com/trigg/Discover) - Discord Overlay
* [dvm](https://github.com/diced/dvm) - Discord Version Manager * [dvm](https://github.com/diced/dvm) - Discord Version Manager
* [Rofimoji](https://github.com/fdw/rofimoji), [Shmoji](https://github.com/biox/shmoji) - Emoji CLI's * [Rofimoji](https://github.com/fdw/rofimoji), [Shmoji](https://github.com/biox/shmoji) - Emoji CLI's
* [Flash 32 Download](https://pastebin.com/0fNaeceW)
*** ***
## ▷ File Tools ## ▷ File Tools
* 🌐 **[Linux File Backup](https://github.com/restic/others)** - File Backup App List * 🌐 **[Linux File Backup](https://github.com/restic/others)** - File Backup App List
* ⭐ **[Warpinator](https://github.com/linuxmint/warpinator)**, [rQuickshare](https://github.com/Martichou/rquickshare), [Magic Wormhole](https://github.com/magic-wormhole/magic-wormhole), [syncthing](https://syncthing.net/) / [Tray Support](https://martchus.github.io/syncthingtray/), [portal](https://github.com/SpatiumPortae/portal), [Zrok](https://zrok.io/), [Celeste](https://flathub.org/apps/details/com.hunterwittenborn.Celeste) / [2](https://snapcraft.io/celeste) or [Sharing](https://github.com/parvardegr/sharing) - File Sync Apps * ⭐ **[Warpinator](https://github.com/linuxmint/warpinator)**, [Magic Wormhole](https://github.com/magic-wormhole/magic-wormhole), [syncthing](https://syncthing.net/), [portal](https://github.com/SpatiumPortae/portal) or [Sharing](https://github.com/parvardegr/sharing) - File Sync Apps
* ⭐ **[Baobab](https://gitlab.gnome.org/GNOME/baobab)**, **[lf](https://github.com/gokcehan/lf)**, [ranger](https://ranger.fm), [nnn](https://github.com/jarun/nnn), [clifm](https://github.com/leo-arch/clifm), [fm](https://github.com/mistakenelf/fm), [Superfile](https://github.com/yorukot/superfile), [Joshuto](https://github.com/kamiyaa/joshuto), [dut](https://codeberg.org/201984/dut), [gdu](https://github.com/dundee/gdu) or [NCDU](https://dev.yorhel.nl/ncdu) - Terminal File Manager / Disk Usage Analyzers * ⭐ **[Baobab](https://gitlab.gnome.org/GNOME/baobab)** - Disk Usage Analyzer
* [ANGRYsearch](https://github.com/DoTheEvo/ANGRYsearch), [CatCLI](https://github.com/deadc0de6/catcli), [xplr](https://xplr.dev/) / [GitHub](https://github.com/sayanarijit/xplr) / [Discord](https://discord.com/invite/JmasSPCcz3), [logo-ls](https://github.com/Yash-Handa/logo-ls), [ugrep](https://ugrep.com) / [GitHub](https://github.com/Genivia/ugrep) or [Achoz](https://github.com/kcubeterm/achoz) - File Explorers * [ANGRYsearch](https://github.com/DoTheEvo/ANGRYsearch), [CatCLI](https://github.com/deadc0de6/catcli), [xplr](https://xplr.dev/) / [GitHub](https://github.com/sayanarijit/xplr) / [Discord](https://discord.com/invite/JmasSPCcz3), [logo-ls](https://github.com/Yash-Handa/logo-ls), [ugrep](https://github.com/Genivia/ugrep) or [Achoz](https://github.com/kcubeterm/achoz) - File Explorers
* [Dolphin](https://userbase.kde.org/Dolphin) or [SpaceFM](https://ignorantguru.github.io/spacefm/) - File Managers
* [Collector](https://mijorus.it/projects/collector/) - File Drag & Drop * [Collector](https://mijorus.it/projects/collector/) - File Drag & Drop
* [Bash Upload](https://bashupload.com/) - Bash File Upload 50GB / 3 days
* [z](https://github.com/rupa/z) - Track Most used Directories * [z](https://github.com/rupa/z) - Track Most used Directories
* [Dolphin](https://userbase.kde.org/Dolphin) or [SpaceFM](https://ignorantguru.github.io/spacefm/) - File Managers
* [p7zip](https://p7zip.sourceforge.net/), [GNU Gzip](https://www.gnu.org/software/gzip/) or [pigz](https://zlib.net/pigz/) - File Archivers / Unzippers * [p7zip](https://p7zip.sourceforge.net/), [GNU Gzip](https://www.gnu.org/software/gzip/) or [pigz](https://zlib.net/pigz/) - File Archivers / Unzippers
* [Pika Backup](https://gitlab.gnome.org/World/pika-backup/) - File Backup Tool
* [Curlew](https://curlew.sourceforge.io/) - File Converter * [Curlew](https://curlew.sourceforge.io/) - File Converter
* [Boxxy](https://github.com/queer/boxxy) - Contain Files / Directories * [Boxxy](https://github.com/queer/boxxy) - Contain Files / Directories
* [Junction](https://github.com/sonnyp/Junction) - Change File Associations * [Junction](https://github.com/sonnyp/Junction) - Change File Associations
* [Krename](https://apps.kde.org/en-gb/krename/) - Bulk File Renamer * [Krename](https://apps.kde.org/en-gb/krename/) - Bulk File Renamer
* [FSLint](https://www.pixelbeat.org/fslint/), [Czkawka](https://qarmin.github.io/czkawka/), [kdiff3](https://apps.kde.org/en-gb/kdiff3/) or [fclones](https://github.com/pkolaczk/fclones) - Duplicate File Finder * [FSLint](https://www.pixelbeat.org/fslint/), [Czkawka](https://qarmin.github.io/czkawka/) or [fclones](https://github.com/pkolaczk/fclones) - Duplicate File Finder
* [xdg-ninja](https://github.com/b3nj5m1n/xdg-ninja) - Unwanted File Finder * [xdg-ninja](https://github.com/b3nj5m1n/xdg-ninja) - Unwanted File Finder
* [rcm](https://github.com/thoughtbot/rcm) - Manage Dotfiles * [rcm](https://github.com/thoughtbot/rcm) - Manage Dotfiles
* [Zathura](https://git.pwmt.org/pwmt) - Document Viewer * [Zathura](https://git.pwmt.org/pwmt) - Document Viewer
@ -447,12 +374,12 @@ Linux Gaming Guide
## ▷ Terminal / Shell ## ▷ Terminal / Shell
* 🌐 **[Awesome Shell](https://github.com/alebcay/awesome-shell)**, [tldr](https://github.com/tldr-pages/tldr/) or [AltBox](https://altbox.dev/) - Linux Shell Resources * 🌐 **[Awesome-shell](https://github.com/alebcay/awesome-shell)**, [tldr](https://github.com/tldr-pages/tldr/) or [AltBox](https://altbox.dev/) - Linux Shell Resources
* 🌐 **[Awesome TUIs](https://github.com/rothgar/awesome-tuis)** or [TerminalTrove](https://terminaltrove.com/) - List of TUIs * 🌐 **[Awesome TUIs](https://github.com/rothgar/awesome-tuis)** or [TerminalTrove](https://terminaltrove.com/) - List of TUIs
* ↪️ **[Linux Shell Index](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_command_line_shells)** or [Modern Unix](https://github.com/ibraheemdev/modern-unix) * ↪️ **[Linux Shell Index](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_command_line_shells)** or [Modern Unix](https://github.com/ibraheemdev/modern-unix)
* **[Alacritty](https://alacritty.org)**, **[Kitty](https://sw.kovidgoyal.net/kitty/overview/)**, [Simple Terminal](https://st.suckless.org/), [Wave](https://www.waveterm.dev/), [yakuake](https://apps.kde.org/yakuake/), [emacs-eat](https://codeberg.org/akib/emacs-eat) or [tabby](https://tabby.sh/) - Linux Terminals * ↪️ **[Bash / CLI Cheat Sheets](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_cli_cheat_sheets)**
* ⭐ **[Shell GPT](https://github.com/TheR1D/shell_gpt)**, [2](https://github.com/jiacai2050/shellgpt) - AI Terminal Chatbot / GPT * ⭐ **[lf](https://github.com/gokcehan/lf)**, [ranger](https://github.com/ranger/ranger), [nnn](https://github.com/jarun/nnn), [clifm](https://github.com/leo-arch/clifm), [fm](https://github.com/mistakenelf/fm), [Joshuto](https://github.com/kamiyaa/joshuto), [gdu](https://github.com/dundee/gdu) or [NCDU](https://dev.yorhel.nl/ncdu) - Terminal File Manager / Disk Usage Analyzers
* [Liquidprompt](https://github.com/liquidprompt/liquidprompt) - Bash / Zsh Prompt * **[Alacritty](https://github.com/alacritty/alacritty)**, **[Kitty](https://sw.kovidgoyal.net/kitty/overview/)**, [Simple Terminal](https://st.suckless.org/), [Wave](https://www.waveterm.dev/), [yakuake](https://apps.kde.org/yakuake/), [emacs-eat](https://codeberg.org/akib/emacs-eat) or [tabby](https://tabby.sh/) - Linux Terminals
* [utils](https://github.com/Loupeznik/utils) or [UsefulLinuxShellScripts](https://github.com/jackrabbit335/UsefulLinuxShellScripts) - Linux Shell Tool Scripts * [utils](https://github.com/Loupeznik/utils) or [UsefulLinuxShellScripts](https://github.com/jackrabbit335/UsefulLinuxShellScripts) - Linux Shell Tool Scripts
* [Gum](https://github.com/charmbracelet/gum) - Shell Script Creator * [Gum](https://github.com/charmbracelet/gum) - Shell Script Creator
* [ShellCheck](https://www.shellcheck.net/) - Shell Script Bug Check * [ShellCheck](https://www.shellcheck.net/) - Shell Script Bug Check
@ -461,50 +388,45 @@ Linux Gaming Guide
* [Bash Crawl](https://gitlab.com/slackermedia/bashcrawl) - Linux Command Learning Game * [Bash Crawl](https://gitlab.com/slackermedia/bashcrawl) - Linux Command Learning Game
* [bash_loading_animations](https://github.com/Silejonu/bash_loading_animations) - Bash Loading Animations * [bash_loading_animations](https://github.com/Silejonu/bash_loading_animations) - Bash Loading Animations
* [bash-it](https://github.com/Bash-it/bash-it) or [Bashly](https://bashly.dannyb.co/) - Bash Frameworks * [bash-it](https://github.com/Bash-it/bash-it) or [Bashly](https://bashly.dannyb.co/) - Bash Frameworks
* [zx](https://google.github.io/zx/) or [dax](https://github.com/dsherret/dax) - Write Complex Scripts * [zx](https://github.com/google/zx) - Javascript Bash
* [Basher](https://www.basher.it/) or [bpkg](https://bpkg.sh/) - Bash Package Manager * [Basher](https://www.basher.it/) - Bash Script Package Manager
* [yakuake](https://apps.kde.org/yakuake/) - Terminal Emulator
* [XTerm](https://invisible-island.net/xterm/) - X Window System Terminal Emulator
* [hush](https://github.com/hush-shell/hush) - Unix Shell * [hush](https://github.com/hush-shell/hush) - Unix Shell
* [Extension Manager](https://mattjakeman.com/apps/extension-manager) - GNOME Shell Extensions * [Extension Manager](https://github.com/mjakeman/extension-manager) - GNOME Shell Extensions
* [Distrobox](https://distrobox.it/) - Use Distros via Terminal * [Distrobox](https://github.com/89luca89/distrobox) - Use Distros via Terminal
* [htop](https://htop.dev/) or [Zenith](https://github.com/bvaisvil/zenith) - Interactive Process Viewers * [htop](https://htop.dev/) - Interactive Process Viewer / [GitHub](https://github.com/htop-dev/htop)
* [eza](https://eza.rocks/) - Modern ls replacement * [eza](https://github.com/eza-community/eza) - Modern ls replacement
* [explainshell.com](https://explainshell.com/) - Match Command-Line Arguments to Help Text * [explainshell.com](https://explainshell.com/) - Match Command-Line Arguments to Help Text
* [PowerShell](https://github.com/powershell/powershell) - PowerShell * [PowerShell](https://github.com/powershell/powershell) - PowerShell
* [Tmux](https://github.com/tmux/tmux) - Terminal Multiplexer / [Cheatsheet](https://tmuxcheatsheet.com/) * [Tmux](https://github.com/tmux/tmux) - Terminal Multiplexer / [Cheatsheet](https://tmuxcheatsheet.com/)
* [Zellij](https://zellij.dev/) - Terminal Workspace
* [asciinema](https://asciinema.org/) - Terminal Recorder * [asciinema](https://asciinema.org/) - Terminal Recorder
* [Electerm](https://electerm.github.io/electerm) - Terminal / SSH / STP Client * [Electerm](https://electerm.github.io/electerm) - Terminal / SSH / STP Client
* [fzf](https://github.com/junegunn/fzf) or [skim](https://github.com/lotabout/skim) - Fuzzy Finders * [fzf](https://github.com/junegunn/fzf) or [skim](https://github.com/lotabout/skim) - Fuzzy Finders
* [atuin](https://atuin.sh/) - Shell History Management / [GitHub](https://github.com/atuinsh/atuin) * [atuin](https://github.com/ellie/atuin) - Shell History Management
* [cbonsai](https://gitlab.com/jallbrit/cbonsai) - Generate Bonsai Trees in Terminal * [cbonsai](https://gitlab.com/jallbrit/cbonsai) - Generate Bonsai Trees in Terminal
* [pipes.sh](https://pipeseroni.github.io/) or [pipes-rs](https://github.com/lhvy/pipes-rs) - Animated Pipes in Terminal * [pipes.sh](https://github.com/pipeseroni/pipes.sh) or [pipes-rs](https://github.com/lhvy/pipes-rs) - Animated Pipes in Terminal
* [Terminal Locomotive Train](https://pastebin.com/ayrFjrh6) - Train Terminal Easter Egg * [Terminal Locomotive Train](https://pastebin.com/ayrFjrh6) - Train Terminal Easter Egg
* [ASCIIQuarium](https://robobunny.com/projects/asciiquarium/html/) - Fish in Terminal * [ASCIIQuarium](https://robobunny.com/projects/asciiquarium/html/) - Fish in Terminal
*** ***
## ▷ Ricing / Customization ## ▷ Customization
* 🌐 **[Ricepedia](https://rizonrice.club/Main_Page)** - Linux Ricing Tools * 🌐 **[Ricepedia](https://rizonrice.club/Main_Page)** - Linux Ricing Tools
* ↪️ **[Linux Themes](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_linux_themes)** - Themes for Linux * ↪️ **[Linux Themes](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_linux_themes)** - Themes for Linux
* ⭐ **[Elkowar's Wacky Widgets](https://elkowar.github.io/eww)** or **[Aylur's GTK Shell](https://github.com/Aylur/ags)** - Widgeting Systems
* [Nam's Ricing Guide](https://nam.is-a.dev/blog/ricing/) - Ricing Guide
* [Gradience](https://github.com/GradienceTeam/Gradience) - Customize GNOME's Adwaita
* [wpgtk](https://deviantfero.github.io/wpgtk) - Fully Customizable Unix Color Schemer * [wpgtk](https://deviantfero.github.io/wpgtk) - Fully Customizable Unix Color Schemer
* [Akira](https://github.com/akiraux/Akira) - UI/UX Customization * [Akira](https://github.com/akiraux/Akira) - UI/UX Customization
* [Kvantum](https://github.com/tsujan/Kvantum) - Linux QT / KDE Theme Engine * [Kvantum](https://github.com/tsujan/Kvantum) - Linux QT / KDE Theme Engine
* [Polybar (X11)](https://github.com/polybar/polybar), [Iron Bar](https://github.com/JakeStanger/ironbar) (Wayland) or [Waybar](https://github.com/Alexays/Waybar) (Wayland) - Customizable Status Bars * [Polybar](https://github.com/polybar/polybar) or [lemonbar](https://github.com/LemonBoy/bar) - Customizable Status Bar
* [MacBuntu Transformation Pack](https://www.noobslab.com/2018/08/macbuntu-1804-transformation-pack-ready.html), [2](https://www.noobslab.com/2017/06/macbuntu-transformation-pack-ready-for.html) - Mac Theme * [MacBuntu Transformation Pack](https://www.noobslab.com/2018/08/macbuntu-1804-transformation-pack-ready.html), [2](https://www.noobslab.com/2017/06/macbuntu-transformation-pack-ready-for.html) - Mac Theme
* [Windows-10](https://b00merang.weebly.com/windows-10.html) - Windows 10 Theme * [Windows-10](https://github.com/B00merang-Project/Windows-10) - Windows 10 Theme
* [La Capitaine](https://github.com/keeferrourke/la-capitaine-icon-theme), [Moka](https://snwh.org/moka), [Numix](https://github.com/numixproject/numix-icon-theme) or [Papirus](https://github.com/PapirusDevelopmentTeam/papirus-icon-theme) - Linux Icon Themes
* [xScreensaver](https://www.jwz.org/xscreensaver/) - Linux Screensavers * [xScreensaver](https://www.jwz.org/xscreensaver/) - Linux Screensavers
* [Fondo](https://github.com/calo001/fondo), [varietywalls](https://github.com/varietywalls/variety), [HydraPaper](https://hydrapaper.gabmus.org/), [styli.sh](https://github.com/thevinter/styli.sh) or [Komorebi](https://github.com/cheesecakeufo/komorebi) - Wallpaper Managers * [Fondo](https://github.com/calo001/fondo), [varietywalls](https://github.com/varietywalls/variety), [HydraPaper](https://hydrapaper.gabmus.org/), [styli.sh](https://github.com/thevinter/styli.sh) or [Komorebi](https://github.com/cheesecakeufo/komorebi) - Wallpaper Managers
* [Video Wallpaper](https://github.com/ghostlexly/gpu-video-wallpaper) - Use Videos as Animated Wallpaper * [Video Wallpaper](https://github.com/ghostlexly/gpu-video-wallpaper) - Use Videos as Animated Wallpaper
* [wallpaper-engine-kde-plugin](https://github.com/catsout/wallpaper-engine-kde-plugin) - Wallpaper Engine KDE Plugin * [wallpaper-engine-kde-plugin](https://github.com/catsout/wallpaper-engine-kde-plugin) - Wallpaper Engine KDE Plugin
* [Polychromatic](https://polychromatic.app/) or [OpenRazer](https://openrazer.github.io/) - Linux System Light Control * [Polychromatic](https://polychromatic.app/) - Linux System Light Control
* [Burn My Windows](https://github.com/Schneegans/Burn-My-Windows) - Window Closing Effects * [Burn My Windows](https://github.com/Schneegans/Burn-My-Windows) - Window Closing Effects
* [theme.sh](https://github.com/lemnos/theme.sh), [NotCurses](https://github.com/dankamongmen/notcurses) / [Wiki](https://nick-black.com/dankwiki/index.php/Notcurses) or [Shell Color Scripts](https://gitlab.com/dwt1/shell-color-scripts) / [2](https://github.com/stark/Color-Scripts) - Custom Terminal Themes * [theme.sh](https://github.com/lemnos/theme.sh) or [Shell Color Scripts](https://gitlab.com/dwt1/shell-color-scripts) / [2](https://github.com/stark/Color-Scripts) - Custom Terminal Themes
* [font-manager](https://github.com/FontManager/font-manager) - Font Manager * [font-manager](https://github.com/FontManager/font-manager) - Font Manager
*** ***
@ -518,60 +440,61 @@ Linux Gaming Guide
* ⭐ **[NearDrop](https://github.com/grishka/NearDrop)** or [maestral](https://maestral.app/) - File Sharing Apps * ⭐ **[NearDrop](https://github.com/grishka/NearDrop)** or [maestral](https://maestral.app/) - File Sharing Apps
* ⭐ **[shottr](https://shottr.cc/)** or [MagicCap](https://magiccap.me/) - Screenshot Tool * ⭐ **[shottr](https://shottr.cc/)** or [MagicCap](https://magiccap.me/) - Screenshot Tool
* ⭐ **[Aptonic](https://aptonic.com/)** - Mac Productivity App * ⭐ **[Aptonic](https://aptonic.com/)** - Mac Productivity App
* ⭐ **[Alfred](https://www.alfredapp.com/)**, [Quicksilver](https://qsapp.com/) or [Raycast](https://www.raycast.com/) - Keystroke Launchers * ⭐ **[Alfred](https://www.alfredapp.com/)** or [Raycast](https://www.raycast.com/) - Keystroke Launchers
* ⭐ **[CustomShortcuts](https://www.houdah.com/customShortcuts/)**, [Karabiner-Elements](https://karabiner-elements.pqrs.org/) or [ShortcutKeeper](https://shortcutkeeper.com/) - Custom Keyboard Shortcuts * ⭐ **[CustomShortcuts](https://www.houdah.com/customShortcuts/)**, [Karabiner-Elements](https://karabiner-elements.pqrs.org/) or [ShortcutKeeper](https://shortcutkeeper.com/) - Custom Keyboard Shortcuts
* ⭐ **[alt-tab-macos](https://alt-tab-macos.netlify.app/)** - Alt-Tab for Mac * ⭐ **[alt-tab-macos](https://alt-tab-macos.netlify.app/)** - Alt-Tab for Mac
* ⭐ **[Fantastical](https://flexibits.com/fantastical)** - Calendar * ⭐ **[Fantastical](https://flexibits.com/fantastical)** - Calendar
* [Advanced macOS Commands](https://saurabhs.org/advanced-macos-commands) - Advanced Command-Line Tools * [Advanced macOS Commands](https://saurabhs.org/advanced-macos-commands) - Advanced Command-Line Tools
* [Novee](https://github.com/ZhichGaming/Novee) - Anime Streaming App * [Novee](https://github.com/ZhichGaming/Novee) - Anime Streaming App
* [DMHY](https://github.com/yaqinking/DMHY) - Anime Torrent Autodownloader * [DMHY](https://github.com/yaqinking/DMHY) - Anime Torrent Autodownloader
* [Swiftcord](https://swiftcordapp.github.io/Swiftcord/) or [Accord](https://github.com/evelyneee/accord) - Discord Clients * [Swiftcord](https://github.com/SwiftcordApp/Swiftcord) or [Accord](https://github.com/evelyneee/accord) - Discord Clients
* [Ice Cubes](https://apps.apple.com/us/app/ice-cubes-for-mastodon/id6444915884) - Mastodon Client * [Ice Cubes](https://apps.apple.com/us/app/ice-cubes-for-mastodon/id6444915884) - Mastodon Client
* [Beta Profiles](https://betaprofiles.com/) - Download Pre-Release Versions macOS * [Beta Profiles](https://betaprofiles.com/) - Download Pre-Release Versions macOS
* [CloverBootloader](https://github.com/CloverHackyColor/CloverBootloader/) - Windows, Mac & Linux Bootloader / [Config](https://mackie100projects.altervista.org/) * [CloverBootloader](https://github.com/CloverHackyColor/CloverBootloader/) - Windows, Mac & Linux Bootloader / [Config](https://mackie100projects.altervista.org/)
* [Boot Camp](https://support.apple.com/boot-camp) - Windows Bootloader / [DL Script](https://github.com/timsutton/brigadier) * [Boot Camp](https://support.apple.com/boot-camp) - Windows Bootloader / [DL Script](https://github.com/timsutton/brigadier)
* [Docker OSX](https://github.com/sickcodes/Docker-OSX) - Mac VM in Docker * [Docker OSX](https://github.com/sickcodes/Docker-OSX) - Mac VM in Docker
* [Whisky](https://getwhisky.app/) - Wine Wrapper * [Whisky](https://getwhisky.app/) - Wine Wrapper
* [macos-virtualbox](https://github.com/myspaghetti/macos-virtualbox) - MacOS Virtualbox Installer
* [SwiftUI Win11](https://jinxiansen.github.io/Windows11/) - Windows 11 Desktop Client for macOS * [SwiftUI Win11](https://jinxiansen.github.io/Windows11/) - Windows 11 Desktop Client for macOS
* [OrbStack](https://orbstack.dev/) - Docker Client * [OrbStack](https://orbstack.dev/) - Docker Client
* [Cider](https://cider.sh/) / [GitHub](https://github.com/ciderapp/Cider) - Audio Players / Free Classic Version * [Cog](https://cogx.org/) or [Cider](https://cider.sh/) / [GitHub](https://github.com/ciderapp/Cider) - Audio Players
* [Psst](https://github.com/jpochyla/psst) - Spotify Client
* [Alfred Spotify Mini Player](https://alfred-spotify-mini-player.com/) - Spotify Mini Player * [Alfred Spotify Mini Player](https://alfred-spotify-mini-player.com/) - Spotify Mini Player
* [SoundSeer](https://github.com/jonathangarelick/SoundSeer) - Spotify in Menu Bar
* [Nuage](https://github.com/lbrndnr/nuage-macos) - Soundcloud Client * [Nuage](https://github.com/lbrndnr/nuage-macos) - Soundcloud Client
* [Subsonic](https://github.com/twostraws/Subsonic) - SwiftUI Audio Player * [Subsonic](https://github.com/twostraws/Subsonic) - SwiftUI Audio Player
* [Bookshelf](https://apps.apple.com/us/app/bookshelf-reading-tracker/id1469372414) - Book Tracker * [Bookshelf](https://apps.apple.com/us/app/bookshelf-reading-tracker/id1469372414) - Book Tracker
* [LimaVM](https://lima-vm.io/) - Linux VM * [LimaVM](https://github.com/lima-vm/lima) - Linux VM
* [PortingKit](https://www.portingkit.com/) or [PlayOnMac](https://www.playonmac.com/en/) - Run Windows Games / Programs on Mac * [PortingKit](https://www.portingkit.com/) or [PlayOnMac](https://www.playonmac.com/en/) - Run Windows Games / Programs on Mac
* [OpenCore](https://github.com/acidanthera/OpenCorePkg) - Mac Bootloader / [Config](https://mackie100projects.altervista.org/opencore-configurator/) / [Guide](https://dortania.github.io/OpenCore-Install-Guide/) * [OpenCore](https://github.com/acidanthera/OpenCorePkg) - Mac Bootloader / [Config](https://mackie100projects.altervista.org/opencore-configurator/) / [Guide](https://dortania.github.io/OpenCore-Install-Guide/)
* [PlayCover](https://github.com/PlayCover/PlayCover) - Run iOS Apps on Apple Silicon Macs * [PlayCover](https://github.com/PlayCover/PlayCover) - Run iOS Apps on Apple Silicon Macs
* [OpenCore Legacy Patcher](https://github.com/dortania/OpenCore-Legacy-Patcher/) - Install New macOS on Unsupported Devices * [OpenCore Legacy Patcher](https://github.com/dortania/OpenCore-Legacy-Patcher/) - Install New macOS on Unsupported Devices
* [rEFind](https://www.rodsbooks.com/refind/) - Boot Manager * [rEFind](https://www.rodsbooks.com/refind/) - Boot Manager
* [Conky](https://conky.cc) / [Colors](https://github.com/helmuthdu/conky_colors), [eul](https://github.com/gao-sun/eul), [zfxtop](https://github.com/ssleert/zfxtop), [Stats](https://github.com/exelban/stats), [Mission Center](https://gitlab.com/mission-center-devs/mission-center) or [MacFetch](https://github.com/gantoreno/macfetch) - Hardware / System Monitors * [Conky](https://github.com/brndnmtthws/conky) / [Colors](https://github.com/helmuthdu/conky_colors), [eul](https://github.com/gao-sun/eul), [zfxtop](https://github.com/ssleert/zfxtop), [Stats](https://github.com/exelban/stats) or [MacFetch](https://github.com/gantoreno/macfetch) - Hardware / System Monitors
* [Hot](https://github.com/macmade/) - CPU Monitor * [Hot](https://github.com/macmade/) - CPU Monitor
* [TaskExplorer](https://objective-see.org/products/taskexplorer.html) - Task Manager / Viewer * [TaskExplorer](https://objective-see.org/products/taskexplorer.html) - Task Manager / Viewer
* [Progress](https://github.com/Xfennec/progress) - Show Copied Data Progress * [Progress](https://github.com/Xfennec/progress) - Show Copied Data Progress
* [Clean-Me](https://kevin-de-koninck.github.io/Clean-Me/) or [Pearcleaner](https://github.com/alienator88/Pearcleaner) - System Cleanup / Uninstallers * [Clean-Me](https://kevin-de-koninck.github.io/Clean-Me/) or [Pearcleaner](https://github.com/alienator88/Pearcleaner) - System Cleanup / Uninstallers
* [What Route](https://whatroute.net/) - Network Diagnostic Tool * [What Route](https://whatroute.net/) - Network Diagnostic Tool
* [Kexts](https://www.tonymacx86.com/resources/categories/kexts.11/) - UEFI Kexts * [Kexts](https://www.tonymacx86.com/resources/categories/kexts.11/) - UEFI Kexts
* [File Find](https://gitlab.com/Pixel-Mqster/File-Find) or [Superfile](https://github.com/yorukot/superfile) - File Explorer / Managers * [File Find](https://gitlab.com/Pixel-Mqster/File-Find) - File Explorer / Manager
* [Download Shuttle](https://apps.apple.com/in/app/download-shuttle-fast-file/id847809913) or [Progressive Downloader](https://macpsd.net/) - File Download Manager * [Download Shuttle](https://apps.apple.com/in/app/download-shuttle-fast-file/id847809913) or [Progressive Downloader](https://macpsd.net/) - File Download Manager
* [FlyingCarpet](https://github.com/spieglt/FlyingCarpet) - Cross-Platform AirDrop / [Guide](https://redd.it/vthltc) * [FlyingCarpet](https://github.com/spieglt/FlyingCarpet) - Cross-Platform AirDrop / [Guide](https://redd.it/vthltc)
* [Adobe Creative Cloud](https://rentry.co/FMHYBase64#adobe-after-effects-collection) - Adobe CC Guides * [Adobe Creative Cloud](https://rentry.co/FMHYBase64#adobe-after-effects-collection) - Adobe CC Guides
* [Adobe Packager](https://github.com/Drovosek01/adobe-packager) - Adobe Portable Installer Script * [Adobe Packager](https://github.com/Drovosek01/adobe-packager) - Adobe Portable Installer Script
* [ss64 OSX](https://ss64.com/osx/) - macOS Bash Commands * [ss64 OSX](https://ss64.com/osx/) - macOS Bash Commands
* [Browserosaurus](https://browserosaurus.com/) - Browser Prompter * [Browserosaurus](https://browserosaurus.com/) - Browser Prompter
* [Orion](https://kagi.com/orion/) - Browser w/ Chrome + Firefox Extension Support / [Discord](https://discord.com/invite/gKh5E6ys6D) * [Orion](https://browser.kagi.com/) - Lightweight Browser w/ Chrome & Firefox Extensions / [Discord](https://discord.com/invite/gKh5E6ys6D)
* [Strongbox](https://strongboxsafe.com/) - Password Manager * [Strongbox](https://strongboxsafe.com/) - Password Manager
* [Maccy](https://maccy.app/), [ClipBook](https://clipbook.app/) or [TRex](https://trex.ameba.co/) - Clipboard Managers * [Maccy](https://maccy.app/) or [TRex](https://trex.ameba.co/) - Clipboard Managers
* [Left on Read](https://leftonread.me/) or [PyPush](https://github.com/JJTech0130/pypush) / [Discord](https://discord.gg/BVvNukmfTC) - iMessage Clients * [Left on Read](https://leftonread.me/) or [PyPush](https://github.com/JJTech0130/pypush) /[Discord](https://discord.gg/BVvNukmfTC) - iMessage Clients
* [LlamaChat](https://www.llamachat.app/) - Llama AI Chat * [LlamaChat](https://www.llamachat.app/) - Llama AI Chat
* [DiffusionBee](https://diffusionbee.com/) - Local AI Frontend / [GitHub](https://github.com/divamgupta/diffusionbee-stable-diffusion-ui) / [Discord](https://discord.com/invite/t6rC5RaJQn)
* [MacBing](https://goodsnooze.gumroad.com/l/macbing) - Bing Chat * [MacBing](https://goodsnooze.gumroad.com/l/macbing) - Bing Chat
* [ViennaRSS](https://www.vienna-rss.com/) - RSS Feed Reader * [ViennaRSS](https://www.vienna-rss.com/) - RSS Feed Reader
* [Dialect](https://github.com/dialect-app/dialect) - Translator * [Dialect](https://github.com/dialect-app/dialect) - Translator
* [Link Unshortener](https://underpassapp.com/LinkUnshortener/) - Unshorten Links * [Link Unshortener](https://underpassapp.com/LinkUnshortener/) - Unshorten Links
* [Aiko](https://sindresorhus.com/aiko) - Audio Transcription * [Aiko](https://sindresorhus.com/aiko) - Audio Transcription
* [Drafts](https://getdrafts.com/), [CotEditor](https://coteditor.com/), [TextMate](https://macromates.com/), [Nebo](https://apps.apple.com/us/app/nebo-notes-pdf-annotations/id1119601770), [Kyun](https://github.com/file-acomplaint/kyun), [FSNotes](https://fsnot.es/), [Notenik](https://notenik.app/) or [Voodoopad](https://www.voodoopad.com/) - Text Editors / Notes * [Drafts](https://getdrafts.com/), [CotEditor](https://coteditor.com/), [TextMate](https://macromates.com/), [Nebo](https://apps.apple.com/us/app/nebo-notes-pdf-annotations/id1119601770), [Kyun](https://github.com/file-acomplaint/kyun), [FSNotes](https://fsnot.es/), [Notenik](https://notenik.app/) or [Voodoopad](https://www.voodoopad.com/) - Text Editors / Notes
* [Agenda](https://agenda.com/) - Mac Notes Organizer / [Forum](https://agenda.community/)
* [Taskpaper](https://www.taskpaper.com/) - To-Do Apps * [Taskpaper](https://www.taskpaper.com/) - To-Do Apps
* [Stroke](https://stroke.lllllllllllllllll.com/) - Text (You Can't Delete) Editor * [Stroke](https://stroke.lllllllllllllllll.com/) - Text (You Can't Delete) Editor
* [BibDesk](https://bibdesk.sourceforge.io/) - Bibliography Manager * [BibDesk](https://bibdesk.sourceforge.io/) - Bibliography Manager
@ -580,37 +503,32 @@ Linux Gaming Guide
* [kbdlight](https://github.com/WhyNotHugo/kbdlight) - Change MacBook Keyboard Backlight Level * [kbdlight](https://github.com/WhyNotHugo/kbdlight) - Change MacBook Keyboard Backlight Level
* [KeyPad](https://apps.apple.com/in/app/keypad-bluetooth-keyboard/id1491684442) - Connect Mac Keyboard to Mobile Devices * [KeyPad](https://apps.apple.com/in/app/keypad-bluetooth-keyboard/id1491684442) - Connect Mac Keyboard to Mobile Devices
* [Pinch](https://github.com/danqing/Pinch) - Trackpad Pinch to Zoom Gesture * [Pinch](https://github.com/danqing/Pinch) - Trackpad Pinch to Zoom Gesture
* [LinearMouse](https://linearmouse.app/) or [MacMouseFix](https://macmousefix.com/) - Mouse Remapping * [LinearMouse](https://linearmouse.app/) - Custom Mouse / Trackpad Options
* [Scroll Reverser](https://pilotmoon.com/scrollreverser/) - Per-Device Scroll Settings
* [KeyClu](https://sergii.tatarenkov.name/keyclu/support/) - Shortcut CheatSheet for Current Application * [KeyClu](https://sergii.tatarenkov.name/keyclu/support/) - Shortcut CheatSheet for Current Application
* [rcmd](https://lowtechguys.com/rcmd/) - App Switcher Command Key
* [KeyCastr](https://github.com/keycastr/keycastr) - Keystroke Visualizer * [KeyCastr](https://github.com/keycastr/keycastr) - Keystroke Visualizer
* [MonitorControl](https://monitorcontrol.app/) - External Monitor Brightness / Volume Control * [MonitorControl](https://monitorcontrol.app/) - External Monitor Brightness / Volume Control
* [BackgroundMusic](https://github.com/kyleneideck/BackgroundMusic) - Volume Mixer / Auto-Pause * [BackgroundMusic](https://github.com/kyleneideck/BackgroundMusic) - Volume Mixer / Auto-Pause
* [BatFi](https://micropixels.gumroad.com/l/batfi) - Battery Manager
* [BatteryBuddy](https://batterybuddy.app/) - Cute Battery Indicator * [BatteryBuddy](https://batterybuddy.app/) - Cute Battery Indicator
* [Bunch](https://bunchapp.co/) - Task Automation * [Bunch](https://bunchapp.co/) - Task Automation
* [MacScripter](https://www.macscripter.net/) - Automation Forum * [MacScripter](https://www.macscripter.net/) - Automation Forum
* [Find You](https://github.com/positive-security/find-you) - Track Bluetooth Devices * [Find You](https://github.com/positive-security/find-you) - Track Bluetooth Devices
* [Touché](https://redsweater.com/touche/) - Touch Bar Simulator * [Touché](https://redsweater.com/touche/) - Touch Bar Simulator
* [Actions](https://sindresorhus.com/actions) - Additional Shortcuts App Actions
* [pock](https://pock.app/) - Touch Bar Widget Manager / [GitHub](https://github.com/pock/pock) * [pock](https://pock.app/) - Touch Bar Widget Manager / [GitHub](https://github.com/pock/pock)
* [Übersicht](https://tracesof.net/uebersicht/) - System Command Widgets
* [Itsycal](https://www.mowglii.com/itsycal/) - Menu Bar Calendar * [Itsycal](https://www.mowglii.com/itsycal/) - Menu Bar Calendar
* [Clocker](https://abhishekbanthia.com/clocker/) or [MeetingBar](https://meetingbar.app/) - Menu Bar Meetings Calendars * [Clocker](https://abhishekbanthia.com/clocker/) or [MeetingBar](https://meetingbar.app/) - Menu Bar Meetings Calendars
* [xbar](https://xbarapp.com/) - Manage Menu Bar Items / [GitHub](https://github.com/matryer/xbar) * [xbar](https://xbarapp.com/) - Manage Menu Bar Items / [GitHub](https://github.com/matryer/xbar)
* [MacLaunch](https://github.com/hazcod/maclaunch) - Manage Startup Items * [MacLaunch](https://github.com/hazcod/maclaunch) - Manage Startup Items
* [Ice](https://icemenubar.app/) - Menu Bar Manager
* [OnlySwitch](https://github.com/jacklandrin/OnlySwitch) - Menu Bar Toggle Switches * [OnlySwitch](https://github.com/jacklandrin/OnlySwitch) - Menu Bar Toggle Switches
* [Sloth](https://github.com/sveinbjornt/Sloth) - Process Manager * [Sloth](https://github.com/sveinbjornt/Sloth) - Process Manager
* [pongoOS](https://github.com/checkra1n/pongoOS) - Mac Pre-Boot Executor * [pongoOS](https://github.com/checkra1n/pongoOS) - Mac Pre-Boot Executor
* [Yabai](https://github.com/koekeishiya/yabai), [Amethyst](https://ianyh.com/amethyst/) / [GitHub](https://github.com/ianyh/Amethyst), [1Piece](https://app1piece.com/), [Spaces](https://spacesformac.xyz/), [Loop](https://github.com/MrKai77/Loop), [AeroSpace](https://github.com/nikitabobko/AeroSpace), [Phoenix](https://kasper.github.io/phoenix/) or [Rectangle](https://rectangleapp.com/) - Window Managers * [Yabai](https://github.com/koekeishiya/yabai), [Amethyst](https://github.com/ianyh/Amethyst), [1Piece](https://app1piece.com/), [Spaces](https://spacesformac.xyz/), [AeroSpace](https://github.com/nikitabobko/AeroSpace), [Phoenix](https://github.com/kasper/phoenix) or [Rectangle](https://rectangleapp.com/) - Window Managers
* [Later](https://getlater.app/) - Restore App Sessions * [AlDente](https://github.com/davidwernhart/AlDente-Charge-Limiter) - Charging Manager
* [AlDente](https://apphousekitchen.com/) - Charging Manager * [Unlocker](https://github.com/paolo-projects/unlocker) - VMware Unlocker
* [VMware](https://rentry.co/FMHYBase64#vmware) - Virtual Machine
* [USBMap](https://github.com/corpnewt/USBMap) - Map MacOS USB Ports * [USBMap](https://github.com/corpnewt/USBMap) - Map MacOS USB Ports
* [MacVim](https://macvim.org/), [CodeEdit](https://www.codeedit.app/) or [AuroraEditor](https://auroraeditor.com/) - Code Editors * [MacVim](https://macvim.org/), [CodeEdit](https://www.codeedit.app/) or [AuroraEditor](https://auroraeditor.com/)
* [PowerShell](https://github.com/powershell/powershell) - PowerShell
* [iTerm2](https://iterm2.com/) - Replacements for Terminal * [iTerm2](https://iterm2.com/) - Replacements for Terminal
* [asciinema](https://asciinema.org/) - Terminal Recorder
* [Fig](https://fig.io/) - IDE-Style Autocomplete for Terminal * [Fig](https://fig.io/) - IDE-Style Autocomplete for Terminal
* [BetterDisplay](https://github.com/waydabber/BetterDisplay) - Display Controller * [BetterDisplay](https://github.com/waydabber/BetterDisplay) - Display Controller
* [DisplayPlacer](https://github.com/jakehilborn/displayplacer) - Dual Monitor Manager * [DisplayPlacer](https://github.com/jakehilborn/displayplacer) - Dual Monitor Manager
@ -618,16 +536,15 @@ Linux Gaming Guide
* [IconSet](https://github.com/tale/iconset) or [IconChamp](https://www.macenhance.com/iconchamp.html) - Custom System Icons * [IconSet](https://github.com/tale/iconset) or [IconChamp](https://www.macenhance.com/iconchamp.html) - Custom System Icons
* [Manila](https://github.com/neilsardesai/Manila) - Change Folder Colors * [Manila](https://github.com/neilsardesai/Manila) - Change Folder Colors
* [Dynamic Wallpaper Club](https://dynamicwallpaper.club/) - Dynamic Wallpaper App * [Dynamic Wallpaper Club](https://dynamicwallpaper.club/) - Dynamic Wallpaper App
* [wallpapper](https://github.com/mczachurski/wallpapper) or [Equinox](https://equinoxmac.com/) - Dynamic Wallpaper Creators * [wallpapper](https://github.com/mczachurski/wallpapper) - Dynamic Wallpaper Creator
* [Plash](https://sindresorhus.com/plash) - Use Website as Wallpaper * [Plash](https://github.com/sindresorhus/Plash) - Use Website as Wallpaper
* [100 macOS Screensavers](https://github.com/bjdehang/100-macos-screensavers) - Minimalist Screensavers * [100 macOS Screensavers](https://github.com/bjdehang/100-macos-screensavers) - Minimalist Screensavers
* [DarkModeBuddy](https://github.com/insidegui/DarkModeBuddy) or [ThemeKit](https://github.com/luckymarmot/ThemeKit) - System Dark Mode Apps * [DarkModeBuddy](https://github.com/insidegui/DarkModeBuddy) or [ThemeKit](https://github.com/luckymarmot/ThemeKit) - System Dark Mode Apps
* [Bootcamp Drivers](https://bootcampdrivers.com/) - Mac Bootcamp AMD Drivers * [Bootcamp Drivers](https://bootcampdrivers.com/) - Mac Bootcamp AMD Drivers
* [IINA](https://iina.io/) - Video Player * [IINA](https://iina.io/) - Video Player
* [REAL Video Enhancer](https://github.com/TNTwise/REAL-Video-Enhancer) - Video Upscaling
* [Gifski](https://sindresorhus.com/gifski) - Image to GIF Converter / [GitHub](https://github.com/sindresorhus/Gifski) * [Gifski](https://sindresorhus.com/gifski) - Image to GIF Converter / [GitHub](https://github.com/sindresorhus/Gifski)
* [Darkroom](https://apps.apple.com/us/app/darkroom-photo-video-editor/id953286746) - Image / Video Editor * [Darkroom](https://apps.apple.com/us/app/darkroom-photo-video-editor/id953286746) - Image / Video Editor
* [Kap](https://getkap.co) or [ScreenTimeLapse](https://github.com/wkaisertexas/ScreenTimeLapse) - Screen Recorders * [Kap](https://github.com/wulkano/Kap) - Screen Recorder
* [Garageband](https://apps.apple.com/us/app/garageband/id682658836?mt=12) - Audio Editor * [Garageband](https://apps.apple.com/us/app/garageband/id682658836?mt=12) - Audio Editor
* [Yoshimi](https://yoshimi.github.io/) - Audio Synthesizer * [Yoshimi](https://yoshimi.github.io/) - Audio Synthesizer
* [EQMac](https://eqmac.app/) - Audio Equalizer * [EQMac](https://eqmac.app/) - Audio Equalizer
@ -635,14 +552,14 @@ Linux Gaming Guide
* [Guitarix](https://guitarix.org/) - Virtual Guitar Amplifier / [Plugins](https://github.com/brummer10/GxPlugins.lv2) * [Guitarix](https://guitarix.org/) - Virtual Guitar Amplifier / [Plugins](https://github.com/brummer10/GxPlugins.lv2)
* [XLD](https://sourceforge.net/projects/xld/) - Lossless Audio Transcoder * [XLD](https://sourceforge.net/projects/xld/) - Lossless Audio Transcoder
* [BlackHole](https://github.com/ExistentialAudio/BlackHole) - Pass Audio to Apps * [BlackHole](https://github.com/ExistentialAudio/BlackHole) - Pass Audio to Apps
* [Donna](https://www.musicdonna.com/) - AI Music Generator
* [Mubert AI](https://apps.apple.com/us/app/mubert-ai-music-streaming/id1154429580) - AI Music Radio * [Mubert AI](https://apps.apple.com/us/app/mubert-ai-music-streaming/id1154429580) - AI Music Radio
* [Playlisty](https://apps.apple.com/us/app/playlisty-the-playlist-tool/id1459275972) - Transfer Apple Music Playlists to Spotify * [Playlisty](https://apps.apple.com/us/app/playlisty-the-playlist-tool/id1459275972) - Transfer Apple Music Playlists to Spotify
* [Image Tricks Lite](https://apps.apple.com/us/app/image-tricks-lite/id403735824?mt=12) or [SeaShore](https://sourceforge.net/projects/seashore/) - Image Editors * [Image Tricks Lite](https://apps.apple.com/us/app/image-tricks-lite/id403735824?mt=12) or [SeaShore](https://sourceforge.net/projects/seashore/) - Image Editors
* [ImageOptim](https://imageoptim.com/mac) - Image Optimization * [ImageOptim](https://imageoptim.com/mac) - Image Optimization
* [Perspec](https://github.com/feramhq/Perspec) - Correct Perspective of Images * [Perspec](https://github.com/feramhq/Perspec) - Correct Perspective of Images
* [MochiDiffusion](https://github.com/godly-devotion/MochiDiffusion) - AI Image Generator
* [Draw Things](https://apps.apple.com/us/app/draw-things-ai-generation/id6444050820) - AI Image Drawing Tool * [Draw Things](https://apps.apple.com/us/app/draw-things-ai-generation/id6444050820) - AI Image Drawing Tool
* [SD Buddy](https://github.com/breadthe/sd-buddy), [CHARL-E](https://www.charl-e.com/) or [Swift Core ML Diffusers](https://github.com/huggingface/swift-coreml-diffusers) - Stable Diffusion Apps * [SD Buddy](https://github.com/breadthe/sd-buddy) or [Swift Core ML Diffusers](https://github.com/huggingface/swift-coreml-diffusers) - Stable Diffusion Apps
* [ColorSlurp](https://colorslurp.com/) or [Material-Colors-native](https://github.com/BafS/Material-Colors-native) - Color Picker * [ColorSlurp](https://colorslurp.com/) or [Material-Colors-native](https://github.com/BafS/Material-Colors-native) - Color Picker
* [Use Contrast](https://usecontrast.com/) - Check Color Contrast Ratios * [Use Contrast](https://usecontrast.com/) - Check Color Contrast Ratios
* [Sim Daltoinism](https://michelf.ca/projects/sim-daltonism/) - Color Blindness Simulator * [Sim Daltoinism](https://michelf.ca/projects/sim-daltonism/) - Color Blindness Simulator
@ -671,7 +588,6 @@ Linux Gaming Guide
* 🌐 **[Awesome MacOS](https://github.com/iCHAIT/awesome-macOS)**, [OpenSourceApple](https://opensource.apple.com/), [Awesome Mac](https://github.com/jaywcjlove/awesome-mac) or [Awesome OS Apps](https://github.com/serhii-londar/open-source-mac-os-apps) - FOSS App Indexes * 🌐 **[Awesome MacOS](https://github.com/iCHAIT/awesome-macOS)**, [OpenSourceApple](https://opensource.apple.com/), [Awesome Mac](https://github.com/jaywcjlove/awesome-mac) or [Awesome OS Apps](https://github.com/serhii-londar/open-source-mac-os-apps) - FOSS App Indexes
* 🌐 **[Mac Menu Bar](https://macmenubar.com/)** - Menu Bar App Index * 🌐 **[Mac Menu Bar](https://macmenubar.com/)** - Menu Bar App Index
* ⭐ **[Homebrew](https://brew.sh/)** / [GUI](https://corkmac.app/), [Munki](https://www.munki.org/munki/) or [AppLite](https://aerolite.dev/applite/index.html) - Package Managers * ⭐ **[Homebrew](https://brew.sh/)** / [GUI](https://corkmac.app/), [Munki](https://www.munki.org/munki/) or [AppLite](https://aerolite.dev/applite/index.html) - Package Managers
* [AppsTorrent](https://appstorrent.ru/) / [Note](https://pastebin.com/dNirumnk)
* [Macintosh Garden](https://macintoshgarden.org/) * [Macintosh Garden](https://macintoshgarden.org/)
* [MacBed](https://www.macbed.com/) * [MacBed](https://www.macbed.com/)
* [Pure Mac](https://www.pure-mac.com/) * [Pure Mac](https://www.pure-mac.com/)
@ -682,20 +598,17 @@ Linux Gaming Guide
* [InsMac](https://insmac.org/) * [InsMac](https://insmac.org/)
* [MacX](https://macx.ws/) * [MacX](https://macx.ws/)
* [WebCatalog](https://webcatalog.io/) * [WebCatalog](https://webcatalog.io/)
* [ThriftMac](https://thriftmac.com/) - Freeware
* [Latest](https://github.com/mangerlahn/latest) - Software Updater
*** ***
## ▷ Mac Gaming ## ▷ Mac Gaming
* ⭐ **[Torrminatorr](https://forum.torrminatorr.com/)** - Mac Games * ⭐ **[Torrminatorr](https://forum.torrminatorr.com/)**
* ⭐ **[AppleGamingWiki](https://applegamingwiki.com/)** - Mac Game Fixes / Compatibility * ⭐ **[AppleGamingWiki](https://applegamingwiki.com/)** - Mac Game Fixes / Compatibility
* ⭐ **[Goldberg](https://github.com/inflation/goldberg_emulator)** - Steam Multiplayer Client Emulator * ⭐ **[Goldberg](https://github.com/inflation/goldberg_emulator)** - Steam Multiplayer Client Emulator
* [SCNLOG](https://scnlog.me/) - Mac Games * [SCNLOG](https://scnlog.me/)
* [Mac Source Ports](https://www.macsourceports.com/) - Run Old Mac Games * [Mac Source Ports](https://www.macsourceports.com/) - Run Old Mac Games
* [HeroicGamesLauncher](https://heroicgameslauncher.com/) or [Mythic](https://getmythic.app/) / [Discord](https://discord.gg/58NZ7fFqPy) - Epic Games Launchers * [HeroicGamesLauncher](https://heroicgameslauncher.com/) / [GitHub](https://github.com/Heroic-Games-Launcher/HeroicGamesLauncher) - Epic Games Launcher
* [Prism43](https://github.com/DomHeadroom/Prism43) - Prism Launcher / Unlocker
* [NASOS](https://archive.org/download/nNASOS1.8/nNASOS1.8.zip) - Gamecube iso.dec to ISO Converter * [NASOS](https://archive.org/download/nNASOS1.8/nNASOS1.8.zip) - Gamecube iso.dec to ISO Converter
* [rbxfpsunlocker-osx](https://github.com/lanylow/rbxfpsunlocker-osx) - Roblox FPS Unlocker * [rbxfpsunlocker-osx](https://github.com/lanylow/rbxfpsunlocker-osx) - Roblox FPS Unlocker
* [cemu.emiyl](https://cemu.emiyl.com/) - CEMU Compatibility List * [cemu.emiyl](https://cemu.emiyl.com/) - CEMU Compatibility List
@ -705,9 +618,9 @@ Linux Gaming Guide
# ► Mac Adblock / Privacy # ► Mac Adblock / Privacy
* 🌐 **[Awesome OSX Security](https://github.com/ashishb/osx-and-ios-security-awesome)** - Mac Security Resources * 🌐 **[Awesome OSX Security](https://github.com/ashishb/osx-and-ios-security-awesome)** - Mac Security Resources
* ↪️ **[Mac 2FA](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/adblock-vpn-privacy#wiki_.25B7_password_privacy_.2F_2fa)** * ↪️ **[Mac 2FA](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/adblock-vpn-privacy#wiki_.25B7_two-factor_authentication)**
* ⭐ **[Malwarebytes](https://www.malwarebytes.com/mac-download)**, [BlockBlock](https://objective-see.org/products/blockblock.html) or [KnockKnock](https://objective-see.org/products/knockknock.html) - Antivirus * ⭐ **[Malwarebytes](https://www.malwarebytes.com/mac-download)**, [BlockBlock](https://objective-see.org/products/blockblock.html) or [KnockKnock](https://objective-see.org/products/knockknock.html) - Antivirus
* ⭐ **[SpotX-Bash](https://github.com/jetfir3/SpotX-Bash)** or [Mac_Spotify_Adblock](https://github.com/Devanshu-17/Mac_Spotify_Adblock) - Spotify Adblockers * ⭐ **[SpotX-Bash](https://github.com/jetfir3/SpotX-Bash)**, [Spotify Adblock Guide](https://redd.it/y2zt58) or [Mac_Spotify_Adblock](https://github.com/Devanshu-17/Mac_Spotify_Adblock) - Spotify Adblockers
* [Ka-Block!](https://apps.apple.com/us/app/ka-block/id1037173557), [BlockBear](https://apps.apple.com/ca/app/blockbear/id1023924541) or [Adblock Plus for iOS](https://gitlab.com/eyeo/adblockplus/adblock-plus-for-safari) - Safari Adblockers * [Ka-Block!](https://apps.apple.com/us/app/ka-block/id1037173557), [BlockBear](https://apps.apple.com/ca/app/blockbear/id1023924541) or [Adblock Plus for iOS](https://gitlab.com/eyeo/adblockplus/adblock-plus-for-safari) - Safari Adblockers
* [MacOS Privacy Guide](https://github.com/drduh/macOS-Security-and-Privacy-Guide) - Mac Privacy & Security Guides * [MacOS Privacy Guide](https://github.com/drduh/macOS-Security-and-Privacy-Guide) - Mac Privacy & Security Guides
* [Gas Mask](https://github.com/2ndalpha/gasmask) - Block Ads via Host Files * [Gas Mask](https://github.com/2ndalpha/gasmask) - Block Ads via Host Files
@ -715,7 +628,6 @@ Linux Gaming Guide
* [1Blocker](https://1blocker.com/) - DNS Adlocker * [1Blocker](https://1blocker.com/) - DNS Adlocker
* [Lockdown Privacy](https://lockdownprivacy.com/) - Block Trackers / Ads * [Lockdown Privacy](https://lockdownprivacy.com/) - Block Trackers / Ads
* [LuLu](https://objective-see.org/products/lulu.html) - Mac Firewall * [LuLu](https://objective-see.org/products/lulu.html) - Mac Firewall
* [Streisand](https://streisand.pages.dev/) - Mac Proxy Client
* [Mana](https://github.com/manasecurity/mana-security-app) - App Security Monitor * [Mana](https://github.com/manasecurity/mana-security-app) - App Security Monitor
* [RansomWhere?](https://objective-see.org/products/ransomwhere.html) - Ransomware Blocker * [RansomWhere?](https://objective-see.org/products/ransomwhere.html) - Ransomware Blocker
* [OverSight](https://objective-see.org/products/oversight.html) - Webcam / Mic Monitor * [OverSight](https://objective-see.org/products/oversight.html) - Webcam / Mic Monitor

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -19,33 +19,25 @@
# ► Streaming # ► Streaming
* ⭐ **[HQPorner](https://hqporner.com/)** * ⭐ **[SexyPorn](https://www.sxyprn.com/)**, [2](https://odd-queen-6608.rrsgjkrjsxy.workers.dev/)
* ⭐ **[SexyPorn](https://www.sxyprn.com/)** * ⭐ **[XVideos](https://www.xvideos.com/)**
* ⭐ **[WatchPorn.to](https://watchporn.to)** * ⭐ **[SpankBang](https://spankbang.com/)**
* ⭐ **[EPorner](https://www.eporner.com/)**
* ⭐ **[goodporn](https://goodporn.to/)**, [2](https://goodporn.se/)
* ⭐ **[neporn](https://neporn.com/)**
* ⭐ **[Noodlemagazine](https://noodlemagazine.com)**, [2](https://mat6tube.com/), [3](https://18.tyler-brown.com/), [4](https://waterdamagesandiego.org/), [5](https://hot.exporntoons.net/), [6](https://actionviewphotography.com/), [7](https://ukdevilz.com/) - Search Engine * ⭐ **[Noodlemagazine](https://noodlemagazine.com)**, [2](https://mat6tube.com/), [3](https://18.tyler-brown.com/), [4](https://waterdamagesandiego.org/), [5](https://hot.exporntoons.net/), [6](https://actionviewphotography.com/), [7](https://ukdevilz.com/) - Search Engine
* ⭐ **[iXXX](https://www.ixxx.com/)** - Aggregator * ⭐ **[iXXX](https://www.ixxx.com/)** - Aggregator
* ⭐ **[PornFreeX](https://pornfreex.app/)** / [Discord]( https://discord.gg/uNa76ncX), [Porn App](https://porn-app.com/) or [NsfwBox](https://github.com/Kisspeace/NsfwBox) - Android Porn Apps
* [Full Length Porn CSE](https://cse.google.com/cse?cx=6c02fb377e50d493c) - Aggregators CSE
* [FindTubes](https://www.findtubes.com/) - Aggregator * [FindTubes](https://www.findtubes.com/) - Aggregator
* [Full Length Porn CSE](https://cse.google.com/cse?cx=6c02fb377e50d493c) - Search Engine * [Porn Guide](https://fapbuddies.net/porn-guide/) - How-to Find Porn
* [EPorner](https://www.eporner.com/)
* [XVideos](https://www.xvideos.com/)
* [PlayHDPorn](https://www.playhdporn.com/)
* [SpankBang](https://spankbang.com/)
* [goodporn](https://goodporn.se/)
* [neporn](https://neporn.com/)
* [FreePornVideos](https://www.freepornvideos.xxx/)
* [BananaMovies](https://bananamovies.org/)
* [xHamster](https://xhamster.com/) * [xHamster](https://xhamster.com/)
* [PornHub](https://www.pornhub.com/) / [Add Features](https://sleazyfork.org/en/scripts/380711), [2](https://codeberg.org/aolko/userscripts/wiki/PH-toolbox) / [DL Script](https://gist.github.com/Riboe/58acabe04abe74421e88b4269cbdf41e) * [PornHub](https://www.pornhub.com/) / [Add Features](https://sleazyfork.org/en/scripts/380711), [2](https://codeberg.org/aolko/userscripts/wiki/PH-toolbox) / [DL Script](https://gist.github.com/Riboe/58acabe04abe74421e88b4269cbdf41e)
* [TNAFlix](https://www.tnaflix.com/) * [TNAFlix](https://www.tnaflix.com/)
* [PornXP](https://pornxp.org/) * [PornXP](https://pornxp.org/)
* [Youporn](https://www.youporn.com/) * [Youporn](https://www.youporn.com/)
* [SomePorn](https://some.porn/) * [HQPorner](https://hqporner.com/)
* [wapbold](https://wapbold.net/)
* [Youjizz](https://www.youjizz.com/) * [Youjizz](https://www.youjizz.com/)
* [Jizzbunker](https://www.jizzbunker.com/)
* [pornken](https://pornken.com/)
* [Heavy-R](https://www.heavy-r.com/)
* [EroticMovies](https://eroticmoviesonline.me/)
* [XNXX](https://www.xnxx.com/) / [Forum](https://forum.xnxx.com/) * [XNXX](https://www.xnxx.com/) / [Forum](https://forum.xnxx.com/)
* [Pornobae](https://pornobae.com/) * [Pornobae](https://pornobae.com/)
* [ThePornArea](https://thepornarea.com/) * [ThePornArea](https://thepornarea.com/)
@ -53,13 +45,10 @@
* [Porndish](https://www.porndish.com/) * [Porndish](https://www.porndish.com/)
* [Analdin](https://www.analdin.com/) * [Analdin](https://www.analdin.com/)
* [Tube8](https://www.tube8.com/) * [Tube8](https://www.tube8.com/)
* [xMegaDrive](https://video.xmegadrive.com/)
* [Porndoe](https://porndoe.com/) * [Porndoe](https://porndoe.com/)
* [Porndig](https://www.porndig.com/) * [Porndig](https://www.porndig.com/)
* [anysex.com](https://anysex.com/) * [anysex.com](https://anysex.com/)
* [PreFap](https://prefap.com/) * [PreFap](https://prefap.com/)
* [Sex-Empire](https://hd.sex-empire.org/en/)
* [ifuqyou](https://enwww.ifuqyou.com/)
* [PornXpert](https://www.pornxpert.com/) * [PornXpert](https://www.pornxpert.com/)
* [PornHD3x](https://www.pornhd3x.tv/) * [PornHD3x](https://www.pornhd3x.tv/)
* [FreeOnes](https://www.freeones.com/) * [FreeOnes](https://www.freeones.com/)
@ -67,21 +56,18 @@
* [Motherless](https://motherless.com/) * [Motherless](https://motherless.com/)
* [ClipHunter](https://www.cliphunter.com/) * [ClipHunter](https://www.cliphunter.com/)
* [Beeg](https://beeg.com/) * [Beeg](https://beeg.com/)
* [ThisVid](https://thisvid.com/newest/)
* [FKBAE](https://fkbae.to/)
* [Redtube](https://www.redtube.com/) * [Redtube](https://www.redtube.com/)
* [txxx](https://txxx.com/) * [txxx](https://txxx.com/)
* [3movs](https://www.3movs.com/) * [3movs](https://www.3movs.com/)
* [Pornktube](https://www.pornktube.club/) or [TubXPorn](https://tubxporn.xxx/) * [Pornktube](https://www.pornktube.club/) or [TubXPorn](https://tubxporn.xxx/)
* [pornktube](https://www.pornktube.tv/)
* [Vid123](https://vid123.net/) * [Vid123](https://vid123.net/)
* [PornHoarder](https://pornhoarder.tv/) * [PornHoarder](https://pornhoarder.tv/)
* [Adultism](https://www.adultism.com/), [Erome](https://www.erome.com/), [YourAmateurPorn](https://www.youramateurporn.com/), [Terk](https://www.terk.nl/) or [HClips](https://hclips.com/) - Amateur Porn * [Adultism](https://www.adultism.com/), [YourAmateurPorn](https://www.youramateurporn.com/), [Terk](https://www.terk.nl/) or [HClips](https://hclips.com/) - Amateur Porn
* [PornFreeX](https://pornfreex.app/), [Porn App](https://porn-app.com/) or [NsfwBox](https://github.com/Kisspeace/NsfwBox) - Android Porn Apps
* [Porn Guide](https://fapbuddies.net/porn-guide/) - How-to Find Porn
*** ***
## ▷ Adult Movies / Grindhouse ## ▷ NSFW Movies
* ⭐ **[NSFW Movie Site Search](https://cse.google.com/cse?cx=006516753008110874046:3-svpblbro8)** / [2](https://cse.google.com/cse?cx=b5a63746fc84a456d) * ⭐ **[NSFW Movie Site Search](https://cse.google.com/cse?cx=006516753008110874046:3-svpblbro8)** / [2](https://cse.google.com/cse?cx=b5a63746fc84a456d)
* ⭐ **[Film1k](https://www.film1k.com/)** * ⭐ **[Film1k](https://www.film1k.com/)**
@ -91,13 +77,13 @@
* ⭐ **[My Duck Is Dead](https://myduckisdead.org/)** * ⭐ **[My Duck Is Dead](https://myduckisdead.org/)**
* [MangoPorn](https://mangoporn.net/) * [MangoPorn](https://mangoporn.net/)
* [EroticMV](https://eroticmv.com/) * [EroticMV](https://eroticmv.com/)
* [itseroma](https://t.me/itseroma) * [EroticMV](https://eroticmv.com/)
* [UiiU Movies](https://uiiumovies.net/)
* [EroGarga](https://www.erogarga.com/) * [EroGarga](https://www.erogarga.com/)
* [EroticAge](https://www.eroticage.net/) * [EroticAge](https://www.eroticage.net/)
* [VintageClassix](http://www.vintageclassix.com/) * [VintageClassix](http://www.vintageclassix.com/)
* [paradisehill](https://en.paradisehill.cc/) * [paradisehill](https://en.paradisehill.cc/)
* [Cat3Movies](https://cat3movie.org/) * [Cat3Movies](https://cat3movie.org/)
* [PornDune](https://porndune.com/)
* [pornxtheatre](https://pornxtheatre.com/) * [pornxtheatre](https://pornxtheatre.com/)
* [AdultLoad](https://adultload.ws/) * [AdultLoad](https://adultload.ws/)
* [WIPFilms](https://wipfilms.net/) * [WIPFilms](https://wipfilms.net/)
@ -118,24 +104,18 @@
* [nJAV](https://njav.tv/) * [nJAV](https://njav.tv/)
* [Avgle](https://avgle.com/) * [Avgle](https://avgle.com/)
* [Senzuri Tube](https://senzuri.tube/) * [Senzuri Tube](https://senzuri.tube/)
* [JavFan](https://javfan.one/ )
* [rou.video](https://rou.video/) * [rou.video](https://rou.video/)
* [javdoe](https://javdoe.sh/)
* [playav](https://playav.tv/) * [playav](https://playav.tv/)
* [dnaav](https://www.dnaav.com/) * [dnaav](https://www.dnaav.com/)
* [JAVMost](https://www5.javmost.com/) * [JAVMost](https://www5.javmost.com/)
* [Javfinder](https://javfinder.sb/) * [Javfinder](https://javfinder.sb/)
* [avjoy](https://avjoy.me/) * [avjoy](https://avjoy.me/)
* [91Porna](https://91porna.com/)
* [OPJAV](https://opjav.com/) * [OPJAV](https://opjav.com/)
* [91rb](https://91rb.net/)
* [JavFun](https://asian.javfun.me/)
* [JAV19](https://www.jav19.com/) * [JAV19](https://www.jav19.com/)
* [WatchJAVonline](https://watchjavonline.com/) * [WatchJAVonline](https://watchjavonline.com/)
* [JavBangers](https://www.javbangers.com/) * [JavBangers](https://www.javbangers.com/)
* [JavEnglish](https://javenglish.cc/) * [JavEnglish](https://javenglish.cc/)
* [7MMTV](https://7mmtv.sx/) * [7MMTV](https://7mmtv.sx/)
* [Jav-angel](https://jav-angel.net/)
* [KoreanPornMovies](https://koreanpornmovie.com/) - Korean * [KoreanPornMovies](https://koreanpornmovie.com/) - Korean
* [cosplay.jav](https://cosplay.jav.pw/) - Cosplay Porn * [cosplay.jav](https://cosplay.jav.pw/) - Cosplay Porn
@ -146,6 +126,7 @@
* ⭐ **[Archivebate](https://archivebate.com/)** * ⭐ **[Archivebate](https://archivebate.com/)**
* ⭐ **[CamCaps](https://camcaps.ac/)** * ⭐ **[CamCaps](https://camcaps.ac/)**
* ⭐ **[Peachurbate](https://peachurbate.com/en)** * ⭐ **[Peachurbate](https://peachurbate.com/en)**
* [OnCam](https://oncam.me/)
* [Cam Show Download](https://camshowdownload.com/) * [Cam Show Download](https://camshowdownload.com/)
* [Curbate](https://curbate.tv/) * [Curbate](https://curbate.tv/)
* [Mobile Porn](https://www.mobilepornmovies.com/) * [Mobile Porn](https://www.mobilepornmovies.com/)
@ -163,7 +144,6 @@
* [SiteRips](https://www.siterips.org/) * [SiteRips](https://www.siterips.org/)
* [PornFactors](https://pornfactors.com/) * [PornFactors](https://pornfactors.com/)
* [PornoRips](https://pornorips.to/) * [PornoRips](https://pornorips.to/)
* [XXXCollections](https://xxxcollections.net/)
* [BestPornstars](https://www.bestpornstars.org/) * [BestPornstars](https://www.bestpornstars.org/)
* [Best-MovieZ](https://www.best-moviez.ws/category/porn-18/) * [Best-MovieZ](https://www.best-moviez.ws/category/porn-18/)
* [xdcc2.jav](https://xdcc2.jav.pw/) - IRC Asian Porn * [xdcc2.jav](https://xdcc2.jav.pw/) - IRC Asian Porn
@ -176,14 +156,13 @@
* [PornBBS](https://pornbbs.org/) * [PornBBS](https://pornbbs.org/)
* [PornBB](https://www.pornbb.org/forum) * [PornBB](https://www.pornbb.org/forum)
* [Eroticity](https://eroticity.net/forum.php) * [Eroticity](https://eroticity.net/forum.php)
* [CyberLeaks](https://cyberleaks.org/)
* [PlanetSuzy](http://www.planetsuzy.org/) * [PlanetSuzy](http://www.planetsuzy.org/)
* [xFobo](https://xfobo.com/index.php) * [xFobo](https://xfobo.com/index.php)
* [xBunker](https://xbunker.nu/) * [xBunker](https://xbunker.nu/)
* [AdultDVDTalk](https://www.adultdvdtalk.com/) * [AdultDVDTalk](https://www.adultdvdtalk.com/)
* [Akiba](https://www.akiba-online.com/)
* [jdc](https://discord.gg/jdc) - Asian Porn Discord * [jdc](https://discord.gg/jdc) - Asian Porn Discord
* [SEGNECK](https://discord.gg/jP5BHAUbeu) - Asian Porn Discord * [SEGNECK](https://discord.gg/jP5BHAUbeu) - Asian Porn Discord
* [bdsmlr](https://bdsmlr.com/) - NSFW Tumblr Alternative
*** ***
@ -197,12 +176,9 @@
* ⭐ **[OneJAV](https://onejav.com/)** - JAV * ⭐ **[OneJAV](https://onejav.com/)** - JAV
* ⭐ **[141Jav](https://www.141jav.com/)** / **[141PPV](https://www.141ppv.com/)** - JAV * ⭐ **[141Jav](https://www.141jav.com/)** / **[141PPV](https://www.141ppv.com/)** - JAV
* ⭐ **[Next JAV](https://nextjav.com/)** - JAV * ⭐ **[Next JAV](https://nextjav.com/)** - JAV
* ⭐ **[Xchina](https://en.xchina.co/)** / [Note](https://pastebin.com/u4jcUYVq) / [Warning](https://pastebin.com/8DuageSv)
* [Sexy-Pics](https://www.sexy-pics.us/) * [Sexy-Pics](https://www.sexy-pics.us/)
* [色花堂-98堂](https://www.sehuatang.net/) * [色花堂-98堂](https://www.sehuatang.net/)
* [pussytorrents](https://pussytorrents.org/)
* [18Mag](https://18mag.net/) * [18Mag](https://18mag.net/)
* [bootytape](https://ssl.bootytape.com/)
* [PornoLab](https://pornolab.net/forum/index.php) * [PornoLab](https://pornolab.net/forum/index.php)
* [LoveTorrent](https://lovetorrent.net/), [2](https://5pornotorrent.net/) * [LoveTorrent](https://lovetorrent.net/), [2](https://5pornotorrent.net/)
* [PornRips](https://pornrips.to/) - HEVC Porn Rips * [PornRips](https://pornrips.to/) - HEVC Porn Rips
@ -219,67 +195,37 @@
# ► Images / Reels # ► Images / Reels
* ⭐ **[ImageFap](https://www.imagefap.com/)** * ⭐ **[ImageFap](https://www.imagefap.com/)**
* ⭐ **[NSFWMonster](https://nsfwmonster.com/)** * ⭐ **[NSFWMonster](https://nsfwmonster.com/)** - NSFW Images / GIFs
* ⭐ **[FikFap](https://fikfap.com/)**
* ⭐ **[fyptt](https://fyptt.to/)**
* [Sex.com](https://www.sex.com/) * [Sex.com](https://www.sex.com/)
* [PornPics](https://www.pornpics.com/) * [PornPics](https://www.pornpics.com/)
* [Realbooru](https://realbooru.com/) * [Realbooru](https://realbooru.com/)
* [PimpAndHost](https://pimpandhost.com/site/trending) * [PimpAndHost](https://pimpandhost.com/site/trending)
* [PornedUp](https://pornedup.com/) * [PornedUp](https://pornedup.com/)
* [V2PH](https://www.v2ph.com/?hl=en)
* [Sexy Girls Pics](https://sexygirlspics.com/) * [Sexy Girls Pics](https://sexygirlspics.com/)
* [HotPornPhotos](https://www.hotpornphotos.com/) * [HotPornPhotos](https://www.hotpornphotos.com/)
* [PornPaw](https://www.pornpaw.com/) * [PornPaw](https://www.pornpaw.com/)
* [xxxtik](https://xxxtik.com/) * [EliteBabes](https://www.elitebabes.com/) - NSFW Images / GIFs
* [Tik.porn](https://tik.porn/) * [GifHQ](https://gifhq.com/) - NSFW Images / GIFs
* [TikPorn.tube](https://tikporn.tube/) * [GifSauce](https://gifsauce.com/) - NSFW Images / GIFs
* [tiktits](https://tiktits.com/) * [HardGIF](https://hardgif.com/) - NSFW GIFs
* [OnlyTik](https://onlytik.com/) * [xfree](https://www.xfree.com/) - NSFW Reels
* [Xfollow](https://www.xfollow.com/) * [fap.bar](https://fap.bar/) - NSFW Reels
* [Tik.pm](https://tik.pm/) * [FIQFUQ](https://fiqfuq.com/) - NSFW Reddit Posts
* [r/tiktokporn](https://www.reddit.com/r/tiktokporn/) * [Reddxxx](https://reddxxx.com/) - NSFW Reddit Posts
* [r/Tiktokthots](https://www.reddit.com/r/tiktokthots/) * [Reddit Gone Wild](https://gonewildbrowser.com/) - NSFW Reddit Posts
* [EliteBabes](https://www.elitebabes.com/) * [ViralPorn](https://viralporn.com/) - NSFW Reddit Posts
* [GifHQ](https://gifhq.com/) * [nsfw.xxx](https://nsfw.xxx/) - NSFW Reddit Images
* [GifSauce](https://gifsauce.com/) * [Scroller](https://scrolller.com/) - NSFW Reddit Images
* [HardGIF](https://hardgif.com/)
* [redgifs](https://www.redgifs.com/)
* [xfree](https://www.xfree.com/)
* [fap.bar](https://fap.bar/)
* [FIQFUQ](https://fiqfuq.com/)
* [Reddxxx](https://reddxxx.com/)
* [Reddit Gone Wild](https://gonewildbrowser.com/)
* [ViralPorn](https://viralporn.com/)
* [nsfw.xxx](https://nsfw.xxx/)
* [Scroller](https://scrolller.com/)
* [NSFWSwipe](https://nsfwswipe.com/v/6716209)
* [NSFW Monster](https://nsfwmonster.com/)
* [PornAMinute](https://porninaminute.org/)
* [Simple-Costplay](https://www.simply-cosplay.com/), [Mitaku](https://mitaku.net/), [Hentai Costplays](https://hentai-cosplays.com) or [NudeCosplayGirls](https://nudecosplaygirls.com/) - Cosplay Images
* [ArchiveOfSins](https://archiveofsins.com/hc/) - NSFW 4Chan Archive * [ArchiveOfSins](https://archiveofsins.com/hc/) - NSFW 4Chan Archive
* [Fap Roulette](https://www.faproulette.co/) - Random Roulette Images * [NSFWSwipe](https://nsfwswipe.com/v/6716209) - NSFW GIFs
* [NSFW Monster](https://nsfwmonster.com/) - NSFW GIFs
* [PornAMinute](https://porninaminute.org/) - NSFW GIFs
* [EroMe](https://www.erome.com/explore) - Amateur NSFW
* [r/snapleaks](https://www.reddit.com/r/snapleaks/), [r/NSFW_Snapchat](https://www.reddit.com/r/NSFW_Snapchat/) or [r/DirtySnapchat](https://www.reddit.com/r/DirtySnapchat/) - NSFW Snapchat Subreddits
* [Fapeza](https://fapeza.com/) - Instagram Models
* [Simple-Costplay](https://www.simply-cosplay.com/), [Mitaku](https://mitaku.net/), [Hentai Costplays](https://hentai-cosplays.com) or [NudeCosplayGirls](https://nudecosplaygirls.com/) - Cosplay Images
* [Boobpedia](https://www.boobpedia.com/) - Boob Encyclopedia * [Boobpedia](https://www.boobpedia.com/) - Boob Encyclopedia
* [ChatPic](https://chatpic.org/) - Create Chat Rooms and share images
***
## ▷ Leak Sites
* ⭐ **[Leak CSE](https://cse.google.com/cse?cx=d638aa7da557546d5)**, [2](https://cse.google.com/cse?cx=230603009f774dff1) - Leak Custom Search Engines
* ⭐ **[Fapello](https://fapello.com/)** - OnlyFans / Patreon
* ⭐ **[Hotleak](https://hotleak.vip/)** - OnlyFans / Patreon
* ⭐ **[Kemono](https://kemono.su/)** - Patreon / [Downloader](https://github.com/notFaad/coom-dl)
* ⭐ **[Coomer](https://coomer.su/)** - OnlyFans
* ⭐ **[SimpCity](https://simpcity.su/)** - OnlyFans / Patreon
* [Reddit Plug](https://redditplug.com/) - OnlyFans
* [Epic Leaks](https://t.me/+ajc9iF2hjWU3Mjgx) - OnlyFans
* [PornLeaks](https://pornleaks.in/) or [Vixenleaks](https://vixenleaks.com/) - OnlyFans / Patreon
* [NobodyHome](https://nobodyhome.tv/index.php) - OnlyFans
* [Vlixa](https://vlixa.com/) - OnlyFans
* [OnlyFans421](https://rentry.org/OnlyFans421) - OnlyFans
* [Channel Free Pack](https://t.me/channelfreepack) - OnlyFans
* [Thothub](https://thothub.to/), [2](https://thothub.is/) - OnlyFans
* [OF-Scraper](https://github.com/datawhores/OF-Scraper) or [OF-DL](https://github.com/sim0n00ps/OF-DL) - OnlyFans Scrapers
*** ***
@ -291,9 +237,9 @@
* [Pornstars.ai](https://www.pornstars.ai/) * [Pornstars.ai](https://www.pornstars.ai/)
* [PornLabs](https://editor.imagelabs.net/) / [Discord](https://discord.com/invite/RJX9FWWAsn) * [PornLabs](https://editor.imagelabs.net/) / [Discord](https://discord.com/invite/RJX9FWWAsn)
* [Nonolo.ai](https://no.nolo.ai/) * [Nonolo.ai](https://no.nolo.ai/)
* [MetArtHunter](https://www.metarthunter.com/)
* [AIPorn](https://www.aiporn.net/) * [AIPorn](https://www.aiporn.net/)
* [pornpen.ai](https://pornpen.ai/feed) * [pornpen.ai](https://pornpen.ai/feed)
* [Pornshow](https://app.pornshow.ai/)
* [Pornify](https://pornify.cc/) * [Pornify](https://pornify.cc/)
* [AIHentai.co](https://aihentai.co/) * [AIHentai.co](https://aihentai.co/)
* [Spicy Porn](https://spicy.porn/) * [Spicy Porn](https://spicy.porn/)
@ -305,15 +251,47 @@
*** ***
## ▷ Social Media Leaks
* ⭐ **[Leak CSE](https://cse.google.com/cse?cx=d638aa7da557546d5)**, [2](https://cse.google.com/cse?cx=230603009f774dff1) - Leak Custom Search Engines
* ⭐ **[Fapello](https://fapello.com/)** - OnlyFans / Patreon
* ⭐ **[Hotleak](https://hotleak.vip/)** - OnlyFans / Patreon
* ⭐ **[kemono.party](https://kemono.su/)** - Patreon
* ⭐ **[Coomer.Party](https://coomer.su/)** - OnlyFans
* ⭐ **[SimpCity](https://simpcity.su/)** - OnlyFans / Patreon
* [Bunkr Albums](https://bunkr-albums.io/) - OnlyFans
* [PornLeaks](https://pornleaks.in/) or [Vixenleaks](https://vixenleaks.com/) - OnlyFans / Patreon
* [NobodyHome](https://nobodyhome.tv/index.php) - OnlyFans
* [Vlixa](https://vlixa.com/) - OnlyFans
* [OnlyFans420](https://rentry.co/OnlyFans420) / [2](https://rentry.org/OnlyFans421) - OnlyFans
* [Thothub](https://thothub.to/), [2](https://thothub.is/) - OnlyFans
* [OF-Scraper](https://github.com/datawhores/OF-Scraper) or [OF-DL](https://github.com/sim0n00ps/OF-DL) - OnlyFans Scrapers
***
## ▷ TikTok
* ⭐ **[FikFap](https://fikfap.com/)** - NSFW TikTok
* ⭐ **[fyptt](https://fyptt.to/)** - NSFW TikTok
* [xxxtik](https://xxxtik.com/) - NSFW TikTok
* [Tik.porn](https://tik.porn/) - NSFW TikTok
* [TikPorn.tube](https://tikporn.tube/)- NSFW TikTok
* [tiktits](https://tiktits.com/) - NSFW TikTok
* [OnlyTik](https://onlytik.com/) - NSFW TikTok
* [Xfollow](https://www.xfollow.com/) - NSFW TikTok
* [Tik.pm](https://tik.pm/) - NSFW TikTok
* [r/tiktokporn](https://www.reddit.com/r/tiktokporn/) - NSFW TikTok Subreddit
* [r/Tiktokthots](https://www.reddit.com/r/tiktokthots/) - NSFW TikTok Subreddit
***
# ► Fictional # ► Fictional
*** ***
## ▷ Hentai Anime ## ▷ Hentai Anime
* 🌐 **[Wotaku](https://wotaku.moe/nsfw#anime)** - Hentai Anime Index / [Discord](https://discord.gg/vShRGx8ZBC)
* 🌐 **[The Index](https://theindex.moe/library/hentai)** or [Best Hentai Sites](https://besthentaisites.github.io/) - Hentai Site Lists * 🌐 **[The Index](https://theindex.moe/library/hentai)** or [Best Hentai Sites](https://besthentaisites.github.io/) - Hentai Site Lists
* 🌐 **[EverythingMoe](https://everythingmoe.com/?nsfw=true#section-hentai)** - Hentai Sites Index
* 🌐 **[/cumg/](https://rentry.co/coom)** - Hentai Resources * 🌐 **[/cumg/](https://rentry.co/coom)** - Hentai Resources
* ⭐ **[Nyaa Sukebei](https://sukebei.nyaa.si/)** - Hentai Torrents * ⭐ **[Nyaa Sukebei](https://sukebei.nyaa.si/)** - Hentai Torrents
* ⭐ **[Anime-Sharing](https://www.anime-sharing.com/#downloads-requests)** - Hentai DDL * ⭐ **[Anime-Sharing](https://www.anime-sharing.com/#downloads-requests)** - Hentai DDL
@ -334,7 +312,6 @@
* [HentaiPlay](https://hentaiplay.net/) - Hentai Streaming * [HentaiPlay](https://hentaiplay.net/) - Hentai Streaming
* [HentaiSea](https://hentaisea.com/) - Hentai Streaming * [HentaiSea](https://hentaisea.com/) - Hentai Streaming
* [AniPorn](https://aniporn.com/) - Hentai Streaming * [AniPorn](https://aniporn.com/) - Hentai Streaming
* [Hentaini](https://hentaini.com/) - Hentai Streaming
* [MioHentai](https://miohentai.com/) - Hentai Streaming * [MioHentai](https://miohentai.com/) - Hentai Streaming
* [999Hentai](https://999hentai.net/) - Hentai Streaming * [999Hentai](https://999hentai.net/) - Hentai Streaming
* [HentaiStream](https://hentaistream.xxx/) - Hentai Streaming * [HentaiStream](https://hentaistream.xxx/) - Hentai Streaming
@ -356,7 +333,9 @@
* [HentaiCloud](https://www.hentaicloud.com/) - Hentai Streaming * [HentaiCloud](https://www.hentaicloud.com/) - Hentai Streaming
* [HentaisTube](https://www.hentais.tube/) - Hentai Streaming * [HentaisTube](https://www.hentais.tube/) - Hentai Streaming
* [Watch Hentai](https://watchhentai.net/) - Hentai Streaming * [Watch Hentai](https://watchhentai.net/) - Hentai Streaming
* [HentaiDude](https://hentaidude.com/) - Hentai Streaming* [LatestHentai](https://latesthentai.com/) - Hentai Streaming * [HentaiDude](https://hentaidude.com/) - Hentai Streaming
* [HentaiPulse](https://hentaipulse.com/) - Hentai Streaming
* [LatestHentai](https://latesthentai.com/) - Hentai Streaming
* [CartoonPornVideos](https://www.cartoonpornvideos.com/) - Hentai Streaming * [CartoonPornVideos](https://www.cartoonpornvideos.com/) - Hentai Streaming
* [Hentai2w](https://hentai2w.com/) - Hentai Streaming * [Hentai2w](https://hentai2w.com/) - Hentai Streaming
* [sakuracircle](https://sakuracircle.com/) - Hentai DDL * [sakuracircle](https://sakuracircle.com/) - Hentai DDL
@ -380,35 +359,32 @@
## ▷ Hentai Manga / Comics ## ▷ Hentai Manga / Comics
* 🌐 **[Wotaku](https://wotaku.moe/nsfw#manga)** - Hentai Manga Index / [Discord](https://discord.gg/vShRGx8ZBC) * ⭐ **[E-Hentai](https://e-hentai.org/)** or [ExHentai](https://exhentai.org/) - Hentai Manga / Comics
* 🌐 **[EverythingMoe](https://everythingmoe.com/?nsfw=true#section-hentairead)** - Hentai Manga / Comics Index
* ⭐ **[E-Hentai](https://e-hentai.org/)** or [ExHentai](https://exhentai.org/) - Hentai Manga / Comics
* ⭐ **E-Hentai Tools** - [Android Client](https://github.com/honjow/FEhViewer) / [Deleted Galleries](https://panda.chaika.moe/) / [Downloader](https://gitlab.com/squishydreams/pandaforever), [2](https://github.com/ccloli/E-Hentai-Downloader) * ⭐ **E-Hentai Tools** - [Android Client](https://github.com/honjow/FEhViewer) / [Deleted Galleries](https://panda.chaika.moe/) / [Downloader](https://gitlab.com/squishydreams/pandaforever), [2](https://github.com/ccloli/E-Hentai-Downloader)
* ⭐ **[IMHentai](https://imhentai.xxx/)** - Hentai Manga / Comics * ⭐ **[IMHentai](https://imhentai.xxx/)** - Hentai Manga / Comics
* ⭐ **[Hitomi](https://hitomi.la/)** - Hentai Manga * ⭐ **[Hitomi](https://hitomi.la/)** - Hentai Manga
* ⭐ **[3Hentai](https://3hentai.net/)** - Hentai Manga * ⭐ **[3Hentai](https://3hentai.net/)** - Hentai Manga
* ⭐ **[NHentai](https://nhentai.net/)** - Hentai Manga * ⭐ **[NHentai](https://nhentai.net/)** - Hentai Manga
* ⭐ **NHentai Tools** - [Android Client](https://github.com/Dar9586/NClientV2), [2](https://ttdyce.com/apps/nhviewer/) / [Downloader](https://github.com/RicterZ/nhentai), [2](https://nhentaidownloader.zirk.eu/) * ⭐ **[Anchira](https://anchira.to/)** - Official Fakku/Irodori Rips
* ⭐ **NHentai Tools** - [Android Client](https://github.com/Dar9586/NClientV2), [2](https://ttdyce.com/apps/nhviewer/) / [Downloader](https://github.com/RicterZ/nhentai), [2](https://github.com/Xwilarg/NHentaiDownloader)
* ⭐ **[Mihon](https://mihon.app/)** - Manga Reader * ⭐ **[Mihon](https://mihon.app/)** - Manga Reader
* ⭐ **Mihon Tools** - [Extensions](https://keiyoushi.github.io/extensions/), [2](https://discord.gg/3FbCpdKbdY), [3](https://wotaku.moe/guides/tech/repo) / [Official Forks](https://mihon.app/forks/), [2](https://github.com/null2264/yokai), [3](https://github.com/nekomangaorg/Neko) * ⭐ **Mihon Tools** - [Extensions](https://keiyoushi.github.io/extensions/), [2](https://discord.gg/3FbCpdKbdY) / [Official Forks](https://mihon.app/forks/), [2](https://github.com/null2264/yokai), [3](https://github.com/nekomangaorg/Neko)
* ⭐ **[Anime-Sharing](https://www.anime-sharing.com/#downloads-requests)** - Hentai Manga DDL * ⭐ **[Anime-Sharing](https://www.anime-sharing.com/#downloads-requests)** - Hentai Manga DDL
* ⭐ **[Nyaa Sukebei](https://sukebei.nyaa.si/)** - Hentai Manga Torrents * ⭐ **[Nyaa Sukebei](https://sukebei.nyaa.si/)** - Hentai Manga Torrents
* ⭐ **[Wholesome Hentai](https://wholesomelist.com/)** - Wholesome Manga Index * ⭐ **[Wholesome Hentai](https://wholesomelist.com/)** - Wholesome Manga Index / [Discord](https://discord.com/invite/cqAm6XWw)
* ⭐ **[Hitomi Downloader](https://github.com/KurtBestor/Hitomi-Downloader)**, **[Hakuneko](https://hakuneko.download/)** or [NN Downloader](https://github.com/Official-Husko/NN-Downloader) - Multi-Site Manga Downloaders * ⭐ **[Hitomi Downloader](https://github.com/KurtBestor/Hitomi-Downloader)**, **[Hakuneko](https://hakuneko.download/)** or [NN Downloader](https://github.com/Official-Husko/NN-Downloader) - Multi-Site Manga Downloaders
* [/r/Pornwha](https://www.reddit.com/r/Pornwha/) or [/r/Pornhwa](https://www.reddit.com/r/pornhwa/) - Pornwha / Pornhwa Subreddits
* [Hentai2Read](https://hentai2read.com/) or [HentaiHere](https://hentaihere.com/) - Hentai Manga * [Hentai2Read](https://hentai2read.com/) or [HentaiHere](https://hentaihere.com/) - Hentai Manga
* [Doujins.com](https://doujins.com/) - Hentai Manga / [Discord](https://discord.com/invite/EPnJqPf7xh) * [Doujins.com](https://doujins.com/) - Hentai Manga / [Discord](https://discord.com/invite/EPnJqPf7xh)
* [Luscious](https://www.luscious.net/) - Hentai Manga / Comics * [Luscious](https://www.luscious.net/) - Hentai Manga / Comics
* [Simply Hentai](https://www.simply-hentai.com/web) - Hentai Manga * [Simply Hentai](https://www.simply-hentai.com/web) - Hentai Manga
* [HentaiEnvy](https://hentaienvy.com/) - Hentai Manga / Comics * [HentaiEnvy](https://hentaienvy.com/) - Hentai Manga / Comics
* [HentaiEra](https://hentaiera.com/) - Hentai Manga * [HentaiEra](https://hentaiera.com/) - Hentai Manga
* [Yabai](https://yabai.si/) - Hentai Manga
* [HentaiRead](https://hentairead.com/) - Hentai Manga * [HentaiRead](https://hentairead.com/) - Hentai Manga
* [HentaiHand](https://hentaihand.com/en/) - Hentai Manga * [HentaiHand](https://hentaihand.com/en/) - Hentai Manga
* [HentaiZap](https://hentaizap.com/) - Hentai Manga * [HentaiZap](https://hentaizap.com/) - Hentai Manga
* [akuma](https://akuma.moe/) - Hentai Manga * [Doujin.sexy](https://doujin.sexy/) - Hentai Manga
* [MangaHentai](https://mangahentai.me/) - Hentai Manga * [MangaHentai](https://mangahentai.me/) - Hentai Manga
* [Toonily](https://toonily.me/) - Pornhwa * [Toonily](https://toonily.me/) - Pornwha
* [Manhwa18](https://manhwa18.net/) / [2](https://manhwa18.com/) / [3](https://pornwa.club/) - Pornhwa * [Manhwa18](https://manhwa18.net/) / [2](https://manhwa18.com/) / [3](https://pornwa.club/) - Pornhwa
* [Multporn](https://multporn.net/) - Hentai Manga / Comics * [Multporn](https://multporn.net/) - Hentai Manga / Comics
* [HentaiFox](https://hentaifox.com/) - Hentai Manga * [HentaiFox](https://hentaifox.com/) - Hentai Manga
@ -440,15 +416,19 @@
* [SVSComics](https://svscomics.com/) - Comics * [SVSComics](https://svscomics.com/) - Comics
* [BestPornComix](https://bestporncomix.com/) - Comics * [BestPornComix](https://bestporncomix.com/) - Comics
* [NXTComics](https://nxt-comics.net/) - Comics * [NXTComics](https://nxt-comics.net/) - Comics
* [KingComicX](https://kingcomix.com/) - Comics
* [GoldenComics](https://goldencomics.art/) - Comics * [GoldenComics](https://goldencomics.art/) - Comics
* [Porn Comics](https://porncomics.to/) - Comics * [Porn Comics](https://porncomics.to/) - Comics
* [BondageComixxx](https://bondagecomixxx.net/) - Comics * [BondageComixxx](https://bondagecomixxx.net/) - Comics
* [Xcomics](https://xcomics.se/) - Comics * [Xcomics](https://xcomics.se/) - Comics
* [Porn Comics](https://porncomics.to/) - Comics
* [XYZ Porn Comics](https://xyzcomics.com/) - Comics * [XYZ Porn Comics](https://xyzcomics.com/) - Comics
* [Manhwa18.cc](https://manhwa18.cc/) - Hentai Manga * [Manhwa18.cc](https://manhwa18.cc/) - Hentai Manga
* [manhwas.men](https://manhwas.men/) - Hentai Manga / [Discord](https://discord.com/invite/7t4DfpG)
* [Mangadass](https://mangadass.com/) - Hentai Manga * [Mangadass](https://mangadass.com/) - Hentai Manga
* [Hentaidexy](https://hentaidexy.net/) - Hentai Manga * [Hentaidexy](https://hentaidexy.net/) - Hentai Manga
* [Hentaiwebtoon](https://hentaiwebtoon.com/) - Hentai Manga * [Hentaiwebtoon](https://hentaiwebtoon.com/) - Hentai Manga
* [MangaGenki](https://mangagenki.com/) - Hentai Manga
* [OmegaScans](https://omegascans.org/) - Hentai Manga / [Discord](https://discord.com/invite/BrkUm8jeng) * [OmegaScans](https://omegascans.org/) - Hentai Manga / [Discord](https://discord.com/invite/BrkUm8jeng)
* [MadaraDex](https://madaradex.org/) - Hentai Manga / [Discord](https://discord.com/invite/mubnYvjFEY) * [MadaraDex](https://madaradex.org/) - Hentai Manga / [Discord](https://discord.com/invite/mubnYvjFEY)
* [Mikocon](https://www.mikocon.com/forum.php?mod=forumdisplay&fid=46) - Hentai Manga * [Mikocon](https://www.mikocon.com/forum.php?mod=forumdisplay&fid=46) - Hentai Manga
@ -470,36 +450,25 @@
## ▷ Games ## ▷ Games
* 🌐 **[Wotaku](https://wotaku.moe/nsfw#games)** - Eroge Index / [Discord](https://discord.gg/vShRGx8ZBC)
* 🌐 **[EverythingMoe](https://everythingmoe.com/?nsfw=true#section-games)** - Hentai Games Index
* ⭐ **[F95Zone](https://f95zone.to/)** * ⭐ **[F95Zone](https://f95zone.to/)**
* ⭐ **[Nyaa Sukebei](https://sukebei.nyaa.si/)** * ⭐ **[Nyaa Sukebei](https://sukebei.nyaa.si/)**
* ⭐ **[Anime-Sharing](https://www.anime-sharing.com/#downloads-requests)** - Hentai Games DDL * ⭐ **[Anime-Sharing](https://www.anime-sharing.com/#downloads-requests)** - Hentai Games DDL
* [Ryuugames](https://ryuugames.com/) * [Ryuugames](https://ryuugames.com/)
* [VNPocket](https://vnpocket.com) * [CPG Repacks](https://cpgrepacks.site/) - [Discord](https://discord.gg/dtBSZ9N)
* [CPG Repacks](https://cpgrepacks.site) - [Discord](https://discord.gg/dtBSZ9N)
* [PornDude Games](https://theporndude.com/best-porn-games), [2](https://theporndude.com/free-sex-games) * [PornDude Games](https://theporndude.com/best-porn-games), [2](https://theporndude.com/free-sex-games)
* [The Asenheim Project](https://www.asenheim.org) / [Play Online](https://tss.asenheim.org/) * [The Asenheim Project](https://www.asenheim.org) / [Play Online](https://tss.asenheim.org/)
* [Mikocon](https://www.mikocon.com/forum.php?mod=forumdisplay&fid=46) * [Mikocon](https://www.mikocon.com/forum.php?mod=forumdisplay&fid=46)
* [GGBases](https://www.ggbases.com/) * [GGBases](https://www.ggbases.com/)
* [BetterRepack](https://dl.betterrepack.com/public/) - [Discord](https://discord.gg/pSGZ4uz) * [BetterRepack](https://dl.betterrepack.com/public/) - [Discord](https://discord.gg/pSGZ4uz)
* [69 Games](https://forum.69games.xxx/) * [69 Games](https://forum.69games.xxx/)
* [LewdCorner](https://lewdcorner.com/)
* [The Asenheim Project](https://www.asenheim.org/) * [The Asenheim Project](https://www.asenheim.org/)
* [GamCore](https://gamcore.com/) - NSFW Browser Games
* [LewdList](http://web.archive.org/web/20190515205509/https://www.lewdlist.com/) - Game Index * [LewdList](http://web.archive.org/web/20190515205509/https://www.lewdlist.com/) - Game Index
* [Lewdzone](https://lewdzone.com/) - Games / Animations * [Lewdzone](https://lewdzone.com/) - Games / Animations
* [Lewd Patcher](https://lewdpatcher.com/) - Adult Game Patches * [Lewd Patcher](https://lewdpatcher.com/) - Adult Game Patches
* [Lovers Lab](https://www.loverslab.com/) - Adult Game Mods
* [NakedSkins](https://www.nakedskins.com/) - Naked Skins for Games * [NakedSkins](https://www.nakedskins.com/) - Naked Skins for Games
* [WickedWhims](https://wickedwhimsmod.com/index) - NSFW Sims Mod * [WickedWhims](https://wickedwhimsmod.com/index) - NSFW Sims Mod
* [HDoomGuy](https://hdoomguy.newgrounds.com/) - NSFW Doom Mod * [HDoomGuy](https://hdoomguy.newgrounds.com/) - NSFW Doom Mod
* [Sagaoz](https://sagaoz.net/savedata/) - Japanese Visual Novel Save Files * [minegasm](https://www.minegasm.net/) - Connect Minecraft to Sex Toys
* [FapCraft](https://fapcraft.org/) - NSFW Minecraft Mod
* [Minegasm](https://www.minegasm.net/) - Connect Minecraft to Sex Toys
* [AdultOyunÇeviri](https://adultoyunceviri.com) - Turkish Game Localizations
* [G-Point Adult](https://www.gpadult.com) - Turkish Game Localizations
* [YetişkinÇeviri](https://www.ademyurt.com/kategori/android/) - Turkish Game Localizations / [Discord](https://discord.com/invite/GQeQRzAKCR)
*** ***
@ -510,7 +479,7 @@
* ⭐ **[Rule 34](https://rule34.xxx/)** * ⭐ **[Rule 34](https://rule34.xxx/)**
* ⭐ **[Rule34.dev](https://rule34.dev/)** - Multi-Booru Aggregator * ⭐ **[Rule34.dev](https://rule34.dev/)** - Multi-Booru Aggregator
* ⭐ **[Hentai Foundry](https://www.hentai-foundry.com/)** / [Discord](https://discord.com/invite/gMtgEcZuk4) * ⭐ **[Hentai Foundry](https://www.hentai-foundry.com/)** / [Discord](https://discord.com/invite/gMtgEcZuk4)
* [kemono.party](https://kemono.su/) / [Downloader](https://github.com/notFaad/coom-dl) * [kemono.party](https://kemono.party/)
* [Gelbooru](https://gelbooru.com/) * [Gelbooru](https://gelbooru.com/)
* [yande.re](https://yande.re/) * [yande.re](https://yande.re/)
* [Konachan](https://konachan.com/) * [Konachan](https://konachan.com/)
@ -545,8 +514,7 @@
* [Bellesa](https://www.bellesa.co/story/all) - Fictional * [Bellesa](https://www.bellesa.co/story/all) - Fictional
* [SexualStories](https://sexualstories.club/) - Fictional * [SexualStories](https://sexualstories.club/) - Fictional
* [TheFetLibrary](https://www.thefetlibrary.com/) - Fictional * [TheFetLibrary](https://www.thefetlibrary.com/) - Fictional
* [QuestionableQuestingQ](https://forum.questionablequesting.com/) - Fictional / Signup Required * [Adult-Fanfiction](https://www.adult-fanfiction.org/) - Fanfiction
* [Adult-Fanfiction](https://www.adult-fanfiction.org/) - Fictional
* [HyperDreams](https://www.hyperdreams.com/) - Fictional / Interactive * [HyperDreams](https://www.hyperdreams.com/) - Fictional / Interactive
* [Infaera](https://infaera.neocities.org/) - Fictional / Interactive * [Infaera](https://infaera.neocities.org/) - Fictional / Interactive
* [EroFights](https://erofights.com/) - Fictional / Chat-Based * [EroFights](https://erofights.com/) - Fictional / Chat-Based
@ -559,7 +527,6 @@
# ► Magazines # ► Magazines
* ⭐ **[Mens Magazines](https://archive.org/details/mensmagazines_post70s)** - NSFW Magazine Archives (1970s-modern)
* [SpicyMags](https://spicymags.xyz/) * [SpicyMags](https://spicymags.xyz/)
* [downmagaz](https://downmagaz.net/adult_magazine/) * [downmagaz](https://downmagaz.net/adult_magazine/)
* [PDF Dude](https://pdfdude.com/category/adult/) * [PDF Dude](https://pdfdude.com/category/adult/)
@ -577,14 +544,13 @@
# ► LGBTQ+ # ► LGBTQ+
* 🌐 **[MyGaySites](https://mygaysites.com/)** - Gay Porn Site Index * 🌐 **[MyGaySites](https://mygaysites.com/)** - Gay Porn Site Index
* [PlayHDPorn Gay](https://www.playhdporn.com/categories/gay/) * [Gay-Hotfile](https://gay-hotfile.errio.net/) - Downloads
* [Yupdates](https://yupdates.neocities.org/) - Gay Porn Artwork / [Drives](https://cat.yupdates.art/) / [Discord](https://discord.com/invite/ECFKuBawQg) * [Yupdates](https://yupdates.neocities.org/) - Gay Porn Artwork / [Drives](https://cat.yupdates.art/) / [Discord](https://discord.com/invite/ECFKuBawQg)
* [PBC](https://pbc.xxx/) - Gay Porn Encyclopedia * [PBC](https://pbc.xxx/) - Gay Porn Encyclopedia
* [MyReadingManga](https://myreadingmanga.info/) - LGBTQ+ Hentai * [MyReadingManga](https://myreadingmanga.info/) - LGBTQ+ Hentai
* [BLCollection](https://blcollection.co/) - Boys Love Manga * [BLCollection](https://blcollection.co/) - Boys Love Manga
* [Nifty](https://www.nifty.org/nifty/) - LGBT / Fictional * [Nifty](https://www.nifty.org/nifty/) - LGBT / Fictional
* [FictionMania](https://fictionmania.tv/) - Transgender / Fictional * [FictionMania](https://fictionmania.tv/) - Transgender / Fictional
* [MrDickName](https://t.me/MrDickName) - Telegram Channel
* [TransVids](https://transvids.wtf/) - OnlyFans / Patreon * [TransVids](https://transvids.wtf/) - OnlyFans / Patreon
*** ***
@ -594,23 +560,21 @@
* ⭐ **[Stash](https://stashapp.cc/)**, [Fapel System](https://github.com/pronopython/fapel-system), [Porn Vault](https://gitlab.com/porn-vault/porn-vault) or [AdultMediaManager](https://github.com/adultmm/AdultMediaManager) - Porn File Managers * ⭐ **[Stash](https://stashapp.cc/)**, [Fapel System](https://github.com/pronopython/fapel-system), [Porn Vault](https://gitlab.com/porn-vault/porn-vault) or [AdultMediaManager](https://github.com/adultmm/AdultMediaManager) - Porn File Managers
* ⭐ **[PornStarByFace](https://pornstarbyface.com/)** - NSFW Image Reverse Search * ⭐ **[PornStarByFace](https://pornstarbyface.com/)** - NSFW Image Reverse Search
* ⭐ **[SauceNao](https://saucenao.com/)** - Fictional NSFW Reverse Image Search / [Extension](https://saucenao.com/tools/) * ⭐ **[SauceNao](https://saucenao.com/)** - Fictional NSFW Reverse Image Search / [Extension](https://saucenao.com/tools/)
* ⭐ **[Internet Adult Film Database](https://www.iafd.com/)**, [Data18](https://www.data18.com/), [MyPornStarBook](https://www.mypornstarbook.net/), [Warashi](http://warashi-asian-pornstars.fr/) or [AVSOX](https://avsox.click/en) - Adult Film Databases / Reviews * ⭐ **[Internet Adult Film Database](https://www.iafd.com/)** or [MyPornStarBook](https://www.mypornstarbook.net/) - Adult Film Databases / Reviews
* ⭐ **[NameThatPorn](https://namethatporn.com/)**, [NameThatPornstar](https://namethatpornstar.com/), [r/pornID](https://www.reddit.com/r/pornID/) or [r/tipofmypenis](https://www.reddit.com/r/tipofmypenis/) - Porn Identification Communities * ⭐ **[NameThatPorn](https://namethatporn.com/)**, [NameThatPornstar](https://namethatpornstar.com/), [r/pornID](https://www.reddit.com/r/pornID/) or [r/tipofmypenis](https://www.reddit.com/r/tipofmypenis/) - Porn Identification Communities
* ⭐ **[Vibemate PC](https://vibemate.com/)** - Feature-Rich Porn Browser * ⭐ **[Vibemate PC](https://vibemate.com/)** - Feature-Rich Porn Browser
* ⭐ **[Bypass Subreddit Blocks](https://pastebin.com/gAAEQnqn)** * ⭐ **[Bypass Subreddit Blocks](https://pastebin.com/gAAEQnqn)**
* [Panic Button](https://aecreations.io/panicbutton/index.php) - Quickly Close All Tabs * [Panic Button](https://pastebin.com/mDWBZ7fQ) - Quickly Close All Tabs
* [Javinizer](https://github.com/javinizer/Javinizer) - JAV File Organizer * [Javinizer](https://github.com/javinizer/Javinizer) - JAV File Organizer
* [DeepMosaics](https://github.com/HypoX64/DeepMosaics) - Remove Mosaics from Porn * [DeepMosaics](https://github.com/HypoX64/DeepMosaics) - Remove Mosaics from Porn
* [ThePornDB](https://metadataapi.net/) - Porn Metadata * [ThePornDB](https://metadataapi.net/) - Porn Metadata
* [Sleazy Fork](https://sleazyfork.org/en/scripts) - Adult User Scripts / [Add to Greasyfork](https://greasyfork.org/en/scripts/23840) * [Bypass Age Verification](https://greasyfork.org/en/scripts/393525-bypass-age-verification-deviantart-com) - Bypass Deviantart Age Restriction
* [Sleazy Fork](https://sleazyfork.org/en/scripts) - Adult User Scripts
* [Anal Sex Guide](https://github.com/regdude/anal) - Anal Sex Guide / Safety * [Anal Sex Guide](https://github.com/regdude/anal) - Anal Sex Guide / Safety
* [FapInstructor](https://fapinstructor.com/) or [Joi.how](https://joi.how/) - Fap Instructor Tools * [FapInstructor](https://fapinstructor.com/) or [Joi.how](https://joi.how/) - Fap Instructor Tools
* [BDSM Tools](https://www.bdsmtools.org/) - BDSM Tools * [BDSM Tools](https://www.bdsmtools.org/) - BDSM Tools
* [BDSM Test](https://bdsmtest.org/) - BDSM Test
* [KinxList](https://kinxlist.com/) - BDSM Checklist
* [Chaster](https://chaster.app/) - Chastity Tools
* [WallTalker](https://walltaker.joi.how/) - Control Wallpapers * [WallTalker](https://walltaker.joi.how/) - Control Wallpapers
* [Awesome Buttplug](https://github.com/buttplugio/awesome-buttplug) - Buttplug Project Index * [Awesome-Buttplug](https://github.com/buttplugio/awesome-buttplug) - Buttplug Project Index
* [Buttplug.io](https://buttplug.io/) - Sex Toy Control Software * [Buttplug.io](https://buttplug.io/) - Sex Toy Control Software
* [Thunder's Place](https://thunders.place/) - Penis Enlargement Discussion & Safety * [Thunder's Place](https://thunders.place/) - Penis Enlargement Discussion & Safety
* [MoanMyIP](https://www.moanmyip.com/) - Sexy Girls Moaning Your IP * [MoanMyIP](https://www.moanmyip.com/) - Sexy Girls Moaning Your IP
@ -618,4 +582,19 @@
*** ***
# ► [Porn Quitting](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/misc#wiki_.25B7_porn_quitting) # ► Porn Quitting
* 🌐 **[Awesome-Adult-Content-Filtering](https://github.com/wesinator/awesome-Adult-Content-Filtering)** - Porn Quitting Tools Index
* ↪️ **[Site Blocking](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/misc#wiki_.25B7_productivity_tools)**
* ⭐ **[EasyPeasy](https://easypeasymethod.org/)**, [2](https://gitlab.com/snuggy/easypeasy) - Painlessly Quit Pornography
* ⭐ **[NoFap Forums](https://forum.nofap.com/index.php)** or [Your Brain Rebalanced](https://yourbrainrebalanced.com/) - Forums
* [beta-censoring](https://github.com/silveredgold/beta-censoring), [beta-protection](https://github.com/silveredgold/beta-protection) or [Wingman](https://github.com/wingman-jr-addon/wingman_jr) - Porn Blocking Extensions
* [Plucky](https://pluckyfilter.com/) - Content Filter
* [Brainbuddy](https://www.brainbuddyapp.com/) - Porn Blocker / Android / iOS
* [SelfControlApp](https://selfcontrolapp.com/) - Mac Site Blocker
* [CleanBrowsing](https://cleanbrowsing.org/filters/) - Family DNS Filters
* [cringeMDb](https://cringemdb.com/), [Age Rating JuJu](https://www.ageratingjuju.com/), [CommonSenseMedia](https://www.commonsensemedia.org/) or [unconsenting media](https://www.unconsentingmedia.org) - Find SFW Movies
* [Movie Parser](https://raskie.com/post/practical-ai-autodetecting-nsfw) - Detect NSFW Scenes in Movies / [GitHub](https://github.com/dynamite-ready/movie-parser)
* [Puri.fy](https://pury.fi/) or [NSFW-Filter](https://nsfw-filter.com/) - Block NSFW Images
* [Fortify](https://www.joinfortify.com/) - Porn Quitting Community
* [SAA Recovery](https://saa-recovery.org/), [Cosa Recovery](https://cosa-recovery.org/) or [Smart Recovery](https://www.smartrecovery.org/) - Find Sex Addition Meetings

36
docs/package.json Normal file
View File

@ -0,0 +1,36 @@
{
"name": "@fmhy/docs",
"version": "1.0.0",
"type": "module",
"scripts": {
"dev": "vitepress dev",
"build": "vitepress build",
"preview": "vitepress preview",
"lint": "eslint --cache -f pretty .",
"og": "x-satori -t ./.vitepress/hooks/Template.vue -c ./.vitepress/hooks/satoriConfig.ts --dev"
},
"dependencies": {
"@headlessui/vue": "^1.7.17",
"@resvg/resvg-js": "^2.6.0",
"vitepress": "npm:@taskylizard/vitepress@1.0.10",
"consola": "^3.2.3",
"feed": "^4.2.2",
"fs-extra": "^11.2.0",
"nprogress": "^0.2.0",
"pathe": "^1.1.2",
"unocss": "^0.58.4",
"vue": "^3.4.15",
"x-satori": "^0.1.5",
"zod": "^3.22.4"
},
"devDependencies": {
"@taskylizard/eslint-config": "^1.1.1",
"eslint": "^8.56.0",
"@iconify-json/carbon": "^1.1.28",
"@iconify-json/twemoji": "^1.1.15",
"@types/fs-extra": "^11.0.4",
"@types/node": "^20.11.15",
"@types/nprogress": "^0.2.3"
},
"author": "nbats, taskylizard & Contributors"
}

View File

@ -0,0 +1,48 @@
---
title: Minecraft Server
description: Minecraft Server
date: 2024-02-11
next: false
aside: left
prev: false
sidebar: false
footer: true
---
<Post authors="['nbats']" />
### Join at: `fmhy.net`
- You will be spawned at the hub.
- To go to vanilla, head to the end portal.
- To go to modded, head to the nether portal.
- Modded requires Minecraft 1.20.1 Forge.
- Vanilla requires Minecraft 1.20.4.
### Mod Downloads
**Attached is the mod pack for modded**:
[RAR](https://qiwi.gg/file/acC63146-mods) + [Guide](https://rentry.org/fmhy-modded)
or you could use the
[`.mrpack files`](https://discord.com/channels/956006107564879872/1206145102217486366/1206145423689908224)
and add it to Prism or other compatible launchers.
[Optional Modpack with QOL mods added](https://qiwi.gg/file/cSee7776-FMHYServerPackClientPP)
Minecraft Dynmap: [Vanilla](https://survival.dynmap.fmhy.net) or
[Modded](https://modded.dynmap.fmhy.net)
### Things to Know
- If it times out when joining then just try rejoining again.
- If you get stuck in the lobby, use the command `/server modded`
or `/server survival` to join.
- If you can't break blocks or it's glitching, you are probably too close to the
spawn and need to go farther.
- (Modded) To set a skin, use the `/skin` command.
- To hide yourself from being shown in Dynmap, run this command `/dynmap hide`.
- Simple Voice Chat mod is supported on Modded and (optional) Vanilla servers.
- For modded 6GB+ RAM is required, but 12GB+ is recommended.
Have fun! ♥️

View File

Before

Width:  |  Height:  |  Size: 1.9 MiB

After

Width:  |  Height:  |  Size: 1.9 MiB

View File

Before

Width:  |  Height:  |  Size: 451 KiB

After

Width:  |  Height:  |  Size: 451 KiB

View File

Before

Width:  |  Height:  |  Size: 442 KiB

After

Width:  |  Height:  |  Size: 442 KiB

View File

Before

Width:  |  Height:  |  Size: 442 KiB

After

Width:  |  Height:  |  Size: 442 KiB

View File

Before

Width:  |  Height:  |  Size: 8.6 KiB

After

Width:  |  Height:  |  Size: 8.6 KiB

View File

Before

Width:  |  Height:  |  Size: 8.6 KiB

After

Width:  |  Height:  |  Size: 8.6 KiB

View File

Before

Width:  |  Height:  |  Size: 82 KiB

After

Width:  |  Height:  |  Size: 82 KiB

Some files were not shown because too many files have changed in this diff Show More