diff --git a/.dockerignore b/.dockerignore new file mode 100644 index 000000000..5c9cf1569 --- /dev/null +++ b/.dockerignore @@ -0,0 +1,5 @@ +node_modules +.git +.gitignore +dist +cache diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md index f86478a5a..3259eca36 100644 --- a/.github/CONTRIBUTING.md +++ b/.github/CONTRIBUTING.md @@ -56,14 +56,15 @@ You can do one of the following: ## Making changes +> [!TIP] +> The easiest way is to join our [Discord](https://rentry.co/fmhy-invite) to submit sites or any changes. + If you want to make changes with instant site feedback, or are simply going to work with the site, you can do so with these 3 ways: - [Using gitpod.io or GitHub Codespaces (recommended)](#using-gitpod-or-github-codespaces) - [Using the GitHub editor](#using-the-github-editor) - [Manually setting up a development environment](#manually-setting-up-a-development-environment) -> [!TIP] -> You can just use our [💬 Discord](https://rentry.co/fmhy-invite) to send us sites or any changes. ### Using Gitpod or GitHub Codespaces @@ -77,7 +78,7 @@ Follow these steps: #### Gitpod.io -Login to your GitHub account and click on the "New Workspace" button. Then select your fork and you should be in your gitpod workspace. +Login to your Gitpod account and click on the "New Workspace" button. Then select your fork and you should be in your gitpod workspace. To close the workspace, click on the "Gitpod" button at the bottom left corner then type "Stop Workspace" and hit enter. diff --git a/.github/README.md b/.github/README.md index 772d07351..d4877224f 100644 --- a/.github/README.md +++ b/.github/README.md @@ -9,6 +9,7 @@ - Website: [fmhy.net](https://fmhy.net) - News & Monthly Updates: [fmhy.net/posts](https://fmhy.net/posts) - Backups: [github.com/fmhy/FMHY/wiki/Backups](https://github.com/fmhy/FMHY/wiki/Backups) +- Neither the site or github host any files ## 🗺️ Emoji Legend @@ -31,5 +32,5 @@ Here are a few ways you can get involved: ## 🔔 Follow
diff --git a/.github/workflows/deploy-gh-pages.yml b/.github/workflows/deploy-gh-pages.yml index 8a1d9e4e5..4f10001f7 100644 --- a/.github/workflows/deploy-gh-pages.yml +++ b/.github/workflows/deploy-gh-pages.yml @@ -1,8 +1,6 @@ name: Deploy to GitHub Pages on: - push: - branches: [main] workflow_dispatch: permissions: diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 000000000..6aecc882d --- /dev/null +++ b/Dockerfile @@ -0,0 +1,21 @@ +FROM node:21-slim AS base +ENV PNPM_HOME="/pnpm" +ENV PATH="$PNPM_HOME:$PATH" +RUN corepack enable +COPY . /app +WORKDIR /app + +FROM base AS prod-deps +RUN --mount=type=cache,id=pnpm,target=/pnpm/store pnpm install --frozen-lockfile + +FROM base AS build +RUN --mount=type=cache,id=pnpm,target=/pnpm/store pnpm install --frozen-lockfile +RUN pnpm run docs:build + +FROM base +COPY --from=prod-deps /app/node_modules /app/node_modules +COPY --from=build /app/docs/.vitepress/dist /app/docs/.vitepress/dist + +EXPOSE 4173 + +CMD ["pnpm", "docs:preview"] diff --git a/docker-compose.yaml b/docker-compose.yaml new file mode 100644 index 000000000..021de6b1b --- /dev/null +++ b/docker-compose.yaml @@ -0,0 +1,15 @@ +services: + docs: + networks: [fmhy] + build: + context: . + dockerfile: Dockerfile + image: fmhy-docs + container_name: docs + restart: unless-stopped + ports: + - '4173:4173' + + +networks: + fmhy: diff --git a/docs/.vitepress/config.mts b/docs/.vitepress/config.mts index 5d6be04f3..bc5772a3c 100644 --- a/docs/.vitepress/config.mts +++ b/docs/.vitepress/config.mts @@ -53,7 +53,7 @@ export default defineConfig({ 'meta', { name: 'msvalidate.01', - content: '55ae5a0600A8C7827B59CFD506D76DC2' + content: 'F3028112EF6F929B562F4B18E58E3691' } ], // Google site verification @@ -158,7 +158,7 @@ export default defineConfig({ search, footer: { message: `${feedback} (rev: ${commitRef})`, - copyright: `© ${new Date().getFullYear()}, Estd 2018.` + copyright: `© ${new Date().getFullYear()}, Estd 2018.This site does not host any files.` }, editLink: { pattern: 'https://github.com/fmhy/edit/edit/main/docs/:path', diff --git a/docs/.vitepress/transformer.ts b/docs/.vitepress/transformer.ts index 52902bd85..835fe0b6b 100644 --- a/docs/.vitepress/transformer.ts +++ b/docs/.vitepress/transformer.ts @@ -224,7 +224,7 @@ export function transform(text: string): string { _text = replaceUnderscore(_text) .replace(/\/#(\d)/g, '/#_$1') // Prefix headings starting with numbers .replace(/#(\d)/g, '#_$1') // Prefix headings starting with numbers - .replace(/\/#/g, '#') + .replace(/(\]\(\s*)\/\s*(\#[^)\s]*?\s*\))/g, '$1$2') .replace(/\*\*\*\n\n/gm, '') .replace(/\*\*\*\n/gm, '') .replace(/# ►/g, '##') @@ -284,6 +284,12 @@ const transformLinks = (text: string): string => replace: '' }, + { + name: 'Source Code', + find: /\[Source Code\]\(([^\)]*?)\)/gm, + replace: + '' + }, { name: 'Telegram', find: /\[Telegram\]\(([^\)]*?)\)/gm, @@ -307,6 +313,43 @@ const transformLinks = (text: string): string => find: /\[.onion\]\(([^\)]*?)\)/gm, replace: '' + }, + // Platform indicators + { + name: 'Windows', + find: /(?<=\/ (\/>|[^/\r\n])*)(,\s)?(? ' + }, + { + name: 'Mac', + find: /(?<=\/ (\/>|[^/\r\n])*)(,\s)?(? ' + }, + { + name: 'Linux', + find: /(?<=\/ (\/>|[^/\r\n])*)(,\s)?(? ' + }, + { + name: 'Android', + find: /(?<=\/ (\/>|[^/\r\n])*)(,\s)?(? ' + }, + { + name: 'iOS', + find: /(?<=\/ (\/>|[^/\r\n])*)(,\s)?(? ' + }, + { + name: 'Web', + find: /(?<=\/ (\/>|[^/\r\n])*)(,\s)?(? ' } ]) .getText() diff --git a/docs/adblockvpnguide.md b/docs/adblockvpnguide.md index b5fca5ac1..c45ad348c 100644 --- a/docs/adblockvpnguide.md +++ b/docs/adblockvpnguide.md @@ -20,16 +20,17 @@ * [Disblock Origin](https://codeberg.org/AllPurposeMat/Disblock-Origin) or [Discord Adblock](https://github.com/CroissantDuNord/discord-adblock) - Hide Discord Nitro / Boost Ads * [Popupblocker All](https://addons.mozilla.org/en-US/firefox/addon/popupblockerall/), [PopUpOFF](https://romanisthere.github.io/PopUpOFF-Website/index.html), [Popup Blocker (strict)](https://github.com/schomery/popup-blocker) or [PopupBlocker](https://github.com/AdguardTeam/PopupBlocker) - Popup / New Tab Blockers * [AdGuard](https://github.com/AdguardTeam/AdguardBrowserExtension) - Adblocker -* [Zen](https://zenprivacy.net/) - System-Wide Adblocker / [Discord](https://discord.com/invite/jSzEwby7JY) / [GitHub](https://github.com/anfragment/zen) +* [Zen](https://zenprivacy.net/) - System-Wide Adblocker / [Discord](https://discord.com/invite/jSzEwby7JY) / [GitHub](https://github.com/ZenPrivacy/zen-desktop) * [BehindTheOverlay](https://github.com/NicolaeNMV/BehindTheOverlay) - Hide Website Overlays +* [BilibiliSponsorBlock](https://github.com/hanydd/BilibiliSponsorBlock) - Skip Sponsored Bilibili Ads *** ## ▷ Adblock Filters * ⭐ **[LegitimateURLShortener](https://github.com/DandelionSprout/adfilt/blob/master/LegitimateURLShortener.txt)** - Query Parameter Cleaning Rules -* [yokoffing's Recommended Filters](https://github.com/yokoffing/filterlists) - Blocklist Collection -* [FilterLists](https://filterlists.com/) - Filter and host lists directory +* [Hagezi Blocklists](https://github.com/hagezi/dns-blocklists) - Blocklist Collection +* [FilterLists](https://filterlists.com/) - Filter / Host List Directory * [FMHY Filterlist](https://github.com/fmhy/FMHYFilterlist) - Unsafe Sites Filter *** @@ -56,12 +57,11 @@ * [AdGuard DNS](https://adguard-dns.io/) - Customizable DNS Adblocking Service / [X](https://x.com/adguard) / [Telegram](https://t.me/adguarden) / [Subreddit](https://reddit.com/r/Adguard) * [Control D](https://controld.com/free-dns) - Customizable DNS Adblocking Service / [X](https://x.com/controldns) / [Subreddit](https://reddit.com/r/ControlD/) / [Discord](https://discord.gg/dns) * [NxFilter](https://nxfilter.org/) - Self-Hosted Customizable DNS Adblocking / [Subreddit](https://reddit.com/r/nxfilter) -* [TBlock](https://tblock.me/) - DNS Adblocking Client / [CodeBerg](https://codeberg.org/tblock/tblock) +* [TBlock](https://tblock.me/) - DNS Adblocking Client / [Source Code](https://codeberg.org/tblock/tblock) * [Diversion](https://diversion.ch/) - Asuswrt-Merlin Router Adblock Manager * [Phishing Army](https://phishing.army/) - DNS Phishing Blocklist / [X](https://x.com/PhishingArmy) -* [DNS Party](https://encrypted-dns.party/) - Encrypted DNS Profiles for Apple Devices * [Technitium](https://technitium.com/dns) - Self-Hosted DNS Server / [Subreddit](https://reddit.com/r/technitium/) / [GitHub](https://github.com/TechnitiumSoftware/DnsServer) -* [DNS Perf](https://dnsperf.com/dns-speed-benchmark) or [NameBench](https://code.google.com/archive/p/namebench/) - DNS Speed Tests +* [DNS Speed Test](https://dnsspeedtest.online/) / [GitHub](https://github.com/BrainicHQ/DoHSpeedTest), [DNS Perf](https://dnsperf.com/dns-speed-benchmark) or [NameBench](https://code.google.com/archive/p/namebench/) - DNS Speed Tests *** @@ -81,7 +81,7 @@ *** -# ► Antivirus / Malware +# ► Antivirus / Anti-Malware * 🌐 **[/r/Antivirus Index](https://www.reddit.com/r/antivirus/wiki/index/)** - Antivirus Tool Index * ↪️ **[Site Legitimacy Check](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_site_legitimacy_check)** @@ -97,6 +97,7 @@ * [ESET](https://rentry.co/FMHYBase64#eset) - Antivirus / [X](https://x.com/esetglobal) * [Dangerzone](https://dangerzone.rocks/) - Convert Malicious PDFs to Safe Files / [GitHub](https://github.com/freedomofpress/dangerzone) * [Triage](https://tria.ge/) or [Cuckoo](https://cuckoo.cert.ee/) - Online Sandboxes +* [SquareX](https://public.sqrx.com/web) - Browser Sandbox * [No More Ransom](https://www.nomoreransom.org/en/decryption-tools.html) - Ransomware Decryption Tools * [ID Ransomware](https://id-ransomware.malwarehunterteam.com/) - Ransomware Identification Tool * [ConfigureDefender](https://github.com/AndyFul/ConfigureDefender) - Configure Windows Defender Settings @@ -132,13 +133,14 @@ * [Telemetry.md](https://gist.github.com/ave9858/a2153957afb053f7d0e7ffdd6c3dcb89) - Disable Windows 10/11 Telemetry * [Disable Recall](https://rentry.co/b88ixo8f) - Disable Microsoft Recall on Windows 11 * [Agent DVR](https://www.ispyconnect.com/) / [Subreddit](https://www.reddit.com/r/ispyconnect/), [Frigate](https://frigate.video/) / [GitHub](https://github.com/blakeblackshear/frigate), [Smart Sec Cam](https://github.com/scottbarnesg/smart-sec-cam) or [ZoneMinder](https://zoneminder.com/) / [Discord](https://discord.gg/tHYyP9k66q) / [GitHub](https://github.com/ZoneMinder/ZoneMinder/) - 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/) - Security Software / [Translator](https://github.com/FilipePS/Traduzir-paginas-web) * [YourDigitalRights](https://yourdigitalrights.org/) - Get Organizations to Delete Your Personal Data * [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 -* [Surfer Protocol](https://surferprotocol.org/) - Multi-platform User Data Exporter / [Discord](https://discord.gg/5KQkWApkYC) / [GitHub](https://github.com/Surfer-Org/Protocol) +* [Surfer Protocol](https://surferprotocol.org/) - Multi-Platform User Data Exporter / [Discord](https://discord.gg/5KQkWApkYC) / [GitHub](https://github.com/Surfer-Org/Protocol) * [F-Secure Identity Theft Checker](https://www.f-secure.com/en/identity-theft-checker) - Identity Theft Check * [PrivNote](https://privnote.com/), [SafeNote](https://safenote.co/) / [GitHub](https://github.com/devrolabs), [Burn.Link](https://burn.link/), [ThisLinkWillSelfDestruct](https://thislinkwillselfdestruct.com/), [s.cr](https://s.cr/), [burnmynote](https://www.burnmynote.link/) or [OneTimeSecret](https://onetimesecret.com/) / [GitHub](https://github.com/onetimesecret/onetimesecret) - Send Self-Destructing Messages -* [chausies encrypt](https://chausies.xyz/encrypt) / [GitHub](https://github.com/chausies/chausies.github.io), [Steg Cloak](https://stegcloak.surge.sh/) or [spammimic](https://www.spammimic.com/index.cgi) - Send Encrypted Text +* [Steg Cloak](https://stegcloak.surge.sh/) or [spammimic](https://www.spammimic.com/index.cgi) - Send Encrypted Text +* [Forensic Focus](https://www.forensicfocus.com/forums/) - Digital Forensics Discussion Forums * [HiddenVM](https://github.com/aforensics/HiddenVM) - Run an Oracle VM on TailsOS * [SurveillanceWatch](https://www.surveillancewatch.io/) - Surveillance Company Connections * [If An Agent Knocks](https://docs.google.com/document/d/176Yds1p63Q3iaKilw0luChMzlJhODdiPvF2I4g9eIXo/) - Best Practices if Contacted by Agents @@ -147,19 +149,20 @@ ## ▷ Privacy Indexes -* ⭐ **[Privacy Guides](https://www.privacyguides.org/)** - Educational Guide / [GitHub](https://github.com/privacyguides/privacyguides.org) -* ⭐ **[Digital Defense](https://digital-defense.io/)** - Personal Checklist for Privacy & Security / [GitHub](https://github.com/lissy93/personal-security-checklist) +* ⭐ **[Privacy Guides](https://www.privacyguides.org/)** - Educational Guide / [Matrix](https://matrix.to/#/#privacyguides:matrix.org) / [GitHub](https://github.com/privacyguides/privacyguides.org) * ⭐ **[Surveillance Self-Defense](https://ssd.eff.org/)** - Educational Guide * ⭐ **[The New Oil](https://thenewoil.org/)** - Educational Guide / [GitHub](https://github.com/tnonate/thenewoil) * ⭐ **[No Trace](https://www.notrace.how/)** - Educational Guide / [.onion](http://i4pd4zpyhrojnyx5l3d2siauy4almteocqow4bp2lqxyocrfy6prycad.onion/) * ⭐ **[The Hitchhiker’s Guide](https://anonymousplanet.org/)** - Extensive Guide to Online Anonymity / [GitHub](https://github.com/Anon-Planet/thgtoa) +* [Consumer Action Taskforce](https://consumerrights.wiki/) - Documents Practices That Impact Consumer Rights * [Lissy93's Awesome Privacy](https://awesome-privacy.xyz/) / [GitHub](https://github.com/lissy93/awesome-privacy), [Awesome Security Hardening](https://github.com/decalage2/awesome-security-hardening) or [pluja's Awesome Privacy](https://pluja.github.io/awesome-privacy/) / [GitHub](https://github.com/pluja/awesome-privacy) - Privacy App / Service Lists * [Defensive Computing Checklist](https://defensivecomputingchecklist.com/) - Educational Guide * [OPSEC guide](https://whos-zycher.github.io/opsec-guide/) - Educational Guide -* [Ken Harris](https://cyber.kenharris.io/) - Educational Guide / [Discord](https://discord.gg/25zRy7E4Uw) +* [Ken Harris](https://cyber.kenharris.io/) - Educational Guide * [PrivSec](https://privsec.dev/) - Educational Guide / [GitHub](https://github.com/PrivSec-dev) +* [Digital Defense](https://digital-defense.io/) - Personal Checklist for Privacy & Security / [GitHub](https://github.com/lissy93/personal-security-checklist) * [AvoidTheHack](https://avoidthehack.com/) - Educational Blog / [GitHub](https://github.com/avoidthehack) -* [Hostux](https://hostux.network/) - Privacy Tools / [Git](https://git.hostux.net/valere/hostux.network) +* [Hostux](https://hostux.network/) - Privacy Tools / [Source Code](https://git.hostux.net/valere/hostux.network) * [Privacy Settings](https://github.com/StellarSand/privacy-settings) - Privacy Setting Guides * [Privacy Not Included](https://foundation.mozilla.org/privacynotincluded/) - Product Privacy Ratings * [EncryptedList](https://encryptedlist.xyz/) - List of Encrypted Services/Apps @@ -169,11 +172,11 @@ ## ▷ Network Security -* ⭐ **[v2rayN](https://github.com/2dust/v2rayN)** - DIY Privacy Network * ⭐ **[Safing Portmaster](https://safing.io/)** - Network Monitor / DNS Resolver / Firewall / [Discord](https://discord.com/invite/safing) / [GitHub](https://github.com/safing) * ⭐ **[DNSveil](https://msasanmh.github.io/DNSveil/)** - DNS Client / [Guide](https://rentry.org/DNSveil) / [GitHub](https://github.com/msasanmh/DNSveil) * [I2P](https://geti2p.net/en/) - Encrypted Private Network Layer / [Guide](https://rentry.co/CBGI2P) / [GitLab](https://i2pgit.org/) * [XrayUIGroup](https://github.com/MHSanaei/3x-ui) - DIY Privacy Network / [Telegram](https://t.me/XrayUI) +* [Simplewall](https://github.com/henrypp/simplewall) - Firewall * [Fort](https://github.com/tnodir/fort) - Firewall * [WFC](https://www.binisoft.org/wfc.php) - Firewall @@ -198,17 +201,11 @@ # ► Web Privacy * 🌐 **[Google Alt List](https://www.techspot.com/article/2752-all-google-alternatives/)**, [/r/degoogle](https://www.reddit.com/r/degoogle) or [No More Google](https://nomoregoogle.com/) - Google App Alternatives -* ↪️ **[Chat Service Comparisons](https://docs.google.com/spreadsheets/u/0/d/1-UlA4-tslROBDS9IqHalWVztqZo7uxlCeKPQ-8uoFOU)** -* ↪️ **[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)** * ↪️ **[Encode / Decode URLs](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/text-tools#wiki_.25B7_encode_.2F_decode)** * ⭐ **[PrivacySpy](https://privacyspy.org/)** / [GitHub](https://github.com/politiwatch/privacyspy) or [ToS;DR](https://tosdr.org/) / [Discord](https://discord.gg/tosdr) / [GitHub](https://github.com/tosdr) - Sites Privacy Policies * ⭐ **[JustDeleteMe](https://justdeleteme.xyz/)** - Find / Terminate Old Accounts / [GitHub](https://github.com/jdm-contrib/jdm) -* [FirefoxMonitor](https://monitor.mozilla.org/) - Data Breach Check / [GitHub](https://github.com/mozilla/blurts-server) -* [BreachDirectory](https://breachdirectory.org), [Snusbase](https://snusbase.com/), [Leak Lookup](https://leak-lookup.com/), [Trufflehog](https://trufflesecurity.com/) / [Discord](https://discord.gg/8Hzbrnkr7E) / [GitHub](https://github.com/trufflesecurity/trufflehog) or [LeakPeek](https://leakpeek.com/) / [Discord](https://discord.com/invite/mNxhSRWKwq) - Data Breach Search Engines * [OpenPhish](https://openphish.com/), [Netcraft Report](https://report.netcraft.com/report), [isitPhishing](https://isitphishing.org/), [PhishStats](https://phishstats.info/) / [Telegram](https://t.me/joinchat/AAAAAElZRwd0aBrYTaHHcQ) / [GitHub](https://github.com/eschultze/phishstats-api-network) or [PhishTank](https://phishtank.org/) - Report Phishing Sites * [DNS Jumper](https://www.sordum.org/7952/dns-jumper-v2-3/) - DNS Switcher -* [ssh-chat](https://github.com/shazow/ssh-chat) or [Devzat](https://github.com/quackduck/devzat) - SSH Chat * [GPG Suite](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) / [GitHub](https://github.com/Chocobozzz/PeerTube) * [Redact](https://redact.dev/) - Delete X.com / Reddit Data / [Discord](https://discord.com/invite/PbyTFBEhtV) @@ -223,11 +220,11 @@ ## ▷ Browser Privacy * ↪️ **[Browser Comparisons](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/internet-tools#wiki_.25BA_browser_tools)** -* ⭐ **[Tor Browser](https://www.torproject.org/)**, [2](https://tor.eff.org/), [3](https://tor.calyxinstitute.org/) - Onion-Routed Browser -* ⭐ **Tor Resources** - [TG Downloads](https://t.me/gettor_bot) / [Telegram](https://t.me/torproject) / [.onion](http://2gzyxa5ihm7nsggfxnu52rck2vv4rvmdlkiu3zzui5du4xyclen53wid.onion/) / [GitLab](https://gitlab.torproject.org/tpo/applications/tor-browser) / [GitHub](https://github.com/torproject) +* ↪️ **[Android Privacy Browsers](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/android#wiki_.25B7_android_browsers)** +* ⭐ **[Tor Browser](https://www.torproject.org/)**, [2](https://tor.eff.org/) - Onion-Routed Browser / [TG Downloads](https://t.me/gettor_bot) / [Telegram](https://t.me/torproject) / [.onion](http://2gzyxa5ihm7nsggfxnu52rck2vv4rvmdlkiu3zzui5du4xyclen53wid.onion/) / [GitLab](https://gitlab.torproject.org/tpo/applications/tor-browser) / [GitHub](https://github.com/torproject) * ⭐ **[Mullvad Browser](https://mullvad.net/en/browser)** - Tor Browser Fork (without Tor network) / [GitHub](https://github.com/mullvad) * ⭐ **[arkenfox](https://github.com/arkenfox/user.js)** - Firefox Privacy Tweak / [Video](https://youtu.be/F7-bW2y6lcI) / [GUI](https://arkenfox.github.io/gui/) -* [LibreWolf](https://librewolf.net/) - Pre-tweaked Firefox Fork / [Auto-Updater](https://github.com/ltguillaume/librewolf-winupdater) / [CodeBerg](https://codeberg.org/librewolf) / [Subreddit](https://www.reddit.com/r/LibreWolf) +* [LibreWolf](https://librewolf.net/) - Custom Privacy-Focused Firefox / [Auto-Updater](https://github.com/ltguillaume/librewolf-winupdater) / [Source Code](https://codeberg.org/librewolf) / [Subreddit](https://www.reddit.com/r/LibreWolf) * [Brave Browser](https://brave.com/) - Privacy Chromium Browser / [Subreddit](https://www.reddit.com/r/brave_browser/) * [Encrypted SNI](https://www.cloudflare.com/ssl/encrypted-sni/) - Cloudflare Browser Check @@ -237,30 +234,49 @@ * 🌐 **[2FA Directory](https://2fa.directory/)** - List of Sites with 2FA Support / [GitHub](https://github.com/2factorauth/twofactorauth) * ↪️ **[Password Managers](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/internet-tools/#wiki_.25B7_password_managers)** -* ⭐ **[Ente Auth](https://ente.io/auth/)** - All Platforms 2FA / [Discord](https://discord.gg/z2YVKkycX3) / [GitHub](https://github.com/ente-io/ente) -* ⭐ **[Aegis](https://getaegis.app/)** - Android 2FA / [GitHub](https://github.com/beemdevelopment/Aegis) -* ⭐ **[Stratum](https://stratumauth.com)** - Android 2FA / [GitHub](https://github.com/stratumauth/app) -* ⭐ **[Have I Been Pwned Passwords](https://haveibeenpwned.com/Passwords)** - Password Breach Check +* ⭐ **[Ente Auth](https://ente.io/auth/)** - 2FA / All Platforms / [Discord](https://discord.gg/z2YVKkycX3) / [GitHub](https://github.com/ente-io/ente) +* ⭐ **[Aegis](https://getaegis.app/)** - 2FA / Android / [GitHub](https://github.com/beemdevelopment/Aegis) +* ⭐ **[Stratum](https://stratumauth.com)** - 2FA / Android / [GitHub](https://github.com/stratumauth/app) * ⭐ **[Password Strength Chart](https://i.imgur.com/g4NcQKd.png)** / [2](https://i.ibb.co/y8n3BZP/Hive-Systems-Password-Table-2024-Square.png) -* [2FAS](https://2fas.com/) - Android / iOS 2FA / [Discord](https://discord.gg/q4cP6qh2g5) / [GitHub](https://github.com/twofas) -* [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) / [GitHub](https://github.com/keepassxreboot/keepassxc) -* [AuthMe](https://authme.levminer.com/) - Windows / Mac / Linux 2FA / [GitHub](https://github.com/Levminer/authme) -* [Yubioath](https://developers.yubico.com/yubioath-flutter/) - Windows / Android 2FA / YubiKeys / [GitHub](https://github.com/Yubico/yubioath-flutter) -* [OTPClient](https://github.com/paolostivanin/OTPClient) - Linux 2FA -* [2FAuth](https://docs.2fauth.app/) - Self-Hosted Web Based 2FA / [GitHub](https://github.com/Bubka/2FAuth) -* [Sentinel](https://getsentinel.io/) - Android / iOS / Mac 2FA -* [OTP Auth](https://apps.apple.com/app/otp-auth/id659877384) - iOS 2FA -* [Tofu](https://www.tofuauth.com/) - iOS 2FA / [GitHub](https://github.com/iKenndac/Tofu) +* [2FAS](https://2fas.com/) - 2FA / Android, iOS / [Discord](https://discord.gg/q4cP6qh2g5) / [GitHub](https://github.com/twofas) +* [Mauth](https://github.com/X1nto/Mauth) - 2FA / Android +* [FreeOTPPlus](https://github.com/helloworld1/FreeOTPPlus) - 2FA / Android +* [KeePassXC](https://keepassxc.org/) - 2FA / Windows, Mac, Linux / [Guide](https://youtu.be/ckWPHaQwft8) / [GitHub](https://github.com/keepassxreboot/keepassxc) +* [AuthMe](https://authme.levminer.com/) - 2FA / Windows, Mac, Linux / [GitHub](https://github.com/Levminer/authme) +* [Yubioath](https://developers.yubico.com/yubioath-flutter/) - 2FA / Windows, Android / YubiKey Support / [GitHub](https://github.com/Yubico/yubioath-flutter) +* [OTPClient](https://github.com/paolostivanin/OTPClient) - 2FA / Linux +* [Sentinel](https://getsentinel.io/) - 2FA / Mac, Android, iOS +* [OTP Auth](https://apps.apple.com/app/otp-auth/id659877384) - 2FA / iOS +* [Tofu](https://www.tofuauth.com/) - 2FA / iOS / [GitHub](https://github.com/iKenndac/Tofu) +* [2FAuth](https://docs.2fauth.app/) - Self-Hosted / Web / [GitHub](https://github.com/Bubka/2FAuth) +* [VaultWarden](https://github.com/dani-garcia/vaultwarden) - Unofficial Bitwarden Server Backend / Self-Hosted * [Authenticator](https://authenticator.cc/) - Generate Two-Factor QR Codes / [GitHub](https://github.com/Authenticator-Extension/Authenticator) * [OTP Helper](https://github.com/jd1378/otphelper) - Extract OTP Tokens * [steamguard-cli](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 / [GitHub](https://github.com/IntelligenceX) -* [psbdmp](https://psbdmp.ws/) - Password Breach Check -* [ScatteredSecrets](https://scatteredsecrets.com/) - Password Breach Check -* [BreachDetective](https://breachdetective.com/) - Password Breach Check + +*** + +## ▷ Encrypted Messengers + +* 🌐 **[Chat Protocols & Services](https://docs.google.com/spreadsheets/u/0/d/1-UlA4-tslROBDS9IqHalWVztqZo7uxlCeKPQ-8uoFOU)**, [Eyelenburg Comparisons](https://eylenburg.github.io/im_comparison.htm), [SecuChart](https://bkil.gitlab.io/secuchart/) or [Secure Messaging Apps](https://www.securemessagingapps.com/) - Chat App Indexes / Comparisons +* ↪️ **[Encrypted XMPP Servers](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_encrypted_xmpp_servers)** +* ⭐ **[SimpleX](https://simplex.chat/)** - All Platforms / [GitHub](https://github.com/simplex-chat) +* ⭐ **[Signal](https://signal.org/)** - All Platforms / Phone # Required / [GitHub](https://github.com/signalapp) or **[Molly](https://github.com/mollyim/mollyim-android)** / Android +* ⭐ **[Briar](https://briarproject.org/)** / Android / [GitLab](https://code.briarproject.org/briar/briar) +* [Matrix](https://matrix.org/) / [Mod Bot](https://github.com/matrix-org/mjolnir) / [Clients / Resources](https://matrix.org/ecosystem/) / [Servers](https://tatsumoto-ren.github.io/blog/list-of-matrix-servers.html), [2](https://tatsumoto.neocities.org/blog/list-of-matrix-servers.html), [3](https://gitlab.com/famedly/conduit), [4](https://joinmatrix.org/servers/), [5](https://archive.md/4xZE4), [6](https://wiki.asra.gr/en:public_servers) +* [Wire](https://wire.com/en/download/) - All Platforms / Phone # Required / [GitHub](https://github.com/wireapp) +* [Session](https://getsession.org/) - All Platforms / [GitHub](https://github.com/session-foundation) +* [Keybase](https://keybase.io/) - All Platforms / [GitHub](https://github.com/keybase/client) +* [Jami](https://jami.net/) - All Platforms / [GitLab](https://git.jami.net/savoirfairelinux/jami-project) +* [Tox](https://tox.chat/) / [GitHub](https://github.com/TokTok/c-toxcore) or [qTox](https://qtox.github.io/) / [GitHub](https://github.com/TokTok/qTox) - All Platforms +* [Linphone](https://www.linphone.org/) - All Platforms / [GitLab](https://gitlab.linphone.org/explore/projects) +* [Berty](https://berty.tech/) / Android, iOS / [GitHub](https://github.com/berty/berty) +* [Ricochet Refresh](https://www.ricochetrefresh.net/) / Windows, Mac, Linux / [GitHub](https://github.com/blueprint-freespeech/ricochet-refresh) +* [Cwtch](https://cwtch.im/) / Windows, Mac, Linux, Android / [GitLab](https://git.openprivacy.ca/cwtch.im/cwtch) +* [Status](https://status.app/) / Android, iOS / [GitHub](https://github.com/status-im) +* [Damus](https://damus.io/) or [MySudo](https://anonyome.com/individuals/mysudo/) / iOS +* [Databag](https://github.com/balzack/databag) - Self-hosted / Android, iOS, Web / [GitHub](https://github.com/balzack/databag) +* [ssh-chat](https://github.com/shazow/ssh-chat) or [Devzat](https://github.com/quackduck/devzat) - SSH Chat *** @@ -268,17 +284,29 @@ * ↪️ **[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 / [.onion](https://protonmailrmez3lotccipshtkleegetolb73fuirgj7r4o4vfu7ozyd.onion/) / [Subreddit](https://www.reddit.com/r/ProtonMail/) / [GitHub](https://github.com/ProtonMail) * [Tuta](https://tuta.com/) - Encrypted Email / [Subreddit](https://www.reddit.com/r/tutanota/) / [GitHub](https://github.com/tutao/tutanota) * [Disroot](https://disroot.org/en/services/email) - Encrypted Email -* [DNMX](https://dnmx.su/) - Onion Based Email +* [DNMX](https://dnmx.su/) - Onion-Based Email * [Mailvelope](https://mailvelope.com/) - Give Emails PGP Encryption / [GitHub](https://github.com/mailvelope/mailvelope) * [Email Privacy Tester](https://www.emailprivacytester.com/) - Email Privacy Test / [GitLab](https://gitlab.com/mikecardwell/ept3) * [SecLists](https://seclists.org/) - Security Mailing List Archive *** +## ▷ Data Breach Monitoring + +* ⭐ **[Have I Been Pwned?](https://haveibeenpwned.com/)** - Monitor Email Breaches +* ⭐ **[Have I Been Pwned Passwords](https://haveibeenpwned.com/Passwords)** - Password Breach Check +* [FirefoxMonitor](https://monitor.mozilla.org/) - Data Breach Check / [GitHub](https://github.com/mozilla/blurts-server) +* [BreachDirectory](https://breachdirectory.org), [Snusbase](https://snusbase.com/), [Leak Lookup](https://leak-lookup.com/), [Trufflehog](https://trufflesecurity.com/) / [Discord](https://discord.gg/8Hzbrnkr7E) / [GitHub](https://github.com/trufflesecurity/trufflehog) or [LeakPeek](https://leakpeek.com/) / [Discord](https://discord.com/invite/mNxhSRWKwq) - Data Breach Search Engines +* [Intelligence X](https://intelx.io/) - Password Breach Check / [GitHub](https://github.com/IntelligenceX) +* [psbdmp](https://psbdmp.ws/) - Password Breach Check +* [ScatteredSecrets](https://scatteredsecrets.com/) - Password Breach Check +* [BreachDetective](https://breachdetective.com/) - Password Breach Check + +*** + ## ▷ Fingerprinting / Tracking * ⭐ **[CanvasBlocker](https://github.com/kkapsner/CanvasBlocker)** - Prevent Canvas Fingerprinting @@ -300,40 +328,32 @@ * 🌐 **[Search Engine Party](https://searchengine.party/)** - Privacy Search Engine Comparisons / [GitLab](https://gitlab.com/nitrohorse/search-engines-compare) * 🌐 **[Instance Scores](https://searx.neocities.org/instancescores)** or [Searx Index](https://www.startpage.com/sp/search?q=%22powered%20by%20Searx%22) - Searx Instance Indexes -* ⭐ **[FMHY Searx](https://searx.fmhy.net/)**, [searx.space](https://searx.space/) / [.onion](http://searxspbitokayvkhzhsnljde7rqmn7rvoga6e4waeub3h7ug3nghoad.onion/) or [searx.be](https://searx.be/) - SearXNG Instances / [GitHub](https://github.com/searxng) +* ⭐ **[FMHY Searx](https://searx.fmhy.net/)** or [searx.space](https://searx.space/) / [.onion](http://searxspbitokayvkhzhsnljde7rqmn7rvoga6e4waeub3h7ug3nghoad.onion/) - SearXNG Instances / [Matrix](https://matrix.to/#/#searxng:matrix.org) / [GitHub](https://github.com/searxng) * ⭐ **[DuckDuckGo](https://start.duckduckgo.com/)** - Own Crawler + Third Parties / [Shortcuts](https://duckduckgo.com/bangs), [2](https://github.com/dmlls/yang) / [Subreddit](https://www.reddit.com/r/duckduckgo/) +* ⭐ **[Brave Search](https://search.brave.com/)** - Own Crawler * [Fuck Off Google](https://search.fuckoffgoogle.net/), [searx.neocities](https://searx.neocities.org/), [nixnet](https://searx.nixnet.services/) or [monocles](https://monocles.de/) - Searx Instances -* [Whoogle](https://github.com/benbusby/whoogle-search?tab=readme-ov-file#public-instances) - Whoogle Instance / Uses Google * [LibreY](https://github.com/Ahwxorg/librey) - Privacy Respecting Metasearch Engine -* [4get](https://4get.ca/) - Proxy Search Engine / [Git](https://git.lolcat.ca/lolcat/4get) +* [4get](https://4get.ca/) - Proxy Search Engine / [Source Code](https://git.lolcat.ca/lolcat/4get) * [Mojeek](https://www.mojeek.com/) / [Subreddit](https://www.reddit.com/r/mojeek/) * [Qwant](https://www.qwant.com/) - Uses Bing (partially) / [Discord](https://discord.com/invite/vjhCHnFMkw) * [Swisscows](https://swisscows.com/) - Uses Bing * [YaCy](https://yacy.net/) - Decentralized / [GitHub](https://github.com/yacy/yacy_search_server) * [Startpage](https://www.startpage.com/) - Uses Google / [Subreddit](https://www.reddit.com/r/StartpageSearch/) -* [Brave Search](https://search.brave.com/) - Private Search -* [ekoru](https://ekoru.org/) - Uses Bing -* [Gibiru](https://gibiru.com/) - Uses Google * [SearXNG](https://docs.searxng.org/) - Self-Hosted / [GitHub](https://github.com/searxng/searxng) -* [Whoogle](https://pypi.org/project/whoogle-search/) - Uses Google / Self-Hosted / [Frontend](https://benbusby.com/projects/whoogle-search/) *** # ► VPN -* **Note** - For torrenting, it's recommended to use a paid rather than free VPN. Free VPNs are only really useful for things like viewing sites blocked by your ISP / country. - -*** - * 🌐 **[Techlore Chart](https://techlore.tech/vpn)** - VPN Comparison Charts -* 🌐 **[VPN Relationships](https://kumu.io/Windscribe/vpn-relationships)**, [2](https://windscribe.com/vpnmap) - VPN Relationship Chart -* ⭐ **[/r/VPNs](https://www.reddit.com/r/vpns/)** - Discussion Forum -* ⭐ **[WARP](https://one.one.one.one/)** - Free / Unlimited / [Setup Guide](https://rentry.co/FMHYBase64#warp-wireguard) / [CLI](https://github.com/ViRb3/wgcf) / [Mobile Client](https://github.com/bepass-org/oblivion) / [Desktop Client](https://github.com/bepass-org/oblivion-desktop) -* ⭐ **[Windscribe](https://windscribe.com)** - Has Free Plan / 10GB Monthly / [Subreddit](https://www.reddit.com/r/Windscribe/) / [GitHub](https://github.com/windscribe) +* 🌐 **[VPN Relationships](https://kumu.io/Windscribe/vpn-relationships)**, [2](https://windscribe.com/vpnmap) - VPN Relationship Map +* ⭐ **[WARP](https://one.one.one.one/)** - Free / Unlimited / [Wireguard](https://rentry.co/FMHYBase64#warp-wireguard) / [Alt Clients](https://github.com/ViRb3/wgcf) / [Mobile Alt](https://github.com/bepass-org/oblivion) / [Desktop Alt](https://github.com/bepass-org/oblivion-desktop) +* ⭐ **[Windscribe](https://windscribe.com)** - Free / 10GB Monthly / [Subreddit](https://www.reddit.com/r/Windscribe/) / [GitHub](https://github.com/windscribe) * ⭐ **[Proton VPN](https://protonvpn.com)** - No Torrenting with Free Plan / Unlimited / [Config Generation](https://protonvpn.com/support/wireguard-configurations) / [Subreddit](https://www.reddit.com/r/ProtonVPN/) / [Telegram](https://t.me/proton_privacy) / [GitHub](https://github.com/ProtonVPN/) * ⭐ **[RiseupVPN](https://riseup.net/en/vpn)** - Free / Unlimited / [Config CLI Script](https://github.com/kmille/riseup-vpn-configurator) / [GitHub](https://github.com/riseupnet) * ⭐ **[AirVPN](https://airvpn.org/)** - Paid / [.onion](https://airvpn3epnw2fnsbx5x2ppzjs6vxtdarldas7wjyqvhscj7x43fxylqd.onion/) / [GitHub](https://github.com/AirVPN) / [GitLab](https://gitlab.com/AirVPN) -* [Mullvad VPN](https://mullvad.net/) - Paid / [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/) / [GitHub](https://github.com/mullvad) +* ⭐ **[/r/VPNs](https://www.reddit.com/r/vpns/)** - Discussion Forum +* [Mullvad VPN](https://mullvad.net/) - Paid / [.onion](https://ao54hon2e2vj6c7m3aqqu6uyece65by3vgoxxhlqlsvkmacw6a7m7kiad.onion) / [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/) / [GitHub](https://github.com/mullvad) * [IVPN](https://www.ivpn.net/) - Paid / [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/) / [Subreddit](https://www.reddit.com/r/IVPN/) / [GitHub](https://github.com/ivpn) * [ESET VPN](https://rentry.co/FMHYBase64#eset) - Free / Unlimited * [PrivadoVPN](https://privadovpn.com/) - Free / 10GB Monthly / Unlimited Accounts via [Temp Mail](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/internet-tools#wiki_.25B7_temp_mail) @@ -344,8 +364,9 @@ ## ▷ VPN Tools * ↪️ **[Free VPN Configs](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_free_vpn_configs)** -* ⭐ **[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://gist.github.com/VVispy/765c6723436f386ef113040f8fc968b8)** - 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/) / [Web UI](https://github.com/wg-easy/wg-easy) / [Source Code](https://www.wireguard.com/repositories/) +* ⭐ **[Tailscale](https://tailscale.com/)**, [Nebula](https://github.com/slackhq/nebula), [Headscale](https://github.com/juanfont/headscale) or [ZeroTier](https://www.zerotier.com/) - Secure Network VPN * [WGDashboard](https://donaldzou.github.io/WGDashboard-Documentation/) - WireGuard Manager / [Discord](https://discord.gg/72TwzjeuWm) / [GitHub](https://github.com/donaldzou/WGDashboard) * [OpenVPN](https://openvpn.net/) or [tinc VPN](https://www.tinc-vpn.org/) / [GitHub](https://github.com/gsliepen/tinc) / [GitLab](https://gitlab.com/gsliepen/tinc) - VPN Tunnels * [WireHole](https://github.com/IAmStoxe/wirehole) - WireGuard VPN with Adblocking Capabilities / [Web UI](https://github.com/10h30/wirehole-ui) @@ -364,7 +385,8 @@ ## ▷ Proxy Apps -* [Hola Proxy](https://github.com/Snawoot/hola-proxy) - Alternative Client for Hola Free Proxy Service +* ⭐ **[v2rayN](https://github.com/2dust/v2rayN)** - V2Ray / Shadowsock / Hysteria / Naive / Proxy Client / Windows, Mac, Linux +* [Hola Proxy](https://github.com/Snawoot/hola-proxy) - Alternative Client for Hola Free Proxy Service / [Privacy Note](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#hola-proxy-note) * [Snowflake](https://snowflake.torproject.org/) - Tor Proxy Browser Extension * [Censor Tracker](https://censortracker.org/) / [Telegram](https://t.me/CensorTracker_feedback) / [GitHub](https://github.com/censortracker/censortracker), [SmartProxy](https://github.com/salarcode/SmartProxy), [FoxyProxy](https://getfoxyproxy.org/) or [ZeroOmega](https://github.com/zero-peak/ZeroOmega) - Proxy Extensions * [Acrylic](https://mayakron.altervista.org/) - Local DNS Proxy @@ -372,9 +394,9 @@ * [Blocky](https://0xerr0r.github.io/blocky/latest/) - DNS Proxy / [GitHub](https://github.com/0xERR0R/blocky) * [Proxifier](https://www.proxifier.com/) - Add Proxy Functionality to Apps / [Keys](https://rentry.co/FMHYBase64#proxifier-keys) * [wireproxy](https://github.com/whyvl/wireproxy) - WireGuard as Proxy -* [Hiddify](https://hiddify.com/) - Auto-Proxy Client / [Telegram](https://t.me/hiddify) / [GitHub](https://github.com/hiddify) -* [Nginx Proxy Manager](https://nginxproxymanager.com) - Self-Hosted Proxy Server / [Subreddit](https://reddit.com/r/nginxproxymanager) / [GitHub](https://github.com/NginxProxyManager/nginx-proxy-manager) -* [Ultraviolet](https://docs.titaniumnetwork.org/proxies/ultraviolet) / [GitHub](https://github.com/titaniumnetwork-dev/Ultraviolet) or [Nebula](https://github.com/NebulaServices/Nebula) - Self-Hosted Proxy Sites +* [Hiddify](https://hiddify.com/) - V2Ray / Shadowsock / Wireguard / SSH Client / [Telegram](https://t.me/hiddify) / [GitHub](https://github.com/hiddify) +* [Ultraviolet](https://docs.titaniumnetwork.org/proxies/ultraviolet) / [GitHub](https://github.com/titaniumnetwork-dev/Ultraviolet) or [Nebula](https://github.com/NebulaServices/Nebula) - Open Source Web Proxy +* [Nginx Proxy Manager](https://nginxproxymanager.com) - Self-Hosted Reverse Proxy UI/ [Subreddit](https://reddit.com/r/nginxproxymanager) / [GitHub](https://github.com/NginxProxyManager/nginx-proxy-manager) * [1337x Proxy](https://redd.it/tz7nyx) - 1337x Proxy Guide / [Example](https://pastebin.com/3n5K0QrP) * [Titanium Network](https://titaniumnetwork.org/services/) - Proxy Developer / [Instances](https://discord.gg/unblock) / [GitHub](https://github.com/titaniumnetwork-dev) @@ -388,17 +410,15 @@ * ↪️ **[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)** -* ⭐ **[Alu](https://aluu.xyz/en/)** / [Discord](https://discord.gg/unblock) * [Holy Unblocker](https://holyunblocker.org/) / [GitHub](https://github.com/QuiteAFancyEmerald/Holy-Unblocker) * [SSLSecureProxy](https://www.sslsecureproxy.com/), [2](https://www.4everproxy.com/), [3](https://www.hideip.co/) * [Free Proxy](https://freeproxy.win/), [2](https://proxysite.one/) * [ProxyOf2](https://proxyof2.com/) * [Phantom](https://phantom.lol/) * [Reflect4](https://reflect4.me/), [CroxyProxy](https://www.croxyproxy.com/) or [Blockaway](https://www.blockaway.net/) -* [Delusionz](https://delusionz.xyz/) / [2](https://math.isoluxltda.cl/) +* [Delusionz](https://delusionz.xyz/) * [ProxyPal](https://proxypal.net/) / [Telegram](https://t.me/PlainProxies) * [Proxyium](https://proxyium.com/) -* [Szvy Central](https://szvy.lol/), [2](https://play.szvy.win/), [3](https://studying-central.global.ssl.fastly.net/), [4](https://zearn.global.ssl.fastly.net/), [5](https://cheapenglishtutors.global.ssl.fastly.net/) * [Google Translate](https://translate.google.com/) / [Explanation](https://redd.it/fawkjy), [2](https://ibb.co/BtWc8ML) * [Proxy Checker](https://proxy-checker.net/), [proxy-scraper](https://github.com/iw4p/proxy-scraper) or [proxy-scraper-checker](https://github.com/monosans/proxy-scraper-checker) - Proxy Scrapers / Checkers * [CheckSocks5](https://checksocks5.com/) - SOCKS5 Proxy Checker @@ -408,13 +428,13 @@ ## ▷ Anti-Censorship * ⭐ **[Censorship Bypass Guide](https://2305878273.7844380499.cfd/)** - Censorship Bypass Guide -* ⭐ **[No Thought is a Crime](https://ntc.party/)** - Internet Censorship Discussion +* ⭐ **[No Thought is a Crime](https://ntc.party/)** or [Net4people](https://github.com/net4people/bbs/issues) - Censorship Discussion * ⭐ **[zapret](https://github.com/bol-van/zapret)**, **[GoodbyeDPI](https://github.com/ValdikSS/GoodbyeDPI/)** / [GUI](https://github.com/Virenbar/GDPIControl), [PowerTunnel](https://github.com/krlvm/PowerTunnel) or [Green Tunnel](https://github.com/SadeghHayeri/GreenTunnel) - DPI Circumvention Local Proxies -* [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.xyz/) / [GitHub](https://github.com/shadowsocks) * [Psiphon](https://psiphon.ca/) - Anti-Censorship Proxy / VPN / [GitHub](https://github.com/Psiphon-Inc/psiphon) * [Lantern](https://lantern.io/) - Anti-Censorship Proxy / Slowed Past 250MB / [GitHub](https://github.com/getlantern/lantern) * [FreeSocks](https://freesocks.org/) - Shadowsocks Proxies / [GitHub](https://github.com/unredacted/freesocks-control-plane) * [Hi!Load VPN](https://t.me/hlvpnbot) - Censorship Resistant Proxies / 30GB per month / No Torrenting / [Support](https://t.me/highloadvpn) -* [Hysteria](https://v2.hysteria.network/) - Anti-Censorship Client and Self-Hosted Server / [Telegram](https://t.me/hysteria_github) / [GitHub](https://github.com/apernet/hysteria) -* [Project X](https://github.com/XTLS/Xray-core) - Anti-Censorship Client and Self-Hosted Server / [Telegram](https://t.me/projectXray), [2](https://t.me/projectVless) +* [Hysteria](https://v2.hysteria.network/) - Speed-Focused Censorship Bypass Proxy / [Telegram](https://t.me/hysteria_github) / [GitHub](https://github.com/apernet/hysteria) +* [Project X](https://github.com/XTLS/Xray-core) - Anti-Censorship Client / Server Core / [Telegram](https://t.me/projectXray), [2](https://t.me/projectVless) * [sing-box](https://sing-box.sagernet.org/) - Anti-Censorship Client / [Telegram](https://t.me/yapug) / [GitHub](https://github.com/SagerNet/sing-box) +* [Shadowsocks](https://shadowsocks.org/) - Simple Proxy Protocol to Bypass Censorship / [Free Servers](https://github.com/ruanfei/cross), [2](https://github.com/vxiaov/free_proxies), [3](https://shadowmere.xyz/) / [GitHub](https://github.com/shadowsocks) \ No newline at end of file diff --git a/docs/ai.md b/docs/ai.md index 329f69d4e..bc07da7cf 100644 --- a/docs/ai.md +++ b/docs/ai.md @@ -12,68 +12,66 @@ ## ▷ Online Chatbots -* 🌐 **[Free LLM API Resources](https://github.com/cheahjs/free-llm-api-resources)** or [Awesome Free ChatGPT](https://github.com/LiLittleCat/awesome-free-chatgpt/blob/main/README_en.md) - Online LLM Indexes -* ⭐ **[AI Studio](https://aistudio.google.com/app/prompts/new_chat)** or [Gemini](https://gemini.google.com/) - Gemini 2.5 - Pro / Flash Preview / [Subreddit](https://www.reddit.com/r/Bard/) / [Discord](https://discord.com/invite/gemini) -* ⭐ **[ChatGPT](https://chatgpt.com/)** - GPT-4o / o4-mini (medium) Chatbot / [/r/OpenAI](https://www.reddit.com/r/OpenAI/) / [Subreddit](https://www.reddit.com/r/ChatGPT/) / [Discord](https://discord.com/invite/openai) -* ⭐ **[Qwen](https://chat.qwen.ai/)** - Alibaba's Chatbots / Qwen3-235B-A22B / QwQ-32B -* ⭐ **[DeepSeek](https://chat.deepseek.com/)** - R1 + DeepSeek-V3-0324 / Unlimited / [Subreddit](https://www.reddit.com/r/DeepSeek/) / [GitHub](https://github.com/deepseek-ai) -* ⭐ **[Grok](https://grok.com/)** - X.com Chatbot / Grok 2 (30 Hourly) / Grok 3 (12 Per Two Hours) / [Subreddit](https://www.reddit.com/r/grok/) / [Discord](https://discord.com/invite/kqCc86jM55) +* 🌐 **[Free LLM API Resources](https://github.com/cheahjs/free-llm-api-resources)** - Chatbot Resources / Mirrors +* ⭐ **[AI Studio](https://aistudio.google.com/app/prompts/new_chat)** or [Gemini](https://gemini.google.com/) - Google Chatbots / [Subreddit](https://www.reddit.com/r/Bard/) / [Discord](https://discord.com/invite/gemini) +* ⭐ **[ChatGPT](https://chatgpt.com/)** - GPT-4o / o4-mini Chatbot / [/r/OpenAI](https://www.reddit.com/r/OpenAI/) / [Subreddit](https://www.reddit.com/r/ChatGPT/) / [Discord](https://discord.com/invite/openai) +* ⭐ **[DeepSeek](https://chat.deepseek.com/)** - DeepSeek-V3 / DeepSeek-R1 / Unlimited / [Subreddit](https://www.reddit.com/r/DeepSeek/) / [GitHub](https://github.com/deepseek-ai) +* ⭐ **[Grok](https://grok.com/)** - Grok 3 (20 per 2 hours) / Grok 3 Mini Thinking (8 daily) / [Subreddit](https://www.reddit.com/r/grok/) / [Discord](https://discord.com/invite/kqCc86jM55) * ⭐ **[Microsoft Copilot](https://copilot.microsoft.com)** - GPT-4o / OpenAI o3-Mini-High / No Sign-Up -* ⭐ **[Chatbot Arena](https://beta.lmarena.ai)** - Multiple Chatbots / No Sign-Up / [Discord](https://discord.gg/6GXcFg3TH8) / [GitHub](https://github.com/lm-sys/FastChat) -* ⭐ **[Mistral](https://chat.mistral.ai)** - Mistral Large 2411 / [Discord](https://discord.gg/mistralai) -* [Claude](https://claude.ai/) - Claude 3.7 Sonnet / Phone # Required / [Usage Tracker](https://github.com/lugia19/Claude-Usage-Extension) / [Subreddit](https://www.reddit.com/r/ClaudeAI/) / [Discord](https://discord.com/invite/zkrBaqytPW) -* [DuckDuckGo AI](https://duck.ai/) - Multiple Chatbots / o3-Mini / No Sign-Up +* ⭐ **[LMArena](https://lmarena.ai)** - Multiple Chatbots / No Sign-Up / [Discord](https://discord.gg/6GXcFg3TH8) / [GitHub](https://github.com/lm-sys/FastChat) +* ⭐ **[Qwen](https://chat.qwen.ai/)** - Alibaba's Chatbots / Qwen3-235B-A22B / Qwen3-32B +* ⭐ **[HuggingChat](https://huggingface.co/chat/)** - DeepSeek-R1-Distill-Qwen-32B / Qwen QwQ-32B / Qwen3-235B-A22B / Multiple Open-Source Chatbots / [GitHub](https://github.com/huggingface/chat-ui) +* [Mistral](https://chat.mistral.ai) - Mistral Large 24.11 / [Discord](https://discord.gg/mistralai) +* [Claude](https://claude.ai/) - Claude 4 Sonnet / Phone # Required / [Usage Tracker](https://github.com/lugia19/Claude-Usage-Extension) / [Subreddit](https://www.reddit.com/r/ClaudeAI/) +* [DuckDuckGo AI](https://duck.ai/) - Multiple Chatbots / o4-Mini / No Sign-Up * [ChatK](https://chat.oaichat.cc/) or [lobe.wr.do](https://lobe.wr.do/) / [Discord](https://discord.gg/AYFPHvv2jT) / [GitHub](https://github.com/lobehub/lobe-chat) - GPT-4o / DeepSeek-R1-32b / Multiple Chatbots * [AI Assistant](https://aiassistantbot.pages.dev/) - Deepseek-R1 / Qwen QwQ-32B / Multiple Chatbots / No Sign-Up +* [Mirexa](https://mirexa.vercel.app/) - Deepseek R1 / GPT 4.1 / Mistral / Grok 3 mini +* [ISH](https://ish.junioralive.in/) - o1 / Grok 3 / DeepSeek R1 / Multiple Chatbots / [Discord](https://discord.gg/cwDTVKyKJz) * [AI SDK](https://sdk.vercel.ai/) - Multiple Chatbots / [GitHub](https://github.com/vercel/ai) * [GizAI](https://www.giz.ai/) - Multiple Chatbots -* [FreePass](https://freepass.ai/) or [OI](https://chat.xenai.tech/) - Multiple Chatbots +* [Scira](https://scira.ai/) - Multiple Chatbots / AI Search Engine / No Sign-Up / [GitHub](https://github.com/zaidmukaddam/scira) +* [OI](https://chat.xenai.tech/) or [FreePass](https://freepass.ai/) - Multiple Chatbots * [SciSpace](https://scispace.com/) (No Sign-Up), [Scinito](https://ekb.scinito.ai/ai/chat) or [Elicit](https://elicit.com/) / [GitHub](https://github.com/elicit) - Research Paper Chatbots +* [Learn About](https://learning.google.com/experiments/learn-about) or [Learning Coach](https://gemini.google.com/gem/learning-coach) - Google's Educational Search AIs * [HelixMind](https://helixmind.online/) - Multiple Chatbots / [Discord](https://discord.gg/7CmPjK87n3) -* [HuggingChat](https://huggingface.co/chat/) - DeepSeek-R1-Distill-Qwen-32B / Qwen QwQ-32B / Multiple Open-Source Chatbots / [GitHub](https://github.com/huggingface/chat-ui) -* [Infermatic](https://infermatic.ai/) - Multiple Chatbots / [Discord](https://discord.gg/9GUXmDx9GF) -* [Electron Hub](https://www.electronhub.top/) - Deepseek-R1 / o3-Mini-High / Multiple Chatbots / [Discord](https://discord.com/invite/apUUqbxCBQ) -* [NexusAI](https://www.nexusmind.tech/) - GPT-4o / Deepseek-R1 / o3-Mini-High / 300 Daily [Discord](https://discord.com/invite/sk8eddGwmP) +* [Electron Hub](https://www.electronhub.ai/) - Deepseek-R1 / o3-Mini-High / Multiple Chatbots / [Discord](https://discord.com/invite/apUUqbxCBQ) * [NVIDIA NIM](https://build.nvidia.com/) - Deepseek-R1 / Multiple Chatbots / No Sign-Up -* [OIChat](https://oi.wr.do/) - Gemini-2.5-Pro-Exp-03-25 / DeepSeek R1 / Qwen QwQ-32B / DeepSeek-V3-0324 / Multiple Chatbots +* [OIChat](https://oi.wr.do/) - Gemini-2.5-Pro-Exp / DeepSeek R1 / Qwen QwQ-32B / DeepSeek-V3-0324 / Multiple Chatbots * [Kimi](https://kimi.ai/) - Kimi 1.5 Chatbot * [Groq](https://groq.com/) - Qwen QwQ-32B / Deepseek-R1-Distill / Multiple Chatbots / [Discord](https://discord.gg/invite/groq) * [SambaNova](https://sambanova.ai/) - Deepseek-R1 / Qwen QwQ-32B / DeepSeek-V3-0324 / Multiple Chatbots / Enter Fake Info * [Lambda Chat](https://lambda.chat/chatui/) - Deepseek-R1 / Multiple Chatbots / Unlimited / No Sign-Up -* [Maisa](https://maisa.ai/) - Vinci KPU Chatbot * [Meta AI](https://www.meta.ai/) - Llama 4 Chatbot -* [Baidu Chat](https://chat.baidu.com/) - Baidu's Chatbot / Phone # Required -* [MiniMax AI](https://chat.minimax.io/) - Deepseek-R1 / MiniMax-Text-01 Chatbot w/ Large Token Context Window / [GitHub](https://github.com/MiniMax-AI/MiniMax-01) +* [MiniMax AI](https://chat.minimax.io/) - Minimax-M1 / [GitHub](https://github.com/MiniMax-AI/MiniMax-01) * [Pi](https://pi.ai/) - Inflection AI's Chatbot * [Reka](https://www.reka.ai/) - Reka's Chatbot / [Discord](https://discord.gg/jtjNSD52mf) -* [Poe](https://poe.com/) - Multiple Chatbots / 150 Daily / Phone # Required / [Discord](https://discord.com/invite/joinpoe) -* [PrivateGPT](https://privategpt.dev/) / [Discord](https://discord.com/invite/bK6mRVpErU) / [GitHub](https://github.com/zylon-ai/private-gpt), [NotebookLM](https://notebooklm.google/), [Onyx](https://www.onyx.app/) / [Discord](https://discord.gg/VKwU6Wr2) / [GitHub](https://github.com/onyx-dot-app/onyx) or [DocsGPT](https://www.docsgpt.cloud/) / [Discord](https://discord.gg/VKwU6Wr2) / [GitHub](https://github.com/arc53/DocsGPT) - Document Chatbots / Note-Taking +* [PrivateGPT](https://privategpt.dev/) / [Discord](https://discord.com/invite/bK6mRVpErU) / [GitHub](https://github.com/zylon-ai/private-gpt), [NotebookLM](https://notebooklm.google/), [Onyx](https://www.onyx.app/) / [Discord](https://discord.com/invite/jDnRGhWhg4) / [GitHub](https://github.com/onyx-dot-app/onyx) or [DocsGPT](https://www.docsgpt.cloud/) / [Discord](https://discord.com/invite/n5BX8dh8rU) / [GitHub](https://github.com/arc53/DocsGPT) - Document Chatbots / Note-Taking *** ## ▷ AI Search Engines * 🌐 **[Awesome AI Web Search](https://github.com/felladrin/awesome-ai-web-search)** - AI Search Engine Index -* ⭐ **[Scira](https://scira.ai/)** - Claude Sonnet 3.7 / Grok 3 / Mistral Small 3.1 / Optimus Alpha / AI Search Engine / No Sign-Up / [GitHub](https://github.com/zaidmukaddam/scira) * ⭐ **[Perplexity](https://www.perplexity.ai/)** - AI Search Engine / [Enhancements](https://www.cplx.app/) / [Open Source Models](https://labs.perplexity.ai/) / [Discord](https://discord.com/invite/perplexity-ai) -* ⭐ **[WolframAlpha](https://www.wolframalpha.com/)** - Searchable Knowledge Base / No Sign-Up / [Mobile](https://rentry.co/FMHYBase64#wolfram-mobile) +* ⭐ **[WolframAlpha](https://www.wolframalpha.com/)** - Searchable Knowledge Base / [Mobile](https://rentry.co/FMHYBase64#wolfram-mobile) * ⭐ **[You](https://you.com/)** - AI Search Engine / Sign-Up Required / [Discord](https://discord.com/invite/youdotcom) / [GitHub](https://github.com/You-OpenSource) -* [Hyperspace](https://hyper.space/) - P2P AI Network / No Sign-Up / [Web App](https://play.hyper.space/), [2](https://compute.hyper.space/) / [GitHub](https://github.com/hyperspaceai) -* [Phind](https://www.phind.com/) - Llama Search Engine / No Sign-Up / [Discord](https://discord.gg/S25yW8TebZ) -* [Morphic](https://www.morphic.sh/) - GPT-4o-mini AI Search Engine / No Sign-Up / [Discord](https://discord.gg/zRxaseCuGq) -* [Komo](https://komo.ai/) - AI Search Engine / No Sign-Up -* [Jina](https://search.jina.ai/) - AI Search Engine / No Sign-Up -* [Felo](https://felo.ai/) - AI Search Engine / AI Agents / No Sign-Up -* [searc.ai](https://searc.ai/) - AI Search Engine / No Sign-Up -* [RabbitHoles](https://rabbitholes.dojoma.ai/) - Mind Map Style Search / [Discord](https://discord.gg/Y7pZUw36) / [GitHub](https://github.com/AsyncFuncAI/rabbitholes) -* [Isou.chat](https://isou.chat/) - Deepseek-R1-Distill / Qwen 2.5 AI Search Engine / No Sign-Up / [GitHub](https://github.com/yokingma/search_with_ai) -* [Hika](https://hika.fyi/) - Deepseek-R1 AI Search Engine / No Sign-Up / [Discord](https://discord.gg/tUATkScUue) +* [Google AI Mode](https://google.com/aimode), [2](https://www.google.com/search?udm=50) - AI Search Engine / US Only +* [Hyperspace](https://hyper.space/) - P2P AI Network / [Web App](https://play.hyper.space/), [2](https://compute.hyper.space/) / [GitHub](https://github.com/hyperspaceai) +* [Phind](https://www.phind.com/) - Llama Search Engine / [Discord](https://discord.gg/S25yW8TebZ) +* [Morphic](https://www.morphic.sh/) - GPT-4o-mini AI Search Engine / [Discord](https://discord.gg/zRxaseCuGq) +* [Komo](https://komo.ai/) - AI Search Engine +* [Jina](https://search.jina.ai/) - AI Search Engine +* [Felo](https://felo.ai/) - AI Search Engine / AI Agents +* [searc.ai](https://searc.ai/) - AI Search Engine +* [RabbitHoles](https://rabbitholes.dojoma.ai/) - Mind Map Style Search / [Discord](https://discord.com/invite/VQMBGR8u5v) / [GitHub](https://github.com/AsyncFuncAI/rabbitholes) +* [Hika](https://hika.fyi/) - Deepseek-R1 AI Search Engine / [Discord](https://discord.gg/tUATkScUue) * [Khoj](https://khoj.dev/) - Gemini-2.0-Flash AI Search Engine / AI Agents / Sign-Up Required / [Discord](https://discord.gg/BDgyabRM6e) / [GitHub](https://github.com/khoj-ai/khoj) -* [AyeSoul](https://ayesoul.com/) - AI Search Engine / No Sign-Up -* [Venice](https://venice.ai/) - LLama 3 AI Search Engine / No Sign-Up -* [uncovr](https://uncovr.app/) - GPT-4o-mini / Gemini-2.0-Flash AI Search Engine / No Sign-Up / [Discord](https://discord.gg/a4gDaVWceP) -* [Exa](https://exa.ai/) - AI Search Engine / No Sign-Up / [Discord](https://discord.gg/HCShtBqbfV) -* [Lepton Search](https://search.lepton.run/) - AI Search Engine / No Sign-Up / [GitHub](https://github.com/leptonai/search_with_lepton) +* [AyeSoul](https://ayesoul.com/) - AI Search Engine +* [Venice](https://venice.ai/) - LLama 3 AI Search Engine +* [uncovr](https://uncovr.app/) - GPT-4o-mini / Gemini-2.0-Flash AI Search Engine / [Discord](https://discord.gg/a4gDaVWceP) +* [Exa](https://exa.ai/) - AI Search Engine / [Discord](https://discord.gg/HCShtBqbfV) +* [Lepton Search](https://search.lepton.run/) - AI Search Engine / [GitHub](https://github.com/leptonai/search_with_lepton) * [Perplexica](https://github.com/ItzCrazyKns/Perplexica) - AI Search Engine / Self-Hosted / [Discord](https://discord.gg/26aArMy8tT) *** @@ -83,9 +81,8 @@ * ⭐ **[Jan](https://jan.ai/)** - Self-Hosted / [Discord](https://discord.com/invite/FTk2MvZwJH) / [GitHub](https://github.com/janhq/jan) * ⭐ **[SillyTavern](https://docs.sillytavern.app/)** - Self-Hosted Interface / [Discord](https://discord.gg/sillytavern) / [Subreddit](https://www.reddit.com/r/SillyTavernAI/) / [GitHub](https://github.com/SillyTavern/SillyTavern) * ⭐ **[Open WebUI](https://openwebui.com/)** - Self-Hosted Interface / [Discord](https://discord.gg/5rJgQTnV4s) / [GitHub](https://github.com/open-webui/open-webui) -* ⭐ **[llama.cpp](https://github.com/ggerganov/llama.cpp)** - Self-Hosted Transformer-Based LLMs / [Guide](https://rentry.org/llama-mini-guide) +* ⭐ **[llama.cpp](https://github.com/ggerganov/llama.cpp)** - Self-Hosted Transformer-Based LLMs * ⭐ **[KoboldCpp](https://github.com/LostRuins/koboldcpp)** - llama.cpp with API + GUI / [ROCm](https://github.com/YellowRoseCx/koboldcpp-rocm) / [Colab](https://colab.research.google.com/github/LostRuins/koboldcpp/blob/concedo/colab.ipynb) -* ⭐ **[Pinokio](https://pinokio.computer/)** - Single Click AI Model Installer / [Discord](https://discord.gg/TQdNwadtE4) / [GitHub](https://github.com/pinokiocomputer/pinokio) * ⭐ **[oobabooga](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) / [Subreddit](https://www.reddit.com/r/Oobabooga/) / [Discord](https://discord.gg/jwZCF2dPQN) * ⭐ **[Aphrodite Engine](https://aphrodite.pygmalion.chat/)** - Serve LLMs at Scale with Kobold & OpenAI APIs / [Colab](https://colab.research.google.com/github/AlpinDale/misc-scripts/blob/main/Aphrodite.ipynb) / [GitHub](https://github.com/PygmalionAI/aphrodite-engine) * [Petals](https://petals.dev/) - Self-Hosted / [Discord](https://discord.gg/D9MwApKgWa) / [GitHub](https://github.com/bigscience-workshop/petals) @@ -104,10 +101,9 @@ ## ▷ Roleplaying Chatbots * 🌐 **[Sukino-Findings](https://rentry.org/Sukino-Findings)** - AI Roleplay Resources -* 🌐 **[BestERP](https://besterp.ai/)** - Roleplaying LLM Lists * ⭐ **[PygmalionAI](https://pygmalion.chat/)** - Self-Hosted Roleplaying Models / [Resources](https://rentry.co/PygmalionLinks) / [Discord](https://discord.com/invite/pygmalionai) / [Subreddit](https://www.reddit.com/r/PygmalionAI/) / [GitHub](https://github.com/PygmalionAI) -* ⭐ **[Character.AI](https://character.ai/)** - Roleplaying Chatbots / [Extract](https://rentry.org/reverseCAI) / [Discord](https://discord.com/invite/characterai) / [Subreddit](https://www.reddit.com/r/CharacterAI/) * ⭐ **[FlowGPT](https://flowgpt.com)** - Roleplaying Chatbots / Some NSFW / [Discord](https://discord.com/invite/tWZGzcpTkf) +* ⭐ **[Character.AI](https://character.ai/)** - Roleplaying Chatbots / [Extract](https://rentry.org/reverseCAI) / [Discord](https://discord.com/invite/characterai) / [Subreddit](https://www.reddit.com/r/CharacterAI/) * ⭐ **[Bot Creation Guide](https://wikia.schneedc.com/bot-creation/intro)** - Character Creation Guide * ⭐ **[Chub](https://chub.ai/)** - Character Cards / Some NSFW / [Discord](https://discord.gg/chubai) / [Subreddit](https://www.reddit.com/r/Chub_AI/) / [GitHub](https://github.com/CharHubAI) * [Llama + SillyTavern](https://rentry.org/llama_v2_sillytavern) - Llama + SillyTavern Roleplaying Setup Guide / No Sign-Up @@ -127,10 +123,13 @@ ## ▷ Coding AIs -* 🌐 **[EvalPlus Leaderboard](https://evalplus.github.io/leaderboard.html)** / [GitHub](https://github.com/evalplus/evalplus), [WebDev Arena](https://web.lmarena.ai/), [Aider LLM Leaderboards](https://aider.chat/docs/leaderboards/) or [Big Code Models Leaderboard](https://huggingface.co/spaces/bigcode/bigcode-models-leaderboard) - Coding AI Leaderboards +* 🌐 **[EvalPlus Leaderboard](https://evalplus.github.io/leaderboard.html)** / [GitHub](https://github.com/evalplus/evalplus), [WebDev Arena](https://web.lmarena.ai/), [LiveCodeBench](https://livecodebench.github.io/leaderboard.html), [Aider LLM Leaderboards](https://aider.chat/docs/leaderboards/) or [Big Code Models Leaderboard](https://huggingface.co/spaces/bigcode/bigcode-models-leaderboard) - Coding AI Leaderboards / Benchmarks +* 🌐 **[LiveSWEBench](https://liveswebench.ai/), [SWE-bench](https://github.com/princeton-nlp/SWE-bench), [multi-swe-bench](https://github.com/multi-swe-bench/multi-swe-bench) or [SWEBench](https://www.swebench.com/)** - Software Engineering AI Leaderboards / Benchmarks * 🌐 **[Awesome AI Agents](https://github.com/e2b-dev/awesome-ai-agents)** - Coding / Programming AIs / [Discord](https://discord.gg/U7KEcGErtQ) +* 🌐 **[Free LLM API Resources](https://github.com/cheahjs/free-llm-api-resources)** - LLM API Resources * ⭐ **[Windsurf](https://www.windsurf.com/)** - Coding AI / [Subreddit](https://www.reddit.com/r/Codeium/) / [Discord](https://discord.com/invite/3XFf78nAx5) * ⭐ **[Pieces](https://pieces.app/)** - Multi-LLM Coding AI / GPT-4 / 4o for Free / No Sign-Up / [Discord](https://discord.gg/getpieces) +* ⭐ **[zed](https://zed.dev/)** - Collabortive Coding AI / [GitHub](https://github.com/zed-industries/zed) * [WDTCD?](https://whatdoesthiscodedo.com/) - Simple Code Explanations / No Sign-Up * [Sourcery](https://sourcery.ai/) - Auto-Pull Request Reviews / [GitHub](https://github.com/sourcery-ai/sourcery) * [Devv](https://devv.ai/) - Coding Search Engine / [GitHub](https://github.com/devv-ai/devv) @@ -149,13 +148,14 @@ * [Qodo](https://www.qodo.ai/) - Coding AI * [Blackbox](https://www.blackbox.ai/) - Coding AI / No Sign-Up * [Denigma](https://denigma.app/) - Coding AI / No Sign-Up / [Discord](https://discord.gg/mZx4REBvKm) -* [Aider](https://aider.chat/) - Terminal Coding AI / [Discord](https://discord.gg/Tv2uQnR88V) / [GitHub](https://github.com/Aider-AI/aider) +* [Aider](https://aider.chat/) - Terminal Coding AI / [Discord](https://discord.com/invite/Y7X7bhMQFV) / [GitHub](https://github.com/Aider-AI/aider) * [Codacy](https://www.codacy.com/) - Code Fixing AI / [GitHub](https://github.com/codacy) * [Open Interpreter](https://github.com/OpenInterpreter/open-interpreter) - Run Code Locally / No Sign-Up / [Discord](https://discord.gg/Hvz9Axh84z) -* [v0](https://v0.dev/) - Text to Site Code / [Discord](https://discord.gg/4ECCp2V5y9) +* [v0](https://v0.dev/) - Text to Site Code * [DeepSite](https://huggingface.co/spaces/enzostvs/deepsite) - Text to Site Code -* [Bolt.new](https://bolt.new/) - Web App Builder / [Discord](https://discord.com/invite/stackblitz) / [GitHub](https://github.com/stackblitz/bolt.new) -* [Fragments](https://fragments.e2b.dev/) - App Builder / [Discord](https://discord.com/invite/U7KEcGErtQ) / [GitHub](https://github.com/e2b-dev) +* [Bolt.new](https://bolt.new/) - AI Web App Builder / [Discord](https://discord.com/invite/stackblitz) / [GitHub](https://github.com/stackblitz/bolt.new) +* [Fragments](https://fragments.e2b.dev/) - AI App Builder / [Discord](https://discord.com/invite/U7KEcGErtQ) / [GitHub](https://github.com/e2b-dev) +* [Rork](https://rork.com/) - AI App Builder [Code Export Bypass](https://greasyfork.org/en/scripts/538090) * [Composio](https://composio.dev/) - Add Tools to Coding AI / [Discord](https://discord.com/invite/cNruWaAhQk) / [GitHub](https://github.com/ComposioHQ/composio) *** @@ -169,14 +169,13 @@ * [ChatGPT Box](https://github.com/josStorer/chatGPTBox) or [KeepChatGPT](https://github.com/xcanwin/KeepChatGPT/blob/main/docs/README_EN.md) - Extensions * [LLM](https://llm.datasette.io/) - LLM CLI / [Discord](https://discord.com/invite/RKAH4b8TvE) / [GitHub](https://github.com/simonw/llm) * [GPT4Free](https://github.com/xtekky/gpt4free) - Desktop App / [Telegram](https://telegram.me/g4f_channel) -* [Msty](https://msty.app/) - Desktop App / [Discord](https://discord.gg/2QBw6XxkCC) +* [Msty](https://msty.app/) - Download & Run Models Locally / [Discord](https://discord.gg/2QBw6XxkCC) * [LobeChat](https://lobechat.com/chat) - Desktop App / [Discord](https://discord.gg/AYFPHvv2jT) / [GitHub](https://github.com/lobehub/lobe-chat) * [Noi](https://noi.nofwl.com/) - Desktop App / [Discord](https://discord.gg/kq2HXcpJSQ) / [GitHub](https://github.com/lencx/Noi) * [Chatbot UI](https://chatbotui.com) - Desktop App / [GitHub](https://github.com/mckaywrigley/chatbot-ui) * [ChatRTX](https://www.nvidia.com/en-us/ai-on-rtx/chatrtx/) - Desktop App / RTX 30+ Series GPU Only * [ChatPDF](https://www.chatpdf.com/) (No Sign-Up) or [AskYourPDF](https://askyourpdf.com/) - Turn Books / PDFs into Chatbots * [ChatGPT DeMod](https://github.com/4as/ChatGPT-DeMod) - Block ChatGPT Moderation Checks -* [ParallelGPT](https://www.parallelgpt.ai/) - Data Processing AI / [Discord](https://discord.com/invite/fjBugmvzZP) * [Concierge](https://askconcierge.ai/) - Connect Apps to AI * [MassiveMark](https://www.bibcit.com/en/massivemark) - Convert LLM Chats to DOCX / [Discord](https://discord.gg/fPtQAQYmqq) * [ChatGPT Widescreen](https://chatgptevo.com/widescreen/) - ChatGPT Widescreen / Fullscreen / [GitHub](https://github.com/adamlui/chatgpt-widescreen) @@ -184,7 +183,7 @@ * [screenpipe](https://screenpi.pe/) - AI Screen Recorder / No Sign-Up / [Discord](https://discord.gg/dU9EBuw7Uq) / [GitHub](https://github.com/mediar-ai/screenpipe) * [ChatGPT Exporter](https://greasyfork.org/en/scripts/456055) - Export Chats / [GitHub](https://github.com/pionxzh/chatgpt-exporter) * [GPThemes](https://github.com/itsmartashub/GPThemes) - ChatGPT Themes -* [CanIRunThisLLM](https://www.canirunthisllm.net/) or [LLM Model VRAM Calculator](https://huggingface.co/spaces/NyxKrage/LLM-Model-VRAM-Calculator) - LLM Requirement Calculators +* [LLM Model VRAM Calculator](https://huggingface.co/spaces/NyxKrage/LLM-Model-VRAM-Calculator) - LLM Requirement Calculators * [AI Piracy Resources](https://rentry.org/aipiracyresources) - AI Piracy Guide / Resources *** @@ -198,7 +197,7 @@ * 🌐 **[Jailbreak Listings](https://rentry.org/jb-listing)** - Prompt / Jailbreak Lists * ⭐ **[BlackFriday GPTs Prompts](https://github.com/friuns2/BlackFriday-GPTs-Prompts)** - Prompt Directory * ⭐ **[Leaked Prompts](https://github.com/linexjlin/GPTs)** - Prompt Directory -* ⭐ **[Prompt Engineering Guide](https://www.promptingguide.ai)** / [Discord](https://discord.gg/FUyz9vPAwf) / [GitHub](https://github.com/dair-ai/Prompt-Engineering-Guide), [Google Whitepaper](https://www.kaggle.com/whitepaper-prompt-engineering), [Prompt_Engineering](https://github.com/NirDiamant/Prompt_Engineering), [LearnPrompting](https://learnprompting.org/docs/intro), [OpenAI Guide](https://platform.openai.com/docs/guides/prompt-engineering) or [Claude Guide](https://docs.anthropic.com/claude/docs/prompt-engineering) - Prompting Guides +* ⭐ **[Prompt Engineering Guide](https://www.promptingguide.ai)** / [Discord](https://discord.gg/FUyz9vPAwf) / [GitHub](https://github.com/dair-ai/Prompt-Engineering-Guide), [Google Whitepaper](https://www.kaggle.com/whitepaper-prompt-engineering), [Prompt_Engineering](https://github.com/NirDiamant/Prompt_Engineering), [LearnPrompting](https://learnprompting.org/docs/introduction), [OpenAI Guide](https://platform.openai.com/docs/guides/prompt-engineering) or [Claude Guide](https://docs.anthropic.com/claude/docs/prompt-engineering) - Prompting Guides * [/r/ChatGPTJailbreak](https://www.reddit.com/r/ChatGPTJailbreak/) - AI Jailbreak Community * [ChatGPT System Prompt](https://github.com/LouisShark/chatgpt_system_prompt) - Prompt Directory * [The Big Prompt Library](https://github.com/0xeb/TheBigPromptLibrary) - Prompt Directory @@ -209,7 +208,6 @@ * [RedTeam Arena](https://redarena.ai/) - AI Jailbreak Game * [Gobble Bot](https://gobble.bot/) - Generate Text Files for Chatbots -*** *** # ► AI Indexes @@ -232,21 +230,19 @@ ## ▷ AI Benchmarks * ⭐ **[Artificial Analysis](https://artificialanalysis.ai/)** - Chatbot Benchmarks -* ⭐ **[Chatbot Arena](https://beta.lmarena.ai/leaderboard)** - Chatbot Leaderboards / Benchmarks / [Discord](https://discord.gg/6GXcFg3TH8) / [GitHub](https://github.com/lm-sys/FastChat) -* ⭐ **[LiveBench](https://livebench.ai/)** - Chatbot Leaderboards / Benchmarks / [GitHub](https://github.com/livebench/livebench) +* ⭐ **[LMArena](https://lmarena.ai/leaderboard)** - Chatbot Leaderboards / Benchmarks / [Discord](https://discord.gg/6GXcFg3TH8) / [GitHub](https://github.com/lm-sys/FastChat) * [SEAL LLM Leaderboards](https://scale.com/leaderboard) - Chatbot Leaderboards +* [RankedAGI](https://rankedagi.com/) - Chatbot Leaderboards / Benchmarks * [WildBench](https://huggingface.co/spaces/allenai/WildBench) - Chatbot Benchmarks / [GitHub](https://github.com/allenai/WildBench) * [Wolfram LLM Benchmarking Project](https://www.wolfram.com/llm-benchmarking-project/) - Chatbot Leaderboards / Benchmarks * [ZeroEval](https://huggingface.co/spaces/allenai/ZeroEval) - Chatbot Leaderboard / [GitHub](https://github.com/WildEval/ZeroEval) * [LLM Stats](https://llm-stats.com/) - Chatbot Leaderboard * [OpenLM Arena](https://openlm.ai/chatbot-arena/) - Chatbot Leaderboard -* [The Fastest AI](https://thefastest.ai/) - Chatbot Latency Speeds / [GitHub](https://github.com/fixie-ai/thefastest.ai) * [OpenRouter](https://openrouter.ai/rankings) - Chatbot Popularity Rankings / [Discord](https://discord.gg/fVyRaUDgxW) / [GitHub](https://github.com/OpenRouterTeam) * [Open VLM Leaderboard](https://huggingface.co/spaces/opencompass/open_vlm_leaderboard) - VLM Benchmark Leaderboard Aggregator * [MathArena](https://matharena.ai/) - AI Mathematics Competitions / Benchmarks * [AI Elo](https://aielo.co/) - AI Game Competitions / Benchmarks -*** *** # ► Text Generators @@ -271,38 +267,37 @@ # ► Video Generation * 🌐 **[VBench](https://huggingface.co/spaces/Vchitect/VBench_Leaderboard)** - Video Generation Model Leaderboard -* ⭐ **[PixVerse](https://pixverse.ai/)** - 1 Daily / [Discord](https://discord.com/invite/MXHErdJHMg) -* [AI Studio](https://aistudio.google.com/generate-video) / [Subreddit](https://www.reddit.com/r/Bard/) / [Discord](https://discord.com/invite/gemini) +* [AI Studio](https://aistudio.google.com/generate-video) - Veo 2 / [Subreddit](https://www.reddit.com/r/Bard/) / [Discord](https://discord.com/invite/gemini) * [Synthesis Colab](https://github.com/camenduru/text-to-video-synthesis-colab) - Unlimited / Colab / [Discord](https://discord.gg/k5BwmmvJJU) -* [Stable Video](https://www.stablevideo.com/) * [Vidu](https://www.vidu.studio/) - 6 Monthly / [Discord](https://discord.gg/3pDU8fmQ8Y) * [Genmo](https://www.genmo.ai/) - 30 Monthly / [GitHub](https://github.com/genmoai/mochi) * [Stable Diffusion Videos](https://github.com/nateraw/stable-diffusion-videos) - Unlimited / [Colab](https://colab.research.google.com/github/nateraw/stable-diffusion-videos/blob/main/stable_diffusion_videos.ipynb) +* [PixVerse](https://pixverse.ai/) - 1 Daily / [Discord](https://discord.com/invite/MXHErdJHMg) * [Wan AI](https://wan.video/) / 10 Daily -* [Dream Machine](https://lumalabs.ai/dream-machine) - 5 per Account / [Discord](https://discord.gg/lumaai) * [LensGo](https://lensgo.ai/) - 5 Daily / [Discord](https://discord.com/invite/CHMhrByFJS) * [Kling AI](https://klingai.com/) - 8 Monthly / [Discord](https://discord.com/invite/8tj8YjSzKr) * [Pika](https://www.pika.art/) - 5 Monthly / [Discord](https://discord.com/invite/pika) * [Dreamina](https://dreamina.capcut.com/ai-tool/home) - 150 Monthly * [Qwen](https://chat.qwen.ai/) - 10 Daily -* [Krea](https://www.krea.ai/) - 2 Daily / [Discord](https://discord.gg/rJurUAR8Kz) -* [Hailuo Free](https://hailuoaifree.com/) - Unlimited * [Hailuo AI](https://hailuoai.video/) - 3 Daily / [Discord](https://discord.com/invite/hvvt8hAye6) * [Fusion Brain](https://fusionbrain.ai/en/) - Unlimited * [Vivago](https://vivago.ai/) - 1 Daily +* [Runway.exo](https://runway.exomlapi.com/) - 1 Hourly / ExoML Watermark * [ChatGLM](https://chatglm.cn/) - Unlimited / Requires Sign-Up & Phone # / SMS Generators Work +* [FramePack](https://github.com/colinurbs/FramePack-Studio) - Desktop App / Local Models / NVIDIA GPU Required * [Eggnog](https://www.eggnog.ai/) - AI Character Video Remixer + Editor *** # ► Image Generation -* ⭐ **[NexusAI Image](https://image.nexusmind.tech/)** / 300 Daily Per Model / [Discord](https://discord.com/invite/sk8eddGwmP) -* ⭐ **[FLUX.1 [Schnell]](https://huggingface.co/spaces/black-forest-labs/FLUX.1-schnell)** or [FLUX.1 [Dev]](https://huggingface.co/spaces/black-forest-labs/FLUX.1-dev) / Unlimited / No Sign-Up -* ⭐ **[Mage](https://www.mage.space/)** / No Sign-Up / [Discord](https://discord.com/invite/GT9bPgxyFP) -* ⭐ **[ImageFX](https://labs.google/fx/tools/image-fx)** or [Gemini](https://gemini.google.com/) - Imagen 3 / Unlimited / Region Based / [Discord](https://discord.com/invite/googlelabs) -* ⭐ **[ComfyUI Online](https://www.runcomfy.com/comfyui-web)** / Unlimited +* 🌐 **[Imgsys Rankings](https://imgsys.org/rankings)** - Image Generator Benchmarks / Leaderboards +* ⭐ **[LMArena](https://lmarena.ai)** - Multiple Generators / No Sign-Up / [Discord](https://discord.gg/6GXcFg3TH8) / [GitHub](https://github.com/lm-sys/FastChat) +* ⭐ **[ImageFX](https://labs.google/fx/tools/image-fx)**, [AI Studio](https://aistudio.google.com/generate-image) or [Gemini](https://gemini.google.com/) - Imagen 3 / Imagen 4 (Gemini) / Unlimited / Region-Based / [Discord](https://discord.com/invite/googlelabs) +* ⭐ **[Mage](https://www.mage.space/)** / [Discord](https://discord.com/invite/GT9bPgxyFP) +* ⭐ **[FLUX.1 Schnell](https://huggingface.co/spaces/black-forest-labs/FLUX.1-schnell)**, [FLUX.1 Dev](https://huggingface.co/spaces/black-forest-labs/FLUX.1-dev) or [FLUX-Pro-Unlimited](https://huggingface.co/spaces/NihalGazi/FLUX-Pro-Unlimited) / Unlimited / No Sign-Up * ⭐ **[Grok](https://grok.com/)** / 25 Per 2 Hours / [Subreddit](https://www.reddit.com/r/grok/) / [Discord](https://discord.com/invite/kqCc86jM55) +* [ComfyUI Online](https://www.runcomfy.com/comfyui-web) / Unlimited * [Dezgo](https://dezgo.com/) / Unlimited / No Sign-Up / [Discord](https://discord.com/invite/RQrGpUhPhx) * [Fusion Brain](https://fusionbrain.ai/en/), [2](https://rudalle.ru/) / Unlimited / [Telegram Bot](https://t.me/kandinsky21_bot) * [Microsoft Designer](https://designer.microsoft.com/image-creator), [2](https://www.bing.com/images/create) / Unlimited @@ -314,16 +309,16 @@ * [imgsys](https://imgsys.org/) / Unlimited / Compare Generators / No Sign-Up * [NVIDIA NIM](https://build.nvidia.com/models?filters=usecase%3Ausecase_image_gen) / 50 Daily / No Sign-Up * [Hotpot](https://hotpot.ai/) / 75 Daily / No Sign-Up +* [BAGEL](https://demo.bagel-ai.org/) / Unlimited * [Prodia](https://app.prodia.com/playground) / Unlimited / No Sign-Up / [Discord](https://discord.com/invite/495hz6vrFN) -* [Pollinations](https://pollinations.ai/) / Unlimited / No Sign-Up / [Discord](https://discord.gg/k9F7SyTgqn) / [GitHub](https://www.github.com/pollinations/pollinations) +* [Pollinations](https://pollinations.ai/) / Unlimited / No Sign-Up / [Notes](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#pollinations-note) / [Discord](https://discord.gg/k9F7SyTgqn) / [GitHub](https://www.github.com/pollinations/pollinations) * [PicSynth](https://www.picsynth.me/generation) / Unlimited +* [Imagen.exo](https://imagen.exomlapi.com/) / Unlimited / Imagen 3/3.5 * [Leonardo](https://leonardo.ai/) / 150 Daily * [Loras](https://www.loras.dev/) / Unlimited / [GitHub](https://github.com/Nutlope/loras-dev) * [ChatGLM](https://chatglm.cn/) / Unlimited * [Meta AI](https://www.meta.ai/icebreakers/imagine/) / Unlimited -* [Playground](https://playground.com/) / 15 Per 3 Hours -* [TensorArt](https://tensor.art/) / 40 Daily / [Subreddit](https://www.reddit.com/r/TensorArt_HUB/) / [Discord](https://discord.com/invite/qYjANGqBED) -* [Shakker](https://www.shakker.ai/) / 50 Daily / [Discord](https://discord.gg/djyP5u3vHY) / [Guide](https://docs.google.com/document/d/1PZ6to6Nn995J0o0BbEPhucqge9uyc1acQoNuvWkK6M8/edit#heading=h.kkzhkyyy4ze4) +* [GPT1Image](https://gpt1image.exomlapi.com/) - Unlimited / GPT-Image-1 * [Stable Diffusion](https://huggingface.co/spaces/stabilityai/stable-diffusion) / Unlimited / [GitHub](https://github.com/Stability-AI/stablediffusion) / [Discord](https://discord.com/invite/stablediffusion) * [Unstable Diffusion](https://www.unstability.ai/) / 52 Daily * [SeaArt](https://www.seaart.ai/) / 40 Daily / [Discord](https://discord.com/invite/gUHDU644vU) @@ -334,25 +329,17 @@ * [PixNova AI](https://pixnova.ai/ai-body-generator/) / Unlimited * [ChatK](https://chat.oaichat.cc/) / Unlimited * [Reve Image](https://preview.reve.art/) / 20 Daily -* [Baidu Chat](https://chat.baidu.com/) / Phone # Required * [ImageLabs](https://editor.imagelabs.net/) / Unlimited / No Sign-Up * [Qwen](https://chat.qwen.ai/) / Unlimited * [AIGazou](https://muryou-aigazou.com/) / Unlimited * [Dreamina](https://dreamina.capcut.com/ai-tool/home) / 50 Daily * [Perchance](https://perchance.org/ai-text-to-image-generator), [2](https://perchance.org/ai-photo-generator) / Unlimited / No Sign-Up -* [getimg.ai](https://getimg.ai/) / 100 Monthly / [Discord](https://discord.com/invite/5KsUXSzVwS) * [Adobe Firefly](https://firefly.adobe.com/) / 25 Monthly / [Discord](https://discord.com/invite/dJnsV5s8PZ) -* [Aitubo](https://app.aitubo.ai/) / 25 Daily / [Discord](https://discord.gg/qTu6YsRn7F) -* [Poe](https://poe.com/) / 2-15 Daily / Phone # Required / [Discord](https://discord.com/invite/joinpoe) -* [Maze Guru](https://maze.guru/gallery) / 12 Daily / [Discord](https://discord.com/invite/maze-guru-ai-art-anime-social-1007166914801434634) -* [DALL·E](https://openai.com/index/dall-e-3/) - 6 Daily / ChatGPTs Image Generator +* [ChatGPT](https://chatgpt.com/) - 3 Daily / [Discord](https://discord.com/invite/openai) * [PixAI](https://pixai.art/) / 5 Daily / [Discord](https://discord.com/invite/pixai) -* [FluxPro](https://fluxpro.art/) / 1 Daily / [Discord](https://discord.gg/YMmUAvtRva) -* [Glif](https://glif.app/) / 20 Daily / No Sign-Up / [Discord](https://discord.gg/nuR9zZ2nsh) -* [Vivago](https://vivago.ai/) / 15 Daily / No Sign-Up -* [Krea](https://www.krea.ai/) / 10 Daily / No Sign-Up / [Discord](https://discord.gg/rJurUAR8Kz) * [Whisk](https://labs.google/fx/en/tools/whisk) - Use Images as Prompts * [Artoons](https://artoons.vercel.app/) - Cartoon Style Generator / [GitHub](https://github.com/sujjeee/artoons) +* [Diffusers Image Outpaint](https://huggingface.co/spaces/fffiloni/diffusers-image-outpaint) - AI Image Extender * [Genie](https://lumalabs.ai/genie) / [Discord](https://discord.com/invite/ASbS3EykXm), [Shap-e](https://github.com/openai/shap-e), [Stable Dreamfusion](https://github.com/ashawkey/stable-dreamfusion) or [threestudio](https://github.com/threestudio-project/threestudio) / [Colab](https://colab.research.google.com/github/threestudio-project/threestudio/blob/main/threestudio.ipynb) / [Discord](https://discord.gg/ejer2MAB8N) - 3D Image Generators * [Interactive Scenes](https://lumalabs.ai/interactive-scenes) - Generate Interactive Scenes / [Discord](https://discord.com/invite/ASbS3EykXm) * [Illusion Diffusion](https://huggingface.co/spaces/AP123/IllusionDiffusion) - Illusion Artwork Generator @@ -401,8 +388,8 @@ # ► Audio Generation * ⭐ **[Riffusion](https://www.riffusion.com/)** / [Discord](https://discord.gg/riffusion-1053034685590143047) -* ⭐ **[Suno](https://suno.com/)** / [Guide](https://sunoaiwiki.com/en) / [Discord](https://discord.com/invite/suno) -* [MusicFX](https://labs.google/fx/tools/music-fx) / Region Based +* ⭐ **[Suno](https://suno.com/)** or [Suno.exo](https://suno.exomlapi.com/) / [Guide](https://sunoaiwiki.com/en) / [Discord](https://discord.com/invite/suno) +* [MusicFX](https://labs.google/fx/tools/music-fx) / Region-Based * [WolframTones](https://tones.wolfram.com/) / No Sign-Up * [Stable Audio](https://www.stableaudio.com/) / [Discord](https://discord.com/invite/stablediffusion) * [Udio](https://www.udio.com/) / [Discord](https://discord.gg/udio) @@ -444,13 +431,15 @@ * [IndexTTS](https://github.com/index-tts/index-tts) / No Sign-Up * [Voices](https://www.hailuo.ai/audio/) * [TextToSpeech.io](https://texttospeech.io/) +* [GPT-SoVITS](https://github.com/RVC-Boss/GPT-SoVITS) / No Sign-Up * [LazyPy](https://lazypy.ro/tts/) / No Sign-Up / [GitHub](https://github.com/chrisjp/tts) -* [Kokoro TTS](https://huggingface.co/spaces/hexgrad/Kokoro-TTS) / No Sign-Up / [Source code](https://huggingface.co/hexgrad/Kokoro-82M) / [Discord](https://discord.gg/QuGxSWBfQy) / [GitHub](https://github.com/hexgrad/kokoro) +* [Kokoro TTS](https://huggingface.co/spaces/hexgrad/Kokoro-TTS) / No Sign-Up / [Discord](https://discord.gg/QuGxSWBfQy) / [GitHub](https://github.com/hexgrad/kokoro) * [Ondoku](https://ondoku3.com/en/) / No Sign-Up +* [Chatterbox](https://huggingface.co/spaces/ResembleAI/Chatterbox) / No Sign-Up / [GitHub](https://github.com/resemble-ai/chatterbox) * [AnyVoiceLab](https://anyvoicelab.com/long-form-text-to-speech-converter/) / No Sign-Up * [VoiceCraft](https://github.com/jasonppy/VoiceCraft) / [Colab](https://colab.research.google.com/drive/1IOjpglQyMTO2C3Y94LD9FY0Ocn-RJRg6?usp=sharing) * [EmotiVoice](https://github.com/netease-youdao/EmotiVoice) -* [Fish Audio](https://fish.audio/) / [Discord](https://discord.gg/6t7dUSPV) / [GitHub](https://github.com/fishaudio) +* [Fish Audio](https://fish.audio/) / [GitHub](https://github.com/fishaudio) * [Audio-WebUI](https://github.com/gitmylo/audio-webui) / No Sign-Up / [Colab](https://colab.research.google.com/github/gitmylo/audio-webui/blob/master/audio_webui_colab.ipynb) / [Discord](https://discord.gg/NB86C3Szkg) * [VanillaVoice](https://www.vanillavoice.com/) / No Sign-Up * [TTSFree](https://ttsfree.com/) / No Sign-Up @@ -461,7 +450,6 @@ * [Voicemaker](https://voicemaker.in/) / No Sign-Up * [NaturalReaders](https://www.naturalreaders.com/online/) / No Sign-Up * [TTS](https://github.com/coqui-ai/tts) / [Discord](https://discord.gg/5eXr5seRrv) -* [Clash](https://clash.me/) * [Moe TTS](https://huggingface.co/spaces/skytnt/moe-tts) / No Sign-Up / [Colab](https://colab.research.google.com/drive/14Pb8lpmwZL-JI5Ub6jpG4sz2-8KS0kbS?usp=sharing) *** @@ -474,8 +462,6 @@ * ⭐ **[Voice Changer](https://github.com/w-okada/voice-changer/blob/master/docs_i18n/README_en.md)** - Real-Time Voice Changer (W-Okada) / [Guide](https://rentry.co/VoiceChangerGuide) / [Colab](https://colab.research.google.com/github/w-okada/voice-changer/blob/master/Realtime_Voice_Changer_on_Colab.ipynb) * ⭐ **[Ilaria RVC](https://huggingface.co/spaces/TheStinger/Ilaria_RVC)** - RVC V2 Voice Cloning (Cloud/Colab) / No Sign-Up * [Replay](https://www.weights.com/replay) - RVC Desktop App / [Discord](https://discord.gg/A5rgNwDRd4) -* [Bark Voice Cloning](https://huggingface.co/spaces/kevinwang676/Bark-with-Voice-Cloning) - Voice Cloning / No Sign-Up / [Colab](https://colab.research.google.com/github/KevinWang676/Bark-Voice-Cloning/blob/main/Bark_Voice_Cloning.ipynb) / [GitHub](https://github.com/KevinWang676/Bark-Voice-Cloning) -* [RVC Inference HF](https://huggingface.co/spaces/r3gm/RVC_HFv2) - Voice Cloning / No Sign-Up * [AnyVoiceLab](https://anyvoicelab.com/voice-cloning/) - Voice Cloning / No Sign-Up * [AllVoiceLab](https://www.allvoicelab.com/) - Voice Cloning * [Zyphra](https://playground.zyphra.com/audio) - Voice Cloning / [GitHub](https://github.com/Zyphra/Zonos) diff --git a/docs/android-iosguide.md b/docs/android-iosguide.md index bf050484b..e5f27a275 100644 --- a/docs/android-iosguide.md +++ b/docs/android-iosguide.md @@ -8,14 +8,14 @@ ## ▷ Modded APKs -* ⭐ **[Mobilism](https://forum.mobilism.org/viewforum.php?f=398)** - Free Books / Sign-Up Required / [App](https://forum.mobilism.org/app/) / [User Ranks](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#mobilism-ranks) +* ⭐ **[Mobilism](https://forum.mobilism.org/viewforum.php?f=398)**, [2](https://forum.mobilism.me/) - Free Books / Sign-Up Required / [User Ranks](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#mobilism-ranks) * ⭐ **[4PDA](https://4pda.to/forum/)** - [App](https://github.com/slartus/4pdaClient-plus) / Use [Translator](https://fmhy.net/text-tools#translators) / [Captcha Note](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#4pda-captcha), [2](https://doorsgeek.blogspot.com/2015/08/4pdaru-loginregister-captcha-tutorial.html) * ⭐ **[RockMods](https://www.rockmods.net/)** / [Telegram](https://t.me/RBMods) * ⭐ **[PlatinMods](https://platinmods.com/)** +* ⭐ **[PDALife](https://pdalife.com/)** / [App](https://pdalife.com/pdalife-app-android-a40597.html) / [Telegram](https://t.me/pdalife_official) / [Discord](https://discord.gg/erVkAkzGHZ) * [LiteAPKs](https://liteapks.com/) / [App](https://liteapks.com/app.html) / [Note](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#liteapk--modyolo-note) / [Telegram](https://t.me/liteapks) * [Modyolo](https://modyolo.com/) / [Note](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#liteapk--modyolo-note) / [Telegram](https://t.me/modyolo_official) * [Nsane Forums](https://nsaneforums.com/) -* [PDALife](https://pdalife.com/) / [App](https://pdalife.com/pdalife-app-android-a40597.html) / [Telegram](https://t.me/pdalife_official) / [Discord](https://discord.gg/erVkAkzGHZ) * [Sbenny](https://sbenny.com/) * [farsroid](https://www.farsroid.com/) * [APKSum](https://www.apksum.com/) @@ -24,23 +24,23 @@ * [AndroPalace](https://www.andropalace.org/) / [Telegram](https://telegram.me/officialandropalace) * [Android1](https://an1.com/) / [Telegram](https://t.me/android1com) * [APKVision](https://apkvision.org/) +* [9Mod](https://9mod.com/) * [A2Z APK](https://a2zapk.io/) / [Telegram](https://t.me/a2zapkofficial) -* [HappyMod](https://happymod.com/) / [Telegram](https://t.me/happymod_vip) +* [HappyMod](https://happymod.com/) * [APK4Free](https://apk4free.net/) / [Telegram](https://t.me/apk4free_net) * [Release APK](https://forum.release-apk.com/) * [ReXDL](https://rexdl.com/) * [Android APK CSE](https://cse.google.com/cse?cx=e0d1769ccf74236e8) / [CSE 2](https://cse.google.com/cse?cx=73948689c2c206528) / [CSE 3](https://cse.google.com/cse?cx=a805854b6a196d6a6) or [App Finder](https://play.google.com/store/apps/details?id=scadica.aq) - APK Search Engines - *** ## ▷ Telegram Channels -**Note** - These also contain modded APKs similar to the section above. +* **Note** - These also contain modded APKs similar to the section above. *** -* ⭐ **[Youarefinished Mods](https://t.me/+h95JCUnuf-M1MTE1)**, [ANiK555_Mods](https://t.me/+1gj58uSCVFw1OTJl), [alexstranniklite](https://t.me/alexstranniklite), [AMRTSOFFICIAL](https://t.me/+UGzSc_aVSbI8yTw2), [Sam Mods](https://t.me/+RUVXlRhdsXR2yemD), [GetMod](https://t.me/Getmodpcs) or [MustHave](https://t.me/Alexey070315) - Modded Apps +* ⭐ **[Youarefinished Mods](https://t.me/+h95JCUnuf-M1MTE1)**, [ANiK555_Mods](https://t.me/+1gj58uSCVFw1OTJl), [alexstranniklite](https://t.me/alexstranniklite), [AMRTSOFFICIAL](https://t.me/+UGzSc_aVSbI8yTw2), [Sam Mods](https://t.me/+RUVXlRhdsXR2yemD) or [MustHave](https://t.me/Alexey070315) - Modded Apps * ⭐ **[Satriyaid](https://t.me/s/satriyaid)** - Modded Editing Apps * [Tech Day](https://t.me/s/tech_d4y) - Modded Editing Apps * [Modules Repository](https://t.me/modulesrepo) - Mobile Customization Index @@ -49,6 +49,23 @@ *** +## ▷ FOSS APKs + +* 🌐 **[AAA](https://github.com/Psyhackological/AAA)**, [Cool FOSS](https://albertomosconi.github.io/foss-apps/) or [Android FOSS](https://github.com/offa/android-foss) - FOSS App Indexes +* 🌐 **[Awesome Android Root](https://awesome-android-root.link/)** - Rooted App Index / [GitHub](https://github.com/fynks/awesome-android-root) +* 🌐 **[Awesome Shizuku](https://github.com/timschneeb/awesome-shizuku)** - Shizuku App Index / [Tools](https://github.com/legendsayantan/ShizuTools) +* ⭐ **[FossifyOrg](https://github.com/FossifyOrg)** or [Goodwy](https://github.com/Goodwy?tab=repositories) - Simple FOSS Apps +* ⭐ **[Droid-ify](https://github.com/Droid-ify/client)** - FOSS App Installer +* [F-Droid](https://f-droid.org/) or [Awesome F-Droid](https://fdroid.tabler.dev/) / [GitHub](https://github.com/moneytoo/awesome-fdroid) - FOSS App Installer / [Basic](https://f-droid.org/en/packages/org.fdroid.basic/) +* F-Droid Tools - [Repositories](https://forum.f-droid.org/t/known-repositories/) / [Desktop](https://github.com/mvdan/fdroidcl) / [Build Status](https://codeberg.org/pstorch/F-Droid_Build_Status) / [Advanced Search](https://github.com/dbeley/fdroid-insights) +* [Neo Store](https://github.com/NeoApplications/Neo-Store) - FOSS App Installer +* [IzzyOnDroid](https://android.izzysoft.de/applists.php) - FOSS Apps / [F-Droid](https://apt.izzysoft.de/fdroid/index.php) +* [You Apps](https://you-apps.net/) - FOSS Apps / [GitHub](https://github.com/you-apps) +* [FossDroidAndroid](https://t.me/FossDroidAndroid) - FOSS Apps / Telegram +* [GrapheneOS Apps](https://github.com/GrapheneOS/AppStore) - Work on Non-GrapheneOS Devices + +*** + ## ▷ Untouched APKs * ↪️ **[Free App Giveaways](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/misc#wiki_.25BA_free_stuff)** - App Giveaway Sites @@ -57,7 +74,6 @@ * ⭐ **[APKCombo](https://apkcombo.app/)** * ⭐ **[Aurora Store](https://auroraoss.com/)** - Alt App Store / [GitLab](https://gitlab.com/AuroraOSS/AuroraStore) * [APKPure](https://apkpure.net/), [2](https://apkpure.com/) -* [Play Search](https://playsearch.kaki87.net/) - Advanced Playstore Search * [Android Ultimate Collection](https://xdaforums.com/t/android-ultimate-collection-guides.4513231/) * [APKMonk](https://www.apkmonk.com/) * [APKToy](https://www.apktoy.com/) @@ -69,28 +85,10 @@ *** -## ▷ FOSS APKs - -* 🌐 **[AAA](https://github.com/Psyhackological/AAA)**, [Cool FOSS](https://albertomosconi.github.io/foss-apps/) or [Android FOSS](https://github.com/offa/android-foss) - FOSS App Indexes -* 🌐 **[Awesome Android Root](https://awesome-android-root.link/)** - Rooted App Index / [GitHub](https://github.com/fynks/awesome-android-root) -* 🌐 **[Awesome Shizuku](https://github.com/timschneeb/awesome-shizuku)** - Shizuku App Index / [Tools](https://github.com/legendsayantan/ShizuTools) -* ⭐ **[FossifyOrg](https://github.com/FossifyOrg)** - Simple FOSS Apps -* ⭐ **[Droid-ify](https://github.com/Droid-ify/client)** - FOSS App Installer -* [F-Droid](https://f-droid.org/) or [Awesome F-Droid](https://fdroid.tabler.dev/) / [GitHub](https://github.com/moneytoo/awesome-fdroid) - FOSS App Installer / [Basic](https://f-droid.org/en/packages/org.fdroid.basic/) -* F-Droid Tools - [Repositories](https://forum.f-droid.org/t/known-repositories/) / [Desktop](https://github.com/mvdan/fdroidcl) / [Build Status](https://codeberg.org/pstorch/F-Droid_Build_Status) / [Advanced Search](https://github.com/dbeley/fdroid-insights) -* [Goodwy](https://github.com/Goodwy?tab=repositories) - Simple FOSS Apps -* [Neo Store](https://github.com/NeoApplications/Neo-Store) - FOSS App Installer -* [IzzyOnDroid](https://android.izzysoft.de/applists.php) - FOSS Apps / [F-Droid](https://apt.izzysoft.de/fdroid/index.php) -* [You Apps](https://you-apps.net/) - FOSS Apps / [GitHub](https://github.com/you-apps) -* [FossDroidAndroid](https://t.me/FossDroidAndroid) - FOSS Apps / Telegram -* [GrapheneOS Apps](https://github.com/GrapheneOS/AppStore) - Work on Non-GrapheneOS Devices - -*** - ## ▷ App Launchers * 🌐 **[Launcher Comparison Table](https://grabster.notion.site/6671f3b62d8043c4aaaae22a241e3f05?v=91d9b664887643298f85fe18044d3560)** -* ⭐ **[Lawnchair](https://lawnchair.app/)** - Pixel-Based Launcher / [Feed](https://github.com/LawnchairLauncher/lawnfeed) / [Icons](https://github.com/LawnchairLauncher/lawnicons) / [Telegram](https://t.me/lawnchairci) / [GitHub](https://github.com/LawnchairLauncher/lawnchair) +* ⭐ **[Lawnchair](https://lawnchair.app/)** - Pixel-Based Launcher / [Feed](https://github.com/LawnchairLauncher/lawnfeed) / [Icons](https://github.com/LawnchairLauncher/lawnicons) / [Telegram](https://t.me/lawnchairci) / [Discord](https://discord.gg/3x8qNWxgGZ) / [GitHub](https://github.com/LawnchairLauncher/lawnchair) * ⭐ **[Niagara Launcher](https://niagaralauncher.app/)** - Single-Hand Launcher / [Telegram](https://t.me/niagara_news) * ⭐ **[SmartLauncher](https://rentry.co/fmhybase64#smartlauncher)**, [2](https://www.smartlauncher.net/) - Customizable Launcher / [Telegram](https://t.me/smartlauncher) * ⭐ **[Kvaesitso](https://kvaesitso.mm20.de/)** - Search-Focused Launcher / [GitHub](https://github.com/MM2-0/Kvaesitso) @@ -98,7 +96,7 @@ * [KISS](https://kisslauncher.com/) or [TBLauncher](https://tbog.github.io/TBLauncher/) - Low-Memory Usage Launcher * [Discreet Launcher](https://vincent-falzon.com/) - Minimalist / Clean Launcher * [Lunar Launcher](https://github.com/iamrasel/lunar-launcher) - Minimalist / Clean Launcher -* [OlauncherCF]https://github.com/OlauncherCF/OlauncherCF) or [mLauncher](https://github.com/DroidWorksStudio/mLauncher) - Minimalist / Clean Launcher +* [OlauncherCF](https://github.com/OlauncherCF/OlauncherCF) or [mLauncher](https://github.com/DroidWorksStudio/mLauncher) - Minimalist / Clean Launcher * [Focus Launcher](https://github.com/mslalith/focus_launcher) - Minimalist / Clean Launcher * [NeoLauncher](https://github.com/NeoApplications/Neo-Launcher) - Customizable Launcher * [Unlauncher](https://jkuester.github.io/unlauncher/) - Distraction-Free Launcher @@ -135,9 +133,8 @@ * 🌐 **[ReVanced Mega](https://xdaforums.com/t/app-guides-unofficial-revanced-megathread.4523967/)** - ReVanced Resources / Megathread * 🌐 **[ReVanced-Patch-Bundles](https://github.com/Jman-Github/ReVanced-Patch-Bundles)** - ReVanced Patch Index -* ⭐ **[ReVanced Manager](https://revanced.app/)** - Android App Patcher / [Discord](https://discord.com/invite/rF2YcEjcrT) / [GitHub](https://github.com/ReVanced/revanced-manager) -* ⭐ **[ReVanced Auto-Update](https://gist.github.com/VVispy/50172b4ab77940b2d1ec09d5af70c8a7)** - Update ReVanced Apps Automatically -* [ReVanced Troubleshooting Guide](https://sodawithoutsparkles.github.io/revanced-troubleshooting-guide/) +* ⭐ **[ReVanced Manager](https://revanced.app/)** - Android App Patcher / [Guide](https://sodawithoutsparkles.github.io/revanced-troubleshooting-guide/) / [Discord](https://discord.com/invite/rF2YcEjcrT) / [GitHub](https://github.com/ReVanced/revanced-manager) +* ⭐ **[ReVanced Obtainium Guide](https://gist.github.com/VVispy/50172b4ab77940b2d1ec09d5af70c8a7)** - Update ReVanced Apps Automatically * [RVX Manager](https://github.com/inotia00/revanced-manager) - ReVanced Extended / [Subreddit](https://www.reddit.com/r/revancedextended/) * [ReVanced Non-Root](https://github.com/FiorenMas/Revanced-And-Revanced-Extended-Non-Root) - Pre-Built RV & RVX APKs / [Telegram](https://t.me/fiorenmas) * [ReVanced Magisk Module](https://github.com/j-hc/revanced-magisk-module) - ReVanced Builder / [Config Gen](https://j-hc.github.io/rvmm-config-gen/) / [Telegram](https://t.me/rvc_magisk) @@ -149,16 +146,17 @@ * 🌐 **[/reddit clients/](https://rentry.co/redditclients)** - Android Reddit Client Comparisons * ↪️ **[Social Media Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/social-media/)** +* ↪️ **[YouTube Apps](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/android#wiki_.25B7_android_youtube_apps)** * ↪️ **[Telegram Clients](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_android_telegram_clients)** * ↪️ **[Twitch Adblockers](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/social-media#wiki_.25B7_twitch_adblockers)** -* ⭐ **[Revenge](https://github.com/revenge-mod/revenge-bundle)** / [Plugins](https://purple-eyez.github.io/Plugins-List/) / [Fonts](https://github.com/Rairof/Theme-Fonts), [2](https://github.com/Purple-EyeZ/Bunny-Fonts) / [Discord](https://discord.com/invite/ddcQf3s2Uq) or [Aliucord](https://github.com/Aliucord/Aliucord) / [Discord](https://discord.gg/EsNDvBaHVU) - Modded Discord Clients -* ⭐ **[Reddit Client Patch](https://rentry.co/FMHYBase64#patch-clients)**, [Stealth](https://gitlab.com/cosmosapps/stealth) or [RedReader](https://github.com/QuantumBadger/RedReader) - Reddit Clients / Patch Guide +* ⭐ **[Revenge](https://github.com/revenge-mod/revenge-bundle)** / [Plugins](https://plugins-list.pages.dev/) / [Fonts](https://github.com/Rairof/Theme-Fonts), [2](https://github.com/Purple-EyeZ/Bunny-Fonts) / [Discord](https://discord.com/invite/ddcQf3s2Uq) or [Aliucord](https://github.com/Aliucord/Aliucord) / [Discord](https://discord.gg/EsNDvBaHVU) - Modded Discord Clients +* ⭐ **[Reddit Client Patch](https://github.com/KobeW50/ReVanced-Documentation/blob/main/Reddit-Client-ID-Guide.md)**, [Stealth](https://gitlab.com/cosmosapps/stealth), [Continuum](https://github.com/cygnusx-1-org/continuum) or [RedReader](https://github.com/QuantumBadger/RedReader) - Reddit Clients / Patch Guide * ⭐ **[Voyager](https://vger.app) / [GitHub](https://github.com/aeharding/voyager)**, [Jerboa](https://github.com/LemmyNet/jerboa), [Eternity](https://codeberg.org/Bazsalanszky/Eternity), [summit](https://play.google.com/store/apps/details?id=com.idunnololz.summit), [Raccoon](https://github.com/LiveFastEatTrashRaccoon/RaccoonForLemmy) or [Thunder](https://github.com/thunder-app/thunder) - Lemmy Clients / [Index](https://join-lemmy.org/apps) -* ⭐ **[Tusky](https://tusky.app/)**, [Dhaaga](https://github.com/suvam0451/dhaaga), [tooot](https://tooot.app/), [SubwayTooter](https://github.com/tateisu/SubwayTooter) or [Dimett](https://github.com/MateriiApps/Dimett) - Mastodon Clients / [GitHub](https://github.com/LucasGGamerM/moshidon) -* ⭐ **[piko](https://github.com/crimera/twitter-apk)** / [Telegram](https://t.me/pikopatches) / [GitHub](https://github.com/crimera/piko), [Quacker](https://github.com/TheHCJ/Quacker) or [Squawker](https://github.com/j-fbriere/squawker) - Twitter/X Apps +* ⭐ **[Tusky](https://tusky.app/)**, [Dhaaga](https://github.com/suvam0451/dhaaga), [tooot](https://tooot.app/), [SubwayTooter](https://github.com/tateisu/SubwayTooter), [Moshidon](https://github.com/LucasGGamerM/moshidon) or [Dimett](https://github.com/MateriiApps/Dimett) - Mastodon Clients +* ⭐ **[piko](https://github.com/crimera/twitter-apk)** / [Telegram](https://t.me/pikopatches) / [GitHub](https://github.com/crimera/piko), [Quacker](https://github.com/TheHCJ/Quacker) or [Squawker](https://github.com/j-fbriere/squawker) - Twitter/X Apps * [Watomatic](https://watomatic.app/) / [GitHub](https://github.com/adeekshith/watomatic) or [AutoResponder](https://www.autoresponder.ai/) - Chat App Auto-Responders * [MessengerEx](https://github.com/C10udburst/MessengerEx/) - Facebook Messenger Adblocker -* [Openvibe](https://openvibe.social/) - Combine Social Media Apps +* [Beeper](https://www.beeper.com/) / [GitHub](https://github.com/beeper) or [Openvibe](https://openvibe.social/) - Combine Chat / Social Media Apps * [Xtra](https://github.com/crackededed/Xtra), [BBTV](https://github.com/bttv-android/bttv), [Twire](https://github.com/twireapp/Twire) or [Frosty](https://www.frostyapp.io/) / [GitHub](https://github.com/tommyxchow/frosty) - Twitch Clients * [Graysky](https://graysky.app/) - Bluesky Client * [Mumla](https://gitlab.com/quite/mumla) or [Meshenger](https://github.com/meshenger-app/meshenger-android) - Voice Chat @@ -167,14 +165,13 @@ * [DankChat](https://github.com/flex3r/DankChat) - Talk in Multiple Twitch Chats at Once * [OldLander](https://github.com/OctoNezd/oldlander) - Improve Old Reddit * [Kuroba](https://github.com/Adamantcheese/Kuroba) or [Chan](https://github.com/moffatman/chan) - 4chan Apps -* [MyInsta](https://t.me/instasmashrepo) or [Instadev](https://instadevofficial.netlify.app/) / [Telegram](https://t.me/Instadevofficial) - Modded Instagram Clients / [Tools](https://play.google.com/store/apps/details?id=com.dageek.socialtoolbox_android) +* [InstaEclipse](https://github.com/ReSo7200/InstaEclipse), [Instadev](https://instadevofficial.netlify.app/) / [Telegram](https://t.me/Instadevofficial) or [MyInsta](https://t.me/instasmashrepo) - Modded Instagram Clients / [Tools](https://play.google.com/store/apps/details?id=com.dageek.socialtoolbox_android) * [TikTokModCloud](https://t.me/TikTokModCloud) - Modded TikTok Client -* [MessengerPro](https://rentry.co/FMHYBase64#messengerpro) - Modded Facebook Messenger +* [MessengerPro](https://rentry.co/FMHYBase64#messengerpro) or [Nobook](https://github.com/ycngmn/Nobook) - Modded Facebook Messenger * [Telegram-Themer](https://github.com/therxmv/Telegram-Themer) or [Telegram Monet](https://github.com/mi-g-alex/Telegram-Monet) / [Telegram](https://t.me/tgmonet) - Telegram Theme Creators * [Launch Chat](https://github.com/vinaygopinath/launch-chat), [WhatsAppNoContact](https://github.com/theolm/WhatsAppNoContact) or [Tellurium](https://play.google.com/store/apps/details?id=com.quadren.tellurium) - Number-Free WhatsApp Chat * [WaEnhancer](https://github.com/Dev4Mod/WaEnhancer) (root) - WhatsApp Patcher * [Whatsapp Backup Reader](https://whatsappbr.netlify.app/) - Read Exported Whatsapp Chats -* [FakeWhats](https://www.fakewhats.com/) or [FakeInfo](https://fakeinfo.net/fake-whatsapp-chat-generator) - Fake WhatsApp Messages * [WhatsAppCleaner](https://github.com/VishnuSanal/WhatsAppCleaner) - Clean Redundant WhatsApp Media Files * [FouadMODS](https://t.me/FouadMODS) or [SE Extended](https://github.com/bocajthomas/SE-Extended) / [Telegram](https://t.me/SE_Extended_CI) - Snapchat Clients @@ -184,9 +181,8 @@ * 🌐 **[Manufacturer Specific](https://rentry.org/ekrw4)** - Manufacturer Specific Mobile Tools * ↪️ **[Device Comparisons](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/misc#wiki_.25B7_electronics)** -* ⭐ **[XDA](https://xdaforums.com/)** - Android Discussion Forum -* ⭐ **[ADB AppControl](https://adbappcontrol.com/en/)** or [Octi](https://github.com/d4rken-org/octi) - Android Device Managers -* ⭐ **[scrcpy](https://github.com/Genymobile/scrcpy)**, **[PlainApp](https://docs.plain.icu/)**, [anl](https://anl.ink/), [WebADB](https://app.webadb.com/) or [QtScrcpy](https://github.com/barry-ran/QtScrcpy) - Control Android via Desktop +* ⭐ **[XDA](https://xdaforums.com/)** - Android Discussion Forum / [Discord](https://discord.com/invite/e4v8qtkcBw) +* ⭐ **[ADB AppControl](https://adbappcontrol.com/en/)** / [GUI](https://aya.liriliri.io/), **[scrcpy](https://github.com/Genymobile/scrcpy)** / [Mobile App](https://github.com/zwc456baby/ScrcpyForAndroid), **[PlainApp](https://docs.plain.icu/)**, [anl](https://anl.ink/), [WebADB](https://app.webadb.com/), [QtScrcpy](https://github.com/barry-ran/QtScrcpy) or [Octi](https://github.com/d4rken-org/octi) - Android Device Managers / Controllers * [Plexus](https://plexus.techlore.tech/) - De-Googled Device Compatibility / [GitHub](https://github.com/techlore/Plexus-app) * [GSMHosting](https://forum.gsmhosting.com/vbb/) - GSM Discussion Forum * [AVNC](https://github.com/gujjwal00/avnc) or [DroidVNC-NG](https://github.com/bk138/droidVNC-NG) - Remote Desktop Clients / VNC @@ -204,7 +200,7 @@ ## ▷ Optimization -* ⭐ **[Canta](https://f-droid.org/en/packages/org.samo_lego.canta/)** - Android Debloater / Requires Shizuku / [GitHub](https://github.com/samolego/Canta) +* ⭐ **[Canta](https://samolego.github.io/Canta/)** - Android Debloater / Requires Shizuku / [GitHub](https://github.com/samolego/Canta) * ⭐ **[Universal Android Debloater v2](https://github.com/Universal-Debloater-Alliance/universal-android-debloater-next-generation)** - Android Debloater * ⭐ **[Hail](https://github.com/aistra0528/Hail)** - Auto-Deactivate Unused Apps * [De-Bloater](https://sunilpaulmathew.github.io/De-Bloater/) - Android Debloater / Root @@ -231,6 +227,7 @@ * [Paperize](https://github.com/Anthonyy232/Paperize) - Wallpapers * [Diffuse](https://diffuse.app/) - Live Audio Wallpapers * [Candybar](https://github.com/zixpo/candybar), [Arcticons](https://arcticons.com/) or [Alembicons](https://f-droid.org/packages/com.kaanelloed.iconeration/) - Custom Icon Packs +* [PhoneTones](https://rentry.co/fmhybase64#oldschool-ringtones) - Oldschool Ringtones *** @@ -252,7 +249,8 @@ ## ▷ Camera Tools * ⭐ **[Google Lens](https://lens.google.com/)** - Multiple Camera Tools -* ⭐ **[Gallery](https://github.com/FossifyOrg/Gallery)**, **[Aves](https://github.com/deckerst/aves)**, [PhotosGo](https://play.google.com/store/apps/details?id=com.google.android.apps.photosgo), [Ente](https://ente.io/) / [GitHub](https://github.com/ente-io/ente), [Photok](https://github.com/leonlatsch/Photok), [Stingle](https://stingle.org/), [QuickPic](https://github.com/WSTxda/QP-Gallery-Releases), [UhuruPhotos](https://uhuru.photos) / [GitHub](https://github.com/savvasdalkitsis/uhuruphotos-android), [Google Photos](https://rentry.co/FMHYBase64#revanced-google-photos) or [Gallery 2.0](https://github.com/IacobIonut01/Gallery) - Photo / Video Galleries +* ⭐ **[Gallery](https://github.com/FossifyOrg/Gallery)**, **[Aves](https://github.com/deckerst/aves)**, [PhotosGo](https://play.google.com/store/apps/details?id=com.google.android.apps.photosgo), [Ente](https://ente.io/) / [GitHub](https://github.com/ente-io/ente), [Photok](https://github.com/leonlatsch/Photok), [QuickPic](https://github.com/WSTxda/QP-Gallery-Releases), [UhuruPhotos](https://uhuru.photos) / [GitHub](https://github.com/savvasdalkitsis/uhuruphotos-android), [Google Photos](https://rentry.co/FMHYBase64#revanced-google-photos) or [Gallery 2.0](https://github.com/IacobIonut01/Gallery) - Photo / Video Galleries +* ⭐ **[ImageToolbox](https://github.com/T8RIN/ImageToolbox)**, [PicsArt](https://rentry.co/FMHYBase64#picsart), [Hypic](https://play.google.com/store/apps/details?id=com.xt.retouchoversea), [Snapseed](https://play.google.com/store/apps/details?id=com.niksoftware.snapseed), [PhotoLayers](https://play.google.com/store/apps/details?id=com.handycloset.android.photolayers), [Photo Editor](https://play.google.com/store/apps/details?id=com.iudesk.android.photo.editor) or [Pixomatic](https://pixomatic.us/) - Image Editors * ⭐ **[Reincubate Camo](https://reincubate.com/camo/)**, [Iriun](https://iriun.com/) or [DroidCam](https://github.com/dev47apps/droidcam-linux-client) - Use Android as Webcam * [Sponge](https://play.google.com/store/apps/details?id=com.prismtree.sponge) - Image Gallery Cleaner * [googlecameraport](https://www.celsoazevedo.com/files/android/google-camera) - Google Cam Downloads / [Telegram](https://t.me/googlecameraport) / [XML Configs](https://t.me/xmlshamimmod) @@ -260,7 +258,6 @@ * [FadCam](https://github.com/anonfaded/FadCam) - Background Video Recorder * [Alibi](https://github.com/Myzel394/Alibi) or [DroidDashcam](https://play.google.com/store/apps/details?id=com.helge.droiddashcam) - Mobile Dashcams * [Material Photo Widget](https://github.com/fibelatti/photo-widget) - Homescreen Photo Widget -* [ImageToolbox](https://github.com/T8RIN/ImageToolbox), [PicsArt](https://rentry.co/FMHYBase64#picsart), [Hypic](https://play.google.com/store/apps/details?id=com.xt.retouchoversea), [Snapseed](https://play.google.com/store/apps/details?id=com.niksoftware.snapseed), [PhotoLayers](https://play.google.com/store/apps/details?id=com.handycloset.android.photolayers), [Photo Editor](https://play.google.com/store/apps/details?id=com.iudesk.android.photo.editor) or [Pixomatic](https://pixomatic.us/) - Image Editors * [Memetastic](https://github.com/gsantner/memetastic) - Meme Creators * [Gcam-Services-Provider](https://github.com/lukaspieper/Gcam-Services-Provider) - Use Google Cam without Google Play * [PhotoScan](https://play.google.com/store/apps/details?id=com.google.android.apps.photos.scanner) - Easily Scan & Digitize Photos @@ -274,24 +271,25 @@ * [AndroidOCR](https://github.com/SubhamTyagi/android-ocr) - Extract Text from Images * [SauceNAO](https://github.com/LuK1337/SauceNAO) - Reverse Image Search / Some NSFW * [AppMockUp](https://app-mockup.com/) - Screenshot Builder -* [Scrambled Exif](https://gitlab.com/juanitobananas/scrambled-exif/tree/HEAD), [MetadataRemover](https://github.com/Crazy-Marvin/MetadataRemover) or [exif-eraser](https://github.com/Tommy-Geenexus/exif-eraser) - Remove Image Metadata +* [Scrambled Exif](https://gitlab.com/juanitobananas/scrambled-exif), [MetadataRemover](https://github.com/Crazy-Marvin/MetadataRemover) or [exif-eraser](https://github.com/Tommy-Geenexus/exif-eraser) - Remove Image Metadata * [VES-Image-Compare](https://github.com/VincentEngel/VES-Image-Compare) - Easily Compare Images *** ## ▷ Keyboard Tools -* ⭐ **[FUTO Keyboard](https://keyboard.futo.org/)** - Privacy-Focused Keyboard -* ⭐ **[HeliBoard](https://github.com/Helium314/HeliBoard)** - Customizable Privacy-Focused Keyboard / [Layouts Guide](https://github.com/Helium314/HeliBoard/wiki/Layouts) +* ⭐ **[FUTO Keyboard](https://keyboard.futo.org/)** - Privacy-Focused Keyboard / [Discord](https://discord.gg/ENYRubhTRw) * ⭐ **[Florisboard](https://florisboard.org)** - Privacy-Focused Keyboard -* [Flickboard](https://codeberg.org/natkr/flickboard) - Keyboard +* ⭐ **[HeliBoard](https://github.com/Helium314/HeliBoard)** - Customizable Privacy-Focused Keyboard / [Layouts Guide](https://github.com/Helium314/HeliBoard/wiki/Layouts) +* [Gboard](https://play.google.com/store/apps/details?id=com.google.android.inputmethod.latin) - Keyboard +* [SwiftKey](https://www.microsoft.com/en-us/swiftkey) - Keyboard * [Unexpected Keyboard](https://github.com/Julow/Unexpected-Keyboard) - Keyboard * [AnySoftKeyboard](https://anysoftkeyboard.github.io/) - Privacy-Focused Keyboard * [Thumb-Key](https://github.com/dessalines/thumb-key) - Swipe Keyboard +* [Flickboard](https://codeberg.org/natkr/flickboard) - Keyboard * [KeyboardGPT](https://github.com/Mino260806/KeyboardGPT) - AI Keyboard * [Sayboard](https://github.com/ElishaAz/Sayboard) - AI Voice Keyboard * [KeyMapper](https://github.com/keymapperorg/KeyMapper) - Remap Keys / [Docs](https://docs.keymapper.club/) / [Discord](https://discord.com/invite/jutQhBeKpb) -* [Grammarly](https://rentry.co/FMHYBase64#grammarly-keyboard-premium) - Grammarly Keyboard Premium *** @@ -315,7 +313,6 @@ * [Logger](https://github.com/Sanmeet007/logger) - View / Export Call Logs * [The National Do Not Call Registry](https://www.donotcall.gov/) - Opt Out of Telemarketing Calls * [Scammer.Info](https://scammer.info/) - Scam Numbers Database -* [Spectrum Ownership Map](https://specmap.sequence-omega.net/) - Mobile Network Comparisons * [Prepaid SIM Cards](https://prepaid-data-sim-card.fandom.com/wiki/Prepaid_SIM_with_data) - Prepaid Data SIM Card Wiki * [Walkie-Talkie](https://walkie-talkie.io/) or [Codec2 Talkie](https://github.com/sh123/codec2_talkie) - Walkie-Talkie Apps * [TxtEmNow](https://txtemnow.com/) - Send Anonymous Texts @@ -326,18 +323,16 @@ ## ▷ Root / Flash * 🌐 **[Bootloader Unlock: Wall of Shame](https://github.com/melontini/bootloader-unlock-wall-of-shame)** - Bootlocker Limit Index -* ⭐ **[Magisk](https://github.com/topjohnwu/Magisk)**, [KernelSU](https://kernelsu.org/), [KernelSU-Next](https://github.com/KernelSU-Next/KernelSU-Next), [MagiskOnWSALocal](https://github.com/LSPosed/MagiskOnWSALocal), [APatch](https://github.com/bmax121/APatch), [MTKClient](https://github.com/bkerler/mtkclient) or [Mtk Easy Su](https://github.com/JunioJsv/mtk-easy-su) - Android Root Tools -* ⭐ **Magisk Tools** - [Module Manager](https://github.com/DerGoogler/MMRL) / [Mods](https://t.me/magiskmod_update) / [Support Layer](https://github.com/axonasif/rusty-magisk) / [PlayIntegrity Fix](https://xdaforums.com/t/module-play-integrity-fix-safetynet-fix.4607985/), [2](https://github.com/osm0sis/PlayIntegrityFork), [3](https://xdaforums.com/t/tricky-store-bootloader-keybox-spoofing.4683446/) / [Fix Guide](https://xdaforums.com/t/module-play-integrity-fix-safetynet-fix.4607985/page-177#post-89189572) / [Alt Repo](https://github.com/Magisk-Modules-Alt-Repo) +* ⭐ **[Magisk](https://github.com/topjohnwu/Magisk)**, [Magisk Alpha](https://t.me/magiskalpha), [KitsuneMagisk](https://github.com/1q23lyc45/KitsuneMagisk), [KernelSU](https://kernelsu.org/), [KernelSU-Next](https://github.com/KernelSU-Next/KernelSU-Next), [MagiskOnWSALocal](https://github.com/LSPosed/MagiskOnWSALocal), [APatch](https://github.com/bmax121/APatch), [MTKClient](https://github.com/bkerler/mtkclient) or [Mtk Easy Su](https://github.com/JunioJsv/mtk-easy-su) - Android Root Tools +* ⭐ **Magisk Tools** - [Module Manager](https://github.com/DerGoogler/MMRL) / [Mods](https://t.me/magiskmod_update) / [Support Layer](https://github.com/axonasif/rusty-magisk) / [PlayIntegrity Fix](https://xdaforums.com/t/tricky-store-bootloader-keybox-spoofing.4683446/) / [Alt Repo](https://github.com/Magisk-Modules-Alt-Repo) * ⭐ **[Android Docker](https://gist.github.com/FreddieOliveira/efe850df7ff3951cb62d74bd770dce27)** - Run Docker on Android * [Rooting Guides](https://awesome-android-root.link/rooting-guides/) - Android Root Guides * [ADB-and-FastbootPlusPlus](https://github.com/K3V1991/ADB-and-FastbootPlusPlus) - ADB / Fastboot Programs * [aShell](https://gitlab.com/sunilpaulmathew/ashell) or [aShellYou](https://github.com/DP-Hridayan/aShellYou) - ADB Shells -* [LiveBoot](https://play.google.com/store/apps/details?id=eu.chainfire.liveboot) - LogCat / Dmesg Boot Animation * [LogFox](https://github.com/F0x1d/LogFox) - LogCat Reader * [Amazing Temp Root](https://xdaforums.com/t/amazing-temp-root-for-mediatek-armv8-2020-08-24.3922213/) - MediaTek Temp Root * [TWRP Root](https://twrp.me/) / [Telegram](https://t.me/samsung_twrp_root) or [UnofficialTWRP](https://unofficialtwrp.com/) - TWRP Root * [Orangefox](https://orangefox.download/) or [SkyHawk](https://skyhawkrecovery.github.io/) - Custom Recovery Firmware -* [SWAP](https://rentry.co/FMHYBase64#swap) - Create SWAP file without Root * [Smali Patcher](https://xdaforums.com/t/module-smali-patcher-7-4.3680053/) - Android System Patcher * [Albastuz3d](https://albastuz3d.net/) - Stock Phone ROMs * [ConnectBot](https://connectbot.org/) - SSH Client @@ -350,9 +345,9 @@ * 🌐 **[Android ROM Comparisons](https://eylenburg.github.io/android_comparison.htm)** or [Android ROM List](https://github.com/musabcel/android_rom_list) * ⭐ **[CustomRomBay](https://customrombay.org/)** - ROMs Compatibility Search -* ⭐ **[GrapheneOS](https://grapheneos.org/)** - Security / Privacy Hardened Android / [Discord](https://discord.com/invite/grapheneos) / [Telegram](https://t.me/GrapheneOS) -* [CalyxOS](https://calyxos.org/) - Privacy-Based OS -* [LineageOS](https://www.lineageos.org/) - Privacy-Based OS / [Discord](https://discord.gg/gD6DMtf) / [MicroG](https://lineage.microg.org/) +* ⭐ **[GrapheneOS](https://grapheneos.org/)** - Security & Privacy Hardened Android / [Discord](https://discord.com/invite/grapheneos) / [Telegram](https://t.me/GrapheneOS) +* [CalyxOS](https://calyxos.org/) - Privacy-Focused OS +* [LineageOS](https://www.lineageos.org/) - Privacy-Focused OS / [Discord](https://discord.gg/gD6DMtf) / [MicroG](https://lineage.microg.org/) *** @@ -360,35 +355,35 @@ ## ▷ Android Utilities -* ↪️ **[Android Calculators](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/edu#wiki_.25B7_math)** +* ↪️ **[Android Calculators](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/edu#wiki_.25B7_calculators)** * ⭐ **[MacroDroid](https://rentry.co/FMHYBase64#macrodroid)** / [Subreddit](https://www.reddit.com/r/macrodroid/), [Tasker](https://rentry.co/FMHYBase64#tasker) or [Automate](https://llamalab.com/automate/) / [Subreddit](https://www.reddit.com/r/AutomateUser/) - Android Automation +* ⭐ **[Unified Remote](https://rentry.co/FMHYBase64#unified-remote)**, [2](https://www.unifiedremote.com/) - Universal Remotes * [Toolbox](https://github.com/Koizeay/Toolbox), [Tooly](https://play.google.com/store/apps/details?id=com.yousx.thetoolsapp) or [fooView](https://play.google.com/store/apps/details?id=com.fooview.android.fooview) - Multi-Tool Apps * [LightCut](https://play.google.com/store/apps/details?id=com.lightcut.videoeditor), [open-video-editor](https://github.com/devhyper/open-video-editor) or [Vaux](https://play.google.com/store/apps/details?id=com.vaux.vaux_editor) - Video Editors * [auto-auto-rotate](https://gitlab.com/juanitobananas/auto-auto-rotate) - Per App Rotation Settings +* [Shelter](https://github.com/PeterCxy/Shelter), [Island](https://play.google.com/store/apps/details?id=com.oasisfeng.island) or [Insular](https://secure-system.gitlab.io/Insular/) / [GitLab](https://gitlab.com/secure-system/Insular) - Isolate / Clone Apps * [Geto](https://github.com/JackEblan/Geto) - Custom App Settings / Requires Shizuku * [Catima](https://catima.app/) - Loyalty Card Managers * [Shortcut Maker](https://play.google.com/store/apps/details?id=rk.android.app.shortcutmaker) or [Quikshort](https://play.google.com/store/apps/details?id=com.atolphadev.quikshort) - Create App Shortcuts * [Touch The Notch](https://play.google.com/store/apps/details?id=com.notch.touch) or [Action Notch](https://play.google.com/store/apps/details?id=com.androxus.touchthenotch) - Use Camera Notch as Button * [TapTap](https://github.com/KieronQuinn/TapTap) - Android Back Gesture Controls -* [Shelter](https://github.com/PeterCxy/Shelter), [Island](https://play.google.com/store/apps/details?id=com.oasisfeng.island) or [Insular](https://gitlab.com/secure-system/Insular) - Isolate / Clone Apps * [Circle to Search](https://play.google.com/store/apps/details?id=com.circletosearch.android) or [MiCTS](https://github.com/parallelcc/MiCTS/blob/main/README_en.md) - Circle to Search -* [notesGPT](https://usenotesgpt.com/) or [AudioNote](https://certified84.github.io/AudioNote/) - Video / Voice Recorders -* [DeepSeek](https://download.deepseek.com/app/) - AI Chatbot -* [ChatBox](https://github.com/Bin-Huang/chatbox), [Maid](https://github.com/Mobile-Artificial-Intelligence/maid), [ChatterUI](https://github.com/Vali-98/ChatterUI) or [PocketPal AI](https://github.com/a-ghorbani/pocketpal-ai) - Local AI Chatbots -* [Chai](https://www.chai-research.com/) - Roleplaying Chatbots +* [notesGPT](https://usenotesgpt.com/) - AI Voice Notes +* [AudioNote](https://certified84.github.io/AudioNote/) - Video / Voice Recorders +* [ChatBox](https://github.com/Bin-Huang/chatbox), [Maid](https://github.com/Mobile-Artificial-Intelligence/maid), [ChatterUI](https://github.com/Vali-98/ChatterUI), [Google AI Edge Gallery](https://github.com/google-ai-edge/gallery) or [PocketPal AI](https://github.com/a-ghorbani/pocketpal-ai) - Local AI Chatbots * [Audio-Recorder](https://gitlab.com/axet/android-audio-recorder/) - Audio Recorder * [Noiseun Canceller](https://play.google.com/store/apps/details?id=com.jazibkhan.noiseuncanceller) - Audio Surrounding Recorder * [Voiceliner](https://a9.io/voiceliner/) - Voice Memos / [GitHub](https://github.com/maxkrieger/voiceliner) * [TouchDroid](https://github.com/SKRInternationals/TouchDroid), [Mousedroid](https://github.com/darusc/Mousedroid) or [USB HID Client](https://github.com/Arian04/android-hid-client) (root) - Use Device as PC Mouse / Keyboard * [Android Virtual Pen](https://github.com/androidvirtualpen/virtualpen) - Use Device as PC Virtual Pen * [Listy](https://listy.is/) or [HypeList](https://hypelist.com/) - Create Lists of Anything +* [Gameye](https://www.gameye.app/) - Track Game Collection / Prices * [VoiceGPT](https://github.com/WSTxda/Plugin-VoiceGPT) or [Dicio](https://github.com/Stypox/dicio-android) - Voice Assistants * [Novelist](https://www.novelist.app/) - Writing App * [Tunity](https://tunity.com/) - Hear Muted TVs * [Trail Sense](https://kylecorry.com/Trail-Sense/) - Wilderness Survival App / [GitHub](https://github.com/kylecorry31/Trail-Sense) * [SensorServer](https://github.com/umer0586/SensorServer) - Use Phone as Accelerometer -* [Unified Remote](https://www.unifiedremote.com/) - Universal Remotes -* [GitNex](https://codeberg.org/gitnex/GitNex/) - Forgejo and Gitea Client for Android +* [GitNex](https://gitnex.com/) - Forgejo and Gitea Client for Android / [Source Code](https://codeberg.org/gitnex/GitNex/) * [LSPatch](https://github.com/JingMatrix/LSPatch) - Non-root Xposed Framework *** @@ -400,7 +395,6 @@ * ⭐ **[System Wide Adblocking](https://redd.it/oyfmr1)** - System Wide Adblocking Guide * ⭐ **[AdGuard Premium](https://rentry.co/FMHYBase64#adguard-premium)** - Adblocking App * ⭐ **uBlock Origin** - [Firefox](https://addons.mozilla.org/en-US/firefox/addon/ublock-origin/) / [Chromium](https://chromewebstore.google.com/detail/ublock-origin/cjpalhdlnbpafiamejdnhcphjbkeiagm) -* ⭐ **[Cromite](https://github.com/uazo/cromite)** - Adblocking Browser / [Filter](https://github.com/xarantolus/filtrite) * ⭐ **[Hermit](https://rentry.co/FMHYBase64#hermit)** / [2](https://play.google.com/store/apps/details?id=com.chimbori.hermitcrab) - Web App Container * [AdAway](https://adaway.org/) - Adblocking App / [GitHub](https://github.com/AdAway/AdAway) * [PrivateDNSAndroid](https://github.com/karasevm/PrivateDNSAndroid) - DNS Switchers @@ -410,46 +404,45 @@ ## ▷ Android Privacy * 🌐 **[Awesome Android Security](https://github.com/ashishb/android-security-awesome)** - Security Resources -* ↪️ **[Privacy Based Browsers](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_android_browsers)** -* ↪️ **[Encrypted Messengers](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_encrypted_android_messengers)** +* ↪️ **[Encrypted Messengers](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/adblock-vpn-privacy#wiki_.25B7_encrypted_messengers)** * ↪️ **[Android 2FA](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/adblock-vpn-privacy#wiki_.25B7_password_privacy_.2F_2fa)** -* ⭐ **[TrackerControl](https://trackercontrol.org/)** / [GitHub](https://github.com/TrackerControl/tracker-control-android), [Permission Pilot](https://github.com/d4rken-org/permission-pilot), [Exodus](https://reports.exodus-privacy.eu.org/en/) / [2](https://github.com/Exodus-Privacy/exodus-android-app) or [PermissionManagerX](https://github.com/mirfatif/PermissionManagerX) - App Permission Managers + +* ⭐ **[Exodus](https://reports.exodus-privacy.eu.org/en/)** - App Tracker Database + +* ⭐ **[TrackerControl](https://trackercontrol.org/)** / [GitHub](https://github.com/TrackerControl/tracker-control-android), [Permission Pilot](https://github.com/d4rken-org/permission-pilot) or [PermissionManagerX](https://github.com/mirfatif/PermissionManagerX) - App Permission Managers * ⭐ **[VirusTotal](https://docs.virustotal.com/docs/mobile-apps)** or [Pithus](https://beta.pithus.org/) - APK / URL Virus Scanners -* ⭐ **[URLCheck](https://github.com/TrianguloY/URLCheck)**, [Leon](https://github.com/svenjacobs/leon), [LinkSheet](https://github.com/LinkSheet/LinkSheet), [Tarnhelm](https://github.com/lz233/Tarnhelm) or [Untracker](https://github.com/zhanghai/Untracker) - URL Cleaners / Tracking Removal +* ⭐ **[URLCheck](https://github.com/TrianguloY/URLCheck)**, [Leon](https://github.com/svenjacobs/leon), [LinkSheet](https://github.com/LinkSheet/LinkSheet), [Tarnhelm](https://github.com/lz233/Tarnhelm) or [Untracker](https://github.com/zhanghai/Untracker) - URL Cleaners / Tracking Removal * ⭐ **[Shadowsocks-Android](https://github.com/shadowsocks/shadowsocks-android)** - Shadowsocks Proxy App -* ⭐ **[NekoBoxForAndroid](https://github.com/MatsuriDayo/NekoBoxForAndroid)** / [Warning](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#nekoboxforandroid-warning) or [Matsuri](https://matsuridayo.github.io/) - Proxy Toolchains +* ⭐ **[NekoBoxForAndroid](https://github.com/MatsuriDayo/NekoBoxForAndroid)** or [Matsuri](https://matsuridayo.github.io/) - Proxy Toolchains * ⭐ **[TorServices](https://f-droid.org/packages/org.torproject.torservices/)** or [Orbot](https://orbot.app/en/) - Tor Proxy Apps * ⭐ **[ByeDPIAndroid](https://github.com/dovecoteescapee/ByeDPIAndroid)** or [Lantern](https://lantern.io/download?os=android) - Anti-Censorship Proxies * ⭐ **[XPL-EX](https://github.com/0bbedCode/XPL-EX)** or [InviZible](https://github.com/Gedsh/InviZible?tab=readme-ov-file#invizible-pro) - Privacy Managers * ⭐ **[Amarok](https://github.com/deltazefiro/Amarok-Hider)**, [Aer](https://github.com/nain-F49FF806/anemo-aer) or [SafeSpace](https://github.com/aashishksahu/SafeSpace) - Hide Files / Apps * [Ceno Browser](https://censorship.no/en/index.html) - Proxy Browser / [GitHub](https://github.com/censorship-no/ceno-browser) * [husi](https://github.com/xchacha20-poly1305/husi) - Proxy Config Manager -* [WG Tunnel](https://zaneschepke.com/wgtunnel-docs/overview.html) - WireGuard VPN App / [Discord](https://discord.gg/rbRRNh6H7V) / [Telegram](https://t.me/wgtunnel) / [GitHub](https://github.com/zaneschepke/wgtunnel) +* [WG Tunnel](https://wgtunnel.com/) - WireGuard VPN App / [Docs](https://wgtunnel.com/docs/) / [Telegram](https://t.me/wgtunnel) / [GitHub](https://github.com/wgtunnel/wgtunnel) * [Oblivion](https://github.com/bepass-org/oblivion) - Warp Client * [Intra](https://getintra.org) - Proxies * [Privacy Guides](https://www.privacyguides.org/en/android/) - Android Privacy Guides -* [DroidFS](https://forge.chapril.org/hardcoresushi/DroidFS) - Encrypted File Managers +* [DroidFS](https://forge.chapril.org/hardcoresushi/DroidFS) - Encrypted File Manager * [LibChecker](https://github.com/LibChecker/LibChecker) - View App Third-Party Libraries * [Sapio](https://github.com/jonathanklee/Sapio) - Scan Apps for Google Dependency * [NetGuard](https://www.netguard.me/) - Block Internet Access Per App / [GitHub](https://github.com/M66B/NetGuard) * [AirGuard](https://github.com/seemoo-lab/AirGuard) - AirTag Tracking Protection * [AFWall+](https://github.com/ukanth/afwall/) (root) or [Rethink App](https://rethinkdns.com/) / [GitHub](https://github.com/celzero/rethink-app), [Karma](https://github.com/StarGW-net/karma-firewall) - Firewalls -* [v2rayNG](https://github.com/2dust/v2rayNG) or [V2Ray Proxy](https://play.google.com/store/apps/details?id=free.v2ray.proxy.VPN) - Build Privacy Network +* [v2rayNG](https://github.com/2dust/v2rayNG) - V2Ray Shadowsocks / Hyteria Proxy Client * [Open SSTP Client](https://github.com/kittoku/Open-SSTP-Client) - SSTP Client -* [SimpleLogin](https://github.com/simple-login/Simple-Login-Android) or [Anonaddy](https://gitlab.com/Stjin/anonaddy-android) - Email Forwarding -* [AndroidFaker](https://github.com/Android1500/AndroidFaker) - Device ID Spoofing / Root +* [SimpleLogin](https://github.com/simple-login/Simple-Login-Android) or [AnonAddy](https://gitlab.com/Stjin/anonaddy-android) - Email Forwarding * [TrustDevice-Android](https://github.com/trustdecision/trustdevice-android) - Create Device Identifiers * [Keyoxide](https://codeberg.org/Berker/keyoxide-flutter) - Verify Decentralized Cryptographic Identities * [Hide My Applist](https://github.com/Dr-TSNG/Hide-My-Applist) (root) - Hide Applist * [adb-clear-packages](https://gist.github.com/noseratio/e3b136401965289c4aab40fa60f3be41) - Clear Android Packages Data -* [PilferShushJammer](https://github.com/kaputnikGo/PilferShushJammer) - Microphone Jamming Techniques * [JustUseApp](https://justuseapp.com/) - App Subscription Reviews *** ## ▷ Android Internet -* ↪️ **[Android Browsers](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_android_browsers)** * ⭐ **[KeePassDX](https://www.keepassdx.com/)**, **[BitWarden](https://play.google.com/store/apps/details?id=com.x8bit.bitwarden)**, [Keyguard](https://github.com/AChep/keyguard-app), [Proton Pass](https://proton.me/pass), [AuthPass](https://authpass.app/), [KeyPass](https://github.com/yogeshpaliyal/KeyPass), [Keepass2Android](https://play.google.com/store/apps/details?id=keepass2android.keepass2android) / [GitHub](https://github.com/PhilippC/keepass2android) - Password Managers * ⭐ **[Thunderbird](https://github.com/thunderbird/thunderbird-android)**, [K-9 Mail](https://k9mail.app/), [Tuta](https://tuta.com/), [SimpleMail](https://framagit.org/dystopia-project/simple-email), [Monocles](https://f-droid.org/packages/de.monocles.mail/) or [FairCode](https://email.faircode.eu/) - Email Clients * ⭐ **[PairVPN Hotspot](https://pairvpn.com/hotspot)**, [Tetherfi](https://github.com/pyamsoft/tetherfi) or [NetShare](https://netshare.app/) - Create Wi-Fi Hotspots @@ -461,34 +454,50 @@ * [DataMonitor](https://github.com/itsdrnoob/DataMonitor) - Data Usage Monitor * [PINCredible](https://github.com/cyb3rko/pincredible) - PIN Manager * [Linkora](https://github.com/LinkoraApp/Linkora) / [Discord](https://discord.gg/ZDBXNtv8MD), [Link Manager](https://play.google.com/store/apps/details?id=com.michaelflisar.linkmanager), [Shiori](https://github.com/DesarrolloAntonio/Shiori-Android-Client) - Bookmark Managers -* [NativeAlpha](https://play.google.com/store/apps/details?id=com.cylonid.nativealpha) - Run Websites in Borderland Window +* [NativeAlpha](https://play.google.com/store/apps/details?id=com.cylonid.nativealpha) - Run Websites in Borderless Window * [EasyOpenLink](https://codeberg.org/marc.nause/easyopenlink) - Easily Open Links in Text via Share Function * [PassAndroid](https://github.com/ligi/PassAndroid) - Manage Virtual Tickets / Passes * [Blabber.im](https://blabber.im/) or [Conversations](https://f-droid.org/en/packages/eu.siacs.conversations/) - XMPP Apps * [IRCCloud](https://github.com/irccloud/android), [Goguma](https://codeberg.org/emersion/goguma) or [Revolution IRC](https://github.com/MCMrARM/revolution-irc) - IRC Clients * [NFC Tools](https://play.google.com/store/apps/details?id=com.wakdev.wdnfc) - Read / Write NFC Tags -* [Eruda](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#eruda) - Mobile Browser Console / [Userscript](https://greasyfork.org/en/scripts/400760-console-for-mobile-browsers-eruda) / [GitHub](https://github.com/liriliri/eruda) -* [Andure](https://github.com/leohku/andure) - Android Chrome Dev Tools * [GMS-Flags](https://github.com/polodarb/GMS-Flags) - Turn Google Flags On/Off / Root -* [MobiDevTools](https://addons.mozilla.org/en-US/firefox/addon/mobidevtools/) - Firefox Inspect Element * [SubX](https://play.google.com/store/apps/details?id=com.alkapps.subx) or [SubscriptionManager](https://play.google.com/store/apps/details?id=de.simolation.subscriptionmanager) - Track Subscription Services * [WiFiman](https://play.google.com/store/apps/details?id=com.ubnt.usurvey), [WiFiAnalyzer](https://vremsoftwaredevelopment.github.io/WiFiAnalyzer/) / [GitHub](https://github.com/VREMSoftwareDevelopment/WiFiAnalyzer) or [WLANScanner](https://github.com/bewue/WLANScanner) - Network Scanners * [Fing](https://www.fing.com/fing-app/) - Network Toolkit *** +## ▷ Android Browsers + +* **Note** - This section covers both normal and privacy-focused browsers. + +*** + +* ⭐ **[Firefox](https://www.mozilla.org/)** - Customizable Browser / [Focus](https://www.mozilla.org/en-US/firefox/browsers/mobile/focus/) / [Nightly](https://www.mozilla.org/en-US/firefox/channel/android/#nightly) +* ⭐ **[Cromite](https://github.com/uazo/cromite)** - Chromium-Based Browser w/ Built-in Adblock / [Filter](https://github.com/xarantolus/filtrite) / [Adblock Scripts](https://userscripts.010.one/) +* ⭐ **[Brave](https://brave.com/)** - Chromium-Based Browser w/ Built-in Adblock / Privacy-Focused +* ⭐ **[IronFox](https://gitlab.com/ironfox-oss/IronFox)** - Mull Browser Fork / Privacy-Focused / [Discord](https://discord.gg/zbdzfRVyVh) +* ⭐ **[Tor](https://tb-manual.torproject.org/mobile-tor/)** - Onion-Routed Browser / Privacy-Focused +* [Iceraven Browser](https://github.com/fork-maintainers/iceraven-browser) or [Fennec](https://f-droid.org/packages/org.mozilla.fennec_fdroid/) - Customizable Browsers Based on Firefox +* [FFUpdater](https://github.com/Tobi823/ffupdater) - Multi-Browser Updater +* [Privacy Browser](https://www.stoutner.com/privacy-browser-android/) - Customizable Browser / Privacy-Focused +* [Eruda](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#eruda) - Mobile Browser Console / [Userscript](https://greasyfork.org/en/scripts/400760-console-for-mobile-browsers-eruda) / [GitHub](https://github.com/liriliri/eruda) +* [MobiDevTools](https://addons.mozilla.org/en-US/firefox/addon/mobidevtools/) - Firefox Inspect Element + +*** + ## ▷ Android File Tools +* ↪️ **[Mobile / Desktop Tranfer](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/file-tools#wiki_.25BA_file_transfer)** +* ⭐ **[1DM](https://play.google.com/store/apps/details?id=idm.internet.download.manager)** / [Extra Features](https://rentry.co/FMHYBase64#link-1dm), [ADM](https://rentry.co/FMHYBase64#adm) or [FDM](https://play.google.com/store/apps/details?id=org.freedownloadmanager.fdm) - Download Managers * ⭐ **[MiXplorer](https://mixplorer.com/)**, [2](https://xdaforums.com/t/app-2-2-mixplorer-v6-x-released-fully-featured-file-manager.1523691/) - Advanced Root File Explorer / Manager / [Themes](https://play.google.com/store/apps/details?id=de.dertyp7214.mixplorerthemecreator) -* ⭐ **[SD Maid](https://github.com/d4rken-org/sdmaid-se)** - File Manager / Data Cleaner / [Discord](https://discord.com/invite/8Fjy6PTfXu) +* ⭐ **[SD Maid SE](https://github.com/d4rken-org/sdmaid-se)** - File Manager / Cleaner / [Discord](https://discord.com/invite/8Fjy6PTfXu) * ⭐ **[MaterialFiles](https://github.com/zhanghai/MaterialFiles)** - File Manager * ⭐ **[File-Manager](https://github.com/FossifyOrg/File-Manager)** - File Manager * ⭐ **[ZArchiver](https://play.google.com/store/apps/details?id=ru.zdevs.zarchiver)** or [ZipXtract](https://github.com/WirelessAlien/ZipXtract) - File Archivers -* ⭐ **[SyncThing Fork](https://github.com/Catfriend1/syncthing-android)** - File Sync / Sharing -* ⭐ **[LocalSend](https://localsend.org/)** - File Sharing -* ⭐ **[pairdrop](https://pairdrop.net/)** or **[Snapdrop Android](https://github.com/fm-sys/snapdrop-android)** - File Sharing -* ⭐ **[Cx File Explorer](https://play.google.com/store/apps/details?id=com.cxinventor.file.explorer)**, [Total Commander](https://www.ghisler.com/ce.htm), [FileNavigator](https://play.google.com/store/apps/details?id=com.w2sv.filenavigator) / [GitHub](https://github.com/w2sv/FileNavigator), [File Explorer Compose](https://github.com/Raival-e/File-Explorer-Compose), [Xplore](https://play.google.com/store/apps/details?id=com.lonelycatgames.Xplore) or [AmazeFileManager](https://github.com/TeamAmaze/AmazeFileManager) / [Utilities](https://github.com/TeamAmaze/AmazeFileUtilities) - File Managers / Explorers -* [1DM](https://play.google.com/store/apps/details?id=idm.internet.download.manager) / [Extra Features](https://rentry.co/FMHYBase64#link-1dm), [ADM](https://rentry.co/FMHYBase64#adm) or [FDM](https://play.google.com/store/apps/details?id=org.freedownloadmanager.fdm) - Download Managers +* ⭐ **[SyncThing Fork](https://github.com/Catfriend1/syncthing-android)** - File Sync +* ⭐ **[pairdrop](https://pairdrop.net/)** - File Sharing / [GitHub](https://github.com/fm-sys/snapdrop-android) +* ⭐ **[Cx File Explorer](https://play.google.com/store/apps/details?id=com.cxinventor.file.explorer)**, [Total Commander](https://www.ghisler.com/ce.htm), [FileNavigator](https://play.google.com/store/apps/details?id=com.w2sv.filenavigator) / [GitHub](https://github.com/w2sv/FileNavigator), [File Explorer Compose](https://github.com/Raival-e/File-Explorer-Compose) or [Xplore](https://play.google.com/store/apps/details?id=com.lonelycatgames.Xplore) - File Managers / Explorers * [Aria2App](https://github.com/devgianlu/Aria2App) - Download Manager Controller * [Round Sync](https://github.com/newhinton/Round-Sync) or [MetaCTRL](https://metactrl.com/) - Multi-Site Cloud Storage File Managers * [AdbFileManager](https://github.com/T0biasCZe/AdbFileManager) - Manage Android File via Windows @@ -511,11 +520,24 @@ ## ▷ Android Text Tools -* ↪️ **[Text Editors / Notes / To-Do](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_android_text_editors)** * ↪️ **[Android Code Editors](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/dev-tools#wiki_.25B7_android_code_editors)** -* ⭐ **[FUTO Voice](https://voiceinput.futo.org/)** - Privacy-Focused Voice Input +* ⭐ **[Obsidian](https://obsidian.md/mobile)** - Highly Customizable Note-Taking App +* ⭐ **[Easy Notes](https://github.com/Kin69/EasyNotes)** - Minimalistic Note-Taking App +* ⭐ **[Notesnook](https://github.com/streetwriters/notesnook/tree/master/apps/mobile)** - E2E Encrypted Note-Taking App +* ⭐ **[Acode](https://acode.app)** / [GitHub](https://github.com/Acode-Foundation/Acode) or **[QuickEdit](https://rentry.co/FMHYBase64#quickedit)** - Text / Code Editors +* ⭐ **[FUTO Voice](https://voiceinput.futo.org/)** or [Transcribro](https://github.com/soupslurpr/Transcribro) - Voice-Input Keyboards * ⭐ **[Look Up](https://rentry.co/FMHYBase64#look-up)**, [Livio](https://play.google.com/store/apps/dev?id=7909003501452794484) or [AARD2](https://github.com/itkach/aard2-android), [NotificationDictionary](https://github.com/tirkarthi/NotificationDictionary) or [Ciyue](https://f-droid.org/packages/org.eu.mumulhl.ciyue/) - Dictionary Apps -* ⭐ **[Eleven Reader](https://elevenreader.io/)** - Text to Speech +* [Xed-Editor](https://github.com/Xed-Editor/Xed-Editor) - Text / Code Editor +* [Markor](https://fossdroid.com/a/markor.html) - Text Editor with Markdown Support +* [OpenNote](https://github.com/YangDai2003/OpenNote-Compose), [neutriNote](https://github.com/appml/neutrinote) or [OneNote](https://play.google.com/store/apps/details?id=com.microsoft.office.onenote&hl=en-us) - Note-Taking Apps with Markdown / Math Support +* [Quillpad](https://quillpad.github.io/) / [GitHub](https://github.com/quillpad/quillpad) - Note-Taking App with Markdown Support +* [Safe Notes](https://safenotes.dev/) / [GitHub](https://github.com/keshav-space/safenotes) - AES-256 Encrypted Note-Taking App +* [Notebook](https://www.zoho.com/notebook/mobile-app.html), [NotePad](https://github.com/mshdabiola/NotePad), [Notally](https://github.com/OmGodse/Notally) or [Google Keep](https://keep.google.com/) - Multi-media Note-Taking Apps +* [ColorNote](https://www.colornote.com/) - Simple / Minimalistic Note-Taking App +* [Walling](https://walling.app/) or [Workflowy](https://play.google.com/store/apps/details?id=com.workflowy.android) - Note-Taking Apps for Projects +* [Moe Memos](https://memos.moe/) - Self-Hosted Note-Taking App +* [Writer Plus](https://play.google.com/store/apps/details?id=co.easy4u.writer) - Note-Taking App for Writers +* [Saber](https://github.com/saber-notes/saber) or [Notein](https://www.notein.ai/) - Note-Taking Apps for Handwritten Notes * [OSS Document Scanner](https://github.com/Akylas/OSS-DocumentScanner), [Adobe Scanner](https://www.adobe.com/acrobat/mobile/scanner-app.html), [vFLat Scan](https://play.google.com/store/apps/details?id=com.voyagerx.scanner) or [OpenScan](https://github.com/ethereal-developers/OpenScan) - Document Scanners * [OpenDocument](https://opendocument.app/) or [LibreOffice Viewer](https://f-droid.org/packages/org.documentfoundation.libreoffice/) - Document Readers * [Paperless](https://github.com/astubenbord/paperless-mobile) - Document Manager @@ -526,9 +548,20 @@ *** +## ▷ To-Do Apps + +* ⭐ **[Tasks](https://tasks.org/)** - Customizable To-Do App with Sync Support / [GitHub](https://github.com/tasks/tasks) +* ⭐ **[SnapTick](https://github.com/vishal2376/snaptick)** - To-Do App with Pomodoro Timer +* [Any.do](https://www.any.do/), [Orgzly-revived](https://www.orgzlyrevived.com/) / [GitHub](https://github.com/orgzly-revived/orgzly-android-revived) or [Taskito](https://taskito.io/) - To-Do Apps with Sync Support +* [doable](https://doable.at/) - To-Do App with Sync / Extensions Support +* [Alkaa](https://github.com/igorescodro/alkaa), [Chaos Control 2](https://play.google.com/store/apps/details?id=com.tarasovmobile.cc2) or [Twos](https://www.twosapp.com/) - Simple To-Do Apps +* [EverydayTasks](https://everydaytasks.jepfa.de/) - To-do App with Statistics + +*** + ## ▷ Notifications / Widgets -* ⭐ **[ntfy](https://ntfy.sh/)** / [Discord](https://discord.gg/cT7ECsZj9w), [AppRise](https://github.com/caronc/apprise) or [PingMe](https://pingme.lmno.pk/) - Custom Push Notifications +* ⭐ **[ntfy](https://ntfy.sh/)** / [Discord](https://discord.gg/cT7ECsZj9w) / [GitHub](https://github.com/binwiederhier/ntfy), [AppRise](https://github.com/caronc/apprise) or [PingMe](https://pingme.lmno.pk/) - Custom Push Notifications * [Compass QS Tile](https://github.com/WSTxda/Compass-QS-Tile) or [QuickTiles](https://gitlab.com/flxholle/quick-tiles) - Quick Setting Tiles * [KWGT Widgets](https://rentry.co/FMHYBase64#kwgt) - Custom Android Widgets * [Smartspacer](https://github.com/KieronQuinn/Smartspacer) - Custom Android "At a Glance" Widget @@ -550,19 +583,20 @@ * [Sleep Cycle](https://rentry.co/FMHYBase64#sleep-cycle) - Clock / Alarm * [Clock](https://github.com/BlackyHawky/Clock) - Clock / Alarm * [Chrono](https://github.com/vicolo-dev/chrono) - Clock / Alarm +* [Plees Tracker](https://vmiklos.hu/plees-tracker/) - Sleep Tracker *** ## ▷ Productivity Trackers -* ↪️ **[Text Editors / To-Do](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage/#wiki_android_text_editors)** +* ↪️ **[Text Editors](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/android/#wiki_.25B7_android_text_tools) / [To-Do Apps](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/android/#wiki_.25B7_to-do_apps)** * ⭐ **[Table Habit](https://github.com/FriesI23/mhabit)** - Habit Tracker * [StayFree](https://stayfreeapps.com/) - Digital Productivity Tracker / App Blocker * [Folksable](https://folksable.com/) - Social Habit Tracker * [Loop Habit Tracker](https://github.com/iSoron/uhabits) - Habit Tracker * [HabitBuilder](https://github.com/ofalvai/HabitBuilder) - Habit Tracker * [Grit](https://github.com/shub39/Grit) - Habit Tracker -* [MoreDays](https://gitlab.com/wuapps/moredays) - Habit Tracker +* [moreDays](https://gitlab.com/wuapps/moredays) - Habit Tracker * [TheFor](https://thefor.xyz/) - Habit Tracker * [Unlock Master](https://github.com/sweakpl/unlock-master) - Digital Habit Tracker * [Mindful](https://github.com/akaMrNagar/Mindful) - Digital Productivity Tracker / App Blocker @@ -579,14 +613,13 @@ ## ▷ Maps / Location * ↪️ **[Navigation / Transport Apps](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/misc/#wiki_.25B7_navigation_.2F_transport)** -* [FindMyDevice](https://gitlab.com/Nulide/findmydevice), [phonetrack](https://gitlab.com/eneiluj/phonetrack-oc) / [2](https://gitlab.com/eneiluj/phonetrack-android) or [AutoWhatsAppTriggers](https://play.google.com/store/apps/details?id=om.roitman.autowhatsapptriggers) - Track Phones Location +* [FMD Android](https://gitlab.com/fmd-foss/fmd-android), [PhoneTrack](https://github.com/julien-nc/phonetrack) / [2](https://gitlab.com/eneiluj/phonetrack-android) or [AutoWhatsAppTriggers](https://play.google.com/store/apps/details?id=om.roitman.autowhatsapptriggers) - Track Phones Location * [OwnTracks](https://owntracks.org/), [Hauk](https://github.com/bilde2910/Hauk), [Positional](https://github.com/Hamza417/Positional) / [2](https://github.com/mtrewartha/positional), [GPSCockpit](https://github.com/woheller69/gpscockpit), [GPSTest](https://play.google.com/store/apps/details?id=com.android.gpstest) or [GnssLogger](https://play.google.com/store/apps/details?id=com.google.android.apps.location.gps.gnsslogger) - Track Own Location / GPS * [Android-Mock-Location](https://github.com/warren-bank/Android-Mock-Location) or [GPS JoyStick Guide](http://gpsjoystick.theappninjas.com/faq/) (root) - Fake GPS Location * [MetaRadar](https://github.com/Semper-Viventem/MetaRadar) - Track Devices Following You * [WTMP](https://play.google.com/store/apps/details?id=com.wtmp.svdsoftware) - Detect When Phone is Touched * [LockWatch](https://bloketech.com/lockwatch) or [CrookCatcher](https://www.crookcatcher.app/) - Locate / Recover Stolen Phone * [Alpi Maps](https://github.com/Akylas/alpimaps) - Offline Maps -* [WiFi Space](https://wifispc.com/) or [WiFi Map](https://apps.apple.com/app/wifi-map-esim-internet-finder/id548925969) - Public WiFi Maps * [EV-Map](https://ev-map.app/) - Electronic Vehicle Charging Map * [LavSeeker](https://github.com/woheller69/lavatories) - Public Toilet Map * [Transportr](https://transportr.app/) - Public Transport Assistant @@ -618,12 +651,12 @@ *** * 🌐 **[Emulators on Android](https://emulation.gametechwiki.com/index.php/Emulators_on_Android)** -* ⭐ **[Termux](https://termux.com/)** - Terminal Emulator +* 🌐 **[EmuReady](https://www.emuready.com/)** - Mobile Game Emulation Compatibility / Info / [GitHub](https://github.com/Producdevity/EmuReady) +* ⭐ **[Termux](https://termux.dev/)** - Terminal Emulator / [Matrix](https://matrix.to/#/#Termux:matrix.org) / [Telegram](https://telegram.me/termux24x7) / [Subreddit](https://www.reddit.com/r/termux) / [Discord](https://discord.gg/HXpF69X) / [GitHub](https://github.com/termux/) * ⭐ **Termux Tools** - [YT-DL](https://github.com/khansaad1275/Termux-YTD) / [GUI](https://github.com/termux/termux-gui) / [Beautify](https://github.com/mayTermux/myTermux) -* ⭐ **[mobox](https://github.com/olegos2/mobox)**, [Box64Droid](https://github.com/Ilya114/Box64Droid) or [Winlator](https://winlator.org) / [Compatibility](https://docs.google.com/spreadsheets/d/1UI0dCJTdxkAD8pDUoCtqwe7hCRSD35w0N3zESTmNYBU/) / [GitHub](https://github.com/brunodev85/winlator) - Windows Emulators on Android +* ⭐ **[mobox](https://github.com/olegos2/mobox)**, [Box64Droid](https://github.com/Ilya114/Box64Droid) - Windows Emulators on Android * [Limbo](https://github.com/limboemu/limbo) or [TermOne Plus](https://termoneplus.com/) - Windows Emulator on Android / Terminal Emulators / OS Environments * [Ubuntu on Android](https://docs.udroid.org/) - Ubuntu Emulator / [GitHub](https://github.com/RandomCoderOrg/ubuntu-on-android) -* [FlashLite](https://flashlite.games/) - Flash Emulator / [Discord](https://discord.gg/F2dsGhTX6y) * [/r/EmulationOnAndroid](https://www.reddit.com/r/emulationonandroid) - Android Game Emulation Subreddit * [Dan's Palace](https://discord.gg/RqQeZwrP8k) - Android / PSVita PC Game Ports Discord / [Telegram](https://t.me/dansfiles) * [Visual Novels Android](https://t.me/visual_novels_android_eng) - Android Visual Novel Ports @@ -641,14 +674,14 @@ * 🌐 **[Android Emulators](https://emulation.gametechwiki.com/index.php/Android_emulators)** - Android Emulator Index * ↪️ **[Android on Linux](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/linux#wiki_.25B7_android_on_linux)** -* ⭐ **[WSABuilds](https://github.com/MustardChef/WSABuilds)** / Windows Subsystem / Pre-built Binaries +* ⭐ **[WSABuilds](https://github.com/MustardChef/WSABuilds)** - Windows Subsystem / Pre-built Binaries * ⭐ **[Google Play Games](https://play.google.com/googleplaygames)** - Android Mobile Games on Windows * [Docker Android](https://github.com/budtmo/docker-android) - Android on Docker * [Genymotion](https://www.genymotion.com/download/) - Cloud Emulator * [Nox](https://www.bignox.com/) - Android Emulator / [Debloat](https://gist.github.com/TameemS/72c4b92131977aced56e727d51599a48) * [BlueStacks](https://www.bluestacks.com/) - Android Emulator * [GameLoop](https://www.gameloop.com/) - Android Emulator -* [MuMu](https://www.mumuplayer.com/) or [MuMu Nebula](https://www.mumuplayer.com/mumu-nebula.html) - Android Emulator +* [MuMu](https://www.mumuplayer.com/) - Android Emulator * [MeMu](https://www.memuplay.com/) - Android Emulator / [Debloat](https://gist.github.com/TameemS/603686cec857ff1f91e68607e374b0d8) * [LDPlayer](https://www.ldplayer.net/) - Android Emulator / [Debloat](https://gist.github.com/TameemS/894cdb8adae1d6042a5f21c4e80bcd9e/) @@ -656,19 +689,19 @@ ## ▷ Linux on Android -* [postmarketOS](https://www.postmarketos.org/) - Alpine-based -* [Ubuntu Touch](https://devices.ubuntu-touch.io/) - Ubuntu-based -* [Mobian](https://mobian-project.org/) - Debian-based +* [postmarketOS](https://www.postmarketos.org/) - Alpine-Based +* [Ubuntu Touch](https://devices.ubuntu-touch.io/) - Ubuntu-Based +* [Mobian](https://mobian-project.org/) - Debian-Based *** # ► Android Torrenting -* **Note** - Remember to get a [VPN](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/adblock-vpn-privacy#wiki_.25BA_vpn) before torrenting and [bind it to your client](https://redd.it/ssy8vv) if it allows. +* **Note** - Remember to get a [VPN](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/adblock-vpn-privacy#wiki_.25BA_vpn) before torrenting and [bind it to your client](https://gist.github.com/VVispy/765c6723436f386ef113040f8fc968b8) if it allows. *** -* ⭐ **[LibreTorrent](https://gitlab.com/proninyaroslav/libretorrent)** - Torrent Client / [GitHub](https://github.com/proninyaroslav/libretorrent) +* ⭐ **[LibreTorrent](https://gitlab.com/proninyaroslav/libretorrent)** - Torrent Client / [GitHub](https://github.com/proninyaroslav/libretorrent) / [Telegram](https://t.me/LibreTorrent) * [Tixati](https://tixati.com/android) - Torrent Client / Allows Binding * [BiglyBT](https://android.biglybt.com/) - Torrent Client / Allows Binding * [tTorrent](https://ttorrent.org/) - Torrent Client @@ -685,7 +718,6 @@ # ► Android Reading * ↪️ **[Multi-Platform Readers](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/reading/#wiki_.25B7_ebook_readers)** -* ⭐ **[Mobilism](https://forum.mobilism.org/app/)** - Free Books / Sign-Up Required / [User Ranks](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#mobilism-ranks) * ⭐ **[Z-Library](https://go-to-library.sk/#android_app_tab)** - Free Books * ⭐ **[KafkaArchives](https://www.getkafka.app/)** - Archive.org Books / Audiobooks * ⭐ **[Librera](https://librera.mobi/)** - Ebook Reader @@ -693,6 +725,7 @@ * ⭐ **[Legado](https://github.com/gedoor/legado/blob/master/English.md)** - Ebook Reader * ⭐ **[Readera](https://readera.org/)** - Ebook Reader * ⭐ **[Smart Audiobook Player](https://play.google.com/store/apps/details?id=ak.alizandro.smartaudiobookplayer)** - Audiobook Player +* [ElevenReader](https://elevenreader.io/) or [ReadWise](https://readwise.io/read) (reset trial) - Book to Audiobook Converters * [Voice](https://github.com/PaulWoitaschek/Voice) - Audiobook Player * [Sirin](https://play.google.com/store/apps/details?id=com.sirin.android) - Audiobook Player * [AudioAnchor](https://github.com/flackbash/AudioAnchor) - Audiobook Player @@ -704,11 +737,11 @@ * [Readwise](https://play.google.com/store/apps/details?id=com.readwise) - Ebook Reader * [Sav PDF Viewer Pro](https://www.savpdfviewer.com) - PDF Reader / [GitHub](https://github.com/Sav22999/sav-pdf-viewer-pro) * [MJ PDF](https://github.com/mudlej/mj_pdf) - PDF Reader -* [Aurora](https://github.com/FunkyMuse/Aurora) - Free Books / LibGen * [Fable](https://fable.co/) - Join / Create Bookclubs * [Project Gutenberg](https://github.com/Pool-Of-Tears/Myne) - Free Books * [Openreads](https://github.com/mateusz-bak/openreads), [NeverTooManyBooks](https://github.com/tfonteyn/NeverTooManyBooks) or [Basmo](https://basmo.app/) - Book Managers / Trackers * [Wikipedia](https://play.google.com/store/apps/details?id=org.wikipedia) - Wikipedia App / [Beta](https://play.google.com/store/apps/details?id=org.wikipedia.beta) +* [WikWok](https://f-droid.org/es/packages/com.github.terrakok.wikwok.androidApp/) - Random Wiki Article Viewer / [Web App](https://terrakok.github.io/WikWok) / [GitHub](https://github.com/terrakok/Wikwok) * [ComicScreen](https://play.google.com/store/apps/details?id=com.viewer.comicscreen), [Bubble2](https://github.com/edeso/bubble2) or [Seeneva](https://seeneva.app/) - Comic Readers * [OpenComicVine](https://github.com/proninyaroslav/OpenComicVine) - Comic Tracker * [LNReader](https://github.com/LNReader/lnreader), [Ranobe](https://github.com/ranobe-org/ranobe) or [IReader](https://ireaderorg.netlify.app/) - Light Novels @@ -719,10 +752,10 @@ ## ▷ Android Manga -* ⭐ **[Mihon](https://mihon.app/) / [Discord](https://discord.gg/mihon)** - Manga Reader / [Extensions](https://keiyoushi.github.io/extensions/), [2](https://discord.gg/3FbCpdKbdY), [3](https://wotaku.wiki/guides/tech/repo) / [Endorsed Forks](https://mihon.app/forks/), [2](https://github.com/nekomangaorg/Neko), [3](https://github.com/komikku-app/komikku) +* ⭐ **[Mihon](https://mihon.app/) / [Discord](https://discord.gg/mihon)** - Manga Reader / [Extensions](https://keiyoushi.github.io/extensions/), [2](https://discord.gg/3FbCpdKbdY), [3](https://wotaku.wiki/guides/tech/repo) / [Endorsed Forks](https://mihon.app/forks/), [2](https://github.com/nekomangaorg/Neko), [3](https://komikku-app.github.io/) * ⭐ **[Kotatsu](https://kotatsu.app/)** - Manga Reader / [Nightly](https://github.com/KotatsuApp/Kotatsu-nightly) / [Discord](https://discord.gg/NNJ5RgVBC5) / [Telegram](https://t.me/kotatsuapp) -* ⭐ **[Dantotsu](https://dantotsuapp.netlify.app/)** - Manga Reader / [Extension Guide](https://wotaku.wiki/guides/tech/repo) / [Discord](https://discord.gg/W9KHG7zzKd) -* [Neko](https://github.com/nekomangaorg/Neko) - Manga Reader / [Discord](https://discord.gg/4vmK42QuKG) +* ⭐ **[Dantotsu](https://discord.com/invite/4HPZ5nAWwM)** - Manga Reader / [Extension Guide](https://wotaku.wiki/guides/tech/repo) / [Telegram](https://t.me/+gzBCQExtLQo1YTNh) +* [Mangayomi](https://github.com/kodjodevf/mangayomi) - Manga Reader * [Perfect Viewer](https://rentry.co/FMHYBase64#perfect-viewer) - Manga File Viewer * [Manga Tag](https://www.mangatag.com/) - Manga File Viewer * [AnimeChicken](https://animechicken.app/) - Manga File Viewer @@ -737,15 +770,16 @@ * ⭐ **[ReVanced Manager](https://revanced.app/)** / [Discord](https://discord.com/invite/rF2YcEjcrT) / [GitHub](https://github.com/ReVanced/revanced-manager), [xManager](https://www.xmanagerapp.com/) / [Discord](https://discord.com/invite/dnpKn5Wufm) or [Modded Spotify](https://rentry.co/FMHYBase64#modded-spotify-apk) - Ad-Free Spotify * ⭐ **Spotify Tools** - [Friend Activity](https://spotivity.me/) / [Mute Ads](https://play.google.com/store/apps/details?id=live.teekamsuthar.mutify), [2](https://github.com/aghontpi/ad-silence) / [Stats](https://stats.fm/) * ⭐ **[Seeker](https://github.com/jackBonadies/SeekerAndroid)** - Audio Downloader / Soulseek Frontend -* ⭐ **[Poweramp Equalizer](https://rentry.co/FMHYBase64#poweramp-equalizer)**, [RootlessJamesDSP](https://github.com/timschneeb/RootlessJamesDSP) / [Guide](https://rentry.co/rootlessjamesdsp-guide), [FlowEQ](https://play.google.com/store/apps/details?id=com.floweq.equalizer) or [Flat Equalizer](https://play.google.com/store/apps/details?id=com.jazibkhan.equalizer) - Audio Equalizers +* ⭐ **[Poweramp Equalizer](https://rentry.co/FMHYBase64#poweramp-equalizer)** / [Forum](https://forum.powerampapp.com/), **[RootlessJamesDSP](https://github.com/timschneeb/RootlessJamesDSP)** / [Guide](https://rentry.co/rootlessjamesdsp-guide), [FlowEQ](https://play.google.com/store/apps/details?id=com.floweq.equalizer) or [Flat Equalizer](https://play.google.com/store/apps/details?id=com.jazibkhan.equalizer) - Audio Equalizers * ⭐ **[AutomaTag](http://automatag.com/)** - Metadata Organizer * ⭐ **[AudioRelay](https://audiorelay.net/)** or [Audio Share](https://github.com/mkckr0/audio-share) - Stream Audio Between Devices * ⭐ **[Pano Scrobbler](https://github.com/kawaiiDango/pano-scrobbler)** - Android Scrobbler * ⭐ **[CApod](https://github.com/d4rken-org/capod)**, [OpenPods](https://github.com/adolfintel/OpenPods) or [MaterialPods](https://play.google.com/store/apps/details?id=com.pryshedko.materialpods) - AirPod Monitors / Battery Trackers * [ListenBrainz](https://github.com/metabrainz/listenbrainz-android) or [MusicSearch](https://github.com/lydavid/MusicSearch) - Music Tracking / Rating * [YouTubeDL Android](https://github.com/yausername/youtubedl-android) - Multi-Site Audio Downloader -* [ytdlnis](https://github.com/deniscerri/ytdlnis) - Multi-Site Audio Downloader +* [ytdlnis](https://ytdlnis.org/) - Multi-Site Audio Downloader / [GitHub](https://github.com/deniscerri/ytdlnis) * [Seal](https://github.com/JunkFood02/Seal) - Multi-Site Audio Downloader +* [EchoirX](https://github.com/imjyotiraditya/EchoirX) - Tidal Downloader / [Telegram](https://t.me/ThisPandaCanTalk) * [Record Player](https://record-player.glitch.me/) - Find Records on Spotify via Pictures * [Redomi](https://github.com/acszo/Redomi/) - Multi-Platform Streaming * [SoundCloud](https://play.google.com/store/apps/details?id=com.soundcloud.android) - Streaming @@ -753,7 +787,9 @@ * [Soundbound App](https://soundbound.app/) - Streaming / Download / [Telegram](https://t.me/soundboundofficial) * [AIDS](https://forum.mobilism.org/search.php?st=0&sk=t&sd=d&sr=topics&keywords=aids&sf=titleonly) - Download / MP3 * [SaturnMusic](https://github.com/SaturnMusic/) or [Refreezer](https://github.com/DJDoubleD/refreezer) - Deezer / FLAC / Requires Premium (Firehawk52) -* [Funkwhale](https://dev.funkwhale.audio/funkwhale/funkwhale-android), [Trebel](https://home.trebel.io/) or [Deezer](https://play.google.com/store/apps/details?id=deezer.android.app) - Streaming +* [Funkwhale](https://dev.funkwhale.audio/funkwhale/funkwhale-android) - Streaming +* [Trebel](https://home.trebel.io/) - Streaming +* [Deezer](https://play.google.com/store/apps/details?id=deezer.android.app) - Streaming / [Countries](https://support.deezer.com/hc/en-gb/articles/115003749449-List-Of-Countries-Deezer-Is-Available-In) * [Azusa](https://github.com/lovegaoshi/azusa-player-mobile) - Bilibili Audio Player * [Music Time Travel](https://play.google.com/store/apps/details?id=com.zh.musictimetravel) - Music Discovery * [HZP](https://hzp.co/) - Solfeggio Frequency Player @@ -782,43 +818,36 @@ ## ▷ Android Audio Players * ⭐ **[Poweramp](https://rentry.co/FMHYBase64#poweramp)** -* ⭐ **[AIMP](https://www.aimp.ru/?do=download&os=android)** * ⭐ **[Musicolet Music Player](https://krosbits.in/musicolet/)** -* ⭐ **[Symphony](https://zyrouge.github.io/symphony/)** -* [Finamp](https://github.com/jmshrv/finamp) or [Fintunes](https://www.fintunes.app/) / [GitHub](https://github.com/leinelissen/jellyfin-audio-player) - Jellyfin Audio Players -* [Ultrasonic](https://gitlab.com/ultrasonic/ultrasonic) - Subsonic Clients -* [Oto Music](https://play.google.com/store/apps/details?id=com.piyush.music) -* [Harmonoid](https://harmonoid.com/) -* [VLC for Android](https://www.videolan.org/vlc/download-android.html) -* [mpv-android](https://github.com/mpv-android/mpv-android) +* ⭐ **[VLC for Android](https://www.videolan.org/vlc/download-android.html)** +* ⭐ **[Foobar2000](https://www.foobar2000.org/apk)** +* [AIMP](https://www.aimp.ru/?do=download&os=android) * [Gramophone](https://github.com/AkaneTan/Gramophone) -* [Meloplay](https://github.com/ShokhrukhbekYuldoshev/Meloplay) -* [Foobar2000](https://www.foobar2000.org/apk) -* [Vanilla Music](https://vanilla-music.github.io/) / [GitHub](https://github.com/vanilla-music/vanilla) -* [Retro Music Player](https://retromusic.app/) / [GitHub](https://github.com/RetroMusicPlayer/RetroMusicPlayer) +* [Namida](https://github.com/namidaco/namida) +* [Oto Music](https://play.google.com/store/apps/details?id=com.piyush.music) +* [Symphony](https://zyrouge.github.io/symphony/) * [Auxio](https://github.com/OxygenCobalt/Auxio/) +* [Retro Music Player](https://retromusic.app/) / [GitHub](https://github.com/RetroMusicPlayer/RetroMusicPlayer) +* [mpv-android](https://github.com/mpv-android/mpv-android) * [Nyx Music Player](https://play.google.com/store/apps/details?id=com.awedea.nyx) -* [mucke](https://github.com/moritz-weber/mucke) -* [Lotus](https://github.com/dn0ne/lotus) / [2](https://f-droid.org/packages/com.dn0ne.lotus) * [Phonograph Plus](https://github.com/chr56/Phonograph_Plus) -* [Pulse Music](https://play.google.com/store/apps/details?id=com.hardcodecoder.pulse) -* [Zen Music Player](https://github.com/pakka-papad/Zen) +* [Lotus](https://github.com/dn0ne/lotus) / [2](https://f-droid.org/packages/com.dn0ne.lotus) * [Salt Player](https://github.com/Moriafly/SaltPlayerSource) -* [Black Candy](https://github.com/blackcandy-org/android) - Self-Hosted Streaming Server +* [Harmonoid](https://harmonoid.com/) +* [Gelli](https://github.com/dkanada/gelli), [Finamp](https://github.com/jmshrv/finamp) or [Fintunes](https://www.fintunes.app/) / [GitHub](https://github.com/leinelissen/jellyfin-audio-player) - Jellyfin Audio Players +* [Ultrasonic](https://gitlab.com/ultrasonic/ultrasonic), [SubstreamerApp](https://substreamerapp.com/) or [tempo](https://github.com/CappielloAntonio/tempo) - Subsonic Clients *** ## ▷ YouTube Music -* ⭐ **[OuterTune](https://github.com/OuterTune/OuterTune)**, [InnerTune](https://github.com/Malopieds/InnerTune) / [2](https://github.com/z-huang/InnerTune) or [Metrolist](https://github.com/mostafaalagamy/metrolist) - YouTube Music Players / OuterTune Forks +* ⭐ **[Metrolist](https://github.com/mostafaalagamy/metrolist)**, [OuterTune](https://github.com/OuterTune/OuterTune) or [InnerTune](https://github.com/Malopieds/InnerTune) / [2](https://github.com/z-huang/InnerTune) - YouTube Music Players / OuterTune Forks * [Musify](https://gokadzev.github.io/Musify/) - YouTube Music Player / [GitHub](https://github.com/gokadzev/Musify) * [Harmony Music](https://github.com/anandnet/Harmony-Music) - YouTube Music Player * [SimpMusic](https://simpmusic.org/) - YouTube Music Player / [GitHub](https://github.com/maxrave-dev/SimpMusic) -* [spmp](https://github.com/toasterofbread/spmp) - YouTube Music Player * [ViTune](https://github.com/25huizengek1/ViTune) - YouTube Music Player * [Namida](https://github.com/namidaco/namida) - YouTube Music Player * [Gyawun](https://github.com/jhelumcorp/gyawun) - YouTube Music Player -* [SongTube](https://github.com/SongTube/SongTube-App) - YouTube Music Player *** @@ -832,15 +861,12 @@ * [TuneIn](https://play.google.com/store/apps/details?id=tunein.player) - Podcast / Radio App * [PodAura](https://github.com/SkyD666/PodAura) - Podcast Player * [Snipd](https://www.snipd.com/) - Podcast Player -* [AudioAnchor](https://github.com/flackbash/AudioAnchor) - Podcast Player * [Escapepod](https://codeberg.org/y20k/escapepod) - Podcast Player * [Podbean](https://play.google.com/store/apps/details?id=com.podbean.app.podcast) - Podcast Player * [Podcini](https://github.com/XilinJia/Podcini) - Podcast Player * [Transistor](https://codeberg.org/y20k/transistor) - Radio App * [SiriusXM](https://rentry.co/FMHYBase64#siriusxm) - Radio App * [Radio Garden](https://play.google.com/store/apps/details?id=com.jonathanpuckey.radiogarden) - Radio App -* [RadioUpnp](https://play.google.com/store/apps/details?id=com.watea.radio_upnp) - Radio App -* [RadioTime](https://play.google.com/store/apps/details?id=com.radiotime.app) - Radio App * [DI.FM](https://play.google.com/store/apps/details?id=com.audioaddict.di) - Electronic Radio * [Nightwave Plaza](https://play.google.com/store/apps/details?id=one.plaza.nightwaveplaza) - Nightwave Radio * [LISTEN.moe](https://github.com/LISTEN-moe/android-app) - K-Pop Radio @@ -855,9 +881,9 @@ * [Rain Sounds](https://sleeprelaxapps.github.io/rainsounds/) - Ambient Rain * [A Soft Murmur](https://play.google.com/store/apps/details?id=com.gabemart.asoftmurmur) - Mix Ambient Sounds * [HealthyMinds](https://hminnovations.org/meditation-app) - Meditation / Sleep Sounds -* [Tide.fm](https://pics.tide.moreless.io/site/tide.apk) - Meditation / Sleep Sounds * [Serenity](https://github.com/YajanaRao/Serenity) - Meditation / Sleep Sounds * [Noice](https://trynoice.com/) - Meditation / Sleep Sounds +* [Tide.fm](https://tide-api.moreless.io/v1/redirect/download?platform=android) - Meditation / Sleep Sounds / Number Required * [myNoise](https://play.google.com/store/apps/details?id=com.mynoise.mynoise) - Background Noises & Interactive Soundscapes * [ZenTimer](https://play.google.com/store/apps/details?id=com.spotlightsix.zentimerlite2) - Insight Timer * [Lo-fi Clouds Radio](https://www.lofi-clouds.com/) - Lo-fi Radio @@ -875,13 +901,14 @@ * ⭐ **[Kodi](https://kodi.tv/)** - [/r/Addons4Kodi](https://www.reddit.com/r/Addons4Kodi/) / [Tracker](https://kinkeadtech.com/best-kodi-streaming-addons/) / [Trending](https://kodiapps.com/addons-chart) * ⭐ **[Syncler](https://syncler.net/)** - Movies / TV / [Providers](https://www.reddit.com/r/providers4syncler/) * ⭐ **[BubblesUPNP](https://play.google.com/store/apps/details?id=com.bubblesoft.android.bubbleupnp)**, [DMS](https://github.com/anacrolix/dms) or [Macast](https://xfangfang.github.io/Macast/) - Media Servers +* [CineHD](https://cinehd.xyz/) - Movies / TV * [Cinema HD](https://rentry.co/FMHYBase64#cinema-hd) - Movies / TV * [Movie HD](https://rentry.co/FMHYBase64#movie-hd) - Movies / TV / Requires AMPlayer * [VivaTV](https://rentry.co/FMHYBase64#vivatv) - Movies / TV / Requires TPlayer * [OnStream](https://rentry.co/FMHYBase64#onstream) - Movies / TV * [PopcornTime](https://popcorn-time.site) - Torrent Streaming / [GitHub](https://github.com/popcorn-official/popcorn-android) / Use [VPN](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/adblock-vpn-privacy/#wiki_.25BA_vpn) * [FilmPlus](https://rentry.co/FMHYBase64#filmplus) - Movies / TV / Requires BPlayer -* [Flixclusive](https://github.com/flixclusiveorg/Flixclusive) - Movies / TV / [Discord / Plugins](https://discord.com/invite/7yPSPveReu) +* [Flixclusive](https://github.com/flixclusiveorg/Flixclusive) - Movies / TV / [Plugins](https://discord.com/invite/7yPSPveReu) * [Vega App](https://github.com/Zenda-Cross/vega-app) - Movies / TV * [MovieBox](https://rentry.co/FMHYBase64#moviebox) - Movies / TV * [Flixoid](https://rentry.co/FMHYBase64#flixoid) - Movies / TV @@ -889,10 +916,8 @@ * [TeaTV](https://rentry.co/FMHYBase64#teatv) - Movies / TV / Requires TPlayer * [Flixeon](https://flixeon.me/) - Movies / TV * [Movies Cave](https://rentry.co/FMHYBase64#movies-cave-app) - Movies / TV -* [CineHD](https://cinehd.xyz/) - Movies / TV * [LokLok](https://loklok.com/download) - Movies / TV * [DigilogTV](https://github.com/aldrinzigmundv/digilogtv) - News TV Channels -* [EncoreTVB](https://play.google.com/store/apps/details?id=com.tvbusa.english) - Chinese Drama * [aDrama](https://adrama.app/) - Asian Drama * [Amnis](https://play.google.com/store/apps/details?id=com.amnis) - Stream Videos from Torrents * [Great Courses Plus Premium](https://forum.mobilism.org/search.php?keywords=great+courses+plus&terms=all&author=&sc=1&sf=titleonly&sr=topics&sk=t&sd=d&st=0&ch=300&t=0&submit=Search) - Courses @@ -904,17 +929,16 @@ ## ▷ Android Video Players * ⭐ **[VLC](https://www.videolan.org/vlc/download-android.html)** +* ⭐ **[mpv-android](https://github.com/mpv-android/mpv-android)** * ⭐ **[mpvKt](https://github.com/abdallahmehiz/mpvKt/)** / [Nightly Builds](https://nightly.link/abdallahmehiz/mpvKt/workflows/nightlies/main) -* ⭐ **[Just Player](https://github.com/moneytoo/Player)** * ⭐ **[SyncPlay](https://github.com/yuroyami/syncplay-mobile)** - Video Stream Sync +* [Just Player](https://github.com/moneytoo/Player) * [MX Player](https://rentry.co/FMHYBase64#mx-player) / [Codec](https://github.com/USBhost/MX_FFmpeg) -* [mpv-android](https://github.com/mpv-android/mpv-android) * [Nova Video Player](https://github.com/nova-video-player/aos-AVP) * [Fermata Media Player](https://github.com/AndreyPavlenko/Fermata) * [Next Player](https://github.com/anilbeesetti/nextplayer) * [Audiofy](https://play.google.com/store/apps/details?id=com.prime.player) * [Findroid](https://github.com/jarnedemeulemeester/findroid) or [Streamyfin](https://github.com/streamyfin/streamyfin) - JellyFin Clients -* [Bilibili Evolved](https://github.com/the1812/Bilibili-Evolved) - Bilibili Client * [ScreenStream](https://github.com/dkrivoruchko/ScreenStream) - Cast Device to Screen * [M3UAndroid](https://github.com/oxyroid/M3UAndroid) - Media Player / [Telegram](https://t.me/m3u_android) @@ -924,16 +948,13 @@ * 🌐 **[Wotaku](https://wotaku.wiki/software#anime-streaming)** - Anime Streaming Index / [Discord](https://discord.gg/vShRGx8ZBC) * 🌐 **[EverythingMoe](https://everythingmoe.com/#section-mobileapp)**, [2](https://everythingmoe.org/#section-mobileapp) - Anime App Index / [Discord](https://discord.gg/GuueaDgKdS) -* ⭐ **[Aniyomi](https://aniyomi.org/)** / [Extension Guide](https://wotaku.wiki/guides/tech/repo) -* ⭐ **[Dantotsu](https://dantotsuapp.netlify.app/)** / [Extension Guide](https://wotaku.wiki/guides/tech/repo) / [Discord](https://discord.gg/W9KHG7zzKd) +* ⭐ **[DailyAL](https://github.com/JICA98/DailyAL)**, [MALClient](https://github.com/Drutol/MALClient), [AL-chan](https://zend10.github.io/AL-chan/), [Nekome](https://github.com/Chesire/Nekome), [Moelist](https://moelist.net/), [Kitsune](https://github.com/Drumber/Kitsune), [AnymeX](https://github.com/RyanYuuki/AnymeX) or [AniTrend](https://anitrend.co/) / [GitHub](https://github.com/AniTrend/anitrend-app) - Anime Trackers +* ⭐ **[Aniyomi](https://aniyomi.org/)** or [Anikku](https://github.com/komikku-app/anikku) / [Extension Guide](https://wotaku.wiki/guides/tech/repo) / [Discord](https://discord.gg/F32UjdJZrR) +* [Dantotsu](https://discord.com/invite/4HPZ5nAWwM) / [Extension Guide](https://wotaku.wiki/guides/tech/repo) / [Telegram](https://t.me/+gzBCQExtLQo1YTNh) * [AniLab](https://anilab.to/) -* [Anikin](https://github.com/jerry08/Anikin) * [Animiru](https://github.com/Quickdesh/Animiru) * [AnimeChicken](https://animechicken.app/) -* [animity](https://github.com/kl3jvi/animity) / [Discord](https://discord.com/invite/eNuX9U57SM) -* [Miru](https://miru.watch/) / [Discord](https://discord.com/invite/Z87Nh7c4Ac), [Shiru](https://github.com/RockinChaos/Shiru) or [Migu](https://miguapp.pages.dev/) - Stream Anime Torrents -* [Meoko](https://play.google.com/store/apps/details?id=com.app.meoko) - Anime Torrent Search -* [DailyAL](https://github.com/JICA98/DailyAL), [MALClient](https://github.com/Drutol/MALClient), [AL-chan](https://zend10.github.io/AL-chan/), [Nekome](https://github.com/Chesire/Nekome), [Moelist](https://moelist.net/), [Kitsune](https://github.com/Drumber/Kitsune), [AnymeX](https://github.com/RyanYuuki/AnymeX), [AniTrend](https://anitrend.co/) / [GitHub](https://github.com/AniTrend/anitrend-app) or [AniLib](https://anilib.onrender.com/) - Anime Trackers +* [Hayase](https://miru.watch/) / [Discord](https://discord.com/invite/Z87Nh7c4Ac), [Shiru](https://github.com/RockinChaos/Shiru) or [Migu](https://miguapp.pages.dev/) - Stream Anime Torrents *** @@ -959,15 +980,14 @@ * ⭐ **[ReVanced Manager](https://revanced.app/)** - Ad-Free YouTube Patcher / [Guide](https://github.com/KobeW50/ReVanced-Documentation/blob/main/YT-ReVanced-Guide.md) / [Discord](https://discord.com/invite/rF2YcEjcrT) * ⭐ **[GrayJay](https://grayjay.app/)** - YouTube, Twitch, Rumble, etc. / [Guide](https://youtu.be/EnZrv37u66c) / [GitLab](https://gitlab.futo.org/videostreaming/grayjay) / [Plugins](https://gitlab.futo.org/videostreaming/plugins) * ⭐ **[LibreTube](https://libretube.dev/)** - Ad-Free YouTube -* ⭐ **[NewPipe](https://newpipe.net/)** - Ad-Free YouTube * ⭐ **[PipePipe](https://github.com/InfinityLoop1308/PipePipe)** - Ad-Free YouTube / SponsorBlock / ReturnYTDislikes -* ⭐ **[Seal](https://github.com/JunkFood02/Seal)**, [YouTubeDL Android](https://github.com/yausername/youtubedl-android), [ytdlnis](https://github.com/deniscerri/ytdlnis), [SnapTube](https://rentry.co/FMHYBase64#snaptube) / [Note](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#snaptube-note) or [SongTube](https://github.com/SongTube/SongTube-App) - Audio / Video Downloaders +* ⭐ **[ytdlnis](https://github.com/deniscerri/ytdlnis)**, [Seal](https://github.com/JunkFood02/Seal), [YouTubeDL Android](https://github.com/yausername/youtubedl-android), [SnapTube](https://rentry.co/FMHYBase64#snaptube) / [Note](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#snaptube-note) or [SongTube](https://github.com/SongTube/SongTube-App) - Audio / Video Downloaders +* [NewPipe](https://newpipe.net/) - Ad-Free YouTube / [GitHub](https://github.com/TeamNewPipe/NewPipe/) * [FluxTube](https://github.com/mu-fazil-vk/FluxTube) - Ad-Free YouTube * [Tubular](https://github.com/polymorphicshade/Tubular) - Ad-Free YouTube / SponsorBlock / ReturnYTDislikes * [Clipious](https://github.com/lamarios/clipious) - Android Invidious Client * [Hyperion](https://github.com/zt64/Hyperion) - YouTube Frontend * [SkyTube](https://github.com/SkyTubeTeam/SkyTube) - YouTube Player -* [LastPipeBender](https://github.com/MaintainTeam/LastPipeBender) - Merges NewPipe + Tubular Features * [NewPipe Fork](https://github.com/bravenewpipe/NewPipe/) - Fork with YT, Rumble, Bitchute, ReturnYTDislike and SponsorBlock * [FreeTube Android](https://github.com/MarmadileManteater/FreeTubeAndroid) - YouTube Player @@ -982,7 +1002,7 @@ * [Toolbox](https://github.com/Koizeay/Toolbox) - Multi-Tool App * [iOS Settings URLs](https://github.com/FifiTheBulldog/ios-settings-urls) - iOS Settings URL List * [FreshWalls](https://apps.apple.com/app/id1627085956) or [iOS Wallpapers](https://goo.gl/photos/ZVpabTtcezd35XBa9/) - iPhone Wallpapers -* [ChatGPT](https://apps.apple.com/app/id6448311069), [DeepSeek](https://download.deepseek.com/app/), [Mollama](https://apps.apple.com/app/mollama/id6736948278), [ChatBox](https://github.com/Bin-Huang/chatbox), [FullMoon](https://fullmoon.app/) or [PocketPal AI](https://github.com/a-ghorbani/pocketpal-ai) - AI Chatbots +* [ChatGPT](https://apps.apple.com/app/id6448311069), [DeepSeek](https://apps.apple.com/us/app/deepseek-ai-assistant/id6737597349), [Mollama](https://apps.apple.com/app/mollama/id6736948278), [ChatBox](https://github.com/Bin-Huang/chatbox), [FullMoon](https://fullmoon.app/) or [PocketPal AI](https://github.com/a-ghorbani/pocketpal-ai) - AI Chatbots * [Santander](https://github.com/NSAntoine/Santander) or [Documents](https://apps.apple.com/app/documents-file-manager-docs/id364901807) - File Managers * [ZArchiver](https://apps.apple.com/app/id6504976055) or [Keka](https://testflight.apple.com/join/gPYINGCJ) - File Archiver * [Blip](https://apps.apple.com/in/app/blip-send-files-in-a-click/id6463305181) - File Transfer @@ -997,6 +1017,7 @@ * [Local Time Generator](https://www.icloud.com/shortcuts/6bd103c2be0148c1b9c30abb7a72bc94) - Generate Discord Timestamps / Shortcut * [UTM](https://getutm.app/) - Virtual Machines * [Lock Launcher](https://www.locklauncher.com/) - Lock Screen App Launcher +* [SwiftKey](https://www.microsoft.com/en-us/swiftkey) - Keyboard * [CoconutBattery](https://www.coconut-flavour.com/coconutbattery/) - Battery Tracker * [Scriptable](https://scriptable.app/) - Automation Script Tool / [Scripts / Widgets](https://github.com/dersvenhesse/awesome-scriptable), [2](https://shareable.vercel.app/) * [PureKFD](https://github.com/Lrdsnow/PureKFD) / [Discord](https://discord.gg/cCSwxqdvzx) or [Misaka](https://github.com/straight-tamago/misaka) / [Discord](https://discord.gg/mVrPxY3X6W) - iOS Customization Apps @@ -1006,6 +1027,7 @@ * [Color Widgets](https://apps.apple.com/app/id1531594277) or [WidgetSmith](https://apps.apple.com/app/id1523682319) - iOS Widgets * [YT-DLP](https://mcgaritydotme.notion.site/Using-yt-dlp-to-download-YouTube-content-on-an-iPad-16d0f4bcaf524d41a92a0d714d4bd100) or [YouDown](https://apps.apple.com/app/id1487658334) - YouTube Downloaders * [Keynote](https://apps.apple.com/app/id361285480) - Make Presentations +* [WiFi Map](https://apps.apple.com/app/wifi-map-esim-internet-finder/id548925969) - Public WiFi Maps * [Quill News Digest](https://quillnewsdigest.com/) - News Aggregation App * [ZCombinator](https://github.com/Livinglist/ZCombinator), [HACK](https://apps.apple.com/app/id1464477788), [Octal](https://apps.apple.com/app/id1308885491), [Hackers](https://apps.apple.com/app/id603503901) or [Hacki](https://apps.apple.com/app/id1602043763) - Tech News / HN Apps * [Fiery Feeds](https://apps.apple.com/app/id1158763303), [Feeeed](https://apps.apple.com/app/id1600187490), [Reeder](https://reederapp.com/) or [NetNewsWire](https://apps.apple.com/app/id1480640210) - RSS Reader @@ -1033,6 +1055,7 @@ * [PictureThis](https://apps.apple.com/app/id1252497129) - Plant Identifier * [Parcel](https://apps.apple.com/app/id375589283) or [Aftership](https://apps.apple.com/app/id507014023) - Delivery Tracker * [KeyPad](https://apps.apple.com/app/id1491684442) - Connect Mac Keyboard to Mobile Devices +* [Stikdebug](https://apps.apple.com/us/app/stikdebug/id6744045754) - Enables JIT / Need for Emulators *** @@ -1057,7 +1080,7 @@ * [unc0ver](https://github.com/pwn20wndstuff/Undecimus) - 11.0-14.8 Semi-Untethered Jailbreak / [Guide](https://ios.cfw.guide/installing-unc0ver/) * [Socket](https://socket-jb.app/) - 10.0.1-10.3.4 Semi-Tethered Jailbreak (32-bit Only) / [Guide](https://ios.cfw.guide/installing-socket/) * [Totally Not Spyware](https://totally-not.spyware.lol/) - 10.0-10.3.3 Semi-Untethered Jailbreak (64-bit Only) / [Guide](https://ios.cfw.guide/using-tns/) -* [Meridian](https://meridian.sparkes.zone/) - 10.0-10.3.3 Semi-Untethered Jailbreak (A7-A10(X)) / [Guide](https://ios.cfw.guide/installing-meridian-ipa/) / [GitHub](https://github.com/PsychoTea/MeridianJB/) +* [Meridian](https://github.com/PsychoTea/MeridianJB/) - 10.0-10.3.3 Semi-Untethered Jailbreak (A7-A10(X)) / [Guide](https://ios.cfw.guide/installing-meridian-ipa/) * [sockH3lix](https://github.com/SongXiaoXi/sockH3lix) - 10.0-10.3.3 Semi-Untethered Jailbreak (64-bit Only) / [Guide](https://ios.cfw.guide/installing-sockh3lix/) * [doubleH3lix](https://doubleh3lix.tihmstar.net/) - 10.0-10.3.3 Semi-Untethered Jailbreak (A7-A9(X)) / [Guide](https://ios.cfw.guide/installing-doubleh3lix-ipa/) / [GitHub](https://github.com/tihmstar/doubleH3lix) * [kok3shi9](https://dora2ios.web.app/kokeshiJB.html) - 9.2-9.3.6 Semi-Tethered Jailbreak / [Guide](https://ios.cfw.guide/installing-kok3shi9/) @@ -1077,7 +1100,7 @@ * [greenpois0n](https://web.archive.org/web/20131024115207/http://greenpois0n.com/downloads/) - 4.1-4.2.6 Untethered Jailbreak / [Guide](https://ios.cfw.guide/installing-greenpois0n/) * [Gala](https://github.com/codyd51/gala) - iOS 4 Interactive Jailbreak * [limera1n](https://github.com/DrWhax/limera1n-mirror) - 3.2.2-4.1 Untethered Jailbreak (A4 & 3GS & iPod Touch 3rd Gen & iPad 1st Generation) / [Guide](https://ios.cfw.guide/installing-limera1n/) -* [ipwndfu](https://github.com/axi0mX/ipwndfu) - Jailbreak iPhone 3GS +* [ipwndfu](https://github.com/axi0mX/ipwndfu) - Jailbreak iPhone 3GS / Pwned DFU * [SuccessionRestore](https://github.com/Samgisaninja/SuccessionRestore) - Restore jailbroken iOS without a computer (without updating) * [odysseyn1x](https://github.com/raspberryenvoie/odysseyn1x) - Checkra1n & Odysseyra1n Installation Distro / [Guide](https://ios.cfw.guide/using-odysseyn1x/) * [BlobSaver](https://github.com/airsquared/blobsaver) - GUI for Saving SHSH Blobs @@ -1097,16 +1120,17 @@ * ⭐ **[Sideloading Guide](https://ios.cfw.guide/sideloading-apps/)**, [Avieshek's Guide](https://avieshek.wordpress.com/2024/06/11/how-to-sideload-on-ios/) or [JcionX Guide](https://jcionx.github.io/ios-sideloading/) - Sideloading Guides * ⭐ **[TrollStore](https://github.com/opa334/TrollStore)** or [TrollApps](https://github.com/TheResonanceTeam/TrollApps/) / [Discord](https://discord.gg/PrF6XqpGgX) - Non-Appstore Apps / No-Jailbreak / 14.0-17.0 / [Decrypt](https://github.com/donato-fiore/TrollDecrypt) / [Installer](https://github.com/alfiecg24/TrollInstallerX/) / [Web App](https://theresonanceteam.github.io/trollapps-web/) -* ⭐ **[SideStore](https://sidestore.io/)** - Non-Jailbreak Sideloading App (iOS 14.0 & Above) / [App Limit Bypass](https://rentry.co/FMHYBase64#sparsebox) / [Guide](https://redd.it/1g0n1z4) +* ⭐ **[SideStore](https://sidestore.io/)** - Non-Jailbreak Sideloading App (iOS 14.0 & Above) / [Limit Bypass Note](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#limit-bypass-note) / [Guide](https://docs.sidestore.io/docs/advanced/sparserestore) * ⭐ **[Sideloadly](https://sideloadly.io/)** - Non-Jailbreak Sideloading (iOS 7.0 & Above) * ⭐ **[Feather](https://github.com/khcrysalis/Feather)** - Sideloading App (iOS 15.0 & Above) / Requires Apple Dev Certificate * [AltStore Classic](https://altstore.io/) - Non-Jailbreak Sideloading App (iOS 14.0 & Above) / [Repo Viewer](https://therealfoxster.github.io/altsource-viewer/), [2](https://altsource.by.lao.sb/browse/) / [AltServer](https://github.com/NyaMisty/AltServer-Linux) / [Guide](https://faq.altstore.io/altstore-classic/how-to-install-altstore-windows) +* [Ksign](https://github.com/Nyasami/Ksign-public) - Non-Jailbreak Sideloading +* [Sparsebox](https://github.com/khanhduytran0/SparseBox) or [LiveContainer](https://github.com/khanhduytran0/LiveContainer) - Run Apps Without Installing / Bypass Sidestore limits * [IPA iBot](https://t.me/ipa_ibot) - Apple Dev Certificate Manager Bot +* [BlacklistBeGone](https://github.com/jailbreakdotparty/BlacklistBeGone) - Lift Revoked Certificate Blacklist / iOS 17.0 -> iOS 18.0.1 * [SignTools](https://github.com/SignTools/SignTools) - Self-Hosted App Signer -* [LiveContainer](https://github.com/khanhduytran0/LiveContainer) - Run Apps Without Installing * [Cyan](https://github.com/asdfzxcvbn/pyzule-rw) - Modify IPAs / Inject Tweaks * [ATVLoadly](https://github.com/bitxeno/atvloadly) - Apple TV Sideloading -* [TestFlight](https://testflight.apple.com/) - Test Beta Apps * [/r/sideloaded](https://reddit.com/r/sideloaded) - Sideloading Subreddit *** @@ -1128,16 +1152,11 @@ ## ▷ iOS Privacy +* ↪️ **[Encrypted Messengers](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/adblock-vpn-privacy#wiki_.25B7_encrypted_messengers)** * ↪️ **[iOS 2FA](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/adblock-vpn-privacy#wiki_.25B7_password_privacy_.2F_2fa)** * ⭐ **[Onion Browser](https://onionbrowser.com/)** - Onion Browser -* ⭐ **[Signal](https://signal.org/)** - Encrypted Messaging / [GitHub](https://github.com/signalapp/Signal-iOS) -* ⭐ **[SimpleX](https://apps.apple.com/app/id1605771084)** - Encrypted Messaging / [GitHub](https://github.com/simplex-chat/simplex-chat) -* [Session](https://getsession.org/) - Encrypted Messaging -* [Olvid](https://olvid.io/en/) - Encrypted Messaging +* [Brave](https://apps.apple.com/app/id1052879175) or [Firefox Focus](https://apps.apple.com/app/id1055677337) - Privacy-Focused Browsers * [DNSecure](https://github.com/kkebo/DNSecure) - Encrypted DNS -* [Brave](https://apps.apple.com/app/id1052879175) or [Firefox Focus](https://apps.apple.com/app/id1055677337) - Privacy-Based Browsers -* [Element](https://apps.apple.com/app/id1083446067) or [FluffyChat](https://apps.apple.com/app/id1551469600) - Matrix Clients -* [Jami](https://jami.net/) or [MySudo](https://anonyome.com/individuals/mysudo/) - Encrypted Messaging / Video Calls * [Proton Mail](https://apps.apple.com/app/id979659905) or [Tuta](https://apps.apple.com/app/id922429609) - Encrypted Emailing Service * [Streisand](https://apps.apple.com/us/app/streisand/id6450534064) - Proxy App @@ -1145,7 +1164,7 @@ # ► iOS iPAs -* 🌐 **[CyPwn](https://ipa.cypwn.xyz/)** - Tweaked App Library / [AltStore](https://ipa.cypwn.xyz/cypwn.json) / [Discord](https://discord.gg/cypwn) +* 🌐 **[CyPwn](https://ipa.cypwn.xyz/)** - Tweaked App Library / [AltStore](https://ipa.cypwn.xyz/cypwn.json) / [Discord](https://discord.com/invite/UvHZz3HfN9) / [Telegram](https://telegram.me/cypwngroup) * 🌐 **[Open-Source iOS Apps](https://github.com/dkhamsing/open-source-ios-apps)** - Open-Source Apps * 🌐 **[Awesome TestFlight](https://github.com/pluwen/awesome-testflight-link)**, [TestFlightLinks](https://t.me/testflightlinks) or [TestFlight Spreadsheet](https://docs.google.com/spreadsheets/d/1Uej3AQPxRcLRXnmthUXR-7oGkNV_GsMFgCoNnuPtSwI/) - TestFlight App Indexes * 🌐 **[iOS Console Emulators](https://www.reddit.com/r/EmulationOniOS/wiki/emulators)** - Gaming Emulator Index @@ -1156,30 +1175,30 @@ * [iOSVizor](https://iosvizor.com/) - Tweaked Apps / [Telegram](https://t.me/iosvizor) * [DriftyWinds](https://raw.githubusercontent.com/driftywinds/driftywinds.github.io/master/AltStore/apps.json) - AltStore App Source * [fnd](https://fnd.io/) - App Store Search -* [Mobilism iOS Apps](https://forum.mobilism.org/viewforum.php?f=312) - App Library / Sign-Up Required / [User Ranks](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#mobilism-ranks) * [TrollStore-IPAs](https://github.com/Neoncat-OG/TrollStore-IPAs) - Tweaked Apps * [PlatinMods](https://platinmods.com/) - Tweaked Apps / Sign-Up Required * [AppTesters](https://repository.apptesters.org/) - Tweaked Apps / [Telegram](https://t.me/AppleTesters) +* [iOSDecrypted](https://t.me/iosdecrypted) - Modded Social Media Apps * [IPA Archive](https://stuffed18.github.io/ipa-archive-updated) - Search Engine * [iOSObscura](https://archive.org/details/iOSObscura) - Old App Archive / [Search Engine](https://iphoneosobscura.litten.ca/) * [AppleCensorship](https://applecensorship.com/) - Censored App Store Apps * [IPATool](https://github.com/majd/ipatool) - Search / Download App Packages * [Decrypted App Store](https://armconverter.com/decryptedappstore), [AnyIPA](https://anyipa.me/) / [Telegram](https://t.me/AnyIPAme) / [Discord](https://discord.gg/c233DYUzsw) or [decrypt.day](https://decrypt.day/) - Decrypted iOS Apps * [AppSnake](https://appsnake.cypwn.xyz/) - Check if Unlockers Work on App -* [Calvink19](https://calvink19.uk/patches) - App Patches for iOS Legacy Devices +* [Calvink19](https://calvink19.co/patch) - App Patches for iOS Legacy Devices *** ## ▷ Telegram Channels -* ⭐ **[ethMods](https://t.me/ethMods)** - Tweaked Apps -* ⭐ **[Blatant's IPA Library](https://blatants.fyi/)** - Tweaked Apps / [Request](https://t.me/KrackRequestBot) / [Chatroom](https://t.me/blatantbruh) / [Telegram](https://t.me/blatants) +* ⭐ **[ethMods](https://t.me/ethMods)** - Tweaked Apps / [Requests](https://t.me/AppRequest_ethbot) / [Chat](https://t.me/ethModsChat) +* ⭐ **[Blatant's IPA Library](https://blatants.fyi/)** - Tweaked Apps / [Chatroom](https://t.me/blatantbruh) / [Telegram](https://t.me/blatants) * ⭐ **[Eevee IPA Decrypter](https://t.me/eeveedecrypterbot)** - Decrypted iOS Apps * [binnichtaktivsipas](https://t.me/binnichtaktivsipas) - Tweaked Apps * [IPA Dark](https://t.me/ipa_dark) - Games * [iOSAppsFree](https://t.me/iOSAppsFree) - Tweaked Apps -* [MelonsIPAs](https://t.me/melonsipas/114) - Tweaked Apps -* [GLESign](https://t.me/glesign) - Tweaked Apps +* [MelonsIPAs](https://t.me/melonipas) - Tweaked Apps +* [GLESign](https://t.me/glesign) - Tweaked Apps / Games & Game Ports * [TDMBest](https://t.me/tdmbest_ipas) - Game Ports *** @@ -1187,9 +1206,9 @@ ## ▷ Social Media Apps * ⭐ **[Acorn](https://acorn.blue/)** / [Discord](https://discord.gg/sWzw5GU5RV), [Reddit Deluxe](https://t.me/ethMods), [RedditFilter](https://github.com/level3tjg/RedditFilter) / [Note](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#redditfilter-note), [Winston](https://winston.cafe/), [Apollo](https://github.com/Balackburn/Apollo) / [Tweak](https://github.com/JeffreyCA/Apollo-ImprovedCustomApi), [Lurker](https://apps.apple.com/app/lurkur-for-reddit/id6470203216) or [RDX](https://apps.apple.com/app/rdx-for-reddit/id6503479190) - Reddit Clients -* ⭐ **[Arctic](https://getarctic.app/)**, [Voyager](https://apps.apple.com/app/id6451429762) / [GitHub](https://github.com/aeharding/voyager), [Mlem](https://apps.apple.com/app/id6450543782) / [GitHub](https://github.com/mlemgroup/mlem) or [Thunder](https://thunderapp.dev/) / [GitHub](https://github.com/thunder-app/thunder) - Lemmy Clients +* ⭐ **[Voyager](https://apps.apple.com/app/id6451429762)** / [GitHub](https://github.com/aeharding/voyager), [Arctic](https://getarctic.app/), [Mlem](https://apps.apple.com/app/id6450543782) / [GitHub](https://github.com/mlemgroup/mlem) or [Thunder](https://thunderapp.dev/) / [GitHub](https://github.com/thunder-app/thunder) - Lemmy Clients * ⭐ **[Ice Cubes](https://apps.apple.com/us/app/ice-cubes-for-mastodon/id6444915884)**, [Gazzetta](https://apps.apple.com/app/id6738706671) or [Mastodon](https://apps.apple.com/app/id1571998974) - Mastodon Clients -* ⭐ **[BHTwitter](https://github.com/BandarHL/BHTwitter)** or [Twitter Branding](https://github.com/ghl3m0n/FuckElon) - X.com Apps +* ⭐ **[BHTwitter](https://github.com/BandarHL/BHTwitter)** - X.com Apps * ⭐ **[OpenInYT](https://apps.apple.com/app/id1591585819)** - Adds "Open In" Popup to iOS Social Media Apps * [Openvibe](https://openvibe.social/) - Combine Social Media Apps * [Sink It](https://apps.apple.com/us/app/sink-it-for-reddit/id6449873635) - Reddit Enhancement Extension @@ -1198,9 +1217,9 @@ * [Chatsen](https://chatsen.app/) - Cross-Platform Twitch Chat / [GitHub](https://github.com/chatsen/chatsen) / [Discord](https://discord.com/invite/5G8hpgHkXB) * [Graysky](https://graysky.app/), [Skeets](https://www.skeetsapp.com/) or [Bluesky Social](https://apps.apple.com/app/bluesky-social/id6444370199) - Bluesky Clients * [Chan](https://github.com/moffatman/chan) - 4chan App -* [ethMods](https://t.me/ethMods), [SCInsta](https://github.com/SoCuul/SCInsta) or [BHInstagram](https://github.com/BandarHL/BHInstagram) - Instagram Tweaks / [Extension](https://github.com/BillyCurtis/OpenInstagramSafariExtension) +* [IGBeta IPA](https://t.me/igbeta_ipa), [SCInsta](https://github.com/SoCuul/SCInsta) or [BHInstagram](https://github.com/BandarHL/BHInstagram) - Instagram Tweaks * [Swiftgram](https://swiftgram.app/) / [GitHub](https://github.com/Swiftgram/Telegram-iOS) - Telegram Apps -* [Watusi](https://watusi.fouadraheb.com/), [2](https://t.me/wabeta_ipa) - WhatsApp Patchers / [GitHub](https://github.com/FouadRaheb/Watusi-for-WhatsApp) +* [Wabeta IPA](https://t.me/wabeta_ipa) or [Watusi](https://watusi.fouadraheb.com/) - WhatsApp Patchers / [GitHub](https://github.com/FouadRaheb/Watusi-for-WhatsApp) * [Whatsapp Backup Reader](https://whatsappbr.netlify.app/) - Read Exported Whatsapp Chats * [FakeWhats](https://www.fakewhats.com/) or [FakeInfo](https://fakeinfo.net/fake-whatsapp-chat-generator) - Fake WhatsApp Messages @@ -1243,21 +1262,21 @@ * ⭐ **[Medito](https://meditofoundation.org/medito-app)** - Meditation / Sleep Sounds * [Waking Up](https://app.wakingup.com/scholarship) - Sam Harris' Mindfulness Platform -* [A Soft Murmur](https://apps.apple.com/app/id1175522255) - Mix Ambient Sounds * [Tide.fm](https://apps.apple.com/app/id1077776989) - Meditation / Sleep Sounds -* [Insight Timer](https://apps.apple.com/app/id337472899) - Meditaton / Sleep Sounds +* [Insight Timer](https://apps.apple.com/app/id337472899) - Meditation / Sleep Sounds *** # ► iOS Streaming * ⭐ **[Stremio](https://testflight.apple.com/join/fuNfXs3E)** or [Web Stremio](https://web.stremio.com/) - Movies / TV / Anime / [Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/video/#wiki_.25B7_stremio_tools) +* ⭐ **[Sulfur](https://apps.apple.com/app/sulfur/id6742741043)** - Movies / TV / Anime / Extension-Based / [Modules](https://sora.jm26.net/library/) / [TestFlight](https://testflight.apple.com/join/uJPzdTTj) / [Discord](https://discord.gg/XR3SrmUbpd) * ⭐ **[Kodi](https://kodi.tv/)** - Movies / TV / Anime / [/r/Addons4Kodi](https://www.reddit.com/r/Addons4Kodi/) / [Tracker](https://kinkeadtech.com/best-kodi-streaming-addons/) / [Trending](https://kodiapps.com/addons-chart) * ⭐ **[SyncPlay](https://github.com/yuroyami/syncplay-mobile)** - Video Stream Sync * [OutPlayer](https://outplayer.app/), [VLC](https://apps.apple.com/app/id650377962), [Pojobox](https://apps.apple.com/app/id1454098557) or [Infuse](https://github.com/dayanch96/InfusePlus) / [2](https://apps.apple.com/app/id1136220934) - Video Players -* [Streamer](https://github.com/StreamerApp/Streamer) - Movies / TV * [Streamyfin](https://github.com/streamyfin/streamyfin) or [Swiftfin](https://apps.apple.com/app/id1604098728) - Jellyfin Client * [Tubi](https://apps.apple.com/app/id886445756) - Movies / TV +* [Pluto](https://apps.apple.com/app/id751712884) - Movies / TV * [Channels Pro](https://apps.apple.com/us/app/channels-pro-iptv-player/id1491605049) - Live Sports / Insert "veve.pro" * [Found TV](https://apps.foundtv.com/) - Found Footage Movies / Sign-Up Required * [Viki](https://apps.apple.com/app/id445553058) - Asian Drama @@ -1268,7 +1287,6 @@ ## ▷ iOS Anime -* ⭐ **[Sulfur](https://apps.apple.com/app/sulfur/id6742741043)** - Extension-Based / [Modules](https://sora.jm26.net/library/) / [TestFlight](https://testflight.apple.com/join/qMUCpNaS) / [Discord](https://discord.gg/XR3SrmUbpd) / [GitHub](https://github.com/cranci1/Sora/) * [Ketsu](https://ketsu.app/download.html) / [Discord](https://discord.gg/gjcy6MQ) * [MyAnimeList Client](https://apps.apple.com/app/id1469330778) or [Kitsune](https://apps.apple.com/app/id6466716447) - MyAnimeList Clients * [Otraku](https://github.com/lotusprey/otraku), [MyAnilist](https://apps.apple.com/us/app/myanilist/id741257899), [Ryuusei](https://ryuusei.moe/), [AniHyou](https://apps.apple.com/app/id1635777325) or [AniHyou](https://axiel7.github.io/anihyou) / [GitHub](https://github.com/axiel7/AniHyou-android) - AniList Apps @@ -1281,9 +1299,7 @@ * ⭐ **[ethMods](https://t.me/ethMods)** - Modded YouTube iPAs * ⭐ **[Yattee](https://github.com/yattee/yattee)** - YouTube Player * [Dan's Workshop](https://dvntm0.github.io/) - Modded YouTube IPAs / [Discord](https://discord.gg/VN9ZSeMhEW) / [Telegram](https://t.me/dvntms) -* [uYouEnhanced](https://github.com/arichornlover/uYouEnhanced) - Modded YouTube iPAs * [YTLitePlus](https://ytliteplus.github.io/) - YTLite + Tweaks / Official iPAs are Outdated / [GitHub](https://github.com/YTLitePlus/YTLitePlus) -* [YT Safari Extensions](https://t.me/SultanModsiOS) - Clean Player Extensions (Try Vinegar or Baking Soda) * [OpenYouTubeSafariExtension](https://github.com/BillyCurtis/OpenYouTubeSafariExtension) - Add "Open In" Alert to Sideloaded YouTube Apps *** @@ -1292,14 +1308,14 @@ * ↪️ **[Multi-Platform Readers](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/reading/#wiki_.25B7_ebook_readers)** - Ebook Reader Index * ⭐ **[Paperback](https://paperback.moe/)** - Manga Reader / [Extensions](https://discord.gg/rmf6jQpMU9) / [Discord](https://discord.paperback.moe/) -* ⭐ **[Aidoku](https://aidoku.app/)** - Manga Reader / [Extensions](https://discord.gg/9U8cC5Zk3s) / [GitHub](https://github.com/Aidoku/Aidoku) +* ⭐ **[Aidoku](https://aidoku.app/)** - Manga Reader / [Extensions](https://discord.com/invite/9U8cC5Zk3s) / [GitHub](https://github.com/Aidoku/Aidoku) * ⭐ **[Readera](https://readera.org/)** - Ebook Reader * [Suwatte](https://www.suwatte.app/) - Comic Reader / [Converter](https://seyden.github.io/SuwatteConverter/suwatte) / [Discord](https://discord.gg/8wmkXsT6h5) / [GitHub](https://github.com/suwatte) * [Prologue](https://prologue.audio/) - Audiobooks for Plex * [JellyBook](https://github.com/JellyBookOrg/JellyBook) - Ebook Reader * [Eboox](https://apps.apple.com/app/eboox-fb2-epub-book-reader/id1489172068) - Ebook Reader -* [Cantook](https://apps.apple.com/app/cantook-by-aldiko/id1476410111) - Ebook Reader * [Readwise](https://apps.apple.com/app/readwise/id1476885528) - Ebook Reader +* [Cantook](https://apps.apple.com/app/cantook-by-aldiko/id1476410111) - Ebook Reader * [FBReader](https://apps.apple.com/app/fbreader-epub-and-fb2-reader/id1067172178) - Ebook Reader * [SideBooks](https://apps.apple.com/app/id409777225) - PDF Reader * [BookPlayer](https://github.com/TortugaPower/BookPlayer) - Audiobook Player / [Discord](https://discord.gg/MjCUXgU) diff --git a/docs/audiopiracyguide.md b/docs/audiopiracyguide.md index 84ac50a5f..560a56f27 100644 --- a/docs/audiopiracyguide.md +++ b/docs/audiopiracyguide.md @@ -8,15 +8,14 @@ ## ▷ Streaming Apps +* 🌐 **[Music Megathread](https://github.com/MoonWalker440/Music-Megathread/)** - Streaming App Index * 🌐 **[/music streaming/](https://rentry.co/musicstreaming)** or [Wiki Comparisons](https://en.wikipedia.org/wiki/Comparison_of_music_streaming_services) - Streaming Service Comparisons * ↪️ **[Spotify Clients](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/audio/#wiki_.25BA_spotify_clients)** * ↪️ **[YouTube Music Mobile](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/android/#wiki_.25B7_youtube_music)** * ⭐ **[Custom YouTube Music](https://th-ch.github.io/youtube-music/)** - YouTube Music Client / [Themes](https://github.com/kerichdev/themes-for-ytmdesktop-player/) -* ⭐ **[SpoTube](https://spotube.krtirtho.dev/)** - Spotify Client / [GitHub](https://github.com/KRTirtho/spotube) * [Deezer](https://www.deezer.com/) - Streaming / [HiFi Features](https://rentry.co/FMHYBase64#dzunlock) * [Moosync](https://moosync.app/) - YouTube / Spotify / Last.fm / [Discord](https://discord.gg/HsbqbRune3) / [GitHub](https://github.com/Moosync/Moosync) * [yewtube](https://github.com/mps-youtube/yewtube) - YouTube Music Client -* [spmp](https://github.com/toasterofbread/spmp) - YouTube Music Client * [BetterSoundcloud](https://alirezakj.com/bsc/) - Soundcloud Client / Ad-Free / [GitHub](https://github.com/AlirezaKJ/BetterSoundCloud) * [nuclear](https://nuclearplayer.com/) - Streaming / [GitHub](https://github.com/nukeop/nuclear) / [Discord](https://discord.com/invite/JqPjKxE) * [FunkWhale](https://funkwhale.audio/) - Streaming @@ -24,20 +23,18 @@ * [MP3Jam](https://www.mp3jam.org/) - Streaming * [Muffon](https://muffon.netlify.app/) - Streaming * [MusicBucket](https://musicbucket.net/) - Track / Share Music / Telegram -* [Mixtape Garden](https://mixtapegarden.com/) - Create / Share Mixtapes -* [Beatsync](https://www.beatsync.gg/) / [GitHub](https://github.com/freeman-jiang/beatsync), [pulse](https://473999.net/pulse), [JukeboxStar](https://jukeboxstar.com/) or [JukeboxToday](https://jukebox.today/) - Listen Together / Listening Parties +* [Beatsync](https://www.beatsync.gg/) / [GitHub](https://github.com/freeman-jiang/beatsync) or [pulse](https://473999.net/pulse) - Listen Together / Listening Parties *** ## ▷ Streaming Sites -* ⭐ **[YouTube Music](https://music.youtube.com/)**, [Hyperpipe](https://hyperpipe.surge.sh), [Nonoki](https://nonoki.com/music/), [ytify](https://ytify.netlify.app/) or [Spotify One](https://spotfy.one/) - YouTube Music WebUIs +* ⭐ **[YouTube Music](https://music.youtube.com/)**, [Hyperpipe](https://hyperpipe.surge.sh), [Nonoki](https://nonoki.com/music/), [ytify](https://ytify.netlify.app/) or [spotfy.one](https://spotfy.one/) - YouTube Music WebUIs * ⭐ **YouTube Music Tools** - [Enhancements](https://themesong.app/), [2](https://github.com/Sv443/BetterYTM) / [Library Delete](https://github.com/apastel/ytmusic-deleter) / [Upload Delete](https://rentry.co/tv4uo) / [Spotify Playlist Import](https://github.com/sigma67/spotify_to_ytmusic), [2](https://github.com/linsomniac/spotify_to_ytmusic), [3](https://www.tunemymusic.com/) / [Better Lyrics](https://better-lyrics.boidu.dev/) / [Discord](https://discord.gg/UsHE3d5fWF) / [GitHub](https://github.com/boidushya/better-lyrics) +* ⭐ **[DAB Music Player](https://dab.yeet.su/)** - Browser Music / Uses Qobuz / Lossless * ⭐ **[Reddit Music Player](https://reddit.musicplayer.io/)** - Subreddit Music Player * ⭐ **[SoundCloud](https://soundcloud.com/)** - User Made Songs * [Spotify Web Client](https://open.spotify.com/) - Browser Music -* [DAB Music Player](https://dab.yeet.su/) - Browser Music / Uses Qobuz -* [Groovesharks](https://groovesharks.org/) - Browser Music * [Last.fm](https://www.last.fm/) - Browser Music / [Tools](https://fmhy.net/audiopiracyguide#last-fm-tools) * [FreeListenOnline](https://freelistenonline.com/) - Browser Music * [Audiomack](https://audiomack.com/) - Browser Music @@ -49,11 +46,10 @@ * [zvu4no](https://zvu4no.org/) - Browser Music * [Tancpol](https://tancpol.net/) - Browser Music * [Saavn Web](https://saavn-web-ui.vercel.app/) - Browser Music / [GitHub](https://github.com/wiz64/saavn-web-ui) -* [musify](https://musify.club/) - Browser Music * [ArtistGrid](https://artistgrid.cx/) - Browser Music / Unreleased Hip-Hop -* [The Urban Emporium](https://www.youtube.com/@theurbanemporium204/playlists) - Hip Hop -* [DatPiff](https://datpiff.com/) - Hip Hop / Mixtapes -* [MixtapeMonkey](https://mixtapemonkey.com/) - Hip Hop / Mixtapes / [Discord](https://discord.gg/4Vsb73fQgd) +* [The Urban Emporium](https://www.youtube.com/@theurbanemporium204/playlists) - Hip-Hop +* [DatPiff](https://datpiff.com/) - Hip-Hop / Mixtapes +* [MixtapeMonkey](https://mixtapemonkey.com/) - Hip-Hop / Mixtapes / [Discord](https://discord.gg/4Vsb73fQgd) * [DMO](https://dance-music.org/) - Electronic * [Vapor Archive](https://vaporarchive.neocities.org/) - Vaporwave * [Keygen Music](https://keygenmusic.tk/) - Keygen Music @@ -68,13 +64,8 @@ * [Newground Audio](https://www.newgrounds.com/audio) - User-Made Electronic Music * [Audius](https://audius.co/) - User Made Music * [AudionautiX](https://audionautix.com/) - Mood-Based Streaming -* [Neko Network](https://live.neko-network.net/) - Anime Music Videos * [Youtaite](https://www.youtaite.com/) - Youtaite Resources / Songs -* [Musicmap](https://musicmap.info/) - Genealogy / History of Music Genres -* [Map of Metal](https://mapofmetal.com/) - Interactive Map of Metal History * [LostMyspace](http://lostmyspace.com/) - Lost Myspace Songs -* [Y'EDITS](https://yedits.net/) - Ye Remixes / [Discord](https://discord.com/invite/yedits) -* [Mideastunes](https://mideastunes.com/) - Underground Music * [Musico](https://www.musi-co.com/listen/) - AI Generated Songs * [BitMidi](https://bitmidi.com/) - Stream / Download MIDI Files * [Tasso Music](https://www.tassomusic.org/) - Early Modern Music @@ -91,9 +82,12 @@ ## ▷ Concerts / Live Shows * 🌐 **[365 Radio](https://365.ilysm.nl/)** - List of YouTube DJ Channels +* ⭐ **[bt.etree](https://bt.etree.org/)** - Concert Recordings / Torrents * ⭐ **[hate5six](https://hate5six.com/)** - Concert Recordings +* ⭐ **[BBC Radio 1 Essential Mix](https://rentry.co/FMHYBase64#bbc-essential)** - BBC Essential Mix +* ⭐ **[MiroPPB](https://miroppb.com/)** / [DL Script](https://pastebin.com/raw/GZ7AvbwV) or [ASOTArchive](http://www.asotarchive.org/) - A State of Trance Archives / DJ Mixes * [JamBase](https://www.jambase.com/videos) - Concert Recordings -* [bt.etree](https://bt.etree.org/) - Concert Recordings / Torrents +* [Relisten](https://relisten.net/) - Concert Recordings / [GitHub](https://github.com/relistennet) * [DimeADozen](http://www.dimeadozen.org/) - Concert Recordings / Torrents * [ZOMB Torrents](http://zombtracker.the-zomb.com/) - Concert Recordings / Torrents * [Guitars101](https://www.guitars101.com/) - Concert Recordings / Bootlegs @@ -102,7 +96,7 @@ * [etreedb](https://etreedb.org/) - Concert Recordings / Torrents * [MuseBootlegs](https://www.musebootlegs.com/) - Bootleg Concert Recordings / Torrents * [LiveBootlegConcert](https://livebootlegconcert.blogspot.com/) - Bootleg Concert Recordings / Torrents -* [EDMLiveSet](https://www.edmliveset.com/) or [TopDJMixes](https://topdjmixes.com/) - DJ Mixes / Livesets +* [TopDJMixes](https://topdjmixes.com/) - DJ Mixes / Livesets * [Mixing.dj](https://mixing.dj/) - DJ Mixes / Streaming * [Volume](https://volume.com/) - Live Cam Concerts * [ConcertArchives](https://www.concertarchives.org/) - Concert Tracking / Database @@ -119,8 +113,13 @@ ## ▷ Radio Streaming -* ↪️ **[Radio Sites](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_radio_streaming_sites)** +* 🌐 **[FMSTREAM](https://fmstream.org/)** - Radio Index +* 🌐 **[Recommended Radio Streams](https://github.com/deroverda/recommended-radio-streams)** - Radio Index +* 🌐 **[List of Internet Radio Stations](https://en.wikipedia.org/wiki/List_of_Internet_radio_stations)** - Radio Index +* 🌐 **[Radio Browser](https://www.radio-browser.info/users)** - Radio Index * ↪️ **[Android](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/android#wiki_.25B7_android_podcasts_.2F_radio) / [iOS](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/android#wiki_.25B7_ios_podcasts_.2F_radio)** - Podcast / Radio Apps +* ⭐ **[Radio Garden](https://radio.garden/)** / [Site Unblock](https://redd.it/18e12gf), [2](https://redd.it/13b53zs) or [RadioCast](https://www.radiocast.co/) - Worldwide Radio Globes +* ⭐ **[BBC Sounds](https://www.bbc.co.uk/sounds)** - BBC Live & Catch-up Radio / [Downloader](https://github.com/get-iplayer/get_iplayer) * ⭐ **[Drive n Listen](https://drivenlisten.com/)** - Radio Driving Simulators * [iHeartRadio](https://www.iheart.com/), [Mixcloud](https://www.mixcloud.com/), [myTuner](https://mytuner-radio.com/), [TuneIn](https://tunein.com/) or [Zeno](https://zeno.fm/) - Podcasts / Radio * [Archive.org](https://archive.org/details/audio?&sort=-downloads&page=1) - News / Classic Radio / Podcasts @@ -129,9 +128,63 @@ * [Braggoscope](https://www.braggoscope.com/) - BBC In Our Time Archive * [AudioFilesDrive](https://t.me/AudioFilesDrive) - Radio Drama Downloads * [radiobot](https://t.me/radiobot) - Radio / Telegram +* [Radio Browser](https://www.radio-browser.info/users) - Open Radio Station Database / Index +* [OnlineRadioBox](https://onlineradiobox.com/) - International Radio Directory / Playlists +* [Streema](https://streema.com/) - Global AM/FM & Internet Radio Directory +* [Radio.net](https://www.radio.net/) - International Radio Directory / Player +* [myTuner](https://mytuner-radio.com/) - Global Radio & Podcasts / Multi-Platform +* [TuneYou](https://tuneyou.com/) - Radio Directory / Discovery Focus +* [LiveOnlineRadio](https://liveonlineradio.net/) - Global Radio Directory / Country & Genre +* [WorldRadioMap](https://worldradiomap.com/) - Global Radio Map Interface +* [vTuner](https://vtuner.com/setupapp/guide/asp/BrowseStations/startpage.asp) - Radio Directory / Hardware Integration +* [Zeno.fm](https://zeno.fm/) - Community / Diaspora Radio Host +* [radioline](https://www.radioline.co/) - Radio & Podcast Aggregator +* [TheOneStopRadio](https://theonestopradio.com/) - Radio Directory +* [Radio Guide](https://www.radioguide.fm/) - Radio Directory +* [Xiph](https://dir.xiph.org/) - Icecast / Ogg Stream Directory +* [UKRadioLive](https://ukradiolive.com/) or [RadioFeeds](http://www.radiofeeds.co.uk/) - UK Radio Station Directories +* [ilovemusic](https://ilovemusic.de/) - German Radio Directory +* [Tvradiotuner](https://tvradiotuner.com/) - TV & Radio Stream Aggregator +* [VRadio](https://www.akouradio.com/) - Radio Directory / VRadio App +* [raddio](https://raddio.net/) - Simple Radio Player / Directory +* [Instant.audio](https://instant.audio/) - Minimalist Radio Player +* [Flicker Radio](https://flickermini.pages.dev/radiostations) - Simple / Lightweight Radio Player +* [QMPlay2](https://github.com/zaps166/QMPlay2) - Desktop Media / Radio Player +* [StreamURL](https://streamurl.link/) - Radio Stream URL Finder +* [LiveATC](https://www.liveatc.net/) - Air Traffic Radio Chatter +* [Broadcastify](https://www.broadcastify.com/) - Live Emergency, Aircraft and Rail Radio +* [OpenMHz](https://openmhz.com/) - Live Police Radio +* [RadioReference](https://www.radioreference.com/) or [morsecode.me](https://morsecode.me/) - Morse Code Radio / Communication +* [Worldwide Radio](https://addons.mozilla.org/en-US/firefox/addon/worldwide-radio/) - Radio Extension + +*** + +## ▷ Internet Radio + +* ⭐ **[SomaFM](https://somafm.com/)** - Online Radio / User Supported / [Discovery Guide](https://rentry.co/musicdiscovery/#somafm) +* ⭐ **[NTS Radio](https://www.nts.live/)** - DJ Radio Shows / [SoundCloud](https://soundcloud.com/user-643553014) / [Discovery Guide](https://rentry.co/musicdiscovery/#nts-radio) +* ⭐ **[RadioParadise](https://radioparadise.com/)** - Online Radio / Listener Supported +* [KWSX Radio](https://radio.kwsx.online/) - Online Radio / Listener Supported +* [0nRadio](https://www.0nradio.com/) - Online Radio Directory +* [1a Radio](https://www.1aradio.com/) - Online Radio Directory +* [Radiodeck](https://www.radiodeck.com/) - Online Radio Player / Directory +* [Quasar Radio](https://kuasark.com/en/) - Online Radio Directory +* [AccuRadio](https://www.accuradio.com/) - Online Radio +* [Q-3](https://www.q-3.eu/) - Online Radio +* [You Radio](https://play.you.radio/) - Online Radio +* [Audiophile](https://audiophile.fm/) - Online Radio +* [ShoutCast](https://directory.shoutcast.com/) - User-Stations +* [Live365](https://live365.com/) - User-Stations +* [Internet-Radio](https://internet-radio.com/) - Station-Directory +* [CoreRadio](https://coreradio.online/listen) - Metalcore / Hardcore / Deathcore +* [JetSetRadio](https://jetsetradio.live/) / [2](https://jetsetradiofuture.live/) - Game Soundtracks +* [deepcut.fm](https://deepcut.live/) - Deep-Cuts +* [Tilderadio](https://tilderadio.org/) - Community Radio +* [UpBeat](https://upbeatradio.net/) - Community Radio / [Discord](https://upbeat.pw/discord) +* [Radio.dubbeh](https://radio.dubbeh.net/) - Independent Internet Radio +* [radio.uwu](https://radio.uwu.network/) - Subculture Radio * [Rekt FM](https://rekt.network/) - Chill / Space / Dark / Horror Synth / EBSM / EDM Radio * [Nightwave Plaza](https://plaza.one/) - Vaporwave Radio -* [Retrowave](https://retrowave.ru/) - Synthwave / Retrowave Radio * [Nightride.fm](https://nightride.fm/) - Synthwave / Darksynth Radio * [Di.fm](https://www.di.fm/) - Electronic Radio * [0x40](https://0x40.mon.im/) - Electronic Radio with Anime Pictures @@ -146,12 +199,6 @@ * [Daft Punk Cafe](https://daftpunk.cafe/) - Daft Punk Radio * [Radiooooo](https://radiooooo.com/) - Radio / Time Machine * [Campus FM](https://www.campus-fm.com/) - College Radio -* [LiveATC](https://www.liveatc.net/) - Air Traffic Radio Chatter -* [Broadcastify](https://www.broadcastify.com/) - Live Emergency, Aircraft and Rail Radio -* [OpenMHz](https://openmhz.com/) - Live Police Radio -* [RadioReference](https://www.radioreference.com/) or [morsecode.me](https://morsecode.me/) - Morse Code Radio / Communication -* [Worldwide Radio](https://addons.mozilla.org/en-US/firefox/addon/worldwide-radio/) - Radio Extension -* [Tempest](http://www.erikyyy.de/tempest/) - Use Monitor as AM Radio * [RadioSide](https://radioside.com/) - Internet Radio Receiver * [streamWriter](https://streamwriter.org/en/) - Internet Radio Audio Downloader @@ -180,39 +227,41 @@ * [Grover](https://www.microsoft.com/store/productId/9NBLGGH6C4BC) or [GPodder](https://gpodder.github.io/) - Podcast Client * [EchoWalk](https://www.echowalk.com/) - Turn Articles / Webpages into Podcasts * [PodSync](https://github.com/mxpv/podsync) - Turn YouTube Video into Podcasts -* [JRE Missing](https://www.jremissing.com/) - Tracks Missing JRE Podcasts -* [Podcatalysts](https://podcatalysts.substack.com/) - Podcast Recommendation Newsletter *** ## ▷ Ambient / Relaxation -* ↪️ **[Ambient Sound Mixers](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_ambient_sound_mixers)** * ↪️ **[Android](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/android/#wiki_.25B7_android_relaxation)** / **[iOS](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/android/#wiki_.25B7_ios_relaxation)** - Ambient / Relaxation Mobile Apps * ⭐ **[Drone Zone](https://somafm.com/player/#/now-playing/dronezone)** or **[Music For Programming](https://musicforprogramming.net/latest/)** - Ambient Playlists * ⭐ **[CityHop](https://www.cityhop.cafe/)** or [Japan Walkaround](https://thatguyedd.github.io/) - Lofi Radio / City Walks * ⭐ **[Coding Cat](https://hostrider.com/)** - Lofi Radio / Nyan Cat's Cousin * ⭐ **[Chillhop](https://chillhop.com/)** - Lofi Radio +* ⭐ **[myNoise](https://mynoise.net/)** - Customizable Ambient Sound Mixer * ⭐ **[Rainy Mood](https://www.rainymood.com/)** - Ambient Rain -* [Lowkey Lofi](https://www.lowkeylofi.app/), [2](https://lowkeylofi.vercel.app/) - Lofi Radio / 80+ Combined Channels +* [Flow-fi](https://www.flowfi.app/) - Lofi Radio / 360+ Combined Channels * [Lofi and Games](https://lofiandgames.com/) - Lofi Radio + Simple Games * [FlowTunes](https://www.flowtunes.app/) - Lofi + Focus Radio / Ambient Sounds -* [Petrichoir](https://petrichoir.app/) - Lofi Radio / Ambient Sounds * [Lofizen](https://www.lofizen.co/) - Lofi Radio / Ambient Sounds * [Rainbow Hunt](https://rainbowhunt.com/) - Ambient Rain -* [Pluvior](https://pluvior.com/), [rainfor.me](https://rainfor.me/) - Ambient Rain -* [Raining.fm](https://raining.fm/) - Ambient Rain +* [Pluvior](https://pluvior.com/) - Ambient Rain * [Rainyscope](https://rainyscope.com/) - Ambient Rain * [Moon Phase Radio](https://www.moonphaseradio.com/) - Lofi Radio * [Ambient Sleeping Pill](https://ambientsleepingpill.com/) - Lofi Radio * [LofiCafe](https://www.loficafe.net/) - Lofi Radio * [Ambicular](https://ambicular.com/) - Lofi Radio * [FreeCodeCamp](https://coderadio.freecodecamp.org/) - Lofi Radio -* [Loofi](https://loofi.netlify.app/) - Lofi Radio * [Lofi Club](https://loficlub.vercel.app/) - Lofi Radio +* [Loofi](https://loofi.netlify.app/) - Lofi Radio * [Lofi Limo](https://lofi.limo/) - Lofi Radio * [DevTunes FM](https://radio.madza.dev/) - Lofi Radio * [Moss Garden](https://moss.garden/) - Lofi Radio +* [ambiphone](https://ambiph.one/) or [Moodist](https://moodist.app/) - Simple Ambient Sound Mixers +* [Click Bath](https://hamishlang.github.io/clickbath/) - Ambient Sound Mixer with Customizable Musical Scale / Instruments +* [IMissTheOffice](https://imisstheoffice.eu/) - Ambient Office Sounds with Interactive UI +* [Homesick](https://scoreascore.com/homesick) - Ambient Home Sounds +* [VirtOcean](https://virtocean.com/) - Ambient Ocean Sounds +* [imissmycafe](https://imissmycafe.com/) - Ambient Cafe Sounds * [Relaxing Sounds](https://unifycosmos.com/relaxing-sounds/), [Calmsound](https://www.calmsound.com/), [Click Relax](https://click-relax.com/), [Moszen](https://www.moszen.com/), [Zen Sounds](https://app.zenflowchart.com/zen-sounds) or [NoisyLoop](https://noisyloop.com/) - Ambient Soundscapes * [lofi-player](https://magenta.tensorflow.org/lofi-player), [2](https://magenta.github.io/lofi-player/) - Create Room / Lofi Player * [Wisdom Tree](https://github.com/HACKER097/wisdom-tree/) - TUI Concentration App @@ -225,14 +274,12 @@ * [ChillOuts](http://www.chillouts.com/) - Meditation Aid * [You are Listening To LA](https://youarelistening.to/) - Ambient City Sounds & Live LAPD Police Radio * [TheWhiteNoiseMachine](https://thewhitenoisemachine.com/) - White Noise Generator -* [Listen to Wikipedia](http://listen.hatnote.com/) - Wikipedia Recent Changes Feed Sounds *** # ► Spotify Clients * ⭐ **[Spotify Desktop](https://www.spotify.com/us/download/)** - Official Client / Use Adblockers Below / [Installer Archive](https://loadspot.pages.dev/) -* ⭐ **[Spicetify](https://spicetify.app/)** - Modded Client with Adblock Plugins / [CLI](https://github.com/spicetify/cli) / [Addons](https://github.com/3raxton/spicetify-custom-apps-and-extensions) / Join [Discord](https://discord.gg/VnevqPp2Rr) for Version Compatibility * [Lofi Rocks](https://www.lofi.rocks/) - Tiny / Minimal Client / [GitHub](https://github.com/dvx/lofi) * [Spotify Web Client](https://open.spotify.com/) / [Enhanced UI](https://senpaihunters.github.io/SpotOn/) / [Lyrics](https://github.com/mantou132/Spotify-Lyrics), [2](https://greasyfork.org/en/scripts/377439) @@ -252,11 +299,11 @@ * ↪️ **[Spotify Playlist Generators](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage/#wiki_spotify_playlist_generators)** * ⭐ **[exportify](https://exportify.app/)** / [GitHub](https://github.com/watsonbox/exportify) or [spotify-backup](https://github.com/caseychu/spotify-backup) - Playlist Backup -* ⭐ **[playlists.cloud](https://playlists.cloud/)**, [SpotTransfer](https://spot-transfer.vercel.app/), [Trikatuka](https://trikatuka.aknakn.eu/) or [Spotify2YouTubeMusic](https://github.com/mahdi-y/Spotify2YoutubeMusic) - Playlist Transfer Tools +* ⭐ **[playlists.cloud](https://playlists.cloud/)**, [TuneMyMusic](https://www.tunemymusic.com/), [SpotTransfer](https://spot-transfer.vercel.app/), [Trikatuka](https://trikatuka.aknakn.eu/) or [Spotify2YouTubeMusic](https://github.com/mahdi-y/Spotify2YoutubeMusic) - Playlist Transfer Tools * [Skiley](https://skiley.net/) or [Kotify](https://github.com/dzirbel/kotify) - Playlist Managers * [Playlist Sorter](https://www.playlistsorter.com/) or [SortYourMusic](http://sortyourmusic.playlistmachinery.com/) / [GitHub](https://github.com/plamere/SortYourMusic) - Sort Playlists * [Timelineify](https://www.timelineify.com/) - Sort Playlists by Release -* [Playlist Hospital](https://playlisthospital.com/) - Repairs Unplayable Songs in Spotify Playlists +* [Playlist Hospital](https://playlisthospital.com/) - Repairs Unplayable Songs in Spotify Playlists * [Spotify Dedup](https://spotify-dedup.com/) - Remove Duplicates in Playlists / [GitHub](https://github.com/JMPerez/spotify-dedup/) * [Tagify](https://tagify.me/) - Use Playlists as Tags * [Share Liked Songs](https://nonnullish.github.io/share-liked-songs/) - Create Shareable Playlist from Liked Songs @@ -266,13 +313,13 @@ * [Playlist Randomizer](https://stevenaleong.com/tools/spotifyplaylistrandomizer) - Playlist Randomizer * [XM Playlist](https://xmplaylist.com/) - XM Radio Spotify Playlists * [Spotify Playlist Archive](https://spotifyplaylistarchive.com/) - Archive of Official Spotify Playlists -* [SpotifyCloud](https://spotifycloud.zamar-roura.com/) - Playlist Words +* [PlayLost](http://playlost.fm/) - Find Similar Playlists *** ## ▷ Spotify Tools -* ⭐ **[Spicetify](https://spicetify.app/)** - Spotify Themes / Plugins / [CLI](https://spicetify.app) / [Addons](https://github.com/3raxton/spicetify-custom-apps-and-extensions) / Join [Discord](https://discord.gg/VnevqPp2Rr) for Version Compatibility +* ⭐ **[Spicetify](https://spicetify.app/)** - Spotify Themes & Plugins / [Addons](https://github.com/rxri/spicetify-extensions), [2](https://github.com/3raxton/spicetify-custom-apps-and-extensions) / [Note](https://pastebin.com/gAbebbbJ) * [sptlrx](https://github.com/raitonoberu/sptlrx) or [Versefy](https://versefy.app/) - Lyric Apps * [Syrics](https://syrics-web-akashrchandran.vercel.app/) - Download Synced Lyrics / [GitHub](https://github.com/akashrchandran/syrics-web) * [Random Songs](https://random-song.com/) - Play Random Spotify Songs @@ -284,7 +331,6 @@ * [CanvasDownloader](https://www.canvasdownloader.com/) - Extract Spotify Canvas Walls * [Kira](https://kira.vercel.app/) - Browse by Country / [GitLab](https://gitlab.com/timrossback/kira) * [ListenByLabel](https://www.lbl.fm/) - Browse by Labels -* [spotify-github-profile](https://github.com/kittinan/spotify-github-profile) - GitHub Display * [ReleaseFeed](https://releasefeed.elomatreb.eu/) - Create Artist RSS Feeds *** @@ -297,21 +343,19 @@ ## ▷ Audio Ripping Sites -* ⭐ **[lucida](https://lucida.to/)**, [2](https://lucida.su/), [3](https://doubledouble.top/) - Multi-Site / 320kb / MP3 / FLAC / [Auto-Retry](https://greasyfork.org/en/scripts/514514) / [Telegram](https://t.me/lucidahasmusic) / [Discord](https://discord.gg/5EEexMqVuE) -* ⭐ **[cobalt](https://cobalt.tools/)** - YouTube / SoundCloud / 320kb / MP3 / Ad-Free / [Instances](https://instances.cobalt.best/) / [Playlist Support](https://playlist.kwiatekmiki.pl/), [2](https://playlist.kwiatekmiki.com/) +* ⭐ **[DAB Music Player](https://dab.yeet.su/)** - FLAC / Uses Qobuz / [Desktop App](https://dab.yeet.su/download) +* ⭐ **[DoubleDouble](https://doubledouble.top/)** - Multi-Site / 320kb / MP3 / FLAC / [Telegram](https://t.me/lucidahasmusic) +* ⭐ **[cobalt](https://cobalt.tools/)** - YouTube / SoundCloud / 320kb / MP3 / Ad-Free / [Instances](https://instances.cobalt.best/) * ⭐ **[squid.wtf](https://squid.wtf/)** - Qobuz / Khinsider / FLAC / [GitHub](https://github.com/QobuzDL/Qobuz-DL) * [YTiz](https://ytiz.xyz/) - YouTube / SoundCloud / Bandcamp / 128kb / AAC / [GitHub](https://github.com/tizerk/ytiz) * [AMP3](https://amp3.cc/) - YouTube / 320kb -* [Download Bandcamp](https://downloadmusicschool.com/bandcamp/) - Bandcamp / 128kb MP3 -* [DownloadSound](https://downloadsound.cloud/) - SoundCloud / 128kb MP3 / [Discord](https://discord.com/invite/39bEkYuzrN) -* [SoundcloudMP3](https://soundcloudmp3.cc/) - SoundCloud / 128kb MP3 *** ## ▷ Audio Ripping Tools * ↪️ **[YT-DLP](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/social-media#wiki_.25B7_youtube_downloaders)** - YouTube / Multi-Site Downloaders -* ⭐ **[Soulseek](https://slsknet.org/)** or [Nicotine+](https://nicotine-plus.org/) - Download App / [Stats](https://github.com/mrusse/Slsk-Upload-Stats-Tracker) / [Server App](https://github.com/slskd/slskd) / [Batch DDL](https://github.com/fiso64/slsk-batchdl) +* ⭐ **[Soulseek](https://slsknet.org/)** or [Nicotine+](https://nicotine-plus.org/) - P2P Audio Sharing Networks / [Stats](https://github.com/mrusse/Slsk-Upload-Stats-Tracker) / [Server App](https://github.com/slskd/slskd) / [Batch DDL](https://github.com/fiso64/slsk-batchdl) * ⭐ **[Soggfy](https://github.com/Rafiuth/Soggfy)** - Spotify / 160kb Free / 320kb Premium * ⭐ **[OnTheSpot](https://github.com/justin025/onthespot)** - Multi-Site / [Discord](https://discord.com/invite/hz4mAwSujH) * ⭐ **[Exact Audio Copy](https://www.exactaudiocopy.de/)** / [Guide](https://docs.google.com/document/d/1b1JJsuZj2TdiXs--XDvuKdhFUdKCdB_1qrmOMGkyveg) or [Whipper](https://github.com/whipper-team/whipper) - CD / DVD Audio Ripper @@ -349,7 +393,6 @@ * [soundcloudaudiodownloader](https://t.me/soundcloudaudiodownloader) - YouTube / SoundCloud / 128kb MP3 * [VK Bot](https://t.me/vkmsaverbot), [vkmusbot](https://t.me/vkmusbot) or [Meph Bot](https://t.me/mephbot) - VK / 320kb MP3 * [Song_downloaderbot](https://t.me/Song_downloaderbot) - JioSaavn / 128kb MP3 -* [FLAC Musik](https://t.me/flacmuzik) - Bollywood FLAC *** @@ -360,10 +403,8 @@ *** * 🌐 **[Music Education Masterlist](https://rentry.co/FMHYBase64#music-education-masterlist)** -* ↪️ **[Royalty Free Music](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_royalty_free_music)** * ⭐ **[TrackerHub](https://rentry.co/FMHYBase64#trackerhub)** - Artists Spreadsheet / [Frontend](https://artistgrid.netlify.app/) / [Discord](https://discord.gg/trackerhub) * ⭐ **[Audio Download CSE](https://cse.google.com/cse?cx=006516753008110874046:ibmyuhh72io)** / [CSE 2](https://cse.google.com/cse?cx=006516753008110874046:ohobg3wvr_w) / [CSE 3](https://cse.google.com/cse?cx=32d85b41e2feacd3f) - Multi-Site Search -* ⭐ **[DAB Music Player](https://dab.yeet.su/)** - FLAC / Uses Qobuz / [Desktop App](https://dab.yeet.su/download) * [/r/xTrill](https://reddit.com/r/xTrill) - Download App / [Backup](https://reddit.com/r/xTrillBackup) * [VK::MP3](https://metacpan.org/pod/VK::MP3) - VK MP3 Search Tool * [musify](https://musify.club/) - 320kb / MP3 @@ -371,7 +412,6 @@ * [RockDownload](https://www.rockdownload.org/) - 320kb / MP3 * [punk.cat](https://punkcata.blogspot.com/) - 320kb / MP3 * [SongsLover](https://songslover.li/) - 256kb / MP3 -* [Freemp3cloud](https://freemp3cloud.com) - 256kb / MP3 * [Ezhevika](https://ezhevika.blogspot.com/) - 192kb / MP3 * [Archive.org](https://archive.org/details/audio) - MP3 * [SoundClick](https://www.soundclick.com/default.cfm) - MP3 @@ -383,7 +423,7 @@ * [mp3db](https://mp3db.pro/) - MP3 * [DeadPulpit](https://www.deadpulpit.com/) - MP3 * [Saavn Web](https://saavn-web-ui.vercel.app/) - MP3 / [GitHub](https://github.com/wiz64/saavn-web-ui) -* [CannaPower](https://canna-power.to) - MP3 / [Telegram](https://t.me/cannapower) +* [CannaPower](https://canna-power.to) - MP3 * [GloryBeats](https://glorybeats.com/) - MP3 * [Cliggo](https://music.cliggo.com/) - MP3 * [Mixupload](https://mixupload.com/) - MP3 @@ -397,6 +437,7 @@ * [LosslessAlbums](https://losslessalbums.club/) or [HDMusic](https://hdmusic.cc/) - FLAC * [Creamusic](https://creamusic.net/) - FLAC / Bypass Limit with VPN * [QMusic](https://rentry.co/FMHYBase64#qmusic) - MP3 / FLAC +* [opendir](https://rentry.co/FMHYBase64#opendir) - MP3 * [IntMusic](https://intmusic.net/) - MP3 / FLAC * [Gangster](https://gangster.su/) - MP3 / FLAC * [GetRockMusic](https://getrockmusic.net/) - MP3 / FLAC @@ -411,10 +452,8 @@ * [FindFlac](https://findflac.com/) - FLAC / MP3 / MP4 * [iPlusFree](https://www7.iplusfree.org/), [iTopMusic](https://itopmusicx.com/) or [iTDMusic](https://itdmusic.in/) - iTunes M4A * [xprm](https://xprm.net/) - MP3 / DL / Stream / Requests -* [Jimmy R](https://jimmyr.com/mp3_search.php) or [Musgle](http://www.musgle.com/) - Google Directory Search / MP3 * [SongStems](https://songstems.net/) - STEM Files * [BitMidi](https://bitmidi.com/), [Geocities Midis](https://archive.org/details/archiveteam-geocities-midi-collection-2009) / [2](https://www.midicities.com/GeoCities), [Tricotism](https://www.tricotism.com/), [ArtScene](http://artscene.textfiles.com/music/midi/) or [VGMusic](https://www.vgmusic.com/) - MIDI Files -* [Free Music Archive](https://www.freemusicarchive.org/), [Unminus](https://www.unminus.com/), [BenSound](https://www.bensound.com/), [HookSounds](https://www.hooksounds.com/), [UppBeat](https://uppbeat.io/), [Soundimage](https://soundimage.org/), [free stock music](https://www.free-stock-music.com/) or [Fugue](https://icons8.com/music) - Royalty Free Music * [Music Hoarders](https://discord.gg/kQUQkuwSaT) - Music Hoarding Community / [Wiki](https://wiki.musichoarders.xyz/) *** @@ -422,7 +461,6 @@ ## ▷ Genre Specific * [Take Metal](https://takemetal.org/) - Metal / MP3 -* [Me-4U](https://me-4u.com/index.php) - Metal / MP3 * [Metalminos](https://metalminos.net/) - Metal / MP3 * [In The Fog](https://in-the-fog.ru/) - Metal / MP3 * [TechnicalDeathMetal](https://technicaldeathmetal.org/) - Metal / MP3 @@ -433,7 +471,6 @@ * [Sophie's Floorboard](https://sophiesfloorboard.blogspot.com/) - Hardcore / MP3 * [1Gabba](https://1gabba.pw/) - Electronic / MP3 * [Gabber](https://gabber.od.ua/) - Electronic / MP3 -* [EDM Lake](https://edmlake.com/) - Electronic / MP3 * [EDMWaves](https://edmwaves.org/) - Electronic / MP3 * [MusicFans](https://musicfans.space/) - Electronic / MP3 * [PSYFP](https://psyfp.ucoz.ru/) - Electronic / MP3 @@ -445,8 +482,8 @@ * [1Trance](https://1trance.org/) - Trance / MP3 * [1Techno](https://1techno.org/) - Techno / MP3 * [GlobalDJMix](https://globaldjmix.com/) - DJ Mixes / MP3 -* [EDMLiveSet](https://www.edmliveset.com/) - DJ Mixes / Livesets * [oVPN DJ Mixes](https://rentry.co/FMHYBase64#ovpn-dj-mixes) - DJ Mixes +* [MiroPPB](https://miroppb.com/) / [DL Script](https://pastebin.com/raw/GZ7AvbwV) or [ASOTArchive](http://www.asotarchive.org/) - A State of Trance Archives / DJ Mixes * [LOA2K](https://loa2k.neocities.org/) or [Nu Guide](https://nuvaporwave.neocities.org/mirrors.html) - Vaporwave * [inconstant sol](https://inconstantsol.blogspot.com/), [David W. Niven Collection](https://archive.org/details/davidwnivenjazz) or [JazznBlues](https://jazznblues.club/) - Jazz / MP3 * [EssentialHouse](https://essentialhouse.club/) - House / MP3 @@ -465,7 +502,8 @@ * [Rap War](https://rap-war-fam.blogspot.com/) - Hip Hop / MP3 * [Dez Flight Underground](https://dezflight-underground.com/) - Underground Hip Hop * [The Noise-Arch Archive](https://archive.org/details/noise-arch) - Underground Cassette Tapes -* [Y'EDITS](https://yedits.net/) - Ye Remixes / [Discord](https://discord.com/invite/yedits) +* [Yedits](https://yedits.net/) - Hip-Hop / Ye Remixes / [Discord](https://discord.com/invite/yedits) / [Subreddit](https://www.reddit.com/r/Yedits/) +* [Tom Lehrer Songs](https://tomlehrersongs.com/) - All Tom Lehrer Songs / Public Domain * [MusicRepublic](https://music-republic-world-traditional.blogspot.com/) - World / MP3 / FLAC * [KPopFLAC](https://www.kpopflac.xyz/) - K-Pop / FLAC * [KPopMusicDownload](https://kpopdownloadscmm.blogspot.com/) - K-Pop / MP3 @@ -491,13 +529,35 @@ * [TheMixingBowl](https://themixingbowl.org/) - Forum / Mixes / MP3 / Sign-Up Required * [Metal Tracker](https://en.metal-tracker.com/) or [RockBox](https://rawkbawx.rocks/) - Metal / MP3 320kb / FLAC * [BlackTorrent](https://blacktorrent.ru/) or [iPlayMetal](https://metal.iplay.ro/) - Metal / MP3 / FLAC -* [the /kpg/ torrent](https://kpgtorrent.neocities.org/) - 900GB+ K-Pop Torrent File / MP3 320kb / FLAC * [MixtapeTorrent](http://www.mixtapetorrent.com/) - Mixtapes / MP3 / Various Bitrates * [TorrentTech](https://torrents.torrentech.org/) - Electronic / MP3 320kb / Sign-Up Required / [Zip File](https://rentry.co/FMHYBase64#torrenttech-zip) * [TribalMixes](https://www.tribalmixes.com/) - Forum / DJ Mixes / MP3 +* [the /kpg/ torrent](https://rentry.co/FMHYBase64#kpop-torrent) - K-Pop / MP3 320kb / FLAC * [PandaCD](https://pandacd.io/) - User-Made Music / MP3 / FLAC * [NFO DB](https://nfodb.net.ru/) - MP3 NFO Database -* [PreDB.eu](https://predb.eu) - PreDB for Music +* [PreDB.eu](https://predb.eu) - Music PreDB + +*** + +# ► Royalty Free Music + +* ⭐ **[NCS](https://ncs.io/)** - Copyright Free Music +* ⭐ **[YouTube Audio Library](https://www.youtube.com/audiolibrary)** - Music / Sound Effects +* [UppBeat](https://uppbeat.io/) - Music for Creators +* [BenSound](https://www.bensound.com/) - Popular Library +* [Unminus](https://www.unminus.com/) - Professional Tracks +* [FreePD](https://freepd.com/) - Public Domain Music +* [Free Music Archive](https://freemusicarchive.org/) - Curated Library +* [free-stock-music](https://www.free-stock-music.com/) - Stock Music Library +* [Pixabay Music](https://pixabay.com/music/) - Stock Music Library +* [Fugue](https://icons8.com/music) - Music for Creators +* [chosic](https://www.chosic.com/free-music/all/) - Royalty-Free Library +* [tunetank](https://tunetank.com/) - Music for Videos +* [purple-planet](https://www.purple-planet.com/) - Duo Composers +* [freemusicpublicdomain](https://www.freemusicpublicdomain.com/) - Public Domain Tracks +* [Incompetech Music](https://incompetech.com/music/royalty-free/music.html) - Composer Library +* [joshwoodward](https://www.joshwoodward.com/) - Single Artist Collection +* [Sampld](https://sampld.app/) - Sample Finder *** @@ -505,14 +565,14 @@ * 🌐 **[EverythingMoe](https://everythingmoe.com/#section-music)**, [2](https://everythingmoe.org/#section-music) - Otaku Music Sites Index / [Discord](https://discord.gg/GuueaDgKdS) * 🌐 **[Wotaku](https://wotaku.wiki/music)** - Otaku Music Index / [Discord](https://discord.gg/vShRGx8ZBC) -* ⭐ **[Squidify](https://www.squidify.org)** - Game / Anime Soundtracks / [Resources](https://wotaku.wiki/guides/music/squidify) +* ⭐ **[Squidify](https://www.squidify.org)**, [2](https://www.squidify.net/) - Game / Anime Soundtracks / [Resources](https://wotaku.wiki/guides/music/squidify) * ⭐ **[Sitting on Clouds](https://www.sittingonclouds.net/)**, [2](https://sittingonclouds.com/) - Anime / Game Soundtracks / [Discord](https://discord.com/invite/x23SFbE) / [.onion](http://cloudscbr2l7prtthmz5jk5hxpndisu4ohqytsri5vyua3ksfswl7gyd.onion/) * [MusicDex](https://musicdex.org/) - Anime Soundtracks / [Discord](https://discord.gg/yCXJkbdCHt) -* [3ost](https://3ost.ru/), [joshw](https://pc.joshw.info/) / [Search](https://vgm.hcs64.com/) or [tanikal](https://www.tanikal.com/) - Soundtracks +* [3ost](https://3ost.ru/) or [joshw](https://pc.joshw.info/) / [Search](https://vgm.hcs64.com/) - Soundtracks * [RenovationRecords](https://renovatiorecords.blogspot.com/) - HQ Movies Soundtracks * [KDramaOST](https://kdramaost.com/en/) - KDrama Soundtracks * [Animal Crossing Radio](https://animal-crossing-radio.com/) - Animal Crossing Radio -* [AniPlaylist](https://aniplaylist.com/), [SakuraOST](https://www.sakuraost.com/), [HiyoriOST](https://www.hiyoriost.com/), [OSAnime](https://osanime.com/) or [Anime Sharing](https://koe.anime-sharing.com/) - Anime Soundtracks +* [AniPlaylist](https://aniplaylist.com/), [SakuraOST](https://www.sakuraost.com/), [OSAnime](https://osanime.com/) or [Anime Sharing](https://koe.anime-sharing.com/) - Anime Soundtracks * [OtakuOst](https://otakuost.net/) - Anime Soundtracks & Japanese Music * [Doujin Cafe (Discord)](https://discord.com/invite/doujincafe) or [DoujinStyle](https://doujinstyle.com/) / [Discord](https://discord.com/invite/z2QDFdA) - Doujin Music @@ -526,6 +586,7 @@ * [VGMRips](https://vgmrips.net/packs/) - Retro Game Music Rips / VGM * [Zophar's](https://www.zophar.net/music) - Retro Game Music Rips / VGM * [GameOST](https://gameost.net/) - Game Soundtracks / MP3 +* [exotica](https://www.exotica.org.uk/) - Amiga Games Soundtracks * [VIP VGM](https://www.vipvgm.net/) - Game Music Radio * [Cirrus Retro](https://cirrusretro.com/) - Game Music Radio * [Rainwave](https://rainwave.cc/) - Game Music Radio @@ -546,6 +607,7 @@ * ⭐ **[RateYourMusic](https://rateyourmusic.com/)** - Ratings / Reviews / [Add Features](https://rateyourmusic.com/list/CaptainMocha/betterrym-browser-extension/) / [Last.fm Stats](https://github.com/dukhevych/rym-lastfm-stats) / [Forum](https://rym.fm/) * ⭐ **[Last.fm](https://www.last.fm/home)** / [Tools](https://fmhy.net/audiopiracyguide#last-fm-tools), [ListenBrainz](https://listenbrainz.org/) or [Music Board](https://musicboard.app/) - Track Listening Habits / Songs * ⭐ **[Muspy](https://muspy.com/)**, [Drop Watch](https://drop-watch.ghost.io/), [MusicButler](https://www.musicbutler.io/) or [Brew.fm](https://www.brew.fm/) - Get Album Release Updates +* [Discogs](https://www.discogs.com/) - Ratings / Reviews / [Scout](https://greasyfork.org/en/scripts/439452-discogs-scout) / [Timestamps](https://martinbarker.me/tagger) * [Has it Leaked](https://hasitleaked.com/) - Album Leak Tracker * [MyPitchFork](https://mypitchfork.fun/) - Individual Song Rating / Tracking * [TuneMyMusic](https://www.tunemymusic.com/) - Transfer Playlists Between Services @@ -566,17 +628,18 @@ * ⭐ **[MixesDB](https://www.mixesdb.com/)** - DJ Set Database * ⭐ **[EveryNoise](https://everynoise.com/)** - Discover Music Genres / [New Music](https://www.furia.com/page.cgi?type=log#id492) * ⭐ **[Tunefind](https://www.tunefind.com/)** - Find Music from Movies / TV -* [lazyrecords](https://lazyrecords.app/), [Discover Quickly](https://discoverquickly.com/), [Chosic](https://www.chosic.com/), [TapeFear](https://www.tapefear.com/), [SongsLikeX](https://songslikex.com/), [Dubolt](https://dubolt.com/) or [Maroofy](https://maroofy.com/) - Song Discovery Tools +* [Chosic](https://www.chosic.com/), [lazyrecords](https://lazyrecords.app/), [Discover Quickly](https://discoverquickly.com/), [TapeFear](https://www.tapefear.com/), [SongsLikeX](https://songslikex.com/), [Dubolt](https://dubolt.com/) or [Maroofy](https://maroofy.com/) - Song Discovery Tools * [Music-Map](https://www.music-map.com/), [Musicroamer](https://www.musicroamer.com/), [Gnoosic](https://www.gnoosic.com/), [Music Galaxy](https://galaxy.spotifytrack.net/), [Unchartify](https://unchartify.com/) / [Telegram](https://t.me/spotifyuncharted), [SAGE](https://hate5six.com/sage), [LivePlasma](https://liveplasma.com/) or [GNOD](https://www.gnod.com/) - Artist Discovery Tools -* [Discogs](https://www.discogs.com/) - Ratings / Reviews / [Scout](https://greasyfork.org/en/scripts/439452-discogs-scout) / [Timestamps](https://martinbarker.me/tagger) * [Sputnik](https://www.sputnikmusic.com/) - Ratings / Reviews * [AlbumOfTheYear](https://www.albumoftheyear.org/) - Ratings / Reviews * [AllMusic](https://www.allmusic.com/) - Ratings / Reviews * [MusicBrainz](https://musicbrainz.org/) - Ratings / Reviews * [Odesli](https://odesli.co/) - Song / Podcast Platform Search / [Telegram Bot](https://t.me/odesli_bot) -* [Kworb](https://kworb.net/), [Spotify Charts](https://spotifycharts.com/) or [SuperFridayChart](https://www.superfridaychart.com/) - Music Top Charts +* [Kworb](https://kworb.net/), [Spotify Charts](https://charts.spotify.com/home) or [SuperFridayChart](https://www.superfridaychart.com/) - Music Top Charts * [ClassicRockHistory](https://www.classicrockhistory.com/classic-rock-bands-list-and-directory/) - Classic Rock Band Archive * [TheIndieRockPlaylist](https://www.theindierockplaylist.com/) - Indie Rock Archive +* [Musicmap](https://musicmap.info/) - Genealogy / History of Music Genres +* [Map of Metal](https://mapofmetal.com/) - Interactive Map of Metal History * [Metal Archives](https://www.metal-archives.com/) - Metal Band Archive * [DAHR](https://adp.library.ucsb.edu/index.php) - American Historical Recordings Database * [IDM Discovery](https://www.idmdiscovery.com/) - IDM Artist Archive @@ -588,11 +651,12 @@ * [MusicTo](https://www.musicto.com/) - Musician Curated Playlists * [BoilTheFrog](http://boilthefrog.playlistmachinery.com/) - Create Playlist from 2 Artists * [Obscurify](https://obscurifymusic.com/) or [MusicTaste](https://musictaste.space/) - Compare Music Taste to Others -* [Random Song Generator](https://randomsonggenerator.com/) or [Samplette](https://samplette.io/) - Play Random YouTube Songs +* [Random Song](https://randomsong.org/), [Random Song Generator](https://randomsonggenerator.com/) or [Samplette](https://samplette.io/) - Play Random YouTube Songs * [1001 Albums Generator](https://1001albumsgenerator.com/) - Generates Random Album Everyday * [DigitalDreamDoor](https://digitaldreamdoor.com/) - Greatest 100 Lists * [Best Ever Albums](https://www.besteveralbums.com/index.php) - Discover Albums * [MusicGenreTree](https://www.musicgenretree.org/chart.html) - Discover New Music by Genre +* [OrbitMusic](https://www.bbc.co.uk/orbitmusic) - Undiscovered Artist Recommendations / [Limit Bypass](https://i.imgur.com/FDx8jKa.png) * [SecondHandSongs](https://secondhandsongs.com/), [RemixSearch](https://remixsearch.net/) or [WhoSampled](https://www.whosampled.com/) - Cover / Remix Databases * [SoundtrackTracklist](https://soundtracktracklist.com/) or [FilmMusicSite](https://www.filmmusicsite.com/en/) - Soundtrack Databases * [generasia](https://www.generasia.com/) - Asian Music Wiki @@ -609,10 +673,11 @@ ## ▷ Last.fm Tools -* 🌐 **[Awesome Last.fm](https://github.com/jnguyen1098/awesome-lastfm)** - Last.fm Tool Index +* 🌐 **[Awesome Last.fm](https://github.com/jnguyen1098/awesome-lastfm)** or [Last.fm Tool List](https://redd.it/1h8ec76) - Last.fm Tool Indexes +* ⭐ **[bleh](https://katelyn.moe/bleh/)** - Last.fm Customization Script / [GitHub](https://github.com/katelyynn/bleh) * ⭐ **[OpenScrobbler](https://openscrobbler.com/)** - Manually Scrobble Anything / [Discord](https://discord.gg/SEDp6Zy) / [GitHub](https://github.com/elamperti/openwebscrobbler) * ⭐ **[Last.fm Stats](https://lastfmstats.com/)** - In-Depth Last.fm Stats / [GitHub](https://github.com/felhag/lastfm-stats-web) -* [Web Scrobbler](https://web-scrobbler.com/) - Scrobble Any Site +* [Web Scrobbler](https://github.com/web-scrobbler/web-scrobbler) - Scrobble Any Site * [Edit Scrobbles](https://greasyfork.org/en/scripts/485278) - Manually Edit Scrobbles * [Last.fm Labs](https://www.last.fm/labs) - Last.fm Library Visualizers * [ChartMyMusic](https://www.chartmymusic.com/), [TapMusic](https://www.tapmusic.net/) or [MusicCoruMap](https://musicorumapp.com/generate) - Album Collages @@ -625,7 +690,7 @@ # ► Audio Tools -* 🌐 **[Music Megathread](https://github.com/MoonWalker440/Music-Megathread/)** or [AudioMarx](https://audiomarx.mixa.site/) - Audio Resources +* 🌐 **[AudioMarx](https://audiomarx.mixa.site/)** - Audio Resources * 🌐 **[Binaural Audio](https://binaural-audio.slite.page/p/i38zsD7728/Binaural-Audio)** - Binaural / 3D Audio Resources / [Discord](https://kutt.it/BinauralDiscord) * ↪️ **[System Audio Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/system-tools#wiki_.25B7_system_audio)** * ↪️ **[Voice Change / Clone](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/ai#wiki_.25B7_voice_change_.2F_clone)** @@ -665,9 +730,7 @@ * [quodlibet](https://github.com/quodlibet/quodlibet/) * [deadbeef](https://deadbeef.sourceforge.io/) * [Swing](https://swingmx.com/) / [Telegram](https://t.me/+9n61PFcgKhozZDE0) / [GitHub](https://github.com/swingmx/swingmusic) -* [Nora](https://github.com/Sandakan/Nora) -* [Hyperchroma](https://hyperchroma.app/) -* [Melodie](https://feugy.github.io/melodie/) +* [Nora](https://noramusic.netlify.app/) / [GitHub](https://github.com/Sandakan/Nora) * [Dopamine](https://digimezzo.github.io/site/) * [LedFx](https://www.ledfx.app/) - LED Music Sync * [RockBox](https://www.rockbox.org/) - Custom Player for Audio Devices @@ -682,7 +745,7 @@ * ⭐ **[koel](https://koel.dev/)** * ⭐ **[iBroadcast](https://ibroadcast.com)** * ⭐ **[AudioRelay](https://audiorelay.net/)** - Stream Audio Between Devices -* [Audioling](https://github.com/audioling/audioling) or [Gelli](https://github.com/dkanada/gelli) (Android) - Jellyfin Music Players +* [Feishin](https://github.com/jeffvli/feishin) - Jellyfin / Navidrome / Subsonic Player * [SnapCast](https://github.com/badaix/snapcast) or [SonoBus](https://sonobus.net/) - Sound System Sync * [mStream](https://mstream.io/) * [Mopidy](https://mopidy.com/) @@ -713,18 +776,18 @@ ## ▷ Song Identification -* ⭐ **[Shazam](https://www.shazam.com/)** - Android / [Unlock](https://rentry.co/FMHYBase64#shazam) / [Desktop App](https://github.com/BayernMuller/vibra) -* ⭐ **[WhatAmIHearing](https://github.com/zemoto/WhatAmIHearing)** - Song Identification App -* ⭐ **[WatZatSong](https://www.watzatsong.com/en)** - Song Identification Forum -* [/r/NameThatSong](https://reddit.com/r/NameThatSong) - Song Identification Subreddit -* [FlairMax](https://apps.microsoft.com/detail/9pdzvj34ztxg) -* [Aha Music](https://www.aha-music.com/identify-songs-music-recognition-online) -* [AudioTag](https://audiotag.info/) +* ⭐ **[Shazam](https://www.shazam.com/)** / Android, iOS / [Modded](https://rentry.co/FMHYBase64#shazam) / [Desktop App](https://github.com/BayernMuller/vibra) +* ⭐ **[WhatAmIHearing](https://github.com/zemoto/WhatAmIHearing)** / Windows +* ⭐ **[WatZatSong](https://www.watzatsong.com/en)** or [r/NameThatSong](https://reddit.com/r/NameThatSong) - Song ID Communities +* [FlairMax](https://apps.microsoft.com/detail/9pdzvj34ztxg) / Windows +* [AudioTag](https://audiotag.info/) / Web +* [SoundHound](https://www.soundhound.com/soundhound) / Android +* [Audile](https://github.com/aleksey-saenko/MusicRecognizer) / Android +* [Audire](https://github.com/alexmercerind/audire) / Android +* [AmbientMusicMod](https://github.com/KieronQuinn/AmbientMusicMod) / Android +* [Google Assistant](https://assistant.google.com/) - Google's Music Recognition / [Note](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#google-music-recognition) * [SampleSeek](https://www.sampleseek.co.uk/) - Find Sample Origins -* [SoundHound](https://www.soundhound.com/soundhound) - Android -* [Audile](https://github.com/aleksey-saenko/MusicRecognizer) - Android -* [Audire](https://github.com/alexmercerind/audire) - Android -* [AmbientMusicMod](https://github.com/KieronQuinn/AmbientMusicMod) - Android +* [AHA Music](https://www.aha-music.com/identify-songs-music-recognition-online) - Chrome Extension *** @@ -750,7 +813,6 @@ * [The ABC Music Project](https://abc.sourceforge.net/) / [Editor](https://sourceforge.net/projects/toadflax/), [2](https://runabc.sourceforge.io/), [3](https://easyabc.sourceforge.net/) / [PNG Convert](https://sourceforge.net/projects/abccairo/) / [MIDI Convert](https://abcmidi.sourceforge.io/) / [Webpages](https://netabc.sourceforge.io/) - Notation Markup Language * [Chordly](https://chordly.co.uk/) - Chord Sheet Creator / [GitHub](https://github.com/stufro/chordly) * [Piascore](https://apps.apple.com/app/piascore-hd/id406141702) - iOS Music Score Viewer -* [IMSLP](https://imslp.org/wiki/Main_Page) - Public Domain Scores * [/r/sheetmusic](https://reddit.com/r/sheetmusic) - Reddit Community * [VGLeadSheets](https://www.vgleadsheets.com/) - Transcribe Video Game Music * [Omnizart](https://github.com/Music-and-Culture-Technology-Lab/omnizart) - Python Music Transcription Library @@ -792,9 +854,7 @@ * ↪️ **[Separate Voice / Instrumentals](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/ai#wiki_.25B7_voice_removal_.2F_separation)** * ⭐ **[AudioSEX](https://audiosex.pro/)**, [KVR Audio](https://www.kvraudio.com/) or [VI-CONTROL](https://vi-control.net/community/) - Audio Production Forums / News * [ProducerLibrary](https://producerlibrary.carrd.co/) - Audio Production Tutorials / [Discord](https://discord.gg/KfyHfUTjsK) -* [We Suck At Producing](https://discord.gg/wsap) - Audio Production Discord * [Adobe Enhance](https://podcast.adobe.com/enhance) - Speech Enhancer -* [Chowdhury DSP](https://chowdsp.com/products.html) - Audio Signal Processing * [Oscilloscope](https://bummsn.de/osc_txt/) - Audio Oscillation Test (turn volume down) * [MoFi](https://www.audjust.com/) - Create Audio Loops * [Jukeblocks](https://jukeblocks.io/) - Generate Audio Project Templates / Heavy Webpage @@ -807,15 +867,16 @@ ## ▷ Audio Editors -* ⭐ **[G-MEH](https://g-meh.com/)** - Audio Editors / [Discord](https://discord.com/invite/xqPBaXUg7p) * ⭐ **[Tenacity](https://tenacityaudio.org/)** or [Audacity](https://www.audacityteam.org/) - Audio Editors * ⭐ **[FL Studio](https://rentry.co/FMHYBase64#fl-studio)** - Digital Audio Workstation * ⭐ **[Reaper](https://www.reaper.fm/)** - Digital Audio Workstation / [Note](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#reaper-note) * ⭐ **[Team V.R releases](https://rentry.co/FMHYBase64#team-vr)** or [AudioZ](https://audioz.download/) / [Forum](https://audiosex.pro/) - Audio Editors, Adobe Software, Plugins, etc. * ⭐ **[Moises](https://moises.ai/)** - Live Music Mixer * ⭐ **[OpenMPT](https://openmpt.org/)**, [Schism Tracker](https://schismtracker.org/) or [MilkyTracker](https://milkytracker.org/) - Music Trackers +* [G-MEH](https://g-meh.com/) - Audio Editors / [Discord](https://discord.com/invite/g-meh) * [Zrythm](https://www.zrythm.org/en/index.html) - Digital Audio Workstation * [LMMS](https://lmms.io/) - Digital Audio Workstation / [Discord](https://discord.com/invite/PruNxpG) +* [Waveform](https://www.tracktion.com/products/waveform-free) - Digital Audio Workstation * [Ossia](https://ossia.io/) - Intermedia Sequencer * [Mixxx](https://mixxx.org/), [VirtualDJ](https://www.virtualdj.com/) or [Serato](https://serato.com/) - DJ Software * [plugdata](https://plugdata.org/) - Visual Audio Editor / [Discord](https://discord.com/invite/eT2RxdF9Nq) @@ -853,7 +914,7 @@ * [Tonecraft](https://dinahmoelabs.com/tonecraft) - 3D Song Creator * [WebSynths](https://www.websynths.com/) or [Wavepad](https://alexgibson.github.io/wavepad/) - Browser Synthesizers * [NoiseCraft](https://noisecraft.app/) - Modular Synth Builder -* [StarrynetsPiano](https://piano.starrynets.com/) or [VirtualPiano](https://virtualpiano.net/) - Browser Pianos +* [VirtualPiano](https://virtualpiano.net/) - Browser Pianos * [MK-1](https://ericrosenbaum.github.io/MK-1/) - Online Sampling Keyboard * [VO Pads](https://vo.odgn.net/) - Video Sample Sequencer * [React Guitar](https://react-guitar.com/) - Virtual Guitar @@ -872,19 +933,12 @@ ## ▷ Audio Plugins -* ⭐ **[G-MEH](https://g-meh.com/)** - Download * ⭐ **[AudioZ](https://audioz.download/)** - Download / [Forum](https://audiosex.pro/) * ⭐ **[Team V.R releases](https://rentry.co/FMHYBase64#team-vr)** - Download -* ⭐ **[Kits4Beats](https://kits4beats.com/)** - Download / Torrent / [Telegram](https://t.me/kits4beats) * ⭐ **[bobdule](https://bobdule999.wixsite.com/bob-dule-factory-2)** - Kontakt / Native Instruments Plugins & Tools -* ⭐ **[PLUGG SUPPLY](https://t.me/pluggsupply)** - Telegram / [VK](https://vk.com/pluggsupply) -* [AirWindows](https://www.airwindows.com/) - Download / [Consolidated](https://www.airwindows.com/consolidated/) +* [G-MEH](https://g-meh.com/) - Download / [Discord](https://discord.com/invite/g-meh) * [AudioWavePro](https://t.me/AudioWavePro) - Telegram / AudioZ Reuploads -* [Plugins4Free](https://plugins4free.com/) - Download -* [Pianobook](https://www.pianobook.co.uk/) - 1500+ Sample Packs -* [/u/BitterApple69 Plugins](https://rentry.co/FMHYBase64#ubitterapple69-plugins) - Torrent * [AudioTools](https://audiotools.in/) - Torrent / Use [Translator](https://addons.mozilla.org/en-US/firefox/addon/traduzir-paginas-web/) -* [Producer Plug Sheet](https://rentry.co/FMHYBase64#producer-plug-sheet) - Plugin / Sample Index * [HQVst](https://t.me/HQVst) - Telegram *** @@ -897,26 +951,28 @@ * ⭐ **[Vital](https://vital.audio/)** or [Helm](https://tytel.org/helm/) - Wavetable Synth * ⭐ **[Dexed](https://asb2m10.github.io/dexed/)** - Yamaha DX7 Emulation * [DecentSamples](https://www.decentsamples.com/product/decent-sampler-plugin/) or [Plogue](https://www.plogue.com/products/sforzando.html) - VST Samplers / [Libraries](https://www.decentsamples.com/), [2](https://sfzinstruments.github.io/), [3](https://unreal-instruments.wixsite.com/unreal-instruments) +* [Pianobook](https://www.pianobook.co.uk/) - 1500+ Sample Packs * [VCV Rack 2](https://vcvrack.com/Rack) or [Cardinal](https://cardinal.kx.studio/) - Eurorack Simulator * [IEM Plug-in Suite](https://plugins.iem.at/) - Open Source -* [ChowMultiTool](https://github.com/Chowdhury-DSP/ChowMultiTool) - Open Source * [SPARTA](https://leomccormack.github.io/sparta-site/) - Open Source -* [ZynAddSubFX](https://zynaddsubfx.sourceforge.io/) -* [KoanSound](https://discord.gg/koansound) - Plugins / Discord +* [Plugins4Free](https://plugins4free.com/) - Plugins * [Spitfire Audio](https://labs.spitfireaudio.com/) - Plugins -* [Producer Arcadia](https://discord.gg/GsK5SRTpgr) - Plugins / Discord +* [AirWindows](https://www.airwindows.com/) - Plugins / [Consolidated](https://www.airwindows.com/consolidated/) * [Krush](https://www.tritik.com/product/krush/) - Bitcrusher (Deep Fry) Plugin * [samplv1](https://samplv1.sourceforge.io/) - Voice Synth +* [Chowdhury DSP](https://chowdsp.com/products.html) - Audio Signal Processing * [/r/SynthRecipes](https://www.reddit.com/r/synthrecipes/) - Synth Request Subreddit *** ## ▷ SFX / Loops +* ⭐ **[Kits4Beats](https://kits4beats.com/)** - Download / Torrent / [Telegram](https://t.me/kits4beats) +* ⭐ **[PLUGG SUPPLY](https://t.me/pluggsupply)** - Telegram / [VK](https://vk.com/pluggsupply) * ⭐ **[OrangeFreeSounds](https://orangefreesounds.com/)** * ⭐ **[BandLab SFX](https://www.bandlab.com/sounds/packs)** - Account Required * [EXP Soundboard](https://sourceforge.net/projects/expsoundboard/), [Sound Show](https://soundshow.app/) / [Discord](https://discord.com/invite/8pGnfJyzNq), [Soundux](https://soundux.rocks/) or [Resanance](https://resanance.com/) - Soundboard Programs -* [MyInstants](https://www.myinstants.com/index/us/), [Thirtydollar](https://thirtydollar.website/), [InternetsFun](https://instantsfun.es/), [101soundboards](https://www.101soundboards.com/) or [Soundboard.com](https://www.soundboard.com/) - Online Soundboards +* [MyInstants](https://www.myinstants.com/index/us/), [InternetsFun](https://instantsfun.es/), [101soundboards](https://www.101soundboards.com/) or [Soundboard.com](https://www.soundboard.com/) - Online Soundboards * [SampleBrain](https://gitlab.com/then-try-this/samplebrain), [rFXGen](https://raylibtech.itch.io/rfxgen), [Bfxr](https://iznaut.itch.io/bfxr), [ChipTone](https://sfbgames.itch.io/chiptone) or [SFXR](https://sfxr.me/) - Sound Effect Creators * [/r/LoopKits](https://www.reddit.com/r/loopkits/) * [Free Adobe SFX](https://www.adobe.com/products/audition/offers/AdobeAuditionDLCSFX.html) @@ -925,14 +981,11 @@ * [GDC](https://sonniss.com/gameaudiogdc) * [Citizen DJ](https://citizen-dj.labs.loc.gov/) * [SoundGator](https://www.soundgator.com/) +* [Voicy](https://www.voicy.network/) * [FindSounds](https://www.findsounds.com/) -* [PacDV](https://www.pacdv.com/sounds/index.html) -* [SoundBible](https://soundbible.com/) * [Free Loops](https://free-loops.com/) * [looperman](https://www.looperman.com/loops) -* [Noizable](https://noizable.media/) * [SampleSwap](https://sampleswap.org/) -* [Sample Focus](https://samplefocus.com/) * [Soundfishing](https://www.soundfishing.eu/) * [FreeSoundLibrary](https://www.freesoundslibrary.com/) * [SoundSnap](https://www.soundsnap.com/) - 5 Weekly diff --git a/docs/beginners-guide.md b/docs/beginners-guide.md index 2b7b86391..b675e31fb 100644 --- a/docs/beginners-guide.md +++ b/docs/beginners-guide.md @@ -10,7 +10,7 @@ > How important is using an adblocker? -Piracy sites usually contain ads, some of which can be harmful, often leading to unwanted pages or fake download buttons. Real download buttons are usually small, and match the sites design, while fake ones are often big and eye-catching. It can be hard to tell them apart, so it's important to always have an adblocker. +Piracy sites usually contain ads, some of which can be harmful, often leading to unwanted pages or fake download buttons. Real download buttons are usually small, often text-based or subtly integrated into the site's design. Fake ones are frequently large, brightly coloured, use generic terms like 'Download Now', and may appear multiple times on a page. It can be hard to tell them apart, so it's important to always have an adblocker. For browsers we recommend **[uBO](https://github.com/gorhill/uBlock)**, and you can also use a **[Redirect Skipper](https://fmhy.net/internet-tools#redirect-bypass)** to skip annoying countdowns. @@ -24,7 +24,7 @@ For mobile **[AdGuard Premium](https://fmhy.net/android-iosguide#android-adblock > Which web browser should I use? -We recommend **[Firefox](https://www.mozilla.org/en-US/firefox/new/)**, but you can also try **[Privacy-Focused Browsers](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/adblock-vpn-privacy/#wiki_.25B7_browser_privacy)**, or **[Brave](https://brave.com/)** if you prefer Chromium. +We recommend **[Firefox](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/internet-tools/#wiki_.25B7_firefox_tools)**, but you can also try **[Privacy-Focused Browsers](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/adblock-vpn-privacy/#wiki_.25B7_browser_privacy)** or **[Brave](https://brave.com/)** if you prefer Chromium. For Android we recommend **[Firefox](https://www.mozilla.org/en-US/firefox/browsers/mobile/android/)**, **[Brave](https://brave.com/)** or **[Cromite](https://github.com/uazo/cromite)**. @@ -36,9 +36,9 @@ For iOS **[Orion](https://kagi.com/orion/)**, [Brave](https://brave.com/) or Saf ### Movies / Shows -* **Streaming: [Hexa](https://hexa.watch/) / [XPrime](https://xprime.tv/)** +* **Streaming: [movie-web](https://erynith.github.io/movie-web-instances/) / [Cineby](https://www.cineby.app/) / [Hexa](https://hexa.watch/)** * **Torrenting: [1337x](https://1337x.to/movie-library/1/)** -* **Sports Streaming: [Streamed](https://streamed.su/) / [Sportsurge](https://v2.sportsurge.net/home4/)** +* **Sports Streaming: [Streamed](https://streamed.su/) / [WatchSports](https://watchsports.to/)** * **Drama Streaming: [KissAsian](https://kissasian.video/)** * **Track / Discover: [Trakt](https://trakt.tv/) / [Simkl](https://simkl.com/) / [Letterboxd](https://letterboxd.com/)** @@ -46,7 +46,7 @@ For iOS **[Orion](https://kagi.com/orion/)**, [Brave](https://brave.com/) or Saf ### Anime -* **Streaming: [AnimeKai](https://animekai.to/home) / [Miruro](https://www.miruro.com/) / [HiAnime](https://hianimez.to/)** +* **Streaming: [AnimeKai](https://animekai.to/) / [Miruro](https://www.miruro.com/) / [HiAnime](https://hianime.to/)** * **Downloading: [Tokyo Insider](https://www.tokyoinsider.com/) / [Hi10Anime](https://hi10anime.com/)** * **Torrenting: [Nyaa](https://nyaa.si/) / [Miru](https://miru.watch/)** * **Track / Discover: [MyAnimeList](https://myanimelist.net/) / [AniList](https://anilist.co/)** @@ -56,8 +56,8 @@ For iOS **[Orion](https://kagi.com/orion/)**, [Brave](https://brave.com/) or Saf ### Music * **Streaming: [SpotX](https://github.com/SpotX-Official/SpotX) / [Custom YouTube Music](https://th-ch.github.io/youtube-music/)** -* **Downloading: [lucida](https://lucida.to/) / [Soulseek](https://slsknet.org/)** -* **Mobile: [ReVanced Manager](https://revanced.app/) (Android) / [OuterTune](https://github.com/OuterTune/OuterTune) (Android) / [EeveeSpotify](https://github.com/whoeevee/EeveeSpotify) (iOS)** +* **Downloading: [DoubleDouble](https://doubledouble.top/) / [Soulseek](https://slsknet.org/)** +* **Mobile: [ReVanced Manager](https://revanced.app/) (Android) / [Metrolist](https://github.com/mostafaalagamy/metrolist) (Android) / [EeveeSpotify](https://github.com/whoeevee/EeveeSpotify) (iOS)** * **Track / Discover: [Last.fm](https://www.last.fm/home) / [RateYourMusic](https://rateyourmusic.com/)** *** @@ -73,7 +73,7 @@ For iOS **[Orion](https://kagi.com/orion/)**, [Brave](https://brave.com/) or Saf ### Reading -* **Downloading: [Anna's Archive](https://annas-archive.org/) / [Library Genesis](https://libgen.rs/) / [Z-Library](https://z-lib.gd/) / [Mobilism](https://forum.mobilism.org)** +* **Downloading: [Anna's Archive](https://annas-archive.org/) / [Library Genesis](https://libgen.rs/) / [Z-Library](https://z-lib.gd/) / [Bookracy](https://bookracy.ru/)** * **Audiobooks: [AudiobookBay](https://audiobookbay.lu/) / [Mobilism Audiobooks](https://forum.mobilism.org/viewforum.php?f=124) / [Tokybook](https://tokybook.com/)** * **Manga: [ComicK](https://comick.io/) / [Weeb Central](https://weebcentral.com/) / [MangaDex](https://mangadex.org/)** * **Comics: [ReadComicsOnline](https://readcomiconline.li/) / [GetComics](https://getcomics.org/)** @@ -99,7 +99,7 @@ Before installing any file, it's recommended to scan the setup / install with ** Privacy is about controlling your personal information, not just keeping things secret. Non-sensitive data is used by companies to track your behavior, target ads, and influence your choices. -For email privacy, we recommend **[Proton](https://proton.me/mail)** and for search **[SearX](https://searx.nixnet.services/)**. It's also good to check sites like **[HaveIBeenPwned](https://haveibeenpwned.com/Passwords)** to make sure your info hasn't been part of any recent data breaches. +For email privacy, we recommend **[Proton](https://proton.me/mail)** and for search **[SearX](https://searx.fmhy.net/)**. It's also good to check sites like **[HaveIBeenPwned](https://haveibeenpwned.com/Passwords)** to make sure your info hasn't been part of any recent data breaches. !!!note It's best *not* to use your main email or password when you sign up for piracy sites. It's good to use a different password on every site you register for, that way if a breach happens, only the password for that one site is compromised. You can also use email [aliasing](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/internet-tools/#wiki_.25B7_email_aliasing). @@ -111,12 +111,13 @@ For email privacy, we recommend **[Proton](https://proton.me/mail)** and for sea > How can I download / activate Windows for free? -Download an ISO from Massgrave's **[Genuine Installation Media](https://massgrave.dev/genuine-installation-media)** page, and follow the **[Clean Install Windows Guide](https://gravesoft.dev/clean_install_windows)** to install it. After install, activate it with **[Microsoft Activation Scripts](https://massgrave.dev/)**. +Download an ISO from Massgrave's **[Genuine Installation Media](https://massgrave.dev/genuine-installation-media)** page, and follow the **[Clean Install Windows Guide](https://gravesoft.dev/clean_install_windows)** to install it. After install, activate it with **[Microsoft Activation Scripts](https://massgrave.dev/)**. If you'd like to use Windows 10 past its End-Of-Life date, follow **[Windows 10 After EOL](https://massgrave.dev/windows10_eol)**. +* **[Windows Install / Debloat Guide](https://gist.github.com/VVispy/17b228cd9c151a495e7576255e1713b9)** * **Software Piracy: [CRACKSurl](https://cracksurl.com/) / [LRepacks](https://lrepacks.net/)** -* **Adobe Piracy: [m0nkrus](https://w16.monkrus.ws/) / [2](https://vk.com/monkrus) / [3](https://monkrus.dvuzu.com/)** +* **Adobe Piracy: [Adobe Quick Guide](https://rentry.co/FMHYBase64#adobe-guide)** -!!!note Be aware that people have been known to steal from M0nkrus and upload altered versions of their apps that contain harmful elements. Always double-check that you're on the official site before downloading anything. +!!!note Be aware that unofficial sources often re-upload M0nkrus's repacks, sometimes with added malware. Always verify you are downloading from M0nkrus's actual site, which we link on FMHY before downloading anything. Do not trust search engine results blindly for such specific repackers. *** @@ -124,7 +125,7 @@ Download an ISO from Massgrave's **[Genuine Installation Media](https://massgrav > Do I need a VPN to torrent? -Downloading files through torrenting can cause issues with your ISP, so using a **[VPN](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/adblock-vpn-privacy#wiki_.25BA_vpn)** is a must in most countries. You should also **[bind your VPN](https://redd.it/ssy8vv)** to your torrent client to avoid leaks from accidental disconnects. You can also use **[Remote Torrenting Services](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/torrent#wiki_.25B7_remote_torrenting)** to avoid the need for a VPN altogether. +Downloading files through torrenting can cause issues with your ISP, so using a **[VPN](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/adblock-vpn-privacy#wiki_.25BA_vpn)** is a must in most countries. You should also **[bind your VPN](https://gist.github.com/VVispy/765c6723436f386ef113040f8fc968b8)** to your torrent client. This ensures that if your VPN connection drops, your torrent client stops all traffic, preventing your real IP address from being exposed. You can also use **[Remote Torrenting Services](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/torrent#wiki_.25B7_remote_torrenting)** to avoid the need for a VPN altogether. > What is Port Forwarding? Do I need it? diff --git a/docs/devtools.md b/docs/devtools.md index 0492f2882..e4331f530 100644 --- a/docs/devtools.md +++ b/docs/devtools.md @@ -6,9 +6,8 @@ # ► Dev Communities -* 🌐 **[Programming-Telegram-Group](https://github.com/hendisantika/List-All-Programming-Telegram-Group)** - Telegram Communities * ⭐ **[StackOverflow](https://stackoverflow.com/)** - Developer Forum -* ⭐ **[XDA](https://xdaforums.com/)** - App Development Forum +* ⭐ **[XDA](https://xdaforums.com/)** - App Development Forum / [Discord](https://discord.com/invite/e4v8qtkcBw) * [CodeProject](https://www.codeproject.com/) - Developer Forum * [Spiceworks Community](https://community.spiceworks.com/) - Developer Forum * [DEV Community](https://dev.to/) - Developer Forum @@ -20,6 +19,7 @@ * [The Devs Network](https://thedevs.network/) - Developer Chat * [DevBuddies](https://buddies.dev/) - Search for Programming Partners * [StackShare](https://stackshare.io/) - Tech Stack Collaboration +* [Cloudflare Dev](https://discord.com/invite/cloudflaredev) - Official Cloudflare Discord *** @@ -27,13 +27,9 @@ * ⭐ **[KrebsOnSecurity](https://krebsonsecurity.com/)** - Cybersecurity News * ⭐ **[Lobsters](https://lobste.rs/)** - Dev News / [Highlighter](https://greasyfork.org/en/scripts/40906) -* [TechURLs](https://techurls.com/) - Dev / Tech News * [DevURLs](https://devurls.com/) - Dev News -* [Techmeme](https://www.techmeme.com/) - Dev News -* [The Brutalist Report](https://brutalist.report/) - Dev News * [jimmyr](https://jimmyr.com/) - Dev News * [daily.dev](https://app.daily.dev/posts) - Dev News -* [TheCyberPost](https://thecyberpost.com/) - Cybersecurity News * [Talos Blog](https://blog.talosintelligence.com/) - Cybersecurity News * [IT Security Guru](https://www.itsecurityguru.org/) - Cybersecurity News * [This Week in Rust](https://this-week-in-rust.org/) - Rust News / Updates @@ -47,19 +43,15 @@ # ► Developer Tools -* 🌐 **[Best-Websites](https://github.com/sdmg15/Best-websites-a-programmer-should-visit)** - Programming Resources -* 🌐 **[Awesome Sys Admin](https://github.com/awesome-foss/awesome-sysadmin)** - System Admin Resources -* 🌐 **[Awesome Design Patterns](https://github.com/DovAmir/awesome-design-patterns)** - Design Pattern Resources -* ↪️ **[Multi-Tool Dev Sites](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_multi_dev_tool_sites)** * ↪️ **[Data Visualization Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage/#wiki_data_visualization_tools)** -* ⭐ **[DevDocs](https://devdocs.io/)** / [GitHub](https://github.com/freeCodeCamp/devdocs) or [ZealDocs](https://zealdocs.org/) - Dev Documentation * ⭐ **[DevToys](https://devtoys.app/)** - Dev Multi-Tool App / [GitHub](https://github.com/DevToys-app/DevToys) +* ⭐ **[DevDocs](https://devdocs.io/)** / [GitHub](https://github.com/freeCodeCamp/devdocs) or [ZealDocs](https://zealdocs.org/) - Dev Documentation * ⭐ **[ImHex](https://imhex.werwolv.net/)** / [Web Version](https://web.imhex.werwolv.net/) / [GitHub](https://github.com/WerWolv/ImHex) or [HexEd.it](https://hexed.it/) - Hex Editors * [Slidev](https://sli.dev/) - Developer Presentation Slides / [GitHub](https://github.com/slidevjs/slidev) * [Devhints](https://devhints.io/) - Developer Cheat Sheets * [Dev Emoji List](https://gist.github.com/oliveratgithub/0bf11a9aff0d6da7b46f1490f86a71eb) - Emoji-List with Names, Shortcodes, Unicode & HTML Entities * [Student Developer Pack](https://education.github.com/pack) - Free Developer Tools for Students -* [choose-a-license](https://writefreesoftware.org/learn/participate/choose-a-license/) or [ChooseALicense](https://choosealicense.com/) - How to pick a license +* [choose-a-license](https://writefreesoftware.org/learn/participate/choose-a-license/), [SPDX License List](https://spdx.org/licenses/) or [ChooseALicense](https://choosealicense.com/) - License Picking Guides / Lists * [PrivacyPolicyTemplate](https://www.privacypolicytemplate.net/) - Generate Privacy Policies * [Eternal Terminal](https://eternalterminal.dev/) or [NxShell](https://nxshell.github.io/) - SSH Clients / Servers * [PuTTY](https://www.chiark.greenend.org.uk/~sgtatham/putty/) - SSH & Telnet Client / [Multi-Tab](https://ttyplus.com/) / [Fork](https://www.9bis.net/kitty/#!index.md) / [GitHub](https://github.com/cyd01/KiTTY/) @@ -76,7 +68,7 @@ * [devSwag](https://devswag.io/) - Developer Giveaways * [Commands.dev](https://www.commands.dev/) - Terminal Commands * [Linear](https://linear.app/), [AirBroke](https://airbroke.icorete.ch/) or [Glitchtip](https://glitchtip.com) - Error Tracking Platforms -* [UMLet](https://www.umlet.com/) or [JDL Studio](https://start.jhipster.tech/jdl-studio/) - Create UML Diagrams +* [UMLet](https://www.umlet.com/), [PlanetUML](https://www.plantuml.com/) or [JDL Studio](https://start.jhipster.tech/jdl-studio/) - UML Diagrams Generators / Creators * [Mockaroo](https://mockaroo.com/) - Generate Mock Data * [Mockium](https://softwium.com/mockium/) - Generate Test Data * [Globster](https://globster.xyz/) - Test Glob Patterns @@ -91,6 +83,40 @@ *** +## ▷ Dev Tool Indexes + +* ⭐ **[Free for Developers](https://free-for.dev/)** / [GitHub](https://github.com/ripienaar/free-for-dev) +* [Useful Tools](https://trolologuy.github.io/useful-tools/) / [GitHub](https://github.com/trolologuy/useful-tools) +* [Best-Websites](https://github.com/sdmg15/Best-websites-a-programmer-should-visit) +* [Tiny Helpers](https://tiny-helpers.dev/) / [GitHub](https://github.com/stefanjudis/tiny-helpers) +* [Tiny Tools](https://tinytools.directory/) +* [Free For Life](https://free.hrsn.dev/) / [GitHub](https://github.com/wdhdev/free-for-life/) +* [WebdevHome](https://webdevhome.github.io/) +* [Free Developer Stuff](https://freestuff.dev/) +* [Addy](https://toolkit.addy.codes/) +* [Prototypr](https://prototypr.io/toolbox/page/1) +* [Awesome Sys Admin](https://github.com/awesome-foss/awesome-sysadmin) - System Admin Resources +* [Awesome Design Patterns](https://github.com/DovAmir/awesome-design-patterns) - Design Pattern Resources + +*** + +## ▷ Online Toolkits + +* ⭐ **[AppDevTools](https://appdevtools.com/)** +* [IT Tools](https://it-tools.tech/) +* [Web Toolbox](https://web-toolbox.dev/en) +* [devina](https://devina.io/) +* [w3resource](https://www.w3resource.com/) +* [wangchujiang](https://wangchujiang.com/tools/) +* [SmallDev.tools](https://smalldev.tools/) +* [Coders Tool](https://www.coderstool.com/) +* [Utilities and Tools](https://utilities-online.info/) +* [Clean CSS](https://www.cleancss.com/) +* [FreeFormatter.com](https://freeformatter.com/) +* [Online String Tools](https://onlinestringtools.com/) + +*** + ## ▷ Software Dev Tools * 🌐 **[Awesome Software Quality](https://github.com/ligurio/sqa-wiki/wiki)** - Software Quality Testing Resources @@ -132,6 +158,8 @@ * [ADB](https://github.com/ashishb/adb-enhanced) or [Appium](https://appium.io/) / [GitHub](https://github.com/appium/appium) - Automated App Testing * [Privado](https://docs.privado.ai) - Generate App Privacy Reports / [GitHub](https://github.com/Privado-Inc/privado) * [PM2](https://pm2.keymetrics.io/) - Process Manager +* [Andure](https://github.com/leohku/andure) - Android Chrome Dev Tools +* [CS Android](https://cs.android.com/) - Android Code Search * [useAnimations](https://useanimations.com/index.html) - Animated Icon Pack * [Official Android Courses](https://developer.android.com/courses) - Android Training Courses * [Android Libhunt](https://android.libhunt.com/) - Android Packages @@ -153,7 +181,8 @@ * 🌐 **[Awesome Big Data](https://github.com/oxnr/awesome-bigdata)** - Big Data Resources * ⭐ **[DB Browser](https://sqlitebrowser.org/)**, [SQLook](https://sqlook.com/), [DuckDB](https://duckdb.org/), [SQL Lite Studio](https://sqlitestudio.pl/) or [HeidiSQL](https://www.heidisql.com/) - SQL Managers * [Sqlable](https://sqlable.com/) - SQL Tools -* [Grafana](https://grafana.com/) or [Beszel](https://beszel.dev/) - Dev Data Dashboards +* [Beszel](https://beszel.dev/) - Dev Data Dashboard +* [Grafana](https://grafana.com/) - Self-Hosted Dev Data Dashboard * [DBeaver](https://dbeaver.io/) - Universal Database Tool * [ChartDB](https://chartdb.io/) - Database Visualization / [GitHub](https://github.com/chartdb/chartdb) * [Ingestr](https://bruin-data.github.io/ingestr/) - Transfer Data between Databases @@ -163,7 +192,6 @@ * [SQL Cheat Sheet](https://i.ibb.co/Ctr0Tn8/e289a15e2246.jpg) - SQL Cheat Sheet * [Gel](https://www.geldata.com/) - SQL Alternative * [QueryStorm](https://querystorm.com/) - SQL and .NET programming in Excel -* [SQLizer](https://sqlizer.io/) - Convert Files To SQL Databases * [franchise](https://franchise.cloud/) - SQL Notebook *** @@ -175,7 +203,7 @@ * 🌐 **[Forge Comparison](https://git.sdf.org/humanacollaborator/humanacollabora/src/branch/master/forge_comparison.md)**, [Forgejo](https://forgejo.org/compare/#only-develops-free-software) or [Forgeperf.org](https://forgeperf.org/) - Git Collab Tool Comparison * ↪️ **[Git Project Indexes](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_git_projects)** * ⭐ **[Git-Fork](https://git-fork.com/)**, [GitButler](https://github.com/gitbutlerapp/gitbutler) or [GitQlient](https://github.com/francescmm/GitQlient) - Git Desktop Clients -* ⭐ **[Codeberg](https://codeberg.org/)**, [Drift](https://drift.lol/), [Gitea](https://about.gitea.com/), [GitLab.com](https://about.gitlab.com/) or [sourcehut](https://sourcehut.org/) - GitHub Alts / Version Control Systems +* ⭐ **[Codeberg](https://codeberg.org/)** / [Matrix](https://matrix.to/#/#codeberg-space:matrix.org), [Drift](https://drift.lol/), [Gitea](https://about.gitea.com/), [GitLab.com](https://about.gitlab.com/) or [sourcehut](https://sourcehut.org/) - GitHub Alts / Version Control Systems * [Git](https://git-scm.com/) - Version Control System * [searchcode](https://searchcode.com/) or [PublicWWW](https://publicwww.com/) - Source Code Search * [git-sim](https://github.com/initialcommit-com/git-sim) - Visually Simulate Git Operations Before Running @@ -207,7 +235,6 @@ ## ▷ GitHub Tools -* 🌐 **[Awesome GitHub](https://github.com/fffaraz/awesome-github)** - GitHub Resources * 🌐 **[OSS Insight](https://ossinsight.io/)** - GitHub Project Index * 🌐 **[Awesome First PR Opportunities](https://github.com/MunGell/awesome-for-beginners)** - Beginner FOSS Project Index * 🌐 **[Awesome Actions](https://github.com/sdras/awesome-actions)** - GitHub Action Resources @@ -227,6 +254,7 @@ * [ActionServerless](https://github.com/gitfx/ActionServerless) - Create Serverless Service * [Rahularity](https://gist.github.com/rahularity/86da20fe3858e6b311de068201d279e3) - Use Multiple Git Accounts at Once * [dotfiles](https://dotfiles.github.io/) - GitHub Dotfiles +* [Chezmoi](https://www.chezmoi.io/) - Dotfile Managers * [GitHub Web IDE](https://chromewebstore.google.com/detail/github-web-ide/adjiklnjodbiaioggfpbpkhbfcnhgkfe) - Web IDE / [GitHub](https://github.com/zvizvi/GitHub-Web-IDE) * [Octobox](https://octobox.io/), [Gitify](https://www.gitify.io/), [advanced-github-notifier](https://github.com/freaktechnik/advanced-github-notifier), [PR Monitor](https://github.com/fwouts/prmonitor), [Gitification](https://github.com/Gitification-App/gitification) or [CatLight](https://catlight.io/) - GitHub Notifications * [github1s](https://github1s.com/) - GitHub Code Viewer / GUI: do `gitk` in Repo Folder @@ -249,15 +277,15 @@ * [Octotree](https://www.octotree.io/) - GitHub Repo File Tree View * [Nightly.link](https://nightly.link/) - GitHub Sharable Nightly Links * [ActionFlow](https://actionsflow.github.io/) - Action Workflow Automation +* [act](https://nektosact.com/) - Run GitHub Actions Locally / [GitHub](https://github.com/nektos/act) * [shot-scraper-template](https://github.com/simonw/shot-scraper-template) - Take Automated Screenshots of Web Pages * [Star History](https://star-history.com/) - Repository Star History Graph -* [GitWhoIs](https://gitwhois.com/ ) - GitHub Repo History / Info +* [GitWhoIs](https://gitwhois.com/) - GitHub Repo History / Info * [Gitstar Ranking](https://gitstar-ranking.com/) - Git Repo Star Rankings * [GithubReleasesBot](https://telegram.me/GithubReleasesBot) - Repository Change Feeds * [GitHub Markdown Preview](https://aviaryan.github.io/javascripts/github.md/) - Preview GH Markdown * [ReadmeGallery](https://felixhayashi.github.io/ReadmeGalleryCreatorForGitHub/) - GitHub Readme Gallery Creator * [GitHub Readme Stats](https://github.com/anuraghazra/github-readme-stats) - Dynamically Generated GitHub Readme Stats -* [GitHub Contribution Graph](https://github.com/ez4o/github-contribution-graph) - Add GitHub ReadMe Contribution / Commit Graph * [GitHub Readme Quotes](https://github-readme-quotes-returns.vercel.app/) - GitHub Readme Quote Generator / [GitHub](https://github.com/shravan20/github-readme-quotes) * [Shields.io](https://shields.io/) - Metadata Badges for GitHub Readme * [SkillIcons](https://skillicons.dev/), [Badgers](https://badgers.space/), [SpaceBadgers](https://github.com/splittydev/spacebadgers) or [SimpleBadges](https://badges.pages.dev/) / [GitHub](https://github.com/developStorm/simple-badges) - Skill Badges for GitHub Readme / Resumes @@ -266,18 +294,17 @@ * [GitHub Snake](https://dev.to/mishmanners/how-to-enable-github-actions-on-your-profile-readme-for-a-contribution-graph-4l66) - Enable Snake Game on GitHub Readme * [GitHub Profile Readme Generator](https://rahuldkjain.github.io/gh-profile-readme-generator/) or [GPRM](https://gprm.itsvg.in/) - Generate Git Profile Readme * [GitStalk](https://gitstalk.netlify.app/) - GitHub Profile Info Search -* [ProfileMe.dev](https://www.profileme.dev/) - Create GitHub Profile * [Beautify GitHub Profile](https://github.com/rzashakeri/beautify-github-profile) - Custom GitHub Profile Resources * [Discord MD Badge](https://github.com/gitlimes/dcbadge) - Add Discord Badge to GitHub * [github-material-icons-extension](https://github.com/material-extensions/material-icons-browser-extension) - Material Icons -* [gist.io](https://gist.io/) - Git Blog Platform +* [gist.io](https://gist.io/) or [Gmeek](https://github.com/Meekdai/Gmeek) - Git Blog Platform *** ## ▷ Docker Tools * 🌐 **[Awesome Docker](https://moistcatawumpus.github.io/awesome-docker/)** - Docker Services Index -* 🌐 **[Selfhosted-Apps-Docker](https://github.com/DoTheEvo/selfhosted-apps-docker)** - Self-hosted Docker Apps / Guides +* 🌐 **[Selfhosted-Apps-Docker](https://github.com/DoTheEvo/selfhosted-apps-docker)** - Self-Hosted Docker Apps / Guides * ⭐ **[Docker](https://www.docker.com/)** - Build, Manage and Run Apps in Containers * ⭐ **[portainer](https://portainer.io/)**, [yacht](https://yacht.sh/), [DockGE](https://dockge.kuma.pet/), [moncho](https://moncho.github.io/dry/) or [podman](https://podman.io/) / [2](https://podman-desktop.io/) - Container Managers * ⭐ **[Composerize](https://www.composerize.com/)**, [2](https://github.com/irbigdata/data-dockerfiles) - Compose Docker Files @@ -299,17 +326,17 @@ ## ▷ CLI Tools -* ↪️ **[CLI Cheat Sheets](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_cli_cheat_sheets)** +* ↪️ **[CLI Cheat Sheets](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/linux#wiki_.25B7_cli_cheat_sheets)** * [Awesome CLI](https://github.com/umutphp/awesome-cli) - CLI Interface for Searching Awesome Lists -* [Charm](https://charm.sh/) - Add Backend to Terminal Based Apps +* [Charm](https://charm.sh/) - Add Backend to Terminal-Based Apps * [OhMyPosh](https://ohmyposh.dev/) - Terminal Theme Engines * [Lip Gloss](https://github.com/charmbracelet/lipgloss) - Style Definitions for Terminal Layouts * [sshx](https://sshx.io/) - Share Terminal Screen / [GitHub](https://github.com/ekzhang/sshx) * [cURL](https://curl.se/) - Transfer Data with URLs / [Converter](https://curlconverter.com/) / [IP Lookup](http://ifconfig.me/) -* [ripgrep](https://github.com/BurntSushi/ripgrep) or [Sift](https://sift-tool.org/) - grep Alternatives +* [ripgrep](https://github.com/BurntSushi/ripgrep) or [Sift](https://sift-tool.org/) - `grep` Alternatives * [Edbrowse](https://edbrowse.org/) - Command Line Editor / Browser / Mail Client * [Command Not Found](https://command-not-found.com/) - Install Missing Commands -* [Atuin](https://atuin.sh/) - Sync, search and backup shell history +* [Atuin](https://atuin.sh/) - Sync, Search and Backup Shell History * [pueue](https://github.com/Nukesor/pueue) - Shell Command Manager * [Zoxide](https://github.com/ajeetdsouza/zoxide) - Improved CD Command * [yoctocolors](https://github.com/sindresorhus/yoctocolors) - Command Line Coloring Package @@ -320,13 +347,15 @@ ## ▷ API Tools -* 🌐 **[Public APIs](https://github.com/public-apis/public-apis)**, [API List](https://apilist.fun/), [Public APIs](https://publicapis.dev/), [APIsList](https://apislist.com/), [APIs Guru](https://apis.guru/), [FreePublicAPIs](https://www.freepublicapis.com/), [Public API Lists](https://github.com/public-api-lists/public-api-lists), [APIVault](https://apivault.dev/) or [Any API](https://any-api.com/) - API Indexes +* 🌐 **[Public APIs](https://github.com/public-apis/public-apis)**, [API List](https://apilist.fun/), [Public APIs](https://publicapis.dev/), [APIsList](https://apislist.com/), [APIs Guru](https://apis.guru/), [FreePublicAPIs](https://www.freepublicapis.com/), [Public API Lists](https://github.com/public-api-lists/public-api-lists), [PublicAPIs](https://publicapis.io/), [APIVault](https://apivault.dev/) or [Any API](https://any-api.com/) - API Indexes * 🌐 **[Awesome API Security](https://github.com/arainho/awesome-api-security)** or [APIKit](https://github.com/API-Security/APIKit) - API Security Resources * 🌐 **[Streaming Site APIs](https://rentry.co/FMHYBase64#streaming-apis)** +* 🌐 **[Manga APIs](https://rentry.co/manga-apis)** - Manga Site APIs * 🌐 **[List of Providers](https://docs.consumet.org/list-of-providers)** - Piracy Site APIs -* 🌐 **[Free AI Stuff](https://github.com/zukixa/cool-ai-stuff)** / [2](https://cas.zukijourney.com/), [Respy](https://respy.tech/api-providers/), [FreeAPIProviders](https://rentry.co/freeapiproviders) or [API Together](https://api.together.xyz/playground) - LLM / AI API Indexes +* 🌐 **[NASA API](http://api.nasa.gov/)** - NASA Open APIs +* 🌐 **[Free AI Stuff](https://github.com/zukixa/cool-ai-stuff)** / [2](https://cas.zukijourney.com/), [FreeAPIProviders](https://rentry.co/freeapiproviders) or [API Together](https://api.together.xyz/playground) - LLM / AI API Indexes * 🌐 **[Countless](https://countless.dev/)** - AI API Price Comparisons -* ⭐ **[hoppscotch](https://hoppscotch.io/)**, [Firecamp](https://firecamp.dev/), [Strapi](https://strapi.io/) or [Postman](https://www.postman.com/) - API Builders +* ⭐ **[hoppscotch](https://hoppscotch.io/)**, [Firecamp](https://firecamp.dev/) or [Strapi](https://strapi.io/) - API Builders * ⭐ **[Shizuku](https://shizuku.rikka.app/)** or [Dhizuku](https://github.com/iamr0s/Dhizuku) - Let Apps Use System API (Android) * [Wyzie Subs](https://sub.wyzie.ru/) - Subtitle Scraping API / [NPM Package](https://www.npmjs.com/package/wyzie-lib) / [Docs](https://docs.wyzie.ru/) * [HTTPie](https://httpie.io/) - Test REST, GraphQL, and HTTP APIs @@ -359,7 +388,7 @@ * ⭐ **[LLM Visualization](https://bbycroft.net/llm)** - Learn how LLMs Work * [Awesome Generative AI Guide](https://github.com/aishwaryanr/awesome-generative-ai-guide) - LLM Research Resources * [Machine Learning Roadmap](https://rentry.org/machine-learning-roadmap), [SAAYN](https://spreadsheets-are-all-you-need.ai/), [machine-learning-zoomcamp](https://github.com/DataTalksClub/machine-learning-zoomcamp), [ML Engineering](https://github.com/stas00/ml-engineering) or [LLM Course](https://github.com/mlabonne/llm-course) - Learn Machine Learning -* [LLM Text Complation](https://github.com/molbal/llm-text-completion-finetune) - LLM Finetuning / Text Complation +* [LLM Text Complation](https://github.com/molbal/llm-text-completion-finetune) or [Unsloth](https://github.com/unslothai/unsloth?tab=readme-ov-file#-finetune-for-free) - LLM Finetuning / Text Complation * [DeepSpeed](https://www.deepspeed.ai/) - Deep Learning Optimization Library * [Netron](https://github.com/lutzroeder/netron) - Visualizer for Neural Network, Deep Learning, and Machine Learning Models * [MMDeploy](https://mmdeploy.readthedocs.io/en/latest/) - Deep Learning Model Deployment Toolset / [GitHub](https://github.com/open-mmlab/mmdeploy) @@ -387,9 +416,27 @@ *** +## ▷ Game Assets + +* [Itch.io Assets](https://itch.io/game-assets/free) - Free Game Assets +* [Kenney](https://www.kenney.nl/) - Free Game Assets +* [Dev Assets](https://devassets.com/) - Free Game Assets +* [Quaternius](https://quaternius.com/) - Free Game Assets +* [Game UI Database](https://www.gameuidatabase.com/) - Game UI Database +* [Game-icons](https://game-icons.net/) - Game Icons +* [/r/GameAssets](https://www.reddit.com/r/gameassets/) - Reddit Community +* [AssetRipper](https://github.com/AssetRipper/AssetRipper) / [Discord](https://discord.gg/XqXa53W2Yh) or [AssetStudio](https://github.com/zhangjiequan/AssetStudio) - Extract Assets from Unity Files +* [CraftPix](https://craftpix.net/freebies/) - 2D Game Assets +* [xonotic](https://github.com/xonotic) or [Warsow](https://github.com/Warsow) - FPS Game Assets +* [GameDev Market](https://www.gamedevmarket.net/) - Assets for Indie Developers +* [OpenGameArt.org](https://opengameart.org/) - Game Art Community +* [UnityFreaks](https://www.unityfreaks.com/), [AssetStore](https://assetstore.unity.com/search#cf-ec_category=3d&nf-ec_price_filter=0...0) or [GameDevUE](https://t.me/GameDevUE) - Unity & Unreal Engine Assets +* [SteamGridDB](https://www.steamgriddb.com/) - Custom Video Game Assets + +*** + ## ▷ Asset Creation -* ↪️ **[Download Game Assets](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_game_assets)** * ↪️ **[3D Models / Modeling Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/img-tools#wiki_.25B7_3d_models)** * ↪️ **[Design Tools / Resources](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/img-tools/)** * ↪️ **[Art Resources](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/edu/#wiki_.25B7_art_.2F_editing)** @@ -432,9 +479,9 @@ # ► IDEs / Code Editors * ↪️ **[Text Editors / Notes](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/text-tools/#wiki_.25BA_text_editors)** -* ⭐ **[VSCodium](https://vscodium.com/)** or **[Visual Studio Code](https://code.visualstudio.com/)**, [2](https://vscode.dev/), [3](https://cs50.dev/) - Code Editor / [Extensions](https://www.vsixhub.com/) +* ⭐ **[VSCodium](https://vscodium.com/)** or **[Visual Studio Code](https://code.visualstudio.com/)**, [2](https://vscode.dev/), [3](https://cs50.dev/) - Code Editor / [Extensions](https://www.vsixhub.com/) / [Extention Marketplace](https://rentry.co/vscodiumguide) * ⭐ **[JetBrains](https://jetbrains.com/)** / [Unlock](https://rentry.co/FMHYBase64#jetbrains) / [License Server](https://github.com/crazy-max/docker-jetbrains-license-server) -* ⭐ **[Neovim](https://neovim.io/)** - Code Editor +* ⭐ **[Neovim](https://neovim.io/)** - Code Editor / [Matrix](https://matrix.to/#/#neovim:matrix.org) * ⭐ **[Lite XL](https://lite-xl.com/)** or [Pragtical](https://pragtical.dev/) - Code Editor / [Plugin Manager](https://github.com/lite-xl/lite-xl-plugin-manager) / [Plugins](https://github.com/lite-xl/lite-xl-plugins) / [Themes](https://github.com/lite-xl/lite-xl-colors) * ⭐ **[Emacs](https://www.gnu.org/software/emacs/)** - Code Editor / [Docs](https://emacsdocs.org/) / [Resources](https://github.com/emacs-tw/awesome-emacs) * ⭐ **[WebDen](https://webden.dev/)**, [Sharplab](https://sharplab.io/), [tech.io](https://tech.io/) or [CodingGround](https://www.tutorialspoint.com/codingground.htm) - Code Playgrounds @@ -452,7 +499,7 @@ * [ecode](https://github.com/SpartanJ/ecode) - Code Editor * [Competitive Editor](https://cpeditor.org/) - Competitive Programming Editor * [JSON Hero](https://jsonhero.io/) - JSON Viewer / Editor -* [Apache NetBeans](https://netbeans.apache.org/), [KDevelop](https://www.kdevelop.org/), [Mitosis](https://mitosis.builder.io/), [Lazarus](https://www.lazarus-ide.org/) or [OpenShift](https://developers.redhat.com/products/openshift-dev-spaces/overview) - Cross Platform IDEs +* [Apache NetBeans](https://netbeans.apache.org/), [KDevelop](https://www.kdevelop.org/), [Mitosis](https://mitosis.builder.io/), [Lazarus](https://www.lazarus-ide.org/) or [OpenShift](https://developers.redhat.com/products/openshift-dev-spaces/overview) - Cross-Platform IDEs * [TidalCycles](https://tidalcycles.org/) - Live Algorithmic Coding Environment / [Discord](https://discord.com/invite/ugFq7KfGnB) * [SciTE](https://www.scintilla.org/SciTE.html) - Source Code Editor for Win32 and X @@ -465,7 +512,7 @@ * ↪️ **[Code Collaboration Platforms](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/text-tools#wiki_.25B7_text_.2F_code_collaboration)** * ⭐ **[goormIDE](https://ide.goorm.io/)** - Cloud IDE * ⭐ **[Google Colaboratory](https://colab.research.google.com/)** - Cloud IDE -* ⭐ **[CodeSandbox](https://codesandbox.io/)**, [StackBlitz](https://stackblitz.com/) or [GitPod](https://www.gitpod.io/) - VSCode Cloud IDE +* ⭐ **[CodeSandbox](https://codesandbox.io/)** or [StackBlitz](https://stackblitz.com/) - VSCode Cloud IDE * ⭐ **[judge0](https://ide.judge0.com/)** - Online Code Editor / [Discord](https://discord.com/invite/GRc3v6n) * [Fleet](https://www.jetbrains.com/fleet/) - Cloud IDE * [CodeTasty](https://codetasty.com/) - Cloud IDE @@ -475,10 +522,9 @@ * [html-css-js](https://html-css-js.com/) - Cloud IDE * [Collabedit](https://collabedit.com/) - Cloud IDE * [CoderPad](https://pad.new/) - Cloud IDE -* [zed](https://zed.dev/) - Cloud IDE * [Ideone](https://www.ideone.com/) - Cloud IDE * [PlayCode](https://playcode.io/) - Cloud IDE -* [pad.ws](https://pad.ws/) - Whiteboard Style Cloud IDE / [GitHub](https://github.com/pad-ws/pad.ws) +* [pad.ws](https://pad.ws/) - Whiteboard Style Cloud IDE / [GitHub](https://github.com/pad-ws/pad.ws) * [Openshift](https://workspaces.openshift.com/) - Cloud IDE / Eclipse Che * [Arduino](https://cloud.arduino.cc/) - Cloud IDE for Arduino * [Shell Cloud](https://shell.cloud.google.com/) - Google Cloud Shell Environment @@ -507,7 +553,6 @@ * [VHEditor](https://github.com/vhqtvn/VHEditor-Android) - VSCode Editor * [diohub](https://github.com/NamanShergill/diohub), [PuppyGit](https://github.com/catpuppyapp/PuppyGit) or [OctoDroid](https://github.com/slapperwan/gh4a) - Android Git Clients * [GitSync](https://github.com/ViscousPot/GitSync) - Android Git Remote Repo Sync -* [Gidget](https://github.com/GDGVIT/gidget) - GitHub Notifications / Android * [FlutterMarkdownEditor](https://github.com/adeeteya/FlutterMarkdownEditor) - Markdown Editor *** @@ -534,6 +579,7 @@ * [ShortCode](https://shortcode.dev/) or [CodeList](https://codelist.cc/v3/) - Script / Code Indexes * [AnimateCode](https://www.animate-code.com/) - Create Code Animations * [DelphiTools](https://www.delphitools.info/) - Code Profiler / Delphi Tools +* [Zathura](https://www.zathura.dev/) - GUI Debugger for Assembly * [Adrenaline](https://useadrenaline.com/) or [Console Ninja](https://console-ninja.com/) - Code Debugging * [JBin](https://jsbin.com/) or [Replay](https://www.replay.io/) - Collaborative Code Debugging * [Winddown](https://github.com/schneefux/vscode-winddown) or [Sandman](https://alexanderepstein.github.io/Sandman/) - Coding Break Reminders @@ -545,7 +591,7 @@ * 🌐 **[Awesome Neovim](https://github.com/rockerBOO/awesome-neovim)** or [NeoVimCraft](https://neovimcraft.com/) - NeoVim Plugins Collections * ⭐ **[Vim Bootstrap](https://vim-bootstrap.com/)** - Bootstrap Config for Vim -* [SpaceVim](https://spacevim.org/), [NeoVim Kickstart](https://github.com/nvim-lua/kickstart.nvim), [AstroNvim](https://astronvim.com), [LazyVim](https://github.com/LazyVim/LazyVim), [NvChad](https://nvchad.com/) or [LunarVim](https://www.lunarvim.org/) - Neovim Configs +* [NeoVim Kickstart](https://github.com/nvim-lua/kickstart.nvim), [AstroNvim](https://astronvim.com), [LazyVim](https://github.com/LazyVim/LazyVim), [NvChad](https://nvchad.com/) or [LunarVim](https://www.lunarvim.org/) - Neovim Configs * [DotFyle](https://dotfyle.com/) - Neovim Config Search * [Lazy.nvim](https://github.com/folke/lazy.nvim) or [packer.nvim](https://github.com/wbthomason/packer.nvim) - Neovim Plugin Managers * [FireNVim](https://github.com/glacambre/firenvim) - Neovim in Browser @@ -553,7 +599,7 @@ * [instant.nvim](https://github.com/jbyuki/instant.nvim) - Collaborative Neovim Editing * [chatgpt.nvim](https://github.com/terror/chatgpt.nvim) - ChatGPT in Neovim * [Vim Plug](https://github.com/junegunn/vim-plug), [vim-pathogen](http://www.vim.org/scripts/script.php?script_id=2332) / [GitHub](https://github.com/tpope/vim-pathogen) or [Shougo](https://github.com/Shougo/dein.vim) - Vim Plugin Managers -* [VimAwesome](https://vimawesome.com/) - Vim Plugins +* [VimAwesome](https://vimawesome.com/) - Vim Plugins / [GitHub](https://github.com/vim-awesome/vim-awesome) * [nerdtree](https://github.com/preservim/nerdtree) - Vim Tree Explorer * [VimColorSchemes](https://vimcolorschemes.com/) - Vim Color Schemes * [The Ultimate vimrc](https://github.com/amix/vimrc) - Vim Config @@ -586,6 +632,7 @@ # ► Programming Languages * 🌐 **[Awesome Cheatsheets](https://lecoupa.github.io/awesome-cheatsheets/)**, **[QuickRef.me](https://quickref.me/)**, [HowDoI](https://github.com/gleitz/howdoi), [OverApi](https://overapi.com/), [Reference](https://cheatsheets.zip/) / [GitHub](https://github.com/Fechin/reference) or [Cheat Sheets](http://www.cheat-sheets.org/) - Programming Cheat Sheets +* 🌐 **[Codigo](https://codigolangs.com/)** - Programming Language Repository * 🌐 **[Awesome Go](https://awesome-go.com/)** or [Go Recipes](https://github.com/nikolaydubina/go-recipes) - Go Resources * 🌐 **[TheAlgorithms](https://the-algorithms.com/)** - Coding Algorithms / [GitHub](https://github.com/TheAlgorithms/) * ↪️ **[Learn Programming](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/edu/#wiki_.25B7_programming_languages)** @@ -605,7 +652,6 @@ ## ▷ Python -* 🌐 **[Awesome Python](https://awesome-python.com/)** - Python Resources * ⭐ **[Automate The Boring Stuff](https://automatetheboringstuff.com/)** - Python Automation Book * [Python Cheatsheet](https://gto76.github.io/python-cheatsheet/) or [SpeedSheet](https://speedsheet.io/) - Python Cheat Sheets * [Python Patterns](https://python-patterns.guide/) - Python Design Patterns @@ -638,6 +684,7 @@ * [Recaf](https://www.coley.software/Recaf/) - Java Bytecode Editor * [bytecode-viewer](https://bytecodeviewer.com), [jd-gui](https://github.com/java-decompiler/jd-gui), [Krakatau](https://github.com/Storyyeller/Krakatau), [Luyten](https://github.com/deathmarine/Luyten), [Vineflower](https://github.com/Vineflower/vineflower) or [Fernflower](https://github.com/fesh0r/fernflower) - Java Decompilers * [JEnv For Windows](https://github.com/FelixSelter/JEnv-for-Windows) - Change Java Version +* [WhichJDK](https://whichjdk.com/) - JDK Version Cheatsheet / Info * [jadx](https://github.com/skylot/jadx) - Dex to Java Decompiler * [GraalVM](https://www.graalvm.org/) - Advanced Multi-language JVM * [Adoptium](https://adoptium.net/) - Download OpenJDK Binaries @@ -664,7 +711,7 @@ * ⭐ **[You Don't Need JavaScript](https://github.com/you-dont-need/You-Dont-Need-JavaScript)** - CSS Demos * [CSS Cheat Sheet](https://docs.emmet.io/cheat-sheet/) or [CSS Tricks](https://css-tricks.com/snippets/) - CSS Cheat Sheets * [Easings](https://easings.net/) - CSS Animation Cheat Sheet -* [CSSLayout](https://phuoc.ng/collection/css-layout/) or [CSS Layout Generator](https://layout.bradwoods.io/) - CSS Layout / Grid Generators +* [CSS Layout Generator](https://layout.bradwoods.io/) - CSS Layout / Grid Generators * [CSSPeeper](https://csspeeper.com/) - Smart CSS Viewer * [Project Wallace](https://www.projectwallace.com/) - CSS Analyzer * [CSS Protips](https://github.com/AllThingsSmitty/css-protips), [Modern CSS](https://moderncss.dev/) or [CSS Reference](https://cssreference.io/) - CSS Guides @@ -691,7 +738,7 @@ * [Component Party](https://component-party.dev/) - Web Component JS Frameworks Overview / [GitHub](https://github.com/matschik/component-party.dev) * [jsdfe](https://avotoko.github.io/javascript-deobfuscator/), [de4js](https://lelinhtinh.github.io/de4js/), [Deobfuscator](https://willnode.github.io/deobfuscator/), [WebCrack](https://webcrack.netlify.app/), [Deobfuscate](https://deobfuscate.relative.im/) or [deobfuscate.io](https://deobfuscate.io/) - JavaScript Deobfuscators * [Minify JS](https://minify-js.com/) or [JS Compressor](https://jscompressor.treblereel.dev/) - JavaScript Minifiers -* [1loc](https://phuoc.ng/collection/1-loc/) or [Underdash](https://surma.github.io/underdash/) - JavaScript Snippets +* [Underdash](https://surma.github.io/underdash/) - JavaScript Snippets * [Node.js Best Practices](https://github.com/goldbergyoni/nodebestpractices) - Node.js Style Guide * [Airbnb JavaScript Style Guide](https://github.com/airbnb/javascript) or [StandardJS](https://standardjs.com/) - JavaScript Style Guides * [Discord.js Guide](https://discordjs.guide/) or [An Idiot's Guide](https://anidiots.guide/) - Discord.js Bot Guides @@ -701,7 +748,7 @@ ## ▷ React * [OpenChakra](https://openchakra.app/) or [Plate](https://platejs.org/) - React Code Editors -* [ReactBits](https://www.reactbits.dev/), [React Suite](https://rsuitejs.com/) / [GitHub](https://github.com/rsuite/rsuite), [21st](https://21st.dev/) / [GitHub](https://github.com/serafimcloud/21st) or [Radix UI](https://www.radix-ui.com/) / [GitHub](https://github.com/radix-ui) - React Components +* [React Suite](https://rsuitejs.com/) / [GitHub](https://github.com/rsuite/rsuite), [21st](https://21st.dev/) / [GitHub](https://github.com/serafimcloud/21st) or [Radix UI](https://www.radix-ui.com/) / [GitHub](https://github.com/radix-ui) - React Components * [Mantine](https://mantine.dev/) - Components and Templates / [GitHub](https://github.com/lucianomlima/react-ui-kits) * [Bulletproof React](https://github.com/alan2207/bulletproof-react) - React App Architecture * [Refine](https://refine.dev/) - React App Builders @@ -718,7 +765,6 @@ * [React PDF](https://react-pdf.org/) - Create PDFs in React * [react-spring](https://www.react-spring.dev/) - React Spring Animations * [Create React App](https://create-react-app.dev) - Set Up React Web Apps / [GitHub](https://github.com/facebook/create-react-app) -* [Codebases](https://github.com/reacttips-dev/codebases) - Collection of Projects Written in React *** @@ -747,7 +793,7 @@ * [Website Planet Tools](https://www.websiteplanet.com/webtools/), [Browserling Tools](https://www.browserling.com/tools/) or [WebCode](https://webcode.tools/) - Site Development Tools * [shadcn-ui](https://ui.shadcn.com/) or [shadcn-svelte](https://shadcn-svelte.com) - Web Component Libraries * [Web Developer](https://chromewebstore.google.com/detail/web-developer/bfbameneiokkgbdmiekhjnmfkcnldhhm) - Web Developer Toolbar Extension -* [GoatCounter](https://www.goatcounter.com/) or [Umami](https://umami.is/) - Site Analytics +* [GoatCounter](https://www.goatcounter.com/), [Rybbit](https://github.com/rybbit-io/rybbit) or [Umami](https://umami.is/) - Site Analytics * [ElasticSearch](https://www.elastic.co/products/elasticsearch) - Search & Analytics Engine / [GitHub](https://github.com/elastic/elasticsearch) * [Tabler](https://tabler.io/) - Site Admin Dashboard * [Octopus](https://octopus.do/sitemap) - Site Planning Tool @@ -769,13 +815,16 @@ * [Medusa](https://medusajs.com) - Digital Commerce Development Tool * [Can I Use?](https://caniuse.com/) - Browser Support Tables * [Shuttle](https://www.shuttle.dev/) / [GitHub](https://github.com/shuttle-hq/shuttle) or [PocketBase](https://pocketbase.io/) / [GitHub](https://github.com/pocketbase/pocketbase) - Open-Source Backend Platforms +* [CS Chromium](https://cs.chromium.org/) - Chromium Code Search * [Cloudflare Radar](https://radar.cloudflare.com/) - Cloudflare Insights * [Check for Cloudflare](https://checkforcloudflare.selesti.com/) - Check Sites for Cloudflare * [Caddy](https://caddyserver.com/) - Web Server +* [Directory Lister](https://directorylister.com/) - Web-Based Directory Listing * [BawkBox](https://bawkbox.com/) - Website Widgets * [The SSO Wall of Shame](https://sso.tax/) - Vendors without Built-in SSO * [Remarkbox](https://www.remarkbox.com/) or [HTML Comment Box](https://www.htmlcommentbox.com/) - Site Comment Systems * [Typebot](https://typebot.io/) - Embedded Chat App +* [Google Map Themes](https://snazzymaps.com/) - Google Map Themes for Web Developers * [Microlink SDK](https://microlink.io/sdk) / [GitHub](https://github.com/microlinkhq/sdk), [React Tiny Link](https://winhtaikaung.github.io/react-tiny-link/) / [GitHub](https://github.com/winhtaikaung/react-tiny-link) or [Link Preview JS](https://github.com/OP-Engineering/link-preview-js) - Create Link Previews * [CORS Proxy](https://corsproxy.github.io/) - Free CORS Proxy * [frp](https://github.com/fatedier/frp), [GoDoxy](https://github.com/yusing/godoxy) or [YARP](https://github.com/dotnet/yarp) - Reverse Proxies @@ -785,7 +834,7 @@ * [PWABuilder](https://www.pwabuilder.com/) - Turn Site into Progressive Web App * [Chaos Frontend Toolkit](https://chaos-frontend-toolkit.web.app/) - Break Your Web Apps to Improve Them * [LocalHost](https://localhost.run/) - Connect Web Apps to Internet -* [Shiki](https://shiki.style/), [tailspin](https://github.com/bensadeh/tailspin) or [Sight](https://github.com/tsenart/sight) - Syntax Highlighters +* [bat](https://github.com/sharkdp/bat) / [Extras](https://github.com/eth-p/bat-extras/), [Shiki](https://shiki.style/), [tailspin](https://github.com/bensadeh/tailspin) or [Sight](https://github.com/tsenart/sight) - Syntax Highlighters * [ngrok](https://ngrok.com/) - Introspectable Tunnels to Localhost Tools * [Bore](https://github.com/ekzhang/bore) - TCP Tunnel to Expose Servers Local Ports * [NConfig](https://www.digitalocean.com/community/tools/nginx) - Server Config @@ -842,17 +891,20 @@ * 🌐 **[Awesome Design Systems](https://github.com/alexpate/awesome-design-systems)** - UI Design Systems / Libraries * 🌐 **[Awesome Web Animation](https://awesome-web-animation.netlify.app/)** - Web Animation Resources * ↪️ **[Design Resources](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/img-tools#wiki_.25BA_design_resources)** or [Open Source Design](https://opensourcedesign.net/) -* ↪️ **[Website Templates](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_website_templates)** * ⭐ **[Design Checklist](https://www.checklist.design/)**, [Performance Checklist](https://github.com/thedaviddias/Front-End-Performance-Checklist) or [Front-End Checklist](https://frontendchecklist.io/) - Frontend Development Checklist -* [Aspect](https://aspect.app/) or [OpenUI](https://github.com/wandb/openui) - Make UI with AI +* ⭐ **[ThemeWagon](https://themewagon.com/theme-price/free/)** or [Tooplate](https://www.tooplate.com/) - Free HTML Templates +* ⭐ **[Boilerplate](https://html5boilerplate.com/)** or [html5up](https://html5up.net/) - Custom HTML Templates +* [CollectUI](https://collectui.com/), [Hoverstat](https://www.hoverstat.es/), [httpster](https://httpster.net/), [Wave Guide](https://www.waveguide.io/), [Godly Website](https://godly.website/), [Dribbble](https://dribbble.com/), [ReallyGoodUX](https://goodux.appcues.com/) or [Pageflows](https://pageflows.com/) - UI / Site Design Inspiration +* [Templatemo](https://www.templatemo.com/) - Free CSS Templates +* [Repth Themes](https://repth.neocities.org/theme) - Y2K Anime Themes +* [OpenUI](https://github.com/wandb/openui) - Make UI with AI * [Contentdrips](https://contentdrips.com/) or [CreatorKit](https://creatorkit.com/) - Brand Design Tools * [SuperNova](https://www.supernova.io/) - Design System Manager * [Interplay](https://interplayapp.com/) - Product Design Tool -* [CollectUI](https://collectui.com/), [Hoverstat](https://www.hoverstat.es/), [httpster](https://httpster.net/), [Wave Guide](https://www.waveguide.io/), [Godly Website](https://godly.website/), [ReallyGoodUX](https://goodux.appcues.com/) or [Pageflows](https://pageflows.com/) - UI / Site Design Ideas * [StoryBook](https://storybook.js.org/), [Akira](https://github.com/akiraux/Akira) or [Mockend](https://mockend.com/) - UI Development Tools * [UI Design Daily](https://www.uidesigndaily.com/) or [UIVerse](https://uiverse.io/) - Free UI Design Resources * [Open UI](https://open-ui.org/) - Open Standard UI -* [Same.dev](https://same.dev/) - Copy Sites User-Interface Code +* [Same.new](https://same.new/) - Copy Sites User-Interface Code * [CodeMyUI](https://codemyui.com/) or [Semantic UI](https://semantic-ui.com/) - User Interface Code Snippets * [Icon Shelf](https://icon-shelf.github.io/) - Icon Manager * [Favicon Maker](https://formito.com/tools/favicon) or [Favicon Generator](https://www.favicon-generator.org/) - Create Favicons @@ -878,12 +930,11 @@ * [CSS Bed](https://www.cssbed.com/) - Classless CSS Templates / [GitHub](https://github.com/ubershmekel/cssbed) * [Beer CSS](https://www.beercss.com/) - Lightweight CSS Framework / [GitHub](https://github.com/beercss/beercss) * [RoughAnnotations](https://roughnotation.com/) - Webpage Annotations / Animations -* [Lorem.space](https://lorem.space/), [dummyimage](https://dummyimage.com/), [Placeholdifier](https://github.com/pomber/placeholdifier), [PlaceHolder](https://placeholder.pics/), [PicSum](https://picsum.photos/) or [FakeIMG](https://fakeimg.pl/) - Site Placeholder Images +* [Lorem.space](https://lorem.space/), [dummyimage](https://dummyimage.com/), [Placeholdifier](https://github.com/pomber/placeholdifier), [PlaceHolder](https://placeholder.pics/) or [PicSum](https://picsum.photos/) - Site Placeholder Images * [Visiwig](https://www.visiwig.com/) - Copy / Paste Site Graphics * [WebDesigner](https://webdesigner.withgoogle.com/), [T3](https://github.com/tooll3/t3), [Theatre.js](https://www.theatrejs.com/) / [GitHub](https://github.com/theatre-js/theatre), [GSAP](https://gsap.com/), [Stylie](https://jeremyckahn.github.io/stylie/), [RenderForest](https://www.renderforest.com), [Mantra](https://jeremyckahn.github.io/mantra/) or [Lottielab](https://www.lottielab.com/) - Create Motion Graphics * [useAnimations](https://useanimations.com/index.html) or [LordIcon](https://lordicon.com/) - Animated Icons * [NakerApp](https://app.naker.io/back/) - Interactive Background Maker -* [Error404](https://error404.fun/) - Free 404 Pages * [HTTP Cats](https://http.cat/) - Put Cat Pictures in Your Status Codes *** @@ -894,19 +945,19 @@ * 🌐 **[VPS Comparison Chart](https://lowendstock.com/deals/)** or [Bitcoin VPS](https://bitcoin-vps.com/) - VPS Comparisons * ↪️ **[Free Webhosting Sites](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_free_webhosting_sites)** * ↪️ **[Domain Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/internet-tools#wiki_.25B7_domain_.2F_dns)** -* ⭐ **[Check-Host](https://check-host.net/)**, [StatPing](https://github.com/statping/statping), [Uptime](https://betterstack.com/uptime), [Uptime Kuma](https://github.com/louislam/uptime-kuma), [Highlight](https://www.highlight.io/), [AreWeDown?](https://github.com/shukriadams/arewedown), [UptimeRobot](https://uptimerobot.com/) or [24x7](https://www.site24x7.com/tools.html) - Site / Server Uptime Monitors +* ⭐ **[Check-Host](https://check-host.net/)**, [StatPing](https://github.com/statping/statping), [Uptime](https://betterstack.com/uptime), [Uptime Kuma](https://github.com/louislam/uptime-kuma), [Highlight](https://www.highlight.io/), [AreWeDown?](https://github.com/shukriadams/arewedown), [UptimeRobot](https://uptimerobot.com/), [Checkmate](https://github.com/bluewave-labs/Checkmate) or [24x7](https://www.site24x7.com/tools.html) - Site / Server Uptime Monitors * ⭐ **[TLD-List](https://tld-list.com/)**, [TLDES](https://tldes.com/) or [SitePriace](https://www.siteprice.org/) - Domain Price Comparisons * [GoodBadISPs](https://gitlab.torproject.org/legacy/trac/-/wikis/doc/GoodBadISPs) - Best ISPs for Tor Hosting * [Server Hunter](https://www.serverhunter.com/) or [ServerSearcher](https://www.serversearcher.com/) - Search / Compare Servers * [srvrlss](https://srvrlss.io/) - Search / Compare Serverless Platforms * [Host-Tracker](https://www.host-tracker.com/en/ic/check-http) or [OONI](https://ooni.org/) - Check Site Location Availability / [Bypass Paywall](https://rentry.co/FMHYBase64#host-tracker-bypass) -* [Sentora](https://sentora.org/) or [Moonlight](https://github.com/Moonlight-Panel/Moonlight) - Web Hosting Panels +* [OpenPanel](https://openpanel.com/) / [GitHub](https://github.com/stefanpejcic/openpanel), [Sentora](https://sentora.org/) or [Moonlight](https://github.com/Moonlight-Panel/Moonlight) - Web Hosting Panels * [GetDeploying](https://getdeploying.com/) - Compare Cloud Providers * [Meta Tag Gen](https://lewdev.github.io/apps/meta-tag-gen/), [OpenGraph](https://www.opengraph.xyz/) or [MetaTags](https://metatags.io/) - Meta Tag Generators * [DNForum](https://www.dnforum.com/) - Domain Name Forum * [HaveIBeenSquatted](https://haveibeensquatted.com) - Typosquatting Discovery Tool * [iana](https://www.iana.org/), [arin](https://www.arin.net/), [lacnic](https://www.lacnic.net/), [afrinic](https://www.afrinic.net/) or [apnic](https://www.apnic.net/) - Internet Registry Sites -* [takingnames](https://takingnames.io/blog/instant-subdomains), [GetFreeDomain](https://www.getfreedomain.name/) or [EU.org](https://nic.eu.org/) / [2](https://nic.ua/en/domains/.pp.ua) - Free Subdomains +* [takingnames](https://takingnames.io/blog/instant-subdomains), [FreeDomain](https://domain.digitalplat.org/) / [GitHUb](https://github.com/DigitalPlatDev/FreeDomain), [GetFreeDomain](https://www.getfreedomain.name/) or [EU.org](https://nic.eu.org/) / [2](https://nic.ua/en/domains/.pp.ua) - Free Subdomains / Domains * [TheDev](https://thedev.id/) - Free Developer Subdomains * [is-a.dev](https://www.is-a.dev/) or [JS.ORG](https://js.org/) - Developer Homepages * [Homepage](https://gethomepage.dev/) / [GitHub](https://github.com/gethomepage/homepage), [CasaOS](https://casaos.io/) / [GitHub](https://github.com/IceWhaleTech/CasaOS), [Flame](https://github.com/pawelmalak/flame), [Homer](https://github.com/bastienwirtz/homer) or [Dashy](https://dashy.to/) / [GitHub](https://github.com/Lissy93/dashy) - Home Server Startpages @@ -916,7 +967,7 @@ * [vichan](https://vichan.info) / [GitHub](https://github.com/vichan-devel/vichan) or [overscript](https://overscript.net/) - Imageboard Hosting * [ProBoards](https://www.proboards.com/) - Forum & Imageboard Hosting * [MyBB](https://www.mybb.com/), [FreeFlarum](https://freeflarum.com/) or [PHPBB](https://www.phpbb.com/) - Forum Hosting -* [WikiDocs](https://www.wikidocs.app/) / [GitHub](https://github.com/Zavy86/WikiDocs), [Media Wiki](https://www.mediawiki.org/), [xWiki](https://www.xwiki.org/xwiki/bin/view/Main/), [DokuWiki](https://www.dokuwiki.org/dokuwiki), [Miraheze](https://miraheze.org/), [wikmd](https://linbreux.github.io/wikmd/) or [Fandom](https://www.fandom.com/) - Host Free Wiki +* [WikiDocs](https://www.wikidocs.app/) / [GitHub](https://github.com/Zavy86/WikiDocs), [Media Wiki](https://www.mediawiki.org/) / [GitHub](https://github.com/Wikia/mediawiki), [xWiki](https://www.xwiki.org/xwiki/bin/view/Main/), [DokuWiki](https://www.dokuwiki.org/dokuwiki) / [GitHub](https://github.com/dokuwiki/dokuwiki), [Miraheze](https://miraheze.org/), [wikmd](https://linbreux.github.io/wikmd/) or [Fandom](https://www.fandom.com/) - Host Free Wiki * [HumHub](https://www.humhub.com), [HubZilla](https://hubzilla.org/page/info/discover) or [scuttlebutt](https://scuttlebutt.nz/) - Self-Hosted Social Network * [UNIT3D Community Edition](https://github.com/HDInnovations/UNIT3D-Community-Edition) - Private Tracker Hosting @@ -925,6 +976,10 @@ ## ▷ WordPress Tools * ↪️ **[Wordpress Themes](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_wordpress_themes)** +* ⭐ **[GPLDL](https://gpldl.com/)** - Premium Themes / Plugins / 25 Monthly / Sign-Up Required +* ⭐ **[WPLocker](https://www.wplocker.com/)** or [Weadown](https://weadown.com/) - Premium Themes / Plugins +* [Babiato](https://babia.to/) - Themes / Plugins Forum / Sign-Up Required +* [WordPress Themes & Plugins](https://t.me/wpthemesandplugins) - Themes / Telegram * [Visual CSS Editor](https://chromewebstore.google.com/detail/visual-css-editor/cibffnhhlfippmhdmdkcfecncoaegdkh) - WordPress Site Designer * [LocalWP](https://localwp.com) - WordPress Site Deployment Tools * [faustjs](https://faustjs.org) - WordPress Framework @@ -936,29 +991,27 @@ ## ▷ Regex Tools -* **Note** - You can use AI chatbots like ChatGPT to create complex regex patterns more easily. +* **Note** - You can use [AI chatbots](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/ai/#wiki_.25B7_online_chatbots) to create regex patterns more easily. *** -* 🌐 **[Awesome Regex](https://github.com/aloisdg/awesome-regex)** - Regex Resources -* ⭐ **[Regex Vis](https://regex-vis.com/)**, [Regulex](https://jex.im/regulex/), [Regexper](https://regexper.com/) - Regex Visualizer -* ⭐ **[RegexLearn](https://regexlearn.com/)**, [refrf.dev](https://refrf.dev/) or [learn-regex](https://github.com/ziishaned/learn-regex) - Learn Regex -* ⭐ **[RegExr](https://regexr.com/)**, [Rubular](https://rubular.com/) or [Regex101](https://regex101.com/) - Regex Editors -* ⭐ **[grex](https://pemistahl.github.io/grex-js/)** or [Regex Generator](https://regex-generator.olafneumann.org/) - Regex Generators -* [RegexOne](https://regexone.com/) - Regex Practice -* [iHateRegex](https://ihateregex.io/) - Regex Patterns +* 🌐 **[Awesome Regex](https://github.com/aloisdg/awesome-regex)** - Regex Tools & Resources +* ⭐ **[Regex Vis](https://regex-vis.com/)** - Regex Visualizer +* ⭐ **[regex101](https://regex101.com/)** or [RegExr](https://regexr.com/) - Regex Editors +* [RegexLearn](https://regexlearn.com/), [RegexOne](https://regexone.com/), [refrf.dev](https://refrf.dev/) or [learn-regex](https://github.com/ziishaned/learn-regex) - Regex Learning / Practice Resources +* [Regex Syntax Cheatsheet](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Regular_expressions/Cheatsheet) - Regex Cheatsheet (JS Flavor) +* [iHateRegex](https://ihateregex.io/) - Premade Regex Patterns List * [Melody](https://yoav-lavi.github.io/melody/book/) - Compile to Regex / [GitHub](https://github.com/yoav-lavi/melody) -* [PyRegex](http://www.pyregex.com/) - Python Regex Playground *** ## ▷ Benchmark Tools * 🌐 **[Awesome Accessibility](https://github.com/brunopulis/awesome-a11y)** - Accessibility Tools Index -* ⭐ **[LightTest](https://lightest.app/)**, [Yellow Lab Tools](https://yellowlab.tools/), [PageSpeed](https://pagespeed.web.dev/), [SpeedVitals](https://speedvitals.com/), [Geofetcher](https://geofetcher.appsinprogress.com/), [GTmetrix](https://gtmetrix.com/) or [Websu](https://websu.io/) - Test Webpage Speed +* ⭐ **[LightTest](https://lightest.app/)**, [Yellow Lab Tools](https://yellowlab.tools/), [PageSpeed](https://pagespeed.web.dev/), [SpeedVitals](https://speedvitals.com/), [Geofetcher](https://geofetcher.appsinprogress.com/) or [GTmetrix](https://gtmetrix.com/) - Test Webpage Speed * ⭐ **[Geekflare Tools](https://domsignal.com/toolbox)** or [Frontend Dogma](https://frontenddogma.com/tools/check/) - Site Benchmarking Tools * [LambDatest](https://www.lambdatest.com/) - Cross Browser Testing Cloud -* [Accessibility Guide](https://accessibility.18f.gov/checklist/), [Pa11y](https://pa11y.org/), [Wave](https://wave.webaim.org/), [Andi](https://www.ssa.gov/accessibility/andi/help/install.html) or [A11ygator](https://a11ygator.chialab.io/) - Accessibility Evaluation Tools +* [Pa11y](https://pa11y.org/), [Wave](https://wave.webaim.org/), [Andi](https://www.ssa.gov/accessibility/andi/help/install.html) or [A11ygator](https://a11ygator.chialab.io/) - Accessibility Evaluation Tools * [Accessibility Insights](https://accessibilityinsights.io/) - Fix Accessibility Issues * [Accessibility Cheatsheet](https://moritzglantz.de/accessibility-cheatsheet/) or [A11Project](https://www.a11yproject.com/checklist) - Site Accessibility Guidelines * [Web Vitals Leaderboard](https://vitals-leaderboard.pazguille.me/), [CodSpeed](https://codspeed.io/) or [Lighthouse Metrics](https://lighthouse-metrics.com/) - Website Performance Tests @@ -980,7 +1033,7 @@ * [ImageFoo](https://imagefoo.com/) - Image Optimization * [tiny.pictures](https://tiny.pictures/) - Image Optimization * [Ihancer](https://ihancer.com) - Image Optimization -* [Waifu2x](https://waifu2x.booru.pics) - Image Optimization +* [Waifu2x](https://www.waifu2x.net/) - Image Optimization * [OxiPNG](https://github.com/shssoichiro/oxipng) - PNG Optimization * [Crunch](https://github.com/chrissimpkins/Crunch) - PNG Optimization / Self-Hosted / No Sign-Up @@ -1041,9 +1094,8 @@ * 🌐 **[Awesome CI/CD Security](https://github.com/myugan/awesome-cicd-security)** - CI/CD Security Resources * 🌐 **[Awesome GPT Agents](https://github.com/fr0gger/Awesome-GPT-Agents)** - Cybersecurity GPT Agent Index * [Advisory Database](https://github.com/github/advisory-database), [ThreatFox](https://threatfox.abuse.ch/), [Exploit DB](https://www.exploit-db.com/) or [Att&ck](https://attack.mitre.org/) - Cybersecurity Defense Databases -* [VirusShare](https://virusshare.com/), [Bazaar](https://bazaar.abuse.ch/), [MalShare](https://malshare.com/), [URLhaus](https://urlhaus.abuse.ch/), [PulseDive](https://pulsedive.com/) or [Malpedia](https://malpedia.caad.fkie.fraunhofer.de/) - Malware Search / Indexes +* [Bazaar](https://bazaar.abuse.ch/), [MalShare](https://malshare.com/), [URLhaus](https://urlhaus.abuse.ch/), [PulseDive](https://pulsedive.com/) or [Malpedia](https://malpedia.caad.fkie.fraunhofer.de/) - Malware Search / Indexes * [ThreatMap](https://threatmap.checkpoint.com/) or [CyberMap](https://cybermap.kaspersky.com/) - Live Malware Distribution Maps -* [The Void](https://www.thevoid.community/) - Software Incident Reports * [Rawsec's CyberSecurity Inventory](https://inventory.raw.pm/) - Cybersecurity Resources * [CybersecResources](https://www.cybersources.site/) - Cybersecurity Resources / [GitHub](https://github.com/bst04/cybersources) * [Awesome List](https://github.com/0xor0ne/awesome-list) - Cybersecurity Resources @@ -1090,7 +1142,7 @@ * [IP Intelligence](https://getipintel.net/), [AbuseIPDB](https://www.abuseipdb.com/) or [Proxy Check](https://proxycheck.io/) - Proxy / VPN / Bad IP Detection * [Fail2Ban](https://github.com/fail2ban/fail2ban) - Protect Servers from Brute Force Attacks * [Tempesta FW](https://tempesta-tech.com/) - DDoS / Web Attack Protection -* [IPv6 Leak Test](https://ip6.nl/), [Test-IPv6](https://test-ipv6.com/) or [IPv6 Test](https://ipv6-test.com/) - IPv6 Test +* [IPv6 Leak Test](https://ip6.nl/), [IPv6 Test](https://ipv6-test.com/) or [Test-IPv6](https://test-ipv6.com/) - IPv6 Test * [How To Turn off IPv6](https://www.itechguides.com/disable-ipv6-windows-10/) - Prevent IPv6 Leaks *** @@ -1101,7 +1153,6 @@ * [mitmproxy](https://mitmproxy.org/) - Analyze and modify HTTPS traffic / [OpenAPI Converter](https://github.com/alufers/mitmproxy2swagger) / [GitHub](https://github.com/mitmproxy/mitmproxy) * [HTTPToolkit](https://httptoolkit.com/) - Intercept, Debug, and Mock HTTP(S) * [Mozilla SSL](https://ssl-config.mozilla.org/) - SSL Configuration Generator -* [Tailscale](https://tailscale.com/) - Secure Network VPN * [SSLLabs](https://www.ssllabs.com/) - SSL Testing * [BadSSL](https://badssl.com/) - Test Clients Against Bad SSL Configs * [Hitch](https://www.varnish-software.com/community/hitch) - SSL / TLS Proxy / [GitHub](https://github.com/varnish/hitch) @@ -1120,6 +1171,7 @@ * 🌐 **[Awesome Malware Analysis](https://github.com/rshipp/awesome-malware-analysis)** - Malware Analysis Resources * ⭐ **[GHIDRA](https://ghidra-sre.org/)** - Reverse Engineering * ⭐ **[x64dbg](https://x64dbg.com/)** - Debugger for Reverse Engineering +* [LemmeDebug](https://greasyfork.org/en/scripts/537775) - Disable Anti-Devtools for Reverse Engineering / Debugging * [Radare](https://www.radare.org/n/) - Free Reversing Toolkit / [GitHub](https://github.com/radareorg/radare2) / [Discord](https://discord.gg/YBey7CR9jf) * [Rizin](https://rizin.re/) or [Cutter](https://cutter.re/) - Reverse Engineering Framework * [Frida](https://frida.re/) - Reverse Engineering @@ -1132,7 +1184,7 @@ *** -# ► Markdown Tools +# ► Markup Tools * ⭐ **[Markdown Guide](https://www.markdownguide.org/)** - Guide for Markdown (.md) * ⭐ **[generatedata.com](https://generatedata.com/)** - Generate Test Data in Markup Formats @@ -1163,4 +1215,4 @@ * [Glow](https://github.com/charmbracelet/glow) * [MarkdownLivePreview](https://markdownlivepreview.com/) * [Vrite](https://editor.vrite.io/) -* [MindForger](https://www.mindforger.com/) \ No newline at end of file +* [MindForger](https://www.mindforger.com/) diff --git a/docs/downloadpiracyguide.md b/docs/downloadpiracyguide.md index 439d14d5b..7be81a62c 100644 --- a/docs/downloadpiracyguide.md +++ b/docs/downloadpiracyguide.md @@ -11,15 +11,14 @@ *** * 🌐 **[/r/opendirectories](https://www.reddit.com/r/opendirectories/)** - Open Directories Subreddit / [Telegram](https://t.me/r_OpenDirectories) / [/u/ODScanner](https://reddit.com/u/ODScanner) -* ↪️ **[Open Directory Search String Builders](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_open_directory_search_string_builder)**, [2](https://redd.it/g4kfem), [3](https://redd.it/lj0a1e) * ↪️ **[Google Piracy Groups](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_google_piracy_discussion_groups)** -* ⭐ **[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 * ⭐ **[Soulseek](https://slsknet.org/)** or [Nicotine+](https://nicotine-plus.org/) - File Sharing App / [Stats](https://github.com/mrusse/Slsk-Upload-Stats-Tracker) / [Server App](https://github.com/slskd/slskd) * [eMule Plus](https://sourceforge.net/projects/emuleplus/) - File Sharing App * [mega.archive (Discord)](https://discord.gg/R3zEZUPp3Q) / [Chat](https://discord.gg/ZRhpUtzvkC) - Megadrive Archive * [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/) - Google Drive File Search +* [lumpysoft](https://lumpysoft.com/) - Search String Builder * [Sala De Espera](https://matrix.to/#/!qbOtnJEDGsPuWZBHLX:matrix.org?via=matrix.org) - Drive Sharing Community * [Open Directory Downloader](https://github.com/KoalaBear84/OpenDirectoryDownloader) - Open Directory Indexer * [CD.TextFiles](http://cd.textfiles.com/) - CD Text File Archive @@ -34,7 +33,6 @@ *** * ⭐ **[Archive.org](https://archive.org/)** - Video / Audio / Magazines / Newspapers / ROMs / [Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage/#wiki_internet_archive_tools) -* ⭐ **[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 * [WorldSRC](https://www.worldsrc.net/) - Video / Audio / [Donate](https://www.worldsrc.net/service_end) * [WarezForums](https://warezforums.com/) - Video / Audio / ROMs / Books / Comics @@ -45,15 +43,12 @@ * [Merlin Warez](https://merlinwz.com/) - Video / Audio / Books / Audiobooks / Comics / Magazines * [Sbenny's Forum](https://forum.sbenny.com/) - Video / Audio / ROMs / Books / [Discord](https://discord.gg/kf9FKQx) * [DownDuck](https://www.downduck.com/) - Video / Audio / Books / Magazines -* [AllYouLike](https://allyoulike.org/) - Video / Audio Books / Magazines / ROMs / Comics / NSFW * [DDLValley](https://www.ddlvalley.me/) - Video / Audio / ROMs / Books / Comics / Magazines / [Forum](https://forum.ddlvalley.me/) * [MaxRelease](https://max-rls.com/) - Video / Audio / Magazines -* [AyakaLounge](https://ayakalounge.me/) - Video / Audio / ROMs * [1DDL](https://1ddl.org/) - Video / Audio / Books / Comics / Magazines * [TFPDL](https://tfpdl.se/), [2](https://tfpdl.to/) - Video / Magazines / NSFW * [WarezLoad](https://warezload.net/index.php) - Video / Audio / Books * [Katz DDL](https://katzddl.net/) - Video / Audio / Books / NSFW -* [BadshahUploads](https://badshahuploads.xyz/) - Video / Audio / Books / Leech Required * [Leaker](https://leaker.me/) - Video / Audio * [TehParadox](https://www.tehparadox.net/) - Video / Audio / Books / Magazines / ROMs * [wJungle](https://wjungle.net/) - Video / Audio / Books / NSFW @@ -85,7 +80,6 @@ * [Meawfy](https://meawfy.com/) - Mega, GoFile and MediaFire Search * [File Host Search](https://cse.google.com/cse?cx=90a35b59cee2a42e1) * [scnlog](https://scnlog.me/) -* [fidigger](https://fidigger.com/) * [filesearch.link](https://filesearch.link/) * [Linktury](https://www.ddlspot.com/) * [MediafireTrend](https://mediafiretrend.com/) - Mediafire Search @@ -125,20 +119,19 @@ * ↪️ **[Windows ISOs / Activation](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/system-tools#wiki_.25BA_windows_isos)** * ⭐ **[CRACKSurl](https://cracksurl.com/)** / [Telegram](https://t.me/cracksurldotcom) * ⭐ **[LRepacks](https://lrepacks.net/)** -* ⭐ **[Mobilism](https://forum.mobilism.org/)** - [Mobile App](https://forum.mobilism.org/app/) +* ⭐ **[Mobilism](https://forum.mobilism.org/)** * ⭐ **[soft98](https://soft98.ir/)** - Use [Translator](https://addons.mozilla.org/en-US/firefox/addon/traduzir-paginas-web/) / [Anti-Adblock Fix](https://github.com/AdguardTeam/AdGuardExtra) * ⭐ **[Nsane Forums](https://www.nsaneforums.com/)** - Sign-Up Required +* ⭐ **[Adobe Quick Guide](https://rentry.co/FMHYBase64#adobe-guide)** or [GenP](https://rentry.co/FMHYBase64#genp) - Adobe Software * ⭐ **[Software CSE](https://cse.google.com/cse?cx=ae17d0c72fa6cbcd4)** - Multi-Site Software Search * ⭐ **[AlternativeTo](https://alternativeto.net/)** or [European Alternatives](https://european-alternatives.eu/) - Crowdsourced Recommendations * [AIOWares](https://www.aiowares.com/) -* [DownloadHa](https://www.downloadha.com/) - Use [Translator](https://addons.mozilla.org/en-US/firefox/addon/traduzir-paginas-web/) * [Heidoc](https://www.heidoc.net/joomla/) * [Softlay](https://www.softlay.com/downloads/) * [RetroSystemRevival](https://retrosystemsrevival.blogspot.com/) * [Libreware](https://t.me/Libreware) or [Xetrin RePacks](https://t.me/repacks_by_xetrin) - Telegram Channels * [Rarewares](https://www.rarewares.org/) - Rare Software * [Software Heritage](https://www.softwareheritage.org/) - Software Source Code Archive -* [GenP](https://rentry.co/FMHYBase64#genp) - Adobe Software Patcher * [ZXPInstaller](https://zxpinstaller.com/) - Adobe Extension Installer *** @@ -211,7 +204,7 @@ # ► Usenet -* 🌐 **[Usenet Tools / Services](https://curlie.org/en/Computers/Usenet)** or [UsenetTools](http://www.usenettools.net/) +* 🌐 **[UsenetTools](http://www.usenettools.net/)** * ⭐ **[Usenet Guide / Automation Setup](https://docs.google.com/document/d/1TwUrRj982WlWUhrxvMadq6gdH0mPW0CGtHsTOFWprCo/mobilebasic)** / [2](https://redd.it/4x2mc9) / [3](https://www.iitk.ac.in/LDP/HOWTO/Usenet-News-HOWTO/x27.html) / [4](https://graph.org/EVERYTHING-YOU-NEED-TO-KNOW-ABOUT-USENET-09-04) / [5](https://www.reddit.com/r/usenet/wiki/index/) / [6](https://blog.decryption.net.au/t/a-fully-automated-usenet-piracy-machine-with-plex-sabnzbd-and-sonarr/130) * [/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 @@ -268,13 +261,12 @@ * 🌐 **[LeechListing](https://www.leechlisting.com/)** or [Free Premium Leech Wiki](https://filehostlist.miraheze.org/wiki/Free_Premium_Leeches) - Leech Lists * 🌐 **[Debrid Services Comparison](https://debrid-services-comparison.netlify.app/)** / [GitHub](https://github.com/fynks/debrid-services-comparison) +* ⭐ **[TorBox](https://torbox.app/)** - Freemium / 10GB / 10 Monthly Downloads / Sign-Up Required * ⭐ **[Real-Debrid](https://real-debrid.com/)** - Paid Debrid Service / [Android Client](https://github.com/LivingWithHippos/unchained-android) / [Torrent Client](https://github.com/rogerfar/rdt-client) / [DDL Client](https://github.com/ItsYeBoi20/TorrentDownloaderRD) -* ⭐ **[HDEncode](https://hdencode.org/)**, [DDLBase](https://ddlbase.com/) / [.net](https://ddlbase.net/) or [rlsDB](https://rlsdb.com/) - Movie & TV DDL Forums / Requires Debrid +* ⭐ **[HDEncode](https://hdencode.org/)**, [DDLBase](https://ddlbase.com/), [rmz.cr](https://rmz.cr/) or [rlsDB](https://rlsdb.com/) - Movie & TV DDL Forums / Requires Debrid * [Multi-OCH Helper](https://greasyfork.org/en/scripts/13884-multi-och-helper) - Quickly Send DDL Links to Premiumize & NoPremium -* [RapidGrab](https://rapidgrab.ovh/) or [Newscon](https://www.newscon.org/d3/) - Leeches * [FastDebrid](https://fastdebrid.com/) - 1Fichier Leech * [Debrid Media Manager](https://debridmediamanager.com/) - Manage / Stream / Download Debrid Files -* [TorBox](https://torbox.app/) - Torrent to Cloud *** diff --git a/docs/edupiracyguide.md b/docs/edupiracyguide.md index a404f0580..d1f8f9010 100644 --- a/docs/edupiracyguide.md +++ b/docs/edupiracyguide.md @@ -12,6 +12,7 @@ * ⭐ **[1337x Documentaries](https://1337x.to/top-100-documentaries)** / Torrent * [LearnOutLoud](https://www.learnoutloud.com/) * [Top Documentary Films](https://topdocumentaryfilms.com/) +* [Thought Maybe](https://thoughtmaybe.com/) * [Media Burn Archive](https://mediaburn.org/) * [DocumentaryHeaven](https://documentaryheaven.com/) * [ARTE](https://www.arte.tv/) @@ -51,7 +52,6 @@ * [EbookFoundation Courses](https://github.com/EbookFoundation/free-programming-books#free-online-courses) - Courses * [OpenCulture](https://www.openculture.com/freeonlinecourses) - Courses * [DigitalGarage](https://grow.google/intl/uk/courses-and-tools/) - Google Courses -* [Hillsdale College](https://online.hillsdale.edu/) - Courses * [OpenHPI](https://open.hpi.de/) - Courses * [OLI](https://oli.cmu.edu/independent-learner-courses/) - Courses * [LearnOutLoud](https://www.learnoutloud.com/) - Documentaries / Courses @@ -100,14 +100,13 @@ # ► Learning Sites -* 🌐 **[The Free Learning List](https://freelearninglist.org/)** - Learning Resources * 🌐 **[Learn Anything](https://learn-anything.xyz/)** - Learning Resource Search / [Free Method](https://rentry.co/FMHYBase64#learn-anything) * 🌐 **[Wakelet](https://wakelet.com/explore)** - Learning Resources * 🌐 **[WISC](https://www.wisc-online.com/)** - Learning Resources * 🌐 **[OpenCulture](https://www.openculture.com/)** - Learning Resources * 🌐 **[OSSU](https://github.com/ossu/)** - Learning Resources / [Discord](https://discord.gg/wuytwK5s9h) +* 🌐 **[The Free Learning List](https://freelearninglist.org/)** - Learning Resources * 🌐 **[Awesome Educational Games](https://github.com/yrgo/awesome-educational-games)** - Educational Games Index -* 🌐 **[IQ Tests](https://redd.it/146fmpr)** - IQ Test Sites / Accuracy Ratings * ↪️ **[Ebook Sites](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/reading#wiki_.25BA_educational_books)** * ↪️ **[Survival / Prepping](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_survival)** * ↪️ **[Science News](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/misc/#wiki_.25B7science_news)** @@ -119,6 +118,7 @@ * [Ted Talks](https://www.ted.com/) - Inspiring and Educational Talks * [Stack Exchange](https://stackexchange.com/) or [Quetre](https://quetre.iket.me) - Q&A Communities * [ISODN](https://discord.gg/k3zkD2y) - International Science Olympiads Discord Community +* [Learn About](https://learning.google.com/experiments/learn-about) or [Learning Coach](https://gemini.google.com/gem/learning-coach) - Google's Educational Search AIs * [AFAIK](https://afaik.io/) - Learning Map / [Discord](https://discord.gg/mMNwRvWM8s) * [Open Educational Resources](https://cdn-infographic.pressidium.com/wp-content/uploads/How-to-Search-for-Open-Educational-Resources-Infographic.jpg) - How to Search for Open Educational Resources * [AnimaGraffs](https://animagraffs.com/) - Animated Infographs @@ -176,7 +176,6 @@ * ⭐ **[Historic Films](https://www.historicfilms.com/)** or [National Film Preservation Foundation](https://www.filmpreservation.org/) - Historic Footage / Films * ⭐ **[Histography](https://histography.io/)** or [Oldest](https://www.oldest.org/) - History Timelines * ⭐ **[MorbidKuriosity](https://morbidkuriosity.com/)** - Dark History, Conspiracies, Crime, Myths, etc. -* [HistoryMaps](https://history-maps.com/) - Learn History Visually * [Smithsonian Institution Archives](https://siarchives.si.edu/) or [RareHistoricalPhotos](https://rarehistoricalphotos.com/) - Historical Photos / Documents * [Imperial War Museums](https://www.iwm.org.uk/) - Historic War Footage * [Museo](https://museo.app/) - Museum Search @@ -229,7 +228,6 @@ * [Sketchplanations](https://www.sketchplanations.com/) - Explanation Sketches * [IEoP](https://iep.utm.edu/fallacy/), [YouLogicalFallacyIs](https://yourlogicalfallacyis.com/), [FallacyFiles](https://fallacyfiles.org/index.html) or [LogicalFallacies](https://www.logicalfallacies.org/) - Learn about Logical Fallacies * [YourBias.is](https://yourbias.is/) - Learn about Biases -* [RationalWiki](https://rationalwiki.org/) - Pseudoscience Refutation Wiki * [Advanced Logic Calculators](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#advanced-logic-calculators) * [Kialo](https://www.kialo.com/) - Debates / Discussion * [WikEnigma](https://wikenigma.org.uk/) - 'Known Unknowns' Wiki @@ -246,10 +244,10 @@ * ↪️ **[Sheet Music / Notation](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/audio#wiki_.25B7_sheet_music_.2F_notation)** * ⭐ **[Muted](https://muted.io/)**, **[Open Music Theory](https://viva.pressbooks.pub/openmusictheory/)** / [2](https://openmusictheory.github.io/), [Chromatone](https://chromatone.center/), [Teoria](https://www.teoria.com/index.php), [SimplifyingTheory](https://www.simplifyingtheory.com/), [LightNote](https://www.lightnote.co/) or [Music Theory](https://www.musictheory.net/) - Music Theory * [AudioZ](https://audioz.download/tutorials/) - Audio Courses / [Forum](https://audiosex.pro/) -* [Helio](https://helio.fm/) or [NoteHeads](https://noteheads.net/) - Music Composition Tools +* [Helio](https://helio.fm/) / [GitHub](https://github.com/helio-fm/helio-sequencer) or [NoteHeads](https://noteheads.net/) - Music Composition Tools * [MusicKit](https://musickit.jull.dev/) or [Tone Generator](https://www.szynalski.com/tone-generator/) - Metronome, Tuner & Tone Generators * [Tuner Ninja](https://tuner.ninja/) - Instrument Tuner -* [Circle of Fifths](https://muted.io/circle-of-fifths/) - Visualize Notes, Cords & Keys +* [Circle of Fifths](https://muted.io/circle-of-fifths/) - Visualize Notes, Cords and Keys * [ScoreCloud](https://scorecloud.com/), [ChordReader2](https://github.com/AndInTheClouds/chordreader2) or [Chordify](https://chordify.net/) - Chord Detection / Transcriber * [Arpeggiator](https://codepen.io/jakealbaugh/full/qNrZyw), [Chordi](https://chordi.co/) or [AutoChords](https://autochords.com/) - Chord Progression Generators * [HookTheory](https://www.hooktheory.com/trends) - Chord Progression Library @@ -265,7 +263,7 @@ * [JustinGuitar](https://www.justinguitar.com/) or [Guitarsix](https://guitarsix.com/) - Guitar Lessons * [Ultimate Guitar](https://www.ultimate-guitar.com/) - Guitar Tabs * [Chorder](https://www.chorder.com/guitar-chords/) - Guitar Chord Finder -* [Guitar Fretboard](https://muted.io/guitar-fretboard/), [Fretastic](https://fretastic.com/guitar) or [Gitori](https://www.gitori.com/) - Virtual Fretboards / Guitar Lessons +* [Guitar Fretboard](https://muted.io/guitar-fretboard/) or [Gitori](https://www.gitori.com/) - Virtual Fretboards / Guitar Lessons * [coop3rdrumm3r](https://www.drumeo.com/coop3rdrumm3r/) or [FreeDrumLessons](https://www.youtube.com/c/freedrumlessons) - Drum Lessons * [911tabs](https://www.911tabs.com/) or [Finger Tabs](https://fingertabs.com/) - Tabs * [Jazz Improvisor](https://www.cs.hmc.edu/~keller/jazz/improvisor/) - Improvised Jazz @@ -294,8 +292,8 @@ * [Curriculum for the Solo Artists](https://alexhuneycutt.gumroad.com/l/free_curriculum) - Self-Taught Artist Curriculum / [PDF Version](https://mega.nz/file/sU0AxThb#m96_xISlS-5wtpSrauWFdh8mjhed7EitknQn_XIBaQc) / [Gallery Version](https://i.redd.it/7ns7su264gp31.png), [2](https://imgur.com/a/EZPc28m) * [DoArtDaily](https://dad.gallery) - Daily Art Challenges * [Character Design References](https://characterdesignreferences.com/visual-library) - Character Design Visual Library -* [FloobyNooby](http://www.floobynooby.com/comp1.html), [Let's Learn Storyboarding](https://nicparris.gumroad.com/l/JyCxo), [JMMStoryboardTips](https://jimmortensen.gumroad.com/l/JMMStoryboardTips) or [A Guide to Storyboards](https://magicbunnyart.gumroad.com/l/fjvKA) - Storyboard Guides -* [MangaMaterials](https://www.youtube.com/channel/UCnx8zKs3c3yeFPYQ2QzMqLA/), [animesijyuku](https://www.youtube.com/@animesijyuku/) or [DoKiDoKiDrawing](https://www.youtube.com/@DoKiDoKiDrawing/) - Manga Video Tutorials / [X](https://x.com/mangamaterials2) / [Pixiv](https://www.pixiv.net/en/users/16776564) +* [FloobyNooby](http://www.floobynooby.com/comp1.html), [JMMStoryboardTips](https://jimmortensen.gumroad.com/l/JMMStoryboardTips) or [A Guide to Storyboards](https://magicbunnyart.gumroad.com/l/fjvKA) - Storyboard Guides +* [MangaMaterials](https://www.youtube.com/channel/UCnx8zKs3c3yeFPYQ2QzMqLA/) / [X](https://x.com/mangamaterials2), [animesijyuku](https://www.youtube.com/@animesijyuku/) or [DoKiDoKiDrawing](https://www.youtube.com/@DoKiDoKiDrawing/) - Manga Video Tutorials / [Pixiv](https://www.pixiv.net/en/users/16776564) * [Settei Dreams](https://setteidreams.net/) - Anime Production Materials * [Anime Study General](https://discord.gg/3bwdfRk) - Anime Production Community * [McLelun](http://www.mclelun.com/p/tutorial.html) - Anime Style Background Tutorial @@ -304,7 +302,6 @@ * [PhotoshopTutorials.ws](https://www.photoshoptutorials.ws/) - Photoshop Tutorials * [DomDesigns](https://www.youtube.com/c/DomDesigns/) - Illustrator Tutorials * [PhotoshopTraining](https://www.youtube.com/@PhotoshopTrainingChannel), [Phlearn](https://www.youtube.com/@phlearn) or [PiXimperfect](https://www.youtube.com/@PiXimperfect) - Photoshop YouTube Tutorials -* [The Book of Shaders](https://thebookofshaders.com/) - Fragment Shaders Guide * [The Bézier Game](https://bezier.method.ac/) - Pen Tool Practice * [ArtWithFlo](https://artwithflo.com/) - Procreate Tutorials * [Paintable](https://paintable.cc/) - Digital Art Tutorials @@ -323,7 +320,7 @@ * [DevinKorwin Color Guide](https://x.com/devinkorwin/status/1278049901709012995) - Color in Paintings Guide * [Draw Mix Paint](https://www.drawmixpaint.com/) - Learn Oil Painting * [Painting Demos](https://paintingdemos.com/) - Painting Demonstrations -* [CG_Hacker](https://t.me/CG_Hacker), [cg_tuts](https://t.me/cg_tuts) or [cgreferenceshub](https://t.me/cgreferenceshub) - CG Tutorials +* [cg_tuts](https://t.me/cg_tuts) or [cgreferenceshub](https://t.me/cgreferenceshub) - CG Tutorials * [Agora](https://agora.community/) - Animation Learning Community / Tutorials / [Discord](https://discord.com/invite/9hJxMyR) * [AMV101](https://www.amv101.com/) - Animated Music Video-Making Guides @@ -334,7 +331,7 @@ * 🌐 **[Awesome Datasets](https://github.com/awesomedata/awesome-public-datasets)** - Public Datasets * 🌐 **[Country Infographics](https://rentry.org/o4gq6cq5)** - Country Infographic Images * ↪️ **[Historical / Modern Maps](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/misc#wiki_.25BA_maps)** - Map Resources -* ⭐ **[Worldometer](https://www.worldometers.info/)**, [TheScaleOfLife](https://www.thescaleoflife.com/), [WorldBank](https://databank.worldbank.org/), [US Census](https://data.census.gov/), [DataUSA](https://datausa.io/), [Ozymandias](https://population.ozymandias.so/), [Data.gov](https://data.gov/) or [UN Data](https://data.un.org/) - World Data & Statistics +* ⭐ **[Worldometer](https://www.worldometers.info/)**, [TheScaleOfLife](https://www.thescaleoflife.com/), [WorldBank](https://databank.worldbank.org/), [US Census](https://data.census.gov/), [DataUSA](https://datausa.io/), [Data.gov](https://data.gov/) or [UN Data](https://data.un.org/) - World Data & Statistics * ⭐ **[Our World in Data](https://ourworldindata.org/)** - World Problem Database * ⭐ **[The Atlas of Economic Complexity](https://atlas.cid.harvard.edu/)** - Global Economic Growth Data * ⭐ **[Soar](https://soar.earth/)** - Digital Atlas @@ -344,7 +341,7 @@ * [The True Size](https://thetruesize.com/) or [True Size of Countries](https://truesizeofcountries.com/) - Compare Country Size * [NationsEncyclopedia](https://www.nationsencyclopedia.com/) - Location / Population Data * [City Data](https://www.city-data.com/) - US City Data -* [Data Commons](https://datacommons.org/) - Data Visualizations +* [Data Commons](https://datacommons.org/) or [Engaging Data](https://engaging-data.com/) - Data Visualizations * [Global Consciousness Project](https://gcpdot.com/) - Real-Time Global Consciousness Data * [If It Were My Home](https://www.ifitweremyhome.com/), [GlobalEdge](https://globaledge.msu.edu/) or [MyLifeElsewhere](https://www.mylifeelsewhere.com/) - Country Data Comparisons * [WorldPoverty](https://worldpoverty.io/) - World Poverty Data @@ -375,35 +372,6 @@ *** -## ▷ Chess - -* 🌐 **[Awesome Chess](https://github.com/hkirat/awesome-chess)**, [ImmortalChess101](https://t.me/immortalchess101), [Chess Domi](https://t.me/Chess_Domi) or [Chess Resources](https://redd.it/u43nrc) - Chess Resources -* 🌐 **[/m/Chess](https://www.reddit.com/user/korfor/m/chess/)** or [/r/Chess](https://reddit.com/r/chess) - Chess Subreddits -* 🌐 **[/r/Chess Books](https://reddit.com/r/chess/wiki/books)** - Recommended Chess Books -* ⭐ **[Scid vs. PC](https://scidvspc.sourceforge.net/)** - Learn / Practice Chess -* [ChessGames](https://www.chessgames.com/) - Chess Database / Community -* [ChessLab](https://chesslab.me/) - Chess Lessons / [Discord](https://discord.com/invite/AA5G5f9wKC) -* [List Study](https://listudy.org/en) - Chess Lessons -* [Chessable](https://www.chessable.com/) - Chess Lessons -* [TheChessWebsite](https://www.thechesswebsite.com/) - Learn / Practice Chess -* [HerculesChess](https://herculeschess.com/) - Learn / Practice Chess -* [Chess Tempo](https://chesstempo.com/) - Chess Practice -* [Lucas Chess](https://lucaschess.pythonanywhere.com/) - Chess Practice -* [Chess Coach](https://rentry.co/FMHYBase64#chess-coach) - Chess Coaching App -* [Chessercise](https://www.chessercise.xyz/) - Chess Game / Move Analysis -* [Game Report](https://chess.wintrcat.uk/) - Chess Game / Move Analysis -* [Decode Chess](https://app.decodechess.com/) - Chess Game / Move Analysis -* [YottaChess](https://www.yottachess.com/) - Chess Game / Move Analysis -* [En Croissant](https://encroissant.org/) - Chess Game / Move Analysis -* [Chess Vision](https://chessvision.ai/) - Chess Game / Move Analysis -* [OpeningTree](https://www.openingtree.com/) - Download / Visualize Chess Games -* [Chess Monitor](https://www.chessmonitor.com/) - Track Chess Analytics -* [2700chess](https://2700chess.com/) - Live Chess Player Ratings -* [Bill Wall's Chess Page](http://billwall.phpwebhosting.com/) or [365Chess](https://www.365chess.com/) - Chess History / Lessons -* [ChessVariants](https://www.chessvariants.com/index/favorites.php) - 1000+ Chess Variants + Guides - -*** - ## ▷ Quote Indexes * ⭐ **[Wikiquote](https://en.wikiquote.org)** @@ -430,7 +398,6 @@ * [Spitfire Panorama](https://www.haraldjoergens.com/panoramas/spitfire-td314/files/) - Spitfire Mark IX Cockpit Interactve Panorama * [Virtual Vist Tours](https://www.virtualvisittours.com/) - Ireland Virtual Tours * [Matterport](https://matterport.com/discover) - Explore Real Places Digitally -* [Hashima Island](https://www.hashima-island.co.uk/) - Hashima Island Virtual Tour * [Basilica Viewer](https://virtual.basilicasanpietro.va/en/basilica-viewer/) - St. Peter’s Basilica Tour * [360Cities](https://www.360cities.net/), [Zhijianshang](https://www.zhijianshang.com/) or [Airpano](https://www.airpano.com/) - 360 Images / Videos * [Smithsonian 3D](https://3d.si.edu/) - Smithsonian 3D Digitization Museum @@ -480,7 +447,7 @@ * ⭐ **[Space Dashboard](https://spacedashboard.com/)** - Space Live Stream Dashboard * ⭐ **[EarthData](https://worldview.earthdata.nasa.gov/)** - Daily Satellite Replays * ⭐ **[Visible Earth](https://visibleearth.nasa.gov/)**, [GOES-16 Satellite Imagery](https://rammb-slider.cira.colostate.edu/) or [Sentinel Hub](https://www.sentinel-hub.com/) - Satellite Imagery -* ⭐ **[NASA](https://www.nasa.gov/)** - National Aeronautics and Space Administration Website / [Images](https://images.nasa.gov/) / [Audio](https://www.nasa.gov/audio-and-ringtones/) / [Documents](https://ntrs.nasa.gov/search) +* ⭐ **[NASA](https://www.nasa.gov/)** - National Aeronautics and Space Administration Website / [Images](https://images.nasa.gov/) / [Audio](https://www.nasa.gov/audio-and-ringtones/) / [Documents](https://ntrs.nasa.gov/search) / [APIs](http://api.nasa.gov/) * ⭐ **[JPL Photojournal](https://photojournal.jpl.nasa.gov/)** or [JPL Images](https://www.jpl.nasa.gov/images) - JPL Planetary Image Archives * ⭐ **[March to the Moon](https://tothemoon.ser.asu.edu/)**, [Apollo Image Atlas](https://www.lpi.usra.edu/resources/apollo/) or [ApolloArchive](https://apolloarchive.com/) / [Flickr](https://www.flickr.com/photos/projectapolloarchive/albums/) - Moon Landing Images * ⭐ **[In The Sky](https://in-the-sky.org/)** - Astronomy News / Interactive Guides @@ -500,7 +467,7 @@ * [Nights on Earth](https://nightsonearth.com/) - Astronomical Event Calendar * [Space Weather News](https://spaceweathernews.com/) or [SpaceWeather](https://spaceweather.com/) - Space Weather Updates / [Videos](https://www.youtube.com/user/Suspicious0bservers) * [Andegraf Rockets](https://rockets.andegraf.com/) - Rocket Diagrams -* [nextrocket.space](https://nextrocket.space/) or [RocketLaunch](https://rocketlaunch.org/) - Rocket Launch Trackers +* [Next Spaceflight](https://nextspaceflight.com/), [nextrocket.space](https://nextrocket.space/) or [RocketLaunch](https://rocketlaunch.org/) - Rocket Launch / Space Flight Trackers * [Interactive Apollo Missions](https://apolloinrealtime.org/) or [FirstMenOnTheMoon](https://www.firstmenonthemoon.com/) - Apollo in Realtime * [SunCalc](https://www.suncalc.org/), [ShadeMap](https://shademap.app/) or [MoonCalc](https://www.mooncalc.org/) - Sun / Moon Position * [Earth and Moon Viewer](https://www.fourmilab.ch/cgi-bin/Earth) - Earth / Moon Latitude and Longitude Viewer @@ -513,11 +480,11 @@ * [ExoplanetArchive](https://exoplanetarchive.ipac.caltech.edu/) - Exoplanet Database * [Space Object Comparison](https://mr21.github.io/space-object-comparison/) - Compare Sizes Of Celestial Objects * [Astrogeology](https://astrogeology-usgs.hub.arcgis.com/pages/map-search) - Planetary Maps -* [Map of the Universe](https://mapoftheuniverse.net/), [Scale of the Universe](https://scaleofuniverse.com/), [AndroidCelestia](https://github.com/celestiamobile/AndroidCelestia/) or [SpaceEngine](https://spaceengine.org/) / [Old Versions](https://forum.spaceengine.org/viewtopic.php?t=182) - Interactive Universe Scales +* [Cosmos2025](https://cosmos2025.iap.fr/fitsmap.html), [Map of the Universe](https://mapoftheuniverse.net/), [Scale of the Universe](https://scaleofuniverse.com/), [AndroidCelestia](https://github.com/celestiamobile/AndroidCelestia/) or [SpaceEngine](https://spaceengine.org/) / [Old Versions](https://forum.spaceengine.org/viewtopic.php?t=182) - Interactive Universe Scales * [NASA's Eyes](https://science.nasa.gov/eyes/) or [Celestia](https://celestiaproject.space/) - 3D Space Visualizations / [Solar System](https://eyes.nasa.gov/apps/solar-system/#/home) -* [100,000 Stars](https://stars.chromeexperiments.com/) - Interactive 3D Star Visualization +* [WikiSky](https://www.wikisky.org/) or [100,000 Stars](https://stars.chromeexperiments.com/) - Interactive 3D Star Visualizations * [AndroidPlanisphere](https://github.com/tengel/AndroidPlanisphere) - Android Star Chart -* [Aladin](https://aladin.cds.unistra.fr/) - Astronomical Image Viewer / [Lite Version](https://aladin.cds.unistra.fr/AladinLite/) +* [Aladin](https://aladin.cds.unistra.fr/) - Astronomical Image quar fViewer / [Lite Version](https://aladin.cds.unistra.fr/AladinLite/) * [Siril](https://siril.org/) - Astronomical Image Processor * [ESAsky](https://sky.esa.int/) - Public Astronomical Data * [Stellarium-Web](https://stellarium-web.org/) or [Stellarium](https://stellarium.org/) - Virtual Stellariums @@ -528,6 +495,7 @@ * [APOD](https://apod.nasa.gov/) - Daily NASA Astronomy Images * [ESO Images](https://www.eso.org/public/images/), [NASA2Explore](https://www.flickr.com/photos/nasa2explore/) or [Astrobin](https://www.astrobin.com/search/) - Astronomy Images * [/r/SpacePorn](https://www.reddit.com/r/spaceporn/) or [/r/Astrophotography](https://www.reddit.com/r/astrophotography/) - Astrophotography Subreddits +* [RGV Aerial Photography](https://discord.gg/wsFxEw9g4X) - Aerial Photography Community / News * [Meteor Showers](https://www.meteorshowers.org/) - 3D Meteor Shower Visualization * [Live Meteors](https://www.livemeteors.com/) - Live Meteor Radio Echoes * [Clear Dark Sky](https://cleardarksky.com/) - Star Gazing Weather Forecasts @@ -557,6 +525,7 @@ * [Giac/Xcas](https://www-fourier.ujf-grenoble.fr/~parisse/giac.html) - Algebra System * [Algebra Rules](https://algebrarules.com/) - Learn Algebra Rules * [CalculusMadeEasy](https://calculusmadeeasy.org) - Learn Calculus +* [Math24](https://math24.net/) - Geometry / Calculus / Problems / Solutions * [CLP](https://personal.math.ubc.ca/~CLP/) - Calculus Textbooks * [Mathematics Roadmap](https://github.com/TalalAlrawajfeh/mathematics-roadmap) - Mathematics Book Recommendations * [Converter Pro](https://f-droid.org/packages/com.ferrarid.converterpro/), [Rink](https://rinkcalc.app/), [Frink](https://frinklang.org/fsp/frink.fsp), [OneConverter](https://oneconverter.com/) or [ConvertAll](https://convertall.bellz.org/) - Unit Converters / Calculators @@ -573,11 +542,10 @@ * [ParkMath](https://parkmath.github.io/) or [FreeMathHelp](https://freemathhelp.com/) - Math Guides * [ISODN Math](https://discord.gg/3sbwZdh) - ISODN Math Discord Community * [Fourier Transform](https://www.jezzamon.com/fourier/index.html) - Interactive Fourier Transform Guide -* [ProofWiki](https://proofwiki.org/) - Mathematical Proofs Wiki * [Terence Tao Research](https://terrytao.wordpress.com/) - Mathematical Research * [OpenLogicProject](https://openlogicproject.org/) - Math Logic Teaching Materials * [Math is Fun](https://www.mathsisfun.com/) - Math Tutorials / Puzzles / Games -* [Brainstellar Puzzles](https://brainstellar.com/puzzles) - Puzzles From Quant Interviews +* [Brainstellar Puzzles](https://brainstellar.com/puzzles) - Puzzles from Quant Interviews * [Project Euler](https://projecteuler.net/) - Math / Programming Problems * [IMS](https://github.com/OpenIntroStat/ims) - Introduction to Modern Statistics * [Seeing Theory](https://seeing-theory.brown.edu/) or [Stat Trek](https://stattrek.com/) - Statistics & Probability Tutorials @@ -594,7 +562,7 @@ * ↪️ **[Comp Sci Resources](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/edu/#wiki_.25B7_computer_science)** * ↪️ **[3D Modeling](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/img-tools#wiki_.25BA_3d_models) / [CAD Apps](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/img-tools#wiki_.25B7_cad_engineering)** * ⭐ **[/r/AskEngineers](https://www.reddit.com/r/AskEngineers/)** / [Wiki](https://www.reddit.com/r/AskEngineers/wiki/), **[/r/engineering](https://www.reddit.com/r/engineering/)** or [/r/AutomotiveEngineering](https://www.reddit.com/r/AutomotiveEngineering/) - Engineering Subreddits -* ⭐ **[NPTEL](https://nptel.ac.in/course.html)** or [Sabin](https://www.youtube.com/@SabinCivil) - Engineering Courses +* ⭐ **[NPTEL](https://nptel.ac.in/courses)** or [Sabin](https://www.youtube.com/@SabinCivil) - Engineering Courses * [Formulia](https://play.google.com/store/apps/details?id=m4.enginary) - Engineering Formulas / Tools * [Sanfoundry](https://www.sanfoundry.com/) - Engineering Questions & Answers * [CESDB](https://www.cesdb.com/) - Engineering Software @@ -625,7 +593,7 @@ * [ChemicalAid](https://www.chemicalaid.com/) or [Chemequations](https://chemequations.com/en/) - Chemistry Calculators / Element Tables * [QuickChem](https://play.google.com/store/apps/details?id=com.map.michael.chemistry) - Chemistry Calculator * [PubChem](https://pubchem.ncbi.nlm.nih.gov/), [MOTM](https://www.chm.bris.ac.uk/motm/motm.htm), [NIST](https://webbook.nist.gov/chemistry/) or [EssentialChemicalIndustry](https://www.essentialchemicalindustry.org/) - Chemistry Wikis -* [ChemistrySteps](https://www.chemistrysteps.com/) or [DocBrown](https://docbrown.info/) - Chemistry Practice / Guides +* [ChemistrySteps](https://www.chemistrysteps.com/), [Science Geek](https://www.sciencegeek.net/) or [DocBrown](https://docbrown.info/) - Chemistry Practice / Guides * [Cliffnotes Chemistry](https://www.cliffsnotes.com/study-guides/chemistry/chemistry/elements/discovery-and-similarity) / [Organic Chemistry I](https://www.cliffsnotes.com/study-guides/chemistry/organic-chemistry-i) / [Organic Chemistry II](https://www.cliffsnotes.com/study-guides/chemistry/organic-chemistry-ii), [Chem Wiki](https://wiki.ch.ic.ac.uk/wiki/) or [chemguide](https://www.chemguide.co.uk) - Study Guides * [ReactionFlash](https://play.google.com/store/apps/details?id=ch.reaxys.reactionflash&hl=en-US) / [iOS](https://apps.apple.com/us/app/reactionflash/id432080813) - Chemical Reaction Flashcards * [ChemistryTalk](https://chemistrytalk.org/) - Tutorials / Experiments / Elements / Reference Articles @@ -655,6 +623,7 @@ * ⭐ **[OneZoom](https://www.onezoom.org/)** - Tree of Life Explorer * ⭐ **[Lost and Found Nature](https://www.lostandfoundnature.com/)** - Rediscovered Animal / Plant Database * [BiologyOnline](https://www.biologyonline.com/) - Biology Articles +* [Science Geek](https://www.sciencegeek.net/) - Biology Study Guides * [Biodiversity Heritage Library](https://www.biodiversitylibrary.org/) - Biodiversity Research * [Alien](https://alien-project.org/) - Artificial Life Simulator / [GitHub](https://github.com/chrxh/alien) / [Video](https://youtu.be/w9R6zrdl6jM) * [Metazooa](https://metazooa.com/) - Species Connection Game @@ -689,6 +658,7 @@ * ↪️ **[Health Resources](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/misc#wiki_.25BA_health)** * ⭐ **[Khan Academy](https://www.khanacademy.org/science/health-and-medicine)** - Physiology / Pathology Overviews * ⭐ **[Afratafreeh](https://afratafreeh.com/category/brands/)** - Medical Video Courses and Books +* ⭐ **[Radiopaedia](https://radiopaedia.org/)**, [Radiology Assistant](https://radiologyassistant.nl/) or [Radiology Education](https://www.radiologyeducation.com/) - Radiology Resources * [MDCalc](https://www.mdcalc.com/), [MSD Manuals](https://www.msdmanuals.com/) or [Epocrates](https://www.epocrates.com/) - Medical Reference Sites / Tools * [Geeky Medics](https://geekymedics.com/), [UC San Diego CG](https://meded.ucsd.edu/clinicalmed/introduction.html) or [Easy Auscultation](https://www.easyauscultation.com/) - Clinical Guides * [Glass AI](https://glass.health/ai) - Medical Diagnoses' Training AI @@ -700,7 +670,7 @@ * [University of Minnesota Histology](https://www.histologyguide.org/index.html) or [University of Leeds Histology](http://histology.leeds.ac.uk/) - Histology Guides * [Tulane University Pharmacology](https://tmedweb.tulane.edu/pharmwiki/doku.php/start) - Pharmacology Info & Quizzes * [Antibiotics Summary](https://imgur.com/rADmmfy) - Antibiotics Summary Image -* [ECGPedia](https://ecgpedia.org/), [Healio ECG Review](https://www.healio.com/cardiology/learn-the-heart/ecg-review), [ECG Library](https://www.ecglibrary.com/) or [Litfl](https://litfl.com/ecg-library/) - ECG Information +* [Healio ECG Review](https://www.healio.com/cardiology/learn-the-heart/ecg-review), [ECG Library](https://www.ecglibrary.com/) or [Litfl](https://litfl.com/ecg-library/) - ECG Information * [The ECG Course](https://www.youtube.com/playlist?list=PLVRaFpHAzzCgJdurDKLdG464Z2sMAy4oY) - ECG Video Course * [ECG Wave-Maven: Self-Assessment Program](https://ecg.bidmc.harvard.edu/maven/mavenmain.asp) - ECG Practice * [Hyper Heart](https://library.med.utah.edu/kw/pharm/hyperheart/#animation_container) - Massey University Heart Animation @@ -708,7 +678,6 @@ * [EMCrit](https://emcrit.org/) - Emergency Medicine Information * [EMRap](https://www.emrap.org/hd) - Emergency Medicine Videos * [Calgary Guide](https://calgaryguide.ucalgary.ca/) - Disease Pathophysiology / Manifestation Flow-Charts -* [Radiopaedia](https://radiopaedia.org/), [Radiology Assistant](https://radiologyassistant.nl/) or [Radiology Education](https://www.radiologyeducation.com/) - Radiology Resources * [MalaCards](https://www.malacards.org/) - Human Disease Database * [Epidemic Calculator](https://gabgoh.github.io/COVID/index.html) - COVID Data * [Pathology Outlines](https://www.pathologyoutlines.com/) - Pathology Info @@ -802,7 +771,7 @@ * [Spellcheck](https://spellcheck.xyz) - English Spelling Game * [Learn English Online](https://www.learn-english-online.org/), [ESLFast](https://www.eslfast.com/), [AntiMoon](https://www.antimoon.com/), [Oxford Online](https://www.oxfordonlineenglish.com/free-english-lessons) or [Cambridge Online](https://www.cambridgeenglish.org/learning-english/) - English Lessons * [EnglishCentral](https://www.englishcentral.com/), [EngVid](https://www.engvid.com/) or [Voscreen](https://voscreen.com/) - English Video Lessons -* [Frenglish](https://frenglish.ru/) or [English E-Reader](https://english-e-reader.net/) - English Learning Books +* [ItsAllInEnglish](https://t.me/itsallinenglishs), [Frenglish](https://frenglish.ru/) or [English E-Reader](https://english-e-reader.net/) - English Learning Books * [elllo](https://www.elllo.org/) or [Listening Lab](https://www.esl-lab.com/) - English Listening Lessons / Practice * [TalkEnglish](https://www.talkenglish.com/) or [Stimuler IELTS Speaking Buddy](https://play.google.com/store/apps/details?id=com.stimuler) - Improve Spoken English * [WriteAndImprove](https://writeandimprove.com/) - Improve English Writing @@ -818,7 +787,7 @@ ## ▷ Japanese -* 🌐 **[yame dame](https://yameda.me/)**, [GaijinRyman](https://github.com/GaijinRyman/LearningJapaneseResources), [Nihongo](https://nihongo-e-na.com/eng/), [Japanese Resources](https://forum.wordreference.com/threads/japanese-resources-%E2%80%94-constantly-updated.787986/) or [AnimeCards](https://animecards.site/) - Learning Resources +* 🌐 **[yame dame](https://yameda.me/)**, [Tatsumoto](https://tatsumoto-ren.github.io/), [GaijinRyman](https://github.com/GaijinRyman/LearningJapaneseResources), [Nihongo](https://nihongo-e-na.com/eng/), [Japanese Resources](https://forum.wordreference.com/threads/japanese-resources-%E2%80%94-constantly-updated.787986/) or [AnimeCards](https://animecards.site/) - Learning Resources * 🌐 **[Japanese Pitch Accent Resources](https://github.com/olety/japanese-pitch-accent-resources)** - Japanese Accent Resources * ↪️ **[Japanese Learning Sites](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_japanese_learning_sites)** / [YouTube Channels](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_youtube_channels) * ↪️ **[Dictionaries / Translation](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_dictionaries_.2F_translation)** @@ -849,6 +818,7 @@ * [Sogang](https://korean.sogang.ac.kr/) or [90 Day Korean](https://www.90daykorean.com/) - Korean Learning Lessons * [Mirinae](https://mirinae.io/) - Korean Word Breakdown * [National Institute of Korean Language](https://www.korean.go.kr/front_eng/main.do) - Korean Dictionaries / Expression Practice +* [LetsLearnHangul](http://letslearnhangul.com/) - Hangul Learning * [Hangul Practice](https://hangul.gay/) - Hangul Recognition Test * [UltimateKorean](https://ultimatekorean.com/) - Korean Grammar / Vocab Lessons * [KoreanKeyboardLearner](https://monikasun88.github.io/KoreanKeyboardLearner/) - Korean Typing Practice @@ -907,7 +877,7 @@ * 🌐 **[Urdu Resources](https://docs.google.com/document/d/1GRTK_E0YGybMNYZjFToM40sOHNkR1NJXc_dL8HW2Q_0/)** or [UrduNotes](https://urdunotes.com/) - Urdu Learning Resources * 🌐 **[Mga Nagmamarunong's Masterlist](https://docs.google.com/spreadsheets/d/1R9P2nt0sQbL8GqEO_hcPjwIZcM-4s0BbJifm-1AJ0Bc/)** - Tagalog Learning Resources -* 🌐 **[Learn Sanskrit](https://www.learnsanskrit.org/) or [Sanskrit Studio](https://sanskritstudio.wordpress.com/)** - Sanskrit Lessons and Tools +* 🌐 **[Learn Sanskrit](https://www.learnsanskrit.org/)** or **[Sanskrit Studio](https://sanskritstudio.wordpress.com/)** - Sanskrit Lessons and Tools * [South Asian Languages](https://discord.gg/TrdqTDdMba) - South Asian Language Learning * [Urdupod101](https://www.urdupod101.com/blog/2021/03/18/urdu-grammar-overview/) - Urdu Grammar Overview / [Video](https://youtu.be/X5J_kXigPWE) * [Rekhta Dictionary](https://www.rekhtadictionary.com/) - Urdu Dictionary @@ -934,6 +904,56 @@ *** +# ► Game Learning + +## ▷ Rubiks Cube + +* ↪️ **[Cube Simulators / Solvers](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/games/#wiki_rubiks_cube)** +* ⭐ **[J Perm](https://jperm.net/)**, [CubeSkills](https://www.cubeskills.com/), [RubiksTrainer](https://rubikstrainer.com/) or [Easiest Solve](https://easiestsolve.com/) - Cubing Tutorials / Practice Resources +* ⭐ **[CubeDesk](https://cubedesk.io/)** or **[csTimer](https://cstimer.net/)** - Feature-Rich Cubing Timers +* ⭐ **[SpeedCubeDB](https://speedcubedb.com/)** - Algorithm Database +* [SpeedSolving](https://www.speedsolving.com/) / [Wiki](https://www.speedsolving.com/wiki) or [Ruwix](https://ruwix.com/) - Cubing Wiki / Community Forum +* [World Cube Association](https://www.worldcubeassociation.org/) - Cubing Competitions & Records +* [alg.cubing.net](https://alg.cubing.net/), [CubeDB](https://cubedb.net/), or [Tao Yu Trainer](https://tao-yu.github.io/Alg-Trainer/) - Algorithm Animators / Visualizers +* [F2L Trainer](http://expertcuber.by/f2ltrainer.php) or [ZBLL Trainer](http://bestsiteever.ru/zbll/) - Algorithm-Specific Trainers +* [Speedcube.app](https://speedcube.app/) - Cubing Timer (Mobile-Friendly) +* [SolveTheCube](https://solvethecube.com/timer) - Cubing Timer +* [YoTimer](https://www.yotimer.com/) - Cubing Timer +* [qqTimer](https://www.qqtimer.net/) - Cubing Timer +* [FT Cube](https://shuantsu.github.io/ft_cube/) - Cubing Sim + Net Gen +* [Mapleaves](https://filipeteixeira.com.br/mapleaves/) - Maple Leaf Cube Sim + +*** + +## ▷ Chess + +* 🌐 **[Awesome Chess](https://github.com/hkirat/awesome-chess)**, [Chess Domi](https://t.me/Chess_Domi) or [Chess Resources](https://redd.it/u43nrc) - Chess Resources +* 🌐 **[/m/Chess](https://www.reddit.com/user/korfor/m/chess/)** or [/r/Chess](https://reddit.com/r/chess) - Chess Subreddits +* 🌐 **[/r/Chess Books](https://reddit.com/r/chess/wiki/books)** - Recommended Chess Books +* ⭐ **[Scid vs. PC](https://scidvspc.sourceforge.net/)** - Learn / Practice Chess +* [ChessGames](https://www.chessgames.com/) - Chess Database / Community +* [ChessLab](https://chesslab.me/) - Chess Lessons / [Discord](https://discord.com/invite/AA5G5f9wKC) +* [List Study](https://listudy.org/en) - Chess Lessons +* [Chessable](https://www.chessable.com/) - Chess Lessons +* [TheChessWebsite](https://www.thechesswebsite.com/) - Learn / Practice Chess +* [HerculesChess](https://herculeschess.com/) - Learn / Practice Chess +* [Chess Tempo](https://chesstempo.com/) - Chess Practice +* [Lucas Chess](https://lucaschess.pythonanywhere.com/) - Chess Practice +* [Chess Coach](https://rentry.co/FMHYBase64#chess-coach) - Chess Coaching App +* [Chessercise](https://www.chessercise.xyz/) - Chess Game / Move Analysis +* [Game Report](https://chess.wintrcat.uk/) - Chess Game / Move Analysis +* [Decode Chess](https://app.decodechess.com/) - Chess Game / Move Analysis +* [YottaChess](https://www.yottachess.com/) - Chess Game / Move Analysis +* [En Croissant](https://encroissant.org/) - Chess Game / Move Analysis +* [Chess Vision](https://chessvision.ai/) - Chess Game / Move Analysis +* [OpeningTree](https://www.openingtree.com/) - Download / Visualize Chess Games +* [Chess Monitor](https://www.chessmonitor.com/) - Track Chess Analytics +* [2700chess](https://2700chess.com/) - Live Chess Player Ratings +* [Bill Wall's Chess Page](http://billwall.phpwebhosting.com/) or [365Chess](https://www.365chess.com/) - Chess History / Lessons +* [ChessVariants](https://www.chessvariants.com/index/favorites.php) - 1000+ Chess Variants + Guides + +*** + # ► Developer Learning * 🌐 **[Awesome Certificates](https://panx.io/awesome-certificates/)** - Dev Course Indexes @@ -960,6 +980,7 @@ * [CloudSkillsBoost](https://www.cloudskillsboost.google/paths) - Programming Courses * [EggHead](https://egghead.io/) - Programming Courses * [TechSchool](https://techschool.dev/en) - Programming Courses / [Discord](https://discord.com/invite/C4abRX5skH) +* [Scratch](https://scratch.mit.edu/) - Beginner Programming Learning * [USACO Guide](https://usaco.guide/) - Competitive Programming Lessons * [Beej's Guides](https://www.beej.us/guide/) or [LearnByExample](https://learnbyexample.github.io/) - Programming Guides * [CodinGame](https://www.codingame.com/) - Games to Practice Coding / Programming @@ -999,9 +1020,10 @@ ## ▷ Programming Languages +* [Typing.io](https://typing.io/) or [Silver Dev's WPM](https://wpm.silver.dev/) - Typing Practice for Programming / Sign-Up Required * [30 Days Of Python](https://github.com/Asabeneh/30-Days-Of-Python) or [Hitchhiker's Guide to Python](https://docs.python-guide.org/) - Python Guides * [A Byte of Python](https://python.swaroopch.com/), [Hypermodern Python](https://cjolowicz.github.io/posts/hypermodern-python-01-setup/), [Learn Python](https://www.learnpython.org/), [Learn-Python](https://github.com/trekhleb/learn-python) or [Magical Universe](https://github.com/zotroneneis/magical_universe) - Learn Python -* [FutureCoder](https://futurecoder.io/), [CS50](https://cs50.harvard.edu/python/), [python-mastery](https://github.com/dabeaz-course/python-mastery) or [A Practical Introduction to Python](https://www.brianheinold.net/python/python_book.html) - Python Courses +* [FutureCoder](https://futurecoder.io/), [CS50](https://cs50.harvard.edu/python/), [python-mastery](https://github.com/dabeaz-course/python-mastery), [Genepy](https://genepy.org/) or [A Practical Introduction to Python](https://www.brianheinold.net/python/python_book.html) - Python Courses * [Tea Press](https://greenteapress.com/wp) - Python Learning Book * [Learn C](https://www.learn-c.org/) - C Tutorial * [C++ Core Guidelines](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines) - C++ Best Practices Guidelines / [GitHub](https://github.com/isocpp/CppCoreGuidelines) @@ -1023,7 +1045,7 @@ ## ▷ Web Development * 🌐 **[MDN](https://developer.mozilla.org/)** or [Web Dev Resources](https://joshjoshuap-webdevresources.vercel.app/) - Web Dev Learning Resources -* ⭐ **[Odin Project](https://www.freecodecamp.org/learn/the-odin-project/)**, [2](https://www.theodinproject.com/) - Programming / Courses / Interactive / [Discord](https://discord.com/invite/fbFCkYabZB) +* ⭐ **[Odin Project](https://www.theodinproject.com/)**, [2](https://www.freecodecamp.org/learn/the-odin-project/) - Programming / Courses / Interactive / [Discord](https://discord.com/invite/fbFCkYabZB) * ⭐ **[FullStackOpen](https://fullstackopen.com/en/)** - Full Stack Course * ⭐ **[LandChad](https://landchad.net/)**, [32bit](https://32bit.cafe/) or [learn.sadgrl.online](https://learn.sadgrl.online/) - Site Development Guides * ⭐ **[Learn to Code HTML & CSS](https://learn.shayhowe.com/)** - HTML/CSS Course @@ -1035,7 +1057,6 @@ * [Dash](https://dash.generalassemb.ly/) - Web Dev Courses * [Web Skills](https://andreasbm.github.io/web-skills/), [Codeguage](https://www.codeguage.com/) / [Discord](https://discord.gg/V8jcS8d2H5), [web.dev](https://web.dev/learn) or [Encodedna](https://www.encodedna.com/) - Web Dev Guides * [Codevolution](https://www.youtube.com/@Codevolution) - Web Dev Video Lessons -* [Local-First Web](https://localfirstweb.dev/) - Local-First Web Development Guide * [DOM Events](https://domevents.dev/) - Learn about DOM Events * [WebRTCForTheCurious](https://webrtcforthecurious.com/) - WebRTC Guide / [GitHub](https://github.com/webrtc-for-the-curious/webrtc-for-the-curious) * [backendlore](https://github.com/fpereiro/backendlore) or [Design Pattern for Humans](https://github.com/kamranahmedse/design-patterns-for-humans) - Backend Coding Guides @@ -1059,7 +1080,6 @@ * [33 JS Concepts](https://github.com/leonardomso/33-js-concepts) - Useful JavaScript Concepts * [You-Dont-Need-jQuery](https://github.com/camsong/You-Dont-Need-jQuery) - JavaScript Query Style Events Guide * [Untrusted](https://untrustedgame.com/) - JavaScript Learning Game -* [HTML DOM](https://phuoc.ng/collection/html-dom/) - Learn DOM Manipulation * [HTMLDog](https://htmldog.com/) - HTML/CSS and JavaScript Tutorials * [Pixactly](https://pixact.ly/) - Test Pixel Dimension Orientation @@ -1125,7 +1145,7 @@ ## ▷ Data Structures * ⭐ **[Leetcode](https://leetcode.com/)** - Coding Practice -* ⭐ **Leetcode Tools** - [Solutions](https://walkccc.me/LeetCode/), [2](https://leetcode.ca/) / [Company Questions](https://github.com/MysteryVaibhav/leetcode_company_wise_questions), [2](https://docs.google.com/document/d/1icaNSRq6XcWO3EOycEP9F9P8SLerBanpY3Ni_ZzCfFA/), [3](https://seanprashad.com/leetcode-patterns/) / [Animations](https://github.com/MisterBooo/LeetCodeAnimation) / [Anki Cards](https://github.com/fspv/leetcode-anki) / [Videos](https://github.com/fishercoder1534/Leetcode) / [Resources](https://github.com/ashishps1/awesome-leetcode-resources) +* ⭐ **Leetcode Tools** - [Solutions](https://walkccc.me/LeetCode/), [2](https://leetcode.ca/) / [Company Questions](https://github.com/MysteryVaibhav/leetcode_company_wise_questions), [2](https://docs.google.com/document/d/1icaNSRq6XcWO3EOycEP9F9P8SLerBanpY3Ni_ZzCfFA/), [3](https://seanprashad.com/leetcode-patterns/) / [Animations](https://github.com/MisterBooo/LeetCodeAnimation) / [Anki Cards](https://github.com/fspv/leetcode-anki) / [Videos](https://github.com/fishercoder1534/Leetcode) / [Resources](https://github.com/ashishps1/awesome-leetcode-resources) / [Analytics](https://leetcode-company-questions.vercel.app/) * ⭐ **[NeetCode](https://neetcode.io/)** - Coding Interview Practice * [algonds](https://github.com/MaciejWas/algonds) - Coding Practice * [Codility](https://app.codility.com/programmers/) - Coding Practice @@ -1161,7 +1181,7 @@ * [Deceptive Patterns](https://www.deceptive.design/) - Deceptive User Experience Examples * [UI Coach](https://uicoach.io/) - UI Design Challenge Generator * [HTML Dog](https://htmldog.com/) or [Front Tips](https://front.tips/) - Frontend Tutorials & Examples -* [FrontEndMentor](https://www.frontendmentor.io/), [Phuoc](https://phuoc.ng/) or [Frontend Challenges](https://github.com/felipefialho/frontend-challenges) - Frontend Design Challenges +* [FrontEndMentor](https://www.frontendmentor.io/) or [Frontend Challenges](https://github.com/felipefialho/frontend-challenges) - Frontend Design Challenges * [Frontend Learning Kit](https://github.com/sadanandpai/frontend-learning-kit) - Frontend Learning Index * [Frontend Bootcamp](https://microsoft.github.io/frontend-bootcamp/) - Frontend Workshop @@ -1173,7 +1193,7 @@ * 🌐 **[CTF Sites](https://ctfsites.github.io/)**, [echoCTF.RED](https://echoctf.red/), [CTF101](https://ctf101.org/), [picoCTF](https://picoctf.org/), [CTF Beginners Guide](https://jaimelightfoot.com/blog/so-you-want-to-ctf-a-beginners-guide/), [CTFtime](https://ctftime.org/) or [CTFLearn](https://ctflearn.com/) - CTF Resources / Guides * ⭐ **[HackTricks](https://book.hacktricks.wiki/)** - Practical Penetration Testing & Security Auditing Tips * ⭐ **[OWASP Cheatsheet](https://cheatsheetseries.owasp.org/)** - Application Security Guide -* [Hackers101](https://www.hacker101.com/), [SmashTheStack](https://smashthestack.org/), [WebHacking](https://webhacking.kr/) or [DefendTheWeb](https://defendtheweb.net/) - Cybersecurity Challenges +* [Hackers101](https://www.hacker101.com/), [SmashTheStack](https://smashthestack.org/) or [WebHacking](https://webhacking.kr/) - Cybersecurity Challenges * [Skills for All](https://www.netacad.com/) or [90DaysOfCyberSecurity](https://github.com/farhanashrafdev/90DaysOfCyberSecurity) - Cybersecurity Courses * [Sectube](https://sectube.tv/) - IT Security Event Recordings * [TryHackMe](https://tryhackme.com/), [Hack The Box](https://www.hackthebox.com/) or [OpenSecurityTraining2](https://opensecuritytraining.info/) - Cybersecurity Lessons @@ -1184,7 +1204,7 @@ * [MicroCorruption](https://microcorruption.com/) - Learn Reverse Engineering / Cybersecurity * [x86re](https://x86re.com/) or [Reverse-Engineering](https://github.com/mytechnotalent/Reverse-Engineering) - Reverse Engineering Guides * [CrackMyApp](https://crackmy.app/) or [crackmes](https://crackmes.one/) / [Discord](https://discord.com/invite/2pPV3yq) - Reverse Engineering Challenges -* [John Hammond](https://www.youtube.com/@_JohnHammond) - Cybersecurity YouTube Tutorials / [Discord](https://j-h.io/discord) +* [John Hammond](https://www.youtube.com/@_JohnHammond) - Cybersecurity YouTube Tutorials * [Pentesting Bible](https://github.com/blaCCkHatHacEEkr/PENTESTING-BIBLE) or [Juice Shop](https://owasp.org/www-project-juice-shop/) - Learn Pentesting * [How DNS Works](https://howdns.works/) - Learn DNS * [How DNSSEC Works](https://howdnssec.works/) - Learn DNSSEC @@ -1200,14 +1220,18 @@ * ⭐ **[develop.games](https://www.develop.games/)** - Game Dev Guides * ⭐ **[Brackeys](https://www.youtube.com/channel/UCYbK_tjZ2OrIZFBvU6CCMiA)** - Game Dev Tutorials * ⭐ **[/r/gamedev](https://www.reddit.com/r/gamedev/)** - Reddit Community +* [20 Games Challenge](https://20_games_challenge.gitlab.io/) - Beginner Game Dev Challenges * [Amit’s Game Programming](http://www-cs-students.stanford.edu/~amitp/gameprog.html) - Game Programming Guide +* [GameProgramBooks](https://rentry.co/FMHYBase64#gameprogrambooks) - Game Programming Books * [PICO-8](https://mboffin.itch.io/pico8-educational-toolset) - Basic Game Dev Concepts / [Web Version](https://www.pico-8-edu.com/) * [From Zero To Hero](https://therealpenaz91.itch.io/2dgd-f0th) - 2D Game Dev Book * [Web Game Dev](https://www.webgamedev.com/) - Game Dev Guides / [Discord](https://discord.com/invite/5Z28wjTeyh) * [SebastianLague](https://www.youtube.com/c/SebastianLague/playlists?view=50&sort=dd&shelf_id=4) - Game Dev Tutorials * [Trig for Games](https://demoman.net/?a=trig-for-games) - Trigonometry Lessons for Games +* [Shadertoy](https://www.shadertoy.com/) - Real-Time Shader Dev Platform * [Game Math](https://gamemath.com/book/intro.html) - Mathematics Lessons for Game Devs * [Graphics Workshop](https://github.com/ekzhang/graphics-workshop) - Learn Computer Graphics +* [The Book of Shaders](https://thebookofshaders.com/) - Fragment Shaders Guide * [QB64SourceCode](https://www.qb64tutorial.com/) - QB64 Game Programming Tutorials * [8bitWorkshop](https://8bitworkshop.com/) - Retro Game Programming Tutorials @@ -1223,7 +1247,9 @@ * ↪️ **[Text Rephrasing](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/text-tools#wiki_.25B7_text_rephrasing)** * ⭐ **[OpenBoard](https://openboard.ch/)**, [DGM](https://dgm.sh/), [NotebookCast](https://www.notebookcast.com/), [WebWhiteboard](https://webwhiteboard.com/), [Microsoft Whiteboard](https://apps.microsoft.com/detail/9MSPC6MP8FM4), [WBO](https://wbo.ophir.dev/), [OurBoard](https://www.ourboard.io/), [Whiteboard.fi](https://whiteboard.fi/) or [Whiteboard Fox](https://r3.whiteboardfox.com/) - Whiteboards * [FreeForStudent](https://freeforstudents.org/) - Free for Student Deals -* [ImageJ](https://imagej.net/) or [Fiji](https://fiji.sc/) - Scientific Image Analyzers +* [Better Canvas](https://github.com/UseBetterCanvas/bettercanvas) - Canvas Enhancement Extension +* [Tasks for Canvas](https://github.com/jtcheng26/canvas-task-extension) - Improved Canvas To-Do List +* [ImageJ](https://imagej.net/) / [Web](https://ij.imjoy.io/) or [Fiji](https://fiji.sc/) - Scientific Image Analyzers * [Altium](https://www.altium365.com/viewer/) - Schematics Visualizer * [Wolfram Cloud](https://www.wolframcloud.com/) - Computational Intelligence * [GradesFixer](https://www.gradesfixer.com/) - Essay Samples @@ -1237,6 +1263,7 @@ * [Wordwall](https://wordwall.net/) - Lesson Creator * [The Chomsky Index](https://github.com/jasons-gh/the-chomsky-index) - Noam Chomsky Content Index Tool * [Internet-In-A-Box](https://internet-in-a-box.org/) - Create Free Offline Learning Hotspots / [GitHub](https://github.com/iiab/iiab) +* [SlideShareDownloader](https://www.slidesdownloader.com/) or [SlideShareSaver](https://slidesharesaver.com/) - Download Slideshare Slides *** @@ -1246,17 +1273,17 @@ * 🌐 **[Digital SAT Resources](https://redd.it/zzsgzl)** - SAT Resources * ↪️ **[Note-Taking Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/text-tools#wiki_.25B7_note-taking)** * ↪️ **[Documents / Articles](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/reading#wiki_.25B7_documents_.2F_articles)** -* ⭐ **[Wolfram Alpha](https://www.wolframalpha.com/)** - Searchable Knowledge Base / [Mobile](https://rentry.co/FMHYBase64#wolfram-mobile) +* ⭐ **[Wolfram Alpha](https://www.wolframalpha.com/)** or [Wolfram Mobile](https://rentry.co/FMHYBase64#wolfram-mobile) - Searchable Knowledge Base * ⭐ **[StudyLion](https://lionbot.org)** - Study Tracker / Productivity Discord Bot / [GitHub](https://github.com/StudyLions/StudyLion) -* ⭐ **[StudyKit](https://studykit.app/)** [StuDoc](https://www.studocu.com/) / [Downloader](https://github.com/danieltyukov/studocuhack) / [2](https://dlstudocu.com/), [Gizmo](https://gizmo.ai/), [Knowt](https://knowt.com/), [Quizlet](https://quizlet.com/), [Shmoop](https://www.shmoop.com/) or [SparkNotes](https://www.sparknotes.com/) - Quizzes / Study Material / [Show Hidden](https://greasyfork.org/en/scripts/423872) +* ⭐ **[StudyKit](https://studykit.app/)**, [StuDoc](https://www.studocu.com/) / [Downloader](https://github.com/danieltyukov/studocuhack) / [2](https://dlstudocu.com/), [Gizmo](https://gizmo.ai/), [Knowt](https://knowt.com/), [Quizlet](https://quizlet.com/), [Shmoop](https://www.shmoop.com/), [Bitesize](https://www.bbc.co.uk/bitesize) or [SparkNotes](https://www.sparknotes.com/) - Quizzes / Study Material / [Show Hidden](https://greasyfork.org/en/scripts/423872) * ⭐ **[Anki](https://apps.ankiweb.net/)** / [Discord](https://discord.gg/jUvBM2sEs4) / [Subreddit](https://www.reddit.com/r/Anki/) / [GitHub](https://github.com/ankidroid/Anki-Android), [StudyLib](https://www.studylib.net/), [RemNote](https://www.remnote.com/), [Flippity](https://www.flippity.net/), [Flashcard Machine](https://www.flashcardmachine.com/), [MemoAnki](https://memoanki.com/), [revisiondojo](https://www.revisiondojo.com/), [Flashka](https://www.flashka.ai/) or [NoteKnight](https://www.noteknight.com) - Flashcard Tools -* ⭐ **Anki Tools** - [Add-ons](https://ankiweb.net/shared/addons) / [Decks](https://ankiweb.net/shared/decks) / [Resources](https://github.com/tianshanghong/awesome-anki) -* ⭐ **[Coursicle](https://www.coursicle.com/)** - Class Schedule Tracker / Android +* ⭐ **Anki Tools** - [Add-ons](https://ankiweb.net/shared/addons) / [Decks](https://ankiweb.net/shared/decks) / [Resources](https://docs.ankiweb.net/resources.html), [2](https://github.com/tianshanghong/awesome-anki) +* ⭐ **[Coursicle](https://www.coursicle.com/)** - Class Schedule Tracker / Android, iOS * ⭐ **[OpenSyllabus](https://opensyllabus.org/)** - Syllabus Search / Info * ⭐ **[Refseek](https://www.refseek.com/)**, [Explorer](https://explorer.globe.engineer/) or [Merlot](https://www.merlot.org/merlot/index.htm) - Academic Search Engines * [SciSpace](https://scispace.com/) (No Sign-Up), [Scinito](https://ekb.scinito.ai/ai/chat) or [Elicit](https://elicit.com/) / [GitHub](https://github.com/elicit) - Research Paper Chatbots * [Co-STORM](https://storm.genie.stanford.edu/) - Generate Wiki-Style Articles for Anything -* [mybib](https://www.mybib.com/), [citemaker](https://www.citemaker.com/), [formatically](https://formatically.com/), [zbib](https://zbib.org/), [CitationMachine](https://citationmachine.net/), [CiteFast](https://www.citefast.com) or [Cite This For Me](https://www.citethisforme.com/) - Generate Citations / [Chrome](https://chromewebstore.google.com/detail/cite-this-for-me-web-cite/nnnmhgkokpalnmbeighfomegjfkklkle) +* [mybib](https://www.mybib.com/), [citemaker](https://www.citemaker.com/), [formatically](https://formatically.com/), [zbib](https://zbib.org/), [CitationMachine](https://citationmachine.net/), [Scribbr](https://www.scribbr.com/citation/generator/), [CiteFast](https://www.citefast.com) or [Cite This For Me](https://www.citethisforme.com/) - Citation Generators / [Chrome](https://chromewebstore.google.com/detail/cite-this-for-me-web-cite/nnnmhgkokpalnmbeighfomegjfkklkle) * [Publish or Perish](https://harzing.com/resources/publish-or-perish) - Citation Analyzer * [Inciteful](https://inciteful.xyz/) - Find Connected Literature via Citations * [PLText](https://pltext.com/), [PlagiarismDetector](https://plagiarismdetector.net/) or [Duplichecker](https://www.duplichecker.com/) - Plagiarism Checkers @@ -1270,20 +1297,20 @@ * [Lurnby](https://www.lurnby.com) - Research Highlighting Tool / [GitHub](https://github.com/Roznoshchik/Lurnby) * [General Index](https://archive.org/details/GeneralIndex) - Article Metadata Mining Project * [Papertag](https://www.papertag.app/) - Attach Digital Content to Paper -* [Graded](https://nightdreamgames.com/#graded) - Grades Tracker / Android / [GitHub](https://github.com/NightDreamGames/Graded) +* [Graded](https://nightdreamgames.com/#graded) - Grades Tracker / Android, iOS / [GitHub](https://github.com/NightDreamGames/Graded) * [GradesCalculator](https://calculatecgpa.com) - Calculate CGPA & GPA * [CalculateCGPA](https://cgpacalcs.com/) - Calculate GPA * [LearnedEasy](https://learnedeasy.com/) - Create Summaries / Quizzes from Books * [SearchifyX](https://github.com/daijro/SearchifyX) - Search Flashcards * [ForgetMeNot](https://github.com/tema6120/ForgetMeNot) - Flashcard Mobile App -* [Get Unstuck](https://socratic.org/) or [Brainly](https://brainly.com/) / [Limit Bypass](https://greasyfork.org/en/scripts/430355) - Homework Help Bots / Communities -* [Toppr](https://www.toppr.com/), [FreeOnlineTest](https://www.freeonlinetest.in/), [Alloprof](https://www.alloprof.qc.ca/en/) or [AE Old (Discord)](https://discord.gg/VCXGudY) - Test Practice & Homework Help -* [DoubtNut](https://www.doubtnut.com/) - Exam / Solutions / Help +* [Brainly](https://brainly.com/) / [Limit Bypass](https://greasyfork.org/en/scripts/430355) - Homework Help Bots / Communities +* [FreeOnlineTest](https://www.freeonlinetest.in/), [Alloprof](https://www.alloprof.qc.ca/en/) or [AE Old (Discord)](https://discord.gg/VCXGudY) - Test Practice & Homework Help +* [DoubtNut](https://www.doubtnut.com/) - Exam / Solutions / Help / [Ad-Bypass](https://greasyfork.org/en/scripts/534790) * [MammothMemory](https://mammothmemory.net/index.html) - Visual Memory-Based Solutions -* [StudyStream](https://www.studystream.live/) or [StudyTogether](https://www.studytogether.com/) - Online Study Groups +* [StudyStream](https://www.studystream.live/), [Yeolpumta](https://www.yeolpumta.com/en) or [StudyTogether](https://www.studytogether.com/) - Online Study Groups * [Space Finder](https://spacefinder.lib.cam.ac.uk/) - UK Study Space Search * [Papers.Xtreme](https://papers.xtremepape.rs/) - Test Revision Notes & Answers -* [OnePrep](https://oneprep.xyz/), [DSATuz](https://t.me/DSATuz) / [Telegram](https://t.me/DSATuzchat) or [The SAT: Practice Tests](https://satsuite.collegeboard.org/sat/practice-preparation/practice-tests) - SAT Practice Exams / Questions +* [OnePrep](https://oneprep.xyz/), [Mcelroy Tutoring](https://www.mcelroytutoring.com/lower.php?url=44-official-sat-pdfs-and-82-official-act-pdf-practice-tests-free), [DSATuz](https://t.me/DSATuz) / [Telegram](https://t.me/DSATuzchat) or [The SAT: Practice Tests](https://satsuite.collegeboard.org/sat/practice-preparation/practice-tests) - SAT Practice Exams / Questions * [SATArchive](https://www.satarchive.com/) - Previous SAT Test Archive * [SAT Reading](https://rentry.co/satreading) - Suggested SAT Reading * [SAT_Files_discussion](https://t.me/SAT_Files_discussion) - SAT Exam Discussion @@ -1298,7 +1325,7 @@ * [/r/CATpreparation](https://www.reddit.com/r/CATpreparation/) - CAT Test Prep / [Discord](https://discord.gg/CAvHUZY6rH) * [Revisely](https://www.revisely.com/) - GCSE Exam Help * [CatchaScience](https://catchascience.wordpress.com/), [IGCSEResources](https://sites.google.com/view/igcseresources/home), [r/IGCSE](https://www.reddit.com/r/igcse/) or [ZNotes](https://znotes.org/) - IGCSE Study Notes / Resources -* [IGCSE Papers](https://igcse.net/igcse-past-papers-download/) or [Physics & Maths Tutor](https://www.physicsandmathstutor.com/) - Download Past GCSE / IGCSE Papers +* [IGCSE Papers](https://igcse.net/igcse-past-papers-download/), [RevisionScience](https://revisionscience.com/) or [Physics & Maths Tutor](https://www.physicsandmathstutor.com/) - Download Past GCSE / IGCSE Papers * [IELTS69](https://www.ielts69.com/) - Cambridge Practice Tests * [CaieFinder](https://caiefinder.com/) - Previous Cambridge Test Answers * [anthropology](https://t.me/anthropology) - UPSC Telegram Channel @@ -1321,8 +1348,7 @@ * [Genetry](https://genetry.carrd.co/) or [Lec.Branch](https://t.me/addlist/pgaJblpaVWIwYjFl) - JEE Lectures * [YouTube Lengths](https://redd.it/1614jn5), [Fastlane Lengths](https://redd.it/17d1qt3) or [Normal Lane Lengths](https://redd.it/183er1y) - Lecture Lengths / Data * [MarksAPP](https://web.getmarks.app/) - Guides / Study Material / [Telegram](https://telegram.me/getmarksapp) -* [Adv Study Material](https://rentry.co/FMHYBase64#jee-study) - Guides / Study Material -* [DoubtNut](https://www.doubtnut.com/) - Solutions / Help / [Ad Bypass](https://redd.it/16da7s9) +* [DoubtNut](https://www.doubtnut.com/) - Solutions / Help / [Ad-Bypass](https://greasyfork.org/en/scripts/534790) *** @@ -1330,88 +1356,50 @@ * ⭐ **[Wolfram|Alpha](https://www.wolframalpha.com/examples/mathematics)** - Calculators * ⭐ **[Omni Calculator](https://www.omnicalculator.com/)** - Calculators -* ⭐ **[OpenCalc](https://github.com/Darkempire78/OpenCalc)**, [yetCalc](https://github.com/Yet-Zio/yetCalc), [microMathematics](https://github.com/mkulesh/microMathematics), [Calculator++](https://play.google.com/store/apps/details?id=org.solovyev.android.calculator), [Calc 991](https://play.google.com/store/apps/details?id=advanced.scientific.calculator.calc991.plus) or [Graph89](https://github.com/eanema/graph89) - Android Calculators -* ⭐ **[Microsoft Math Solver](https://math.microsoft.com/)**, [SpeedCrunch](https://speedcrunch.org/) or [MathPapa](https://www.mathpapa.com/algebra-calculator.html) - Advanced Calculator -* ⭐ **[SageCalc](https://sagecalc.com/)**, **[ti84calc.online](https://ti84calc.online/)**, [CEmu](https://github.com/CE-Programming/CEmu), [ti-84calculatoronline](https://ti-84calculatoronline.com), [TI 84 Calculator](https://ti84calculator.co/en-US), [TI-84 Plus](https://ti84.pages.dev/) / [Shell](https://github.com/RoccoLoxPrograms/CEaShell), [TI-84 Online](https://www.ti84-online.com/l) or [ti84calc](https://ti84calc.com/) - TI-84 Calculators -* ⭐ **[GeoGebra](https://www.geogebra.org/)**, [Grapes](https://www.criced.tsukuba.ac.jp/grapes/) or [Desmos](https://www.desmos.com/) - Graphing Calculators -* ⭐ **[Cymath](https://www.cymath.com/)**, [PhotoMath](https://rentry.co/FMHYBase64#photomath), [Mathway](https://www.mathway.com/), [MathDF](https://mathdf.com/), [Math Solver](https://mathsolver.microsoft.com/en), [Tiger Algebra](https://www.tiger-algebra.com/) or [Symbolab](https://www.symbolab.com/) - Math Problem Solvers -* [Omnimaga](https://www.omnimaga.org/index.php) - Calculator Community / Forums -* [GoodCalculators](https://goodcalculators.com/) - Calculators -* [GigaCalculator](https://www.gigacalculator.com/) - Calculators +* ⭐ **[OpenCalc](https://github.com/Darkempire78/OpenCalc)**, [yetCalc](https://github.com/Yet-Zio/yetCalc) or [microMathematics](https://github.com/mkulesh/microMathematics) - Android Calculators +* ⭐ **[SageCalc](https://sagecalc.com/)**, [CEmu](https://github.com/CE-Programming/CEmu), [TI-84 Online](https://www.ti84-online.com/) or [ti84calc](https://ti84calc.com/) - TI-84 Calculators +* ⭐ **[GeoGebra](https://www.geogebra.org/)** or [Desmos](https://www.desmos.com/) - Graphing Calculators +* [SpeedCrunch](https://speedcrunch.org/) - Advanced Calculator * [numbr.dev](https://numbr.dev/) - Calculators * [Aqua Calc](https://www.aqua-calc.com/) - Calculators * [PlanetCalc](https://planetcalc.com/) - Calculators -* [TI-30 Calculator Online](https://ti84calc.online/ti-30) or [ti30calc](https://ti84calc.com/ti30) - TI-30XS Calculator -* [TI-108 Calculator Online](https://ti84calc.online/ti-108) - TI-108 Calculator -* [ThomasOkken](https://thomasokken.com/) - HP-42S Calculator -* [FreeFEM](https://freefem.org/) - Partial Differential Equations Solver -* [MatrixCalc](https://matrixcalc.org/en/) or [Reshish](https://matrix.reshish.com/) - Matrix Calculators +* [MatrixCalc](https://matrixcalc.org/en/) - Matrix Calculator * [Qalculate](https://qalculate.github.io/) - Desktop Calculator * [QwikTape](https://github.com/4silvertooth/QwikTape) - Note Style Calculator -* [Integral Calculator](https://www.integral-calculator.com/) or [Derivative Calculator](https://www.derivative-calculator.net/) - Integral / Derivative Calculators -* [fxSolver](https://www.fxsolver.com/), [SpeedCrunch](https://heldercorreia.bitbucket.io/speedcrunch/), [Kalker](https://kalker.xyz/) or [Numbat](https://numbat.dev/) - Scientific Calculators +* [Kalker](https://kalker.xyz/) or [Numbat](https://numbat.dev/) - Scientific Calculators * [TicCalc](https://www.ticalc.org/pub/) - TI Graphing Calculator Files * [arTIfiCE](https://yvantt.github.io/arTIfiCE/) - TI CE Calculator Jailbreak -* [TI-Basic Developer](http://tibasicdev.wikidot.com/) - TI-Basic Info Repository +* [Cymath](https://www.cymath.com/), [PhotoMath](https://rentry.co/FMHYBase64#photomath), [Mathway](https://www.mathway.com/), [MathDF](https://mathdf.com/), [Tiger Algebra](https://www.tiger-algebra.com/) or [Symbolab](https://www.symbolab.com/) - Math Problem Solvers *** ## ▷ Dictionaries / Thesaurus -* 🌐 **[Dictionary Index](https://onelook.com/?d=all_gen)** - List of Online Dictionaries * ⭐ **[OneLook](https://onelook.com/)** - Multi Dictionary / Thesaurus Search * ⭐ **[Merriam-Webster](https://www.merriam-webster.com/)** - Dictionary / Thesaurus * ⭐ **[GoldenDict](https://xiaoyifang.github.io/goldendict-ng/)** / [2](https://sourceforge.net/projects/goldendict/) - Dictionary / [Files](https://rentry.co/FMHYBase64#goldendict-files) -* ⭐ **[TheSage](https://www.sequencepublishing.com/)** - Dictionary / Thesaurus * ⭐ **[NGrams](https://books.google.com/ngrams/)** or [Netspeak](https://netspeak.org/) - Word Usage Trackers * ⭐ **[The Piracy Glossary](https://rentry.org/The-Piracy-Glossary)** - Piracy Dictionary * ⭐ **[UrbanDictionary](https://www.urbandictionary.com/)** / [Frontends](https://codeberg.org/zortazert/rural-dictionary/) or [Slangit](https://slang.net/) - Slang Word / Phrase Dictionaries -* [NinjaWords](https://ninjawords.com/) - Dictionary * [Wordnik](https://www.wordnik.com/) - Dictionary * [Oxford English Dictionary](https://oed.com/) - Dictionary / [Bypass](https://rentry.co/freeoed) * [Cambridge Dictionary](https://dictionary.cambridge.org/) - Dictionary -* [LDOCE](https://www.ldoceonline.com/) - Dictionary * [Wiktionary](https://www.wiktionary.org/) - Dictionary -* [Lexicool](https://www.lexicool.com/) - Dictionary -* [Vocabulary](https://www.vocabulary.com/) - Dictionary -* [TheFreeDictionary](https://www.thefreedictionary.com/) - Dictionary -* [Dictionary](https://www.dictionary.com/) - Dictionary -* [Word Hippo](https://www.wordhippo.com/) - Thesaurus -* [Thesaurus.com](https://www.thesaurus.com/) - Thesaurus * [PowerThesaurus](https://www.powerthesaurus.org/) - Thesaurus -* [VisualThesaurus](https://www.visualthesaurus.com/) - Thesaurus * [Historical Thesaurus of English](https://ht.ac.uk/) - Historical Thesaurus -* [Webopedia](https://www.webopedia.com/) or [TechTerms](https://techterms.com/) - Tech Dictionary * [Phrases.org](https://phrases.org.uk/) - Phrase Dictionary * [Time Traveler](https://www.merriam-webster.com/time-traveler) - Find Words First Printed Usage -* [EtymOnline](https://www.etymonline.com/) or [WorldwideWords](https://www.worldwidewords.org/) - Etymologies +* [EtymOnline](https://www.etymonline.com/) - Etymologies * [StarlingDB](https://starlingdb.org/) - Advanced Linguistics Dictionary -* [Words to Use](https://www.words-to-use.com/) - Find Alternative Words * [Phrontistery](https://phrontistery.info/) - Obscure Word Dictionary -* [LexiLogos](https://www.lexilogos.com/english/index.htm) - Multi Language Dictionary Index -* [Reverse Dictionary](https://reverse-dictionary.virock.org/) - Lookup Words via Phrases -* [WikiDiff](https://wikidiff.com/) - Difference Between Any Words -* [Websters 1913](https://www.websters1913.com/) - 1913 Websters Dictionary -* [Unionpedia](https://en.unionpedia.org/), [Lexipedia](https://www.lexipedia.com/), [VisuWords](https://visuwords.com/) or [WordWeb](https://wordwebs.app/) - Word Connections / Visualizers -* [DoesNotTranslate](https://doesnottranslate.com/) or [Eunoia](https://eunoia.world/) - Words with No Translation -* [Tip of my Tongue](https://chir.ag/projects/tip-of-my-tongue/) - Find Words you Can't Remember -* [Abbreviations.com](https://www.abbreviations.com/) - Abbreviations +* [Unionpedia](https://en.unionpedia.org/), [Lexipedia](https://www.lexipedia.com/) or [VisuWords](https://visuwords.com/) - Word Connections / Visualizers +* [Eunoia](https://eunoia.world/) - Words with No Translation * [Affixes.org](https://www.affixes.org/) - Affixes -* [AcronymFinder](https://www.acronymfinder.com/), [All Acronyms](https://www.allacronyms.com/) or [The Acronym Server](https://acronyms.silmaril.ie/) - Abbreviations / Acronyms -* [Chat Words Dictionary](https://chatworddictionary.com/) - Chat Abbreviations * [Fraze.it](https://fraze.it/) - Sentence Search -* [DescribingWords](https://describingwords.io/) - Adjectives -* [Better Synonyms](https://www.bettersynonyms.com/) - Synonyms -* [Thsrs](https://www.ironicsans.com/thsrs/) - Synonyms -* [Synonym.com](https://www.synonym.com/) - Synonyms * [Feeels](https://feelu.vercel.app/) - Emotion Synonym Chart -* [Gender Neutral Dictionary](https://en.pronouns.page/dictionary) - Gender Neutral Language Dictionary * [PrideFlags](https://www.prideflags.org/) - LGBT Flag Index -* [TheIdioms](https://www.theidioms.com/) - Idiom Dictionary -* [RhymeZones](https://www.rhymezone.com/) or [Rhymer](https://rhymer.com/) - Rhyme Dictionary * [TheDevilsDictionary](https://www.thedevilsdictionary.com/) - Cynical Dictionary * [WordSafety](http://wordsafety.com/) - Swear Word Indexes -* [FreeMdict](https://freemdict.com/) - Dictionary Downloads / [Archive](https://rentry.co/FMHYBase64#freemdict-downloads) * [PyGlossary](https://github.com/ilius/pyglossary) - Convert Dictionary Files *** @@ -1451,4 +1439,4 @@ * [UrlShortener](https://meta.wikimedia.org/wiki/Special:UrlShortener) - Shorten URLs * [WikiNearby](https://wikinearby.toolforge.org/) - Location Search * [EntiTree](https://www.entitree.com/) - WikiData Visualization Tool / [GitHub](https://github.com/codeledge/entitree) -* [Wiki Timeline](https://wiki-timeline.com/) - Create Timelines from Wiki Articles \ No newline at end of file +* [Wiki Timeline](https://wiki-timeline.com/) - Create Timelines from Wiki Articles diff --git a/docs/feedback.md b/docs/feedback.md index 8d6896a79..468cc8f7b 100644 --- a/docs/feedback.md +++ b/docs/feedback.md @@ -46,11 +46,15 @@ These are all anonymous comments taken from Reddit, Discord, X.com and our feedb * *"I want to express my sincere appreciation for the wiki of useful resources. It has proven to be an invaluable source of information, providing a wide range of knowledge on various topics. The well-organized and comprehensive nature of the wiki has been instrumental in aiding my research and learning. I am truly grateful for the effort and dedication that has gone into curating and maintaining such a valuable repository of knowledge. Thank you for this exceptional resource."* * *"I'm not kidding when I say my quality of life would be SO. MUCH. LOWER. if it wasn't for the people running this thing, as well as the people running all the tools we get to use. I seriously pray we get at least several more solid years of this style of internet."* + +* *"You guys have made this wonderful piece of combined knowledge into website, its like being exposed to what not I haven't seen/experienced in my life. I am really grateful for this initiative as I am not that financially blessed and I cannot afford a lot of the software out in the market, but due to fmhy I have access to nearly everything."* * *"Amazing stuff. Spent almost whole day browsing this and I got introduced to tons of great software. Thank you!!"* * *I can't begin to express how much of a godsend this website is! Please keep up the terrific work and know that you are making a massive difference in the lives of students like me who can't always pay for subscriptions, or are just looking for a neat tool!* +* *"Me and my sibling have made visiting this site a ritual. Seriously, we can't thank you enough for your work! Our broke third world living country asses would've never dreamed of seeing this much media."* + * *"I love FMHY's wiki, to the point I can't use the internet without it."* * *"In this age of the internet, search engines are getting worse to find stuff we searching for. This site has helped me not only the when I can't find something on search engines, but also to find new stuff I didn't know existed. I go here first before I consult google. Thank you and everyone for your hard work. Don't loose this site, no matter the cost."* diff --git a/docs/file-tools.md b/docs/file-tools.md index 32ad39cd1..cb2935b98 100644 --- a/docs/file-tools.md +++ b/docs/file-tools.md @@ -25,13 +25,13 @@ * [TagSpaces](https://www.tagspaces.org/) - Add Tags to Files and Folders * [SKTimeStamp](https://tools.stefankueng.com/SKTimeStamp.html) - Change File Created / Modified Time * [ExtractMetadata](https://www.extractmetadata.com/) or [Metadata2Go](https://www.metadata2go.com/) - Metadata Viewers / Editors -* [CUETools](http://cue.tools/wiki/CUETools) - Manupulate .cue Files / [GitHub](https://github.com/gchudov/cuetools.net/) +* [CUETools](http://cue.tools/wiki/CUETools) - Manipulate .cue Files / [GitHub](https://github.com/gchudov/cuetools.net/) *** ## ▷ Download Managers -* ⭐ **[JDownloader](https://jdownloader.org/jdownloader2)** - Download Manager / [Debloat](https://rentry.org/jdownloader2) / [Dark Theme](https://redd.it/q3xrgj), [2](https://github.com/moktavizen/material-darker-jdownloader/) / [Dracula Theme](https://draculatheme.com/jdownloader2) / [Apps](https://my.jdownloader.org/apps/) +* ⭐ **[JDownloader](https://jdownloader.org/jdownloader2)** - Download Manager / [Debloat](https://rentry.org/jdownloader2) / [Dark Theme](https://redd.it/q3xrgj), [2](https://github.com/moktavizen/material-darker-jdownloader/) / [Dracula Theme](https://draculatheme.com/jdownloader2) / [Apps](https://my.jdownloader.org/apps/) / [Warning](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#jdownloader) * ⭐ **[IDM](https://rentry.co/FMHYBase64#idm)** - Download Manager * [AB Download Manager](https://abdownloadmanager.com/) - Download Manager / [GitHub](https://github.com/amir1376/ab-download-manager) / [Telegram](https://t.me/abdownloadmanager_discussion) * [Go Speed](https://gopeed.com/) - Download Manager / [Extension](https://github.com/GopeedLab/browser-extension) / [Plugins](https://github.com/search?q=topic%3Agopeed-extension&type=repositories) / [GitHub](https://github.com/GopeedLab/gopeed) @@ -43,7 +43,6 @@ * [File Centipede](https://filecxx.com/) - Upload / Download Manager * [DownThemAll](https://www.downthemall.org/) - Download Management Extension * [HTTP Downloader](https://erickutcher.github.io/) - Download Manager for HTTP / FTP / SFTP Protocols / [GitHub](https://github.com/erickutcher/httpdownloader) -* [mf-dl](https://gitgud.io/Pyxia/mf-dl/) or [mediafire_bulk_downloader](https://github.com/NicKoehler/mediafire_bulk_downloader) - Mediafire File Downloaders *** @@ -51,7 +50,7 @@ * 🌐 **[SuperCompression](https://supercompression.org/)** - File Compression Resources * ⭐ **[NanaZip](https://github.com/M2Team/NanaZip)** or **[7-Zip](https://www.7-zip.org/)** - File Archiver -* ⭐ **[PeaZip](https://peazip.github.io/)** - Cross Platform File Archiver +* ⭐ **[PeaZip](https://peazip.github.io/)** - Cross-Platform File Archiver * ⭐ **[CompactGUI](https://github.com/IridiumIO/CompactGUI)** - Transparent Compression * [Fileforums](https://fileforums.com/) or [Encode](https://encode.su/) - Data Compression Forums * [TurboBench](https://github.com/powturbo/TurboBench) - Compression Benchmark @@ -67,48 +66,35 @@ ## ▷ File Converters -* 🌐 **[.to Sites](https://rentry.co/tosites)** - File Converters Index * ⭐ **[File Converter](https://file-converter.io/)** - Convert / Compress Files / [GitHub](https://github.com/Tichau/FileConverter) -* [Pandoc](https://pandoc.org/) - Document Converter +* ⭐ **[VERT](https://vert.sh/)** / [Discord](https://discord.gg/8XXZ7TFFrK) / [GitHub](https://github.com/VERT-sh/VERT) +* ⭐ **[Aconvert](https://www.aconvert.com/)** - Various Converters / 40MB * [ConvertCSV](https://www.convertcsv.com/) - Online CSV Data Conversion * [Encoding Converter](https://encoding-converter.netlify.app/) - Online File Encoding Converter * [Deark](https://entropymine.com/deark/) - Decode and Convert Files / [GitHub](https://github.com/jsummers/deark) * [text2img](https://master.ayra.ch/text2img/) - Online NFO Files to Image Converter -* [CloudConvert](https://cloudconvert.com/) - Convert Files / 1GB -* [FreeConvert](https://www.freeconvert.com/) - File Converter / 1GB * [videoutils](https://www.videoutils.com/) - File Converter / 500MB * [Xconvert](https://www.xconvert.com) - File Converter / 400MB * [ConvertFiles](https://www.convertfiles.com/) - File Converter / 250MB * [Convertio](https://convertio.co/) - File Converter / 100MB * [AnyConvert](https://anyconv.com/) - File Converter / 100MB -* [onlineconvertfree](https://onlineconvertfree.com/) - File Converter / 100MB * [MiConv](https://miconv.com/) - File Converter / 75MB -* [Converter 365](https://www.converter365.com/) - File Converters / 200MB -* [Aconvert](https://www.aconvert.com/) - Various Converters / 40MB -* [LetsConvert](https://letsconvert.io/) - Image/Audio Converter / 250MB -* [Online Convert](https://www.online-convert.com/) - Online File Converter -* [Zamzar](https://www.zamzar.com/) - File Converter / 200MB -* [Online Converter](https://www.onlineconverter.com/) - Online Simple Media / Unit Converter -* [Convert Town](https://convert.town/) - Online Text / Image Converter -* [Docspal](https://www.docspal.com/) - Various Converters / 50MB Image, Documents / 200MB Video, Archive, Audio -* [Better Converter](https://better-converter.com/) - Text-Focused Converters / 10MB -* [go4convert](https://go4convert.com/) - Online Document Converter / 100MB *** -## ▷ File Explorers +## ▷ File Managers * ⭐ **[Files](https://files.community/)** - Customizable File Manager / Use Classic Installer / [Discord](https://discord.gg/files) * ⭐ **[Directory Opus](https://rentry.co/FMHYBase64#directory-opus)** - Windows File Manager -* [Xplorer](https://xplorer.space/) / [GitHub](https://github.com/kimlimjustin/xplorer) / [Discord](https://discord.com/invite/MHGtSWvfUS), [DoubleCMD](https://github.com/doublecmd/doublecmd) or [muCommander](https://www.mucommander.com/) - Cross Platform File Explorers -* [Sigma](https://sigma-file-manager.vercel.app) - Modern File Manager for Windows / Linux / [GitHub](https://github.com/aleksey-hoffman/sigma-file-manager) +* [DoubleCMD](https://github.com/doublecmd/doublecmd) or [muCommander](https://www.mucommander.com/) - Cross-Platform File Managers +* [Sigma](https://sigma-file-manager.vercel.app) - Modern File Manager / Windows, Linux / [GitHub](https://github.com/aleksey-hoffman/sigma-file-manager) * [ChromaFiler](https://chroma.zone/chromafiler/) - Column-Based Windows File Manager -* [Yazi](https://yazi-rs.github.io/) - Terminal File Explorer / [Plugins](https://github.com/sachinsenal0x64/awesome-yazi) / [GitHub](https://github.com/sxyazi/yazi) -* [One Commander](https://www.onecommander.com/) - File Explorer -* [Free Commander](https://freecommander.com/) - File Explorer -* [Q-Dir](https://www.softwareok.com/?seite=Freeware/Q-Dir) - File Explorer -* [Quick Access Popup](https://www.quickaccesspopup.com/) - File Explorer -* [FileExplorer](https://github.com/omeryanar/FileExplorer) - File Explorer +* [Yazi](https://yazi-rs.github.io/) - Terminal File Manager / [Plugins](https://github.com/sachinsenal0x64/awesome-yazi) / [GitHub](https://github.com/sxyazi/yazi) +* [One Commander](https://www.onecommander.com/) - File Manager +* [Free Commander](https://freecommander.com/) - File Manager +* [Q-Dir](https://www.softwareok.com/?seite=Freeware/Q-Dir) - File Manager +* [Quick Access Popup](https://www.quickaccesspopup.com/) - File Manager +* [FileExplorer](https://github.com/omeryanar/FileExplorer) - File Manager * [FileStash](https://www.filestash.app/) - File Manager / [GitHub](https://github.com/mickael-kerjean/filestash) * [Explorer++](https://explorerplusplus.com/) - Lightweight Windows File Manager * [Far Manager](https://www.farmanager.com/) - Windows File / Archive Manager @@ -117,6 +103,7 @@ * [TrayDir](https://github.com/SamuelSVD/TrayDir) - System Tray File Manager * [TablacusExplorer](https://tablacus.github.io/explorer_en.html), [QTTabBar](https://github.com/indiff/qttabbar) or [Multi Commander](https://multicommander.com/) - Tab File Managers * [Vifm](https://vifm.info/) - Vim-Based File Manager +* [superfile](https://superfile.netlify.app/) - Terminal File Manager / [GitHub](https://github.com/yorukot/superfile) * [WinSetView](https://github.com/LesFerch/WinSetView) - Globally Set Explorer Folder Views *** @@ -124,7 +111,7 @@ ## ▷ File Searching * ⭐ **[Everything](https://voidtools.com/)** - File Search Engine -* [Recoll](https://www.recoll.org/) / [Addon](https://addons.mozilla.org/en-US/firefox/addon/recoll-we/), [Spyglass](https://github.com/spyglass-search/spyglass), [DocFetcher](https://docfetcher.sourceforge.io/) or [Orange](https://0-range.github.io/) - Cross Platform Search Engines +* [Recoll](https://www.recoll.org/) / [Addon](https://addons.mozilla.org/en-US/firefox/addon/recoll-we/), [Spyglass](https://github.com/spyglass-search/spyglass), [DocFetcher](https://docfetcher.sourceforge.io/) or [Orange](https://0-range.github.io/) - Cross-Platform Search Engines * [AnyTXT](https://anytxt.net/) or [FluentSearch](https://fluentsearch.net/) - Windows Search Engines * [AstroGrep](https://sourceforge.net/projects/astrogrep/), [grepWin](https://github.com/stefankueng/grepWin) or [dnGrep](https://dngrep.github.io/) - Windows GUI Grep Utilities * [fselect](https://github.com/jhspetersson/fselect) - SQL-like Search Engine @@ -140,7 +127,6 @@ * ⭐ **[Picocrypt](https://github.com/Picocrypt/Picocrypt)** - Lightweight File Encrypter * [age](https://github.com/FiloSottile/age) - File Encrypter * [gocryptfs](https://github.com/bailey27/cppcryptfs) - File Encrypter -* [Hat](https://hat.sh/) - Browser-Based Encrypter * [Kryptor](https://www.kryptor.co.uk/) - File Encrypter *** @@ -164,7 +150,7 @@ * ⭐ **[Rescuezilla](https://rescuezilla.com/)** or [CloneZilla](https://clonezilla.org/) - Disk Image Backup * [FolderClone](https://www.folderclone.com/) or [Echosync](https://www.luminescence-software.org/en/echosync/about/) - Folder Clone / Backup * [BackupPC](https://backuppc.github.io/backuppc/) - Networked File Backup -* [TeraCopy](https://www.codesector.com/teracopy) - File Backup +* [TeraCopy](https://www.codesector.com/teracopy) - Copy Files Quickly / More Securely * [restic](https://restic.net/) / [GitHub](https://github.com/restic/restic), [duplicity](https://duplicity.gitlab.io/) or [Duplicati](https://www.duplicati.com/) - Secure File Backup * [UrBackup](https://www.urbackup.org/) - Client / Server File Backup * [AOMEI Backupper](https://www.ubackup.com/) - Windows File Backup @@ -176,6 +162,7 @@ ## ▷ File Recovery +* 🌐 **[Data Recovery](https://igwiki.lyci.de/wiki/Data_recovery)** - Data Recovery Tool Index * ⭐ **[TestDisk](https://www.cgsecurity.org/wiki/TestDisk)** - File Recovery * [PhotoRec](https://www.cgsecurity.org/wiki/PhotoRec) - File Recovery * [DMDE](https://dmde.com/download.html) - File Recovery @@ -211,14 +198,29 @@ # ► PDF Tools +* [PDFGrep](https://pdfgrep.org/) or [OCRmyPDF](https://github.com/ocrmypdf/OCRmyPDF) - PDF Text Search +* [View-only PDF](https://rentry.co/cm4b7) - Download View-Only PDF on Google Drive +* [PDFEncrypt](https://pdfencrypt.net/) - PDF File Encryption +* [GraphPaper](https://incompetech.com/graphpaper/) - PDF Graphs +* [Aspose](https://products.aspose.app/pdf/annotation) or [pdf-unstamper](https://github.com/hwding/pdf-unstamper) - PDF Watermark Remover +* [PDF Fixer](https://pdffixer.com/) - Repair Damaged PDFs +* [OpenSign](https://github.com/OpenSignLabs/OpenSign), [FalsiScan](https://gitlab.com/edouardklein/falsisign), [JustSignPDF](https://justsignpdf.com/) or [Adobe Sign](https://www.adobe.com/acrobat/online/sign-pdf.html) - PDF Signature Tools +* [Google Drive PDF Downloader](https://github.com/zeltox/Google-Drive-PDF-Downloader) - Download Protected Google Drive PDFs +* [PDFCoffee](https://pdfcoffee.com/) - Upload PDF, Word or PowerPoint Files +* [PrintFriendly](https://www.printfriendly.com/) - Printer Formatting Tools + +*** + ## ▷ Online PDF Toolkits * ⭐ **[Sejda](https://www.sejda.com/)** * [ILovePDF](https://www.ilovepdf.com/) +* [BreezePDF](https://breezepdf.com/) * [DigiPDF](https://digipdf.app/?lang=en_US) * [PDF2Go](https://www.pdf2go.com/) * [SimplePDF](https://simplepdf.com/) * [DPDF](https://dpdf.com/) +* [Digiparser](https://www.digiparser.com/free-tools/pdf) *** @@ -233,6 +235,7 @@ * [PDFBox](https://pdfbox.apache.org/) * [OpenPDF](https://github.com/LibrePDF/OpenPDF) * [Stirling-PDF](https://github.com/Stirling-Tools/Stirling-PDF) + *** ## ▷ PDF Conversion Tools @@ -242,39 +245,27 @@ * [PDFconvert](https://docupub.com/pdfconvert/) - PDF File Converters * [Marker](https://github.com/VikParuchuri/marker) - PDF to Markdown * [PDFCrowd](https://pdfcrowd.com/), [TailWindPDF](https://tailwindpdf.com/) or [wkhtmltopdf](https://wkhtmltopdf.org/) - HTML to PDF / Image Converter -* [Issuu](https://issuu.com/) - Convert PDF Files to Webpages, Flipbooks, Brochures & More / [Downloader](https://docdownloader.com/), [2](https://issuudownload.com/) +* [Issuu](https://issuu.com/) - Convert PDF Files to Webpages, Flipbooks, Brochures & More / [Downloader](https://docdownloader.com/) * [WebToPDF](https://webtopdf.com/) or [Percollate](https://github.com/danburzo/percollate) - Webpage to PDF Converters * [Dangerzone](https://dangerzone.rocks/) - Convert Malicious PDFs to Safe Files / [GitHub](https://github.com/freedomofpress/dangerzone) *** -## ▷ PDF Utilities - -* [PDFGrep](https://pdfgrep.org/) or [OCRmyPDF](https://github.com/ocrmypdf/OCRmyPDF) - PDF Text Search -* [View-only PDF](https://rentry.co/cm4b7) - Download View-Only PDF on Google Drive -* [PDFEncrypt](https://pdfencrypt.net/) - PDF File Encryption -* [GraphPaper](https://incompetech.com/graphpaper/) - PDF Graphs -* [Aspose](https://products.aspose.app/pdf/annotation) or [pdf-unstamper](https://github.com/hwding/pdf-unstamper) - PDF Watermark Remover -* [PDF Fixer](https://pdffixer.com/) - Repair Damaged PDFs -* [OpenSign](https://github.com/OpenSignLabs/OpenSign), [FalsiScan](https://gitlab.com/edouardklein/falsisign), [JustSignPDF](https://justsignpdf.com/) or [Adobe Sign](https://www.adobe.com/acrobat/online/sign-pdf.html) - PDF Signature Tools -* [Google Drive PDF Downloader](https://github.com/zeltox/Google-Drive-PDF-Downloader) - Download Protected Google Drive PDFs -* [PDFCoffee](https://pdfcoffee.com/) - Upload PDF, Word or PowerPoint Files -* [PrintFriendly](https://www.printfriendly.com/) - Printer Formatting Tools - -*** - # ► File Transfer * ⭐ **[LocalSend](https://localsend.org/)** - Desktop / Mobile Transfer / [Discord](https://discord.com/invite/GSRWmQNP87) / [GitHub](https://github.com/localsend/localsend) +* ⭐ **[Blip](https://blip.net/)** - Desktop / Mobile Transfer * [Photon](https://photondev.netlify.app/) - Desktop / Mobile Transfer / [GitHub](https://github.com/abhi16180/photon) * [KDE Connect](https://kdeconnect.kde.org/) - Desktop / Mobile Transfer * [Warpinator](https://github.com/linuxmint/warpinator) - Desktop / Mobile Transfer +* [Sefirah](https://github.com/shrimqy/Sefirah) - Desktop / Mobile Transfer * [QRServ](https://play.google.com/store/apps/details?id=dev.uint.qrserv) - Desktop / Mobile Transfer / [GitHub](https://github.com/uintdev/qrserv) * [Magic Wormhole](https://github.com/magic-wormhole/magic-wormhole) - Desktop / Mobile Transfer * [croc](https://github.com/schollz/croc) - Desktop / Mobile Transfer / [GUI](https://github.com/howeyc/crocgui) * [LANDrop](https://landrop.app/) - Desktop / Mobile Transfer +* [Clip Fish](https://clip.fish/) - Desktop / Mobile Transfer * [OnionShare](https://onionshare.org/) - Share Files Over Tor Network -* [FileZilla](https://filezilla-project.org/) - FTP Client +* [FileZilla](https://filezilla-project.org/download.php?show_all=1) - FTP Client / [Warning](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#filezilla) * [WinSCP](https://winscp.net/eng/index.php) - FTP Client * [Wing FTP](https://www.wftpserver.com/) - FTP Client * [Xlight](https://xlightftpd.com/) - FTP Client @@ -285,7 +276,6 @@ ## ▷ P2P Transfer -* ⭐ **[Blaze](https://blaze.vercel.app/)** / [GitHub](https://github.com/blenderskool/blaze) * ⭐ **[PairDrop](https://pairdrop.net/)** / [GitHub](https://github.com/schlagmichdoch/pairdrop) * ⭐ **[JustBeamIt](https://justbeamit.com/)** * ⭐ **[SpaceDrop](https://spacedrop.app/)** @@ -294,6 +284,7 @@ * [ToffeeShare](https://toffeeshare.com/) * [new.space](https://new.space/) * [FilePizza](https://file.pizza/) +* [Blaze](https://blaze.vercel.app/) / [GitHub](https://github.com/blenderskool/blaze) * [TransferNow](https://www.transfernow.net/en) * [Horizon Send](https://send.hrzn.cool/) * [Salad Room](https://saladroom.net/) @@ -312,29 +303,29 @@ # ► File Hosts -* **Note** - Keep in mind that it's **never** a good idea to upload personal or confidential files to any file host, even if they claim to be encrypted. Most file hosts only remove files after inactivity, while some delete them regardless. Check each host if you're concerned about file expiry. Tags are: Storage Size / File Size / Expiry. +* **Note** - Keep in mind that it's **never** a good idea to upload personal or confidential files to any file host, even if they claim to be encrypted. Most file hosts only remove files after inactivity, while some delete them regardless. Check each host if you're concerned about file expiry. Tags are: File Size / Expiry. *** * ↪️ **[Video File Hosts](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/video-tools#wiki_.25B7_video_file_hosts)** -* ⭐ **[Gofile](https://gofile.io/)** - 100GB Monthly / Unlimited / 10 Days After Last Download / [Cold Storage Bypass](https://greasyfork.org/en/scripts/527711) -* ⭐ **[Pixeldrain](https://pixeldrain.com/)** - Unlimited / 20GB per File / 120 Days After Last Pageview / [Discord](https://discord.gg/TWKGvYAFvX) / [Speedtest](https://pixeldrain.com/speedtest) / [Limit Bypass](https://pixeldrain-bypass.cybar.xyz/) / [Bypass Script](https://greasyfork.org/en/scripts/491326) -* ⭐ **[Files.vc](https://files.vc/)** - Unlimited / 10GB / Forever -* ⭐ **[Buzzheavier](https://buzzheavier.com/)**, [2](https://fuckingfast.co/), [3](https://fuckingfast.net/), [4](https://bzzhr.co/) - Unlimited / 15 Days, Can Extend Forever / [File Expiry](https://buzzheavier.com/help) / **[Use Adblocker](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#buzzheavier-warning)** / [Discord](https://discord.gg/ttQjgC28WP) -* ⭐ **[Catbox](https://catbox.moe/)** - Unlimited / 200MB / Forever -* ⭐ **[Pillowcase](https://pillowcase.su/)** - Audio File Host / 200MB (500MB with Account) / Forever -* [HIDAN](https://hidan.sh/) - Unlimited / 10+ Days (from upload) -* [Send.now](https://send.now/) - 100GB / 100GB per File / 30 Days After Last Download -* [DesiUpload](https://desiupload.co/) - Unlimited / 15 Days (15GB / 30 Days with Account) +* ⭐ **[Gofile](https://gofile.io/)** - 100GB Monthly / Unlimited / 10 Days After Last Download / [Cold Storage Bypass](https://greasyfork.org/en/scripts/527711) / [Manager Export](https://greasyfork.org/en/scripts/515250) +* ⭐ **[Pixeldrain](https://pixeldrain.com/)** - 20GB / 120 Days After Last Pageview / [Discord](https://discord.gg/TWKGvYAFvX) / [Speedtest](https://pixeldrain.com/speedtest) / [Limit Bypass](https://pixeldrain-bypass.cybar.xyz/) / [Bypass Script](https://greasyfork.org/en/scripts/491326) +* ⭐ **[Files.vc](https://files.vc/)** - 10GB / Forever / [Discord](https://discord.com/invite/ArMj8q8psR) +* ⭐ **[Buzzheavier](https://buzzheavier.com/)**, [2](https://fuckingfast.co/), [3](https://fuckingfast.net/), [4](https://bzzhr.co/) - Unlimited / 8 Days, Can Extend Forever / [File Expiry](https://buzzheavier.com/help) / **[Use Adblocker](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#buzzheavier-warning)** / [Discord](https://discord.gg/ttQjgC28WP) +* ⭐ **[Catbox](https://catbox.moe/)** - 200MB / Forever +* ⭐ **[Pillowcase](https://pillowcase.su/)** - Audio File Host / 200MB (500MB w/ Account) / Forever +* [Send.now](https://send.now/) - 100GB / 30 Days After Last Download +* [Transfer.it](https://transfer.it/) / 20GB / 90 Days / Owned by Mega.nz +* [DesiUpload](https://desiupload.co/) - 15 Days (2GB per file / 30 Days w/ Account) * [MixDrop](https://mixdrop.ag/) - Unlimited / 60 Days / Account Required * [Qiwi](https://qiwi.gg) - Account Required -* [Fastupload.io](https://fastupload.io/en) - Unlimited / 30 Days (60 Days with Account) -* [1fichier.com](https://1fichier.com/) - 300GB / 15 Days (30 Days with Account) +* [Fastupload.io](https://fastupload.io/) - 50GB / 30 Days (60 Days w/ Account) +* [1fichier.com](https://1fichier.com/) - 300GB / 15 Days (30 Days w/ Account) * [Filebin](https://filebin.net/) - Unlimited / 6 Days / [Warning](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#filebin-warning) * [file.kiwi](https://file.kiwi/) - Unlimited / [File Expiry Explanation](https://file.kiwi/en/price) * [Easyupload.io](https://easyupload.io/) - 100GB / 30 Days * [FEX.NET](https://fex.net/) - 100GB / 7 Days -* [VikingFile](https://vikingfile.com/) - 500GB / 20 Days After Last Download +* [VikingFile](https://vikingfile.com/) - 500GB / 20 Days After Last Download / [Discord](https://discord.gg/EPEFC6KkpF) * [DropMeFiles](https://dropmefiles.com/) - 50GB / 14 Days * [GigaFile](https://gigafile.nu/) - 300GB / 100 Days * [UploadNow](https://uploadnow.io/) - 100GB / 7 Days, Can Extend Forever @@ -349,7 +340,6 @@ * [ShareFile](https://sharefile.co/), [2](https://gofile.to/) - 5GB / Unlimited * [FileTransfer.io](https://filetransfer.io/) - 6GB / 21 Days / 50 Downloads * [udrop](https://www.udrop.com/) - 5GB / Forever -* [Uploadev](https://uploadev.org/) - 10GB / 180 Days After Last Download w/ Account * [Imagenetz](https://www.imagenetz.de/?setLang=en) - 5GB / 30 Days After Last Download * [FilePort](https://fileport.io/) - 5GB / 7 Days * [FileDitch](https://fileditch.com/) or [SendGB](https://www.sendgb.com/) - 5GB / 90 Days @@ -363,6 +353,7 @@ * [File Convoy](https://www.fileconvoy.com/) - 3GB / 21 Days * [Send](https://send.vis.ee/) - 2.5GB / 3 Days / 10 Downloads / [CLI](https://github.com/timvisee/ffsend) / [Instances](https://gitlab.com/timvisee/send-instances) * [JUMBOmail](https://www.jumbomail.me/) - 2GB / 7 Days / Email Required +* [TransferSize](https://www.transfersize.com/) - 50GB / 7 Days * [KrakenFiles](https://krakenfiles.com/) - 1GB / 3 Months on Sign-Up * [DropMB](https://dropmb.com/) - 512MB / 5 Years * [FireLoad](https://www.fireload.com/) - 2GB / 60 Days / Account Required @@ -370,10 +361,10 @@ * [Lufi](https://upload.disroot.org/) - 2GB / 30 Days * [FilesPayouts](https://filespayouts.com/) - 10GB / Forever / Account Required * [DooDrive](https://doodrive.com/) - 2GB / 30 Days / Account Required -* [Clicknupload](https://clicknupload.co/), [2](https://clicknupload.click) - 10GB / 8 Days / Account Required -* [WeTransfer](https://wetransfer.com/) - 2GB / 7 Days +* [Clicknupload](https://clicknupload.click) - 10GB / 8 Days / Account Required +* [WeTransfer](https://wetransfer.com/) - 2GB / 3 Days * [Smash](https://fromsmash.com/) - 2GB / 7 Days / Email Required -* [MultiUp.io](https://multiup.io/) / [Extract / Upload](https://github.com/Reddiepoint/MultiUp-Direct) or [Mirrored.to](https://www.mirrored.to/) - Multi Host Uploaders +* [MultiUp.io](https://multiup.io/) / [Discord](https://discord.gg/2yUEQPxTTU) / [Extract / Upload](https://github.com/Reddiepoint/MultiUp-Direct) or [Mirrored.to](https://www.mirrored.to/) - Multi Host Uploaders * [Z-o-o-m](https://z-o-o-m.eu/) - Multi-Host Upload Desktop App * [Limited Upload Hosts](https://rentry.org/xc48kg) - More Hosts / 1GB or Below @@ -390,23 +381,22 @@ * ⭐ **[mega](https://mega.io/)** - 20GB Free / 3 Months / ~$4.50 for 1TB / [GitHub](https://github.com/meganz) * [disk.yandex](https://disk.yandex.com/) - 5GB Free / 2 Years / $2 for 1TB * [filen](https://filen.io/) - 10GB Free / 3 Months / ~$8 for 1TB / Account Required for Sharing -* [terabox](https://terabox.com/) - 1TB Free / $3.50 for 2TB * [Dropbox](https://www.dropbox.com/) - 1 or 2GB Free / 12 Months / ~$5 for 1TB / [Client](https://github.com/SamSchott/maestral) * [mediafire](https://www.mediafire.com/) - 10GB Free / 8 Months / $5 for 1TB * [icedrive](https://icedrive.net/) - 10GB Free / 3 Months / $5 for 1TB * [PCloud](https://www.pcloud.com/) - 10GB Free / 1 Year / ~$4 for 1TB * [FebBox](https://www.febbox.com/) - 1TB Free / 1 Month / ~$4 for 2TB +* [Keybase](https://keybase.io/) - 250GB / Forever / [GitHub](https://github.com/keybase/client) * [Proton Drive](https://proton.me/drive) - 2GB Free (or 5GB for tasks) / 1 Year / ~$10 for 1TB * [JumpShare](https://jumpshare.com/) - 2GB Free / 1 Year / $8.25 for 1TB * [FileLu](https://filelu.com/) - 10GB / Forever / **[Expiry Warning](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#filelu-warning)** * [CyberFile](https://cyberfile.me/) - 10GB Free * [MrOwl](https://www.mrowl.com/) - 10GB Free / ~$16 for 1TB * [Blomp](https://www.blomp.com/) - 20GB Free / 1 Month / ~$3 for 2TB -* [Akira Box](https://akirabox.com/) - 20GB Free / 1 Years +* [Akira Box](https://akirabox.com/) - 20GB Free / 1 Year * [Backblaze B2](https://www.backblaze.com/cloud-storage/) - 10GB Free / ~$6 for 1TB * [Cloudflare R2](https://www.cloudflare.com/developer-platform/products/r2/) - 10GB Free / ~$15.5 per 1TB * [1Cloud File](https://1cloudfile.com/) - 10GB Free -* [OneDriveFly](https://github.com/Tai7sy/OneDriveFly) - OneDrive Indexes * [Fix-OneDrive-Zip](https://github.com/pmqs/Fix-OneDrive-Zip) - Fix OneDrive Zip Files >4GB * [SeaFile](https://www.seafile.com/en/home/) - Self-Hosted Cloud Storage @@ -430,17 +420,15 @@ ## ▷ Google Drive Tools * ⭐ **[OneClickRun](https://colab.research.google.com/github/biplobsd/OneClickRun/blob/master/OneClickRun.ipynb)** - Google Drive Tools Colab / [Features](https://i.ibb.co/BfF3djW/f0ab560a3aef.png) / Use Throwaways -* [Any File to Google Drive](https://github.com/menukaonline/Any-file-to-Google-Drive) - DDL to Google Drive Tool * [DriveUploader](https://driveuploader.com/) - Receive Files via Google Drive * [ZIP Extractor](https://zipextractor.app/) - Google Drive / Gmail File Archiver * [Google Drive CLI](https://github.com/glotlabs/gdrive) - Google Drive CLI Client * [goodls](https://github.com/tanaikech/goodls) - Google Drive Downloader -* [Google Drive Downloader](https://github.com/Akianonymus/gdrive-downloader) - Google Drive Folder Downloader * [gdrivedl](https://github.com/matthuisman/gdrivedl) - Google Drive Python Download Script * [ISAAC](https://rentry.co/FMHYBase64#gservice-gen) - Google Service Account Generators * [goindex-extended](https://github.com/menukaonline/goindex-extended) / [Themes](https://install.kenci.workers.dev/) or [Google-Drive-Index](https://gitlab.com/GoogleDriveIndex/Google-Drive-Index) - Google Drive Indexers -* [gdurl](https://gdurl.com/), [GDrive Link Generator](https://www.wonderplugin.com/online-tools/google-drive-direct-link-generator/), [Direct.GDrive](https://direct.gdrive.vip/en/), [Maulvi](https://maulvi.github.io/) or [GDriveWebAppPublic](https://github.com/CloudflareHackers/GDriveWebAppPublic) - Host Direct Links on Google Drive -* [GdriveCloneWeb](https://github.com/jsmsj/GdriveCloneWeb) or [Google Drive Clone Bot](https://jsmsj.github.io/GdriveCloneBot/) / [GitHub](https://github.com/jsmsj/GdriveCloneBot) - Copy Google Drives +* [gdurl](https://gdurl.com/), [GDrive Link Generator](https://www.wonderplugin.com/online-tools/google-drive-direct-link-generator/), [Direct.GDrive](https://direct.gdrive.vip/en/), [Maulvi](https://maulvi.github.io/) or [GDriveWebAppPublic](https://github.com/CloudflareHackers/GDriveWebAppPublic) - GDrive Link Generators / Host Direct Links +* [Google Drive Clone Bot](https://jsmsj.github.io/GdriveCloneBot/) / [GitHub](https://github.com/jsmsj/GdriveCloneBot) - Copy Google Drives * [GD-EFC Link Encryptor](https://rekulous.github.io/gd-efc-encryptor/) - Google Drive Link Encryptor for GD-EFC * [gd-efc](https://anadius.github.io/gd-efc/) - Copy Encrypted Google Drive * [DriveRename](https://driverename.iblogbox.com/) - Bulk Google Drive File Rename diff --git a/docs/gaming-tools.md b/docs/gaming-tools.md index 143d520a1..7f322b3b8 100644 --- a/docs/gaming-tools.md +++ b/docs/gaming-tools.md @@ -22,21 +22,19 @@ * [The Models Resource](https://www.models-resource.com/) - Game Models * [The Spriters Resource](https://www.spriters-resource.com/) - Video Game Sprites * [MiiCharacters](https://www.miicharacters.com/) - Famous Mii Creation Guides +* [Archiverse](https://archiverse.pretendo.network/) - Miiverse Archive +* [Better xCloud](https://better-xcloud.github.io/) - Add Features to xCloud / [GitHub](https://github.com/redphx/better-xcloud) * [Buzz In](https://buzzin.live/) - Online Buzzer System * [Challonge](https://challonge.com/) or [Lorenzi's Game Boards](https://gb.hlorenzi.com/) - Tournament Creators / Managers -* [Medal](https://medal.tv/) - Shadowplay for non Nvidia Cards / [Premium Bypass](https://medalbypass.vercel.app/) -* [RePlays](https://github.com/lulzsun/RePlays) - Game Recording Manager -* [Moments](https://steelseries.com/gg/moments) - Game Clip Tool +* [Moments](https://steelseries.com/gg/moments), [Medal](https://medal.tv/) / [Premium Bypass](https://medalbypass.vercel.app/) or [RePlays](https://github.com/lulzsun/RePlays) - Game Recording Tools * [Keystrokes](https://www.deviantart.com/jaxoriginals/art/Keystrokes-v1-3-889349339) - Keystrokes Overlay * [PSNProfiles](https://psnprofiles.com/) - Trophy Guide / PSN Profile Viewer -* [Achievement Watcher](https://rentry.co/FMHYBase64#achievement-watcher-mod) - Achievement File Parser, Notifications & Playtime Tracker / [Note](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#achievement-watcher-note) * [Shmuplations](https://shmuplations.com/) - Japanese Developer Interviews * [Wiki.gg](https://wiki.gg/wikis/) - Game Wikis / [Redirector](https://support.wiki.gg/wiki/Redirect_to_wiki.gg) * [CSDb](https://csdb.dk/) or [GB64](https://gb64.com/index.php) - Commodore 64 Resources * [Awesome J2ME](https://github.com/hstsethi/awesome-j2me) - J2ME Resources * [GARbro](https://github.com/morkt/GARbro/) - Browse / Extract Visual Novel Resources * [ConceptArt](https://vk.com/conceptart) - Video Game Concept Art -* [Archiverse](https://archiverse.pretendo.network/) - Miiverse Archive * [How Denuvo Works](https://rentry.co/FMHYBase64#how-denuvo-works) * [Game Cracking / Repacking Guides](https://rentry.co/FMHYBase64#game-cracking-guides) @@ -45,14 +43,13 @@ ## ▷ Game Launchers * ⭐ **[Playnite](https://playnite.link/)** - Game Library / Launcher / [Extensions](https://playnite.link/addons.html) / [Subreddit](https://www.reddit.com/r/playnite/) / [Discord](https://discord.com/invite/BrtABqe) / [GitHub](https://github.com/JosefNemec/Playnite/) -* ⭐ **[GoG Galaxy](https://www.gog.com/galaxy)** or **[Project GLD](https://y0urd34th.github.io/Project-GLD/)** / [GitHub](https://github.com/Y0URD34TH/Project-GLD/) - Game Libraries / Launchers -* [Ascendara](https://ascendara.app/) - Game Launcher / Downloader / [Discord](https://ascendara.app/discord) / [GitHub](https://github.com/Ascendara/ascendara) -* [Fit Launcher](https://github.com/CarrotRub/Fit-Launcher/) - Game Launcher / Torrent Client / [Discord](https://discord.gg/cXaBWdcUSF) +* ⭐ **[Ascendara](https://ascendara.app/)** - Game Library / Launcher / Downloader / [Discord](https://ascendara.app/discord) / [GitHub](https://github.com/Ascendara/ascendara) +* ⭐ **[GoG Galaxy](https://www.gog.com/galaxy)** (closed source) or **[Project GLD](https://y0urd34th.github.io/Project-GLD/)** / [GitHub](https://github.com/Y0URD34TH/Project-GLD/) - Game Libraries / Launchers +* [Fit Launcher](https://github.com/CarrotRub/Fit-Launcher/) - Unofficial Game Launcher / Torrent Client / [Discord](https://discord.gg/cXaBWdcUSF) * [Launchbox](https://www.launchbox-app.com/) - Retro / Console Game Library / Launcher * [GameHUB Launcher](https://www.deviantart.com/not-finch/art/GameHUB-launcher-2-for-Rainmeter-785369648) - Rainmeter Game Launcher * [Hydra](https://github.com/hydralauncher/hydra) - Game Launcher / Torrent Client / [Plugins](https://moyasee.github.io/HydraLibrary/), [2](https://hydralinks.cloud/) / [Game Search](https://www.isitonhydra.xyz/) / [Discord](https://discord.com/invite/hydralaunchercommunity) / [Telegram](https://t.me/hydralauncher) * [OpenGamepadUI](https://github.com/ShadowBlip/OpenGamepadUI) - Gamepad Native Launcher -* [Arc](https://www.arcgames.com/en/about/client) - Gearbox Game Launcher / Library * [JackboxUtility](https://jackboxutility.com/) - Jackbox Games Launcher / [Discord](https://discord.gg/ffKMZeb88m) / [GitHub](https://github.com/JackboxUtility/JackboxUtility) * [GameVault](https://gamevau.lt) - Self-Hosted Gaming Platform / [Discord](https://discord.gg/NEdNen2dSu) / [GitHub](https://github.com/Phalcode/gamevault-app) @@ -63,11 +60,11 @@ * 🌐 **[Nvidia Overclocking](https://github.com/LunarPSD/NvidiaOverclocking/blob/main/Nvidia%20Overclocking.md)** - Nvidia Overclocking Resources * ⭐ **[SpecialK](https://www.special-k.info/)** - Game Optimization Tool / [Discord](https://discord.gg/specialk) * ⭐ **[MSI Afterburner](https://www.msi.com/Landing/afterburner)**, [GPU Tweak III](https://www.asus.com/campaign/GPU-Tweak-III/index.php) or [EVGA Precision X1](https://www.evga.com/precisionx1/) / [Warning](https://ibb.co/VSYtdTW) - GPU Overclocking / [Guide](https://docs.google.com/document/d/14ma-_Os3rNzio85yBemD-YSpF_1z75mZJz1UdzmW8GE/) -* ⭐ **[SystemRequirementsLab](https://www.systemrequirementslab.com/cyri/)** or [PCGameBenchmark](https://www.pcgamebenchmark.com/) - Game Requirements Tests * ⭐ **[MSI Kombustor](https://www.geeks3d.com/furmark/kombustor/)** - GPU Benchmark Test * ⭐ **[ProSettings](https://prosettings.net/)**, [Share Gaming Tweaks](https://www.tenforums.com/gaming/117377-share-gaming-tweaks-chec-my-comprehensive-list-will-blow-your-mind.html), [/r/OptimizedGaming](https://www.reddit.com/r/OptimizedGaming/), [SweetFX](https://sfx.thelazy.net/), [ENBSeries](http://enbdev.com) - Settings Optimization Guides * ⭐ **[DisplayMagician](https://displaymagician.littlebitbig.com/)** or [AutoActions](https://github.com/Codectory/AutoActions) - Per-Game Display Profiles * ⭐ **[Lossless Scaling](https://rentry.co/FMHYBase64#lossless-scaling)**, **[Magpie](https://github.com/Blinue/Magpie)**, [DLSS2FSR](https://discord.com/invite/2JDHx6kcXB) or [OptiScaler](https://github.com/cdozdil/OptiScaler) - Game Upscaling +* [SystemRequirementsLab](https://www.systemrequirementslab.com/cyri/) or [PCGameBenchmark](https://www.pcgamebenchmark.com/) - Game Requirements Tests * [RagnoTech Optimization Catalog](https://ragnos1997.com/optimization-catalog/) or [TroubleChute](https://www.youtube.com/c/TroubleChute/featured) - Gaming Optimization Guides * [cancerogenoslab](https://sites.google.com/view/cancerogenoslab/) or [MikeMartin](https://www.mikemartin.co/) - FPS / Latency Guides * [Fraps](https://fraps.com/), [OCAT](https://gpuopen.com/ocat/) / [GitHub](https://github.com/GPUOpen-Tools/ocat), [Rivatuner Statistics Server](https://www.guru3d.com/files-details/rtss-rivatuner-statistics-server-download.html), [CapFrameX](https://www.capframex.com/) or [Xbox Game Bar](https://rentry.co/WindowsFPS) - FPS Tracking / Benchmarking @@ -80,6 +77,7 @@ * [VibranceGUI](https://vibrancegui.com/) - Automate Digital Vibrance Control * [Vuenxx](https://discord.gg/ASZjqrjWYf) - Free FSR 3 Mods / [Note](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#vuenxx-note) * [ReShade](https://reshade.me/) - Generic Post-Processing Injector / [Easy Installer](https://github.com/OopyDoopy/ReShade-Centralized) / [Shaders](https://github.com/BlueSkyDefender/Depth3D) / [Discord](https://discord.com/invite/PrwndfH) / [GitHub](https://github.com/crosire/reshade) +* [Scanlines for Windows](https://s4windows.itch.io/scanlines-for-windows) - Add Scanlines to Games / [Discord](https://discord.gg/MqxMj8MT55) * [DLSSG to FSR3](https://github.com/Nukem9/dlssg-to-fsr3) - AMD FSR3 Frame Generation for NVIDIA * [WindowedBorderlessGaming](https://westechsolutions.net/sites/WindowedBorderlessGaming/), [Borderless Gaming](https://github.com/Codeusa/Borderless-Gaming) or [FullScreenizer](http://runtimeterror.com/tools/fullscreenizer/) - Borderless Windows for All Games * [DxWnd](https://sourceforge.net/projects/dxwnd/) - Play Fullscreen Only Games in Window @@ -93,7 +91,6 @@ * ⭐ **[DS4Windows](https://github.com/TRARS/DS4Windows)** / [2](https://github.com/schmaldeo/DS4Windows), [AntiMicroX](https://github.com/AntiMicroX/antimicroX), [DualSenseX](https://github.com/Paliverse/DualSenseX), [DualSenseY](https://github.com/WujekFoliarz/DualSenseY-v2), [PCXSense](https://github.com/Denellyne/PCXSense) or [Input Remapper](https://github.com/sezanzeb/input-remapper) - Gamepad Input Tools / [Steam Note](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#steam-controller-support) * [x360ce](https://www.x360ce.com/) / [GitHub](https://github.com/x360ce/x360ce) - DS4 / 360 Controller Emulator -* [XOutput](https://github.com/csutorasa/XOutput) - DirectInput to Xinput wrapper * [DsHidMini](https://docs.nefarius.at/projects/DsHidMini/) - Use PS3 Controllers on Windows * [JoyToKey](https://joytokey.net/en/) - Controller Emulator * [Spud Controller](https://sadwhale-studios.itch.io/) - Controller / Mouse Input Displays @@ -111,40 +108,38 @@ * 🌐 **[Big List of Randomizers](https://randomizers.debigare.com/)** - Game Randomizer Index / [Discord](https://discord.com/invite/YREMzGQ3gd) / [GitHub](https://github.com/video-game-randomizers/rando-list) * ↪️ **[Game Mods](https://rentry.co/FMHYBase64#game-mods)** - Mods for Individual Games -* ⭐ **[ChronoCrash](https://www.chronocrash.com/forum/)** - Side Scrolling Modding Forum / [Games List](https://www.chronocrash.com/forum/resources/categories/openbor.2/) * ⭐ **[ModDB](https://moddb.com/)** - Game Mods * ⭐ **[Nexus Mods](https://www.nexusmods.com/)** - Game Mods / [Bulk Downloader](https://greasyfork.org/en/scripts/483337) / [Redirect Skip](https://greasyfork.org/en/scripts/394039) / [Download Hidden](https://rentry.org/downloadingdeletednexusmods) / [Discord](https://discord.com/invite/nexusmods) -* ⭐ **[ModdingLinked](https://moddinglinked.com/)** - Bethesda Game Modding Guides / [Discord](https://discord.com/invite/S99Ary5eba) +* ⭐ **[GameBanana](https://gamebanana.com/)** - Game Mods / [Discord](https://discord.com/invite/h5xJv9M) +* ⭐ **[ChronoCrash](https://www.chronocrash.com/forum/)** - Side Scrolling Modding Forum / [Games List](https://www.chronocrash.com/forum/resources/categories/openbor.2/) +* ⭐ **[ModdingLinked](https://moddinglinked.com/)** / [Discord](https://discord.com/invite/S99Ary5eba) or [Step Modifications](https://stepmodifications.org/) - Bethesda Game Modding Guides * [WeMod](https://www.wemod.com/) - Cheats / Trainer Manager / Single Player Only / [Unlocker](https://rentry.co/FMHYBase64#wemod) / [Discord](https://discord.com/invite/wemod) * [ModOrganizer](https://github.com/ModOrganizer2/modorganizer) - Mod Manager * [Otis_Inf Camera Mods](https://kemono.su/patreon/user/37343853) or [CinematicTools Archive](https://rentry.co/FMHYBase64#cinematictools-archive) - Game Camera Mods -* [Mod.io](https://www.mod.io/) - Cross Platform Game Mods Support / [Discord](https://discord.com/invite/modio) +* [Mod.io](https://www.mod.io/) - Cross-Platform Game Mods Support / [Discord](https://discord.com/invite/modio) * [WabbaJack](https://www.wabbajack.org/) - Automated Modlist Installer / [Discord](https://discord.com/invite/wabbajack) * [ModWorkshop](https://modworkshop.net/) - Game Mods / [Discord](https://discord.com/invite/Eear4JW) * [GameFront](https://gamefront.com/) - Game Mods / [Discord](https://discord.com/invite/gamefront) * [Video Game Mods](https://videogamemods.com/) - Game Mods / [Discord](https://discord.com/invite/C2JussB8hk) -* [GameBanana](https://gamebanana.com/) - Game Mods / [Discord](https://discord.com/invite/h5xJv9M) -* [mod.io](https://mod.io/g) - Game Mods * [SMods](https://catalogue.smods.ru/) - Game Mods * [Silent's Blog](https://cookieplmonster.github.io/mods/index/) - Game Mods / Patches -* [FlingTrainer](https://flingtrainer.com/) - Game Mods / Trainers for Single Player Games +* [FlingTrainer](https://flingtrainer.com/) - Game Mods / Trainers / Single Player Games Only +* [GameCopyWorld](https://www.gamecopyworld.com/), [2](https://gamecopyworld.eu/) - Game Patchers / Trainers / Single Player Games Only * [Top Mods](https://www.top-mods.com/) - PC Game Mods * [ProAsm](http://www.proasm.com/) - Retro Game Mods * [Thunderstore](https://thunderstore.io/) - Unity Game Mods * [Gale](https://github.com/Kesomannen/gale/) or [r2modman](https://github.com/ebkr/r2modmanPlus) - Thunderstore / BepInEx Unity Mod Managers * [Archipelago](https://archipelago.gg/) - Multi-Game Randomizer -* [Scanlines for Windows](https://s4windows.itch.io/scanlines-for-windows) - Add Scanlines to Games / [Discord](https://discord.gg/MqxMj8MT55) *** ## ▷ Game Saves - * ↪️ **[File Backup](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/file-tools/#wiki_.25B7_file_backup) / [Sync](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/file-tools/#wiki_.25B7_file_sync)** * ⭐ **[Ludusavi](https://github.com/mtkennerly/ludusavi)** or [GameSave Manager](https://www.gamesave-manager.com/) - Game Save Managers / Backup * [PCGamingWiki](https://www.pcgamingwiki.com/) - Save Locations Listed Under "Game Data" * [Save Game World](https://www.savegameworld.com/) - PC / PlayStation / Switch / Xbox / Wii -* [SavegameDownload.com](https://www.savegamedownload.com/) - PC / PlayStation / Switch / Xbox / Android +* [SavegameDownload.com](https://www.savegamedownload.com/) - PC / Mobile / PlayStation / Switch / Xbox * [YourSaveGames](https://www.yoursavegames.com/) - PC / PSP * [SaveGame.Pro](https://savegame.pro/) - PC * [Saves For Games](https://savesforgames.com/) - PC @@ -155,7 +150,7 @@ ## ▷ Game Maps -* 🌐 **[Map Genie](https://mapgenie.io/)**, [GameMaps](https://www.gamemaps.com/), [THGL](https://www.th.gl/) or [VGMaps](https://www.vgmaps.com/) - Game Map Indexes +* 🌐 **[Map Genie](https://mapgenie.io/)**, [GamerMaps](https://www.gamermaps.net/), [GameMaps](https://www.gamemaps.com/), [THGL](https://www.th.gl/) or [VGMaps](https://www.vgmaps.com/) - Game Map Indexes * [noclip](https://noclip.website/) - Explore Game Maps * [KudosPrime](https://www.kudosprime.com/) - Racing Game Maps * [bspview](https://sbuggay.github.io/bspview) - Explore Quake & GoldSRC Maps / [GitHub](https://github.com/sbuggay/bspview) @@ -186,8 +181,8 @@ * [Voltaic](https://voltaic.gg/) - Aim Benchmark & Guides * [Piper](https://github.com/libratbag/piper) - Gaming Mouse Config Tool * [LiveSplit](https://livesplit.org/) - Customizable Speedrun Timer -* [Tomatoanus](https://www.youtube.com/@tomatoanus/) - Speedrun Breakdowns * [The Manual Project](https://vimm.net/manual), [ReplacementDocs](http://replacementdocs.com/) or [GamesDatabase](https://www.gamesdatabase.org/) - Game Manuals +* [Sym.gg](https://sym.gg/) - FPS Game Info & Weapon Stats / [Discord](https://discord.com/invite/RVRZ3RgYNP) * [SNES Manuals](https://sites.google.com/view/snesmanuals) - SNES Game Manuals * [Ukikipedia](https://ukikipedia.net/) - SM64 Speedrunning Wiki * [FOUR.lol](https://four.lol/) - Tetris Openers Wiki @@ -198,15 +193,15 @@ # ► Tracking / Databases -* ⭐ **[Glitchwave](https://glitchwave.com/)** - Tracking / Database * ⭐ **[Backloggd](https://www.backloggd.com/)** - Tracking / Database -* ⭐ **[IGDB](https://www.igdb.com/)** - Game Database -* ⭐ **[GiantBomb](https://www.giantbomb.com/games/)** - Game Database -* [IMDb Advanced Search](https://www.imdb.com/search/) - Game Search +* ⭐ **[Glitchwave](https://glitchwave.com/)** - Tracking / Database / [Note](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#glitchwave-note) +* ⭐ **[Infinite Backlog](https://infinitebacklog.net/)** - Tracking / Database +* [IGDB](https://www.igdb.com/) - Game Database +* [Moby Games](https://www.mobygames.com/) - Game Database +* [GiantBomb](https://www.giantbomb.com/games/) - Game Database * [Grouvee](https://www.grouvee.com/) - Tracking / Database * [RankOne](https://www.rankone.global/) - Tracking / Database * [GG](https://ggapp.io/) - Tracking / Database -* [InfiniteBacklog](https://infinitebacklog.net/) - Tracking / Database * [KeepTrackOfMyGames](https://keeptrackofmygames.com/) - Tracking / Database * [PlayTracker](https://playtracker.net/) - Tracking / Database * [Gamelib](https://gamelib.app/explore) - Tracking / Database @@ -215,22 +210,23 @@ * [LaunchBox Games Database](https://gamesdb.launchbox-app.com/) - Game Database * [GameFAQs](https://gamefaqs.gamespot.com/) - Game Database * [Rawg](https://rawg.io/) - Game Database -* [Moby Games](https://www.mobygames.com/) - Game Database * [rate.house](https://rate.house/chart/game) - Game Database * [listal](https://www.listal.com/) - Game Database * [FrontierNav](https://frontiernav.net/) - Game Database +* [IMDb Advanced Search](https://www.imdb.com/search/) - Game Search +* [Low Spec Games](https://exefer.github.io/lowspecgames/) - Low Spec Game Database / [Text Only](https://pastebin.com/raw/MTCXZxCN) / [GitHub](https://github.com/Exefer/lowspecgames) * [JRPGC](https://jrpgc.com/) - JRPG Databases / [Discord](https://discord.com/invite/jrpgc) * [RPGCodex](https://rpgcodex.net/forums/) - RPG Database / Forum * [SteamPeek](https://steampeek.hu/) or [IndieDB](https://www.indiedb.com/) - Indie Game Databases * [RetroShowcase](https://www.retroshowcase.gr/) or [The Good Old Days](https://www.goodolddays.net/) - Retro Game Databases +* [Tiny Best Selector](https://go.madsoxgames.com/selector/) - Random Retro Game Suggestions * [Sega Retro](https://segaretro.org/) - Sega Game Database * [AtariAge](https://atariage.com/) - Atari Game Database * [Polish Pixels](https://polishpixels.com/) - Retro Polish Games Database -* [Co-Optimu](https://www.co-optimus.com/) or [PlayCo-opGame](https://playco-opgame.com/) - Co-Op Game Databases +* [Co-Optimus](https://www.co-optimus.com/) or [PlayCo-opGame](https://playco-opgame.com/) - Co-Op Game Databases * [SvenEvils Playground](https://store.steampowered.com/curator/8485829/) or [Local Multiplayer List](https://docs.google.com/spreadsheets/d/14f6qS2GJy8C-b40Df3dNH_aZq7WfZ4jMggzEajUrX0w/) - Local Multiplayer Game Database * [DoesItPlay?](https://www.doesitplay.org/) - Offline Game Compatibility Database * [CloudBase](https://cloudbase.gg/) - Cloud Game Database -* [Low Spec Games](https://pastebin.com/raw/MTCXZxCN) - Low Spec Game Database * [HOTU](https://www.homeoftheunderdogs.net/) - Rare Game Database * [Delisted Games](https://delistedgames.com/) - Delisted Games Database * [BoardGameGeek](https://boardgamegeek.com/) or [Kallax](https://kallax.io/) - Board Game Database @@ -245,12 +241,11 @@ * 🌐 **[Awesome Engineering Games](https://github.com/arcataroger/awesome-engineering-games)** - Engineering Games * ⭐ **[AcclaimedVideoGames](https://www.acclaimedvideogames.com/)** or **[VideoGameCanon](https://www.videogamecanon.com/)** - Game Top 1000 List * ⭐ **[OpenCritic](https://opencritic.com/)** - Critic Game Reviews / Ratings -* ⭐ **[TasteDive](https://tastedive.com/games)**, [Mythic Maps](https://mythicmap.com/) / [Discord](https://discord.gg/xw6cgmjDzB) or [/r/ifyoulikeblank](https://www.reddit.com/r/ifyoulikeblank/) - Game Recommendations +* ⭐ **[TasteDive](https://tastedive.com/games)** or [/r/ifyoulikeblank](https://www.reddit.com/r/ifyoulikeblank/) - Game Recommendations * [Rec Charts](https://pastebin.com/ayuqSpGR) - Game Recommendation Guides * [Board Game Breakdown](https://boardgamebreakdown.com/) - Board Game Reviews * [Can I Play That?](https://caniplaythat.com/) - Video Game Accessibility Reviews * [MoreGamesLike](https://www.moregameslike.com/) or [Games Like Finder](https://gameslikefinder.com/) - Find Similar Games -* [DigitalDreamDoor](https://digitaldreamdoor.com/pages/games.html) - List of the Best Games *** @@ -265,7 +260,7 @@ * [Steam Rom Manager](https://github.com/SteamGridDB/steam-rom-manager) - Add ROMs to Steam * [BoilR](https://github.com/PhilipK/BoilR) - Sync Game Platforms with Steam * [SteamAchievementManager](https://github.com/gibbed/SteamAchievementManager) - Steam Achievement Manager -* [SteamHunters](https://steamhunters.com/) - Steam Achievement Leaderboards / Profiles / [Discord](https://discord.com/invite/SeJ25Xv) +* [SteamHunters](https://steamhunters.com/) / [Discord](https://discord.com/invite/SeJ25Xv) or [TrueSteamAchievements](https://truesteamachievements.com/) - Steam Achievement Tracking / Leaderboards / Profiles * [SteamID](https://steamid.io/) / [2](https://steamid.uk/), [SteamDetective](https://steamdetective.com/) or [SteamFinder](https://steamidfinder.com/) - Steam ID Lookup * [SteamGuard](https://github.com/dyc3/steamguard-cli) - Generate Steam 2FA Codes * [Super Steam Packer](https://cs.rin.ru/forum/viewtopic.php?f=29&t=131328) - Pack and Share Your Steam Games @@ -295,17 +290,16 @@ ## ▷ DLC Unlock / DRM Bypass -* ⭐ **[CreamAPI](https://cs.rin.ru/forum/viewtopic.php?t=70576)** - Steam DLC Unlocker / [Auto Setup](https://cs.rin.ru/forum/viewtopic.php?p=2013521) +* ⭐ **[CreamAPI](https://cs.rin.ru/forum/viewtopic.php?t=70576)** - Steam DLC Unlocker / [Auto Setup](https://github.com/Warwolfer/auto-creamapi-2) * ⭐ **[GreenLuma](https://cs.rin.ru/forum/viewtopic.php?f=29&t=103709)** - Offline Steam DRM Bypass / DLC Unlocker / [Manager](https://github.com/BlueAmulet/GreenLuma-2024-Manager) / [Family Bypass Guide](https://rentry.org/gzny948p) * ⭐ **[Unsteam](https://cs.rin.ru/forum/viewtopic.php?f=20&t=134707&hilit=unsteam)** - Online Steam DRM Bypass / Cracked Servers Only / Multiplayer Emulator * ⭐ **[Steamless](https://github.com/atom0s/Steamless)** - Steam DRM Remover * ⭐ **[Goldberg](https://gitlab.com/Mr_Goldberg/goldberg_emulator)**, [2](https://github.com/Detanup01/gbe_fork) / [GUI](https://github.com/brunolee-GIT/GSE-Generator) / [Guide](https://rentry.co/goldberg_emulator) or [SmartSteamEmu](https://cs.rin.ru/forum/viewtopic.php?f=29&t=62935&sid=c6b5dadd40d56ac20a8789121bb743c5) - Offline Steam / Multiplayer Emulators * ⭐ **[Steam-Auto-Crack](https://github.com/SteamAutoCracks/Steam-auto-crack)** or [SteamAutoCracker](https://github.com/BigBoiCJ/SteamAutoCracker) - Auto Apply Goldberg + Steamless / [Guide](https://codeberg.org/fernbacher/How-To-Crack) -* ⭐ **[Koalageddon](https://github.com/acidicoala/Koalageddon/)** - DLC Unlocker for Epic, Origin, EA, Uplay -* [DreamAPI](https://cs.rin.ru/forum/viewtopic.php?f=10&t=111520) - DLC Unlocker for Epic, Origin and EA +* ⭐ **[Koalageddon](https://github.com/acidicoala/Koalageddon/)** - DLC Unlocker for Origin, EA & Uplay +* [DreamAPI](https://cs.rin.ru/forum/viewtopic.php?f=10&t=111520) - DLC Unlocker for Origin and EA * [Anadius](https://rentry.co/FMHYBase64#anadius) - DLC Unlockers for EA and Origin * [ScreamAPI](https://github.com/acidicoala/ScreamAPI) - Epic DLC Unlocker -* [GetDataFromSteam-SteamDB](https://github.com/Sak32009/GetDataFromSteam-SteamDB) - Find SteamDB DLC Data / Create Configs *** @@ -316,7 +310,6 @@ * [SteamScout](https://www.togeproductions.com/SteamScout/) - Steam Review Analyzer * [Steam Link Dropdown](https://greasyfork.org/en/scripts/523078) - Add Piracy Site Links to Steam Store * [UWPHook](https://briano.dev/UWPHook/) - Add Windows Store Games to Steam -* [Free Packages](https://steamdb.info/freepackages/) - Mass Activate All Free Steam Games / $5 Account Min / [Guide](https://youtu.be/svbdw-pYNT8) * [Wishlist Removals](https://steamcommunity.com/sharedfiles/filedetails/?id=1746978201) - Remove Hidden Items from Steam Wishlist * [Steam URL Opener](https://github.com/veteran29/steam-url-open-extension) - Open URLs Inside Steam Client * [Steam Age Bypass](https://greasyfork.org/en/scripts/18450-steam-bypass-age-confirmation-prompts) - Bypass Age Confirmation @@ -335,10 +328,10 @@ ## ▷ Multiplayer Fixes * ⭐ **[Online Fix](https://online-fix.me/)** - Online / LAN Multiplayer Fix / [Discord](https://discord.gg/yExgFYncMD) -* ⭐ **[Playit.gg](https://playit.gg/)** - LAN Multiplayer Fix / [Discord](https://discord.gg/AXAbujx) +* ⭐ **[Playit.gg](https://playit.gg/)** - Dedicated Servers / LAN Multiplayer Fix / [Discord](https://discord.gg/AXAbujx) * ⭐ **[ZeroTier](https://www.zerotier.com/)** - LAN Multiplayer Fix -* [Radmin](https://www.radmin-vpn.com/) - LAN Multiplayer Fix / [Discord](https://discord.com/invite/8MapDM7m96) -* [Hamachi](https://vpn.net/) - LAN Multiplayer Fix +* [Radmin](https://www.radmin-vpn.com/) - Dedicated Servers / LAN Multiplayer Fix / [Discord](https://discord.com/invite/8MapDM7m96) +* [Hamachi](https://vpn.net/) - Dedicated Servers / LAN Multiplayer Fix * [NetMaker](https://www.netmaker.io/) - LAN Multiplayer Fix * [OpenSpy](https://openspy.net/) - LAN Multiplayer Fix / [Discord](https://discord.com/invite/sMaWdbt) / [GitHub](https://github.com/openspy/openspy-core) * [Team XLink](https://www.teamxlink.co.uk/) - LAN Multiplayer Fix / [Discord](https://discord.com/invite/XUS9n73KSP) @@ -350,20 +343,19 @@ ## ▷ Multiplayer Mods * 🌐 **[Multiplayer Mods](https://docs.google.com/spreadsheets/d/e/2PACX-1vSV41AswEt3EpzSyd85YRVtoJaIIXWjtBy347dISJg4fs6xSNPqcgfsh76TxX_l-mnT7pjMlSqTW-87/pubhtml)** or [Unmoddable](https://unmoddable.com/) - Multiplayer Mods for Single-Player Games +* 🌐 **[CoD All](https://gitlab.com/xifil/cod-all)** - CoD Multiplayer Mod Index * ⭐ **[Plutonium](https://plutonium.pw/)** - COD BO1/BO2, MW3 and WaW Multiplayer Client / [Setup Guide](https://guides.viren070.me/plutonium) / [Video Guide](https://youtu.be/8F7hv98t8ck) / [Offline Launcher](https://github.com/JugAndDoubleTap/LanLauncher) / [Discord](https://discord.gg/d95y8ah) -* [AlterWare](https://alterware.dev/) - COD MW2 (2009), MW3, BO3, AW and Ghosts Multiplayer Client / [Discord](https://discord.gg/2ETE8engZM) / [GitHub](https://github.com/mxve/alterware-launcher) * [HorizonMW](https://discord.gg/horizonmw) - Modern Warfare Remastered Multiplayer Client / [Guide](https://youtu.be/BgfTZMXeQ8E) / [Servers / Info](https://master.iw4.zip/) / [Tools](https://github.com/z6m/h2m-tool) -* [CoD4x Mod](https://cod4x.ovh/) - COD4 (2007) Multiplayer Project / Requires MP Key / [Discord](https://discord.com/invite/fMGb7BGVvy) +* [CoD4x Mod](https://cod4x.ovh/) - COD4 (2007) Multiplayer Project / Requires MP Key / [Discord](https://discord.cod4x.ovh/) * [Venice Unleashed](https://veniceunleashed.net/) / [Discord](https://discord.com/invite/dpJwaVZ) or [Warsaw Revamped](https://warsaw.gg/) / [Discord](https://discord.com/invite/C9Zrh4G) - Battlefield Mod Projects * [SM64 Coop Deluxe](https://sm64coopdx.com/) - Super Mario 64 Co-Op / [Discord](https://discord.gg/TJVKHS4) -* [Smash64](https://smash64.online/) - Smash Bros 64 Online / [Discord](https://discord.gg/ssb64) +* [Smash64](https://smash64.online/) - Super Smash Bros 64 Online / [Discord](https://discord.gg/ssb64) * [Marne](https://marne.io/) - BF1 Multiplayer Project / [Discord](https://marne.io/discord) * [Slippi](https://slippi.gg/) - Super Smash Bros Melee Online / [Discord](https://discord.com/invite/pPfEaW5) * [Tilted Online](https://wiki.tiltedphoques.com/tilted-online/) - Multiplayer Skyrim & Fallout 4 / [GitHub](https://github.com/tiltedphoques/TiltedEvolution) / [Discord](https://discord.gg/skyrimtogether) / [Setup Guide](https://youtu.be/ytSftFoQQHA) * [NV:MP](https://nv-mp.com/) - Fallout: New Vegas Multiplayer / [Discord](https://discordapp.com/invite/mKVdhmEDrW) -* [Nitrox](https://nitrox.rux.gg/) - Subnautica Multiplayer * [BeamMP](https://beammp.com/) - BeamNG Multiplayer / [GitHub](https://github.com/BeamMP/BeamMP) -* [Fika](https://project-fika.gitbook.io/wiki) - Play Single Player Tarkov Co-Op / Requires Legit Game / Bypass +* [Fika](https://project-fika.gitbook.io/wiki) - Play Single Player Tarkov Co-Op / Requires Legit Game * [OnlineCTR](https://www.online-ctr.com/) - Crash Team Racing Multiplayer * [CnCNet](https://cncnet.org/) - Multiplayer Command & Conquer / [Discord](https://discord.com/invite/aJRJFe5) * [Old School RuneScape](https://oldschool.runescape.com/) - Classic Runescape / [Discord](https://discord.com/invite/osrs) @@ -377,7 +369,7 @@ * ⭐ **[TrackyServer](https://www.trackyserver.com/)** - Find Private Multiplayer Servers * [Server.pro](https://server.pro/) - Game Server Hosting -* [Pterodactyl](https://github.com/pterodactyl/panel) - Game Server Management Panel / [Discord](https://discord.gg/pterodactyl) +* [Pterodactyl](https://github.com/pterodactyl/panel) / [Discord](https://discord.gg/pterodactyl) or [Pelican](https://pelican.dev/) / [GitHub](https://github.com/pelican-dev/panel) - Game Server Management Panel * [Impostor](https://impostor.github.io/Impostor/) - Among Us Private Server / [Discord](https://discord.com/invite/Mk3w6Tb) * [VRCList](https://vrclist.com/) - Find VRChat Worlds / Sign-Up Required * [OldUnreal](https://www.oldunreal.com/) - Unreal Tournement Servers / [Discord](https://discord.gg/thURucxzs6) @@ -390,13 +382,16 @@ * [SiMPLE](https://team-simple.org/forum/) - Battlefield 1942 Servers / [Discord](https://discord.team-simple.org/) * [Overwatch-Server-Selector](https://github.com/foryVERX/Overwatch-Server-Selector) - Overwatch Server Selector * [Northstar](https://thunderstore.io/c/northstar/), [2](https://northstar.tf/) - Titanfall 2 Server Hosting & Modding / [GitHub](https://github.com/R2Northstar/Northstar/releases) / [Guide](https://rentry.org/northstar-guide) / [Discord](https://discord.gg/CEszSguY3A) +* [R1Delta](https://r1delta.net/) - Titanfall 1 Server Revival / [Discord](https://discord.com/invite/AFnMwrvPzV) +* [FXPGunZ](https://fxpgunz.com/) - GunZ Multiplayer Revival * [ET: Legacy](https://www.etlegacy.com/) - Wolfenstein Enemy Territory Servers / [Discord](https://discord.com/invite/UBAZFys) -* [Arctic Combat](https://warfareterritory.net/) - Arctic Combat Server Revival / [Discord](https://discord.gg/JEPt8DFe) +* [Arctic Combat](https://warfareterritory.net/) - Arctic Combat Server Revival / [Discord](https://discord.com/invite/7aw6grzSgj) * [Factorio.zone](https://factorio.zone/) - Free Factorio Servers * [Clash of Magic](https://www.clashofmagic.io/) / [Discord](https://discord.gg/eSbkhDF) or [Atrasis](https://atrasisclash.net/) / [Discord](https://discord.gg/wmSjaTJ) - Clash of Clans Private Servers * [Rusticaland](https://rusticaland.net/) - Free Rust Servers / [Discord](https://discord.com/invite/MD9RgdYhpf) * [Ephinea](https://ephinea.pioneer2.net/) - Phantasy Star Online Blue Burst Server Revival * [PSO Servers](https://www.reddit.com/r/PSO/wiki/servers) - Phantasy Star Online 1 Server Revivals +* [DramaSO](https://www.dramaso.org/) - Sims Online Server Revival * [KOCity](https://kocity.xyz/) - Knockout City Multiplayer Revival / [Discord](https://discord.gg/4kNPb4cRxN) / [GitHub](https://github.com/kocxyz/Launcher) * [Elemental Fracture](https://elefrac.com/) - Spellbreak Community Revival / [Discord](https://dsc.gg/elefrac) * [NolfRevival](http://nolfrevival.tk/) - NOLF, NOLF 2 & Contract Jack @@ -484,7 +479,7 @@ ## ▷ Playstation Homebrew -* ⭐ **[PS4 Modding](https://youtu.be/c99oey4lz9Q)**, [PSX Hax](https://www.psxhax.com/), [PSDevWiki](https://www.psdevwiki.com/) or [Wololo](https://wololo.net/) - Playstation Modding Guides +* 🌐 **[PS4 Modding](https://youtu.be/c99oey4lz9Q)**, [PSX Place](https://www.psx-place.com/), [PSX Hax](https://www.psxhax.com/), [PSDevWiki](https://www.psdevwiki.com/) or [Wololo](https://wololo.net/) - Playstation Modding Indexes / Guides * [Chiaki](https://git.sr.ht/~thestr4ng3r/chiaki) / [GitHub](https://github.com/streetpea/chiaki-ng) or [RemotePlay](https://remoteplay.dl.playstation.net/remoteplay/lang/gb/) - Playstation Remote Play Clients * [/r/PS5Homebrew](https://www.reddit.com/r/ps5homebrew/) - PS5 Homebrew Subreddit * [/r/PS4Homebrew](https://www.reddit.com/r/ps4homebrew/) - PS4 Homebrew Subreddit @@ -495,6 +490,9 @@ * [PS3 Game Updater](https://www.psx-place.com/threads/ps3-game-updater-v1-5-psn-liberator-v0-96b-rudi-rastelli-adds-ps3p-pkg-ripper-support.3766/) or [Rusty Pan](https://github.com/RainbowCookie32/rusty-psn) - Update PS3 Games * [PS3Themes](http://www.ps3-themes.com/) - PS3 Themes * [PSONE](https://psone.online/) - Play PS1 Games Online / PS3 Required / [Discord](https://discord.com/invite/uhZuGX9) +* [PS2 Scene](https://discord.com/invite/Bd3A7v8) - PS2 Homebrew Discord +* [/r/PS2Homebrew](https://www.reddit.com/r/ps2homebrew/) - PS2 Homebrew Subreddit +* [PSBBN Patch](https://rentry.co/FMHYBase64#psbbn-definitive-english-patch) - PSBBN Definitive English Patch * [PSXDev](https://www.psxdev.net/) - PS1 Development * [MemcardRex](https://shendosoft.blogspot.com/2014/01/memcardrex-18-released.html?m=1) - PS1 Save Transfer Tools / [Archive](https://archive.org/details/MemcardRex1.8) * [/r/VitaPiracy](https://www.reddit.com/r/VitaPiracy/) / [Discord](https://discord.gg/6Udcx2w) or [/r/VitaHacks](https://reddit.com/r/vitahacks/) - PSVita Homebrew Subreddits @@ -523,7 +521,7 @@ # ► Minecraft Tools -* 🌐 **[MCDOC](https://mcdoc.site/)** - Minecraft Tools & Unlockers / [Discord](https://dc.openm.tech/) +* 🌐 **[MCDOC](https://mcdoc.site/)** - Minecraft Tools & Unlockers * 🌐 **[Awesome Minecraft](https://github.com/bs-community/awesome-minecraft)** - Minecraft Resources * ⭐ **[Minecraft Wiki](https://minecraft.wiki/)** - Minecraft Wikis * ⭐ **[Villager Trading Cheatsheet](https://i.ibb.co/sKBjbzg/e9f8d80e2376.png)** or [Image Cheatsheet](https://minecraft.wiki/images/Trading_and_Bartering_Guide_for_Minecraft_Java_Edition_1.17%2B.png) @@ -533,6 +531,7 @@ * [DigiMinecraft](https://www.digminecraft.com/) or [Birdflop](https://www.birdflop.com/resources/) - Minecraft Guides / Tools * [ViveCraft](https://www.vivecraft.org/) - VR Minecraft / [Discord](https://discord.com/invite/2x3QCk8qa9) / [GitHub](https://github.com/Vivecraft/VivecraftMod) * [SkyClient](https://skyclient.co/) - Hypixel Asset Installer / [Discord](https://discord.com/invite/QUGZgxb7CM) / [GitHub](https://github.com/SkyblockClient) +* [Minecraft Java Servers](https://dankware.onrender.com/minecraft-java-servers) or [Bedrock Servers](https://dankware.onrender.com/minecraft-bedrock-servers) - Server Lists * [SkyCrypt](https://sky.shiiyu.moe/) - SkyBlock Stats * [MC Icons](https://mcicons.ccleaf.com/) - Minecraft Icon Search * [Textcraft](https://textcraft.net/) - Minecraft Text & Logo Generator @@ -558,12 +557,11 @@ * [Minekube Connect](https://connect.minekube.com/) - Ingress Tunnel for Minecraft Servers * [ViaVersion](https://viaversion.com/) - Allow Connections from Older Versions / [Discord](https://discord.gg/viaversion) / [GitHub](https://github.com/viaversion) * [mclo.gs](https://mclo.gs/) - Minecraft Log Sharing / Analyzing -* [LazyMc](https://github.com/timvisee/lazymc) - Idle Minecraft Server * [Minestom](https://minestom.net/) - Lightweight Minecraft Server / [Discord](https://discord.gg/pkFRvqB) * [Cuberite](https://cuberite.org/) - Server Setup * [DriveBackupV2](https://modrinth.com/plugin/drivebackupv2) - Server Plugin to Create Cloud Backups of Worlds * [Pufferfish](https://github.com/pufferfish-gg/Pufferfish), [Purpur](https://purpurmc.org/) / [Discord](https://purpurmc.org/discord) or [Paper](https://papermc.io/software/paper) / [Plugins](https://hangar.papermc.io/) - Performance Enhancement Servers -* [GeyserMC](https://geysermc.org/) - Join Minecraft Java Servers with Bedrock Client / [Consoles](https://wiki.geysermc.org/geyser/using-geyser-with-consoles/) +* [GeyserMC](https://geysermc.org/) - Join Minecraft Java Servers with Bedrock Client / [Extras](https://geyserextras.letsgoaway.dev/) / [Consoles](https://wiki.geysermc.org/geyser/using-geyser-with-consoles/) * [Minecraft Server Scanner](https://github.com/MrBruz/Minecraft-Server-Scanner) - Minecraft Server Info * [Minecraft Server Checker](https://moistcatawumpus.github.io/minecraft-server-checker/) - Simple Server Checker * [mcsrvstat](https://mcsrvstat.us/) - Server Status Updates @@ -573,21 +571,19 @@ ## ▷ Launchers -* ⭐ **[Prism Launcher](https://prismlauncher.org/)** - Feature-Rich Launcher / [Free Method](https://rentry.co/prism4free) / [Ely.by Version](https://github.com/ElyPrismLauncher/ElyPrismLauncher) / [Discord](https://discord.com/invite/ArX2nafFz2) / [GitHub](https://github.com/PrismLauncher/PrismLauncher) +* ⭐ **[Prism Launcher](https://prismlauncher.org/)** - Feature-Rich Launcher / [CurseForge Downloads](https://gist.github.com/sugoidogo/2e607727cd61324b2d292da96961de3f) / [Free Method](https://rentry.co/prism4free) / [Ely.by Version](https://github.com/ElyPrismLauncher/ElyPrismLauncher) / [Discord](https://discord.com/invite/ArX2nafFz2) / [GitHub](https://github.com/PrismLauncher/PrismLauncher) * ⭐ **[ATLauncher](https://atlauncher.com/)** or [Technic Launcher](https://www.technicpack.net/) - Modpack Launchers -* ⭐ **[PojavLauncher](https://pojavlauncher.app/)** / [Discord](https://discord.com/invite/aenk3EUvER) / [GitHub](https://github.com/PojavLauncherTeam/PojavLauncher), [ZalithLauncher](https://github.com/ZalithLauncher/ZalithLauncher) or [FoldCraftLauncher](https://github.com/FCL-Team/FoldCraftLauncher) / [Discord](https://discord.gg/ffhvuXTwyV) - Java Edition for Android & iOS -* ⭐ **[Bedrock Launcher](https://bedrocklauncher.github.io/)** or [MCLauncher](https://github.com/MCMrARM/mc-w10-version-launcher) - Launcher for Bedrock Edition +* ⭐ **[Bedrock Launcher](https://bedrocklauncher.github.io/)** or [MCLauncher](https://github.com/MCMrARM/mc-w10-version-launcher) - Launchers for Bedrock Edition +* [ZalithLauncher](https://github.com/ZalithLauncher/ZalithLauncher) or [FoldCraftLauncher](https://github.com/FCL-Team/FoldCraftLauncher) / [Discord](https://discord.gg/ffhvuXTwyV) - Java Edition for Android & iOS * [SkLauncher](https://skmedix.pl/) - User-friendly Launcher * [UltimMC](https://github.com/UltimMC/Launcher) - Launcher for Cracked Accounts -* [Betacraft](https://betacraft.uk/) - Legacy Versions Launcher -* [CheatBreaker](https://cheatbreaker.net/) - FPS Modpack Launcher / [GitHub](https://github.com/CheatBreakerNet/Launcher) +* [Betacraft Launcher](https://betacraft.uk/) or [LegacyFix](https://github.com/betacraftuk/legacyfix) - Patch / Fix Legacy Versions * [HMCL](https://hmcl.huangyuhui.net/) - Launcher / [GitHub](https://github.com/HMCL-dev/HMCL) * [LabyMod](https://www.labymod.net/) - Launcher * [Crystal Launcher](https://crystal-launcher.net/) - Launcher * [GDLauncher](https://gdlauncher.com/) - Launcher * [X Minecraft Launcher](https://xmcl.app/) - Launcher -* [Quantum Launcher](https://mrmayman.github.io/quantumlauncher/) - Lightweight Launcher / [Discord](https://discord.com/invite/XN9sW77H) / [GitHub](https://github.com/Mrmayman/quantum-launcher/) -* [Ares](https://www.aresclient.com/) - Client +* [Quantum Launcher](https://mrmayman.github.io/quantumlauncher/) - Lightweight Launcher / [Discord](https://discord.com/invite/bWqRaSXar5) / [GitHub](https://github.com/Mrmayman/quantum-launcher/) * [Omniarchive](https://omniarchive.uk/) - Download Old Minecraft Versions *** @@ -598,24 +594,26 @@ * 🌐 **[OptiFine Alternatives](https://optifine.alternatives.lambdaurora.dev/)** - OptiFine Alternatives for Fabric * ↪️ **[Mod Indexes](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage/#wiki_mod_.2F_resource_pack_indexes)** * ⭐ **[MCModdingGuide](https://rentry.org/MCModdingGuide)** - Minecraft Modding Guide -* [Builders Refuge](https://modrinth.com/modpack/builders-refuge) - Building Modpack * [WorldEdit](https://enginehub.org/worldedit) or [Axiom](https://modrinth.com/mod/axiom) - Building Tools * Worldedit Tools - [Docs](https://worldedit.enginehub.org/en/latest/) / [CUI](https://modrinth.com/mod/worldedit-cui) / [Discord](https://discord.gg/enginehub) / [GitHub](https://github.com/EngineHub/WorldEdit) * [quark](https://quarkmod.net/) - Add Vanilla-like / QoL Features * [Voxy](https://modrinth.com/mod/voxy), [DistantHorizons](https://modrinth.com/mod/distanthorizons) or [Bobby](https://modrinth.com/mod/bobby) - Lightweight Distance Rendering Mods -* [VulkanMod](https://modrinth.com/mod/vulkanmod) - Vulkan Renderer Mod / [Discord](https://discord.gg/FVXg7AYR2Q) +* [Nvidium](https://modrinth.com/mod/nvidium) - Nvidia OpenGL Rendering Mod +* [VulkanMod](https://modrinth.com/mod/vulkanmod) - Vulkan Rendering Mod / [Discord](https://discord.gg/FVXg7AYR2Q) * [Forge](https://files.minecraftforge.net/), [NeoForged](https://neoforged.net/), [Quilt](https://quiltmc.org/) or [Fabric](https://fabricmc.net/) / [Discord](https://discord.gg/VDGnGsFeuy) - Mod Loaders * [PAX](https://github.com/maradotwebp/pax), [ModMenu](https://modrinth.com/mod/modmenu) (fabric) or [Mod Manager](https://github.com/kaniol-lck/modmanager) - Minecraft Mod Managers * [Forgix](https://github.com/PacifistMC/Forgix) - Merge Mod Loaders * [/r/feedthebeast](https://reddit.com/r/feedthebeast/) - MC Modding Community +* [Visual Bukkit](https://www.spigotmc.org/resources/visual-bukkit.76474/) - GUI Plugin Builder / [GitHub](https://github.com/OfficialDonut/VisualBukkit) / [Discord](https://discord.gg/ugkvGpu) * [CraftPresence](https://modrinth.com/mod/craftpresence) or [Phase's Discord RPC](https://modrinth.com/mod/phases-discord-rich-presence) - Discord RPC for Java Edition * [Controlify](https://modrinth.com/mod/controlify) - Add Controller Support to Java Edition * [No Telemetry](https://modrinth.com/mod/no-telemetry) - Disable Telemetry Data * [SimpleVoicechat](https://modrinth.com/plugin/simple-voice-chat) - Feature-Rich Voice Chat Mod / [Discord](https://discord.gg/4dH2zwTmyX) * [ReplayMod](https://replaymod.com/) or [FlashBack](https://modrinth.com/mod/flashback) - Record Game Sessions * [Craftify](https://modrinth.com/mod/craftify) - Display / Control Playing Music -* [Vanilla Tweaks](https://www.vanillatweaks.net/), [Smithed](https://smithed.net/) or [Voodoo Packs](https://mc.voodoobeard.com/) / [Discord](https://discord.gg/SnJQcfq) - Minecraft Data Packs +* [Vanilla Tweaks](https://www.vanillatweaks.net/) / [Discord](https://discord.com/invite/qG53qwF), [Smithed](https://smithed.net/) or [Voodoo Packs](https://mc.voodoobeard.com/) / [Discord](https://discord.gg/SnJQcfq) - Minecraft Data Packs * [Data Pack Generators](https://misode.github.io/) - Minecraft Data Pack Generators +* [Packwiz](https://packwiz.infra.link/) - Modpack CLI Distribution Tool / [GitHub](https://github.com/packwiz/packwiz) *** @@ -626,7 +624,7 @@ * [MineAtlas](http://mineatlas.com/), [Cubiomes Viewer](https://github.com/cubitect/cubiomes-viewer) or [MCSeeder](https://mcseeder.com/) - Minecraft Seeds * [MinecraftMaps](https://www.minecraftmaps.com/) or [Mapcraft](https://mapcraft.me/) - Minecraft Maps * [Minecraft Earth Map](https://earth.motfe.net/) - Earth Maps -* [CTMRepository](https://ctmrepository.com/) - Complete the Monument Maps +* [CTMRepository](https://ctmrepository.com/) - Complete the Monument Maps / [Discord](https://discord.com/invite/G2WVCB3) * [MapartCraft](https://rebane2001.com/mapartcraft/) or [Cartographer](https://cartographer-mc.com/) - Mapart Schematic / map.dat Generator * [BlueMap](https://bluemap.bluecolored.de/) - Create 3D Map Models / [GitHub](https://github.com/BlueMap-Minecraft/BlueMap) * [Arnis](https://github.com/louis-e/arnis) - Generate Real-world Locations in Minecraft @@ -691,19 +689,19 @@ * 🌐 **[Awesome Trackmania](https://github.com/EvoEsports/awesome-trackmania)** - Trackmania Resources * 🌐 **[ACNH.Directory](https://acnh.directory/)** - Animal Crossing: New Horizons Resources * 🌐 **[FM Scout](https://www.fmscout.com/)** - Football Manager Resources / Community +* ⭐ **[Tactics.tools](https://tactics.tools/)** / [Discord](https://discord.com/invite/K4Z6shucH8) or [MetaTFT](https://www.metatft.com/) / [Discord](https://discord.com/invite/RqN3qPy) - Team Fight Tactic Guides, Stats, Tools, etc. * [Half Life Project Beta](https://hl2-beta.ru/?language=english) - Unreleased / Cut Half-Life Content * [Palworld.gg](https://palworld.gg/), [PalworldTrainer.com](https://palworldtrainer.com/) or [Paldb.cc](https://paldb.cc/) - Palworld Databases +* [/codmeta/](https://rentry.co/codmeta) - Call of Duty Loadouts / Metas * [Warzone Loadout](https://warzoneloadout.games/) or [WZHub](https://wzhub.gg/) - Warzone Loadouts and Builds * [Braytech](https://bray.tech/) - Destiny 2 Stats * [The Halo Archive (Discord)](https://discord.gg/feB7RgAHBh) or [405th](https://www.405th.com/) - Halo Assets Archive -* [Sym.gg](https://sym.gg/) - Battlefield Info & Weapon Stats / [Discord](https://discord.com/invite/RVRZ3RgYNP) * [Rust Clash](https://wiki.rustclash.com/) - Rust Info / Tools * [Stardew.app](https://stardew.app/) - Stardew Valley Progress Tracker * [Fortnite Tracker](https://fortnitetracker.com/) - Fortnite Leaderboards / Stats * [FortniteEXP](https://www.fortnitexp.net/) - Fortnite XP Progression / Leveling Rates * [Ready or Not Doc](https://docs.google.com/spreadsheets/d/1d89lpFDA9lo_v13iBlnhtuA6DvuUnKfPaeo0d4RBGJ4/) - Ready or Not Info * [FM Moneyball](https://www.fmdatalab.com/tutorials/moneyball) - Football Manager Recruitment Tool / [Tutorial](https://youtu.be/vBoHCH-rZMI) -* [Minesweepergame.com](https://minesweepergame.com/) and [Minesweeper.online Wiki](https://minesweeper.online/help/gameplay) - All about Minesweeper * [WRCsetups](https://wrcsetups.com/) - WRC Setups * [Peacock](https://github.com/thepeacockproject/Peacock) - Hitman World of Assassination Server Replacement * [Useful Osu](https://github.com/CarbonUwU/Useful-osu) - Osu! Resources @@ -719,9 +717,7 @@ * ⭐ **[OP.GG](https://www.op.gg/)** - LoL Player Background Check * ⭐ **[DPM.LOL](https://dpm.lol/)**, **[U.GG](https://u.gg/)**, [KoreanBuilds](https://en.koreanbuilds.net/), [EuropeanBuilds](https://en.europeanbuilds.net/), [LoLTheory](https://loltheory.gg/), [MurderBridge](https://www.murderbridge.com/) or [LoLAlytics](https://lolalytics.com/) / [Discord](https://discord.com/invite/zKyaZ6w) - LoL Builds / Tiers * ⭐ **[Gol.gg](https://gol.gg/esports/home/)** - LoL Competitive Stats, All Regions -* ⭐ **[Tactics.tools](https://tactics.tools/)** / [Discord](https://discord.com/invite/K4Z6shucH8) or [MetaTFT](https://www.metatft.com/) / [Discord](https://discord.com/invite/RqN3qPy) - Team Fight Tactic Guides, Stats, Tools, etc. * [MobaFire](https://www.mobafire.com/) - LoL Champion Guides -* [ProBuilds](https://www.probuilds.net/) - LoL Pro Player Builds * [LoL Wiki](https://wiki.leagueoflegends.com/) - Official LoL Wiki * [LoL Math](https://lolmath.net/) - LoL Item Optimizer / [Discord](https://discord.com/invite/BpGpdzw) * [iTero](https://www.itero.gg/) - LoL AI Coach @@ -732,7 +728,7 @@ * [DotaBuff](https://www.dotabuff.com/), [Stratz](https://stratz.com/), [OpenDota](https://www.opendota.com/) or [Dota2ProTracker](https://www.dota2protracker.com/) - Dota 2 Stat Trackers / Hero Guides * [SmiteGuru](https://smite.guru/) - Smite Leaderboards * [mood.gg](https://mood.gg/) - LoL Character-Based Audio Playlists -* [RuneForge](https://www.runeforge.io/) - Custom LoL Skins / [Discord](https://discord.com/invite/runeforge) +* [RuneForge](https://runeforge.dev/) - Custom LoL Skins / [Discord](https://discord.com/invite/runeforge) * [Deceive](https://github.com/molenzwiebel/deceive) - Appear Offline in LoL * [Disenchanter](https://github.com/marvinscham/disenchanter) - LoL Mass Disenchanter @@ -779,7 +775,6 @@ * [TCG ONE](https://tcgone.net/) - Online Pokémon Card Game / [Discord](https://discord.gg/MTBGxVE) * [unite-db](https://unite-db.com/) - Pokémon Unite Database * [HelixChamber](https://helixchamber.com/) - Unused Pokémon Material -* [Pokémon Fossil Museum](https://my.matterport.com/show/?m=P9WCbyCBGBM) - Explore Pokémon Fossil Museum *** @@ -789,7 +784,7 @@ * ⭐ **[HLTV](https://www.hltv.org/)** or [Dust2](https://www.dust2.us/) - Counter-Strike News * ⭐ **[CS Demo Manager](https://cs-demo-manager.com/)** - Counter-Strike Demo manager * ⭐ **[Faceit](https://www.faceit.com/)** - Matchmaking Client -* ⭐ **[CSNADES](https://csnades.gg/)** - CS2 Nade Lineups +* ⭐ **[CSNADES](https://csnades.gg/)** or [CS2Util](https://www.cs2util.com/) - CS2 Nade Lineups * [CSGO Trader](https://csgotrader.app/) - CS:GO Trading Enhancements * [CS2 Weapon Spreadsheet](https://docs.google.com/spreadsheets/d/11tDzUNBq9zIX6_9Rel__fdAUezAQzSnh5AVYzCP060c/) - Weapon Stats / Prices * [ArminC-AutoExec](https://github.com/ArmynC/ArminC-AutoExec) - ArminC's CS2 Config @@ -875,7 +870,6 @@ * [GD Docs](https://wyliemaster.github.io/gddocs/) - GD Programming Documentation * [GD History](https://history.geometrydash.eu/) - GD Archival Project / [Downloader](https://github.com/Cvolton/GDHistory-Downloader) * [GMD Private Server](https://github.com/Cvolton/GMDprivateServer) - Private Server Maker -* [Report Bugged 2.2 Levels](https://docs.google.com/forms/d/e/1FAIpQLScDKMIxPKeMxGpyDbQnsDDhW7ba0Lh4ZFAD4RA_ZIt5sbId9A/viewform) * [3Dash](https://delugedrop.itch.io/3dash) - 3D Geometry Dash Game * 3Dash Tools - [Demon List](https://3dashdl.pages.dev/#/) / [Challenge List](https://3dashdemonlist.github.io/Challenge/) / [Impossible Levels](https://3dashdemonlist.github.io/ILL/) @@ -891,17 +885,17 @@ * [RoPro](https://ropro.io/), [Roblox+](https://chromewebstore.google.com/detail/roblox/jfbnmfgkohlfclfnplnlenbalpppohkm), [BTRoblox](https://github.com/AntiBoomz/BTRoblox), [RoGold](https://rogold.live/free) or [RoSeal](https://www.roseal.live/) - Enhance Roblox Website * [Better Discovery](https://www.roblox.com/games/15317947079/) - Game Discovery * [RBXServers](https://rbxservers.xyz/) or [FreeVIPServers](https://freevipservers.net/) - Roblox VIP Servers -* [RobloxDen](https://robloxden.com/) - Track Roblox Promo Codes +* [RobloxDen](https://robloxden.com/) or [Rocodes](https://rocodes.gg/) - Track Roblox Promo Codes * [Roblox Web APIs](https://github.com/matthewdean/roblox-web-apis) - Roblox APIs * [ingame.clothing](https://ingame.clothing/) - Preview Avatar Clothing -* [FastFlags Collection](https://github.com/CfwSky/fastflags-collection) - Roblox FastFlags Collection +* [FastFlags.space](https://fastflags.space/) - Roblox FastFlags Collection / [GitHub](https://github.com/fastdotspace/fastflags.space) *** ## ▷ Terraria Tools * ⭐ **[Terraria Wiki](https://terraria.wiki.gg/)** or [Terranion](https://yal.cc/r/terranion/) - Terraria Wikis -* [tShock](https://github.com/Pryaxis/TShock) - Terraria Server Tools / [Plugins](https://github.com/Pryaxis/Plugins) +* [tShock](https://github.com/Pryaxis/TShock) - Terraria Server Tools * [Terraria Forum](https://forums.terraria.org/) - Terraria Community, Mods Help and More * [TEdit](https://www.binaryconstruct.com/tedit), [terramap](https://terramap.github.io/), [TerraFirma](https://github.com/mrkite/TerraFirma/releases/) or [terraria-map-editor](https://tedit.github.io/terraria-map-editor-web/) - Map Viewers / Editors * [Terrasavr](https://yal.cc/r/terrasavr/) - Terraria Character Editor @@ -951,6 +945,7 @@ * [Tabletopy](https://tabletopy.com/) - Tabletop RPG Soundboard * [Eigengrau's Generator](https://eigengrausgenerator.com/) - Town / NPC Generator * [Map Generator](https://emptybuttons.itch.io/map-generator) - Tabletop Roleplaying Map Generator +* [Forge](https://card-forge.github.io/forge/) - Magic: The Gathering Rule / Deck Manager / [GitHub](https://github.com/Card-Forge/forge) * [MOGG](http://img.mogg.fr/HIRES/) - Magic: The Gathering Card Scans * [Yugipedia](https://yugipedia.com/) or [YGOPRODeck](https://ygoprodeck.com/) - Yu-Gi-Oh! Resources / Card Lists -* [Untap.in](https://untap.in/) - Test Card Game Decks +* [Untap.in](https://untap.in/) - Test Card Game Decks \ No newline at end of file diff --git a/docs/gamingpiracyguide.md b/docs/gamingpiracyguide.md index 3a49a68b4..f5d270132 100644 --- a/docs/gamingpiracyguide.md +++ b/docs/gamingpiracyguide.md @@ -8,25 +8,29 @@ *** -* 🌐 **[/r/PiratedGames Mega](https://rentry.org/pgames)** / [Discord](https://discord.gg/dZWwhUy), **[CS.RIN Mega](https://cs.rin.ru/forum/viewtopic.php?f=10&t=95461)** or **[privateersclub](https://megathread.pages.dev/)** / [Discord](https://discord.gg/jz8dUnnD6Q) - Game Piracy Indexes +# ► Download Games + +* 🌐 **[/r/PiratedGames Mega](https://rentry.org/pgames)** / [Discord](https://discord.gg/dZWwhUy), **[CS.RIN Mega](https://cs.rin.ru/forum/viewtopic.php?f=10&t=95461)** or **[privateersclub](https://megathread.pages.dev/)** / [Discord](https://discord.gg/jz8dUnnD6Q) - Piracy Indexes * 🌐 **[Wotaku](https://wotaku.wiki/games)** / [Discord](https://discord.gg/vShRGx8ZBC) or **[EverythingMoe](https://everythingmoe.com/?section=game)** / [Discord](https://discord.gg/GuueaDgKdS) - Otaku Games Indexes * ↪️ **[Scene Release Trackers](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_scene_release_trackers)** -* ⭐ **[CS.RIN.RU](https://cs.rin.ru/forum)**, [2](https://csrin.org/) - Download / Forum / Account Required / [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) +* ⭐ **[CS.RIN.RU](https://cs.rin.ru/forum)**, [2](https://csrin.org/) - Download / Signup / [Status](https://csrinstaff.writeas.com/) / [Enhancements](https://github.com/SubZeroPL/cs-rin-ru-enhanced-mod) / [Steam Buttons](https://github.com/Altansar69/CS.RIN.RU-Enhanced-external) / [.onion](http://csrinrutkb3tshptdctl5lyei4et35itl22qvk5ktdcat6aeavy6nhid.onion/forum) * ⭐ **[GOG Games](https://gog-games.to/)** - Download / [.onion](http://goggamespyi7b6ybpnpnlwhb4md6owgbijfsuj6z5hesqt3yfyz42rad.onion/) -* ⭐ **[SteamRIP](https://steamrip.com/)** - Download / Torrent / Pre-Installs / [Discord](https://discord.gg/WkyjpA3Ua9) / PW: `1234` or `steamrip.com` +* ⭐ **[SteamRIP](https://steamrip.com/)** - Download / Pre-Installs / [Subreddit](https://www.reddit.com/r/SteamRip/) / [Discord](https://discord.gg/WkyjpA3Ua9) * ⭐ **[AnkerGames](https://ankergames.net/)** - Download / Pre-Installs / [Discord](https://discord.gg/nnMnGzDbwg) * ⭐ **[Online Fix](https://online-fix.me/)** - Download / Torrent / Multiplayer / Sign-Up Required / [Discord](https://discord.gg/yExgFYncMD) / [Telegram](https://t.me/onlinefix) +* ⭐ **[GameBounty](https://gamebounty.world/)** - Download / [Discord](https://discord.gg/dmjUJ4xCEV) +* ⭐ **[SteamUnderground](https://steamunderground.net/)** - Download / Torrent / Pre-Installs / [Discord](https://discord.gg/hxdv7eJ5Yt) * ⭐ **[Ova Games](https://www.ovagames.com/)** - Download / [Redirect Bypass Required](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/internet-tools#wiki_.25B7_redirect_bypass) * ⭐ **[Torrminatorr](https://forum.torrminatorr.com/)** - Download / Forum / Account Required -* ⭐ **[SteamGG](https://steamgg.net/)** - Download / Pre-Installs / **Use Adblocker** / [Subreddit](https://www.reddit.com/r/OfficialSteamGG/) / [Discord](https://discord.gg/Rw6AT3hZZE) * [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 -* [SteamUnderground](https://steamunderground.net/) - Download / Torrent / Pre-Installs / [Discord](https://discord.gg/ZjrNBhmhPz) * [g4u](https://g4u.to/) - Download / PW: `404` * [GLoad](https://gload.to/) - Download -* [GameBounty](https://gamebounty.world/) - Download / [Discord](https://discord.gg/6msDMndrkD) -* [UnionCrax](https://union-crax.xyz/) - Download / [Discord](https://discord.gg/dkVame6BQS) +* [Gamesdrive](https://gamesdrive.net/) - Download / [Discord](https://discord.gg/wXdNEhf73x) / [Telegram](https://t.me/+qkrAOiq7k7ozNzRk) +* [SteamGG](https://steamgg.net/) - Download / Pre-Installs / **Use Adblocker** / [Subreddit](https://www.reddit.com/r/OfficialSteamGG/) / [Discord](https://discord.gg/Rw6AT3hZZE) +* [UnionCrax](https://union-crax.xyz/) - Download / Pre-Installs / [Discord](https://discord.gg/dkVame6BQS) * [appnetica](https://appnetica.com/) - Download / Torrent / Pre-Installs * [AtopGames](https://atopgames.com/) - Download / Pre-Installs / [Discord](https://discord.gg/KSG9Tg2s7b) +* [ElEnemigos](https://elenemigos.com/) - Download / PW: `elenemigos.com` / [DDL Guide](https://elenemigos.com/guide) / [Telegram](https://t.me/ElEnemigos) / [Discord](https://discord.com/invite/juegos) * [Reloaded Steam](https://reloadedsteam.com/) - Download / Pre-Installs / [Discord](https://discord.gg/XqMpBdVWvK) * [Rexa Games](https://rexagames.com/) - Download / Pre-Installs / [Discord](https://discord.gg/6KWStFYSTj) * [TriahGames](https://triahgames.com/) - Download / [Discord](https://discord.gg/vRxJNNcJNh) / PW: `www.triahgames.com` @@ -36,7 +40,6 @@ * [CG Games](https://www.cg-gamespc.com/) - Download * [GamePCFull](https://gamepcfull.com/) - Download * [Leeching Hell](http://www.leechinghell.pw/) - Download -* [IWannaPlay](https://sites.google.com/view/iwannaplay/список-игр) - Download / Telegram Required * [IRC Games](https://redd.it/x804wg) - Download Games via IRC * [FreeToGame](https://www.freetogame.com/games) or [Acid Play](https://acid-play.com/) - F2P Games / [Trackers](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/misc#wiki_.25BA_free_stuff) * [ROM Heaven CSF](https://rentry.co/FMHYBase64#csf) - Download Clean Steam Files @@ -49,17 +52,16 @@ *** -* ⭐ **[KaOsKrew](https://www.kaoskrew.org/)**, [Masquerade Repacks](https://discord.com/invite/HP5sQ6c) or [ScOOt3r Repacks](https://discord.gg/xe3Fys8Upy) - Download / Torrent / [Discord](https://discord.com/invite/WF2pqPTFBs) -* ⭐ **[FitGirl Repacks](https://fitgirl-repacks.site/)** - Download / Torrent / ROM Repacks / [Desktop Launcher](https://github.com/CarrotRub/Fit-Launcher/) / [Unofficial Discord](https://discord.gg/Up3YARe4RW) +* ⭐ **[FitGirl Repacks](https://fitgirl-repacks.site/)** - Download / Torrent / ROM Repacks / [Unofficial Launcher](https://github.com/CarrotRub/Fit-Launcher/) / [Unofficial Discord](https://discord.gg/Up3YARe4RW) * ⭐ **[DODI Repacks](https://rentry.co/FMHYBase64#dodi)** - Torrent / [Lootlink Bypass](https://rentry.co/lootlink) / **[Site Warning](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#dodi-warning)** / [Discord](https://discord.gg/D9WU7C9FSE) * ⭐ **[M4CKD0GE Repacks](https://m4ckd0ge-repacks.site/)** - Download / [Discord](https://discord.gg/693hNBdymb) * ⭐ **[ARMGDDN Browser](https://github.com/KaladinDMP/AGBrowser)**, [2](https://cs.rin.ru/forum/viewtopic.php?f=14&t=140593) - Download / [Telegram](https://t.me/ARMGDDNGames) * ⭐ **[Gnarly Repacks](https://rentry.co/FMHYBase64#gnarly_repacks)** - Download / PW: `gnarly` +* [Masquerade Repacks](https://discord.com/invite/HP5sQ6c) or [ScOOt3r Repacks](https://discord.gg/xe3Fys8Upy) - Download / Torrent / [Discord](https://discord.com/invite/WF2pqPTFBs) * [Xatab Repacks](https://byxatab.com/) - Torrent * [Elamigos](https://elamigos.site/) - Download * [Tiny-Repacks](https://www.tiny-repacks.win) - Torrent * [FreeGOGPCGames](https://freegogpcgames.com/) - GOG Games Torrent Uploads / [Hash Note](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#freegogpcgames-note), [2](https://i.ibb.co/XbF2dv1/image.png) -* [The U-M Software Archives](https://websites.umich.edu/~archive/) - Retro PC / Mac Games *** @@ -67,6 +69,7 @@ * ⭐ **[VRPirates](https://vrpirates.wiki/)**, [2](https://vrpirates.club/) - VR Piracy Wiki / [Telegram](https://t.me/VRPirates) / [Discord](https://discord.gg/tBKMZy7QDA) * ⭐ **[ARMGDDN Browser](https://cs.rin.ru/forum/viewtopic.php?f=14&t=140593)** - VR Games / [Telegram](https://t.me/ARMGDDNGames) +* [Phoenix Place](https://phoenixplace.xyz/) - VR Games / Sign-Up Required / [Discord](https://discord.gg/wfJs3eJvHa) * [/r/QuestPiracy](https://www.reddit.com/r/QuestPiracy/) - Oculus Quest Piracy * [SideQuest](https://sidequestvr.com/) - VR Sideloading Platform * [VRCArena](https://www.vrcarena.com/) - Resources for Social VR Games @@ -76,38 +79,57 @@ *** -## ▷ Abandonware +## ▷ Abandonware / Retro -* ↪️ **[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 -* [Flashtro](https://flashtro.com/) - Abandonware -* [Zombs-Lair](https://www.zombs-lair.com/) - Abandonware -* [OldGamesDownload](https://oldgamesdownload.com/) - Abandonware -* [Old-Games.com](https://www.old-games.com/) - Abandonware -* [VETUSWARE](https://vetusware.com/category/Games/) - Abandonware -* [Magipack](https://www.magipack.games), [Old-Games](https://www.old-games.ru/), [CollectionChamber](https://collectionchamber.blogspot.com/) or [ClassicPCGames](https://archive.org/details/classicpcgames) - Abandonware +* ⭐ **[Retro eXo](https://www.retro-exo.com/)** - Abandonware / Retro PC Games / Torrents +* ⭐ **[Zombs-Lair](https://www.zombs-lair.com/)** - Abandonware +* ⭐ **[VETUSWARE](https://vetusware.com/category/Games/)** - Abandonware +* ⭐ **[Magipack](https://www.magipack.games)** - Abandonware +* ⭐ **[CollectionChamber](https://collectionchamber.blogspot.com/)** - Abandonware +* ⭐ **[LegendsWorld](https://www.legendsworld.net/)** - Retro PC Adventures +* [File Hunter](https://www.file-hunter.com/) - MSX Games +* [Old-Games](https://www.old-games.ru/) - 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 -* [LegendsWorld](https://www.legendsworld.net/) - Retro PC Adventures +* [Flashtro](https://flashtro.com/) - Abandonware +* [OldGamesDownload](https://oldgamesdownload.com/) - Abandonware +* [ClassicPCGames](https://archive.org/details/classicpcgames) - Abandonware +* [Old-Games.com](https://www.old-games.com/) - Abandonware / 2 Daily Downloads * [Win7Games](https://win7games.com/) - Classic Windows Games +* [The U-M Software Archives](https://websites.umich.edu/~archive/) - Retro PC / Mac Games +* [DOS Games Archive](https://www.dosgamesarchive.com/) - DOS Games +* [DOS HAVEN](https://www.doshaven.eu/) - DOS Games +* [Best Old Games](https://www.bestoldgames.net/) - DOS Games +* [DOSGames](https://dosgames.com/) - DOS Games +* [FreeDOSGames](https://www.freedosgames.de/) - DOS Games +* [RGB Classic Games](https://www.classicdosgames.com/) - DOS Games +* [Abandonware DOS](https://www.abandonwaredos.com/) - DOS Games +* [Classic Games](https://classicdosgames.com/) - DOS Games +* [MSX Resource Center](https://www.msx.org/) - MSX Games +* [Generation MSX](https://www.generation-msx.nl/) - MSX Games +* [World of Spectrum](https://worldofspectrum.org/) - Sinclair ZX Spectrum Games +* [SpectrumComputing](https://spectrumcomputing.co.uk/) - Sinclair ZX Spectrum Games +* [GamesNostalgia](https://gamesnostalgia.com/) - Commodore 64 Games +* [whdload](https://www.whdload.de/) - Amiga Games *** ## ▷ Remakes / Ports * 🌐 **[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 +* 🌐 **[Game Decompilations Archives](https://rentry.co/FMHYBase64#decomps)** * 🌐 **[Galaxy of Games](https://galaxyofgames.neocities.org/)** - PC Ports, Decompilations, Remakes, Fan Games and more * 🌐 **[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 +* ⭐ **[RAZE](https://github.com/ZDoom/Raze)** or [BuildGDX](https://m210.duke4.net/) / [Discord](https://discord.gg/zZw2eq3n7G) - Oldschool Shooter Engine * ⭐ **[OpenRCT2](https://openrct2.io/)** - Open-Source RollerCoaster Tycoon 2 * [Luanti](https://www.luanti.org/) / [GitHub](https://github.com/luanti-org) or [Classicube](https://www.classicube.net/) - Open-Source Minecraft Clones / Alternatives * [Locomalito](https://locomalito.com/) or [RetroSpec](https://retrospec.sgn.net/) - Classic Game Remakes * [OpenFortress](https://openfortress.fun/) - Team Fortress 2 Mod * [TF2 Classic](https://tf2classic.com/) - Team Fortress 2 Classic Mod +* [Super Smash Flash](https://www.supersmashflash.com/) / [Discord](https://discord.com/invite/mcleodgaming) or [Smash Crusade](https://smash-crusade.itch.io/crusade) / [Forum](https://projectcrusade.forumotion.com/) / [Discord](https://discord.com/invite/9WBn6u65Fg) - Super Smash Bros. Flash Style Fan Games * [RisingHub](https://risinghub.net/) - Battlefield Heroes Revival Project * [Chrono Divide](https://rentry.co/FMHYBase64#chrono-divide) or [OpenRA](https://openra.net/) - Command & Conquer Recreations / Ports * [Beyond All Reason](https://www.beyondallreason.info/) - Open-Source Total Annihilation / Supreme Commander / [Discord](https://discord.gg/beyond-all-reason) / [GitHub](https://github.com/beyond-all-reason) @@ -124,29 +146,30 @@ * [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/NBlood/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 +* [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 Remake * [Arx Libertatis](https://arx-libertatis.org/) - Arx Fatalis PC Port +* [Fangame Archive](https://archive.dappermink.me/) / [Discord](https://discord.com/invite/HSeycPx) or [Delicious Fruit](https://delicious-fruit.com/) - I Wanna Be the Guy Fan Game Archives * [Mars 3D](https://mars3d-game.wixsite.com/index) - Mars 3D Translation & Remake * [Unciv](https://github.com/yairm210/Unciv) - Civilization V Remake * [FreeCiv](https://www.freeciv.org/) - Civilization Remake / [GitHub](https://github.com/freeciv) * [OpenTTD](https://www.openttd.org/) - Transport Tycoon Remake * [FlightGear](https://www.flightgear.org/) - Open-Source Flight Simulator / [GitLab](https://gitlab.com/flightgear/flightgear) -* [CannonBall](https://github.com/djyt/cannonball) - OutRun Remake / [Video](https://youtu.be/t-93kDC8Vac) +* [CannonBall](https://github.com/djyt/cannonball) - OutRun Remake * [EDOPro](https://projectignis.github.io/) - Yu-Gi-Oh! TCG Fangame -* [OpenNox](https://github.com/noxworld-dev/opennox) - Nox Revival Project -* [Pixel Gun World](https://pgun.rilisoft.info/) / [Discord](https://discord.com/invite/pgw) or [Pixel Gun X](https://discord.com/invite/8796Fs9tZm) - Pixel Gun 3D Revivals / PC Ports +* [OpenNox](https://github.com/opennox/opennox) - Nox Revival Project +* [Sonic Runners Revival](https://sonicrunners.com/) - Sonic Runners Revival +* [Pixel Gun World](https://pgun.rilisoft.info/) / [Discord](https://discord.com/invite/pHteGmZzbU) or [Pixel Gun X](https://discord.com/invite/8796Fs9tZm) - Pixel Gun 3D Revivals / PC Ports * [Infinity Blade PC](https://rentry.co/FMHYBase64#ib-pc-port) - Infinity Blade I/II PC Ports / [Subreddit](https://www.reddit.com/r/infinityblade) / [Discord](https://discord.gg/GfX3pmC) * [Pac-Man](https://github.com/masonicGIT/pacman) - Pac-Man with 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) / [Discord](https://discord.gg/sqpu4R552r) -* [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) +* [Clone Hero](https://clonehero.net/) - Guitar Hero Clone / [Wiki / Guides](https://wiki.clonehero.net/) / [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) * [Bridge](https://github.com/Geomitron/Bridge) - Download Charts for Rhythm Games * [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) @@ -171,7 +194,6 @@ * [RPGMaker Games](https://archive.org/details/rpgmaker-net-game-archive) - Games Made via RPGMaker * [vgperson](https://vgperson.com/games/) - Simple Japanese Games * [Ninja Kiwi Archive](https://ninjakiwi.com/archive) - Ninja Kiwi / Bloons Archive -* [SAGE](https://sagexpo.org/) - Sonic Fan Games / [Discord](https://discord.sonicfangameshq.com/) * [DoujinStyle](https://doujinstyle.com) - Doujin Games / [Discord](https://discord.com/invite/z2QDFdA) * [MoriyaShrine](https://moriyashrine.org/) - Touhou Games * [Kahvibreak](https://bluemaxima.org/kahvibreak/) - Java 2 Micro Mobile Games @@ -196,9 +218,9 @@ ## ▷ 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 +* 🌐 **[Emulation Wiki](https://emulation.gametechwiki.com/)**, [Awesome Emulators](https://github.com/DerekTurtleRoe/awesome-emulators), [PlanetEmu](https://www.planetemu.net/), [EmuWiki](https://www.vincenzoscarpa.it/emuwiki/pmwiki/pmwiki.php?n=Emulators.Emulators&lng=en) 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 +* 🌐 **[RedSquirrel Project List](https://redsquirrel87.com/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)** @@ -207,7 +229,7 @@ * ⭐ **[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/) - Wii U / BOTW Setup Guides * ⭐ **[Switch Emu Guide](https://github.com/Abd-007/Switch-Emulators-Guide)**, [Switch Emulation](https://rentry.co/FMHYBase64#switch-emulation) 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 +* [Axekin Wiki](https://wiki.axekin.com/en/) - Emulation Guides * [RetroCatalog](https://retrocatalog.com/) or [Handheld Emulation Compatibility](https://docs.google.com/spreadsheets/d/1irg60f9qsZOkhp0cwOU7Cy4rJQeyusEUzTNQzhoTYTU/) - Handheld Emulation Compatibility / Info * [TOSEC](https://rentry.co/FMHYBase64#tosec) - The Old School Emulation Center * [Emulation Collective](https://discord.com/invite/7pcAbZzpXj) - Xbox One/Series X|S UWP Emulation Discord @@ -223,36 +245,45 @@ * [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 Resources + +* 🌐 **[ROM Managers](https://emulation.gametechwiki.com/index.php/ROM_managers)** - List of ROM Managers +* ⭐ **[Skraper](https://www.skraper.net/)** - ROM Cover / Metadata Scraper +* [RomStation](https://www.romstation.fr/) - ROM Downloader / Manager / Multiplayer +* [Romm](https://github.com/rommapp/romm) - Self-Hosted ROM Manager +* [RomPatcher](https://www.marcrobledo.com/RomPatcher.js/), [Rom Patcher JS](https://www.romhacking.net/patch/), [Hack64 Patcher](https://hack64.net/tools/patcher.php) or [FFF6Hacking Patcher](https://www.ff6hacking.com/patcher/) - Online ROM Patchers +* [Dats.site](https://dats.site/home.php) or [No Intro](https://no-intro.org/) - ROM .dat Files +* [Dat-O-Matic](https://datomatic.no-intro.org/index.php) - ROM Datasets +* [/r/ROMs](https://www.reddit.com/r/ROMs/) - ROM Discussion Sub / [Matrix](https://matrix.to/#/#romz:matrix.org) +* [Kuribo64](https://kuribo64.net/) - ROM Modding Community + +*** + ## ▷ 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)** * ⭐ **[/r/ROMs Mega](https://r-roms.github.io/)** - ROMs / [Pastebins](https://rentry.co/FMHYBase64#romcenter) * ⭐ **[Myrient](https://rentry.co/FMHYBase64#myrient)** - ROMs +* ⭐ **[CrocDB](https://crocdb.net/)** - Emulators / 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 +* ⭐ **[ROM Heaven](https://romheaven.com/)** - ROMs +* ⭐ **[Axekin](https://www.axekin.com/)** - ROMs +* ⭐ **[RUTracker ROMs](https://rutracker.org/forum/viewforum.php?f=548)** - ROMs / Torrents / Use VPN * ⭐ **[RetroGameTalk](https://retrogametalk.com/)**, [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) or [JNUSTool](https://gbatemp.net/threads/jnustool-nusgrabber-and-cdecrypt-combined.413179/) - ROMs / Wii U -* ⭐ **[Skraper](https://www.skraper.net/)** - ROM Cover / Metadata Scraper -* [/r/ROMs](https://www.reddit.com/r/ROMs/) - Discussion Sub * [Vimms Lair](https://vimm.net/) - Emulators / ROMs -* [AliceISO](https://alice.al/) - ROMs * [Gnarly Repacks](https://rentry.co/FMHYBase64#gnarly_repacks) - ROMs / Emulator Repacks * [ROM-Collections](https://rentry.co/FMHYBase64#rom-collections) - ROMs -* [Axekin](https://axekin.fr/) - ROMs / Use Translator / [Discord](https://discord.com/invite/emulationfr) * [WowROMs](https://wowroms.com/en) - ROMs * [Retro Game Champion](https://www.retrogamechampion.com/) - Retro Game ROMs, Magazines, Music & more * [Zophar's Domain](https://www.zophar.net/) - Emulators / ROM Mods * [TheRomDepot](https://theromdepot.com/) - ROMs * [BlueRoms](https://www.blueroms.ws/) - Emulators / ROMs / Torrents +* [EpicROMs](https://epicroms.net/roms/) - Emulators / ROMs * [Arquivista ROMs](https://rentry.co/FMHYBase64#arquivista) - ROMs * [FinalBurn Neo](https://rentry.co/FMHYBase64#finalburn-neo) - ROMs / Zip * [Romsie](https://roms2000.com/) - Emulators / ROMs @@ -276,48 +307,68 @@ * [ROMsFun](https://romsfun.com/) - ROMs * [FreeROMs](https://www.freeroms.com/) - ROMs * [RetroZone](https://retrozone.co/) - ROMs +* [ROMSPack](https://www.romspack.com/) - ROMs * [NGR](https://www.nextgenroms.com/) - ROMs * [FantasyAnime](https://fantasyanime.com/) - ROMs -* [Ziperto](https://ziperto.com/) - ROMs / Avoid These [Fake](https://ibb.co/wWJbkX6) Buttons +* [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 -* [3DSDB](https://3dsdb.com/) - 3DS Release Tracker -* [NoPayStation](https://nopaystation.com/) - ROMs / Playstation Consoles -* [SuperPSX](https://www.superpsx.com/) - ROMs / PS3 / PS4 -* [PKGPS4](https://www.pkgps4.click/) or [Game-2u PS4](https://game-2u.com/Category/game/ps4) / [Note](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#game-2u-ps4-note) - ROMs / PS4 -* [/r/PkgLinks1](https://www.reddit.com/r/PkgLinks1/) - PS1 / PS2 Games for Modded PS4 -* [PSVitaVPK](https://psvitavpk.com/) - ROMs / PSP * [xbarchive](https://github.com/codemasterv/xbarchive) - ROMs / Xbox Consoles * [AtariMania](https://www.atarimania.com/) - ROMs / Emulators / Atari Consoles +* [/1CC/](https://1cc.kr.eu.org/1cc/index.html) / [Discord](https://discord.com/invite/e7xffWFf9p), [ROMs For MAME](https://www.romsformame.com/), [PleasureDome](https://pleasuredome.github.io/pleasuredome/mame/), [MAME World](https://mameworld.info/) or [Arcade Database](http://adb.arcadeitalia.net/default.php?lang=en) - Arcade MAME ROMs +* [PICOwesome](https://rentry.co/FMHYBase64#picowesome) - PICO-8 ROMs +* [POP Unofficial Website](https://popuw.com/) - Prince of Persia ROMs / Mods +* [SAGE](https://sagexpo.org/) - Sonic Fan Games / [Discord](https://discord.sonicfangameshq.com/) +* [Mega Man Maker](https://megamanmaker.com/) - Create Mega Man Levels + +*** + +## ▷ Nintendo ROMs + +* ⭐ **[hShop](https://hshop.erista.me/)** or [3DS ROMS](https://3dsroms.org) - ROMs / 3DS +* ⭐ **[WiiUDownloader](https://github.com/Xpl0itU/WiiUDownloader)**, [WiiUSBHelper](https://github.com/FailedShack/USBHelperInstaller/releases) or [JNUSTool](https://gbatemp.net/threads/jnustool-nusgrabber-and-cdecrypt-combined.413179/) - ROMs / Wii U +* ⭐ **[NesFiles](https://www.nesfiles.com/)** or [FC Gallery](https://fcpic.nesbbs.com/index_en.html) - ROMs / NES / Famicom +* [taodung](https://taodung.com/) - ROMs / 3DS / Switch * [Homebrew Hub](https://hh.gbdev.io/) - Homebrew ROMs / NES / Gameboy -* [NesFiles](https://www.nesfiles.com/) or [FC Gallery](https://fcpic.nesbbs.com/index_en.html) - ROMs / NES / Famicom -* [/1CC/](https://1cc.kr.eu.org/1cc/index.html) / [Discord](https://discord.com/invite/e7xffWFf9p), [ROMs For MAME](https://www.romsformame.com/), [MDK](https://mdk.cab/), [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 -* [Kuribo64](https://kuribo64.net/) - ROM Modding Community +* [64DD.org](https://64dd.org/) - ROMs / 64DD +* [nswdl](https://nswdl.com/) - ROMs / Switch +* [NswRom](https://nswrom.com/) - ROMs / Switch +* [ROMsHQ](https://romshq.com/) - ROMs / Switch +* [SwitchGamesMall](https://switchgamesmall.icu/) - ROMs / Switch / DDL / Torrents / [Discord](https://discord.com/invite/rgttByzYRY) +* [notUltraNX](https://not.ultranx.ru/en) - ROMs / Switch / Sign-Up Required +* [ROMSim](https://romsim.com/) - ROMs / Switch / [Discord](https://discord.gg/Zgdhq7xDcd) +* [ROMSLAB](https://romslab.com/) - ROMs / Switch +* [NXBrew](https://nxbrew.net/) - ROMs / Switch / [Warning](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#nxbrew-warning) +* [NSW2u](https://nsw2u.com/) - ROMs / Switch +* [SwitchROM](https://switchrom.net/) - ROMs / Switch +* [SwitchROM.io](https://switchrom.io/) - ROMs / Switch +* [Egg NS](https://eggnsemulator.com/nintendo-switch-roms) - ROMs / Switch +* [NSWDB](https://www.nswdb.com) - Switch Release Tracker +* [3DSDB](https://3dsdb.com/) - 3DS Release Tracker * [MFGG](https://mfgg.net/) - Super Mario Fan Games / Mods / [Discord](https://discord.gg/jchgfw5) * [Newer Team](https://newerteam.com/) or [NSMBHD](https://nsmbhd.net/) - Super Mario Bros. DS / Wii Mods * [SMWCentral](https://smwcentral.net/) - Super Mario World ROM Mods +* [wide-snes](https://github.com/VitorVilela7/wide-snes) - Widescreen Super Mario World * [Wario Land Vault](https://wario-land.github.io/HackVault/index.html) - Wario Land ROM Mods -* [Pokemerald](https://pokemerald.com/) or [PokemonXenoverse](https://pokemonxenoverse.com/) - Pokémon ROM Mods -* [MetroidConstruction](https://metroidconstruction.com/) - Metroid ROM Modding Community / [Discord](https://discord.gg/xDwaaqa) -* [PICOwesome](https://rentry.co/FMHYBase64#picowesome) - PICO-8 ROMs -* [POP Unofficial Website](https://popuw.com/) - Prince of Persia ROMs / Mods +* [Pokemerald](https://pokemerald.com/) - Pokémon ROM Mods * [Ship of Harkinian](https://www.shipofharkinian.com/) - Ocarina of Time PC Port / [Discord](https://discord.com/invite/shipofharkinian) / [GitHub](https://github.com/HarbourMasters/Shipwright) * [OOTMM](https://ootmm.com/) - Randomize + Merge Ocarina of Time with Majora's Mask * [Super Mario Bros Crossover](https://archive.org/details/SuperMarioCrossoverOffline) - Play SMB with Alternative Characters -* [Mega Man Maker](https://megamanmaker.com/) - Create Mega Man Levels +* [MetroidConstruction](https://metroidconstruction.com/) - Metroid ROM Modding Community / [Discord](https://discord.gg/xDwaaqa) + +*** + +## ▷ Sony ROMs + +* ⭐ **[NoPayStation](https://nopaystation.com/)** - ROMs / Playstation Consoles +* ⭐ **[PSVitaVPK](https://psvitavpk.com/)** - ROMs / PSVita +* [PKGPS4](https://www.pkgps4.click/), [PS4PKG](https://ps4pkg.com/) or [Game-2u PS4](https://game-2u.com/Category/game/ps4) / [Note](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#game-2u-ps4-note) - ROMs / PS4 +* [SuperPSX](https://www.superpsx.com/) - ROMs / PS3 / PS4 +* [PS3R](https://ps3r.com/) - ROMs / PS3 * [Dan's Palace](https://discord.gg/RqQeZwrP8k) - Android / PSVita PC Game Ports Discord / [Telegram](https://t.me/dansfiles) -* [wide-snes](https://github.com/VitorVilela7/wide-snes) - Widescreen Super Mario World -* [Dats.site](https://dats.site/home.php) or [No Intro](https://no-intro.org/) - ROM .dat Files -* [Dat-O-Matic](https://datomatic.no-intro.org/index.php) - ROM Datasets -* [NSWDB](https://www.nswdb.com) - Switch Game Release Tracker -* [RomStation](https://www.romstation.fr/) - ROM Downloader / Manager / Multiplayer -* [RomPatcher](https://www.marcrobledo.com/RomPatcher.js/), [Rom Patcher JS](https://www.romhacking.net/patch/), [Hack64 Patcher](https://hack64.net/tools/patcher.php) or [FFF6Hacking Patcher](https://www.ff6hacking.com/patcher/) - Online ROM Patchers +* [PS1 Covers](https://github.com/xlenore/psx-covers) or [PS2 Covers](https://github.com/xlenore/ps2-covers) - Cover Downloaders *** @@ -326,7 +377,6 @@ * 🌐 **[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 * [LetsPlayGB](https://www.letsplaygb.com/) - Game Boy Browser Emulator * [SNESFun](https://www.snesfun.com/) - SNES Browser Emulator @@ -336,46 +386,133 @@ * [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/), [PlayOldGames](https://playold.games/), [DOSZone](https://dos.zone/), [MSDOSGames](https://msdosgames.com/) or [PlayDOSGames](https://www.playdosgames.com/) - DOS Browser Emulators +* [DosGames](https://dosgames.com/), [DOSDeck](https://dosdeck.com/), [PlayOldGames](https://playold.games/), [DOSZone](https://dos.zone/), [WePlayDOS](https://weplaydos.games/), [DOSBox](https://www.dosbox.com/), [Online DOS games](https://dos.zczc.cz/) or [PlayDOSGames](https://www.playdosgames.com/) - DOS Browser Emulators * [NeoGeoFun](https://www.neogeofun.com/) - Neo Geo Browser Emulator * [RetroFab](https://itizso.itch.io/retrofab) or [LCD Games](http://bdrgames.nl/lcdgames/) - Retro LCD Game Emulators * [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/) - Modded Super Mario World Browser Emulators -* [Jelly Mario](https://jellymar.io/) - Jelly Super Mario -* [SMBX2](http://codehaus.wohlsoft.ru/index.php) - Super Mario Enhancement Mod / [Levels](https://rentry.co/FMHYBase64#smbx-preservation) / [Video](https://youtu.be/15ia-OiEFzQ) / [Discord](https://discord.com/invite/aCZqadJ) -* [Super Mario and the Rainbow Stars](https://superstarshi.github.io/smatrs/) - Super Mario Mod / [Video](https://youtu.be/SqQuI1AbSQw) / [Discord](https://discord.gg/GBXUa7NF2J) +* [SMBX2](http://codehaus.wohlsoft.ru/index.php) - Super Mario Enhancement Mod / [Levels](https://rentry.co/FMHYBase64#smbx-preservation) / [Discord](https://discord.com/invite/aCZqadJ) +* [Super Mario and the Rainbow Stars](https://superstarshi.github.io/smatrs/) - Super Mario Mod / [Discord](https://discord.gg/GBXUa7NF2J) * [Level Share Square](https://levelsharesquare.com/) - Custom Maps for Mario Fangames -* [Mario Kart PC](https://mkpc.malahieude.net/mariokart.php) - Browser Mario Kart -* [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 Trail 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 -* [Sandtris](https://sandtris.com/) - Falling Sand Style Tetris -* [Play Snake](https://playsnake.org/) - Retro 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 + +*** + +# ► Puzzle Games + +* ⭐ **[Simon Tatham's Puzzles](https://www.chiark.greenend.org.uk/~sgtatham/puzzles/)** - Multiple Puzzle Games / [Mobile](https://github.com/chrisboyle/sgtpuzzles) +* [Puzzle Party](https://artsandculture.google.com/experiment/puzzle-party/EwGBPZlIzv0KRw) - Multiplayer Jigsaws +* [PuzzlePrime](https://www.puzzleprime.com/) - Problems / Puzzles +* [Game for the Brain](https://www.gamesforthebrain.com/) - Puzzles / Quizzes +* [MasasGames](https://masasgames.com/) - Virtual Escape Rooms +* [Murdle](https://murdle.com/) - Daily Murder Mystery +* [Sokoban Online](https://www.sokobanonline.com/) - Sokoban Puzzles +* [DailyDungeon](https://dailydungeon.net/) - Puzzle Dungeon Crawler +* [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&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 +* [Rockbasher](https://www.rockbasher.com/) - Retro Style Puzzle Game +* [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 +* [UsDoku](https://www.usdoku.com/) - Multiplayer Sudoku +* [picture dots](https://www.picturedots.com/) - Make & Play Dot Puzzles +* [Oh, My Dots!](https://www.ohmydots.com/) - Connect the Dots Game +* [BreakLock](https://maxwellito.github.io/breaklock/) - Pattern Lock 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 + +*** + +## ▷ Rubiks Cube + +* 🌐 **[cubing.net](https://www.cubing.net/)** - Cubing Tools +* ↪️ **[Cubing Practice / Training](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/edu/#wiki_rubiks_cube)** +* ⭐ **[Grubiks](https://grubiks.com/)** or **[Rubikverse](https://rubikverse.com/)** - Multi-Cube Types Simulators +* ⭐ **[Rubik's Cube Explorer](https://iamthecu.be/)** - 3x3 Cube Simulator +* [pCubes](https://twistypuzzles.com/forum/viewtopic.php?f=1&t=27054) - Multi-Cube Types Windows App +* [The Cube](https://bsehovac.github.io/the-cube/) - Multi-Size Cube Simulator +* [RubiksCu.be](https://rubikscu.be/solver/) - 3x3 Cube Solver +* [RubikSolve](https://rubiksolve.com/) - 3x3 Cube Solver +* [Rubik's Cube Solver](https://rubiks-cube-solver.com/) - 3x3 Cube Solver +* [CubingTimeStandard](https://cubingtimestandard.com/) - Cubing Time Standards / Tools + +*** + +## ▷ Minesweeper + +* ⭐ **[Minesweeper.Online](https://minesweeper.online/)** / [Wiki](https://minesweeper.online/help) or [PROXX](https://proxx.app/) - Play Minesweeper +* [Authoritative Minesweeper](https://minesweepergame.com/) - Minesweeper Wiki +* [mmmines!](https://mmmines.fly.dev/), [MinesweeperPro](https://www.minesweeperpro.com/), [Mines JD](https://minesjd.com/) or [m3o](https://play.m3o.xyz/) - Multiplayer Minesweeper +* [Minesweeper Infinity](https://www.minesweeperinfinity.com/) - Infinite Minesweeper +* [Minesweeper Twist](https://polyreplay.com/minesweepertwist) - Irregular Grid Minesweeper + +*** + +## ▷ Crosswords + +* ⭐ **[BestCrosswords](https://www.bestcrosswords.com/)** - Crossword Puzzles +* [Crosshare](https://crosshare.org/) - Crossword Puzzles / Creator +* [Hovercats](https://hovercats.gg/) - Multiplayer Crosswords +* [Truncate](https://truncate.town/) - Crossword Strategy Game +* [Regex Crossword](https://regexcrossword.com/), [2](https://jimbly.github.io/regex-crossword/) - Regex Crosswords +* [Web Paint-by-Number](https://webpbn.com/) or [Nonograms.org](https://www.nonograms.org/) - Graphic Crosswords (Nonograms) +* [Crossword Labs](https://crosswordlabs.com/), [Crosserville](https://www.crosserville.com/), [Puzzlemaker](https://puzzlemaker.discoveryeducation.com/) or [XWords](https://www.xwords-generator.de/en) - Crossword Creators + +*** + +## ▷ Word Games + +* 🌐 **[Wordleverse](https://wordleverse.net/)**, [WordleWeb](https://github.com/rarelygoeshere/WordleWeb), [Wordle Collection](https://rentry.org/v72n74fu), [Awesome Wordle](https://github.com/prakhar897/awesome-wordle), [Alldle](https://alldle.net/) or [Wordles of the World](https://rwmpelstilzchen.gitlab.io/wordles/) - Wordle Game Index +* ⭐ **[Wordle](https://www.nytimes.com/games/wordle/index.html)** - Original Wordle +* ⭐ **[Wordle Analyzer](https://wordle-analyzer.com/)** +* ⭐ **[MoreWords](https://www.morewords.com/)**, [PlayScrabble](https://playscrabble.com/) or [WordHub](https://wordhub.com/) - Scrabble +* [TheWordSearch](https://thewordsearch.com/) - Word Search Puzzles +* [Make a Word Search](http://www.makeawordsearch.net/) or [Word Search Labs](https://wordsearchlabs.com/) - Word Search Creators +* [Connections](https://connections.swellgarfo.com/) - Custom Word Puzzles +* [RobinWords](https://www.robinwords.com/) - Word Ladder Game +* [Word Golf](https://www.word.golf/) - Word Relation Game +* [JKLM.FUN](https://jklm.fun/) - Multiplayer Word Games +* [eWordChallenge](https://www.ewordchallenge.net/) - Boggle Online +* [Squaredle](https://squaredle.app/), [2](https://squaredle.online/) - Daily Word Puzzle +* [Linxicon](https://linxicon.com/) - Word Connection Game +* [Wordle VS](https://wordlevs.com/) - Multiplayer Wordle +* [Wordle Unlimited](https://wordleunlimited.org/) - Wordle without Daily Limit +* [Fusele](https://fusele.netlify.app/) - Wordle Variant +* [Word500](https://word500.com/) - Wordle + Mastermind +* [Wordly](https://wordly.org/) - Wordle Clone +* [Octordle](https://www.britannica.com/games/octordle/) - Eight Word Wordle +* [Sqword](https://www.sqword.com/) - Deck-Based Wordle +* [Alphabeticle](https://alphabeticle.xyz/) - Alphabetical Wordle +* [WordMaze](https://wordmaze.click/) - Maze Style Wordle +* [Pixletters](https://pixletters.com/) - Pixel Style Wordle +* [Wourdle](https://wourdle.com/) - British English Wordle +* [Ridella](https://ridella.xyz/) - Riddle Wordle *** # ► Browser Games -* ↪️ **[Interactive Text Adventures](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_text_adventures)** -* ⭐ **[Flashpoint](https://flashpointarchive.org/)** / [Play Online](https://ooooooooo.ooo/) / [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 / [Flash Emulator](https://ruffle.rs/) / [Clean Builds](https://github.com/darktohka/clean-flash-builds/) +* ⭐ **[Allchemy](https://allchemy.io/)**, [Little Alchemy](https://littlealchemy.com/), [Little Alchemy 2](https://littlealchemy2.com/) or [Infinite Craft](https://neal.fun/infinite-craft/) / [Wiki](https://expitau.com/InfiniteCraftWiki/) / [Search](https://infinibrowser.wiki/) - Infinite Item Crafting Games +* ⭐ **[The World's Biggest Pac-Man](https://worldsbiggestpacman.com/)** - Infinite Custom Pac-Mac +* ⭐ **[Mario Kart PC](https://mkpc.malahieude.net/mariokart.php)** - Browser SNES Style Mario Kart / Multiplayer / [Custom Maps](https://mkpc.malahieude.net/creations.php) * ⭐ **[Marble Blast Gold Web](https://marbleblast.vaniverse.io/)** or [Marble Blast Ultra](https://marbleblastultra.randomityguy.me/) - Marble Blast in Browser -* ⭐ **[Allchemy](https://allchemy.io/)** or [Infinite Craft](https://neal.fun/infinite-craft/) / [Wiki](https://expitau.com/InfiniteCraftWiki/) / [Search](https://infinibrowser.wiki/) - Infinite Item Crafting Games * ⭐ **[QWOP](https://www.foddy.net/Athletics.html)** - Ragdoll Running Game +* [Tetris](https://tetris.com/), [LazyTetris](https://lazytetris.com/) or [Tetr.js](http://farter.cn/tetr.js/) - Tetris +* [SMBGames](https://smbgames.be/) - Browser Super Mario +* [SMWGames](https://www.smwgames.com/) - Modded Browser Super Mario World +* [Jelly Mario](https://jellymar.io/) - Jelly Super Mario +* [CelesteClassic](https://maddymakesgamesinc.itch.io/celesteclassic) - Full Classic Celeste +* [Mega Man Games](https://www.megamangames.net/) - Browser Mega Man +* [Play Snake](https://playsnake.org/), [Snake-Game](https://www.onemotion.com/snake-game/) or [Google Snake Mods](https://googlesnakemods.com/) - Snake Style Games +* [TENNIS!](https://snek-vunderkind.vercel.app/games/tennis.html) - JavaScript Pong * [SpaceCadetPinball](https://alula.github.io/SpaceCadetPinball) - Browser Space Cadet Pinball +* [Flappy Bird](https://flappybird.io/) - HTML5 Flappy Bird +* [Lain Game](https://laingame.net/) - Lain Game Browser Emulator +* [OpenLara](http://xproger.info/projects/OpenLara/) - Browser Tomb Raider / [GitHub](https://github.com/XProger/OpenLara) +* [You Have Not Died Of Dysentery](https://woe-industries.itch.io/you-have-not-died-of-dysentery) - Oregon Trail with Alt Dysentery Mechanics * [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 @@ -389,27 +526,30 @@ * [Pulsus](https://www.pulsus.cc/play/) - 3x3 Tile Board Rhythm Game * [Sans Fight](https://jcw87.github.io/c2-sans-fight/) - Undertale Fight Simulator * [DB Evolution](https://www.txori.com/dbdevolution) - Dragon Ball Fighting Game -* [Flappy Bird](https://flappybird.io/) - HTML5 Flappy Bird * [Slope Plus](https://coweggs.itch.io/slope-plus) - Downhill Ball Game * [Rooms](https://rooms.xyz/) - Room Design Game / [Discord](https://discord.gg/rooms) * [Haxball](https://www.haxball.com/) - Physics-Based Soccer -* [Mexican Train](https://mexicantrain.online/) - Domino Train Game -* [racing-game](https://racing.pmnd.rs/) - Driving Game / [GitHub](https://github.com/pmndrs/racing-game) / [Discord](https://discord.gg/dQW7fDmaAG) +* [Mexican Train](https://mexicantrain.online/) - Domino Train Game / Sign-Up Required +* [racing-game](https://racing.pmnd.rs/) - Driving Game / Sign-Up Required / [GitHub](https://github.com/pmndrs/racing-game) / [Discord](https://discord.gg/dQW7fDmaAG) * [The Race](https://therace.montblanclegend.com/), [2](https://therace.montblancexplorer.com/) - Driving Game * [slow roads](https://slowroads.io/) - Driving Game * [The Multiverse](https://across-multiverse.com/) - Universe Exploration Game Across * [Starshine Legacy](https://starshine-legacy.starstable.com/index.html) - 3D Browser Mystery Game -* [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 +* [Neopets](https://www.neopets.com/), [tamaNOTchi](https://tamanotchi.world/) or [Marapets](https://www.marapets.com) - Virtual Pet Games / Sign-Up Required +* [Gaia Online](https://www.gaiaonline.com/) - Anime Virtual Pet / Sign-Up Required +* [First-Person Tetris](https://firstpersontetris.com/) - First Person Tetris +* [Sandtris](https://sandtris.com/) - Falling Sand Style Tetris * [Edu-Games](https://www.edu-games.org/) - Educational Games *** ## ▷ Multi-Game Sites +* ⭐ **[Flashpoint](https://flashpointarchive.org/)** / [Play Online](https://ooooooooo.ooo/) / [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 / [Flash Emulator](https://ruffle.rs/) / [Clean Builds](https://github.com/darktohka/clean-flash-builds/) * ⭐ **[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 +* [Nitrome](https://www.nitrome.com/) - Browser Games * [Browser Craft](https://browsercraft.com/) - Indie Browser Games * [RG Games](https://www.rgshows.me/games/) - Browser Games / [Discord](https://discord.gg/e34HMTgyEy) * [Addicting Games](https://www.addictinggames.com/) - Browser Games @@ -440,15 +580,14 @@ * [FreeGames](https://freegames.org/) - Browser Games * [Friv](https://www.friv.com/) - Browser Games * [Emupedia](https://emupedia.net/beta/) - Browser Games -* [simmer.io](https://simmer.io/) - Unity Indie Browser Games * [/r/WebGames](https://reddit.com/r/WebGames) - Browser Games Subreddit * [Spatial](https://www.spatial.io/) - 3D Browser Games * [Curated PICO-8](https://nerdyteachers.com/PICO-8/Games/) - PICO-8 Browser Games * [Rosebud AI](https://www.rosebud.ai/) or [Wild West](https://www.wildwest.gg/) - AI Made Browser Games * [Noel Friedrich](https://www.noel-friedrich.de/terminal/) - Browser Terminal Games -* [ABA Games](https://www.asahi-net.or.jp/~cs8k-cyu/browser.html) - Single Button Games +* [ABA Games](https://www.asahi-net.or.jp/~cs8k-cyu/browser.html) - Single Button Games * [Unblock KISD](https://sites.google.com/view/unblockkisd/), [frogie's arcade](https://frogiesarca.de/), [Tyrone's Unblocked](https://sites.google.com/site/tyronesgamesez/) or [UBG365](https://ubg365.github.io/) - Browser Games / Unblocked at Schools -* [CoolMathGames](https://www.coolmathgames.com/) - Browser Game Site (disguised as edu games) +* [Cool Math Games](https://www.coolmathgames.com/) - Browser Game Site * [FlashMuseum](https://flashmuseum.org/), [Flash Arch](https://flasharch.com/en) or [AlbinoBlackSheep](https://www.albinoblacksheep.com/games/) - Flash Games * [Arcade Prehacks](https://www.arcadeprehacks.com/) or [KongHack](https://konghack.com/) - Flash Game Mods * [Js13kGames](https://js13kgames.com/entries), [HTML5 Games](https://html5games.com/) or [TheBestarcade](https://html5.thebestarcadescript.com/) - HTML5 Games @@ -458,21 +597,24 @@ ## ▷ Party / Multiplayer +* ⭐ **[TETR.IO](https://tetr.io/)** - Multiplayer Tetris / [Plus](https://gitlab.com/UniQMG/tetrio-plus) / [Skin Database](https://you.have.fail/tetrioplus//) / [Stats](https://tsbeta.dan63.by/) * ⭐ **[Eaglercraft](https://eaglercraft.com/)**, [EaglerCraftX](https://fastest.eaglercraft.win/) / [2](https://client.eaglercraft.win/) or [Minecraft Classic](https://classic.minecraft.net/) - Online Browser Minecraft / [Note](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#eaglercraft-note) / [Site List](https://deev.is/) +* ⭐ **Eaglercraft Tools** - [Mod Loader](https://eaglerforge.github.io/) / [Mod Search](https://eaglerrinth.github.io/) / [Create Mods](https://eaglerforge-builder.vercel.app/) / [Public Servers](https://servers.eaglercraft.com/) * ⭐ **[NetGames](https://netgames.io/)** - Multiple Games / [Discord](https://discord.com/invite/chgD7WF) * ⭐ **[Codenames](https://codenames.game/)** - Party Card Games * ⭐ **[GarticPhone](https://garticphone.com/)** - Telephone Game -* ⭐ **[Powerline.io](https://powerline.io/)** - Multiplayer Snake / [Discord](https://discord.com/invite/NckDSyb) -* ⭐ **[TagPro](https://koalabeast.com/)** - Multiplayer Capture the Flag / [Discord](https://discord.com/invite/hhW3MDzrt3) * ⭐ **[skribbl](https://skribbl.io/)**, [DrawBattle](https://drawbattle.io/), [Sketchful](https://sketchful.io/), [Drawize](https://www.drawize.com/) or [Gartic](https://gartic.io/) - Drawing / Guessing Game / Multiplayer -* ⭐ **Eaglercraft Tools** - [Mod Loader](https://eaglerforge.github.io/) / [Mod Search](https://eaglerrinth.github.io/) / [Create Mods](https://eaglerforge-builder.vercel.app/) / [Public Servers](https://servers.eaglercraft.com/) / [Source](https://git.eaglercraft.rip/eaglercraft) -* ⭐ **[Make It Meme](https://makeitmeme.com/)** - Meme Party Game * [AWBW](https://awbw.amarriner.com/) - Multiplayer Browser Advance Wars / [Discord](https://discord.com/invite/rPpWT2x) * [Bloxd](https://bloxd.io/) or [MiniBlox](https://miniblox.io/) - Online Minecraft Clones +* [Jstris](https://jstris.jezevec10.com/) - Multiplayer Tetris / [Plus](https://discord.gg/mtX8ek82xb) / [Skin Database](https://docs.google.com/spreadsheets/d/1xO8DTORacMmSJAQicpJscob7WUkOVuaNH0wzkR_X194/htmlview#) * [Slither.io](http://slither.io/) - Grow the Longest Worm +* [Make It Meme](https://makeitmeme.com/) - Meme Party Game * [Hexar.io](http://www.hexar.io/) or [splix.io](https://splix.io/) - Control the Map +* [Powerline.io](https://powerline.io/) - Multiplayer Snake / [Discord](https://discord.com/invite/NckDSyb) * [agar.io](https://agar.io/) - Become the Biggest Circle * [mope.io](https://mope.io/) - Become the Biggest Animal / [Discord](https://discord.com/invite/nQAVB9c) +* [TagPro](https://koalabeast.com/) - Multiplayer Capture the Flag / [Discord](https://discord.com/invite/hhW3MDzrt3) +* [Golf Party](https://golfparty.io/) - Multiplayer Mini Golf Game * [Bloob.io](https://bloob.io/) - Multiple Games * [Gidd.io](https://gidd.io/) - Multiple Games * [Yucata](https://www.yucata.de/en/) - Multiple Games @@ -494,12 +636,31 @@ *** +## ▷ Text Adventures + +* **Note** - Oldschool text adventure games are known for being [unforgiving](https://www.ifwiki.org/Cruelty_scale), but you can usually find solutions / guides online. You can also try feeding the text to [AI chatbots](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/ai#wiki_.25B7_online_chatbots), which can be both helpful and amusing. + +*** + +* 🌐 **[IFWiki](https://www.ifwiki.org/)** - Interactive Fiction Encyclopedia / Resources +* ⭐ **[IFDB](https://ifdb.org/)** - Text Adventures +* [IFWizz](https://ifwizz.de/if-en.html) - Text Adventures +* [IFArchive](https://www.ifarchive.org/) - Text Adventures +* [Web Adventures](https://www.web-adventures.org/) - Text Adventures +* [Seedship](https://philome.la/johnayliff/seedship/play/index.html) - Text Adventures +* [TextAventures](http://textadventures.co.uk/) - User-Made Text Adventures +* [WrittenRealms](https://writtenrealms.com/), [Genesis](https://www.genesismud.org/), [Fateful Quest](https://fateful.quest/) or [Level 13](https://nroutasuo.github.io/level13/) - Individual Adventures +* [Muds](https://muds.fandom.com/wiki/) - Text Adventure ROMs +* [SolutionArchive](https://solutionarchive.com/) - Text Adventure Solutions + +*** + ## ▷ 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 -* [OpenArena Live](https://kosmi.io/openarena) - Quake 3 Arena Clone +* [OpenArena Live](https://kosmi.io/openarena) or [Q1K3](https://js13kgames.com/games/q1k3/index.html) - Quake Inpired Games * [WebLiero](https://www.webliero.com/) - Multiplayer Liero Clone * [Venge](https://venge.io/) - PvP FPS * [kour.io](https://kour.io/), [2](https://kourio.online/) - PvP FPS @@ -510,9 +671,9 @@ * [MiniRoyale](https://miniroyale.io/) - Battle Royale Game * [ZombsRoyale.io](https://zombsroyale.io/) - Top-Down Battle Royale * [Gats.io](https://gats.io/) - Top-Down Battle Royale / [Discord](https://discord.gg/8Tspptdupm) -* [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 +* [MK48](https://mk48.io/) - Ship Combat Game / [Discord](https://discord.com/invite/YMheuFQWTX) / [GitHub](https://github.com/SoftbearStudios/mk48) * [Tanki](https://tankionline.com/) or [Diep](https://diep.io/) - Online Team VS Team Tank Games * [webXash](https://x8bitrain.github.io/webXash/) - Half Life Demo @@ -568,9 +729,6 @@ ## ▷ Board / Card / Dice * 🌐 **[Online Board Games](https://i.ibb.co/4Yzk4nV/Zb-Q2ste-L-o.png)** / [2](https://imgbox.com/ZbQ2steL/) - Board Game Index -* 🌐 **[Curlie Board Games](https://curlie.org/en/Games/Video_Games/Recreation/Browser_Based/Board_Games)** - Board Game Index -* 🌐 **[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 * [Board Game Online](https://www.boardgame-online.com/) - Online Board Games * [Board Game Arena](https://en.boardgamearena.com/) - Online Board Games @@ -603,7 +761,7 @@ ## ▷ 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](https://lichess.org/)**, [PyChess](https://www.pychess.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) / [Mobile V2](https://play.google.com/store/apps/details?id=org.lichess.mobileV2) / [Customize](https://prettierlichess.github.io/) / [Themes](https://github.com/algertc/prettierlichess-themes) / [Leagues](https://www.lichess4545.com/) / [Extend](https://lichess.org/page/extend) * ⭐ **[Print Chess](https://www.printchess.com/)** - Printable Paper Chess Set * ⭐ **[Super Auto Pets](https://teamwood.itch.io/super-auto-pets)** - Pet Battle Game / [Resources](https://www.groundedsap.co.uk/) @@ -625,41 +783,6 @@ *** -## ▷ Puzzle Games - -* ⭐ **[Rubik's 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/) - Rubik's Cubes / [Guide](https://easiestsolve.com/) / [Solver](https://rubiksolve.com/), [2](https://rubiks-cube-solver.com/) / [Timer](https://cstimer.net/) -* ⭐ **[Minesweeper.online](https://minesweeper.online/)** - Minesweeper -* [Simon Tatham's Puzzles](https://www.chiark.greenend.org.uk/~sgtatham/puzzles/) - Multiple Puzzle Games / [Mobile](https://github.com/chrisboyle/sgtpuzzles) -* [Puzzle Party](https://artsandculture.google.com/experiment/puzzle-party/EwGBPZlIzv0KRw) - Multiplayer Jigsaws -* [PuzzlePrime](https://www.puzzleprime.com/) - Problems / Puzzles -* [Crosshare](https://crosshare.org/) - Play / Create Crosswords -* [Regex Crossword](https://regexcrossword.com/) - Regex Crosswords -* [Web Paint-by-Number](https://webpbn.com/) or [Nonograms](https://www.nonograms.org/) - Graphic Crosswords -* [Game for the Brain](https://www.gamesforthebrain.com/) - Puzzles / Quizzes -* [MasasGames](https://masasgames.com/) - Virtual Escape Rooms -* [Murdle](https://murdle.com/) - Daily Murder Mystery -* [Sokoban Online](https://www.sokobanonline.com/) - Sokoban Puzzles -* [DailyDungeon](https://dailydungeon.net/) - Puzzle Dungeon Crawler -* [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&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 -* [mmmines!](https://mmmines.fly.dev/), [MinesweeperPro](https://www.minesweeperpro.com/), [MineJD](https://minesjd.com/) or [m3o](https://play.m3o.xyz/) - Multiplayer Minesweeper -* [Minesweeper Infinity](https://www.minesweeperinfinity.com/) - Infinite Minesweeper -* [Minesweeper Twist](https://polyreplay.com/minesweepertwist) - Irregular Grid Minesweeper -* [PROXX](https://proxx.app/) - Space Minesweeper -* [Rockbasher](https://www.rockbasher.com/) - Retro Style Puzzle Game -* [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 -* [Oh, My Dots!](https://www.ohmydots.com/) - Connect the Dots Game -* [BreakLock](https://maxwellito.github.io/breaklock/) - Pattern Lock 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 @@ -674,7 +797,6 @@ * [KittensGame](https://kittensgame.com/web/) - Incremental Kitten Maker * [Incremancer](https://incremancer.gti.nz/) or [Danemancer](https://cirusdane.github.io/incremancer/) - Incremental Zombie Game * [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 @@ -692,7 +814,7 @@ * ⭐ **[GuessTheGame](https://guessthe.game/)** or [Gamedle](https://www.gamedle.wtf/) - Game Guessing Games * ⭐ **[Free Rice](https://freerice.com/)** - Earn Rice for the World Food Programme / Trivia -* [Fun Trivia](https://www.funtrivia.com/), [Sporcle](https://www.sporcle.com/), [uQuiz](https://uquiz.com/), [ARealMe](https://www.arealme.com/) or [JetPunk](https://www.jetpunk.com/) - Quiz / Trivia +* [TriviaDuel](https://www.triviaduel.com/), [Fun Trivia](https://www.funtrivia.com/), [Sporcle](https://www.sporcle.com/), [uQuiz](https://uquiz.com/), [ARealMe](https://www.arealme.com/) or [JetPunk](https://www.jetpunk.com/) - Quiz / Trivia * [The Re-Ride](https://thereri.de/) - You Don't Know Jack: The Ride Remake / [Discord](https://discord.com/invite/89sgMHnDRB) * [FlightGuesser](https://flightguesser.com/) - Flight Path Guessing Game * [Akinator](https://en.akinator.com/) - 20 Questions @@ -703,14 +825,13 @@ * [BoxOfficeGA](https://boxofficega.me/) - Box Office Guessing * [Scenewise](https://scenewise.io/) - Movie Scene Order Puzzle * [Actorle TV](https://actorle.tv/) - TV Show Guessing -* [GuessAnimeQuiz](https://guessanimequiz.com/) - Anime Guessing * [AMQ](https://animemusicquiz.com/) - Anime Theme Guessing * [ConnectTheStars](https://connectthestars.xyz/) or [Movie To Movie](https://movietomovie.com/) - Connect Stars through Movies * [Play Football](https://playfootball.games/) - Football Quizzes / Trivia * [The Wiki Game](https://www.thewikigame.com/), [Pedantle](https://cemantle.certitudes.org/pedantle), [Six Degrees of Wikipedia](https://www.sixdegreesofwikipedia.com/) or [WikiRacer](https://wikiracer.io/) - Wiki Exploration Games / [Automation Tool](https://gitlab.com/johanbluecreek/wikiracer) * [Catfishing](https://catfishing.net/) - Wiki Article Guessing Game -* [MusicNerd](https://musicnerd.io/) or [Lofidle](https://lofidle.com/) - Music Guessing Games * [More or Less](https://moreorless.io/) - More or Less Guessing +* [MusicNerd](https://musicnerd.io/), [Musicle](https://musicle.app/), [Bandle](https://bandle.app/), [Spotle](https://spotle.io/) or [Lofidle](https://lofidle.com/) - Music / Song Guessing Games * [DanceMusic](https://dancemusic.wtf/) - Electronic Music Genre Guessing Game * [Guess My Rank](https://guessmyrank.com/) - Guess Player Game Ranks * [Poeltl](https://poeltl.nbpa.com/) - NBA Guessing Game @@ -719,13 +840,13 @@ * [English Sandwich](https://englishsandwich.github.io/) - Guess Where Dishes are From * [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 +* [WildGuesser](https://wildguesser.com/) or [Metazooa](https://metazooa.com/) - Animal Guessing Games * [Pufferdle](https://pufferdle.com/) - Fish Guessing Game * [ChessGuessr](https://www.chessguessr.com/) - Chess Style Guessing Game * [Huedle](https://huedle.com/), [Color Rush](https://www.colorrush.io/), [WhatTheHex](https://yizzle.com/whatthehex/) or [Hexcodle](https://www.hexcodle.com/) - Hex Code Guessing Games * [Nerdle](https://nerdlegame.com/), [Additional](https://additional.today/) or [Countle](https://www.countle.org/) - Math Guessing Games * [Minecraftle](https://minecraftle.zachmanson.com/) - Minecraft Recipe Guessing Game -* [PkmnQuiz](https://pkmnquiz.com/), [Gearoid Pokémon](https://gearoid.me/pokemon/), [Pokedle](https://pokedle.net/) or [Squirdle](https://squirdle.fireblend.com/) - Pokémon Guessing Games +* [Gearoid Pokémon](https://gearoid.me/pokemon/), [Pokedle](https://pokedle.net/) or [Squirdle](https://squirdle.fireblend.com/) - Pokémon Guessing Games * [Pokémon Infinite Heardle](https://pkmn-infinite-heardle.glitch.me/) - Pokémon Music Guessing * [LoLdle](https://loldle.net/) - League of Legends Guessing Games * [Owdle](https://owdle.guessing.day/) - Overwatch Guessing Games @@ -737,10 +858,10 @@ ## ▷ GeoGuessr Games -* ⭐ **[Plonk It](https://www.plonkit.net/)** / [Discord](https://discord.gg/7eFVgb4c), **[Regionguessing](https://docs.google.com/spreadsheets/d/1UNvkoY-LaktF75nU_cP7-wVRAEvH3fSqVZet20HqxXA)**, [GeoTips](https://geotips.net/) / [Discord](https://discord.gg/svhWzU7FMa), [GeoHints](https://geohints.com/) / [Discord](https://discord.gg/bCZ8Bg2vUd) or [Top Tricks](https://somerandomstuff1.wordpress.com/2019/02/08/geoguessr-the-top-tips-tricks-and-techniques/) - GeoGuessr Guides / Tips +* ⭐ **[Plonk It](https://www.plonkit.net/)** / [Discord](https://discord.gg/plonk-it-854419081813164042), **[Regionguessing](https://docs.google.com/spreadsheets/d/1UNvkoY-LaktF75nU_cP7-wVRAEvH3fSqVZet20HqxXA)**, [GeoTips](https://geotips.net/) / [Discord](https://discord.gg/svhWzU7FMa), [GeoHints](https://geohints.com/) / [Discord](https://discord.gg/bCZ8Bg2vUd), [GeoMetas](https://www.geometas.com/), [GeoPrep](https://geoprep.fun/) or [Top Tricks](https://somerandomstuff1.wordpress.com/2019/02/08/geoguessr-the-top-tips-tricks-and-techniques/) - GeoGuessr Guides / Tips * ⭐ **[Geotastic](https://geotastic.net/)** - Multiplayer GeoGuessr / Account Required * ⭐ **[Globle](https://globle-game.com/)** - Country Hot-or-Cold Guessing Game -* [LearnableMeta](https://learnablemeta.com/) - Geoguessr Practice Maps & Hints / [Discord](https://discord.gg/AcXEWznYZe) +* [LearnableMeta](https://learnablemeta.com/) - Geoguessr Practice Maps & Hints / [Discord](https://discord.gg/AcXEWznYZe) * [Emily's GeoGuessr Tools](https://geo.emily.bz/) - GeoGuessr Tools * [Geohub](https://www.geohub.gg/) - Free GeoGuessr Alt / Requires Google API * [GuessWhereYouAre](https://guesswhereyouare.com/) - Free GeoGuessr Alt w/ Multiplayer @@ -762,37 +883,4 @@ *** -## ▷ Word Games - -* 🌐 **[Wordleverse](https://wordleverse.net/)**, [WordleWeb](https://github.com/rarelygoeshere/WordleWeb), [Wordle Collection](https://rentry.org/v72n74fu), [Awesome Wordle](https://github.com/prakhar897/awesome-wordle), [Alldle](https://alldle.net/) or [Wordles of the World](https://rwmpelstilzchen.gitlab.io/wordles/) - Wordle Game Index -* ⭐ **[Wordle](https://www.nytimes.com/games/wordle/index.html)** - Original Wordle -* ⭐ **[Wordle Analyzer](https://wordle-analyzer.com/)** -* ⭐ **[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 -* [MakeAWordSearch](http://www.makeawordsearch.net/) - Word Search Creator -* [Connections](https://connections.swellgarfo.com/) - Custom Word Puzzles -* [RobinWords](https://www.robinwords.com/) - Word Ladder Game -* [Word Golf](https://www.word.golf/) - Word Relation Game -* [Truncate](https://truncate.town/) - Crossword Strategy Game -* [HoverCats](https://hovercats.gg/) - Multiplayer Crosswords -* [JKLM.FUN](https://jklm.fun/) - Multiplayer Word Games -* [eWordChallenge](https://www.ewordchallenge.net/) - Boggle Online -* [Squaredle](https://squaredle.app/), [2](https://squaredle.online/) - Daily Word Puzzle -* [Linxicon](https://linxicon.com/) - Word Connection Game -* [Wordle VS](https://wordlevs.com/) - Multiplayer Wordle -* [Wordle Unlimited](https://wordleunlimited.org/) - Wordle without Daily Limit -* [Fusele](https://fusele.netlify.app/) - Wordle Variant -* [Word500](https://word500.com/) - Wordle + Mastermind -* [Wordly](https://wordly.org/) - Wordle Clone -* [Octordle](https://www.britannica.com/games/octordle/) - Eight Word Wordle -* [Sqword](https://www.sqword.com/) - Deck-Based Wordle -* [Alphabeticle](https://alphabeticle.xyz/) - Alphabetical Wordle -* [WordMaze](https://wordmaze.click/) - Maze Style Wordle -* [Pixletters](https://pixletters.com/) - Pixel Style Wordle -* [Wourdle](https://wourdle.com/) - British English Wordle -* [Ridella](https://ridella.xyz/) - Riddle Wordle - -*** - -# ► [Gaming Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/game-tools) \ No newline at end of file +# ► [Gaming Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/game-tools) diff --git a/docs/img-tools.md b/docs/img-tools.md index 5d8e6b74e..aedc80be3 100644 --- a/docs/img-tools.md +++ b/docs/img-tools.md @@ -6,10 +6,13 @@ # ► Image Editing +* 🌐 **[PuccaNoodles' Sheet](https://docs.google.com/spreadsheets/d/1-8OKuEvRR038Uno--Vi9tQRe4eFCSfQTPov7nXgiJ3w/)** - Image Creation Resources +* ↪️ **[AI Image Generators](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/ai#wiki_.25BA_image_generation)** * ↪️ **[Background / Object Removers](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_background_removers)** +* ↪️ **[Art Education](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/edu#wiki_.25B7_art_.2F_editing)** * [Croppola](https://croppola.com/), [AutoCropper](https://www.autocropper.io/), [Bulk Image Crop](https://bulkimagecrop.com/) or [Avatar Cropper](https://avatarcropper.com/) - Cropping Tools +* [imgsli](https://imgsli.com/) - Before & After Slider Generator * [Scribus](https://www.scribus.net/) - Page Layout & Typesetting Program -* [FilmDev](https://filmdev.org/) - Film Development Recipes * [Images.weserv.nl](https://images.weserv.nl/) - Image Editing Server * [GradientArt](https://gra.dient.art/) or [TailBlend](https://tailblend.vercel.app/) - Gradient Editor * [Canvas](https://www.nvidia.com/en-us/studio/canvas/) - Turn Simple Art into Photorealistic Landscapes @@ -20,20 +23,18 @@ ## ▷ Editing Software -* ⭐ **[m0nkrus](https://w16.monkrus.ws/)** / [2](https://vk.com/monkrus) or [GenP](https://rentry.co/FMHYBase64#genp) - Adobe Software Archive / Use VPN / [Block Adobe](https://rentry.co/FMHYBase64#a-dove-is-dumb) / [Search](https://monkrus.dvuzu.com/) / [Telegram](https://t.me/real_monkrus) -* ⭐ **[GIMP](https://www.gimp.org/)** / [Discord](https://discord.gg/kHBNw2B) / [Subreddit](https://www.reddit.com/r/GIMP/) -* ⭐ **GIMP Tools** - [Photoshop UI](https://github.com/Diolinux/PhotoGIMP) / [Texture Synthesizer](https://github.com/bootchk/resynthesizer) / [Batch Editor](https://github.com/alessandrofrancesconi/gimp-plugin-bimp) / [Text Effects](https://github.com/LinuxBeaver?tab=repositories) -* ⭐ **[Pinta Project](https://www.pinta-project.com/)** -* ⭐ **[ImageMagick](https://imagemagick.org/index.php)** / [Scripts](https://www.fmwconcepts.com/imagemagick/index.php) -* [darktable](https://www.darktable.org/) - Virtual Lighttable & Darkroom -* [RawTherapee](https://www.rawtherapee.com/) - Raw Image Editor -* [StitchTool](https://www.jdeploy.com/~stitchtool) - Image Stitcher, Splitter, Upscaler & more -* [PhotoDemon](https://photodemon.org/) -* [Paint.net](https://www.getpaint.net/index.html) -* [PhotoFiltre](https://www.photofiltre-studio.com/) -* [Gimel Studio](https://gimelstudio.com/) -* [Luna Paint](https://marketplace.visualstudio.com/items?itemName=Tyriar.luna-paint) - VS Code Extension - +* ⭐ **[Photoshop](https://w16.monkrus.ws/)** / [2](https://vk.com/monkrus) or [GenP](https://rentry.co/FMHYBase64#genp) / Windows, Mac / Use VPN / [Guide](https://rentry.co/FMHYBase64#adobe-guide) / [Block Adobe](https://rentry.co/FMHYBase64#a-dove-is-dumb) / [Search](https://monkrus.dvuzu.com/) / [Telegram](https://t.me/real_monkrus) +* ⭐ **[GIMP](https://www.gimp.org/)** / Windows, Mac, Linux / [Photoshop UI](https://github.com/Diolinux/PhotoGIMP) / [Texture Synthesizer](https://github.com/bootchk/resynthesizer) / [Discord](https://discord.gg/kHBNw2B) / [Subreddit](https://www.reddit.com/r/GIMP/) +* ⭐ **[Pinta Project](https://www.pinta-project.com/)** / Windows, Mac, Linux / [GitHub](https://github.com/PintaProject/Pinta) +* ⭐ **[ImageMagick](https://imagemagick.org/index.php)** / Windows, Mac, Linux, iOS / [Scripts](https://www.fmwconcepts.com/imagemagick/index.php) / [Github](https://github.com/imagemagick/imagemagick) +* [LazPaint](https://lazpaint.github.io/) / Windows, Mac, Linux / [GitHub](https://github.com/bgrabitmap/lazpaint/) +* [PhotoDemon](https://photodemon.org/) / Windows / [GitHub](https://github.com/tannerhelland/PhotoDemon) +* [Paint.net](https://www.getpaint.net/index.html) / Windows / [GitHub](https://github.com/paintdotnet) +* [Gimel Studio](https://gimelstudio.com/) / Windows / [GitHub](https://github.com/GimelStudio/GimelStudio) +* [darktable](https://www.darktable.org/) - Virtual Lighttable & Darkroom / Windows, Mac, Linux / [GitHub](https://github.com/darktable-org/darktable) +* [RawTherapee](https://www.rawtherapee.com/) - Raw Image Editor / Windows, Mac, Linux / [GitHub](https://github.com/RawTherapee/RawTherapee) +* [Hugin](https://hugin.sourceforge.io/) - Panorama Image Generator / Windows, Mac, Linux + *** ## ▷ Online Editors @@ -46,15 +47,11 @@ * [iPiccy](https://ipiccy.com/) - Photoshop Alt * [Stet](https://stet.io/) - Photoshop Alt * [Resize Pixel](https://www.resizepixel.com/) - Multi-Tool -* [ImageOnline](https://imageonline.co/) - Multi-Tool -* [GifGit](https://www.gifgit.com/) - Multi-Tool * [Tom's Editor](https://tomseditor.com/editor/) - Multi-Tool -* [Peko-Step](https://www.peko-step.com/en/tool/imageeditor.html) - Multi-Tool * [photo.codes/](https://www.photo.codes/) - Simple Editor w/ Shareable Colab Codes * [Photomate](https://photomate.dev/) - Simple Editor -* [BeFunky](https://www.befunky.com/) - Simple Editor -* [Polotno Studio](https://studio.polotno.com/) - Simple Editor -* [OIE](https://www.online-image-editor.com/) - Simple Editor +* [MiNi Photo Editor](https://mini2-photo-editor.netlify.app/) - Simple Editor / [GitHub](https://github.com/xdadda/mini-photo-editor) +* [Polotno Studio](https://studio.polotno.com/) - Simple Editor / [GitHub](https://github.com/polotno-project/polotno-studio) * [ILoveImg](https://www.iloveimg.com/photo-editor) - Simple Editor * [UpperPix](https://upperpix.com/) - Simple Editor * [Online Photo Editor](https://www.freeonlinephotoeditor.com/) - Simple Editor @@ -62,10 +59,7 @@ * [webp2jpg](https://renzhezhilu.github.io/webp2jpg-online/) - Simple Editor * [edit.photo](https://edit.photo/) - Simple Editor * [Image Resizer](https://photo.valueweb.gr/) - Simple Editor -* [PicSynth](https://www.picsynth.me/) - Multi-Tool -* [Ribbet](https://ribbet.ai/) - Multi-Tool * [RedKetchup](https://redketchup.io/) - Multi-Tool -* [Img2Go](https://www.img2go.com/) - Multi-Tool * [fffuel](https://fffuel.co/) - Multi-Tool * [Mara](https://mara.photos/) - Multi-Tool @@ -73,129 +67,90 @@ ## ▷ Upscale / Restore -* ⭐ **[Waifu2x](https://github.com/nagadomi/nunif)** - Anime Image Upscaling / [WebUI](https://www.waifu2x.net/), [2](https://unlimited.waifu2x.net/), [3](https://waifu2x.pro/) / Self-Host / No Sign-Up -* ⭐ **[WaifuXL](https://waifuxl.com/)** - Anime Image Upscaling / Online / Self-Host / No Sign-Up -* ⭐ **[Upscayl](https://upscayl.org/)** - Image Upscaling / [GitHub](https://github.com/upscayl/upscayl) / Self-Host / No Sign-Up -* ⭐ **[chaiNNer](https://github.com/chaiNNer-org/chaiNNer)** - Image Upscaling / Self-Host / No Sign-Up -* ⭐ **[OpenModelDB](https://openmodeldb.info/)** - AI Upscaling Model Database / No Sign-Up -* [Real-ESRGAN](https://github.com/xinntao/Real-ESRGAN) - Image Restoration Algorithms / [Face Restoration](https://github.com/TencentARC/GFPGAN) / Online / Self-Host / No Sign-Up -* [/r/estoration](https://www.reddit.com/r/estoration/) - Photo Restoration Requests -* [image-upscaling.net](https://image-upscaling.net/) - Image Upscaling / Online / No Sign-Up -* [IMGUpscaler](https://imgupscaler.ai/) - Image Upscaling / Restoration / Video Upscaling / Online / No Sign-Up -* [Bigjpg](https://bigjpg.com/) - Image Upscaling / Online / No Sign-Up -* [Ilaria_Upscaler](https://huggingface.co/spaces/TheStinger/Ilaria_Upscaler) - Image Upscaling / Online / No Sign-Up -* [Final2x](https://github.com/Tohrusky/Final2x) - Image Upscaling / Self-Host / No Sign-Up +* ⭐ **[Waifu2x](https://github.com/nagadomi/nunif)** - Anime Image Upscaling / [WebUI](https://www.waifu2x.net/), [2](https://unlimited.waifu2x.net/), [3](https://waifu2x.pro/) / Self-Host +* ⭐ **[WaifuXL](https://waifuxl.com/)** - Anime Image Upscaling / Online / Self-Host +* ⭐ **[Upscayl](https://upscayl.org/)** - Image Upscaling / [GitHub](https://github.com/upscayl/upscayl) / Self-Host +* ⭐ **[chaiNNer](https://github.com/chaiNNer-org/chaiNNer)** - Image Upscaling / Self-Host +* ⭐ **[OpenModelDB](https://openmodeldb.info/)** - AI Upscaling Model Database +* [Real-ESRGAN](https://github.com/xinntao/Real-ESRGAN) - Image Restoration Algorithms / [Face Restoration](https://github.com/TencentARC/GFPGAN) / Online / Self-Host +* [image-upscaling.net](https://image-upscaling.net/) - Image Upscaling / Online +* [IMGUpscaler](https://imgupscaler.ai/) - Image Upscaling / Restoration / Video Upscaling / Online +* [Bigjpg](https://bigjpg.com/) - Image Upscaling / Online +* [Ilaria_Upscaler](https://huggingface.co/spaces/TheStinger/Ilaria_Upscaler) - Image Upscaling / Online +* [Final2x](https://github.com/Tohrusky/Final2x) - Image Upscaling / Self-Host * [Lossless Scaling](https://rentry.co/FMHYBase64#lossless-scaling) - Image Upscaling -* [imgupscaler](https://imgupscaler.com/) - Image Upscaling / Online / No Sign-Up -* [QualityScaler](https://github.com/Djdefrag/QualityScaler) - Image Upscaling / Video Upscaling / Denoising / Self-Hosted / No Sign-Up -* [resdet](https://github.com/0x09/resdet) - Detect Source Resolution of Upscaled Images / Self-Host / No Sign-Up -* [InColor](https://www.myheritage.com/incolor) or [Colorizer](https://deepai.org/machine-learning-model/colorizer) - Online Image Colorization +* [imgupscaler](https://imgupscaler.com/) - Image Upscaling / Online +* [QualityScaler](https://github.com/Djdefrag/QualityScaler) - Image Upscaling / Video Upscaling / Denoising / Self-Hosted +* [resdet](https://github.com/0x09/resdet) - Detect Source Resolution of Upscaled Images / Self-Host *** ## ▷ Image Effects -* ⭐ **[PhotoMosh](https://moshpro.app/)**, [jpg-glitch-electron](https://snorpey.github.io/jpg-glitch-electron/), [glitch-this!](https://github.com/TotallyNotChase/glitch-this), [glitch2](https://akx.github.io/glitch2/), [Image Glitcher](https://www.airtightinteractive.com/demos/js/imageglitcher/) or [GlitchyImage](https://glitchyimage.com/) - Glitch Images -* [PhotoFunia](https://photofunia.com/), [Pixelizer](https://www.igorski.nl/application/pixelizer/), [Image Mage](https://imagemageage.github.io/) or [Designify](https://designify.com/) - Photo Effects / Filters -* [distort-grid](https://github.com/snorpey/distort-grid) - Grid-Based Image Distortion -* [Change Image Hue](https://www.imageonlinetools.com/change-image-hue) or [Tinter](https://tinter.uxie.io/) - Hue Editor -* [ordered-dither-maker](https://seleb.github.io/ordered-dither-maker/), [Ditherista](https://github.com/robertkist/ditherista/) or [Dither Me This](https://doodad.dev/dither-me-this/) - Image Dithering -* [Fotosketcher](https://fotosketcher.com/) or [PhotoMaker](https://huggingface.co/spaces/TencentARC/PhotoMaker), [Stylized](https://huggingface.co/spaces/TencentARC/PhotoMaker-Style) - Turn Photos into Artwork -* [AnimeGAN](https://github.com/TachibanaYoshino/AnimeGANv3) - Image to Anime Style Converter +* ⭐ **[PhotoMosh](https://moshpro.app/)**, [glitch2](https://akx.github.io/glitch2/) or [GlitchyImage](https://glitchyimage.com/) - Glitch Images +* [PhotoFunia](https://photofunia.com/) or [Image Mage](https://imagemageage.github.io/) - Photo Effects / Filters +* [InColor](https://www.myheritage.com/incolor) - Image Colorization / Sign-Up Required +* [PhotoJoiner](https://www.photojoiner.com/) - Collage Maker * [AIDraw](https://ai-draw.tokyo/en/) - Turn Photos into Line Art +* [Tiler](https://github.com/nuno-faria/tiler) - Mosaic Image Generator +* [Fotosketcher](https://fotosketcher.com/) - Turn Photos into Artwork / Windows +* [Mimi](https://mimi-panda.com/) - Turn Photos into Coloring Book Sketch +* [Text-Image](https://www.text-image.com/) - Text Image Generator +* [ordered-dither-maker](https://seleb.github.io/ordered-dither-maker/), [Ditherista](https://github.com/robertkist/ditherista/) or [Dither Me This](https://doodad.dev/dither-me-this/) - Image Dithering * [Rutt-Etra-Izer](https://airtightinteractive.com/demos/js/ruttetra/) - Scanned-line Images -* [Geometrize](https://www.geometrize.co.uk/) - Redraw Images with Geometric Shapes +* [Tinter](https://tinter.uxie.io/) - Hue Editor / [GitHub](https://github.com/uxie-io/tinter) +* [Geometrize](https://www.geometrize.co.uk/) - Redraw Images with Geometric Shapes / [GitHub](https://github.com/Tw1ddle/geometrize) * [PBNify](https://pbnify.com/) - Paint by Number Tool -* [Shimmer](https://github.com/collidingScopes/shimmer) - Oscillating Wave Images -* [CollidingScopes](https://github.com/collidingScopes/collidingScopes.github.io) - Kaleidoscope Images * [Party-ify](https://nathanielw.github.io/party-ify/) - Party-ify Images *** -## ▷ [Linux Image Editing](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/linux#wiki_.25B7_linux_images) +## ▷ [Linux Image Editing](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/linux#wiki_.25B7_linux_image) *** -## ▷ [Mac Image Editing](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/linux#wiki_.25B7_mac_images) +## ▷ [Mac Image Editing](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/linux#wiki_.25B7_mac_image) *** # ► Image Creation -* 🌐 **[PuccaNoodles' Sheet](https://docs.google.com/spreadsheets/d/1-8OKuEvRR038Uno--Vi9tQRe4eFCSfQTPov7nXgiJ3w/)** - Image Creation Resources -* ↪️ **[AI Image Generators](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/ai#wiki_.25BA_image_generation)** -* ↪️ **[Art Education](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/edu#wiki_.25B7_art_.2F_editing)** -* ⭐ **[TierMaker](https://tiermaker.com/)** - Tier List Image Creator -* ⭐ **[Topsters](https://topsters.org/)** - Make Taste / Recommendation Collages -* [PanosFX](https://www.panosfx.com/) or [Fix the Photo](https://fixthephoto.com/free-photoshop-actions) - Photoshop Actions -* [imgsli](https://imgsli.com/) - Before & After Slider Generator -* [Hugin](https://hugin.sourceforge.io/) - Panorama Image Generator -* [FlipAnim](https://flipanim.com/) - Animated Flipbook Creator -* [CharacterCreator](https://charactercreator.org/) - Character Generator -* [Picrew](https://picrew.me/) - Animated Character Maker -* [Mimi](https://mimi-panda.com/) - Create Coloring Pages from Photos -* [Text-Image](https://www.text-image.com/) - Text Image Generator -* [Photovisi](https://www.photovisi.com/) or [PhotoJoiner](https://www.photojoiner.com/) - Collage Generators -* [Tiler](https://github.com/nuno-faria/tiler) - Mosaic Image Generator -* [NoiseDeck](https://noisedeck.app/) - Art Generator - *** -## ▷ Painting +## ▷ Painting / Drawing * 🌐 **[Digital Art Brushes](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_digital_brushes)** - Download Brushes -* ⭐ **[Krita](https://krita.org/en/)** - Painting App -* ⭐ **Krita Tools** - [Custom Backend](https://github.com/Interpause/auto-sd-paint-ext) / [AI Generation](https://github.com/Acly/krita-ai-diffusion/) / [Forums](https://krita-artists.org/) -* ⭐ **[miniPaint](https://viliusle.github.io/miniPaint/)** - Browser Painting -* [SmoothDraw](https://qrli.github.io/smoothdraw/) - Painting App -* [FireAlpaca](https://firealpaca.com/) - Painting App -* [LazPaint](https://github.com/bgrabitmap/lazpaint/) - Painting App -* [PaintOnline](https://paintonline.com.br/paint.html) - Browser Painting -* [jspaint](https://jspaint.app/) - Browser Painting -* [PinTor](https://pintor.app/) - Browser Painting -* [Tegaki](https://desuwa.github.io/tegaki.html) - Browser Painting -* [Milton](https://www.miltonpaint.com/) - Infinite Canvas Painting -* [IOGraphica](https://iographica.com/) - Turn Mouse Movement into Art -* [HeavyPaint](https://www.heavypaint.com/) - Water Color Painting -* [Mixbox Painter](https://scrtwpns.com/mixbox/painter/) - Realistic Paint Mixing -* [Vervette](https://www.taron.de/Vervette/sandbox/) - Realistic Fluid Painting -* [ArtistAssistApp](https://artistassistapp.com/) - Useful Painting Tools - -*** - -## ▷ Drawing - -* ⭐ **[Excalidraw](https://excalidraw.com/)** - Drawing / Sketching / [Sharing](https://excalihub.dev/) -* ⭐ **[AutoDraw](https://www.autodraw.com/)**, [Co-Drawing](https://huggingface.co/spaces/Trudy/gemini-codrawing) or [Magic Sketchpad](https://magic-sketchpad.glitch.me/) - AI Drawing Tools -* [DrawTab](https://docs.thesevenpens.com/drawtab) - Drawing Tablet Info / Wiki -* [Inscribed](https://inscribed.app/) / [GitHub](https://github.com/chunrapeepat/inscribed) - Sketch-Based Slides -* [inkscape](https://inkscape.org/) - Drawing / Sketching -* [Inkdo](https://www.microsoft.com/en-us/p/inkodo/9nblggh4s50q) - Drawing / Sketching -* [Sketch Toy](https://www.sketchtoy.com/) - Drawing / Sketching -* [Webchemy](https://webchemy.org/) - Drawing / Sketching -* [tldraw](https://www.tldraw.com/) - Drawing / Sketching -* [Ok! So](https://okso.app/) - Drawing / Sketching -* [Sketchpad](https://sketchpad.app/), [2](https://sketch.io/sketchpad) - Drawing / Sketching -* [Sketchbook](https://www.sketchbook.com/) - Drawing / Sketching / Mobile Only -* [Paper](https://wetransfer.com/explore/paper) - Drawing / Sketching / iOS Only -* [Fresco](https://www.adobe.com/products/fresco.html) - Drawing / Windows / iOS -* [Concepts](https://concepts.app/) - Drawing / Sketching -* [Magma](https://magma.com/), [Magma](https://magma.com/index), [HelloPaint](https://hellopaint.io/), [DrawPile](https://drawpile.net/), [LockDraw](https://www.skycow.us/), [World Draw](https://world-draw.appspot.com/draw) or [malmal](https://malmal.io/) - Collaborative Drawing -* [Ink Workspace](https://www.microsoft.com/store/productId/9P0RP342JZMN) - Pen App Launcher -* [Perfect Freehand](https://perfect-freehand-example.vercel.app/) - Draw Free Hand Lines / [GitHub](https://github.com/steveruizok/perfect-freehand) -* [Eschersket](https://eschersket.ch/) - Symmetry Drawing Tool -* [TEv2](http://te2.tewi.us/) - Share Your Drawings -* [Virtual Graph Paper](https://virtual-graph-paper.com/) or [minimator](https://minimator.app/) - Create Grid-Based Drawings -* [Gridzzly](http://gridzzly.com/) - Print Custom Grid Papers -* [Crayon Town](https://crayon.town/) - Infinite Online Canvas +* ⭐ **[Krita](https://krita.org/en/)** - Painting App / Windows, Mac, Linux / [AI Generation](https://github.com/Acly/krita-ai-diffusion/) / [GitHub](https://github.com/KDE/krita) +* ⭐ **[miniPaint](https://viliusle.github.io/miniPaint/)** - Browser Painting / Web +* ⭐ **[Excalidraw](https://excalidraw.com/)** - Drawing / Sketching / Web / [Sharing](https://excalihub.dev/) +* ⭐ **[AutoDraw](https://www.autodraw.com/)** - AI Drawing Tools / Web +* [SmoothDraw](https://qrli.github.io/smoothdraw/) - Painting App / Windows +* [inkscape](https://inkscape.org/) - Drawing / Sketching / Windows, Mac, Linux / [GitLab](https://gitlab.com/inkscape/inkscape) +* [FireAlpaca](https://firealpaca.com/) - Painting App / Windows, Mac +* [Milton](https://www.miltonpaint.com/) - Infinite Canvas Painting / Windows, Linux / [GitHub](https://github.com/serge-rgb/milton) +* [Graphite](https://graphite.rs/) - Vector Editor / Web / [GitHub](https://github.com/GraphiteEditor/Graphite) +* [Vectorpea](https://www.vectorpea.com/) - Vector Editor / Web +* [VectorInk](https://vectorink.io/) - Vector Editor / iOS, Web +* [HeavyPaint](https://www.heavypaint.com/) - Water Color Painting / Android, iOS, Web +* [Mixbox Painter](https://scrtwpns.com/mixbox/painter/) - Realistic Paint Mixing / Web +* [Vervette](https://www.taron.de/Vervette/sandbox/) - Realistic Fluid Painting / Web +* [ArtistAssistApp](https://artistassistapp.com/) - Useful Painting Tools / Web +* [Inscribed](https://inscribed.app/) - Sketch-Based Slides / Web / [GitHub](https://github.com/chunrapeepat/inscribed) +* [Sketch Toy](https://www.sketchtoy.com/) - Drawing / Sketching / Web +* [tldraw](https://www.tldraw.com/) - Drawing / Sketching / Web +* [Ok! So](https://okso.app/) - Drawing / Sketching / Web +* [Kleki](https://kleki.com/) - Drawing / Sketching / Web +* [Sketchbook](https://www.sketchbook.com/) - Drawing / Sketching / Windows, Mac, Android, iOS +* [Fresco](https://www.adobe.com/products/fresco.html) - Drawing / Windows, iOS +* [Concepts](https://concepts.app/) - Drawing / Sketching / Windows, Android, iOS +* [Magma](https://magma.com/), [DrawPile](https://drawpile.net/) or [malmal](https://malmal.io/) - Collaborative Drawing +* [MonsterMash](https://monstermash.zone/) - Sketch-Based Modeling & Animation Tool / Web +* [IOGraphica](https://iographica.com/) - Turn Mouse Movement into Art / Windows, Mac, Linux +* [Perfect Freehand](https://perfect-freehand-example.vercel.app/) - Draw Free Hand Lines / Web / [GitHub](https://github.com/steveruizok/perfect-freehand) +* [minimator](https://minimator.app/) - Create Grid-Based Drawings / Web / [GitHub](https://github.com/maxwellito/minimator/) * [Perspective Tools](https://perspectivetools.com/) - Interactive Perspective Grids -* [x6ud](https://x6ud.github.io/) - Animal Drawing Reference Tool -* [Noodle](https://hundredrabbits.itch.io/noodle) - 1-bit Sketch Tool -* [Tiny Sketchbook](https://www.tinysketchbook.com/) - Create and Share Doodle Art -* [ScribbleDiffusion](https://scribblediffusion.com/) - Turn Doodles into Artwork -* [MonsterMash](https://monstermash.zone/) - Sketch-Based Modeling & Animation Tool -* [Animated Drawings](https://sketch.metademolab.com/), [FAIR Animated Drawings](https://fairanimateddrawings.com/site/home), [MotorPen](https://motorpen.com/) or [Scratch](https://scratch.mit.edu/) - Animate Drawings -* [Mutsuacen](https://mutsuacen.com/) - Create Moving Drawings +* [Animated Drawings](https://sketch.metademolab.com/), [FAIR Animated Drawings](https://fairanimateddrawings.com/site/home), [MotorPen](https://motorpen.com/) - Animate Drawings +* [DrawTab](https://docs.thesevenpens.com/drawtab) - Drawing Tablet Info / Wiki *** @@ -203,45 +158,33 @@ * 🌐 **[Awesome Pixel Art](https://github.com/Siilwyn/awesome-pixel-art)** - Pixel Art Resource Index * ↪️ **[ASCII Art](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/text-tools#wiki_.25B7_ascii_art)** -* ⭐ **[rx](https://rx.cloudhead.io/)** - Pixel Art Editor -* [Piskel](https://www.piskelapp.com/) - Pixel Art Editor -* [Pixelated](https://pixelated.vercel.app/) - Pixel Art Editor -* [PyDPainter](https://github.com/mriale/PyDPainter) - Bitmap Graphics Editor -* [PaintWith](https://paintwith.webflow.io/) - Pixel Art Editor -* [PixelCraft](https://pixelcraft.web.app/) - Pixel Art Editor / [GitHub](https://github.com/rgab1508/PixelCraft) -* [Kleki](https://kleki.com/) - Pixel Art Editor -* [CSprite](https://csprite.github.io/) - Pixel Art Editor -* [PixilArt](https://www.pixilart.com/draw) - Pixel Art Editor -* [Strike](https://amorphous.itch.io/strike) - 1-bit Pixel Art Editor -* [Pixel Painter](https://jenniferdewalt.com/pixel_painter.html) or [Pixel Paint](https://codepen.io/quinlo/full/RvPPKG) - Paint with Pixels -* [pixels.land](https://pixel.land/), [EveryoneDraw](https://everyonedraw.com/), [pxls.space](https://pxls.space/) or [World of Pixels](https://ourworldofpixels.com/) - Infinite Online Pixel Art -* [dpixel](https://marcoc2.itch.io/dpixel) - Pixel Art Remastering Tool -* [Paint Of Persia](https://dunin.itch.io/ptop) - Rotoscoping Pixel Art Tool -* [Dither Machine](https://lunarlabs.itch.io/dither-machine) - Pixel Art Dithering Creator -* [PixelMe](https://pixel-me.tokyo/en/), [Pixel It](https://giventofly.github.io/pixelit/), [Pixelator](https://ronenness.itch.io/pixelator), [Img8Bit](https://img8bit.com/) or [Pixelart Converter](https://app.monopro.org/pixel/?lang=en) - Image to Pixelart Converters -* [Pixelorama](https://orama-interactive.itch.io/pixelorama) - 2D Sprite Editor -* [pixeldudesmaker](https://0x72.itch.io/pixeldudesmaker), [Pixel Sprite](https://deep-fold.itch.io/pixel-sprite-generator) or [Creature Mixer](https://kenney.itch.io/creature-mixer) - Sprite Generator -* [Pixelicious](https://www.scenario.com/features/pixelate) or [PixelartVillage](https://pixelartvillage.com/) - Image to Pixel Art Converter -* [Nasu](https://hundredrabbits.itch.io/nasu) - Spritesheet Editor -* [Pixel Art Scaler](https://lospec.com/pixel-art-scaler/) - Scale Pixel Art without Quality Loss +* ⭐ **[rx](https://rx.cloudhead.io/)** - Pixel Art Editor / Linux, Mac / [Discord](https://discord.com/invite/xHggPjfsS9) / [GitHub](https://github.com/cloudhead/rx) +* [CSprite](https://csprite.github.io/) - Pixel Art Editor / Windows, Mac, Linux / [GitHub](https://github.com/csprite/csprite) +* [PyDPainter](https://pydpainter.org/) - Bitmap Graphics Editor / Windows, Mac, Linux / [GitHub](https://github.com/mriale/PyDPainter) +* [Paint Of Persia](https://dunin.itch.io/ptop) - Rotoscoping Pixel Art Tool / Windows, Mac +* [Piskel](https://www.piskelapp.com/) - Pixel Art Editor / Web +* [Pixelated](https://pixelated.vercel.app/) - Pixel Art Editor / Web +* [PixilArt](https://www.pixilart.com/draw) - Pixel Art Editor / Web +* [pixels.land](https://pixel.land/), [EveryoneDraw](https://everyonedraw.com/), [pxls.space](https://pxls.space/) or [World of Pixels](https://ourworldofpixels.com/) - Infinite Online Pixel Art / Web +* [Pixelator](https://ronenness.itch.io/pixelator) - Image to Pixelart Converter / Windows +* [PixelartVillage](https://pixelartvillage.com/), [Pixel It](https://giventofly.github.io/pixelit/) or [Pixelart Converter](https://app.monopro.org/pixel/?lang=en) - Image to Pixelart Converter / Web +* [Pixelorama](https://orama-interactive.itch.io/pixelorama) - 2D Sprite Editor / Windows, Mac, Linux, Web / [Discord](https://discord.com/invite/GTMtr8s) / [GitHub](https://github.com/Orama-Interactive/Pixelorama) +* [pixeldudesmaker](https://0x72.itch.io/pixeldudesmaker) or [Creature Mixer](https://kenney.itch.io/creature-mixer) - Sprite Generator / Web +* [Nasu](https://hundredrabbits.itch.io/nasu) - Spritesheet Editor / Windows, Mac, Linux, Android +* [Pixel Art Scaler](https://lospec.com/pixel-art-scaler/) - Scale Pixel Art without Quality Loss / Web *** ## ▷ GIF Tools -* 🌐 **[Awesome GIF](https://rentry.co/ccuz3)** - GIF Resources / [GitHub](https://github.com/davisonio/awesome-gif) -* 🌐 **[Online GIF Tools](https://onlinegiftools.com/)** - GIF Tools -* ⭐ **[Gifski](https://gif.ski/)** - GIF Encoder / [GitHub](https://github.com/ImageOptim/gifski) -* ⭐ **[EZGif](https://ezgif.com/)**, [GIFCurry](https://lettier.github.io/gifcurry/) / [GitHub](https://github.com/lettier/gifcurry), [Giflr](https://giflr.com/), [GIFMemes](https://gifmemes.io/), [GIFnText](https://www.gifntext.com/), [makeagif](https://makeagif.com/), [Gifsicle](http://www.lcdf.org/gifsicle/) or [Pixteller](https://pixteller.com/) - GIF Creators / Editors -* [Giphy](https://giphy.com/), [Tenor](https://tenor.com/), [Gifer](https://gifer.com/en), [Curlie GIFs](https://curlie.org/en/Computers/Graphics/Web/Free/Animated_GIFs), [GifCities](https://gifcities.org/), [Animations](https://bleuje.com/animationsite/) or [GIFBin](https://gifbin.com/) - View / Download GIFs -* [/r/animegifs](https://www.reddit.com/r/animegifs/) - View / Download Anime GIFs -* [EatMyArt](https://www.eatmy.art/), [DrawIsland](https://drawisland.com/) or [Sketch Machine](https://sketchmachine.net/) - Create GIFs from Drawings -* [Kinegram](https://kinegram.app/) - Kinegram GIF Creator -* [GifRun](https://gifrun.com/) - Make GIFs from Online Videos -* [ScreenToGif](https://www.screentogif.com/) or [Peek](https://github.com/phw/peek) - GIF Recorder -* [ugiffer](https://iobureau.com/ugiffer/) or [licecap](https://www.cockos.com/licecap/) - Create GIFs via Screencasts -* [TokkingHeads](https://app.tokkingheads.com/) - Face Movement GIFs -* [petpet](https://benisland.neocities.org/petpet/) - Headpatting GIF Maker +* ⭐ **[Gifski](https://gif.ski/)** - GIF Encoder / Windows, Mac, Linux / [GitHub](https://github.com/ImageOptim/gifski) +* ⭐ **[EZGif](https://ezgif.com/)** or [GIFnText](https://www.gifntext.com/) / Web +* [Gifsicle](http://www.lcdf.org/gifsicle/) / Windows, Mac, Linux / [GitHub](https://github.com/kohler/gifsicle) +* [Giphy](https://giphy.com/), [Tenor](https://tenor.com/), [Gifer](https://gifer.com/en), [GifCities](https://gifcities.org/), [Animations](https://bleuje.com/animationsite/) or [GIFBin](https://gifbin.com/) - View / Download GIFs +* [DrawIsland](https://drawisland.com/) or [Sketch Machine](https://sketchmachine.net/) - Create GIFs from Drawings +* [ScreenToGif](https://www.screentogif.com/) - GIF Recorder / Windows / [GitHub](https://github.com/NickeManarin/ScreenToGif) +* [licecap](https://www.cockos.com/licecap/) - Create GIFs via Screencasts / Windows, Mac, Linux / [GitHub](https://github.com/justinfrankel/licecap) +* [ugiffer](https://iobureau.com/ugiffer/) - Create GIFs via Screencasts / Windows *** @@ -251,8 +194,9 @@ * [ImgFlip](https://imgflip.com/memegenerator), [Meme Generator](https://www.memegenerator.top/), [Meme Town](https://meme.town/), [MemeBetter](https://memebetter.com/), [meme-generator](https://newfastuff.com/meme-generator/), [Classic Memes](https://classic.createa.meme/) or [Emacs Meme Generator](https://github.com/larsmagne/meme) - Meme Creators * [MemeCam](https://www.memecam.io/) - AI Meme Generator * [Memegine](https://memegine.com/) - Meme Search Engine -* [MemeAtlas](https://www.memeatlas.com/) or [Templates](https://drive.google.com/drive/folders/1Z4PSi2XmZ6x8I891xZSg5Cl4oNEOIRhh) - Meme Templates +* [MemeAtlas](https://www.memeatlas.com/) - Meme Templates * [GreenScreenMemes](https://greenscreenmemes.com/) - Green Screen Memes +* [TweetGen](https://www.tweetgen.com/) - Fake Tweet Generator * [iFake](https://ifaketextmessage.com/) - Fake Text Conversation Creator * [Wojak Studio](https://wojak-studio.com/) - Wojak Meme Creator * [Pokémon Battle Creator](http://www.pokemonbattlecreator.com/) - Pokémon Battle Scene Meme Generator @@ -264,6 +208,7 @@ * [BreakYourOwnNews](https://www.breakyourownnews.com/) - Breaking News Meme Generator * [AnimorphGenerator](https://animorphgenerator.com/) - Animorph Image Generator * [AwesomeCars](https://awesomecars.neocities.org/) - Drip Car Memes +* [GIFMemes](https://gifmemes.io/) - GIF Memes Creator *** @@ -271,42 +216,33 @@ *** -# ► Design Resources +# ► Design Resources / Ideas -* 🌐 **[Awesome Design](https://github.com/goabstract/Awesome-Design-Tools)**, [Design Resources](https://github.com/MohamedYoussouf/Design-Resources) or [pilssken](https://pilssken.neocities.org/gainz/) - Design Resources -* 🌐 **[archives.design](https://archives.design/)** - Graphic Design Books -* [calltoidea](https://www.calltoidea.com/), [onepagelove](https://onepagelove.com/), [awwwards](https://www.awwwards.com/websites), [thedesigninspiration](https://thedesigninspiration.com/), [SMPoster](https://www.smposter.com/), [AnotherGraphic](https://anothergraphic.org/), [theinspirationgrid](https://theinspirationgrid.com/) or [inspirationde](https://www.inspirationde.com/) - Graphic Design Examples / Inspiration -* [PSDcovers](https://www.psdcovers.com/), [mockups-design](https://mockups-design.com/), [zippypixels](https://zippypixels.com/), [Mockups](https://mockups.pixeltrue.com/), [medialoot](https://medialoot.com/free-mockups/) or [MockupsForFree](https://mockupsforfree.com/) - Product Mockups +* 🌐 **[Art Gainz](https://pilssken.neocities.org/gainz/)*** or [Evernote.Design](https://www.evernote.design/) - Design Resources +* ⭐ **[archives.design](https://archives.design/)** - Graphic Design Archive +* ⭐ **[awwwards](https://www.awwwards.com/websites)** - Website Design Ideas +* [One Page Love](https://onepagelove.com/) - Single Page Site Design Ideas +* [SMPoster](https://www.smposter.com/) - Poster Designs +* [AnotherGraphic](https://anothergraphic.org/) - Typography Designs * [The Boolean Game](https://boolean.method.ac/) - Learn Boolean Operations in Vector Editors *** ## ▷ Design Apps -* ⭐ **[Figma](https://www.figma.com/)** - Design Collab App -* ⭐ **[Canva](https://www.canva.com/)** - Design App / [Giveaways](https://rentry.co/FMHYBase64#canva) -* [lunacy](https://icons8.com/lunacy) - Design App -* [ArtBoard](https://artboard.studio/) - Design App -* [VistaCreate](https://create.vista.com/) - Design App -* [PosterMyWall](https://www.postermywall.com/) - Design App -* [Kittl](https://app.kittl.com/) - Design App -* [Kosmik](https://www.kosmik.app/) - Design Asset Manager -* [Venngage](https://venngage.com/) - Infographic Design -* [CoverView](https://coverview.vercel.app/) - Blog Banner Design -* [blush](https://blush.design/) or [IRA Design](https://iradesign.io/) - Illustration Design -* [SuperDesigner](https://superdesigner.co/) or [Pattern Ninja](https://patterninja.com/) - Background / Pattern Design -* [Pixelied](https://pixelied.com/) - Online Design Tool -* [Evernote.Design](https://www.evernote.design/) - Online Design Tools -* [Graphite](https://graphite.rs/) or [Recraft](https://www.recraft.ai/) - Vector Editors -* [MagicaVoxel](https://ephtracy.github.io/) or [Goxel](https://goxel.xyz/) - Voxel Art Editor / Interactive Path Tracing Renderer -* [Vectr](https://vectr.com/) or [VectorInk](https://vectorink.io/) - Vector Graphics Editor +* ⭐ **[Figma](https://www.figma.com/)** - Design Collab App / Web +* ⭐ **[Canva](https://www.canva.com/)** - Design App / Windows, Mac, Web / [Giveaways](https://rentry.co/FMHYBase64#canva) +* [lunacy](https://icons8.com/lunacy) - Design App / Windows, Mac, Linux +* [VistaCreate](https://create.vista.com/) - Design App / Web +* [blush](https://blush.design/) - Illustration Design / Web +* [Pattern Ninja](https://patterninja.com/) - Background / Pattern Design / Web +* [Pixelied](https://pixelied.com/) - Online Design Tool / Web *** ## ▷ Icons / Avatars * ↪️ **[Avatar / Logo Creators](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_avatar_.2F_logo_creators)** -* ↪️ **[Icon Drives](https://rentry.co/FMHYBase64#icon-drives)** - Icon Drives * ↪️ **[SVG Icons](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_svg_icons)** / **[SVG Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/dev-tools#wiki_.25B7_svg_tools)** * ⭐ **[Alphacoders Avatars](https://avatars.alphacoders.com/)** - PFPs / Avatars * [PFP Finder](https://pfpfinder.com) - PFPs / Avatars @@ -314,6 +250,7 @@ * [pfps.gg](https://pfps.gg/) - Profile Picture Index * [Innocenzi](https://avatar.innocenzi.dev/) - Round Avatar Creator * [RealFaviconGenerator](https://realfavicongenerator.net/) - Favicon Generator +* [Formia](https://www.formia.so/) - 2D to 3D Icon Converter *** @@ -338,10 +275,9 @@ * [ArmorLab](https://armorlab.org/), [Pixela](https://pixela.ai/), [Texture Library](https://www.texture-library.com/) or [TextureLab](https://www.texturelab.io/) - Texture Generators * [TextureLab](https://njbrown.itch.io/texturelab) - Procedural Texture Generator / [GitHub](https://github.com/njbrown/texturelab) / [Discord](https://discord.com/invite/975NdQPsSc) * [Material Maker](https://rodzilla.itch.io/material-maker) - Procedural Texture Creator -* [DoodDad](https://doodad.dev/pattern-generator), [Repeater](https://repeater.space/), [PatternPad](https://patternpad.com/), [patternico](https://patternico.com/), [Repeater](https://www.richardwestenra.com/repeater/), [more.graphics](https://more.graphics/), [Valentina](https://gitlab.com/smart-pattern/valentina), [Patternizer](https://www.patternizer.com/) or [Haikei](https://app.haikei.app/) - Pattern Generators +* [DoodDad](https://doodad.dev/pattern-generator), [Repeater](https://repeater.space/), [PatternPad](https://patternpad.com/), [patternico](https://patternico.com/), [Repeater](https://www.richardwestenra.com/repeater/), [more.graphics](https://more.graphics/), [Valentina](https://gitlab.com/smart-pattern/valentina) or [Haikei](https://app.haikei.app/) - Pattern Generators * [Noise & Gradient](https://www.noiseandgradient.com/), [PhotoGradient](https://photogradient.com/), [BGJar](https://bgjar.com/), [MeshGradient](https://meshgradient.in/) or [BGGenerator](https://bggenerator.com/) - Background / Gradient Generators * [Tabbied](https://tabbied.com/) or [Slopes](https://tinkersynth.com/slopes/) - Art Pattern Generators -* [Generative Landscapes](https://generativelandscapes.wordpress.com/) - Generative Landscape Blog * [Mixer](https://quixel.com/mixer) - 3D Texture Creation Software * [The Textures Resource](https://www.textures-resource.com/) - Game Textures * [Trianglify.io](https://trianglify.io/) - Low-Poly Texture Generator @@ -350,15 +286,12 @@ ## ▷ Free Assets -* ⭐ **[FreePreset](https://freepreset.net/)** -* [UnliPresets](https://www.unlipresets.com/) * [Gumroad](https://gumroad.com/) (Enter $0) * [psdkeys](https://psdkeys.com/) * [AvaxGFX](https://avxgfx.com/) * [Freeject](https://www.freeject.net/) * [Cg_peers](https://t.me/Cg_peers) * [PNGTree](https://pngtree.com/) -* [Dassets Design](https://t.me/dassets_design) * [TianUI](https://www.titanui.com/) * [Designer Candies](https://designercandies.net/category/freebies/) * [GraphixTree](https://graphixtree.com/) @@ -389,6 +322,7 @@ * [Solutioonn](https://t.me/solutioonn) * [ae-project](https://ae-project.su/) * [godownloads](https://www.godownloads.org/) +* [PanosFX](https://www.panosfx.com/) or [Fix the Photo](https://fixthephoto.com/free-photoshop-actions) - Photoshop Actions *** @@ -397,7 +331,6 @@ * 🌐 **[2ndBrain](https://rentry.co/2ndBrain)** or [designer](https://start.me/p/jj0JAp/designer) - Image Download Site Indexes * ↪️ **[Random Images](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_random_image_sites)** * ↪️ **[PNG Images / Clipart](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_png_images_.2F_clipart)** -* ↪️ **[AI Galleries](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/ai#wiki_.25B7_prompts_.2F_galleries)** * ↪️ **[Media Covers / Posters](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_covers_.2F_posters)** * ⭐ **[gallery-dl](https://github.com/mikf/gallery-dl)**, [RipMe](https://github.com/RipMeApp/ripme), [WFDownloader](https://www.wfdownloader.xyz/), [ImgDownloader](https://imgdownloader.com/), [SCrawler](https://github.com/AAndyProgram/SCrawler) / [Discord](https://discord.gg/uFNUXvFFmg) or [Image Extractor](https://extract.pics/) - Image Download Tools * [same.energy](https://same.energy/) - Visual Search Engine @@ -406,10 +339,9 @@ * [OpenMoji](https://openmoji.org/) or [JoyPixels](https://www.joypixels.com/) - Emojis * [PixelJoint](https://pixeljoint.com/), [Lospec](https://lospec.com/) or [rsrcs](https://rentry.co/rsrcs) - Download / Share Pixel Art * [PimpMyDrawing](https://pimpmydrawing.com/) - Human Silhouettes -* [FanCaps](https://fancaps.net/) or [Film Grab](https://film-grab.com/) - Media Screenshots +* [shot.cafe](https://shot.cafe/), [FanCaps](https://fancaps.net/) or [Film Grab](https://film-grab.com/) - Media Screenshots * [Footyrenders](https://www.footyrenders.com/) - Football Related Images * [PSDGraphics](https://www.psdgraphics.com/) - PSD Files -* [The NFT Bay](https://thenftbay.org/) or [Extremely Fungible Tokens](https://www.extremelyfungible.com/) - Free NFTs * [Artvee](https://artvee.com/) - Public Domain Artwork * [Behance](https://behance.net/) - Design Projects * [Placeit](https://placeit.net/) - Image Templates @@ -445,15 +377,15 @@ ## ▷ Stock Images -* **Note** - Royalty-free implies images free for personal or commercial use with some usage restrictions (see sites TOS). CC0 stands for Creative Commons Zero and means images are public domain. Sites not tagged have licensing that varies. +* **Note** - Royalty-free implies images free for personal or commercial use with some usage restrictions (see site's TOS). CC0 stands for Creative Commons Zero and means images are public domain. Sites not tagged have licensing that varies. *** * 🌐 **[Awesome Stock Resources](https://github.com/neutraltone/awesome-stock-resources#photography)** - Stock Photo Index -* ⭐ **[GetPaidStock](https://getpaidstock.com/)**, **[DownPic](https://downpic.cc)**, **[Downloader.la](https://downloader.la/)** or [istock](https://istock.7xm.xyz/) - Paid Stock Photo Downloaders +* ⭐ **[GetPaidStock](https://getpaidstock.com/)**, **[DownPic](https://downpic.cc)** or **[Downloader.la](https://downloader.la/)** - Paid Stock Photo Downloaders * ⭐ **[EveryPixel](https://www.everypixel.com/)**, [O-DAN](https://o-dan.net/en/) or [LibreStock](https://librestock.com/) - Stock Photo Search Engines -* [Adobe Stock](https://stock.adobe.com/free) - Stock Photos / Royalty-Free * [Unsplash](https://unsplash.com/) - Stock Photos / Royalty-Free +* [Adobe Stock](https://stock.adobe.com/free) - Stock Photos / Royalty-Free * [Pixnio](https://pixnio.com/) - Stock Photos / Royalty-Free * [Pikwizard](https://pikwizard.com/) - Stock Photos / Royalty-Free * [diverseui](https://diverseui.com/) - Human Face Photos / Royalty-Free @@ -483,13 +415,14 @@ * [publicdomainvectors](https://publicdomainvectors.org/), [Free Vector](https://www.freevector.com/), [VectorJunky](https://www.vectorjunky.com/), [freevectors](https://www.freevectors.net/) or [vector4free](https://www.vector4free.com/) - Misc Vectors * [VectorPortal](https://www.vectorportal.com/) - Vector Collections / Creative Common Attribution * [123freevectors](https://www.123freevectors.com/) - Background Vectors +* [mockups-design](https://mockups-design.com/), [zippypixels](https://zippypixels.com/), [Mockups](https://mockups.pixeltrue.com/) or [MockupsForFree](https://mockupsforfree.com/) - Product Mockups *** ## ▷ Art / Illustrations * ⭐ **[Kemono](https://kemono.su/posts?tag=)** - Patreon Content / **Some NSFW** / Use Adblock -* ⭐ **[DeviantArt](https://www.deviantart.com/)** - User-Made Art / Fanart / [Downloader](https://github.com/NC22/KellyC-Image-Downloader) +* ⭐ **[DeviantArt](https://www.deviantart.com/)** - User-Made Art / Fanart / [Frontend Instances](https://git.macaw.me/skunky/SkunkyArt/src/branch/master/INSTANCES.md) * ⭐ **[ArtStation](https://www.artstation.com/)** - User-Made Art / Fanart / [Downloader](https://github.com/findix/ArtStationDownloader) * ⭐ **[Pixiv](https://www.pixiv.net/)** - Japanese Fanart * ⭐ **Pixiv Tools** - [Downloader](https://github.com/Nandaka/PixivUtil2), [2](https://github.com/xuejianxianzun/PixivBatchDownloader) / [Rankings](https://pixiv.navirank.com/) / [Official Frontend](https://pixiv.perennialte.ch/) / [Frontend List](https://pixivfe-docs.pages.dev/instance-list/) / [Preview](https://github.com/NightLancer/PixivPreview), [2](https://github.com/ppixiv/ppixiv) / [Android](https://github.com/Notsfsssf/pixez-flutter/blob/master/.github/README_en.md) @@ -499,8 +432,9 @@ * [Artfol](https://www.artfol.co/) - User-Made Art / Fanart * [Cara](https://cara.app/) - User-Made Art / Fanart * [InkBlot](https://inkblot.art/) - User-Made Art / Fanart +* [Zerochan](https://www.zerochan.net/) - Japanese Fanart / [Discord](https://discord.gg/HkGgX6Qs3N) * [Safebooru](https://safebooru.org/) or [TBIB](https://tbib.org/) - Image Boorus -* [icons8](https://icons8.com/illustrations), [LostGeometry](https://lostgeometry.craftwork.design/), [3D Illustrations](https://3d.khagwal.com/) or [NS-illustration-pack](https://github.com/nsobolewart/NS-illustration-pack) - 3D Illustrations +* [icons8](https://icons8.com/illustrations), [LostGeometry](https://lostgeometry.craftwork.design/), [3D Illustrations](https://3d.khagwal.com/) s- 3D Illustrations * [StorySet](https://storyset.com/), [unDraw](https://undraw.co/illustrations), [blush](https://blush.design/) or [Humaaans](https://www.humaaans.com/) - Customizable Illustrations * [Pastel](https://usepastel.com/marker-illustrations) - Marker Illustrations * [Fresh Folk](https://fresh-folk.com/) or [lukaszadam](https://lukaszadam.com/illustrations) - Illustrations of People @@ -508,18 +442,18 @@ * [reshot](https://www.reshot.com/), [freeillustrations](https://freeillustrations.xyz/), [DrawKit](https://www.drawkit.com/), [NiceIllustrations](https://niceillustrations.com/free-illustrations/) or [manypixels](https://www.manypixels.co/gallery) - Misc Illustrations * [OldBookIllustrations](https://www.oldbookillustrations.com/) - Illustrations from Old Books * [Plant Illustrations](http://www.plantillustrations.org/) - Plant Illustrations -* [Yummybooru](https://github.com/Yochyo/Yummybooru) or [Animes Boxes](https://animebox.es/) - Booru Clients / [Telegram](https://t.me/Flexbooru/161) +* [Animes Boxes](https://animebox.es/) - Booru Clients / [Telegram](https://t.me/Flexbooru/161) * [Buhitter](https://buhitter.com/) - X.com Illustration Search * [imgbrd-grabber](https://www.bionus.org/imgbrd-grabber/) - Booru Image Downloader * [Artbreeder](https://artbreeder.com/) - Image Discovery / Combining +* [TEv2](http://te2.tewi.us/) - Share Your Drawings *** ## ▷ Download Extensions -* [Download all Images](https://webextension.org/listing/save-images.html) +* [Download all Images](https://webextension.org/listing/save-images.html) / [GitHub](https://github.com/belaviyo/save-images/) * [Cute Save Button](https://github.com/Dezaimasu/cute-button) -* [Save Images](https://github.com/belaviyo/save-images/) * [svgexport](https://svgexport.io/) * [SVG Gobbler](https://github.com/rossmoody/svg-gobbler) * [Image Picka](https://github.com/eight04/image-picka) @@ -535,7 +469,7 @@ * ⭐ **[Thingiverse](https://www.thingiverse.com/)** - Share / Download 3D Models * ⭐ **[Printables](https://www.printables.com/)** - Find Practical 3D Models Ready for Printing * [Clara.io](https://clara.io/library), [PolyHaven](https://polyhaven.com/), [CadNav](https://www.cadnav.com/), [Open3dModel](https://open3dmodel.com/) or [Archibase](https://archibase.co/) - Misc 3D Models -* [Sketchfab](https://sketchfab.com/), [cgtrader](https://www.cgtrader.com/free-3d-models), [blendswap](https://www.blendswap.com/) or [3dsky](https://3dsky.org/) - Misc 3D Models / Sign-Up Required +* [Sketchfab](https://sketchfab.com/), [3DArchive](https://t.me/ArchiveStl), [cgtrader](https://www.cgtrader.com/free-3d-models), [blendswap](https://www.blendswap.com/) or [3dsky](https://3dsky.org/) - Misc 3D Models / Sign-Up Required * [Cults](https://cults3d.com/), [Thangs](https://thangs.com/), [MakerWorld](https://makerworld.com/) or [Pinshape](https://pinshape.com/) - Printable 3D Models / Sign-Up Required * [3D Warehouse](https://3dwarehouse.sketchup.com/) - 3D Models Compatible with SketchUp / Sign-Up Required * [Pack 3D Models](https://p3dm.ru/) - Vehicle / Character 3D Models @@ -552,7 +486,6 @@ * [BlenderKit](https://www.blenderkit.com/) - 3D Model Library Integrated into Blender * [CosplayStaticFigure](https://t.me/CosplayStaticFigure) - Cosplay / Figurine 3D Models * [3DBrute](https://3dbrute.com/), [3DZip](https://3dzip.org/) or [DesignConnected](https://www.designconnected.com/) - 3D Furniture Models -* [Halloween.WannaThis](https://halloween.wannathis.one/) - 3D Halloween Models * [Vertex](https://vertex.im/) - 3D Icons * [Ameede](https://www.ameede.com/) - CNC / Laser Design Vectors * [Skybox](https://skybox.blockadelabs.com/) - AI Generated 3D Environments @@ -564,27 +497,26 @@ * ⭐ **[Blender](https://www.blender.org/)** - FOSS 3D Modeling App * ⭐ **Blender Tools** - [Resources](https://t.me/BlenderUniverse/3), [2](https://awesome-blender.netlify.app) / [Plugins](https://t.me/blenderplugs) / [Tutorials](https://www.3dbestie.com/) / [Textures](https://github.com/carson-katri/dream-textures) / [Renderer](https://github.com/prman-pixar/RenderManForBlender) / [3D Nodes](https://t.me/geometrynodes) / [AI Render](https://github.com/benrugg/AI-Render) -* ⭐ **[Shap-e](https://github.com/openai/shap-e)** - Generate 3D Objects based on Text / Image Prompts +* ⭐ **[Shap-e](https://github.com/openai/shap-e)** - Generate 3D Objects Based on Text / Image Prompts * [Goo Engine](https://www.dillongoostudios.com/gooengine/) - 3D Anime Blender Mod * [Meshy.ai](https://www.meshy.ai/) / [Discord](https://discord.com/invite/KgD5yVM9Y4) or [TRELLIS](https://trellis3d.github.io/) / [GitHub](https://github.com/microsoft/TRELLIS) / [HuggingFace](https://huggingface.co/spaces/JeffreyXiang/TRELLIS) - AI 3D Model Generators -* [Wings 3D](https://www.wings3d.com/) - Cross-platform 3D Modeling App -* [JustSketchMe](https://justsketch.me/) - Cross-platform 3D Pose Reference Tool +* [Wings 3D](https://www.wings3d.com/) - Cross-Platform 3D Modeling App +* [JustSketchMe](https://justsketch.me/) - Cross-Platform 3D Pose Reference Tool * [MakeHuman](http://www.makehumancommunity.org/) - 3D Humanoid Modeler * [PoseMy.art](https://app.posemy.art/), [SetPose](https://setpose.com/), [DesignDoll](https://terawell.net/en/index.php), [Magic Poser](https://magicposer.com/), [Quickposes](https://quickposes.com/en) or [JustSketchMe](https://app.justsketch.me/) - Posing Tools * [Vectary](https://www.vectary.com/), [Womp](https://beta.womp.com/), [Bloom3D](https://bloom3d.com/) or [Zdog](https://zzz.dog/) - Online 3D Modeling Tools * [FaceMaker](http://facemaker.uvrg.org/) - 3D Face / Avatar Generator * [Recursivity](https://gregtatum.com/poems/recursive/5/) - 3D Tree Creator -* [CSS 3D Clouds](https://spite.github.io/CSS3DClouds/) - 3D Cloud Creator * [ModelViewer](https://modelviewer.dev/), [3DViewer](https://3dviewer.net/) or [F3D](https://f3d.app/) - 3D Model Viewers * [Armorpaint](https://armorpaint.org/) - 3D Painting * [SculptGL](https://stephaneginier.com/sculptgl/) - 3D Sculpting +* [MagicaVoxel](https://ephtracy.github.io/) or [Goxel](https://goxel.xyz/) - Voxel Art Editor / Interactive Path Tracing Renderer *** ## ▷ 3D Modeling Tools * [Embossify](https://www.embossify.com/), [Tripo3D](https://www.tripo3d.ai/app/home) or [TripoSG](https://huggingface.co/spaces/VAST-AI/TripoSG) - Image to 3D Model Converters -* [Anaglyph Maker](https://www.stereoeye.jp/software/index_e.html) - Make 3D Images * [3D Transformer](https://www.3dtransformer.com/) - Rotate 3D Images * [3DConvert](https://3d-convert.com/en/) - Online 3D Image Converter * [PaintUp](http://technohippy.github.io/teddyjs/) - Make 2D Art into 3D @@ -603,7 +535,8 @@ * [Onshape](https://www.onshape.com/en/products/free) - CAD Modeling with Real-time Collaboration * [Tinkercad](https://www.tinkercad.com/) - Educational CAD Modeling * [FreeCAD](https://www.freecad.org/) / [GitHub](https://github.com/FreeCAD/FreeCAD) - Parametric CAD Modeling -* [BRL-CAD](https://brlcad.org/) or [OpenSCAD](https://openscad.org/) - Cross-platform CSG CAD Modeling +* [Chili3d](https://chili3d.com/) - Web-Based CAD App / [GitHub](https://github.com/xiangechen/chili3d) +* [BRL-CAD](https://brlcad.org/) or [OpenSCAD](https://openscad.org/) - Cross-Platform CSG CAD Modeling * [LibreCAD](https://librecad.org/) or [QCAD](https://www.qcad.org/en/) - 2D CAD Modeling * [Mayo](https://github.com/fougue/mayo) - 3D CAD Viewer and Converter * [CadHub](https://cadhub.xyz/) - Community Hub for CAD Projects @@ -626,11 +559,10 @@ * [/r/Photography Guide](https://www.reddit.com/r/photography/wiki/introduction) or [Cambridge In Colour](https://www.cambridgeincolour.com/) - Photography / Camera Guides * [PhotoEphemeris](https://photoephemeris.com/) - Photography Sunlight Calculator * [PixelPeeper](https://pixelpeeper.com/) - Extract Lightroom Edits / Settings -* [MagicLantern](https://www.magiclantern.fm/) - Custom Canon EOS Firmware / [Unsupported](https://magiclantern.fandom.com/wiki/Other_dslr) / [X](https://x.com/autoexec_bin) / [Subreddit](https://www.reddit.com/r/MagicLantern/) / [Discord](https://discord.gg/uaY8akC) +* [MagicLantern](https://www.magiclantern.fm/) - Custom Canon EOS Firmware / [Unsupported](https://magiclantern.fandom.com/wiki/Other_dslr) / [Subreddit](https://www.reddit.com/r/MagicLantern/) / [Discord](https://discord.gg/uaY8akC) * [CHDK](https://chdk.fandom.com/wiki/CHDK) - Custom Canon PowerShot Firmware * [fSpy](https://fspy.io/) - Still Image Camera Matching * [DPReview](https://www.dpreview.com/reviews/image-comparison/fullscreen) - Camera Image Quality Comparison -* [GlanceBack](https://glanceback.info/) - Daily Webcam Photo Journal * [Image Color Summarizer](https://mk.bcgsc.ca/color-summarizer/) - Image Color Summarizer * [Image Colors](https://franciscouzo.github.io/image_colors/) - Image Color Scatter Plot * [Image Pixel Sorter](http://birdhat.org/misc/sort-pixels/) - Sort Pixels of Images @@ -641,9 +573,9 @@ * [Watermark Remover](https://www.watermarkremover.io/), [Unwatermark](https://unwatermark.ai/) or [DeWatermark](https://dewatermark.ai/) - Watermark Removal * [Glaze](https://glaze.cs.uchicago.edu/index.html) or [Nightshade](https://nightshade.cs.uchicago.edu/downloads.html) - Protect Digital Art from AI Copies * [APNG Maker](https://rukario.github.io/Schande/Uninteresting%20stuff/APNG%20Maker.html) - Create / Optimize APNG Images -* [JPEGMedic ARWE](https://www.jpegmedic.com/tools/jpegmedic-arwe/) - Recover Ransomware-Encrypted Images +* [JPEGMedic ARWE](https://www.jpegmedic.com/tools/jpegmedic-arwe/) - Ransomware-Encrypted Image Recovery Tool * [CamScanner](https://apps.apple.com/us/app/camscanner-pdf-scanner-app/id388627783) or [Microsoft Lens](https://apps.apple.com/us/app/microsoft-lens-pdf-scanner/id975925059) - Scan & Digitize Documents / iOS -* [FaceSwapApp](https://face-swap.app/) / [Discord](https://discord.gg/D8wYxUvwTD), [Swapface](https://swapface.org/) / [Discord](https://discord.com/invite/5yPew6Cy6a), [faceswap](https://faceswap.dev/), [AIFaceSwap](https://aifaceswap.io/), [Face Swapper](https://faceswapper.ai/), [face-swap](https://face-swap.io/), [FaceSwapVideo](https://faceswapvideo.io/), [facy.ai](https://facy.ai/swap-face-ai/photo), [Swapper](https://icons8.com/swapper) or [FaceFusion](https://github.com/facefusion/facefusion) - Face Swapping +* [Swapface](https://swapface.org/) / [Discord](https://discord.com/invite/5yPew6Cy6a), [AIFaceSwap](https://aifaceswap.io/), [Face Swapper](https://faceswapper.ai/), [face-swap](https://face-swap.io/), [FaceSwapVideo](https://faceswapvideo.io/), [facy.ai](https://facy.ai/swap-face-ai/photo), [Swapper](https://icons8.com/swapper) or [FaceFusion](https://github.com/facefusion/facefusion) - Face Swapping * [WiseTagger](https://github.com/0xb8/WiseTagger) - Image Tagger * [BooruDatasetTagManager](https://github.com/starik222/BooruDatasetTagManager) - Booru Image Tagger * [Cluttr](https://gitlab.com/bearjaws/cluttr), [Exif Sorter](https://www.amok.am/en/freeware/amok_exif_sorter/) or [TagStudio](https://github.com/TagStudioDev/TagStudio) - Image File Organizers / Managers @@ -651,7 +583,6 @@ * [Camera Wiki](http://camera-wiki.org/) - Camera Model Wiki * [Canon Camera Museum](https://global.canon/en/c-museum/camera-series.html) - History of Canon Cameras * [Something to Draw](https://something-to-draw.com/) - Find Things to Draw -* [Make Photo Gallery](https://makephotogallery.net/) - Collage Creator *** @@ -667,7 +598,7 @@ * [Bulk Image Compress](https://imagecompressr.com/) - Batch Compressor * [minipic](https://minipic.app/) - Batch Compressor / Converter * [Compress JPEG](https://compressjpeg.com/) - Batch Compressor / Unlimited Upload -* [TinyPNG](https://tinypng.com/) or [TinyJPG](https://tinyjpg.com/) - Batch Compressor / 20 MB Upload / [GitHub](https://github.com/tinify) +* [TinyPNG](https://tinypng.com/) or [TinyJPG](https://tinyjpg.com/) - Batch Compressor / 20MB Upload / [GitHub](https://github.com/tinify) * [ImageSmaller](https://www.imagesmaller.com/) - Compressor / 50MB Upload * [CompressOrDie](https://compress-or-die.com/) - Multitool * [PNGQuant](https://pngquant.org/) - PNG Compression Software / [GitHub](https://github.com/kornelski/pngquant) @@ -676,7 +607,7 @@ ## ▷ Image Converters -* ⭐ **[VERT](https://vert.sh/)** / [Discord](https://discord.gg/8XXZ7TFFrK) / [GitHub](https://github.com/VERT-sh/VERT) +* ↪️ **[File Converter](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/file-tools#wiki_.25B7_file_converters)** - Multi-Format Converters * ⭐ **[minipic](https://minipic.app/)** * [Knvrt](https://www.knvrt.one/) * [Convertmyimage](https://convert-my-image.com/) @@ -706,7 +637,7 @@ * ↪️ **[AI Chatbots](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/ai#wiki_.25B7_online_chatbots)** - Most Chatbots have Built-in Image to Text * ⭐ **[Capture2Text](https://capture2text.sourceforge.net/)**, [tesseract](https://github.com/tesseract-ocr/tesseract) or [gImageReader](https://github.com/manisandro/gImageReader) - OCR Desktop Apps * ⭐ **[Text Grab](https://github.com/TheJoeFin/Text-Grab)** - Minimal OCR Windows Tool -* [TextShot](https://github.com/ianzhao05/textshot) - Cross Platform OCR +* [TextShot](https://github.com/ianzhao05/textshot) - Cross-Platform OCR * [ImageScanOCR](https://github.com/ttop32/ImageScanOCR) - Windows OCR Tool * [Handwriting-OCR](https://github.com/Breta01/handwriting-ocr) - Handwriting OCR * [Project Naptha](https://projectnaptha.com/) - Automatic OCR while Browsing Images @@ -730,6 +661,7 @@ * ⭐ **[XnView MP](https://www.xnview.com/en/xnviewmp/)** * ⭐ **[Digikam](https://www.digikam.org/)** * ⭐ **[ImageGlass](https://github.com/d2phap/ImageGlass)** +* [Imagine](https://www.nyam.pe.kr/dev/imagine/) * [nomacs](https://nomacs.org/) / [GitHub](https://github.com/nomacs/nomacs) * [qimgv](https://github.com/easymodo/qimgv) * [oculante](https://github.com/woelper/oculante) @@ -771,7 +703,7 @@ * [Photofield](https://github.com/SmilyOrg/photofield) * [Google Photos Toolkit](https://github.com/xob0t/Google-Photos-Toolkit) - Manage / Delete Google Photos * [Google Takeout](https://takeout.google.com/) - Export from Google Photos / [Script](https://github.com/TheLastGimbus/GooglePhotosTakeoutHelper) -* [GPhotos Guide](https://github.com/g8row/gphotos-guide) - Unlimited Google Photos Storage Guide / Windows +* [GPhotos Guide](https://github.com/g8row/gphotos-guide) - Guide for Unlimited Google Photos Storage on Windows * [Google Photos EXIF](https://github.com/mattwilson1024/google-photos-exif) - Populate Missing EXIF metadata in Google Photos *** @@ -805,14 +737,12 @@ * [pic.maxiol](https://pic.maxiol.com/) - 100MB / Forever * [GIFYU](https://gifyu.com/) - 50MB (100MB with Account) / Forever * [IMGDrop](https://imgdrop.io/) - 50MB / Forever -* [WebHotPix](https://webhotpix.com/) - 50MB / Forever * [ThumbSnap](https://thumbsnap.com/) - 48MB / Forever * [Kepkuldes](https://kepkuldes.com/) - 40MB / Forever * [FreeIMGHost](https://freeimghost.net/) - 20MB / Forever * [Pikky](https://pikky.net/) - 20MB / Forever * [imagebam](https://www.imagebam.com/) - 20MB / Forever * [imagevenue](https://www.imagevenue.com/) - 20MB / Forever -* [BayIMG](https://bayimg.com/) - 100MB / Forever * [Lutim](https://lutim.lagout.org/) - 20MB / Forever * [FastPic](https://fastpic.org/) - 25MB / Forever @@ -820,7 +750,7 @@ ## ▷ Screenshot Tools -* ⭐ **[ShareX](https://getsharex.com/)** / [Image Hosts](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/img-tools/#wiki_.25B7_image_hosts) / [File Manager](https://xbackbone.app/) +* ⭐ **[ShareX](https://getsharex.com/)** / [Image Hosts](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/img-tools/#wiki_.25B7_image_hosts) / [File Manager](https://xbackbone.app/) - Screenshot & Screen Recorder Tool * ⭐ **[Flameshot](https://flameshot.org/)** / [GitHub](https://github.com/flameshot-org/flameshot) * ⭐ **[Zipline](https://zipline.diced.sh/)** / [GitHub](https://github.com/diced/zipline) or [yaass](https://github.com/tycrek/yaass) - Self-Hosted ShareX Server * [Greenshot](https://getgreenshot.org/) @@ -828,6 +758,7 @@ * [Nimbus Capture](https://nimbusweb.me/screenshot.php) * [PixpinApp](https://pixpin.cn/) * [ScreenshotX](https://screenshotx.com/) +* [Pilko](https://pilko.studio/) - Video Frame Capture Tool * [FRAMED](https://framedsc.com/index.htm) - In-Game Screenshotting Tips * [Pika](https://pika.style/) / [GitHub](https://github.com/rishimohan/pika), [FabPic](https://www.fabpic.app/), [OnPaste](https://onpaste.com/), [Screenstab](https://screenstab.com/editor/) or [Limus](https://limus.netlify.app/) - Screenshot Editors / Mockups * [Screenshot Guru](https://screenshot.guru/), [Site-Shot](https://www.site-shot.com/) or [Pikwy](https://pikwy.com/) - Take Screenshots of Websites @@ -839,7 +770,7 @@ ## ▷ Palette Generators -* ⭐ **[Color Designer](https://colordesigner.io/gradient-generator)**, [TheGoodColors](https://thegoodcolors.com/), [Super Color Palette](https://supercolorpalette.com/) or [Coolors](https://coolors.co/) - Color Palette Generators +* ⭐ **[Color Designer](https://colordesigner.io/tools)**, [TheGoodColors](https://thegoodcolors.com/), [Super Color Palette](https://supercolorpalette.com/) or [Coolors](https://coolors.co/) - Color Palette Generators * [Clariss](https://www.clariss.xyz/), [Color Palette Generator](https://www.degraeve.com/color-palette), [Palitra](https://palitra.app/) or [Color Picker](https://imagecolorpicker.com/) - Generate Color Palettes from Images * [Color Space](https://mycolor.space/) - Generate Gradient Color Palettes * [Colors Wall](https://colorswall.com/) or [ColorKit](https://colorkit.co/color-palette-generator/) - Generate Random Color Palettes @@ -883,13 +814,12 @@ * [Redacted](https://redacted.app/) - Blur, Pixelate or Blackout parts of Images * [Image Scrubber](https://everestpipkin.github.io/image-scrubber/) - Blur Images / Scrub Metadata * [Schizoware](https://sourceforge.net/projects/schizoware/) - Image Name / Hash Randomizer -* [ViewEXIF](https://www.imgonline.com.ua/eng/exif-info.php), [Jimpl](https://jimpl.com/), [ExifData](https://exifdata.com/), [OnlineEXIFViewer](https://onlineexifviewer.com/), [ExifLooter](https://github.com/aydinnyunus/exifLooter), [CameraSummary](https://camerasummary.com/) or [JPEGsnoop](https://www.impulseadventure.com/photo/jpeg-snoop.html) - EXIF / Metadata Viewers +* [ViewEXIF](https://www.imgonline.com.ua/eng/exif-info.php), [Jimpl](https://jimpl.com/), [ExifData](https://exifdata.com/), [OnlineEXIFViewer](https://onlineexifviewer.com/), [ExifLooter](https://github.com/aydinnyunus/exifLooter) or [CameraSummary](https://camerasummary.com/) - EXIF / Metadata Viewers * [exiftool](https://exiftool.org/), [2](https://github.com/FrankBijnen/ExifToolGui/), [ExifCleaner](https://exifcleaner.com/), [EXIFRemove](https://www.exifremove.com/), [scrambled-exif](https://gitlab.com/juanitobananas/scrambled-exif), [Metadata-Remover](https://github.com/Anish-M-code/Metadata-Remover), [exifpurge](https://exifpurge.com/), [adarsus](https://www.adarsus.com/en/remove-metadata-online-document-image-video/) or [VerExif](https://www.verexif.com/en/) - Remove Meta / EXIF Data * [Pic2Map](https://www.pic2map.com/) - Image EXIF data viewer with GPS support * [TheExifer](https://www.thexifer.net/), [Photini](https://github.com/jim-easterbrook/Photini) or [ColorPilot](https://www.colorpilot.com/exif.html) - Image EXIF Data Editors * [Base64 Image](https://www.base64-image.de/) - Encode / Decode Images -* [Faceagle](https://faceagle.com/) - Face Recognition Search Engines *** -## ▷ [Android Camera](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/android#wiki_.25B7_camera_tools) \ No newline at end of file +## ▷ [Android Camera](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/android/#wiki_.25B7_camera_tools) diff --git a/docs/index.md b/docs/index.md index 4ed2e3c57..29ab6443f 100644 --- a/docs/index.md +++ b/docs/index.md @@ -7,8 +7,8 @@ hero: name: freemediaheckyeah tagline: The largest collection of free stuff on the internet! announcement: - title: May 2025 Updates ☀️ - link: /posts/may-2025 + title: June 2025 Updates 🌈 + link: /posts/june-2025 image: src: /test.png alt: FMHY Icon diff --git a/docs/internet-tools.md b/docs/internet-tools.md index c18092abc..5c42e8fae 100644 --- a/docs/internet-tools.md +++ b/docs/internet-tools.md @@ -9,7 +9,7 @@ * ↪️ **[Web Privacy Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/adblock-vpn-privacy#wiki_.25BA_web_privacy)** * [WebCatalog](https://webcatalog.io/) or [Pake](https://github.com/tw93/Pake) - Turn Webpages into Desktop Apps * [deploy-your-own-saas](https://github.com/Atarity/deploy-your-own-saas) - Self-Hosted Cloud Services -* [Namechk](https://namechk.com/), [NameCheckr](https://www.namecheckr.com/) or [IUS](https://instantusername.com/) - Check Username Availability +* [Namechk](https://namechk.com/) or [IUS](https://instantusername.com/) - Check Username Availability * [UsernameGenerator](https://usernamegenerator.com/) - Username Generator * [byp4xx](https://github.com/lobuhi/byp4xx) - Bypass "403 Forbidden" Errors @@ -29,11 +29,10 @@ * [Netbalancer](https://netbalancer.com/) - Internet Traffic Control * [Arcai](https://arcai.com/) - WiFi Speed Control * [NeverSSL](http://neverssl.com/) - Fix Public Wi-Fi Login Pages -* [WiFi-Password](https://github.com/sdushantha/wifi-password) - Fetch WiFi Password / Generate QR Code * [SwitchHosts](https://github.com/oldj/SwitchHosts) - Windows Hosts File Editor * [MAC Address](https://macaddress.io/) - MAC Address Lookup * [masscan](https://github.com/robertdavidgraham/masscan) - Port Scanner -* [PortChecker](https://portchecker.co/), [ping.pe](https://ping.pe/), [PortCheckers](https://www.portcheckers.com/), [RustCat](https://github.com/robiot/rustcat) or [CanYouSeeMe](https://canyouseeme.org/) - Port Checkers +* [PortChecker](https://portchecker.co/), [CanYouSeeMe](https://canyouseeme.org/), [ping.pe](https://ping.pe/), [PortCheckers](https://www.portcheckers.com/) or [RustCat](https://github.com/robiot/rustcat) - Port Checkers * [Bufferbloat Test](https://www.waveform.com/tools/bufferbloat) - Test Bufferbloat * [PacketSender](https://packetsender.com/) - Packet Sender @@ -60,10 +59,9 @@ * ⭐ **[Archive.today](https://archive.is/)** - Archived Articles * ⭐ **[Bypass Paywalls Clean](https://gitflic.ru/project/magnolia1234/bpc_uploads)** - Browser Extensions / [X](https://x.com/Magnolia1234B) * ⭐ **[Freedium](https://freedium.cfd/)**, [ReadMedium](https://readmedium.com/) or [Medium Parser](https://github.com/Xatta-Trone/medium-parser-extension) - Bypass Medium Paywalls -* ⭐ **[wallabag](https://wallabag.org/)** / [Discord Bot](https://github.com/FahadBinHussain/wallabot) or [Ladder](https://github.com/everywall/ladder) - Self-Hosted +* ⭐ **[wallabag](https://wallabag.org/)** or [Ladder](https://github.com/everywall/ladder) - Self-Hosted * [PaywallBuster](https://paywallbuster.com/) - Paywall Bypass Tools * [ByeByePaywall](https://byebyepaywall.com/en/) - Paywall Bypass Tools -* [Smry.ai](https://www.smry.ai/) - Article Paywall Bypass * [Bypass paywalls for scientific documents](https://greasyfork.org/en/scripts/35521) - Bypass Scientific Document Paywalls * [unpaywall](https://unpaywall.org/) - Bypass Scholarly Article Paywalls * [Open Access Button](https://openaccessbutton.org/) - Bypass Research Article Paywalls @@ -75,7 +73,6 @@ * ⭐ **[Linktree](https://linktr.ee/)** - Unlimited / Custom URLs * ⭐ **[Linkstack](https://linkstack.org)** or [LittleLink](https://littlelink.io/) - Unlimited / Self-Hosted * ⭐ **[Bio Link](https://bio.link/)** - Unlimited / Custom URLs -* [Bento](https://bento.me/) - Unlimited / Custom URLs * [LinkBun](https://linkbun.io) - Unlimited / Custom URLs * [Lynk](https://lynk.id/) - Unlimited / Custom URLs * [ContactInBio](https://www.contactinbio.com/) - Unlimited / Custom URLs @@ -86,12 +83,9 @@ * [Beacons](https://beacons.ai/) - Unlimited * [Carrd](https://carrd.co/) - Unlimited * [Ayo](https://ayo.so/) - Unlimited -* [Campsite.bio](https://campsite.bio/) - Unlimited * [Taplink](https://taplink.at/) - Unlimited * [milkshake](https://milkshake.app/) - Unlimited -* [pronouns.cc](https://pronouns.cc/) - Share Preferred Pronouns -* [LinkSpace.Bio](https://linkspace.bio/) - 250 Limit / Custom URLs -* [seemless](https://www.linkinbio.website/) - Link in Bio for TikTok & Instagram +* [seemless](https://www.linkinbio.website/) - Unlimited / Instagram & TikTok Embeds * [AnyImage](https://anyimage.io/) - Create Social Card Links *** @@ -108,11 +102,11 @@ ## ▷ Chat Tools -* 🌐 **[Digital Communications Protocols](https://docs.google.com/spreadsheets/u/0/d/1-UlA4-tslROBDS9IqHalWVztqZo7uxlCeKPQ-8uoFOU)** or [Eyelenburg Comparisons](https://eylenburg.github.io/im_comparison.htm) - Chat Service / Protocol Comparisons +* ↪️ **[Encrypted Messengers](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/adblock-vpn-privacy#wiki_.25B7_encrypted_messengers)** * ↪️ **[IRC Clients / Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/download#wiki_.25B7_irc_tools)** * ⭐ **[Mumble](https://www.mumble.info/)**, [Jam](https://jam.systems/), [TeaSpeak](https://teaspeak.de/gb/) or [TeamSpeak](https://www.teamspeak.com/) / [Warning](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#teamspeak-warning) - Voice Chat -* ⭐ **[Hack.chat](https://hack.chat/)**, [Shick](https://shick.me/), [LeapChat](https://www.leapchat.org/), [LittlePlanets](https://littleplanets.us/), [Convene](https://letsconvene.im/), [Stinto](https://stinto.chat/en) or [tik.io](https://tlk.io/) - Simple Account Free Chats -* ⭐ **[Gajim](https://gajim.org/)**, [Profanity](https://profanity-im.github.io/) / [GitHub](https://github.com/profanity-im/profanity) or [xabber](https://www.xabber.com/) - XMPP Clients / [Servers](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_encrypted_xmpp_servers) +* ⭐ **[Hack.chat](https://hack.chat/)**, [Shick](https://shick.me/), [LeapChat](https://www.leapchat.org/), [LittlePlanets](https://littleplanets.us/), [Convene](https://letsconvene.im/), [otr.to](https://otr.to/) / [GitHub](https://github.com/jermainee/otr.to), [Stinto](https://stinto.chat/en), [Chitchatter](https://chitchatter.im/) / [GitHub](https://github.com/jeremyckahn/chitchatter) or [tik.io](https://tlk.io/) - Minimal / No Account Required Chats +* ⭐ **[Gajim](https://gajim.org/)**, [CoyIM](https://coy.im/), [Profanity](https://profanity-im.github.io/) / [GitHub](https://github.com/profanity-im/profanity) or [xabber](https://www.xabber.com/) - XMPP Clients / [Servers](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_encrypted_xmpp_servers) * [Pidgin](https://www.pidgin.im/) / [GitHub](https://keep.imfreedom.org/pidgin/pidgin/) or [Ferdium](https://ferdium.org/) / [GitHub](https://github.com/ferdium/ferdium-app) - Combine Web Apps / Chat Services * [MatterBridge](https://github.com/42wim/matterbridge) - Bridge for Multiple Chat Apps * [Miranda NG](https://www.miranda-ng.org/en/), [Escargot](https://escargot.chat/) or [WeeChat](https://weechat.org/) - Chat Apps @@ -126,10 +120,10 @@ * [MiroTalk](https://p2p.mirotalk.com/) / [2](https://mirotalk.up.railway.app/) or [MiroTalk SFU](https://sfu.mirotalk.com/) - Video Chat / [GitHub](https://github.com/miroslavpejic85/mirotalk) * [Videolink2me](https://videolink2me.com/) - Video Chat * [Hello](https://hello.vasanthv.me/) - Video Chat / [GitHub](https://github.com/vasanthv/hello) -* [Noysi Meet](https://meet.noysi.com/) - Video Chat * [Briefing](https://brie.fi/ng) - Video Chat * [Talky](https://talky.io/) - Video Chat * [GoTeam](https://goteam.video/) - Video Chat +* [Linkello](https://call.linkello.com/) - Video Chat * [Chat Analytics](https://github.com/mlomb/chat-analytics) - Generate Chat Analytics *** @@ -147,27 +141,21 @@ ## ▷ RSS Readers +* ↪️ **[Android RSS Readers](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/android#wiki_.25B7_android_internet)** * 🌐 **[RSS Feed Reader Index](https://openrss.org/rss-feed-readers)** -* ⭐ **[Feedly](https://feedly.com/)** - RSS Reader / [Notifier](https://olsh.me/Feedly-Notifier/) -* ⭐ **[RSS Guard](https://github.com/martinrotter/rssguard)** - RSS Reader / [Scraper](https://github.com/Owyn/CSS2RSS) / [Discord](https://discord.com/invite/7xbVMPPNqH) -* ⭐ **[Inoreader](https://www.inoreader.com/)** - RSS Reader -* ⭐ **[Feedbro](https://nodetics.com/feedbro/)**, [Sage-Like](https://addons.mozilla.org/en-US/firefox/addon/sage-like/), [Brief](https://github.com/brief-rss/brief), [Smart-RSS](https://github.com/SmartRSS/Smart-RSS) or [Fraidycat](https://fraidyc.at/) - Browser Extensions -* [NewsBlur](https://www.newsblur.com/) - RSS Reader / Push Notifications / [GitHub](https://github.com/samuelclay/NewsBlur) -* [JungleReader](https://www.zajungle.com/) - RSS Reader -* [Fluent Reader](https://hyliu.me/fluent-reader/) - RSS Reader -* [NewsFlash](https://gitlab.com/news-flash/news_flash_gtk) - RSS Reader -* [Miniflux](https://miniflux.app/) - RSS Reader -* [Photon](https://git.sr.ht/~ghost08/photon) - RSS Reader -* [Feed Flow](https://www.feedflow.dev/) - RSS Reader / [GitHub](https://github.com/prof18/feed-flow) -* [selfoss](https://selfoss.aditu.de/) - RSS Reader -* [gorss](https://github.com/Lallassu/gorss) - RSS Reader -* [NewsPipe](https://github.com/cedricbonhomme/newspipe) - RSS Reader -* [Osmosfeed](https://osmoscraft.org) - RSS Reader / [GitHub](https://github.com/osmoscraft/osmosfeed) -* [rss](https://codeberg.org/danb/rss) - RSS Reader -* [yarr](https://github.com/nkanaev/yarr) - RSS Reader -* [TheFeedReaderBot](https://thefeedreaderbot.com/) or [NewsBoat](https://newsboat.org/) - Console RSS Readers -* [WebFeed](https://taoshu.in/webfeed/turn-browser-into-feed-reader.html) or [Tiny Tiny RSS](https://tt-rss.org/) - Web RSS Readers -* [Glance](https://github.com/glanceapp/glance), [FreshRSS](https://freshrss.org/), [Fusion](https://github.com/0x2E/fusion) or [CommaFeed](https://www.commafeed.com/#/welcome) - Self-Hosted RSS Readers +* ⭐ **[Feedly](https://feedly.com/)** - RSS Reader / Multi-Platform / [Notifier](https://olsh.me/Feedly-Notifier/) +* ⭐ **[RSS Guard](https://github.com/martinrotter/rssguard)** - RSS Reader / Multi-Platform / [Scraper](https://github.com/Owyn/CSS2RSS) / [Discord](https://discord.com/invite/7xbVMPPNqH) +* ⭐ **[Inoreader](https://www.inoreader.com/)** - RSS Reader / Multi-Platform +* ⭐ **[Feedbro](https://nodetics.com/feedbro/)**, [Sage-Like](https://addons.mozilla.org/en-US/firefox/addon/sage-like/), [Brief](https://github.com/brief-rss/brief) or [Fraidycat](https://fraidyc.at/) - Browser Extensions +* [Fluent Reader](https://hyliu.me/fluent-reader/) - RSS Reader / Multi-Platform +* [Feed Flow](https://www.feedflow.dev/) - RSS Reader / Multi-Platform / [GitHub](https://github.com/prof18/feed-flow) +* [yarr](https://github.com/nkanaev/yarr) - RSS Reader / Multi-Platform +* [NewsBlur](https://www.newsblur.com/) - RSS Reader / Web-Based / [GitHub](https://github.com/samuelclay/NewsBlur) +* [WebFeed](https://taoshu.in/webfeed/turn-browser-into-feed-reader.html) - RSS Reader / Web-Based +* [JungleReader](https://www.zajungle.com/) - RSS Reader / Web-Based +* [JesterEngine](https://jesterengine.com/) - RSS Reader / Web-Based +* [Tiny Tiny RSS](https://tt-rss.org/) - RSS Reader / Web-Based +* [NewsPipe](https://github.com/cedricbonhomme/newspipe), [Miniflux](https://miniflux.app/), [selfoss](https://selfoss.aditu.de/), [Glance](https://github.com/glanceapp/glance), [FreshRSS](https://freshrss.org/), [Fusion](https://github.com/0x2E/fusion), [rss](https://codeberg.org/danb/rss) or [CommaFeed](https://www.commafeed.com/#/welcome) - Self-Hosted RSS Readers *** @@ -225,6 +213,7 @@ * [TMHunt](http://www.tmhunt.com/) - Clothing Trademark Search * [BrownBook](https://www.brownbook.net/) - Business Listing Search * [txtai](https://neuml.github.io/txtai/) - Build Semantic Search Apps +* [HGSearch](https://hgsearch.ridhom.dev/) - HealthyGamerGG Video Dialogue Search * [useful-forks](https://useful-forks.github.io/) or [GitPop3](https://andremiras.github.io/gitpop3/) - GitHub Fork Search * [MyCroftProject](https://mycroftproject.com/) - Search Engine Plugins @@ -243,13 +232,13 @@ * [Trovu.net](https://trovu.net/) - Command Search / [GitHub](https://github.com/trovu/trovu) * [The Search Engine Map](https://www.searchenginemap.com/) - View Search Engine Connections * [Marginalia Search](https://marginalia-search.com/) - Text-Based Search Engine / [GitHub](https://github.com/MarginaliaSearch/MarginaliaSearch) -* [TheOldNet](https://theoldnet.com/) or [OldVista](https://www.oldavista.com/) - Oldschool Site Search Engines -* [OceanHero](https://oceanhero.today/) - Save the Ocean via Search -* [Ecosia](https://www.ecosia.org/) / [Firefox](https://addons.mozilla.org/en-US/firefox/addon/ecosia-the-green-search/) / [Chrome](https://chromewebstore.google.com/detail/ecosia-the-search-engine/eedlgdlajadkbbjoobobefphmfkcchfk) +* [TheOldNet](https://theoldnet.com/) or [OldVista](https://www.oldavista.com/) - Oldschool / Retro Site Search Engines +* [OceanHero](https://oceanhero.today/) or [ekoru](https://ekoru.org/) - Ocean Protection Search Engines +* [Ecosia](https://www.ecosia.org/) - Plant Trees via Search / [Firefox](https://addons.mozilla.org/en-US/firefox/addon/ecosia-the-green-search/) / [Chrome](https://chromewebstore.google.com/detail/ecosia-the-search-engine/eedlgdlajadkbbjoobobefphmfkcchfk) * [Mullvad Leta](https://leta.mullvad.net/) * [Presearch](https://presearch.com/) / [GitHub](https://github.com/presearchofficial) * [Bing](https://www.bing.com/) -* [Google](https://google.com/) +* [Google](https://google.com/) / [AI Mode](https://google.com/aimode), [2](https://www.google.com/search?udm=50) * [Lycos](https://www.lycos.com/) * [WebCrawler](https://www.webcrawler.com/) * [Million Short](https://millionshort.com/) @@ -333,7 +322,7 @@ * [scrt.link](https://scrt.link/), [Br3f](https://www.br3f.com/) or [Temporary URL](https://www.temporary-url.com/) - Temporary Single-Use Links * [W.A.R. Links Checker Premium](https://greasyfork.org/en/scripts/2024) - File Host Link Auto-Check * [XML-Sitemaps](https://www.xml-sitemaps.com/) - Sitemap Creator -* [Backlink Tool](https://backlinktool.io/) or [IndexKings](http://www.indexkings.com/) - URL Indexer +* [IndexKings](http://www.indexkings.com/) - URL Indexer *** @@ -349,8 +338,8 @@ * [Bypass-Links](https://bypass-links.vercel.app) - Bypass Links / [GitHub](https://github.com/amitsingh-007/bypass-links) * [Yuumari](https://yuumari.com/bypass/) - Convert Shortened Links / [Script](https://yuumari.com/m-links/#js-code) * [UploadHEaven](https://greasyfork.org/en/scripts/442019) - Bypass Uploadhaven Time Restriction -* [Lootlabs Bypass](https://greasyfork.org/en/scripts/487969) - Loot-Link / LootDest Bypass * [Bypass FileCrypt](https://greasyfork.org/en/scripts/403170) - FileCrypt Bypass +* [Bypass FREEdlink](https://greasyfork.org/en/scripts/522735) - Bypass FREEdlink "frdl" Timers / [Note](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#bypass-freedlink) *** @@ -396,7 +385,6 @@ * [SmartLnks](https://smartlnks.com/) - `smartlnks.com/Vjr0m` * [Anon.to](https://anon.to/) - Anonymous URLs / `anon.to/7SWqpG` * [Thinfi](https://thinfi.com/) - Password Protected Short Links / `thinfi.com/q8aw` -* [emojied](https://emojied.net/) - Emoji URL Shortener * [Suri](https://github.com/surishortlink/suri), [MPNG.IN](https://github.com/thewalkingtoast/mpngin), [Snapp](https://github.com/urania-dev/snapp), [Dub.co](https://github.com/dubinc/dub) or [Shlink](https://github.com/shlinkio/shlink) - Self-Hosted Link Shorteners *** @@ -420,7 +408,7 @@ * ↪️ **[DNS Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/dev-tools#wiki_.25B7_dns_tools)** * ↪️ **[Domain Availability](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_domain_availability)** -* ⭐ **[censys](https://search.censys.io/)**, [LinkScope](https://accentusoft.com/), [URLDNA](https://urldna.io/) or [DNSlytics](https://dnslytics.com/) - Domain Investigation Tools +* ⭐ **[censys](https://search.censys.io/)**, [wtfis](https://github.com/pirxthepilot/wtfis), [LinkScope](https://accentusoft.com/), [URLDNA](https://urldna.io/) or [DNSlytics](https://dnslytics.com/) - Domain Info Tools * [Rankchart](https://rankchart.org/) - Multiple Domain Tools * [DNSTwist](https://dnstwist.it/) / [GitHub](https://github.com/elceef/dnstwist) or [DNSTwister](https://dnstwister.report/) - Phishing Domain Scanners * [WhoisRequest](https://whoisrequest.com/) or [Whois Lookup](https://whois.domaintools.com/) - Whois Search @@ -453,7 +441,7 @@ ## ▷ Email Clients * ⭐ **[Betterbird](https://www.betterbird.eu/)** -* ⭐ **[Thunderbird](https://www.thunderbird.net/en-US/)** - [Tray Icon](https://github.com/Ximi1970/systray-x) +* ⭐ **[Thunderbird](https://www.thunderbird.net/en-US/)** - [Tray Icon](https://github.com/Ximi1970/systray-x) / [Matrix](https://matrix.to/#/#thunderbird:mozilla.org) * ⭐ **[Mailspring](https://getmailspring.com/)** - [Themes](https://github.com/topics/mailspring-theme) / [GitHub](https://github.com/Foundry376/Mailspring) * [Outlook](https://outlook.live.com/owa/) * [ElectronMail](https://github.com/vladimiry/ElectronMail) @@ -483,8 +471,10 @@ * ⭐ **[temp-mail.org](https://temp-mail.org/)** - Forever / 2 Hours / N/A / [Telegram Bot](https://t.me/TempMail_org_bot) * ⭐ **[temp-mail.io](https://temp-mail.io/)** - 1 Day / 1 Day / 12 Domains * ⭐ **[burner.kiwi](https://burner.kiwi/)** - 1 Day / 1 Day / 3 Domains +* [TempMailHub](https://tempmailhub.org/) - Gmail / 15 Mins / 1 Domain / Public Shared Addresses * [Guerrilla Mail](https://www.guerrillamail.com/) - Forever / 1 Hour / 11 Domains / [SharkLasers](https://www.sharklasers.com/) * [Bloody Vikings!](https://addons.mozilla.org/en-US/firefox/addon/bloody-vikings/) - Temp Email Extension +* [TotallyLegit](https://totallylegit.edu.pl/) or [Temp.edu](https://tempmail.edu.kg/en/) - Temp .edu Address' * [Tmail.io](https://tmail.io/) - Gmail / Forever / 1 Day / 4 Domains * [22.Do](https://22.do/) - Gmail / 1 Day / 1 Day / 3 Domains * [Vortex Email](https://vortex.skyfall.dev/) - Forever / 9 Domains / [GitHub](https://github.com/SkyfallWasTaken/vortex.email) @@ -492,6 +482,7 @@ * [YOPmail](https://yopmail.com/email-generator) - Forever / 8 Days / 100+ Domains * [TempMail.Plus](https://tempmail.plus/en/) - Forever / 7 Days / 9 Domains / [.onion](http://tempmail4gi5qfqzjs2bxo3wf6eurpelxmior6ohzq5vw7aeay67wiyd.onion/) * [instant-email.org](https://instant-email.org/) - Forever / 3 Days / 7 Domains +* [NanoMail](https://nano-mail.vercel.app/) - Forever / 7 Days / 1 Domain * [Temporary-Mail](https://temporary-mail.net/) - Forever / 11 Domains * [48hr.email](https://48hr.email/) - Forever / 2 Days / 7 Domains * [NiceMail](https://nicemail.cc/) - Forever / 1 Day / 3 Domains @@ -500,7 +491,6 @@ * [Spambox](https://spambox.xyz/) or [Trashinbox](https://trashinbox.net/) - Forever / 1 Day / 4 Domains * [Maildrop](https://maildrop.cc/), [Trashmail](https://trashmail.ws/) - Forever / 1 Day / 1 Domain * [cs.email](https://cs.email/) - Forever / 1 Hour / 12 Domains -* [Temp Mail ID](https://tempmailid.com/) - Forever / 30 Mins / 2 Domains * [Email Generator](https://generator.email/), [Fake Email](https://email-fake.com/) or [TempM](https://tempm.com/) - Forever / N/A / 50+ Domains * [EduMail](https://edumail.icu/) - 1 Month / 1 Month / 10 Domains * [10minutesemail](https://10minutesemail.net/) - 10 Minutes / 1 Domain @@ -518,7 +508,7 @@ * [Moakt](https://www.moakt.com/) - 1 Hour / 1 Hour / 13 Domains * [MintEmail.com](https://www.mintemail.com/), [tempail.com](https://tempail.com/) or [tempmail.zone](https://tempmail.zone/) - 1 Hour / 1 Hour / 1 Domain * [Mohmal](https://www.mohmal.com/en) - 45 Mins / 45 Mins / 1 Domain -* [MinuteInbox](https://minuteinbox.com/), [10minemail.com](https://10minemail.com/), [10minutemail.com](https://10minutemail.com/) or [Linshi Email](https://www.linshi-email.com/en) - 10 Minute Lifespan Emails +* [MinuteInbox](https://minuteinbox.com/), [TempMailGenerator](https://tempmailgenerator.org/), [10minemail.com](https://10minemail.com/), [10minutemail.com](https://10minutemail.com/) or [Linshi Email](https://www.linshi-email.com/en) - 10 Minute Lifespan Emails * [mail-temp.com](https://mail-temp.com/) or [emailfake.com](https://emailfake.com/) - 50+ Domains * [AnonymMail.net](https://anonymmail.net/) or [Mail.td](https://mail.td/) - 5 Domains * [EmailOnDeck](https://www.emailondeck.com/), [EmailTemp](https://emailtemp.org/), [Haribu](https://haribu.net/), [Maildax](https://maildax.com/) or [tempmaili.com](https://tempmaili.com/) - 1 Domain @@ -530,8 +520,8 @@ ## ▷ Email Aliasing * ⭐ **[SimpleLogin](https://simplelogin.io/)** - Email Aliasing / [Subreddit](https://www.reddit.com/r/Simplelogin/) / [X](https://x.com/SimpleLogin) / [GitHub](https://github.com/simple-login/app) -* ⭐ **[DuckDuckGo Email Protection](https://duckduckgo.com/email/)** - Email Aliasing * ⭐ **[addy.io](https://addy.io/)** - Email Aliasing / [GitHub](https://github.com/anonaddy/anonaddy) +* ⭐ **[DuckDuckGo Email Protection](https://duckduckgo.com/email/)** - Email Aliasing * [Mailgw](https://mailgw.com/) - Email Aliasing * [erine.email](https://erine.email/) - Email Aliasing * [33mail](https://33mail.com/) - Email Aliasing @@ -542,14 +532,10 @@ # ► Browser Bookmarks -* ⭐ **[Sidebery](https://github.com/mbnuqw/sidebery)** - Firefox Extension / Manager * ⭐ **[Floccus](https://floccus.org/)** / [GitHub](https://github.com/floccusaddon/floccus) or [BookmarkHub](https://github.com/dudor/BookmarkHub) - Bookmark / Tab Sync * [linkhut](https://ln.ht/), [Linkhorse](https://link.horse/) or [TinyGem](https://tinygem.org/) - Social Bookmarking * [SuperMemory](https://supermemory.ai/) - AI Bookmark App / [GitHub](https://github.com/supermemoryai/supermemory) -* [Bookmarks Organizer](https://github.com/cadeyrn/bookmarks-organizer), [Keep or Delete](https://www.soeren-hentzschel.at/firefox-webextensions/keep-or-delete-bookmarks/) or [Bookmarks Cleanup](https://chromewebstore.google.com/detail/bookmarks-clean-up/oncbjlgldmiagjophlhobkogeladjijl) - Bookmark Cleanup Extensions * [Auto-Sort Bookmarks](https://github.com/eric-bixby/auto-sort-bookmarks-webext) - Bookmark Sorting Extension -* [Default Bookmark Folder](https://github.com/teddy-gustiaux/default-bookmark-folder) - Change Default Firefox Bookmark Folder -* [Bookmark Search Plus 2](https://github.com/aaFn/Bookmark-search-plus-2) - Search Firefox Bookmarks * [Bookmarklets Guide](https://rentry.co/bookmarklets-guide) - Bookmarklets / Guide * [Bookmarkify](https://bookmarkify.it/) - Create JS Bookmarklets * [Get Bookmarklets](https://getbookmarklets.com/) - Download / Share Bookmarklets @@ -577,7 +563,7 @@ * [Bookmarkme](https://bookmarkme.io/) - Desktop Manager * [Mission Control](https://mission-control.app/) - Chrome Extension * [buku](https://github.com/jarun/buku) - CLI Bookmark Manager -* [Linkwarden](https://github.com/linkwarden/linkwarden), [Hoarder](https://github.com/hoarder-app/hoarder), [Shaarli](https://github.com/shaarli/Shaarli), [LinkAce](https://www.linkace.org/) or [linkding](https://github.com/sissbruecker/linkding) - Self-Hosted Managers +* [Linkwarden](https://github.com/linkwarden/linkwarden), [KaraKeep](https://github.com/karakeep-app/karakeep), [Shaarli](https://github.com/shaarli/Shaarli), [LinkAce](https://www.linkace.org/) or [linkding](https://github.com/sissbruecker/linkding) - Self-Hosted Managers *** @@ -586,29 +572,38 @@ * 🌐 **[Browser Comparisons](https://privacytests.org/)**, [Eylenburg Comparisons](https://eylenburg.github.io/browser_comparison.htm) or [ATH Comparisons](https://browsers.avoidthehack.com/) - Compare Popular Browsers * 🌐 **[Desktop Browser List](https://github.com/nerdyslacker/desktop-web-browsers)** - Desktop Browser Index * ↪️ **[Recommended Browsers](https://fmhy.net/beginners-guide#browsers)**, [2](https://rentry.org/Piracy-BG#browsers) / **[Privacy Browsers](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/adblock-vpn-privacy/#wiki_.25B7_browser_privacy)** +* ↪️ **[Android Browsers](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/android#wiki_.25B7_android_browsers)** * ⭐ **[BrowserBench](https://browserbench.org/)** or [WPT](https://wpt.fyi) - Browser Benchmark Tests -* ⭐ **[Firefox Trains](https://whattrainisitnow.com/)** - Track Firefox Releases -* ⭐ **[Edge-Uninstall](https://gist.github.com/ave9858/c3451d9f452389ac7607c99d45edecc6)** - Microsoft Edge Removal Script * [VsyncTester](https://vsynctester.com/) - Browser VSYNC Test / Firefox Broken -* [Browserling](https://www.browserling.com/) - Browser Emulators * [Gemini Portal](https://geminiprotocol.net/), [2](https://yesterweb.org/gemini) - Gemini to https Web Proxy Service * [Rambox](https://rambox.app/), [Kera](https://desktop.kerahq.com/) or [Tangram](https://github.com/sonnyp/Tangram) - Web App Browsers -* [Hidden Settings](https://gitlab.com/Madis0/hidden-settings/) - Firefox Hidden Settings -* [Betterfox](https://github.com/yokoffing/Betterfox) - Firefox user.js Tweaks / [Warning](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#general-tweak-warning) -* [FirefoxCSS Store](https://firefoxcss-store.github.io/) - Firefox Themes List -* [/r/FirefoxCSS](https://reddit.com/r/FirefoxCSS) or [Firefox CSS Hacks](https://github.com/MrOtherGuy/firefox-csshacks) - Firefox CSS Resources * [ThemeBeta](https://www.themebeta.com/) - Change Chrome Theme * [Chrome Theme Studio](https://chrometheme.studio/) - Create Chrome Theme -* [Chromium Flags](https://nu11u5.github.io/chromium-flags/) - Chrome-Based Browser Flags +* [Chromium Flags](https://nu11u5.github.io/chromium-flags/) - Chromium-Based Browser Flags +* [Hidden Settings](https://gitlab.com/Madis0/hidden-settings/) - Chromium-Based/Firefox Hidden Settings * [Hurl](https://github.com/U-C-S/Hurl) - Select Browser on URL Clicks -* [Ruffle](https://ruffle.rs/) - Flash Emulator * [Clean Flash Builds](https://github.com/darktohka/clean-flash-builds/) - Flash Downloads -* [MSEdgeRedirect](https://github.com/rcmaehl/MSEdgeRedirect) - Redirect Microsoft Edge -* [Firefox Keyboard Shortcuts](https://support.mozilla.org/en-US/kb/keyboard-shortcuts-perform-firefox-tasks-quickly) * [Chrome Keyboard Shortcuts](https://support.google.com/chrome/answer/157179) *** +## ▷ Firefox Tools + +* ↪️ **[Firefox Extensions](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/internet-tools#wiki_.25B7_firefox_extensions)** +* ⭐ **[Firefox](https://www.mozilla.org/en-US/firefox/new/)** / [Nightly](https://www.mozilla.org/en-US/firefox/nightly/) / [Beta](https://www.mozilla.org/en-US/firefox/beta/) / [GitHub](https://github.com/mozilla-firefox/firefox) +* ⭐ **[Firefox Trains](https://whattrainisitnow.com/)** - Official Release Tracker +* [Firefox Keyboard Shortcuts](https://support.mozilla.org/en-US/kb/keyboard-shortcuts-perform-firefox-tasks-quickly) +* [Hidden Settings](https://gitlab.com/Madis0/hidden-settings/-/blob/master/firefox.md) - Firefox Hidden Settings +* [Betterfox](https://github.com/yokoffing/Betterfox) - Firefox user.js Tweaks / [Warning](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#general-tweak-warning) +* [Bookmark Search Plus 2](https://github.com/aaFn/Bookmark-search-plus-2) - Search Firefox Bookmarks +* [Default Bookmark Folder](https://github.com/teddy-gustiaux/default-bookmark-folder) - Change Default Firefox Bookmark Folder +* [FirefoxCSS Store](https://firefoxcss-store.github.io/) - Firefox Themes List +* [/r/FirefoxCSS](https://reddit.com/r/FirefoxCSS) or [Firefox CSS Hacks](https://github.com/MrOtherGuy/firefox-csshacks) - Firefox CSS Resources +* [Want My RSS](https://github.com/Reeywhaar/want-my-rss) - Restores Firefox RSS Features +* [Doqment](https://github.com/shivaprsd/doqment) - Firefox PDF Reader Dark Mode + +*** + ## ▷ Browser Extensions * 🌐 **[WebExtension.org](https://webextension.org/)** or [MyBrowserAddon](https://mybrowseraddon.com/) - Open-Source Extension Indexes @@ -632,13 +627,11 @@ * [Omni](https://github.com/alyssaxuu/omni) - Browser Quick Launcher * [Extensions CSE](https://cse.google.com/cse?cx=86d64a73544824102) - Multi-Site Extension Search * [Vimium](https://vimium.github.io/) / [GitHub](https://github.com/philc/vimium), [Surfingkeys](https://github.com/brookhong/Surfingkeys), [Tridactyl](https://tridactyl.xyz/), [Web Search Navigator](https://github.com/infokiller/web-search-navigator), [Shortkeys](https://www.shortkeys.app/) or [Vimium C](https://github.com/gdh1995/vimium-c) - Keyboard Shortcuts -* [Snap Links Plus](https://cpriest.github.io/SnapLinksPlus/) or [Link Clump](https://github.com/benblack86/linkclump) - Select & Open Multiple Links at Once * [Custom Scrollbars](https://addons.wesleybranton.com/addon/custom-scrollbars/) - Custom Browser Scrollbars * [Quick Tabs](https://github.com/babyman/quick-tabs-chrome-extension) - Quickly Switch Between Current & Recently Closed Tabs * [User Agent Switcher](https://webextension.org/listing/useragent-switcher.html) - Switch Your User-Agent * [Snooze Tabs](https://github.com/bwinton/SnoozeTabs) - Temporarily Snooze Tabs * [AutoRefresh](https://autorefresh.io/) or [Tab Auto Refresh](https://mybrowseraddon.com/tab-auto-refresh.html) - Refresh Tabs -* [Tab for a Cause](https://tab.gladly.io/) - New Tabs = Charity Donation * [Dictionaries](https://github.com/pnlpal/dictionariez) or [Definer](https://lumetrium.com/definer/) - Popup Dictionaries * [CustomRightClickMenu](https://github.com/SanderRonde/CustomRightClickMenu) - Custom Right Click Menu * [BigSearch](https://github.com/garywill/BigSearch) or [SearchJumper](https://hoothin.github.io/SearchJumper/) - Context Search @@ -681,7 +674,7 @@ * [Streak](https://www.streak.com/) - Email Engagement Tracker * [Native HLS](https://github.com/Palethorn/native-adaptive-streaming/) - Allows HLS & MPEG-Dash native playback * [Session Alive](https://github.com/arunelias/session-alive/) - Keep Website Sessions Alive -* [Caffeine](https://add0n.com/caffeine.html) - Prevent OS From Sleeping +* [Caffeine](https://add0n.com/caffeine.html) - Prevent OS from Sleeping * [Broken Link Checker](https://add0n.com/broken-link-checker.html) - Checks Page for Broken Links * [GoFullPage](https://gofullpage.com/), [Easy Screenshot](https://webextension.org/listing/screenshot.html) or [FireShot](https://addons.mozilla.org/en-GB/firefox/addon/fireshot/) - Full Page Screenshots * [Bulk URL Opener](https://bulkurlopener.com/) or [Open-Multiple-URLs](https://github.com/htrinter/Open-Multiple-URLs/) - Open Multiple URLs in One Click @@ -697,7 +690,9 @@ * 🌐 **[Firefox Addons](https://addons.mozilla.org/en-US/firefox/extensions/)** - Firefox Addon Store * ⭐ **[FoxyTab](https://addons.mozilla.org/en-US/firefox/addon/foxytab/)** - Tab Tools +* ⭐ **[Sidebery](https://github.com/mbnuqw/sidebery)** - Bookmark Manager * ⭐ **[Context Search](https://addons.mozilla.org/en-US/firefox/addon/contextsearch/)** or [Context Search Web](https://addons.mozilla.org/en-US/firefox/addon/contextsearch-web-ext/) - Search Selected Text / Multi Site Search +* ⭐ **[Snap Links Plus](https://cpriest.github.io/SnapLinksPlus/)** - Select & Open Multiple Links at Once * [Firefox Containers](https://addons.mozilla.org/en-US/firefox/addon/multi-account-containers/), [Container Tab Groups](https://addons.mozilla.org/en-US/firefox/addon/container-tab-groups/) or [Temporary Containers](https://addons.mozilla.org/en-US/firefox/addon/temporary-containers/) - Separate Firefox Sessions / [Guide](https://www.thechiefmeat.com/guides/containers.html) * [FoxyLink](https://addons.mozilla.org/en-US/firefox/addon/foxylink/) - Link Tools * [Multithreaded Download Manager](https://addons.mozilla.org/en-US/firefox/addon/multithreaded-download-manager/) - Download Manager @@ -705,6 +700,7 @@ * [FX Cast](https://hensm.github.io/fx_cast/) - Enable Chromecast in Firefox * [Firefox Scripts](https://github.com/xiaoxiaoflood/firefox-scripts) - Chrome Extensions in Firefox * [Dark Background and Light Text](https://github.com/m-khvoinitsky/dark-background-light-text-extension) - Dark Mode +* [Bookmarks Organizer](https://github.com/cadeyrn/bookmarks-organizer) - Bookmark Cleanup * [New Tab Override](https://www.soeren-hentzschel.at/firefox-webextensions/new-tab-override/) - Pick Site that Opens in New Tabs / [GitHub](https://github.com/cadeyrn/newtaboverride) * [Multi Tabs](https://addons.mozilla.org/en-US/firefox/addon/search-multi-tabs/) - Multi Tab Word Search * [Search Site WE](https://addons.mozilla.org/en-US/firefox/addon/search-site-we/) - Search Current Domain @@ -737,6 +733,7 @@ * [Volume Master](https://chromewebstore.google.com/detail/volume-master/jghecgabfgfdldnmbfkhmffcabddioke) - Increase Browser Volume * [Text Blaze](https://blaze.today/) - Create Text Snippets * [TabCopy](https://github.com/hansifer/tab-copy) - Copy Tabs to Clipboard +* [Bookmarks Cleanup](https://chromewebstore.google.com/detail/bookmarks-clean-up/oncbjlgldmiagjophlhobkogeladjijl) - Bookmark Cleanup * [Simple Mass Downloader](https://chromewebstore.google.com/detail/simple-mass-downloader/abdkkegmcbiomijcbdaodaflgehfffed) - Download Multiple Links at Once * [CrxMouse](https://crxmouse.com/) - Mouse Gestures * [Night Shift Redux](https://chromewebstore.google.com/detail/night-shift/ocginjipilabheemhfbedijlhajbcabh) - Adapts Display Color to Time of Day @@ -775,8 +772,6 @@ * ⭐ **Greasy Fork Tools** - [Enhancements](https://greasyfork.org/en/scripts/473830) / [Helper](https://greasyfork.org/en/scripts/393396) / [Tweaks](https://greasyfork.org/en/scripts/368183) / [Cleanup Script](https://greasyfork.org/en/scripts/12179) / [Themes](https://greasyfork.org/en/scripts/4336) * ⭐ **[Picviewer CE+](https://greasyfork.org/en/scripts/24204)** - Image Viewing Tool * [Userscript-Plus](https://github.com/magicoflolis/Userscript-Plus) - Discover Userscripts for Current Webpage -* [Remove Web Limits](https://greasyfork.org/en/scripts/28497) / [Mod](https://greasyfork.org/en/scripts/386908) - Force Enable Right Click -* [Select text inside a link like Opera](https://greasyfork.org/en/scripts/789-select-text-inside-a-link-like-opera) - Select Text Inside Links * [Select All Checkboxes](https://greasyfork.org/en/scripts/22587) - Auto Check All Boxes * [Always Remember Me](https://openuserjs.org/scripts/Patabugen/Always_Remember_Me) - Always Tick "Remember Me" * [Google Hit Hider](https://greasyfork.org/en/scripts/1682) - Hide Sites in Search Results @@ -801,7 +796,7 @@ * ⭐ **[Web Archives](https://github.com/dessant/web-archives)** or [Resurrect Pages Fork](https://github.com/Albirew/resurrect-pages-isup-edition) - Browser Extensions * ⭐ **[CachedView](https://cachedview.nl/)** or [Quick Cache](https://cybdetective.com/quickcacheandarhivesearch.html) - Aggregate Cache Results * [Ghost Archive](https://ghostarchive.org/) - Archive Web Pages -* [ArchiveTeam](https://wiki.archiveteam.org/index.php/Main_Page) - Archiving Projects / Wiki +* [ArchiveTeam](https://wiki.archiveteam.org/index.php/Main_Page) - Archiving Project / Wiki * [Perma.cc](https://perma.cc/) - Create Permalinks *** @@ -809,8 +804,9 @@ ## ▷ Web Archiving Tools * 🌐 **[Awesome Web Archiving](https://github.com/iipc/awesome-web-archiving)** - Web Archiving Tools +* 🌐 **[Data Hoarding](https://datahoarding.org/resources.html)** - Data Hoarding Resources * 🌐 **[Webrecorder](https://webrecorder.net/)** - Open-Source Archiving Tools -* ↪️ **[Twitter Archiving](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/social-media#wiki_.25B7_twitter_archiving)** +* ↪️ **[Twitter Archiving](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/social-media/#wiki_.25B7_twitter.2Fx_archiving)** * ↪️ **[YouTube Archiving](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/social-media/#wiki_.25B7_youtube_archiving)** * ⭐ **[ArchiveBox](https://archivebox.io)** - Self-Hosted Web Archiving / [GitHub](https://github.com/archivebox/archivebox) * ⭐ **[MarkDownload](https://github.com/deathau/markdownload)** or [MarkdownDown](https://markdowndown.vercel.app/) - Download Web Pages as Markdown Files @@ -860,8 +856,8 @@ * [Osintracker](https://www.osintracker.com/) - Track Your Investigations * [Cyber Detective](https://cybdetective.com/) - Tools, Techniques, and Projects / [GitHub](https://github.com/cipher387) * [MetaOSINT](https://metaosint.github.io/) - OSINT Search Tool / [GitHub](https://github.com/MetaOSINT/MetaOSINT.github.io/) +* [Mitaka](https://github.com/ninoseki/mitaka) - OSINT Search Extension * [Harpoon](https://github.com/Te-k/harpoon) - OSINT CLI Tool -* [Project Owl](https://discord.com/invite/projectowl) - OSINT Community * [OSINT Dojo](https://www.osintdojo.com/resources/) - OSINT Guides * [non-typical-OSINT-guide](https://github.com/OffcierCia/non-typical-OSINT-guide) - OSINT Guides * [What is OSINT?](https://www.recordedfuture.com/blog/open-source-intelligence-definition) - Article @@ -889,6 +885,8 @@ * [OSINT Resources](https://start.me/p/1kAP0b/osint-resources) - General Index * [OSINT Essentials](https://www.osintessentials.com/) - General Index * [OSINTgeek](https://osintgeek.de/tools) - General Index +* [Awesome Search Engines](https://github.com/edoardottt/awesome-hacker-search-engines) - OSINT / Cybersecurity Search Engines +* [Social-Media-OSINT](https://github.com/osintambition/Social-Media-OSINT-Tools-Collection) - Social Media Index * [OSINT for Countries](https://github.com/wddadk/OSINT-for-countries) / [V2](https://github.com/paulpogoda/OSINT-for-countries-V2.0) - Indexes Organized by Country * [DiscordOSINT](https://github.com/husseinmuhaisen/DiscordOSINT) - Discord OSINT Index * [Awesome Telegram OSINT](https://github.com/ItIsMeCall911/Awesome-Telegram-OSINT) or [The OSINT Toolbox](https://github.com/The-Osint-Toolbox/Telegram-OSINT) - Telegram OSINT Indexes \ No newline at end of file diff --git a/docs/linuxguide.md b/docs/linuxguide.md index df4baa068..93ef2a44c 100644 --- a/docs/linuxguide.md +++ b/docs/linuxguide.md @@ -6,12 +6,11 @@ # ► 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) -* [GameShell](https://github.com/phyver/GameShell) - Unix Shell Learning Game +* ⭐ **[Babbies First Linux](https://wiki.installgentoo.com/index.php/Babbies_First_Linux)** - Linux Guides +* ⭐ **[InstallGentoo](https://wiki.installgentoo.com/)** - Linux Guides +* ⭐ **[ArchWiki](https://wiki.archlinux.org/)** - Linux Guide / [Manuals](https://man.archlinux.org/) / [TUI](https://codeberg.org/theooo/mantra.py) * [Gentoo Wiki](https://wiki.gentoo.org/wiki/Main_Page) - Gentoo Wikis / Guides * [Debian Wiki](https://wiki.debian.org/) - Debian Wiki / Guides -* [FreeBSD Wiki](https://wiki.freebsd.org/) - FreeBSD Wiki / Guides / [Docs](https://docs.freebsd.org/en/books/handbook/) * [LinuxJourney](https://linuxjourney.com/) - Interactive Linux Guides * [HowToLinux](https://howtolinux.vercel.app) - Linux Desktop Guides * [Self Managed Life](https://wiki.futo.org/) - FOSS / Self-Hosting Guide / [Video](https://youtu.be/Et5PPMYuOc8), [2](https://youtu.be/3fW9TV1WQi8) @@ -25,9 +24,27 @@ *** +## ▷ CLI Cheat Sheets + +* ⭐ **[Linux Command Library](https://linuxcommandlibrary.com/)** / [GitHub](https://github.com/SimonSchubert/LinuxCommandLibrary) +* [Awesome for One Liner](https://github.com/sheepla/awesome-for-oneliner) +* [You Don't Need GUI](https://github.com/you-dont-need/You-Dont-Need-GUI) +* [CommandlineFU](https://www.commandlinefu.com/) +* [Bash Academy](https://guide.bash.academy/) +* [ss64 Bash](https://ss64.com/bash/) +* [Bash Oneliner](https://onceupon.github.io/Bash-Oneliner/) +* [navi](https://github.com/denisidoro/navi) + +*** + # ► Linux Communities +* **Note** - Keep in mind it's usually best to seek specific forums for your Distro if you need help with them. + +*** + * ⭐ **[All Things Linux](https://discord.gg/linux)** - Linux Discord Server +* [LinuxQuestions](https://www.linuxquestions.org/questions/) - Linux Q&A Forum * [Linux.Chat](https://discord.gg/linuxchat) - Linux Discord Server * [Linux x Technology](https://linuxdiscord.com/) - Linux Discord Server * [Arch Linux Community](https://discord.gg/3m6dbPR) - Linux Discord Server @@ -45,16 +62,15 @@ *** * ⭐ **[DistroChooser](https://distrochooser.de/)** -* [DistroWatch](https://distrowatch.com/dwres.php?resource=popularity) +* ⭐ **[DistroWatch](https://distrowatch.com/dwres.php?resource=popularity)** * [distro.moe](https://distro.moe/) - Find Random Distros * [Linux Live Kit](https://www.linux-live.org/) - Live Distro Creator -* [DotShare](http://dotshare.it/) - Distro Config Index * [ArchiveOS](https://archiveos.org/) * [OS.click](https://os.click/en) * [LinuxTracker](https://linuxtracker.org/) * [OpenSourceFeed](https://www.opensourcefeed.org/) -* [Desktop Environment Comparison](https://eylenburg.github.io/de_comparison.htm) -* [Pkgs](https://pkgs.org/) - Linux + Unix Packages / [Repology](https://repology.org/) +* [Pkgs](https://pkgs.org/) - Linux Packages / [Repology](https://repology.org/) +* [Linux Comparisons](https://eylenburg.github.io/linux_comparison.htm) *** @@ -63,27 +79,16 @@ * [Pinn](https://github.com/procount/pinn) - Raspberry Pi OS Installer * [PiVPN](https://pivpn.io/) - Raspberry Pi VPN / [GitHub](https://github.com/pivpn/pivpn) * [raspberrypiwireguard](https://github.com/adrianmihalko/raspberrypiwireguard) - Install WireGuard on Raspberry Pi +* [Raspberry Pi Connect](https://www.raspberrypi.com/software/connect/) - Raspberry Pi Remote Access * [CaribouLite](https://github.com/cariboulabs/cariboulite) - Raspberry Pi Tx/Rx 6GHz SDR * [Piper](https://github.com/rhasspy/piper) - Raspberry Pi Text-To-Speech *** -## ▷ 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://github.com/mylinuxforwork/dotfiles), [2](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) -* [river](https://github.com/riverwm/river/) - Wayland Compositor -* [LabWC](https://github.com/labwc/labwc) - Wayland Compositor -* [wayfire](https://github.com/WayfireWM/wayfire/) - Wayland Compositor -* [niri](https://github.com/YaLTeR/niri) - Wayland Compositor -* [Waycheck](https://gitlab.freedesktop.org/serebit/waycheck) - Wayland Compositor GUI - -*** - # ► Linux Apps * ↪️ **[Multi-Platform Readers](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/reading/#wiki_.25B7_ebook_readers)** - Ebook Reader Index +* 🌐 **[GNOME Shell Extensions](https://extensions.gnome.org/)** * ⭐ **[Bottles](https://usebottles.com/)** - Manage Wine containers / [GitHub](https://github.com/bottlesdevs) / [Discord](https://discord.com/invite/wF4JAdYrTR) * ⭐ **[WineHQ](https://appdb.winehq.org/)** - Wine Compatibility Database * ⭐ **[Q4Wine](https://sourceforge.net/projects/q4wine/)** - Wine GUI @@ -91,40 +96,35 @@ * ⭐ **[winetricks](https://github.com/Winetricks/winetricks)** - Wine Fixes * ⭐ **[rofi](https://davatorium.github.io/rofi/)** / [Emoji Selector](https://github.com/Mange/rofi-emoji), [Fuzzel](https://codeberg.org/dnkl/fuzzel), [Ulauncher](https://ulauncher.io/) or [wofi](https://hg.sr.ht/~scoopta/wofi) - App Launchers * ⭐ **[FreeRDP](https://www.freerdp.com/)** - Remote Desktop Client / [GitHub](https://github.com/FreeRDP/FreeRDP) -* [wslu](https://wslutiliti.es/wslu) - Utilities for Windows 10 Linux Subsystem / [GitHub](https://github.com/wslutilities/wslu) +* ⭐ **[shell_gpt](https://github.com/TheR1D/shell_gpt)** or [shellgpt](https://github.com/jiacai2050/my-works/tree/main/shellgpt) - AI Terminal Chatbot / GPT * [Darling](https://www.darlinghq.org/) - Run macOS Apps on Linux / [GitHub](https://github.com/darlinghq/darling) / [Discord](https://discord.com/invite/XRD3mQA) * [innoextract](https://constexpr.org/innoextract/) - Windows Installer Unpacker / [GitHub](https://github.com/dscharrer/innoextract) -* [nativefier_tauri](https://github.com/hamza72x/web2app) - Turn Webpages into Desktop Apps +* [web2app](https://github.com/hamza72x/web2app) - Turn Webpages into Desktop Apps * [Autokey](https://autokey.github.io/index.html) - Linux Automation Utility / [GitHub](https://github.com/autokey/autokey) +* [ProtonTricks](https://github.com/Matoking/protontricks) - Run Winetricks Commands for Steam Play / Proton Games * [Touchégg](https://github.com/JoseExposito/touchegg) - Multi-Touch Gesture Recognizer -* [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) * [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/), [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 +* [taskbook](https://github.com/klaudiosinani/taskbook) or [nb](https://xwmx.github.io/nb) / [GitHub](https://github.com/xwmx/nb) - Note Apps +* [Notepadqq](https://github.com/notepadqq/notepadqq), [Featherpad](https://github.com/tsujan/FeatherPad) or [gedit](https://gedit-text-editor.org/) - Text Editors +* [Kate Editor](https://kate-editor.org/) - Source Code Editor +* [Geany](https://www.geany.org/) - IDE * [TextPieces](https://gitlab.com/liferooter/textpieces) - Quick Text Transformations * [Durdraw](https://durdraw.org/) - ASCII Editor * [ly](https://github.com/fairyglade/ly) - Display Manager with Console UI * [GammaStep](https://gitlab.com/chinstrap/gammastep) - Adjust Screen Temperature * [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.com/) / [GitHub](https://github.com/ollama/ollama) / [Discord](https://discord.gg/ollama) or [Alpaca](https://jeffser.com/alpaca/) - Run LLMs on Linux +* [Alpaca](https://jeffser.com/alpaca/) - Run LLMs on Linux * [nyrna](https://nyrna.merritt.codes) - Suspend Apps / Games * [Solaar](https://github.com/pwr-Solaar/Solaar) - Logitech Device Manager * [bluetuith](https://github.com/darkhz/bluetuith) - Bluetooth Manager -* [QR Scan](https://github.com/sayanarijit/qrscan) - QR Code Scanner * [libimobiledevice](https://libimobiledevice.org) - Communicate with iOS Devices -* [Meteo](https://gitlab.com/bitseater/meteo) - Weather App -* [Client Evolution](https://help.gnome.org/users/evolution/stable/) or [dLine](https://github.com/jazz-it/dline) - Calendars -* [todo](https://github.com/sioodmy/todo/) or [Planify](https://github.com/alainm23/planify) - To-Do Apps -* [Timestrap](https://timestrap.bythewood.me/) or [Mindfulness at the Computer](https://fswb.codeberg.page/mindfulness-at-the-computer/) - Productivity Managers -* [SafeEyes](https://slgobinath.github.io/SafeEyes/) - Break Reminders -* [dijo](https://github.com/oppiliappan/dijo) - Activity Tracker * [Linux-PowerToys](https://github.com/domferr/Linux-PowerToys) - PowerToys for Linux * [Railway](https://flathub.org/apps/de.schmidhuberj.DieBahn) - Travel Info Manager * [Wike](https://github.com/hugolabe/Wike) - Wikipedia App * [Komikku](https://valos.gitlab.io/Komikku/), [Suwayomi-VaadinUI](https://github.com/Suwayomi/Suwayomi-VaadinUI) or [Manga Reader](https://flathub.org/apps/com.georgefb.mangareader) - Manga Readers * [ABS FLutter](https://github.com/Vito0912/abs_flutter) - Self-Hosted Audiobook Server -* [Mako](https://github.com/emersion/mako), [dunst](https://dunst-project.org/) - Customizable Notification Daemon / [GitHub](https://github.com/dunst-project/dunst) +* [Mako](https://github.com/emersion/mako) or [dunst](https://dunst-project.org/) / [GitHub](https://github.com/dunst-project/dunst) - Customizable Notification Daemon * [Eloquent](https://flathub.org/apps/re.sonny.Eloquent/) or [DidYouMean](https://github.com/hisbaan/didyoumean) - Grammar Check Apps * [KTouch](https://apps.kde.org/ktouch/), [typer](https://github.com/maaslalani/typer) or [Toipe](https://github.com/Samyak2/toipe) - Typing Practice @@ -132,11 +132,10 @@ ## ▷ Software Sites -* 🌐 **[Rim's Linux Wiki](https://rlw.pages.dev/)**, [2](https://rimswiki.xyz/) - Linux Software / Tool Index / [Discord](https://discord.gg/pQVYgjzM3w) * 🌐 **[ArchWiki App Sites](https://wiki.archlinux.org/title/List_of_applications)** or **[Ultimate Cheatsheet](https://gist.github.com/bgoonz/be5c5be77169ef333b431bc37d331176)** - Linux Software / Site Index -* 🌐 **[Awesome Linux](https://luong-komorebi.github.io/Awesome-Linux-Software/)** - FOSS Linux Software +* 🌐 **[Awesome Linux Software](https://luong-komorebi.github.io/Awesome-Linux-Software/)** - FOSS Linux Software * 🌐 **[Awesome KDE](https://github.com/francoism90/awesome-kde)** - FOSS KDE Software -* 🌐 **[Awesome Gnome](https://github.com/Kazhnuz/awesome-gnome)** - FOSS GNOME Software +* 🌐 **[Awesome GNOME](https://github.com/Kazhnuz/awesome-gnome)** - FOSS GNOME Software * 🌐 **[FOSS Software Packages](https://en.wikipedia.org/wiki/List_of_free_and_open-source_software_packages)** - FOSS Software Packages Index * ⭐ **[Kapital Sin](https://www.kapitalsin.com/forum/index.php?board=5.0)** / Use [Translator](https://github.com/FilipePS/Traduzir-paginas-web#install) * ⭐ **[The Book of Secret Knowledge](https://github.com/trimstray/the-book-of-secret-knowledge)** @@ -144,37 +143,33 @@ * [Awesome Linux Minimalism](https://github.com/MindPatch/awesome-linux-minimalism) - 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 -* [LinuxAlt](https://www.linuxalt.com/) -* [Plan9Port](https://9fans.github.io/plan9port/) / [GitHub](https://github.com/9fans/plan9port) +* [Rim's Linux Wiki](https://rlw.pages.dev/), [2](https://rimswiki.xyz/) - Linux Software / Tool Index / [Discord](https://discord.gg/pQVYgjzM3w) +* [KDE Applications](https://apps.kde.org/) or [KDE Store](https://store.kde.org/browse/) - KDE Apps & Themes * [Flatpak](https://flatpak.org/) or [Flathub](https://flathub.org/) - Flatpak App Repositories * [SnapCraft](https://snapcraft.io/store) - Snap Repository -* [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 +* [Nix](https://nixos.org/), [AppImagePool](https://github.com/prateekmedia/appimagepool), [Zap](https://zap.srev.in) / [GitHub](https://github.com/srevinsaju/zap), [pkgx](https://pkgx.sh/) / [GitHub](https://github.com/pkgxdev/pkgx), [AM](https://github.com/ivan-hc/AM) or [Homebrew](https://brew.sh/) - Package Managers * [cheat.sh](http://cheat.sh/) - App Repos / [GitHub](https://github.com/chubin/cheat.sh) * [AppImageHub](https://www.appimagehub.com/), [AppImages](https://appimage.github.io/) or [Get AppImage](https://g.srev.in/get-appimage/) - Download Appimages * [Apps for GNOME](https://apps.gnome.org/) - GNOME Apps * [emplace](https://github.com/tversteeg/emplace) - System Package Sync -* [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 *** ## ▷ Linux System -* 🌐 **[Window Manager Index](https://wiki.archlinux.org/title/Window_manager)** - List of Window Managers * 🌐 **[Hardware for Linux](https://linux-hardware.org/)** - Linux Hardware Compatibility Database / [Forum](https://forum.linux-hardware.org/) / [GitHub](https://github.com/linuxhw/) -* 🌐 **[Hardware for BSD](https://bsd-hardware.info/)** - BSD Hardware Compatibility Database / [GitHub](https://github.com/bsdhw/) * ⭐ **[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 * [Impression](https://gitlab.com/adhami3310/Impression) - Create Bootable USB Linux Drives * [anuraOS](https://github.com/MercuryWorkshop/anuraOS) / [Instance](https://anura.pro/) - Linux Browser Emulator * [SysmonForLinux](https://github.com/microsoft/SysmonForLinux) - Monitor / Log System Activity +* [htop](https://htop.dev/) or [Zenith](https://github.com/bvaisvil/zenith) - Interactive Process Viewers * [Webmin](https://webmin.com/) - Web-Based System Admin Tool / [GitHub](https://github.com/webmin/webmin) * [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 -* [picom](https://github.com/yshui/picom) - Compositor for standalone X11 Window Managers * [keyd](https://github.com/rvaiya/keyd) or [xremap](https://github.com/xremap/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 @@ -182,17 +177,15 @@ * [Fan Control](https://github.com/wiiznokes/fan-control) - Fan Controller * [winapps](https://github.com/Fmstrat/winapps) - Run Windows Apps on Linux * [Teleport](https://teleportsite.pages.dev/) - Windows App Compatibility Analyzer -* [NetBoot](https://netboot.xyz/) - Boot Linux Distros +* [NetBoot](https://netboot.xyz/) - Boot Linux Distros / Network Boot * [CloverBootloader](https://github.com/CloverHackyColor/CloverBootloader/) - Windows, Mac & Linux Bootloader / [Config](https://mackie100projects.altervista.org/) * [zfsBootMenu](https://docs.zfsbootmenu.org/) - ZFS Bootloader +* [Waycheck](https://gitlab.freedesktop.org/serebit/waycheck) - Lists Protocols Implemented by a Wayland Compositor * [Linux Heads](https://osresearch.net/) - Minimal CoreBoot / [GitHub](https://github.com/linuxboot/heads) +* [coreboot](https://coreboot.org/) or [Libreboot](https://libreboot.org/) - Replace Proprietary BIOS/UEFI Firmware * [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/) / [GitHub](https://github.com/LibreELEC/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) * [DistroSea](https://distrosea.com/) - Cloud Virtual Machine / Allows Browsers -* [Boxes](https://wiki.gnome.org/Apps/Boxes) - Virtual Machine Manager * [Linux-KVM](https://www.linux-kvm.org/page/Downloads) - Virtualization Kernel module * [WebVM](https://webvm.io/) - Browser Virtual Machine / [Discord](https://discord.gg/yTNZgySKGa) / [GitHub](https://github.com/leaningtech/webvm) * [OSX-KVM](https://github.com/kholia/OSX-KVM), [OneClick-macOS-Simple-KVM](https://oneclick-macos-simple-kvm.notaperson535.is-a.dev/) or [macOS-Simple-KVM](https://github.com/foxlet/macOS-Simple-KVM) - macOS Virtual Machines @@ -200,9 +193,7 @@ * [Kernel Map](https://makelinux.github.io/kernel/map/) - Interactive Linux Kernel Map * [KernelNewbies](https://kernelnewbies.org/) - Kernel Developer Guides * [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 @@ -217,7 +208,6 @@ * [MultiPlex](https://github.com/pojntfx/multiplex) - Torrent Watch Party / Use VPN * [MPV Shim](https://github.com/iwalton3/plex-mpv-shim) - Cast Plex to MPV * [Gromit MPX](https://github.com/bk138/gromit-mpx) - Screen Annotation -* [Spectacle](https://apps.kde.org/spectacle/) - Screen Recorder / Clipping * [AV Linux](https://www.bandshed.net/avlinux/) - Video / Audio Editor * [REAL Video Enhancer](https://github.com/TNTwise/REAL-Video-Enhancer) - Video Upscaling * [4KTUBE](https://github.com/rishabh3354/4KTUBE) or [Video Downloader](https://github.com/Unrud/video-downloader) - Video Downloaders @@ -233,29 +223,27 @@ ## ▷ Linux Audio * 🌐 **[Awesome Linux Audio](https://gitlab.com/nodiscc/awesome-linuxaudio)** - Live Audio Resources -* ⭐ **[SpotX-Bash](https://github.com/SpotX-Official/SpotX-Bash)**, [Spicetify](https://spicetify.app/), [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)** or [spotify-adblock](https://github.com/abba23/spotify-adblock) - Spotify Adblockers +* ⭐ **[Spicetify](https://spicetify.app/)** - Spotify Themes & Plugins / [Addons](https://github.com/rxri/spicetify-extensions), [2](https://github.com/3raxton/spicetify-custom-apps-and-extensions) / [Note](https://pastebin.com/gAbebbbJ) * ⭐ **[SongRec](https://github.com/marin-m/SongRec)** or [Mousai](https://github.com/SeaDve/Mousai) - Song Identifiers -* [puddletag](https://docs.puddletag.net/) / [GitHub](https://github.com/puddletag/puddletag) - Metadata Organizer +* [puddletag](https://docs.puddletag.net/) - Metadata Organizer / [GitHub](https://github.com/puddletag/puddletag) * [Tidal Hi-Fi](https://github.com/Mastermindzh/tidal-hifi) - Hi-Fi Tidal for Linux * [cmus](https://cmus.github.io/) - Audio Player -* [Tauon Music Box](https://tauonmusicbox.rocks/) - Audio Player -* [Lollypop](https://wiki.gnome.org/Apps/Lollypop), [2](https://gitlab.gnome.org/World/lollypop) - Audio Player -* [Audacious](https://audacious-media-player.org/) - Audio Player -* [Rhythmbox](https://wiki.gnome.org/Apps/Rhythmbox) - Audio Player +* [Tauon Music Box](https://tauonmusicbox.rocks/) - Audio Player / [GitHub](https://github.com/Taiko2k/Tauon) / [Discord](https://discord.com/invite/v4EmhES) +* [Lollypop](https://gitlab.gnome.org/World/lollypop) - Audio Player +* [Audacious](https://audacious-media-player.org/) - Audio Player / [GitHub](https://github.com/audacious-media-player) * [Amberol](https://gitlab.gnome.org/World/amberol) - Audio Player -* [Subsonic](https://github.com/twostraws/Subsonic) - Audio Player / [Import Spotify](https://github.com/blastbeng/spotisub) -* [Fooyin](https://www.fooyin.org/) / [GitHub](https://github.com/fooyin/fooyin) - Audio Player +* [Fooyin](https://www.fooyin.org/) - Audio Player / [GitHub](https://github.com/fooyin/fooyin) * [g4music](https://gitlab.gnome.org/neithern/g4music) - 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), [ytermusic](https://github.com/ccgauche/ytermusic/) or [Monophony](https://gitlab.com/zehkira/monophony) - YouTube Audio Clients * [MOC](http://moc.daper.net/) or [Kew](https://github.com/ravachol/kew) - TUI Audio Players -* [Monophony](https://gitlab.com/zehkira/monophony) - YouTube Music Client -* [ytermusic](https://github.com/ccgauche/ytermusic/) - YouTube Music Downloader * [Deezer Linux](https://github.com/aunetx/deezer-linux) or [DZR](https://github.com/yne/dzr) - Deezer Clients * [MusicPod](https://github.com/ubuntu-flutter-community/musicpod) - Podcast / Radio Player * [Shortwave](https://flathub.org/apps/de.haeckerfelix.Shortwave) or [QMPlay2](https://github.com/zaps166/QMPlay2) - Radio Players * [HeadsetControl](https://github.com/Sapd/HeadsetControl) - Headset Settings Manager -* [Pipewire](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 Multimedia API](https://pipewire.org/) - Improved Video / Audio Handling / [Plugins](https://github.com/wwmm/easyeffects) +* [Werman](https://github.com/werman/noise-suppression-for-voice) or [NoiseTorch](https://github.com/noisetorch/NoiseTorch) - Noise Suppression Software * [Qtractor](https://qtractor.org/) - Audio Editor * [Calf Studio Gear](https://calf-studio-gear.org/) - Audio Production Plugins * [Ensembles](https://github.com/ensemblesaw/ensembles-app) - Musical Performance Arranger @@ -266,10 +254,9 @@ *** -## ▷ Linux Images +## ▷ Linux Image * ⭐ **[Flameshot](https://flameshot.org/)** or [Scrot](https://github.com/resurrecting-open-source-projects/scrot) - Screenshot Tools -* [photoshopCClinux](https://github.com/Gictorbit/photoshopCClinux) - Linux Photoshop Installer * [v4l2loopback](https://github.com/v4l2loopback/v4l2loopback) - Create Virtual Cameras * [Drawing](https://maoschanz.github.io/drawing/) - Drawing App * [Feh](https://feh.finalrewind.org/) or [NSXIV](https://github.com/nsxiv/nsxiv) - Image Viewer @@ -281,9 +268,19 @@ *** +## ▷ Productivity / Calendars + +* [todo](https://github.com/sioodmy/todo/) or [Planify](https://github.com/alainm23/planify) - To-Do Apps +* [Timestrap](https://timestrap.bythewood.me/) or [Mindfulness at the Computer](https://fswb.codeberg.page/mindfulness-at-the-computer/) - Productivity Managers +* [Client Evolution](https://help.gnome.org/users/evolution/stable/) or [dLine](https://github.com/jazz-it/dline) - Calendars +* [Meteo](https://gitlab.com/bitseater/meteo) - Weather App +* [SafeEyes](https://slgobinath.github.io/SafeEyes/) - Break Reminders +* [dijo](https://github.com/oppiliappan/dijo) - Activity Tracker + +*** + ## ▷ Linux Gaming -* 🌐 **[Awesome-ttygames](https://github.com/ligurio/awesome-ttygames)** - Unix ASCII Games * 🌐 **[Are We Anti-Cheat Yet?](https://areweanticheatyet.com/)** - Anti-Cheat Game Database / GNU/Linux & Wine/Proton Compatibility * ⭐ **[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 / [Steam Extension](https://github.com/Trsnaqe/protondb-community-extension) @@ -293,8 +290,9 @@ * ⭐ **[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 * ⭐ **[johncena141](https://1337x.to/user/johncena141/)** - Linux Games / [Search](https://games.melroy.org/) / [Support](https://gitlab.com/jc141x/portal) -* [GameHub](https://tkashkin.github.io/projects/gamehub/), [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) - Game Libraries / Launchers * [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) +* [Native Linux Games](https://rentry.co/FMHYBase64#native-linux-games) - Linux Games * [winesapOS](https://github.com/winesapOS/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) * [wine-wayland](https://github.com/varmd/wine-wayland) - Play DX9/DX11 / Vulkan Games @@ -310,18 +308,18 @@ * [Steam for Linux](https://github.com/ValveSoftware/steam-for-linux) - Steam Linux Beta Issue Tracker * [HeroicGamesLauncher](https://heroicgameslauncher.com/) - Epic Games Launcher / [GitHub](https://github.com/Heroic-Games-Launcher/HeroicGamesLauncher) * [Minigalaxy](https://sharkwouter.github.io/minigalaxy/) - GOG Client +* [Online-Fix Linux](https://github.com/ZzEdovec/onlinefix-linux) - Launch Games w/ Online-Fix Patches * [Sober](https://sober.vinegarhq.org/) - Roblox Linux Port / [Vinegar (Studio Only)](https://vinegarhq.org/) * [Limo](https://github.com/limo-app/limo) - Nexus Mods Manager for Linux -* [NVBurner](https://github.com/iloveichigo/NVBurner) or [CoreCTRL](https://gitlab.com/corectrl/corectrl) - Overclocking Tool +* [NVBurner](https://github.com/iloveichigo/NVBurner) or [CoreCtrl](https://gitlab.com/corectrl/corectrl) - Overclocking Tool * [dxvk](https://github.com/doitsujin/dxvk) - D3D9, D3D10 and D3D11 for Linux / Wine * [VKBasAlt](https://github.com/DadSchoorse/vkBasalt) - Game Post Processing Layer * [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 * [LibreGaming](https://github.com/Ahmed-Al-Balochi/LibreGaming) - Linux Game Package Downloader * [PortMaster](https://portmaster.games/) - Port Games to Linux Handheld Devices / [Discord](https://discord.gg/JxYBp9HTAY) -* [Anime Game Launcher](https://github.com/an-anime-team/an-anime-game-launcher) - Genshin Impact Launcher / [Discord](https://discord.gg/ck37X6UWBp) * [Gameboy.live](https://github.com/HFO4/gameboy.live) - Terminal Game Boy Emulator -* [QuickPassthrough](https://github.com/HikariKnight/quickpassthrough) - Simplified Qemu GPU Passthrough +* [QuickPassthrough](https://github.com/HikariKnight/quickpassthrough) - Simplified QEMU GPU Passthrough *** @@ -348,7 +346,7 @@ * [Openconnect VPN Server](https://ocserv.gitlab.io/www/index.html) - Linux SSL VPN Server * [DSVPN](https://github.com/jedisct1/dsvpn) - Self-Hosted VPN * [wireguird](https://github.com/UnnoTed/wireguird) - WireGuard GTK GUI -* [Netbird](https://github.com/netbirdio/netbird) or [vnStat](https://github.com/vergoh/vnstat) - Network Monitors +* [vnStat](https://github.com/vergoh/vnstat) - Network Monitors * [Howdy](https://github.com/boltgolt/howdy) - Linux Facial Authentication * [USBGuard](https://github.com/USBGuard/usbguard) - Implement USB Device Authorization Policies * [ShuffleStacks](https://shufflecake.net/) - Create Hidden Volumes @@ -363,7 +361,7 @@ ## ▷ Linux Internet -* ⭐ **[qBittorrent](https://github.com/qbittorrent/qBittorrent/wiki/Installing-qBittorrent#linux)** / [Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/torrent#wiki_.25B7_qbittorrent_tools), **[rTorrent](https://rakshasa.github.io/rtorrent/)** / [2](https://github.com/rakshasa/rtorrent), [Fragments](https://apps.gnome.org/en/Fragments/), [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/torrent#wiki_.25B7_qbittorrent_tools), **[rTorrent](https://rakshasa.github.io/rtorrent/)** / [2](https://github.com/rakshasa/rtorrent), [Fragments](https://apps.gnome.org/Fragments/), [BitFlu](https://bitflu.workaround.ch/), [kTorrent](https://apps.kde.org/ktorrent/) / [2](https://invent.kde.org/network/ktorrent) - Linux Torrent Clients * ⭐ **[Soulseek](https://www.slsknet.org)** - File Sharing App * ⭐ **[Linux WiFi Hotspot](https://github.com/lakinduakash/linux-wifi-hotspot)** - Create WiFi Hotspots * [RuTorrent](https://github.com/Novik/ruTorrent) or [flood](https://flood.js.org/) - RTorrent Web Frontend @@ -374,12 +372,11 @@ * [browsh](https://www.brow.sh/) - Text-Based Browser * [ElectronMail](https://github.com/vladimiry/ElectronMail), [Claws Mail](https://www.claws-mail.org/) or [dodo](https://github.com/akissinger/dodo) - Email Clients * [iRedMail](https://www.iredmail.org/), [Docker Mailserver](https://docker-mailserver.github.io/docker-mailserver/edge/), [UnInbox](https://github.com/un/inbox) or [Mail-in a Box](https://mailinabox.email/) - Self-Hosted Email Servers -* [Akregator](https://apps.kde.org/akregator/) - RSS Feed Reader -* [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 +* [Akregator](https://apps.kde.org/akregator/), [NewsBoat](https://newsboat.org/), [NewsFlash](https://gitlab.com/news-flash/news_flash_gtk), [Photon](https://git.sr.ht/~ghost08/photon) or [gorss](https://github.com/Lallassu/gorss) - RSS Readers +* [Seahorse](https://gitlab.gnome.org/GNOME/seahorse) - GNOME 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 -* [easy-google-drive-downloader](https://github.com/mzramna/easy-google-drive-downloader) or [GDown](https://github.com/wkentaro/gdown) - Google Drive Downloader +* [GDown](https://github.com/wkentaro/gdown) - Google Drive Downloader * [google-drive-ocamlfuse](https://github.com/astrada/google-drive-ocamlfuse) - Mount Google Drive * [maestral](https://maestral.app/) - Dropbox Client * [openmediavault](https://www.openmediavault.org/) / [GitHub](https://github.com/openmediavault/openmediavault/) or [Linux Server](https://github.com/ZizzyDizzyMC/linx-server/) - Self-Hosted Cloud Storage @@ -389,7 +386,6 @@ * [Linux Router](https://github.com/garywill/linux-router) - Set Linux as Router * [1Panel](https://1panel.pro/) - Linux Server Management Tool / [GitHub](https://github.com/1Panel-dev/1Panel) * [Proxmox](https://www.proxmox.com/en/) - Self-Hosted Server Tools -* [Wayland](https://wayland.freedesktop.org/) - Linux Display Server Protocol / [Tools](https://wearewaylandnow.com/) * [EasyPanel](https://easypanel.io/) - Server Control Panel * [Netcat](https://rentry.co/Netcat) - Networking Tool * [Free Cloud Linux Server](https://rentry.co/FMHYBase64#free-cloud-linux-server) - Free Cloud Server Guide @@ -407,7 +403,8 @@ * [SeedSync](https://github.com/ipsingh06/seedsync) - Sync your Seedbox * [GNU Social](https://gnusocial.network/) - Self-Hosted Social Networking Platform * [Teams for Linux](https://github.com/IsmaelMartinez/teams-for-linux) - Collaboration Platform -* [Adium](https://adium.im/), [Polari](https://wiki.gnome.org/Apps/Polari), [Irssi](https://github.com/irssi/irssi) or [Weechat](https://weechat.org/) - IRC Clients +* [mx moment](https://mx-moment.xyz/) - Encrypted Chat Client +* [Adium](https://adium.im/), [Polari](https://apps.gnome.org/Polari/) / [GitLab](https://gitlab.gnome.org/GNOME/polari), [Irssi](https://github.com/irssi/irssi) or [Weechat](https://weechat.org/) - IRC Clients * [Dino](https://dino.im/) - XMPP Client * [gurk-rs](https://github.com/boxdot/gurk-rs) - Signal Client * [ZapZap](https://rtosta.com/zapzap-web/) - WhatsApp Client / [GitHub](https://github.com/rafatosta/zapzap) @@ -423,7 +420,7 @@ * 🌐 **[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/com.hunterwittenborn.Celeste) / [2](https://snapcraft.io/celeste) / [GitHub](https://github.com/hwittenborn/celeste), [Cattail](https://github.com/nerdyslacker/cattail) or [Sharing](https://github.com/parvardegr/sharing) - File Sync / Transfer -* ⭐ **[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), [Filelight](https://apps.kde.org/en-gb/filelight/), [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)**, **[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), [Filelight](https://apps.kde.org/en-gb/filelight/), [dut](https://codeberg.org/201984/dut), [gdu](https://github.com/dundee/gdu) or [NCDU](https://dev.yorhel.nl/ncdu) - Terminal File Managers / Disk Usage Analyzers * [ANGRYsearch](https://github.com/DoTheEvo/ANGRYsearch), [gocatcli](https://github.com/deadc0de6/gocatcli/), [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 * [Dolphin](https://userbase.kde.org/Dolphin) or [SpaceFM](https://ignorantguru.github.io/spacefm/) - File Managers * [Collector](https://mijorus.it/projects/collector/) - File Drag & Drop @@ -447,11 +444,10 @@ ## ▷ Android on Linux * ⭐ **[WayDroid](https://waydro.id/)** - Containerized Android on Linux / [GitHub](https://github.com/waydroid) / [Scripts](https://github.com/casualsnek/waydroid_script) -* [Redroid](https://github.com/remote-android/redroid-doc) - Containerized Android on Linux -* [Docker-Android](https://github.com/budtmo/docker-android) - Containerized Android on Linux +* [Redroid](https://github.com/remote-android/redroid-doc) or [Docker-Android](https://github.com/budtmo/docker-android) - Containerized Android on Linux * [Genymotion](https://www.genymotion.com/) - Android Emulator -* [Android Studio](https://developer.android.com/studio) - IDE with built-in Android Emulator -* [Bliss OS](https://blissos.org/) or [Android-x86](https://www.android-x86.org/) - Android-based OS for PC +* [Android Studio](https://developer.android.com/studio) - IDE with Built-in Android Emulator +* [Bliss OS](https://blissos.org/) or [Android-x86](https://www.android-x86.org/) - Android-Based OS for PC *** @@ -460,9 +456,9 @@ * 🌐 **[Awesome Shell](https://github.com/alebcay/awesome-shell)**, [tldr](https://tldr.sh/) / [GitHub](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 * 🌐 **[The Terminal Directory](https://termui.sh/)** - Terminal Emulators -* ↪️ **[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/), [Ghostty](https://ghostty.org/), [yakuake](https://apps.kde.org/yakuake/), [emacs-eat](https://codeberg.org/akib/emacs-eat) or [tabby](https://tabby.sh/) - Linux Terminals Emulators -* ⭐ **[shell_gpt](https://github.com/TheR1D/shell_gpt)** or [shellgpt](https://github.com/jiacai2050/my-works/tree/main/shellgpt) - AI Terminal Chatbot / GPT +* ⭐ **[zsh](https://www.zsh.org/)**, **[bash](https://www.gnu.org/software/bash/)**, [fish](https://fishshell.com/), [Elvish](https://elv.sh/), [Es](https://wryun.github.io/es-shell/), [PowerShell](https://github.com/powershell/powershell), [Ion](https://gitlab.redox-os.org/redox-os/ion), [Xonsh](https://xon.sh/) or [Nushell](https://www.nushell.sh/) - Command Line Shells +* ⭐ **zsh Tools** - [Plugins](https://github.com/unixorn/awesome-zsh-plugins) / [Customization](https://ohmyz.sh/) / [Theme](https://github.com/romkatv/powerlevel10k) / [Auto Setup](https://github.com/gustavohellwig/gh-zsh) / [Rich Framework](https://github.com/sorin-ionescu/prezto) +* ⭐ **[Alacritty](https://alacritty.org)**, **[Kitty](https://sw.kovidgoyal.net/kitty/overview/)**, **[Wezterm](https://wezterm.org)** / [GitHub](https://github.com/wezterm/wezterm), [foot](https://codeberg.org/dnkl/foot), [Simple Terminal](https://st.suckless.org/), [Wave](https://www.waveterm.dev/), [Ghostty](https://ghostty.org/), [yakuake](https://apps.kde.org/yakuake/), [emacs-eat](https://codeberg.org/akib/emacs-eat) or [tabby](https://tabby.sh/) - Linux Terminal Emulators * [Liquidprompt](https://github.com/liquidprompt/liquidprompt) - Bash / Zsh Prompt * [utils](https://github.com/Loupeznik/utils) or [UsefulLinuxShellScripts](https://github.com/jackrabbit335/UsefulLinuxShellScripts) - Linux Shell Tool Scripts * [Gum](https://github.com/charmbracelet/gum) - Shell Script Creator @@ -470,41 +466,76 @@ * [shell-scripting-tutorial](https://github.com/techarkit/shell-scripting-tutorial) - Shell Scripting Tutorial * [Command Line Guide](https://github.com/jlevy/the-art-of-command-line), [ManKier](https://www.mankier.com/) or [LinuxCommand](https://www.linuxcommand.org/tlcl.php) - Command-Line Lessons * [Bash Crawl](https://gitlab.com/slackermedia/bashcrawl) - Linux Command Learning Game -* [Guillotine](https://gitlab.com/ente76/guillotine/) - Execute Commands via Right Menu / Gnome Extension * [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.dev/) - Bash Frameworks * [zx](https://google.github.io/zx/) or [dax](https://github.com/dsherret/dax) - Write Complex Scripts * [Basher](https://www.basher.it/) or [bpkg](https://bpkg.sh/) - Bash Package Manager -* [XTerm](https://invisible-island.net/xterm/) - X Window System Terminal Emulator -* [Extension Manager](https://mattjakeman.com/apps/extension-manager) - GNOME Shell Extensions * [Distrobox](https://distrobox.it/) - Use Distros via Terminal -* [htop](https://htop.dev/) or [Zenith](https://github.com/bvaisvil/zenith) - Interactive Process Viewers -* [eza](https://eza.rocks/) - Modern ls replacement * [explainshell.com](https://explainshell.com/) - Match Command-Line Arguments to Help Text -* [PowerShell](https://github.com/powershell/powershell) - PowerShell * [Tmux](https://github.com/tmux/tmux) - Terminal Multiplexer / [Cheatsheet](https://tmuxcheatsheet.com/) * [Zellij](https://zellij.dev/) - Terminal Workspace * [asciinema](https://asciinema.org/) - Terminal Recorder -* [fzf](https://github.com/junegunn/fzf) or [skim](https://github.com/skim-rs/skim) - Fuzzy Finders * [atuin](https://atuin.sh/) - Shell History Management / [GitHub](https://github.com/atuinsh/atuin) * [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 *** -## ▷ Ricing / Customization +# ► Ricing / Customization -* 🌐 **[Awesome Ricing](https://github.com/fosslife/awesome-ricing)** - Linux Ricing Resources -* ↪️ **[Linux Themes](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_linux_themes)** - Themes for Linux +* 🌐 **[Awesome Ricing](https://github.com/fosslife/awesome-ricing)** or **[Awesome Linux Ricing](https://github.com/avtzis/awesome-linux-ricing)** - Linux Ricing Resources * ⭐ **[Elkowar's Wacky Widgets](https://elkowar.github.io/eww)** or **[Aylur's GTK Shell](https://github.com/Aylur/ags)** - Widgeting Systems -* [wpgtk](https://deviantfero.github.io/wpgtk) - Fully Customizable Unix Color Schemer +* ⭐ **[/r/unixporn](https://unixporn.github.io/)** - Ricing Community / [Subreddit](https://reddit.com/r/unixporn) + +*** + +## ▷ Desktop Environment + +* [Desktop Environment Comparison](https://eylenburg.github.io/de_comparison.htm) +* [Extension Manager](https://mattjakeman.com/apps/extension-manager) - GNOME Shell Extension Manager +* [Material Shell](https://material-shell.com/) or [Forge](https://github.com/forge-ext/forge) - GNOME Tiling Extension +* [Pop!_OS Shell](https://github.com/pop-os/shell) - Pop-Shell for GNOME +* [Guillotine](https://gitlab.com/ente76/guillotine/) - Execute Commands from a Customizable Menu / GNOME Extension +* [Polonium](https://zeroxoneafour.github.io/polonium/) - KDE6 Tiling Manager Extension / [GitHub](https://github.com/zeroxoneafour/polonium) +* [Hardcode Tray](https://github.com/bilelmoussaoui/Hardcode-Tray) - Hardcoded Tray Icon Fix + +*** + +## ▷ Window Managers + +* 🌐 **[Awesome Wayland](https://github.com/rcalixte/awesome-wayland)** - Wayland Resources +* 🌐 **[Window Manager Index](https://wiki.archlinux.org/title/Window_manager)** - List of Window Managers +* 🌐 **[Wayland Compositor Index](https://wiki.archlinux.org/title/Wayland#Compositors)** - List of Wayland Compositors +* 🌐 **[We Are Wayland Now](https://wearewaylandnow.com/)** - Wayland Ecosystem Components / [GitHub](https://github.com/gianklug/wearewaylandnow) +* ⭐ **[i3wm](https://i3wm.org)**, [BSPWM](https://github.com/baskerville/bspwm) or [herbstluftwm](https://herbstluftwm.org) - Tiling window manager +* ⭐ **[awesomewm](https://awesomewm.org)** / [GitHub](https://github.com/awesomeWM/awesome), **[xmonad](https://xmonad.org)**, [Qtile](https://qtile.org/) or [dwm](https://dwm.suckless.org) - Dynamic Window Managers +* ⭐ **[Hyprland](https://hyprland.org/)** - Wayland Compositor [Resources](https://github.com/hyprland-community/awesome-hyprland) / [Arch Wiki](https://wiki.archlinux.org/title/Hyprland) / [Simple Config](https://github.com/mylinuxforwork/dotfiles), [2](https://end-4.github.io/dots-hyprland-wiki/en/) +* ⭐ **[niri](https://github.com/YaLTeR/niri)** - Wayland Compositor +* ⭐ **[Sway](https://github.com/swaywm/sway)** or [SwayFx](https://github.com/WillPower3309/swayfx) - i3-compatible Wayland Compositor / [Arch Wiki](https://wiki.archlinux.org/title/Sway) +* [river](https://github.com/riverwm/river/) - Wayland Compositor +* [LabWC](https://github.com/labwc/labwc) - Wayland Compositor +* [wayfire](https://github.com/WayfireWM/wayfire/) - Wayland Compositor +* [picom](https://github.com/yshui/picom) - Compositor for Standalone X11 Window Managers / [Docs](https://picom.app/) / [GitHub](https://github.com/yshui/picom) + +*** + +## ▷ Linux Themes + +* 🌐 **[xfce-look](https://www.xfce-look.org/)** - XFCE Linux Themes +* 🌐 **[Gnome-Look](https://www.gnome-look.org/)** - GNOME Themes +* [Pling](https://www.pling.com/s/All-Linux/) / [2](https://www.linux-apps.com/) - Linux Apps and Themes +* [Hellwal](https://github.com/danihek/hellwal) - Color Palette Generator for Ricing +* [Themix](https://github.com/themix-project/themix-gui) - Linux Themes / GUI * [Kvantum](https://github.com/tsujan/Kvantum) - Linux QT / KDE Theme Engine -* [Polybar (X11)](https://github.com/polybar/polybar) / [Themes](https://github.com/adi1090x/polybar-themes), [Iron Bar](https://github.com/JakeStanger/ironbar) (Wayland) or [Waybar](https://github.com/Alexays/Waybar) (Wayland) - Customizable Status Bars +* [nwg-look](https://github.com/nwg-piotr/nwg-look) - GTK3 Settings Editor +* [Arc](https://github.com/jnsh/arc-theme) - Transparent Linux Theme +* [Ant](https://github.com/EliverLara/Ant) - Light Linux 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 -* [XScreenSaver](https://www.jwz.org/xscreensaver/) - Linux Screensavers +* [Polybar (X11)](https://github.com/polybar/polybar) / [Themes](https://github.com/adi1090x/polybar-themes), [Iron Bar](https://github.com/JakeStanger/ironbar) (Wayland) or [Waybar](https://github.com/Alexays/Waybar) (Wayland) - Customizable Status Bars * [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) or [Hidamari](https://github.com/jeffshee/hidamari) - Use Videos as Animated Wallpapers * [wallpaper-engine-kde-plugin](https://github.com/catsout/wallpaper-engine-kde-plugin) - Wallpaper Engine KDE Plugin +* [tint](https://github.com/ashish0kumar/tint) - Convert Wallpapers to Match Color Scheme / [GUI](https://github.com/lighttigerXIV/catppuccinifier) * [Polychromatic](https://polychromatic.app/) or [OpenRazer](https://openrazer.github.io/) - Linux System Light Control * [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 @@ -519,10 +550,9 @@ * ↪️ **[Multi-Platform Readers](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/reading/#wiki_.25B7_ebook_readers)** - Ebook Reader Index * ⭐ **[gibMacOS](https://github.com/corpnewt/gibMacOS)** or [Mist](https://github.com/ninxsoft/Mist) - Download macOS * ⭐ **[NearDrop](https://github.com/grishka/NearDrop)** or [maestral](https://maestral.app/) - File Sharing Apps -* ⭐ **[shottr](https://shottr.cc/)** or [CleanShot](https://cleanshot.com/) - Screenshot Tools +* ⭐ **[shottr](https://shottr.cc/)** - Screenshot Tools * ⭐ **[Aptonic](https://aptonic.com/)** - Mac Productivity App -* [DMHY](https://github.com/yaqinking/DMHY) - Anime Torrent Autodownloader -* [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 / [GitHub](https://github.com/Dimillian/IceCubesApp) * [Sky.app](https://github.com/jcsalterego/Sky.app) - Bluesky Client * [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/) @@ -548,13 +578,13 @@ * [Agenda](https://agenda.com/) - Mac Notes Organizer / [Forum](https://agenda.community/) * [Taskpaper](https://www.taskpaper.com/) - To-Do Apps * [BibDesk](https://bibdesk.sourceforge.io/) - Bibliography Manager -* [Microsoft Office](https://rentry.co/FMHYBase64#macos-office) - Microsoft Offic for macOS +* [Microsoft Office](https://rentry.co/FMHYBase64#macos-office) - Microsoft Office for macOS * [Hammerspoon](https://www.hammerspoon.org/) or [Bunch](https://bunchapp.co/) - Desktop Automation * [MacScripter](https://www.macscripter.net/) - Automation Forum * [pongoOS](https://github.com/checkra1n/pongoOS) - Mac Pre-Boot Executor * [Later](https://getlater.app/) - Restore App Sessions / [GitHub](https://github.com/alyssaxuu/later) * [VMware](https://www.majorgeeks.com/files/details/vmware_workstation_for_windows.html) - Virtual Machine -* [Tart](https://tart.run/) - Virtual Machine Manager . [GitHub](https://github.com/cirruslabs/tart) +* [Tart](https://tart.run/) - Virtual Machine Manager / [GitHub](https://github.com/cirruslabs/tart) * [MacVim](https://macvim.org/), [CodeEdit](https://www.codeedit.app/) or [AuroraEditor](https://auroraeditor.com/) - Code Editors * [GrayJay](https://grayjay.app/desktop/) - Combines YouTube, Twitch, Rumble, etc. * [SD Buddy](https://github.com/breadthe/sd-buddy), [CHARL-E](https://www.charl-e.com/) or [Swift Core ML Diffusers](https://github.com/huggingface/swift-coreml-diffusers) - Stable Diffusion Apps @@ -569,7 +599,7 @@ * [Does It Arm?](https://doesitarm.com/) - M2 / M3 App Compatibility Chart * [SelfControlApp](https://selfcontrolapp.com/) - Website Blocker * [Typist](https://apps.apple.com/us/app/typist/id415166115?ign-mpt=uo%3D4&mt=12) - Typing Practice -* [Comet](https://apps.apple.com/us/app/comet-for-reddit/id1146204813) or [OpenArtemis](https://apps.apple.com/app/id6473462587) - Reddit Clients +* [Comet](https://apps.apple.com/us/app/comet-for-reddit/id1146204813) - Reddit Clients * [Sink It](https://apps.apple.com/us/app/sink-it-for-reddit/id6449873635) - Reddit Enhancement Extension * [Grayscale Mode](https://github.com/rkbhochalya/grayscale-mode) - Grayscale Control * [macOSicons](https://macosicons.com/) - Icons @@ -588,6 +618,7 @@ * [Macintosh Garden](https://macintoshgarden.org/) * [MacBed](https://www.macbed.com/) * [nMac](https://nmac.to/) +* [Mac App Store](https://macappstre.com/) * [Haxmac](https://haxmac.cc/) * [Pure Mac](https://www.pure-mac.com/) * [Mac Torrents](https://www.torrentmac.net/) @@ -607,13 +638,14 @@ * [Shiru](https://github.com/RockinChaos/Shiru) - Anime Torrent Streaming * [Yattee](https://github.com/yattee/yattee) - YouTube Player * [REAL Video Enhancer](https://github.com/TNTwise/REAL-Video-Enhancer) - Video Upscaling -* [Cap](https://cap.so/), [Kap](https://getkap.co) or [ScreenTimeLapse](https://github.com/wkaisertexas/ScreenTimeLapse) - Screen Recorders +* [Cap](https://cap.so/) / [GitHub](https://github.com/CapSoftware/Cap), [Kap](https://getkap.co) or [ScreenTimeLapse](https://github.com/wkaisertexas/ScreenTimeLapse) - Screen Recorders *** ## ▷ Mac Audio * ⭐ **[SpotX-Bash](https://github.com/SpotX-Official/SpotX-Bash)** or [Mac_Spotify_Adblock](https://github.com/Devanshu-17/Mac_Spotify_Adblock) - Spotify Adblockers +* ⭐ **[Spicetify](https://spicetify.app/)** - Spotify Themes & Plugins / [Addons](https://github.com/rxri/spicetify-extensions), [2](https://github.com/3raxton/spicetify-custom-apps-and-extensions) / [Note](https://pastebin.com/gAbebbbJ) * [foobar2000](https://www.foobar2000.org/mac) or [VOX Mac Music Player](https://vox.rocks/mac-music-player) - Audio Players * [Silicio](https://apps.apple.com/us/app/silicio-mini-player/id933627574) - Audio Mini Player * [Alfred Spotify Mini Player](https://alfred-spotify-mini-player.com/) - Spotify Mini Player @@ -628,11 +660,10 @@ * [Cuterdio](https://cuterdio.com/en) - 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 -* [Buzz](https://github.com/chidiwilliams/buzz) - Audio Transcription *** -## ▷ Mac Images +## ▷ Mac Image * [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 @@ -646,7 +677,6 @@ ## ▷ Mac Gaming * ⭐ **[Torrminatorr](https://forum.torrminatorr.com/)** - Mac Games -* ⭐ **[Whisky](https://getwhisky.app/)** - Automated Installer / Wrapper for Game Porting Toolkit + WINE * ⭐ **[AppleGamingWiki](https://applegamingwiki.com/)** - Mac Game Fixes / Compatibility * ⭐ **[Goldberg](https://github.com/inflation/goldberg_emulator)** - Steam Multiplayer Client Emulator * [SCNLOG](https://scnlog.me/) - Mac Games @@ -670,6 +700,7 @@ * [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 * [1Blocker](https://1blocker.com/) - DNS Adblocker +* [DNS Party](https://encrypted-dns.party/) - Encrypted DNS Profiles * [AdGuard Safari](https://adguard.com/en/adguard-safari/overview.html) - AdGuard for Safari * [wBlock](https://github.com/0xCUB3/wBlock) or [Stay](https://apps.apple.com/app/stay-for-safari/id1591620171) - Safari Adblockers * [Lockdown Privacy](https://lockdownprivacy.com/) - Block Trackers / Ads @@ -687,7 +718,7 @@ * [mac_apt](https://github.com/ydkhatri/mac_apt) - Artifact Parsing Tool * [OpenVPN](https://tunnelblick.net/) or [Passepartout](https://passepartoutvpn.app/) - VPN Tunnel * [MailTrackerBlocker](https://apparition47.github.io/MailTrackerBlocker/) - Privacy-Based Email Client -* [Damus](https://damus.io/) - Encrypted Messaging App +* [Status](https://status.app/) - Encrypted Messaging Client *** @@ -713,10 +744,9 @@ * [Conky](https://conky.cc) / [Colors](https://github.com/helmuthdu/conky_colors), [eul](https://github.com/gao-sun/eul), [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 * [Hot](https://github.com/macmade/hot) - CPU Monitor * [TaskExplorer](https://objective-see.org/products/taskexplorer.html) - Task Manager / Viewer -* [Pearcleaner](https://github.com/alienator88/Pearcleaner) - System Cleanup / Uninstallers +* [Pearcleaner](https://itsalin.com/appInfo/?id=pearcleaner) - System Cleanup / Uninstallers / [GitHub](https://github.com/alienator88/Pearcleaner) * [BetterDisplay](https://github.com/waydabber/BetterDisplay) - Display Controller * [DisplayPlacer](https://github.com/jakehilborn/displayplacer) - Dual Monitor Manager -* [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 * [Pinch](https://github.com/danqing/Pinch) - Trackpad Pinch to Zoom Gesture * [LinearMouse](https://linearmouse.app/) or [MacMouseFix](https://macmousefix.com/) - Mouse Remapping @@ -731,7 +761,7 @@ * [Macs Fan Control](https://github.com/crystalidea/macs-fan-control) - Fan Controller * [Find You](https://github.com/positive-security/find-you) - Track Bluetooth Devices * [Touché](https://redsweater.com/touche/) - Touch Bar Simulator -* [Sentinel](https://github.com/alienator88/Sentinel) - SwiftUI Gatekeeper Config GUI / macOS Only +* [Sentinel](https://github.com/alienator88/Sentinel) - SwiftUI Gatekeeper Config GUI * [USBMap](https://github.com/corpnewt/USBMap) - Map macOS USB Ports * [Actions](https://sindresorhus.com/actions) - Additional Shortcuts App Actions * [pock](https://pock.app/) - Touch Bar Widget Manager / [GitHub](https://github.com/pock/pock) @@ -753,6 +783,7 @@ * [Plash](https://sindresorhus.com/plash) - Use Website as Wallpaper * [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 +* [Magic Trace](https://github.com/janestreet/magic-trace) - Diagnose Performance Issues using Intel Processor Trace *** @@ -762,10 +793,28 @@ * ⭐ **[Readdle](https://readdle.com/documents)** - Multipurpose File Tool * [Progress](https://github.com/Xfennec/progress) - Show Copied Data Progress * [Bruji](https://www.bruji.com/) - Media Cataloging Software Suite -* [Superfile](https://github.com/yorukot/superfile) - File Explorer / Managers +* [superfile](https://superfile.netlify.app/) - Terminal File Manager / [GitHub](https://github.com/yorukot/superfile) * [OSXFuse](https://osxfuse.github.io/) - Mac File Integration -* [JDownloader](https://jdownloader.org/jdownloader2) - File Download Manager / [Debloat](https://rentry.org/jdownloader2) / [Dark Theme](https://redd.it/q3xrgj), [2](https://github.com/moktavizen/material-darker-jdownloader/) / [Dracula Theme](https://draculatheme.com/jdownloader2) +* [JDownloader](https://jdownloader.org/jdownloader2) - File Download Manager / [Debloat](https://rentry.org/jdownloader2) / [Dark Theme](https://redd.it/q3xrgj), [2](https://github.com/moktavizen/material-darker-jdownloader/) / [Dracula Theme](https://draculatheme.com/jdownloader2) / [Warning](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#jdownloader) * [Go Speed](https://gopeed.com/) - File Download Manager / [GitHub](https://github.com/GopeedLab/gopeed) / [Extension](https://github.com/GopeedLab/browser-extension) / [Plugins](https://github.com/search?q=topic%3Agopeed-extension&type=repositories) * [Progressive Downloader](https://macpsd.net/) - File Download Manager +* [eza](https://eza.rocks/) - Modern `ls` Replacement * [Transnomino](https://www.transnomino.com/) or [Riffo](https://riffo.ai/rename) - Bulk File / Folder Renaming +* [fzf](https://github.com/junegunn/fzf) or [skim](https://github.com/skim-rs/skim) - Fuzzy Finders * [FlyingCarpet](https://github.com/spieglt/FlyingCarpet) - Cross-Platform AirDrop / [Guide](https://redd.it/vthltc) + +*** + +# ► Unix-Like + +* 🌐 **[Awesome-ttygames](https://github.com/ligurio/awesome-ttygames)** - Unix ASCII Games +* 🌐 **[Awesome BSD](https://github.com/DiscoverBSD/awesome-bsd)** - BSD Resources +* 🌐 **[Hardware for BSD](https://bsd-hardware.info/)** - BSD Hardware Compatibility Database / [GitHub](https://github.com/bsdhw/) +* [UnitedBSD](https://www.unitedbsd.com/) - BSD Forum / Community +* [FreeBSD Wiki](https://wiki.freebsd.org/) - FreeBSD Wiki / Guides / [Docs](https://docs.freebsd.org/en/books/handbook/) +* [Pkgs](https://pkgs.org/) - Unix Packages / [Repology](https://repology.org/) +* [GameShell](https://github.com/phyver/GameShell) - Unix Shell Learning Game +* [Modern Unix](https://github.com/ibraheemdev/modern-unix) - Unix Shells +* [wpgtk](https://deviantfero.github.io/wpgtk) - Fully Customizable Unix Color Schemer +* [pass](https://www.passwordstore.org/) - Unix Password Manager +* [Plan9Port](https://9fans.github.io/plan9port/) - Unix Port for Plan9 Libraries + Programs / [GitHub](https://github.com/9fans/plan9port) \ No newline at end of file diff --git a/docs/miscguide.md b/docs/miscguide.md index 50059715c..083248930 100644 --- a/docs/miscguide.md +++ b/docs/miscguide.md @@ -15,15 +15,15 @@ * ⭐ **[Couleur Tweak Tips](https://ctt.cx/)** - Comprehensive Hub of Resources and Tools / [Discord](https://discord.gg/CTT) * ⭐ **[/r/InternetIsBeautiful](https://reddit.com/r/InternetIsBeautiful)** - Helpful / Fun Sites * [Track Awesome List](https://www.trackawesomelist.com/) - Daily Awesome List Updates -* [Curlie](https://curlie.org/) - Topic Directory * [ooh.directory](https://ooh.directory/) - Blog Directory +* [/danfmhy/](https://rentry.co/danfmhy/) - List of Guides by Dan * [StatsCrop](https://www.statscrop.com/websites/top-sites/), [xRanks](https://xranks.com/), [Start.me Stats](https://start.me/sites/int), [HypeStat](https://hypestat.com/), [10 Million Sites](https://www.domcop.com/top-10-million-websites) or [CuteStat](https://www.cutestat.com/) - Site Rankings & Stats * [findPWA](https://findpwa.com/), [Store.app](https://store.app/), [SaaS Discovery](https://saasdiscovery.com/) or [Electron](https://www.electronjs.org/apps) - Web App Indexes * [SmartLinks](https://smartlinks.org/index.html) - Website Directory * [OneMillionScreenshots](https://onemillionscreenshots.com/) - Website Snapshot Map +* [Data Hoarding](https://datahoarding.org/) - Data Hoarding Sites / Resources * [Archive-It](https://archive-it.org/) - Archive.org Collections * [Single Serving Sites](https://singleservingsites.cool/) - Single-Purpose Sites -* [Wikimedia](https://www.wikimedia.org/) - All Wikimedia Sources * [Clone Wars](https://gourav.io/clone-wars) - Site Clone Index / [GitHub](https://github.com/GorvGoyl/Clone-Wars) * [Open Sustainable Technology](https://opensustain.tech/) - Sustainable Tech Project Index * [OldSchoolSitesCatalogue](https://github.com/rarelygoeshere/OldSchoolSitesCatalogue) or [href.cool](https://href.cool/) - Oldschool Site Indexes @@ -33,16 +33,13 @@ * [Gazetteer of Wikis](https://meta.miraheze.org/wiki/Gazetteer_of_wikis), [Wiki Stats](https://wikistats.wmcloud.org/display.php?t=mh) or [WikiDiscover](https://meta.miraheze.org/wiki/Special:WikiDiscover) - Miraheze Wiki Indexes * [NetSplit](https://netsplit.de/) - IRC Channel Index * [Creative Commons](https://github.com/fmhy/FMHYedit/issues/1386#issuecomment-1906854653) - Creative Commons Content Sites -* [Cyberlife](https://cyberpunk-life.neocities.org/) - Cyberpunk-Related Content / Sites Index * [sourcehut](https://sr.ht/) - Public Project Index -* [ImageBoards](https://imageboards.net/) or [imageboards.json](https://github.com/ccd0/imageboards.json/blob/gh-pages/imageboards.json) - Imageboard Index *** ## ▷ Site / Tool Indexes * ⭐ **[Ripped](https://ripped.guide/)** - Piracy Index / [Discord](https://discord.ripped.guide/) -* ⭐ **[Awesome Piracy](https://shakil-shahadat.github.io/awesome-piracy/)** - Piracy Index / [GitHub](https://github.com/Shakil-Shahadat/awesome-piracy) * ⭐ **[/r/PiratedGames Megathread](https://rentry.org/pgames)** - Game Piracy Index / [Discord](https://discord.gg/dZWwhUy) * ⭐ **[CS.RIN Mega](https://cs.rin.ru/forum/viewtopic.php?f=10&t=95461)**, [2](https://csrin.org/) - Game Piracy Index * ⭐ **[privateersclub](https://megathread.pages.dev/)** - Game Piracy Index / [Discord](https://discord.gg/jz8dUnnD6Q) @@ -52,7 +49,6 @@ * [Delightful Creative Tools](https://codeberg.org/ADHDefy/delightful-creative-tools) - Media Creation Index * [refdesk.com](https://www.refdesk.com/toc.html) - Fact-checking Index * [Pixelated Pathways](https://courage-1984.github.io/pixelated-pathways/) / [Mirror](https://rentry.org/Pixelated_Pathways) - Site / Tool Index -* [Size of Cat](https://sizeof.cat/links/) - Site / Tool Index * [OSS Insight](https://ossinsight.io/) - GitHub Project Indexes * [ibiblio](https://www.ibiblio.org/) - Site / Tool Index * [unapothecary's terminal](https://unapothecary.neocities.org/websites) - Site / Tool Index @@ -71,7 +67,6 @@ * [AppRaven](https://appraven.net/) - iOS Apps * [BAEN](https://www.baen.com/catalog/category/view/s/free-library/id/2012) - Books * [FreeForStudent](https://freeforstudents.org/) - Free for Student Deals -* [Dolly Parton's Imagination Library](https://imaginationlibrary.com/) - Book Gifting Program (For Children) * [/r/FREE](https://reddit.com/r/FREE/) * [/r/eFreebies](https://reddit.com/r/eFreebies) * [/r/udemyfreebies](https://reddit.com/r/udemyfreebies) @@ -81,8 +76,8 @@ ## ▷ Free Games -* ⭐ **[Free Packages](https://steamdb.info/freepackages/)** - Mass Activate All Free Steam Games / [Guide](https://youtu.be/svbdw-pYNT8) * ⭐ **[IsThereAnyDeal](https://isthereanydeal.com/giveaways/)** - Games +* ⭐ **[Free Packages](https://steamdb.info/freepackages/)** - Mass Activate All Free Steam Games / $5 Account Min / [Guide](https://youtu.be/svbdw-pYNT8) * [Free Games Claimer](https://github.com/vogler/free-games-claimer) - Auto-Claim Free Epic, Amazon, and GOG Games * [epicgames-freegames-node](https://github.com/claabs/epicgames-freegames-node) - Auto-Claim Free Epic Games * [SteamGifts](https://www.steamgifts.com/), [Free250](https://steam250.com/price/free), [/r/FreeGamesOnSteam](https://reddit.com/r/FreeGamesOnSteam) or [SteamDB](https://steamdb.info/upcoming/free/) - Steam Games @@ -115,20 +110,21 @@ * 🌐 **[MapOfTheBest](https://mapofthebest.com/)** - Top Restaurant List * ↪️ **[Food Storage Tips](https://i.redd.it/qmcas4yuc2w81.png)** / [2](https://i.ibb.co/SKq3GT7/ca6f633c898b.png) * ⭐ **[Baking Calculators](https://bakingcalculators.com/)** - Measurement System Conversion Calculators -* ⭐ **[Grocy](https://grocy.info/)** / [Android](https://patrickzedler.com/grocy/) / [Subeddit](https://www.reddit.com/r/grocy) / [GitHub](https://github.com/grocy/grocy), [Listonic](https://new.app.listonic.com/en) or [KitchenOwl](https://kitchenowl.org/) / [GitHub](https://github.com/TomBursch/kitchenowl) - Grocery Managers +* ⭐ **[Grocy](https://grocy.info/)** / [Android](https://patrickzedler.com/grocy/) / [Subeddit](https://www.reddit.com/r/grocy) / [GitHub](https://github.com/grocy/grocy), [Listonic](https://new.app.listonic.com/en) or [KitchenOwl](https://kitchenowl.org/) / [GitHub](https://github.com/TomBursch/kitchenowl) - Grocery / Pantry Managers * ⭐ **[Sporked](https://sporked.com/)** - Packaged Food Reviews * ⭐ **[Still Tasty](https://www.stilltasty.com/)** or [EatByDate](https://www.eatbydate.com/) - Shelf Life Guides * ⭐ **[OpenTable](https://www.opentable.com/)** - Restaurant Reservation Search * [Heard.](https://heardnyc.com/) - Anonymous Food & Restaurant Reviews / [Subreddit](https://www.reddit.com/r/KitchenConfidential/) * [FoodExpirationDates](https://github.com/lorenzovngl/FoodExpirationDates) or [Fridgey](https://f-droid.org/packages/lying.fengfeng.foodrecords/) - Food Expiration Trackers -* [Cheese.com](https://cheese.com/) - Cheese Resources -* [Crispy Creations](https://rentry.co/crispycreations) - Potato Chip Info / Guides +* [Cook Well](https://www.cookwell.com/) - Cooking Lessons / Science * [Parsnip](https://www.parsnip.ai/) - Cooking Lessons / Skill Tracking App * [/r/Cooking](https://reddit.com/r/Cooking) - Cooking Discussion / Tips * [/r/AskCulinary](https://reddit.com/r/AskCulinary) - Get Cooking Advice +* [Cheese.com](https://cheese.com/) - Cheese Resources +* [Crispy Creations](https://rentry.co/crispycreations) - Potato Chip Info / Guides * [FermenThings](https://wiki.fermenthings.be/) - Fermentation Wiki +* [SaltYourMeat](https://www.saltyourmeat.com/) - Dry Brining Calculator * [HackTheMenu](https://hackthemenu.com/) - Fast Food Secret Menu Items -* [Taconomical](https://taconomical.com/) or [ChipotleCost](https://www.chipotlecost.com/) - Restaurant Price Maps * [Too Good To Go](https://www.toogoodtogo.com/) - Surplus Food Marketplace *** @@ -141,10 +137,10 @@ * [MyFridgeHome](https://myfridgefood.com/) or [WhiskIt](https://whiskit.ai/) - Find Recipes Based on Ingredients * [FoodSubs](https://foodsubs.com/) - Ingredient Substitutions Database * [Food Mood](https://artsandculture.google.com/experiment/food-mood/HwHnGalZ3up0EA?hl=en) - Blend Two Cuisines for Recipes -* [PunchFork](https://www.punchfork.com/) - Recipes +* [Fit Men Cook](https://fitmencook.com/) or [PunchFork](https://www.punchfork.com/) - Recipes * [Search-22](https://search-22.com/recipe-search-tools) - Multi-Site Recipe Search * [Wikibook Recipes](https://en.wikibooks.org/wiki/Category:Cookbook) - Recipe Wiki -* [Epicurious](https://www.epicurious.com/) - Recipe Search +* [Epicurious](https://www.epicurious.com/) - Recipe Search / Index * [based.cooking](https://based.cooking/) or [PublicDomainRecipes](https://publicdomainrecipes.com/) / [GitHub](https://github.com/ronaldl29/public-domain-recipes) - Recipe Search * [Recipe Search](https://recipe-search.typesense.org/) - Recipe Search * [Hari Recipes](https://hari.recipes/) - Recipe Search @@ -231,11 +227,12 @@ * ⭐ **[Gas Price Map](https://www.gasbuddy.com/gaspricemap)** - US Gas Prices * ⭐ **[Parkopedia](https://www.parkopedia.com/)** - Car Parking Locations and Prices * ⭐ **[Refuge Restrooms](https://www.refugerestrooms.org/)** - Find Public Restrooms -* [TravelPlan](https://www.travelplan-ai.com/#get-trip), [Holiwise](https://www.holiwise.com) or [Eddy](https://chat.eddytravels.com/) - Trip Planning +* [TravelPlan](https://www.travelplan-ai.com/#get-trip), [Ikuyo](https://ikuyo.kenrick95.org/), [Holiwise](https://www.holiwise.com) or [Eddy](https://chat.eddytravels.com/) - Trip / Travel Planning +* [PackMate](https://play.google.com/store/apps/details?id=com.ouji.packmate) - Travel Packing List / Organizer * [Packdensack](https://packdensack.com/) - Travel Packing List Generator +* [BeenEverywhere](https://beeneverywhere.net/) - Track Visited Cities / Locations * [Roadside America](https://www.roadsideamerica.com/) or [RoadTrippers](https://roadtrippers.com/) - Roadside Attraction Guides * [TheSalmons](https://www.thesalmons.org/lynn/whgmap.html) - World Heritage Sites -* [Kyoto Guide](https://scrapbox.io/kyotoguide/) - Kyoto Travel Guide * [DemoParty](https://www.demoparty.net/) - Find Demoscene Events * [Retro Directory](https://retro.directory/) - Find Arcades / Vintage Shops * [IOEA](https://ioea.info/) - Find Otaku Expos @@ -245,7 +242,6 @@ * [Bike Sharing](https://bikesharingworldmap.com/) - Bike Rental Map * [SkyDB](https://www.skydb.net/) - Skyscraper Locations / Info * [Seat61](https://www.seat61.com/) - Train Travel Guide -* [PackMate](https://play.google.com/store/apps/details?id=com.ouji.packmate) - Travel Packing List / Organizer * [CheckPlug](https://www.checkplug.com/) - Check Country Plug Types * [SitInShade](https://sitinshade.com/) - Avoid the Sun While Traveling * [eSIMDB](https://esimdb.com/) - Compare eSIM Prices @@ -284,7 +280,6 @@ * [Urbex](https://urbexology.com/) - Abandoned Places Map / [Discord](https://discord.gg/J9VUjqcSNB) * [Wikimapia](https://wikimapia.org/) - Online Editable Map * [Orhyginals Map](http://map.orhyginal.fr/) - Online Editable Map -* [aprs.fi](https://aprs.fi/) - Live APRS Map * [MapChart](https://mapchart.net/) or [Qgis](https://qgis.org/) - Create Custom Maps * [There to Where](https://theretowhere.com/) - Find Apartments Near Important Things * [Scribble Maps](https://www.scribblemaps.com/create/) - Custom Location Map @@ -293,6 +288,7 @@ * [OpenDroneMap](https://www.opendronemap.org/) - Drone Mapping Software * [Mobac](https://mobac.sourceforge.io/) - Mobile Atlas Creator * [Freedom House](https://freedomhouse.org/explore-the-map) or [Civicus Monitor](https://monitor.civicus.org/) - Freedom Maps +* [BlueW](https://bluew.org/) - Free Water Refill Map * [Notable People](https://tjukanovt.github.io/notable-people) or [People Map](https://pudding.cool/2019/05/people-map/) - Notable People Maps * [NUKEMAP](https://nuclearsecrecy.com/nukemap/), [NukeSim](https://www.nukesim.com/), [Bomb Blast](https://outrider.org/nuclear-weapons/interactive/bomb-blast) or [MISSILEMAP](https://nuclearsecrecy.com/missilemap/) - Interactive Damage Effect Maps * [CAD Mapper](https://cadmapper.com/) - Free CAD Files @@ -301,18 +297,16 @@ ## ▷ Navigation / Transport -* ⭐ **[Organic Maps](https://organicmaps.app/)**, **[OsmAnd](https://osmand.net/)** or [Magic Earth](https://www.magicearth.com/) - Mobile Maps -* ⭐ **[OpenStreetMap](https://www.openstreetmap.org/)** - Online Maps / [Advanced Search](https://nominatim.openstreetmap.org/ui/search.html) / [Advanced Editor](https://level0.osmz.ru/) / [AI Editor](https://rapideditor.org/) / [Overpass API GUI](https://overpass-turbo.eu/) / [Resources](https://github.com/osmlab/awesome-openstreetmap) -* ⭐ **[Google Maps](https://www.google.com/maps/)** - Online Maps / [Themes for Web Developers](https://snazzymaps.com/) -* [GMaps WV](https://f-droid.org/packages/us.spotco.maps/) / [GitHub](https://gitlab.com/divested-mobile/maps) - Restricted Google Maps WebView Wrapper +* ⭐ **[Google Maps](https://www.google.com/maps/)**, [Bing Maps](https://www.bing.com/maps), [Mapy](https://en.mapy.cz/), [Waze](https://www.waze.com/) / [Editor](https://www.waze.com/en-US/editor) or [Apple Maps](https://beta.maps.apple.com/) - Online / Offline Maps +* ⭐ **[Comaps](https://www.comaps.app/)** or [Organic Maps](https://organicmaps.app/) - Offline Maps +* ⭐ **[OpenStreetMap](https://www.openstreetmap.org/)** - Open Community Maps / [Advanced Search](https://nominatim.openstreetmap.org/ui/search.html) / [Advanced Editor](https://level0.osmz.ru/) / [AI Editor](https://rapideditor.org/) / [Overpass API GUI](https://overpass-turbo.eu/) / [Resources](https://github.com/osmlab/awesome-openstreetmap) +* [OsmAnd](https://osmand.net/) or [Magic Earth](https://www.magicearth.com/) - Mobile Only Maps +* [GMaps WV](https://f-droid.org/packages/us.spotco.maps/) / [GitHub](https://github.com/woheller69/maps) - Restricted Google Maps WebView Wrapper * [CubeTrek](https://cubetrek.com/) - GPS Track Manager -* [Bing Maps](https://www.bing.com/maps) - Online Maps -* [Apple Maps](https://beta.maps.apple.com/) - Online Maps -* [Mapy](https://en.mapy.cz/) - Online Maps / [Mobile](https://en.mapy.cz/mobilepromo) -* [Waze](https://www.waze.com/) / [Editor](https://www.waze.com/en-US/editor) - Traffic and Road Conditions Map -* [Wikiroutes](https://wikiroutes.info/) or [CityMapper](https://citymapper.com/) - Public Transport Routes +* [Wikiroutes](https://wikiroutes.info/) or [CityMapper](https://citymapper.com/) - Public Transport Maps +* [AnyTrip](https://anytrip.com.au/) - Australia & New Zealand Public Transport Maps * [Mini Tokyo 3D](https://minitokyo3d.com/) - Tokyo Public Transport Map -* [rasp.yandex](https://rasp.yandex.ru/map/trains/) - Russia Public Transport +* [rasp.yandex](https://rasp.yandex.ru/map/trains/) - Russia Public Transport Map * [kakaomap](https://map.kakao.com/) - Map of South Korea *** @@ -323,7 +317,6 @@ * [trains.fyi](https://trains.fyi/) - Real-Time North America Train Tracker * [amtrak explorer](https://amtrakexplorer.com/) - North America Railway Map * [Swiss Railways Network](https://maps.vasile.ch/transit-sbb/) - Switzerland Railway Map -* [AnyTrip](https://anytrip.com.au/) - Australia & New Zealand Railway Maps * [vr.fi](https://www.vr.fi/en/live-train-tracker-map) - Finland Train Tracker Map * [IndianRailInfo](https://indiarailinfo.com/newatlas) - Indian Railways Map * [SignalBox](https://www.map.signalbox.io/) or [Live Tube Map](https://www.londonunderground.live/) - UK Live Train Maps @@ -336,6 +329,7 @@ ## ▷ Climate / Weather * ⭐ **[Windy](https://www.windy.com/)**, **[Ventusky](https://www.ventusky.com/)**, [Earth Observatory](https://earthobservatory.nasa.gov/global-maps), [Zoom Earth](https://zoom.earth/), [Weatherwise](https://web.weatherwise.app/), [Earth Now](https://climate.nasa.gov/earth-now/), [Earth](https://earth.nullschool.net/) or [satellite-map.gosur](https://satellite-map.gosur.com/) - General Weather / Climate Maps +* [CyclonicWx](https://cyclonicwx.com/) - Tropical Weather Tracking Tools / Plotting * [Netweather](https://www.netweather.tv/charts-and-data/global-jetstream) - Global Jetstream Forcast Map * [Cyclocane](https://www.cyclocane.com/) - Cyclone and Hurricane Tracker Map * [tornado.live](https://tornado.live/) - Real-Time US Severe Weather Alerts Map @@ -348,7 +342,7 @@ * [Blitzortung.org](https://www.blitzortung.org/en/live_lightning_maps.php) or [Lightning Maps](https://www.lightningmaps.org/) - Lightning / Thunderstorms Maps * [ClearOutside](https://clearoutside.com/) - Weather Visibility Tracker * [aqicn.org](https://aqicn.org/map/world) - Air Quality Map -* [Light Pollution Map](https://lightpollutionmap.info/) - Light Pollution Map +* [Light Pollution Map](https://lightpollutionmap.info/) or [lightpollutionmap](https://lightpollutionmap.app) - Light Pollution Maps * [CPRE](https://www.cpre.org.uk/light-pollution-dark-skies-map/) - England Light Pollution and Dark Skies * [Electricity Maps](https://app.electricitymaps.com/map) - Electricity CO₂ Emissions Map * [SaveEcoBot](https://www.saveecobot.com/en/radiation-maps) - Radioactivity / Air Quality in Ukraine @@ -406,10 +400,12 @@ * [Library of Congress](https://www.loc.gov/collections/?fa=partof:geography+and+map+division) - LOC Historic Maps Archive * [Historic Borders](https://historicborders.app/) - Borders History Map * [American Panorama](https://dsl.richmond.edu/panorama/) - Interactive US History Maps +* [Mused](https://mused.com/) - Text to 3D Historical Simulation Map * [NLS Maps](https://maps.nls.uk/) - Historical Maps of Scotland * [Imperium](https://imperium.ahlfeldt.se/) - Digital Atlas of the Roman Empire * [Ancient Earth](https://dinosaurpictures.org/ancient-earth) - Globe of Ancient Earth * [1940s NYC](https://1940s.nyc/) - Explore 1940's New York +* [HK Battle 1941](https://digital.lib.hkbu.edu.hk/1941hkbattle/en/index.php) - The Battle of Hong Kong 1941 Interactive Map *** @@ -477,29 +473,24 @@ * [Read Something Interesting](https://readsomethinginteresting.com/), [Read Something Wonderful](https://readsomethingwonderful.com/), [Read Something Great](https://www.readsomethinggreat.com/) or [BoredReading](https://boredreading.com/) - Random Articles / Blog Posts * [Media Bias Fact Check](https://drmikecrowe.github.io/mbfcext/), [ground.news](https://ground.news/extension) or [HonestyMeter](https://www.honestymeter.com/) - Media Bias Checkers * [PressMob](https://pressmob.ai/) - Journalist Search -* [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/) or [LibMedium](https://libmedium.batsense.net/) - Medium Frontends *** ## ▷ Aggregators -* ⭐ **[BoringReport](https://www.boringreport.org/)** * ⭐ **[Upstract](https://upstract.com/)** * ⭐ **[QotNews](https://news.t0.vc/)** - Hacker News / Reddit / Lobsters / Tildes -* ⭐ **[Anime Blog Tracker](https://aniblogtracker.com/)** - Anime News Blogs * [Mozberg](https://mozberg.com/) - News Search -* [NewsMinimalist](https://www.newsminimalist.com/) or [Brief](https://www.brief.news/) - AI News Aggregators +* [NewsMinimalist](https://www.newsminimalist.com/) - AI News Aggregator * [devo](https://github.com/karakanb/devo) - New Tab Page News Extension -* [RealClearPolitics](https://www.realclearpolitics.com/), [Ground News](https://ground.news/), [AllSides](https://www.allsides.com/), [SPIDR](https://spidr.today/) or [LegibleNews](https://legiblenews.com/) - Political News / World Events -* [Fark](https://www.fark.com/) - User-Curated News +* [Ground News](https://ground.news/), [AllSides](https://www.allsides.com/), [SPIDR](https://spidr.today/) - Political News / World Events * [AlDaily](https://www.aldaily.com/) - Art / Philosophy / Literature News -* [Newsfeed](https://newsfeed.one/) - Google / Reddit / Crypto News * [NewsNow](https://www.newsnow.co.uk/) * [SkimFeed](https://skimfeed.com/) * [Google News](https://news.google.com/) / [HTML](http://68k.news/) -* [Readspike](https://readspike.com/) +* [Spike News](https://spike.news/), [2](https://readspike.com/) * [sumi.news](https://sumi.news/) -* [NewsCord](https://newscord.org/) * [AllTop](https://alltop.com/) *** @@ -507,14 +498,17 @@ ## ▷ Tech News * ↪️ **[Dev / Cybersecurity News](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/dev-tools#wiki_.25BA_dev_news)** +* ⭐ **[GamersNexus](https://gamersnexus.net/)** - PC Gaming News * ⭐ **[Hacker News](https://news.ycombinator.com/)**, [hckrnws](https://www.hckrnws.com/), [HackerWeb](https://hackerwebapp.com/) or [Hacker Herald](https://hackerherald.com/) - Tech / Hacking News -* ⭐ **Hacker News Tools** - [App List](https://github.com/cheeaun/awesome-hacker-news) / [Modern Interface](https://www.modernhn.com/) / [Highlighter](https://greasyfork.org/en/scripts/39311) / [Search](https://hn.algolia.com/), [2](https://alexandria-library.julienc.me/search/) / [Top Posts](https://hn.lindylearn.io/) / [Post Summary](https://hackernews.betacat.io/) / [Self-Host](https://www.hn.plus/) / [RSS](https://hnrss.github.io/) / [Webpage Comments](https://github.com/benwinding/newsit) +* ⭐ **Hacker News Tools** - [App List](https://github.com/cheeaun/awesome-hacker-news) / [Modern Interface](https://www.modernhn.com/) / [Highlighter](https://greasyfork.org/en/scripts/39311) / [Search](https://hn.algolia.com/), [2](https://alexandria-library.julienc.me/search/) / [Top Posts](https://hn.lindylearn.io/) / [Relevant Posts](https://github.com/imdj/HNRelevant) / [Post Summary](https://hackernews.betacat.io/) / [Self-Host](https://www.hn.plus/) / [RSS](https://hnrss.github.io/) / [Webpage Comments](https://github.com/benwinding/newsit) * [AlternativeTo Aggregator](https://alternativeto.net/news/all/) - Tech News Aggregator +* [TechURLs](https://techurls.com/) - Tech News +* [Techmeme](https://www.techmeme.com/) - Tech News +* [The Brutalist Report](https://brutalist.report/) - Tech News * [TuxURLs](https://tuxurls.com/) - Linux News * [Liliputing](https://liliputing.com/) - Hardware / Linux Mobile News * [Geeks3D](https://www.geeks3d.com/), [Toms Hardware](https://www.tomshardware.com/) or [Overclock3D](https://overclock3d.net/) - Hardware News / Reviews * [EmergentMind](https://www.emergentmind.com/), [Singularity Hub](https://singularityhub.com/) or [Dupple](https://www.dupple.com/techpresso-archives) - AI News -* [xGamer](https://xgamer.gg/) - Gaming News * [GamesRecap](https://gamesrecap.io/) - Game Annoucements / Trailers * [Internet Society](https://pulse.internetsociety.org/blog) - Internet Infrastructure News * [RestorePrivacy](https://cyberinsider.com/news/) or [Privacy International](https://www.privacyinternational.org/) - Privacy / Security News @@ -547,7 +541,7 @@ * [You feel like shit.](https://philome.la/jace_harr/you-feel-like-shit-an-interactive-self-care-guide/play/index.html), [2](https://youfeellikeshit.com/) - Interactive Self-Care Guide * [deskspace](https://npckc.itch.io/deskspace) - Self-Care App * [Mindfulness Coach](https://mobile.va.gov/app/mindfulness-coach) - Mindfulness / Stress Reduction App -* [/mental health/](https://rentry.co/mentalhealthy) - Mental Help Tips +* [/mental health/](https://rentry.co/mentalhealthy) - Mental Help Tips * [Coping Skills Masterlist](https://docs.google.com/document/d/1KI1kzj6Bjx_O3ggYXfgEuTtOsLiCW0V-JeWpTyX5OOU/) - Mental Health Coping Skills * [Zen Habits](https://zenhabits.net/) - Develop Zen Habits * [Medito](https://github.com/meditohq/medito-app) or [Heartfulness](https://www.heartfulnessapp.org/) - Meditation App @@ -566,7 +560,6 @@ * ⭐ **[Standard BMI Calculator](https://www.nhlbi.nih.gov/health/educational/lose_wt/BMI/bmicalc.htm)** - BMI Calculator * [AMMFitness](https://www.ammfitness.co.uk/) - Fitness / Nutrition Info * [The Fitness Wiki](https://thefitness.wiki/) - Fitness Information Wiki -* [Effective Fitness](https://www.e-fitness.org/) - Fitness Discussion / [Discord](https://discord.gg/fitness) * [FitoTrack](https://codeberg.org/jannis/FitoTrack), [HealthMode](https://www.healthmode.app/), [Flexify](https://github.com/brandonp2412/Flexify) or [MyFitnessPal](https://www.myfitnesspal.com/) - Fitness Apps * [openScale](https://f-droid.org/packages/com.health.openscale/) or [trale](https://github.com/QuantumPhysique/trale) - Weight & Body Metrics Trackers * [SailRabbit](https://www.sailrabbit.com/bmr/) - BMR / TDEE Calculator @@ -585,12 +578,12 @@ ## ▷ Workout / Exercise -* 🌐 **[Evidence Based Training Wiki](https://www.reddit.com/r/EvidenceBasedTraining/wiki/index/)** - Evidence-Based Training Resources +* 🌐 **[Evidence-Based Training Wiki](https://www.reddit.com/r/EvidenceBasedTraining/wiki/index/)** - Evidence-Based Training Resources * 🌐 **[ExRx.net](https://exrx.net/)** - Exercise Resources * ⭐ **[DAREBEE](https://darebee.com/)** - Workout Plans -* ⭐ **[/r/BodyweightFitness Wiki](https://www.reddit.com/r/bodyweightfitness/wiki/index/)** - Reddit Bodyweight Fitness Routines / [Android](https://play.google.com/store/apps/details?id=com.eightxthree.app) / [iOS](https://apps.apple.com/app/8x3/id1561393713) / [Subreddit](https://www.reddit.com/r/BodyweightFitness) / [Discord](https://discord.gg/bwf) +* ⭐ **[/r/BodyweightFitness Wiki](https://www.reddit.com/r/bodyweightfitness/wiki/index/)** - Bodyweight Fitness Routines / [Android](https://play.google.com/store/apps/details?id=com.eightxthree.app) / [iOS](https://apps.apple.com/app/8x3/id1561393713) / [Subreddit](https://www.reddit.com/r/BodyweightFitness) / [Discord](https://discord.gg/bwf) * ⭐ **[/u/KNightNox Diagram](https://i.imgur.com/gEfyf0q.jpeg)**, [2](https://i.ibb.co/xCGRdM0/c3b977fa36fc.jpg) - Zoomable Exercise Diagram -* [Hevy](https://www.hevyapp.com/), [Boostcamp](https://www.boostcamp.app/), [Kenko](https://github.com/Iamlooker/Kenko), [FitNotes](https://www.fitnotesapp.com/) or [FitHero](https://fithero.app/) - Workout Trackers +* [Hevy](https://www.hevyapp.com/), [Boostcamp](https://www.boostcamp.app/), [Tracked](https://www.tracked.gg/), [Kenko](https://github.com/Iamlooker/Kenko), [FitNotes](https://www.fitnotesapp.com/) or [FitHero](https://fithero.app/) - Workout Trackers * [Fitness Blender](https://www.fitnessblender.com/videos?exclusive%5B%5D=0) - Workout Videos * [Calistree](https://calistree.app/) - Exercise Search * [FitnessProgramer](https://fitnessprogramer.com/) - Workout Plans @@ -607,7 +600,7 @@ * [RunnerUp](https://github.com/jonasoreland/runnerup) or [Strava](https://www.strava.com/) - Run Trackers * [MapMyWalk](https://www.mapmywalk.com/) - Walking Tracker * [GoldenCheetah](https://www.goldencheetah.org/), [AAT](https://bailu.ch/aat/) - Cycling / Biking Trackers -* [AllTrails](https://www.alltrails.com/), [Wikiloc](https://www.wikiloc.com/) or [TrailRouter](https://trailrouter.com/) - Hiking / Trail Routes +* [AllTrails](https://www.alltrails.com/), [Wikiloc](https://www.wikiloc.com/) or [TrailRouter](https://trailrouter.com/) - Hiking / Trail Routes * [Wanderer](https://github.com/Flomp/wanderer) - Self-Hosted Trail Database * [fastnfitness](https://github.com/brodeurlv/fastnfitness) or [PFCTE](https://github.com/SecUSo/privacy-friendly-circuit-training-exercises) - Exercise & Activity Trackers * [wger](https://wger.de/) - Self-Hosted Workout, Nutrition / Weight App / [Fitness](https://github.com/wger-project/flutter) / [GitHub](https://github.com/wger-project/wger) @@ -627,8 +620,8 @@ * [The Nutrition Source](https://nutritionsource.hsph.harvard.edu/) - Harvard University Health Website * [Liquid Drink](https://play.google.com/store/apps/details?id=com.xpp.drink) - Liquid Intake Tracker * [Daily Dozen](https://github.com/nutritionfactsorg/daily-dozen-android) - Daily Diet Recommendations / Android -* [EatThisMuch](https://www.eatthismuch.com/), [FitMenCook](https://fitmencook.com/) or [MealPrePro](https://mealpreppro.com/) - Diet Tool / iOS / Android -* [Mealime](https://www.mealime.com/) or [Calories In](https://calories-in.com/) - Meal Planning +* [Calories-In](https://calories-in.com/) - Meal Prep & Planning / Web +* [Eat This Much](https://www.eatthismuch.com/), [Mealime](https://www.mealime.com/) or [MealPrepPro](https://mealpreppro.com/) / [Android](https://play.google.com/store/apps/details?id=com.nibbleapps.meal_prep_pro) - Meal Prep & Planning Apps / Android, iOS * [Nosh](https://nosh.tech/) - Food Management App * [Edamam](https://www.edamam.com/) - Food-Related APIs * [Child Nutrition](https://www.coursera.org/learn/childnutrition) - Child Nutrition / Cooking Course @@ -639,7 +632,6 @@ * [Tellspecopedia](http://www.tellspecopedia.com/) - Find Healthy Food * [Yuka](https://play.google.com/store/apps/details?id=io.yuka.android) - Scan Ingredient Lists * [Kids Health](https://www.kidshealth.org/) - Kids Health Information -* [What Dogs Can Eat](https://www.pawmenow.com/what-dogs-can-eat/) - Search Safe Human Food for Dogs *** @@ -674,7 +666,7 @@ * ↪️ **[Site Blocking](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/misc#wiki_.25B7_productivity_tools)** * ⭐ **[EasyPeasy](https://easypeasymethod.org/)**, [2](https://gitlab.com/snuggy/easypeasy) / [Audiobook](https://youtu.be/ZktxO6adTnI) or [QuitPornEasily](https://quitporneasily.com/) - Painlessly Quit Pornography * [Plucky](https://pluckyfilter.com/) - Content Filter -* [Brainbuddy](https://www.brainbuddyapp.com/) - Porn Blocker / Android / iOS +* [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 @@ -688,19 +680,9 @@ # ► Career * 🌐 **[Common Q&As](https://www.indeed.com/career-advice/interviewing/top-interview-questions-and-answers)** - Interview Questions Index -* ⭐ **[5000 Best Job Sites](http://5000best.com/websites/Jobs/)** or [Indeed](https://www.indeed.com/) - Job Search Sites -* ⭐ **[4-day week](https://4dayweek.io/)** - Find Jobs with 4-Day Weeks * ⭐ **[Comparably](https://www.comparably.com/)** or [GoodFirms](https://www.goodfirms.co/) - Compare Companies / Salaries * ⭐ **[Reverse Interview](https://github.com/viraptor/reverse-interview)** or [job-interview-questions](https://github.com/lkostrowski/job-interview-questions-to-ask-companies) - Questions to Ask Potential Employers * ⭐ **[Kimai](https://www.kimai.org/)** or [Clockify](https://clockify.me/) - Work Hour Trackers -* [OnSites](https://www.onsites.fyi/) - View / Share Interview Experiences -* [JobBoardSearch](https://jobboardsearch.com/), [PromptYourJob](https://promptyourjob.com/), [CyberCoders](https://www.cybercoders.com/), [whoishiring](https://whoishiring.io/), [Toby Tools](https://rentry.co/qnu6x), [The Muse](https://www.themuse.com/search/) or [EuroJobs](https://eurojobs.com/) - Job Search -* [Hiring Without Whiteboards](https://github.com/poteto/hiring-without-whiteboards) - Find Straightforward Hiring Processes -* [50WaysToGetAJob](https://50waystogetajob.com/) - Interactive Job Search Guide -* [RolePad](https://rolepad.com/) or [JobSync](https://github.com/Gsync/jobsync) - Job Search Managers -* [DoorsOpen](https://www.doorsopen.co/) - Music Industry Jobs -* [Job Shell](https://github.com/angelplusultra/job-shell) - Scrape Job Postings -* [SpeedyApply](https://www.speedyapply.com/) or [AIHawk](https://github.com/feder-cr/Jobs_Applier_AI_Agent_AIHawk) - Job Application Autofill Tools * [80,000 Hours](https://80000hours.org/), [O*NET](https://www.onetonline.org/), [Career Dreamer](https://grow.google/career-dreamer/) or [MyNextMove](https://www.mynextmove.org/) - Explore Career Options * [/r/careerguidance](https://www.reddit.com/r/careerguidance/) - Career Guidance Subreddit * [UseThis](https://usesthis.com/) - Career Interviews @@ -737,6 +719,21 @@ * [GoodJobsFirst](https://goodjobsfirst.org/) - Subsidy Tracker * [QR Menu Creator](https://qrmenucreator.com/) - Convert Menu to QR Codes * [CandidateChecker](https://candidatechecker.io/) - User Backgrounds for Hiring + +*** + +## ▷ Job Search / Application + +* ⭐ **[5000 Best Job Sites](http://5000best.com/websites/Jobs/)** or [Indeed](https://www.indeed.com/) - Job Search Sites +* ⭐ **[4-Day Week](https://4dayweek.io/)** - Find Jobs with 4-Day Weeks +* [OnSites](https://www.onsites.fyi/) - View / Share Interview Experiences +* [50WaysToGetAJob](https://50waystogetajob.com/) - Interactive Job Search Guide +* [JobBoardSearch](https://jobboardsearch.com/), [HiringCafe](https://hiring.cafe/), [JobsFromSpace](https://www.jobsfromspace.com/), [CyberCoders](https://www.cybercoders.com/), [whoishiring](https://whoishiring.io/), [Toby Tools](https://rentry.co/qnu6x), [The Muse](https://www.themuse.com/search/) or [EuroJobs](https://eurojobs.com/) - Job Search +* [Hiring Without Whiteboards](https://github.com/poteto/hiring-without-whiteboards) - Find Straightforward Hiring Processes +* [RolePad](https://rolepad.com/) or [JobSync](https://github.com/Gsync/jobsync) - Job Search Managers +* [DoorsOpen](https://www.doorsopen.co/) - Music Industry Jobs +* [Job Shell](https://github.com/angelplusultra/job-shell) - Scrape Job Postings +* [SpeedyApply](https://www.speedyapply.com/) or [AIHawk](https://github.com/feder-cr/Jobs_Applier_AI_Agent_AIHawk) - Job Application Autofill Tools * [ScrapedIn](https://github.com/dchrastil/ScrapedIn) - Scrape LinkedIn *** @@ -750,9 +747,9 @@ * [CoFolios](https://cofolios.com/) - Portfolio Sharing * [Resume Builder](https://resume.haveloc.com/) * [ResumeMatcher](https://www.resumematcher.fyi/) +* [HeyCV](https://heycv.app/) * [resumonk](https://www.resumonk.com/) * [Resuminator](https://www.resuminator.in/) -* [Sclof](https://sclof.com/) * [flowcv](https://flowcv.com/) * [Resumake](https://resumake.io/) / [GitHub](https://github.com/saadq/resumake.io) * [resume-nation](https://resume-nation.github.io/) @@ -778,7 +775,7 @@ * [WFH Companies India](https://github.com/abhagsain/WFH-Companies-India) - Work from Home Jobs in India * [/r/WorkOnline](https://www.reddit.com/r/WorkOnline/) - Online Working Subreddit * [/r/freelance](https://www.reddit.com/r/freelance/) - Freelance Subreddit -* [/r/RemoteJobs](https://www.reddit.com/r/RemoteJobs/) - Remote Jobs Subreddit (Check "Job Posts" flag) +* [/r/RemoteJobs](https://www.reddit.com/r/RemoteJobs/) - Remote Jobs Subreddit / Check "Job Posts" Flag * [MTurk](https://www.mturk.com/) - Online Task Work * [NoCommute](https://www.nocommutejob.com/) - Remote Job Notifications * [WeNomad](https://wenomad.so/) or [Nomad List](https://nomads.com/) - Remote Work Ratings @@ -811,20 +808,17 @@ * ↪️ **[Learn Computer Science](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/edu/#wiki_.25B7_computer_science)** * [MoAiJobs](https://www.moaijobs.com/) - Find Jobs in AI Companies * [FOSS Jobs](https://www.fossjobs.net/) - FOSS Project Jobs -* [japandev](https://japan-dev.com/) - Find Developer Jobs in Japan -* [ZeroTaxJobs](https://zerotaxjobs.com/) - Find Developer Jobs in Dubai / Saudi Arabia * [key : values](https://www.keyvalues.com/) - Find Companies that Match Your Values * [Authentic Jobs](https://authenticjobs.com/) - Find Developer / Designer Jobs +* [Dribbble](https://dribbble.com/) - Designer Jobs * [/r/DesignJobs](https://www.reddit.com/r/DesignJobs/) - Designer Jobs Subreddit * [Golang Jobs](https://golangjob.xyz/) - Find Golang Jobs * [Best PM Jobs](https://www.bestpmjobs.com/) - Tech Firm Night Jobs * [JS Remotely](https://jsremotely.com/) - Find Remote JavaScript Jobs * [js chimp](https://jschimp.com/) - Reverse Job Board / JavaScript * [larajobs](https://larajobs.com/) - Find Laravel Jobs -* [Laradir](https://laradevs.com/) - Reverse Job Board / Laravel * [Python Job Board](https://www.python.org/jobs/) - Find Python Jobs * [RailsDevs](https://railsdevs.com/) - Reverse Job Board / Rails -* [Christian Tech Jobs](https://www.christiantechjobs.io/) - Christian Tech Jobs * [Levels.fyi](https://www.levels.fyi/) - Tech Career Salaries * [LeetFree](https://doocs.github.io/leetcode/#/README_EN) - Leaked Google / Facebook / Amazon Interview Questions / [GitHub](https://github.com/doocs/leetcode/blob/main/README_EN.md) * [Interviews.school](https://interviews.school/) or [InterviewThis](https://github.com/Twipped/InterviewThis) - Interview Preparation Guides @@ -835,7 +829,7 @@ * [Data.gov Resources](https://resources.data.gov/) - Data Management Tools / Training * [AWS re/Start](https://aws.amazon.com/training/restart/) or [AWS Training](https://www.aws.training/) - Cloud Career Training * [9Tut](https://www.9tut.com/) - CCNA Certification Training -* [Comptia](https://www.comptia.org/), [Cisco Training](https://www.cisco.com/c/en/us/training-events/training-certifications/certifications.html) or [UI.com](https://www.ui.com/training/) - Training / Certifications +* [CompTIA](https://www.comptia.org/) / [Practice](https://www.examcompass.com/), [Cisco Training](https://www.cisco.com/c/en/us/training-events/training-certifications/certifications.html) or [UI.com](https://www.ui.com/training/) - Training / Certifications * [web3.career](https://web3.career/) or [FindWeb3](https://findweb3.com/) - Find Web3 Jobs *** @@ -855,6 +849,7 @@ ## ▷ Collaboration Platforms * ⭐ **[NextCloud](https://nextcloud.com/)** - Collaboration Platform / File Sharing / [GitHub](https://github.com/nextcloud) +* [Teams for Linux](https://github.com/IsmaelMartinez/teams-for-linux) - Unofficial Teams Client / Windows, Mac, Linux * [Atlassian](https://www.atlassian.com/) - Collaboration Platform * [Twake](https://twake.app/) - Collaboration Platform / [GitHub](https://github.com/linagora/twake-drive) * [Mattermost](https://mattermost.com/) - Self-Hosted Collaboration Platform @@ -870,7 +865,6 @@ * [Nino](https://nino.app/) - Task Manager * [Trello](https://trello.com/), [WeKan](https://wekan.github.io/), [Kanboard](https://kanboard.org/) or [Planka](https://planka.app/) - Kanban Project Managers * [Airtable](https://www.airtable.com/) - Spreadsheet-Database Hybrid for Team Workflows -* [Teams for Linux](https://github.com/IsmaelMartinez/teams-for-linux) - Collaboration Platform / Linux *** @@ -932,23 +926,25 @@ # ► Shopping * ⭐ **[ThisIsWhyImBroke](https://www.thisiswhyimbroke.com/)** - Find Interesting Things to Buy -* ⭐ **[BuyReddit](https://www.buyreddit.com/)** or [RedditFavorites](https://redditfavorites.com/) - Reddit Recommended Products * ⭐ **[Dark Patterns Tip Line](https://darkpatternstipline.org/)** - Deceptive Services to Avoid * [Dark Patterns Detective](https://games.productartistry.com/games/dark-patterns) - Learn to Avoid Deceptive Services -* [Consumer Action Taskforce](https://wiki.rossmanngroup.com/) - Documents Practices That Impact Consumer Rights +* [BuyReddit](https://www.buyreddit.com/) or [RedditFavorites](https://redditfavorites.com/) - Reddit Recommended Products +* [Consumer Action Taskforce](https://consumerrights.wiki/) - Documents Practices That Impact Consumer Rights * [Kit.co](https://kit.co/), [Looria](https://www.looria.com/) or [ProductHunt](https://producthunt.com/) - Product / Service Reviews * [Pepper](https://www.pepper.com/) or [SlickDeals](https://slickdeals.net/) - Shopping Deal Communities * [Hagglezon](https://www.hagglezon.com/) - Price Comparisons for Amazon Stores across Europe +* [Remove Amazon Sponsored](https://greasyfork.org/en/scripts/536756) - Remove Amazon Sponsored Listings * [Slant](https://www.slant.co/) - "What are the best..." Product Rankings * [PicClick](https://picclick.com/) - Ebay Quick Search * [Typo Hound](https://typohound.com/) or [FatFingers](https://fatfingers.com/) - Ebay Typo Search -* [Mousepad Mastersheet](https://docs.google.com/spreadsheets/d/1RAnmZxDNduaGV8kB-GCvZ0MO6d9-0j9jmrU2f8dp0Ww/) - Mousepad Buying Guide / Reviews +* [a view from my seat](https://aviewfrommyseat.co.uk/) - See Event Views Before Buying Tickets * [Cars.com](https://www.cars.com/research/compare/) - Vehicle Reviews / Comparisons * [Desenmascara](https://desenmascara.me/) - Spot Counterfeit Sites * [/r/FashionReps](https://www.reddit.com/r/FashionReps/) - Replica Clothing Community +* [Run Repeat](https://runrepeat.com/) - Shoe Shopping Guide / Reviews * [GoEuropean](https://www.goeuropean.org/) - European Products / Services * [WornOnTV](https://wornontv.net/) or [ShopYourTV](https://shopyourtv.com/) - Find Outfits from TV Shows -* [Kolors](https://www.kolorsvirtual.ai), [2](https://huggingface.co/spaces/Kwai-Kolors/Kolors-Virtual-Try-On) - Virtual Outfit Try-On +* [Kolors](https://huggingface.co/spaces/Kwai-Kolors/Kolors-Virtual-Try-On) - Virtual Outfit Try-On * [GoodOnYou](https://directory.goodonyou.eco/) - Clothing Brand Sustainability Ratings *** @@ -957,7 +953,7 @@ * ⭐ **[PCPartPicker](https://pcpartpicker.com/)**, [BuildCores](http://www.buildcores.com/) / [Discord](https://discord.gg/gxHtZx3Uxe) / [Subreddit](https://reddit.com/r/buildcores), [Newegg PC Builder](https://www.newegg.com/tools/custom-pc-builder) or [CGDirector](https://www.cgdirector.com/pc-builder/) - PC Building Sites * ⭐ **[/r/PCMasterrace Wiki](https://www.reddit.com/r/pcmasterrace/wiki/builds/)**, [/r/BuildaPC Wiki](https://www.reddit.com/r/buildapc/wiki/index) or [PC Tiers](https://pctiers.com/) - PC Building Guides / **[Video](https://youtu.be/s1fxZ-VWs2U)** -* ⭐ **[NanoReview](https://nanoreview.net/)**, [Octoparts](https://octopart.com/), [Technical City](https://technical.city/), [TechPowerup](https://www.techpowerup.com/) or [Techspecs](https://techspecs.io/) - Hardware Comparisons +* ⭐ **[NanoReview](https://nanoreview.net/)**, **[TechPowerup](https://www.techpowerup.com/)**, [Octoparts](https://octopart.com/), [Technical City](https://technical.city/) or [Techspecs](https://techspecs.io/) - Hardware Comparisons * ⭐ **[rtings](https://www.rtings.com/)** - Hardware Reviews / Clear Cookies Reset Limit * ⭐ **[Open Benchmarking](https://openbenchmarking.org/)** - Hardware Benchmarks * ⭐ **[GSMArena](https://www.gsmarena.com/)**, [Prepaid Compare](https://prepaidcompare.net/), [PhoneDB](https://phonedb.net/), [GSMChoice](https://www.gsmchoice.com/en/) or [Kimovil](https://www.kimovil.com/en/) - Compare Phones / Prices @@ -966,19 +962,17 @@ * ⭐ **[Mousepad Mastersheet](https://docs.google.com/spreadsheets/d/1RAnmZxDNduaGV8kB-GCvZ0MO6d9-0j9jmrU2f8dp0Ww/)** - Mousepad Comparison Chart * [ProductChart](https://www.productchart.com/) - Electronic Comparisons * [Privacy Not Included](https://foundation.mozilla.org/privacynotincluded/) - Product Privacy Ratings -* [LabGopher](https://www.labgopher.com/) - eBay Hardware Price Comparisons * [/r/buildapc](https://reddit.com/r/buildapc) - PC Building Community / [Discord](https://discord.com/invite/buildapc) * [/r/BuildAPCForMe](https://reddit.com/r/BuildAPCForMe) - PC Building Community * [NewMaxx's SSD Site](https://borecraft.com/) / [Doc](https://docs.google.com/spreadsheets/d/1B27_j9NDPU3cNlj2HKcrfpJKHkOf-Oi1DbuuQva2gT4/), [SSD Tester](https://ssd-tester.com/) or [JohnnyLucky](https://www.johnnylucky.org/data-storage/ssd-database.html) - SSD Buying Comparisons * [Disk Prices](https://diskprices.com/) - Disk Price Tracker * [Jarrod's Tech](https://jarrods.tech/resources/) or [SuggestALaptop](https://discord.gg/pes68JM) (discord) - Laptop Suggestions * [Laptop Wiki](https://laptopwiki.eu/) - Laptop Info Database -* [HackersBoard](https://hackerboards.com/) - Single Board Computer Database * [EveryMac](https://everymac.com/) - Mac Info Database * [Mouse Ratings](https://www.rtings.com/mouse/reviews/best), [EloShapes](https://www.eloshapes.com/), [Sensor.fyi](https://sensor.fyi/info/), [RocketJumpNinja](https://www.rocketjumpninja.com/) or [/r/MouseReview](https://www.reddit.com/r/MouseReview/) / [Discord](https://discord.gg/mousereview) - Mouse Buying Guides * [PSU Tier List](https://docs.google.com/spreadsheets/d/1akCHL7Vhzk_EhrpIGkz8zTEvYfLDcaSpZRB6Xt6JWkc/) - PSU Buying Guide * [DisplaySpecifications](https://www.displayspecifications.com/), [PC Monitors](https://pcmonitors.info/), [TFTCentral](https://tftcentral.co.uk/), [Monitor Hunter](https://docs.google.com/document/d/1illeNLsUfZ4KuJ9cIWKwTDUEXUVpplhUYHAiom-FaDo/), [Monitor Spreadsheet](https://pastebin.com/tkmakRNW) or [DisplayNinja](https://www.displayninja.com/) - Monitor Buying Guides -* [sven dpi](https://www.sven.de/dpi/) or [screensiz.es](https://screensiz.es/) - Screen / Monitor Size Comparisons +* [sven dpi](https://www.sven.de/dpi/) - Screen / Monitor Size Comparisons * [AudioScienceReview](https://www.audiosciencereview.com/forum/index.php) - Audio Equipment Discussion * [Scarbir](https://www.scarbir.com/), [/r/Headphones Guide](https://sites.google.com/view/quipa/assistants), [Squiglink](https://squig.link/), [DIY-Audio-Heaven](https://diyaudioheaven.wordpress.com/), [Crinacle Graphs](https://graph.hangout.audio/) or [Crinacle](https://crinacle.com/) - Headset / Headphone / Earphone Comparisons * [Consoomer_Guide](https://rentry.org/consoomer_guide) - Earphone Shopping Guide @@ -988,7 +982,8 @@ * [Don’t kill my app!](https://dontkillmyapp.com/) - Manufacturer Battery Life vs. App Functionality * [PhoneSized](https://phonesized.com/) or [HotSpot3D](https://www.hotspot3d.com/) - Phone Size Comparisons * [Gamepadla](https://gamepadla.com/) - Gamepad / Controller Latency Tests -* [RetroCatalog](https://retrocatalog.com/) or [Handheld Emulation Compatibility](https://docs.google.com/spreadsheets/d/1irg60f9qsZOkhp0cwOU7Cy4rJQeyusEUzTNQzhoTYTU/) - Handheld Emulation Compatibility / Info +* [EmuReady](https://www.emuready.com/) - Mobile Game Emulation Compatibility / Info / [GitHub](https://github.com/Producdevity/EmuReady) +* [RetroCatalog](https://retrocatalog.com/) or [Handheld Emulation Compatibility](https://docs.google.com/spreadsheets/d/1irg60f9qsZOkhp0cwOU7Cy4rJQeyusEUzTNQzhoTYTU/) - Handheld Game Emulation Compatibility / Info * [ComparisonTabl.es](https://comparisontabl.es/) - Compare E-Readers * [DrawTab](https://docs.thesevenpens.com/drawtab) - Drawing Tablet Info / Wiki * [Consolevariations](https://consolevariations.com/) - Game Console Rarity / Shopping @@ -1033,7 +1028,6 @@ * ⭐ **[Dupe](https://dupe.com/)** or [wtf.deals](https://wtf.deals/) - Furniture Duplicate Deals Search * ⭐ **[Keepa](https://keepa.com/)**, [PriceHistory](https://pricehistoryapp.com/) or [CamelCamelCamel](https://camelcamelcamel.com/) / [Charts](https://greasyfork.org/en/scripts/416590) - Amazon Price Trackers / [App](https://play.google.com/store/apps/details?id=com.offertadelgiorno.offertadelgiorno) * [Vetted](https://vetted.ai/), [Real Price Tracker](https://www.realpricetracker.com/) or [FlipsHope](https://flipshope.com/) - Price Tracking Extensions -* [Search eBay Sold](https://chromewebstore.google.com/detail/search-ebay-sold/mhlcjbhhieanjjafbcoeclghpnjhepif) - eBay Sold Item Search * [/r/WhatsThisWorth](https://www.reddit.com/r/whatsthisworth/) - Online Appraisals * [GasPrices](https://gasprices.aaa.com/) - Gas Price Tracker * [Music Software Deals](https://musicsoftwaredeals.com/) - Track Music Software Prices @@ -1061,12 +1055,11 @@ * [Paper Sizes](https://papersizes.io/) - Common Paper Sizes * [WhoBrings](https://whobrings.com/) - Party Item Management Tool * [wttr](https://wttr.in/) - Simple Weather Site / [GitHub](https://github.com/chubin/wttr.in) -* [Free-lookup](https://free-lookup.net/) - Phone Number Lookup -* [KittySplit](https://www.kittysplit.com/en/) or [Spliit](https://spliit.app/) - Group Expense Splitting Calculators +* [KittySplit](https://www.kittysplit.com/en/) or [Spliit](https://spliit.app/) - Group Expense Splitting Calculator * [StageTimer](https://stagetimer.io/) - Event Timer * [Countdowns](https://www.countdowns.live/) - Create Custom Countdowns * [A Bra That Fits](https://www.abrathatfits.org/calculator.php) or [BraMetric](https://brametric.com/) - Bra Size Calculators -* [Wheel Decide](https://wheeldecide.com/), [PickerWheel](https://pickerwheel.com/), [HeySpinner](https://heyspinner.com/) or [Wheel of Names](https://wheelofnames.com/) - Wheel Randomizers +* [Wheel Decide](https://wheeldecide.com/), [PickerWheel](https://pickerwheel.com/), [SWG](https://spinthewheelgenerator.com/), [HeySpinner](https://heyspinner.com/) or [Wheel of Names](https://wheelofnames.com/) - Wheel Randomizers * [SurveyHeart](https://surveyheart.com/) or [Pepperform](https://pepperform.net/) - Survey Creators * [Samay](https://samay.app/) - Meeting Time Polls * [Event Rally](https://rallly.co/) / [GitHub](https://github.com/lukevella/Rallly), [Cally](https://cally.com/), [LettuceMeet](https://lettucemeet.com), [Mobilizon](https://joinmobilizon.org/) or [Gancio](https://gancio.org/) - Event Organizing @@ -1074,8 +1067,8 @@ * [colnect](https://colnect.com/en) - Manage Personal Collections * [AllBadges](https://allbadges.net/en) - Track Badge Collection * [Diffchecker](https://www.diffchecker.com/) - Check Differences in Text, Images, PDFs or Files -* [Find Your Place](https://where-is-this.com/) - Find Places from Pictures * [Forebears](https://forebears.io/) or [BehindTheName](https://www.behindthename.com/) - Name Etymologies +* [Trans Voice Party](https://transvoice.party/) - Trans Voice Training Resources / [Discord](https://discord.gg/8weEXE7RzU) * [Acoustic Gender](https://acousticgender.space/) - Measure Voice Pitch * [Timeline Cascade](https://markwhen.com/) / [GitHub](https://github.com/mark-when/markwhen), [Timeline JS](https://timeline.knightlab.com/) or [Time.Graphics](https://time.graphics/) - Create Timelines * [Timeliner](https://timelinize.com/) - Create Personal Digital Timeline @@ -1093,6 +1086,7 @@ * [TemplateMaker](https://www.templatemaker.nl/) - Package / Box Templates * [/r/Assistance](https://www.reddit.com/r/Assistance/), [/r/borrow](https://www.reddit.com/r/borrow/), [/r/Random_Acts_Of_Pizza](https://www.reddit.com/r/Random_Acts_Of_Pizza/) or [/r/Homeless](https://www.reddit.com/r/homeless/) - Assistance / Donation Subreddits * [CharityNavigator](https://www.charitynavigator.org/), [Arab.org](https://arab.org/), [CharityWatch](https://www.charitywatch.org/), [ProPublica](https://projects.propublica.org/nonprofits/) or [GiveWell](https://www.givewell.org) - Charity Ratings and Donor Resources +* [Hots&Cots](https://www.hotscots.app/) - Military Reviews of Barracks / DFAC *** @@ -1163,12 +1157,10 @@ * [Pick Time](https://pick-time.io/) - Easily Schedule Times with Friends * [Proton Calendar](https://proton.me/calendar) - Calendar * [Tweek](https://tweek.so/) - Calendar -* [TOAST UI Calendar](http://ui.toast.com/tui-calendar) - Calendar -* [CompassCalendar](https://www.compasscalendar.com/) - Calendar * [Gantt](https://github.com/neuronetio/gantt-schedule-timeline-calendar) - Calendar * [Morgen](https://www.morgen.so/) - Calendar * [time.fyi](https://time.fyi/) - Calendar / Time Tools -* [Office Holidays](https://www.officeholidays.com/) or [Forekast](https://forekast.com/) - World Event Calendars +* [Office Holidays](https://www.officeholidays.com/) - World Event Calendars *** @@ -1195,6 +1187,7 @@ * [Resetera](https://www.resetera.com/) or [RakcetBoy](https://racketboy.com/forum/) - Game Forums * [TheRPF](https://www.therpf.com/forums/) - Movie Costume / Prop Forum * [Websleuths](https://www.websleuths.com/) - Crime Solving Forum +* [Airsoft International](https://discord.gg/airsoft) - Airsoft Guides / Community * [Photonlexicon](https://www.photonlexicon.com/forums/) - Lasers Forum * [Status.Cafe](https://status.cafe/) - Share Current Status * [TwoCansAndAString](https://twocansandstring.com/) or [TellOnMe](https://tellonym.me/) - Anonymous Q&A @@ -1209,9 +1202,12 @@ ## ▷ Image / Video -* ↪️ **[Random Images](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_random_generators)** +* ↪️ **[Image Creation](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/img-tools#wiki_.25BA_image_creation)** +* ↪️ **[ASCII Art](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/text-tools#wiki_.25B7_ascii_art)** +* ↪️ **[Art / Illustations](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/img-tools#wiki_.25B7_art_.2F_illustrations)** * ↪️ **[GIF Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/img-tools#wiki_.25B7_gif_tools)** * ↪️ **[Meme Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/img-tools/#wiki_.25B7_meme_tools)** +* ↪️ **[Random Images](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_random_generators)** * ↪️ **[Random Webcams](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_live_webcams)** * ↪️ **[4chan Archives](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/social-media#wiki_.25B7_4chan_archives)** * ⭐ **[SakugaBooru](https://www.sakugabooru.com/)** - Anime Animation Booru / [Enhancements](https://chromewebstore.google.com/detail/sakuga-extended/khmnmdaghmhkcbooicndamlhkcmpklmc) @@ -1242,6 +1238,11 @@ * [Cataas](https://cataas.com/cat) or [Random Cat](https://s4il.is-a.dev/randomcat/) - Random Cat Images * [procatinator](https://procatinator.com/) - Cat GIFs & Music * [Open Puppies](https://openpuppies.com/) - Random Dog GIFs +* [Magic Sketchpad](https://magic-sketchpad.glitch.me/) +* [Webchemy](https://webchemy.org/) - Drawing / Sketching +* [World Draw](https://world-draw.appspot.com/draw) +* [Eschersket](https://eschersket.ch/) - Symmetry Drawing Tool +* [Crayon Town](https://crayon.town/) - Infinite Online Canvas * [bomomo](https://bomomo.com/) - Multi-Brush Painting * [Monsterland](https://monsterland.net/) - Collaborative Monster Drawing * [JS Kid Pix](https://kidpix.app/) - Browser JS KidPix @@ -1290,14 +1291,11 @@ * 🌐 **[David.li](https://david.li/)** - Physics Games * ↪️ **[Fun Site Indexes](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_fun_indexes)** * ↪️ **[Browser Games](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/games#wiki_.25BA_browser_games)** -* ↪️ **[Image Creation](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/img-tools#wiki_.25BA_image_creation)** -* ↪️ **[ASCII Art](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/text-tools#wiki_.25B7_ascii_art)** * ⭐ **[The Life Engine](https://thelifeengine.net/)** - Artificial Life Simulation / [Discord](https://discord.gg/ZsrAAByEnr) / [Video](https://youtu.be/iSAKEnRfles) * ⭐ **[Sandboxels](https://sandboxels.r74n.com/), [Powder Game 2](https://dan-ball.jp/en/javagame/dust2/), [Powder Toy](https://powdertoy.co.uk/), [sandspiel.club](https://sandspiel.club/)** - Falling Sand Physics Sandbox -* ⭐ **[Genetic Cars 2](https://rednuht.org/genetic_cars_2/)** - Random 2D Car Generator +* ⭐ **[Genetic Cars 2](https://rednuht.org/genetic_cars_2/)** or [geneticars](https://geneticars.vercel.app/) - Random 2D Car Generator * ⭐ **[Human Benchmark](https://humanbenchmark.com/)** - Brain Games & Cognitive Tests * ⭐ **[Got Rhythm?](https://www.concerthotels.com/got-rhythm)** - Rhythm / Tempo Test -* [Little Alchemy](https://littlealchemy.com/) or [Little Alchemy 2](https://littlealchemy2.com/) - Alchemy Game * [Impersona](https://impersona.chat/) - In-Character Public Chats / [Discord](https://discord.gg/DX74sGX) * [DJ3D](https://dj3d.io/) - Watch YouTube in Virtual World * [JUST SCREAM!](https://justscream.baby/) - Scream into the Universe @@ -1313,6 +1311,7 @@ * [MagicKeyboard](http://magickeyboard.io/) - Try "feross", "hexbin", "rain", or "semi" * [Just Type Stuff](https://justtypestuff.com/) - Type Things into Existence * [Cafe and Diner](https://www.cafeanddiner.com/) - Browser Mystery Game +* [Pokémon Fossil Museum](https://my.matterport.com/show/?m=P9WCbyCBGBM) - Explore Pokémon Fossil Museum * [New Campaign Trail](https://www.newcampaigntrail.com/) - Presidential Campaign Game / [Discord](https://discord.gg/CfS6yTtjZj) * [There Is No Website](https://www.thereisnoweb.site/) - Browser Website Game * [2020 Game](https://2020game.io/) - Play Through 2020 @@ -1332,7 +1331,7 @@ * [cnnix-steership](https://edition.cnn.com/interactive/2021/03/cnnix-steership/) - Steer through the Suez Canal * [Ballooning](https://alexanderperrin.com.au/triangles/ballooning/) - Procedurally Generated Balloon Simulator * [Tamajoji](https://aericode.itch.io/tamajoji) - Browser Tamagotchi -* [Koi Pond](https://koipond.fish/) - Feed Koi +* [KickassApp](https://kickassapp.com/) - Turn Webpages into Space Shooting Game * [Our World of Text](https://ourworldoftext.com/), [TextWall](https://tw.2s4.me/) or [OurWorldOfText](https://www.yourworldoftext.com/) - Infinite Community Text Grid * [This Is Sand](https://thisissand.com/) - Make Sand Art * [Orb.Farm](https://orb.farm/) - Virtual Aquatic Ecosystem @@ -1352,6 +1351,7 @@ * [Elastic Man](https://www.adultswim.com/etcetera/elastic-man/) - Elastic Morty * [Screentoys](https://www.screentoys.com/) - Photo Morphing Toy * [Smash The Walls](https://smashthewalls.com/) - Smash Walls +* [Odyssey](https://experience.odyssey.world/) - Interactive 3D AI Generated Video * [Koalas to the Max](https://www.koalastothemax.com/) - Make Smaller & Smaller Dots * [Popcat](https://popcat.click/) - Worldwide Popcat Clicking Competition * [Spherical Trochoids](https://claytonmain.github.io/spherical-trochoids/) - Experiment with Spherical Trochoids @@ -1359,6 +1359,7 @@ * [Neonflames](https://29a.ch/sandbox/2011/neonflames/) - Draw Nebulas * [Leapy Grid](https://codepen.io/Godje/full/mOzpEY/) - Play with Rainbow Grid * [Pianos.pub](https://pianos.pub/) - Find Public Pianos +* [Note Block Studio](https://noteblock.studio/) - Minecraft Block Composer / [Share Songs](https://noteblock.world/) / [GitHub](https://github.com/OpenNBS) * [danielx](https://danielx.net/composer/) or [AMS](https://flyx.org/ams/) - Mario Paint Composer Ports / [Archive](https://archive.org/details/mariopaintcomposer_201609) * [Typatone](https://www.typatone.com/) - Play Music by Typing * [Blossom](https://blossom.alexbainter.com/) - Create Sounds via Clicks @@ -1395,7 +1396,7 @@ * ⭐ **[TVTropes](https://tvtropes.org/)** - Tropes & Media Encyclopedia * ⭐ **[Ranker](https://www.ranker.com/)**, [Listography](https://listography.com/), [hero](https://hero.page/), [TheTopsTens](https://www.thetoptens.com/), [CopyPasteList](https://copypastelist.co/) or [ListVerse](https://listverse.com/) - Create / Explore Lists * ⭐ **[The Lost Media Wiki](https://lostmediawiki.com/)** / [Forum](https://forums.lostmediawiki.com/) / [Discord](https://discord.gg/NFsM8YbBYH) -* ⭐ **[Goody2](https://www.goody2.ai/chat)** - Worlds Most Ethical AI +* ⭐ **[Goody2](https://www.goody2.ai/chat)** - World's Most Ethical AI * [The Pudding](https://pudding.cool/) - Explains Ideas w/ Visual Essays * [Google Earth](https://www.google.com/earth/about/versions) - Explore Earth * [Land Lines](https://lines.chromeexperiments.com/) - Explore Google Earth via Gestures @@ -1403,6 +1404,7 @@ * [QuarterMaester](https://quartermaester.info/) - Game of Thrones Map * [DamnInteresting](https://www.damninteresting.com/) - Interesting Stories * [Unusual Articles](https://en.wikipedia.org/wiki/Wikipedia:Unusual_articles) - Unusual Wiki Articles +* [spurious correlations](https://tylervigen.com/spurious-correlations) - Random Correlations * [The Cutting Room Floor](https://tcrf.net/The_Cutting_Room_Floor) - Unused Video Game Content Research * [SongMeanings](https://songmeanings.com/) - Discover Song Meanings * [The Dictionary of Obscure Sorrows](https://www.thedictionaryofobscuresorrows.com/) - Made Up Words for Sorrows @@ -1420,7 +1422,7 @@ * [VGA Museum](https://www.vgamuseum.info/) - Graphic Cards History * [Virus Encyclopedia](http://virus.wikidot.com/) - Computer Virus History * [MobilePhoneMuseum](https://www.mobilephonemuseum.com/) - Mobile Phone History / Info -* [KilledByGoogle](https://killedbygoogle.com/) or [KilledByMicrosoft](https://killedbymicrosoft.info/) - Dead Projects +* [KilledByGoogle](https://killedbygoogle.com/) - Dead Projects * [Projectrho](https://www.projectrho.com/public_html/rocket/) - Fantasy Rocket Encyclopedia * [EnigmaLabs](https://enigmalabs.io/), [UFO Casebook](https://www.ufocasebook.com/) or [UFO Sighting Chart](https://i.redd.it/0l9ugv9kz4091.jpg) - UFO Sighting Lists / Tracking * [BFRO](https://bfro.net/) - Bigfoot Research Site @@ -1505,7 +1507,6 @@ * [Color Arena](https://color-arena.agpallav.com/) - Best Color Voting * [ColorNames](https://colornames.org/) - Help Name Colors * [Colorword](https://colorword.recu3125.com/) - Word Color Voting -* [Star Wars ASCII Animation](https://asciimation.co.nz/) * [Gizoogle](https://www.gizoogle.net/) - Google Shiznit * [Presence](https://presence.mrarich.com/) - Unwrap Presents Remotely * [Lots of Links](https://annierau.com/LOL-lots-of-links) - Random Funny Links @@ -1516,7 +1517,7 @@ * [The Editing Room](https://www.the-editing-room.com/) - Funny Abridged Movie Scripts * [Gen-Z AI](https://openai-quickstart-node-1.vercel.app/) - AI Generated Urban Dictionary Definitions * [ShindanMaker](https://en.shindanmaker.com/) - Diagnoses / Fortune AI -* [LMGTFY](https://lmgtfy2.com/), [LMDDGTFY](https://lmddgtfy.net/), [LMSPTFY](https://lmsptfy.com/), [LetMeGoogleThat](https://letmegooglethat.com/) or [GIYBF](https://giybf.com/) - Remind People that Search Engines Exists +* [LMGTFY](https://lmgtfy2.com/), [LMDDGTFY](https://lmddgtfy.net/), [LMSPTFY](https://lmsptfy.com/) or [GIYBF](https://giybf.com/) - Remind People that Search Engines Exist * [AfterTheTone](https://afterthetone.com/) - Random Answering Machine Messages * [Pink Trombone](https://dood.al/pinktrombone/) - Human Pitch Generator * [Purrli](https://purrli.com/) - Cat Purr Generator diff --git a/docs/non-english.md b/docs/non-english.md index ce8e0ecb8..b58ea2013 100644 --- a/docs/non-english.md +++ b/docs/non-english.md @@ -18,7 +18,7 @@ ## ▷ Downloading / تحميل -* [Stardiima](https://e.stardiima.top/) - Movies / TV / [Telegram](https://t.me/stardima_vip) +* [Stardiima](https://e.stardiima.top/) - Movies / TV / [Telegram](https://t.me/+Phq8ETiiBAIwNzJk) * [arteenz](https://www.arteenz.com/) - Cartoons / Anime / Dub / 720p * [ArabicFonts](https://arabicfonts.net/) or [ARFonts](https://www.arfonts.net/) - Fonts * [Eternal Dream Arabization](https://www.etrdream.com/) - Modern / Official / Retro Games Arabic Localization @@ -31,22 +31,17 @@ ## ▷ Streaming / البث +* ⭐ **[Cimaleek](https://m.cimaleek.to/)**, [2](https://web.cimalek.buzz/) - Movies / TV / Which Domain Works Depends On Your Location * ⭐ **[FaselHD](https://www.faselhd.center/)**, [2](https://www.faselhds.care/) - Movies / TV / Anime / Sub / 1080p / Use Adblocker -* ⭐ **[RunTV](https://runtv.cc/)** - Anime / Sub / 1080p -* [ArabLionz](https://arlionztv.ink/), [2](https://arlionztv.pro/) - Movies / TV / Sub / 1080p +* [ArabLionz](https://arlionztv.ink/) - Movies / TV / Sub / 1080p * [egydead](https://egydead.space/) - Movies / TV / Anime / Sub / 1080p -* [arabseed](https://m.asd.quest/) - Movies / TV / Wrestling / Sub / 1080p * [FajerShow](https://fajer.show) - Movies / TV / Cartoons / Sub / 720p -* [egybest](https://www.egybest.co.in/) - Movies / TV / Anime -* [WeCima](https://wecima.xyz/) - Movies / TV / Cartoons -* [mycinma](https://mycinma.com/) - Movies / TV -* [Cimaleek](https://web.cimaleek.to/) - Movies / TV +* [egybest](https://egybest.la/) - Movies / TV / Anime * [mycima-wecima](https://mycima-wecima.com/) - Movies / TV * [Laroza TV](https://tv.laroza.now/) - TV * [witanime](https://witanime.cyou/) - Anime / Sub / 1080p * [okanime](https://okanime.tv/) - Anime / Sub / 1080p / Region Locked * [ristoanime](https://ristoanime.com/) - Anime -* [zorox](https://zoroxtv.site/) - Anime * [animezid](https://animezid.net/) - Anime / Cartoons * [arabic-toons](https://www.arabic-toons.com/) - Cartoons * [Flowind](https://flowind.net/) - Cartoons @@ -57,6 +52,7 @@ * [jotorrent](https://www.jotorrent.com/) - Anime / Sign-Ups Open Every Month * [elahmad](http://www.elahmad.com/tv/arabic-channel.php) - Live TV * [Bein4kora](https://bein4kora.com/) - Live Football +* [koraa-live](https://www.koraa-live.com/) - Live Football * [al-fann](https://www.al-fann.net/) - Music * [nghmat](https://songs.nghmat.com/) - Music / MP3 @@ -69,6 +65,7 @@ * [EbookSar](https://www.ebooksar.net/) - Books / [Telegram](https://t.me/ebooksar) * [AlarabiMag](https://www.alarabimag.com/) - Books * [Hindawi](https://www.hindawi.org/) - Books +* [3kitab](https://3kitab.com/) - Books * [Abjjad](https://www.abjjad.com/) - Books * [3asq](https://3asq.org/) - Manga * [Azoramoon](https://azoramoon.com/) - Manga @@ -96,19 +93,21 @@ * [Boimate](https://boimate.com/) - Books * [ebanglalibrary](https://www.ebanglalibrary.com/) - Books * [BengaliEbook](https://www.worldmets.com/) - Books +* [Banglabook](https://www.banglabook.org/) * [GoBanglaBooks](https://www.gobanglabooks.com/) - Books / Downloads -* [boierpathshala](https://boierpathshala.com/pdf/) - Educational Books +* [SovietBooksinBengali](https://sovietbooksinbengali.blogspot.com/) - Soviet Books * [NCTB](https://nctb.portal.gov.bd/) - NCTB Textbooks of Bangladesh ## ▷ Downloading / ডাউনলোডিং -* [MLSDB](https://mlsbd.shop/) - Movie / TV +* [MLSBD](https://mlsbd.shop/) - Movie / TV * [Bangla Song](https://www.music.com.bd/) - Bangla Song / Music / Radio / MP3 *** ## ▷ Streaming / স্ট্রিমিং +* [jadoocinema](https://www.jadoocinema.com/) - Movies / TV / Sub / Dub / 1080p * [BanglaFlix](https://banglaflix.com.bd/) - Movies / TV * [Bangla IPTV](https://rentry.co/FMHYBase64#bangla-iptv-playlists) - IPTV Playlists @@ -116,7 +115,7 @@ # ► Bulgarian / Български -* [Subsunacs](https://subsunacs.net/), [YavkA](https://yavka.net/) or [subs.sab.bz](http://subs.sab.bz/) - Subtitles +* [YavkA](https://yavka.net/) or [subs.sab.bz](http://subs.sab.bz/) - Subtitles ## ▷ Torrenting / Торентиране @@ -126,7 +125,6 @@ ## ▷ Streaming / Стрийминг * [NovaPlay](https://play.nova.bg/) - TV / Live / Sub / Dub / 1080p -* [Filmi99](https://filmi99.com/) - Movies / TV / Cartoons / Sub / 720p * [Filmi24](https://filmi24.com/) - Movies / Sub / Dub / 720p * [FilmiPlay](https://filmiplay.com/) - Movies / Sub / Dub / 720p * [Filmifen](https://filmifen.com/) - Movies / Sub / Dub @@ -142,6 +140,10 @@ * 🌐 **[heji](https://233heji.com/)** or [bajins](https://www.bajins.com/) - Chinese Sites / Tools Indexes * 🌐 **[Awesome GitHub Repo](https://github.com/Wechat-ggGitHub/Awesome-GitHub-Repo)** - Programming Resources Index * 🌐 **[RecTG](https://github.com/jackhawks/rectg)** - Chinese Telegram Groups / Bots +* [ixigua.com](https://www.ixigua.com/) - Chinese Alternative to YouTube and TikTok +* [Linux Do](https://linux.do/) - Linux Forum +* [Diaosi Forum](https://assbbs.com/) - Piracy Discussion Forum +* [V2EX](https://v2ex.com/) or [ZongScan](https://www.zongscan.com/) - Programming Forum * [assrt](https://assrt.net/), [srtku](https://srtku.com/) or [zimuku](https://zimuku.org/) - Subtitles * [Tool.lu](https://tool.lu/) - Online Tools * [Anti-Ad](https://anti-ad.net/) - Adblock Filters @@ -149,15 +151,9 @@ * [Thanox](https://tornaco.github.io/Thanox-Docs/en) - Android System Manager * [Winmoes](https://winmoes.com/) - Anime Windows Themes / Wallpapers * [Gridea](https://open.gridea.dev/) - Blog Writing Client -* [China Firewall Bypass Guide](https://github.com/vpncn/vpncn.github.io), [gfwlist](https://github.com/gfwlist/gfwlist), [XX-Net](https://github.com/XX-net/XX-Net), [/r/dumbclub](https://www.reddit.com/r/dumbclub/) or [New Pac](https://github.com/Alvin9999/new-pac) - Bypass Chinese Firewall -* [GHProxy](https://ghproxy.link/) - GitHub Proxy (not blocked by GFW) -* [China Firewall Test](https://www.dotcom-tools.com/china-firewall-test) or [Chinese Firewall](https://viewdns.info/chinesefirewall/) - Chinese Firewall Blocking Test -* [Accesser](https://github.com/URenko/Accesser/) - SNI RST Solver -* [rectg](https://github.com/jackhawks/rectg) - Chinese Telegram Groups / Bots * [taioan](https://ji.taioan.org/) - Chinese Spell Check * [itaigi](https://itaigi.tw/) - Chinese to Taiwanese Translator * [BookStack](https://www.bookstack.cn/) - Developer / Programming Guides -* [Free Chinese Fonts](https://www.freechinesefont.com/) or [Fonts.net](https://www.fonts.net.cn/) - Fonts * [Gitee](https://gitee.com/) - GitHub Alternative * [HelloGitHub](https://hellogithub.com/) - GitHub Projects * [litt.ly](https://litt.ly/) - Personal Link Homepage @@ -166,21 +162,23 @@ * [Bangumi](https://bangumi.tv/), [2](https://chii.in/) - Media Database / [Android Client](https://github.com/czy0729/Bangumi) * [TopHub](https://tophub.today/), [Rebang](https://rebang.today/) or [Chinadaily](https://cn.chinadaily.com.cn/) - News * [IT Home](https://www.ithome.com/) - Tech News -* [ixigua.com](https://www.ixigua.com/) - Chinese Alternative to YouTube and TikTok -* [iyd.wang](https://www.iyd.wang/) - Chinese Books / Fiction / Non-Fiction -* [feiku6](https://www.feiku6.com/) - Chinese Books / Reading / Listening -* [Salty Leo](https://book.tstrs.me/search) - Chinese Books / Fiction / Non-Fiction / Downloading * [jialezi](https://blog.jialezi.net/) - Tech Tutorials -* [Linux Do](https://linux.do/) - Linux Forum -* [Diaosi Forum](https://assbbs.com/) - Piracy Discussion Forum * [Lofter](https://www.lofter.com/) - Novel Fan Art -* [V2EX](https://v2ex.com/) or [ZongScan](https://www.zongscan.com/) - Programming Forum * [Baidu](https://www.baidu.com/) / [2](http://hk.baidu.com/), [Toutiao](https://www.toutiao.com/), [sogou](https://www.sogou.com/) or [yisou](http://yisou.com/) - Search Engines -* [BlockedInChina](https://www.comparitech.com/privacy-security-tools/blockedinchina/) or [China Firewall Test](http://www.chinafirewalltest.com/) - Test if Site is Blocked in China * [ICIBA](https://www.iciba.com/) / [Client](https://cp.iciba.com/), [Fanyi](https://fanyi.qq.com/) or [YouDao](https://fanyi.youdao.com/) - Translators * [Hack Game](https://hack-games.com/) - Incremental Games * [Funn](https://fuun.fun/) - Fun Sites +## ▷ GFW Bypass + +* ⭐ **[Censorship Bypass Guide](https://2305878273.7844380499.cfd/)** - Censorship Bypass Guide +* [China Firewall Bypass Guide](https://github.com/vpncn/vpncn.github.io), [gfwlist](https://github.com/gfwlist/gfwlist), [XX-Net](https://github.com/XX-net/XX-Net), [/r/dumbclub](https://www.reddit.com/r/dumbclub/) or [New Pac](https://github.com/Alvin9999/new-pac) - Bypass Chinese Firewall +* [gfw.report](https://gfw.report/) - GFW Information +* [GHProxy](https://ghproxy.link/) - GitHub Proxy (not blocked by GFW) +* [Accesser](https://github.com/URenko/Accesser/) - SNI RST Solver +* [China Firewall Test](https://www.dotcom-tools.com/china-firewall-test), [ChinaFirewallTest](http://www.chinafirewalltest.com/), [BlockedInChina](https://www.comparitech.com/privacy-security-tools/blockedinchina/) or [Chinese Firewall](https://viewdns.info/chinesefirewall/) - Chinese Firewall Blocking Test +* [Apple Account Guide](https://zhuanlan.zhihu.com/p/623576755) - How-to Make Apple Account in China + ## ▷ Downloading / 下载 * [shinybbs](https://sysub.vip/) - Movies / TV / 1080p @@ -192,17 +190,18 @@ * [flac_file](https://t.me/flac_file) - Audio / FLAC * [VmoMusic](https://t.me/VmoMusic) - Audio / FLAC * [ZAYU_music](https://t.me/ZAYU_music) - Audio / FLAC +* [iyd.wang](https://www.iyd.wang/) - Books / Fiction / Non-Fiction +* [feiku6](https://www.feiku6.com/) - Books / Reading / Listening +* [Salty Leo](https://book.tstrs.me/search) - Books / Fiction / Non-Fiction / Downloading ## ▷ Torrenting / 下载种子 +* [QBittorent Enhanced](https://github.com/c0re100/qBittorrent-Enhanced-Edition) - QBitorrent for Chinese Users * [Csze BT](https://bt.orzx.im/) - Video / Audio / Books * [acgnx](https://www.acgnx.se/) - Video / Audio / Books / NSFW * [Share.dmhy](https://share.dmhy.org/) - Video / Anime / NSFW -* [VGMUpdate](http://www.vgmupdate.com/) - Video / Manga / NSFW * [XiaZai001](https://xiazai001.org/) - Video / Audio * [dytt8](https://www.dydytt.net) - Video / Anime -* [DoMP4](https://www.mp4us.com/) - Video -* [xlmp4](https://www.xlmp4.com/) - Video * [dygang](https://www.dygang.cc/) - Video * [ACG.rip](https://acg.rip/) - Anime / Audio * [MioBT](https://www.miobt.com/) - Anime @@ -218,8 +217,8 @@ * 🌐 **[Chinese Drama Site Index](https://www.reddit.com/r/CDrama/wiki/streaming)** - Chinese Drama Sites Index * 🌐 **[Movie Forest](https://549.tv/)** or **[klyingshi](https://klyingshi.com/)** - Chinese Streaming Sites Index -* ⭐ **[555dy](https://555u.store/)** - Movies / TV / Anime / NSFW / Sub / 1080p -* ⭐ **[BiliBili](https://www.bilibili.com/)** / [.tv](https://www.bilibili.tv/) / [Multi-Platform Client](https://xfangfang.github.io/wiliwili/) / [Signup Block](https://greasyfork.org/en/scripts/467474) +* ⭐ **[555dy](https://577938.vip/)** - Movies / TV / Anime / NSFW / Sub / 1080p +* ⭐ **[BiliBili](https://www.bilibili.com/)** / [.tv](https://www.bilibili.tv/) / [Multi-Platform Client](https://xfangfang.github.io/wiliwili/) / [Signup Block](https://greasyfork.org/en/scripts/467474) / [Sponsorblock](https://github.com/hanydd/BilibiliSponsorBlock) / [Enhancement Script](https://github.com/the1812/Bilibili-Evolved) * [ddrk](https://ddys.pro/), [2](https://ddys.info/) - Movies / TV / Anime / Sub / 1080p * [Tencent Video](https://v.qq.com/) - Movies / TV / Anime / Cartoons / Sub / Dub / 1080p / [Downloader](https://weibomiaopai.com/online-video-downloader/tencent) * [MoMoVOD](https://momovod.app/) - Movies / TV / Anime / Sub / 1080p @@ -227,7 +226,6 @@ * [ztv.tw](https://ztv.tw) - Streaming / Movies / TV / Anime * [chinaq.app](https://chinaq.app/) - Movies / TV / Anime * [Imaple](https://imaple8.co/) - Movies / TV / Sub / 1080p -* [imjw](https://www.ttkmj.cc/) - Movies / TV / 1080p * [xiaoyakankan](https://xiaoyakankan.com/) - Movies / TV / 720p * [IYF](https://www.iyf.tv/) - Movies / TV / Sub / Dub / 720p * [gimytw](https://gimytw.cc/) - Movies / TV / Cartoons / Dub @@ -244,7 +242,6 @@ * [Myself-BBS](https://myself-bbs.com/) - Anime / Sub / 1080p * [dmd77](https://www.dmd77.com/) - Anime / Sub / 1080p * [dm530w](http://dm530w.co/) - Anime / Sub / 1080p -* [74xz](https://74xz.com/) - Anime / Sub / 1080p * [AGE Anime](https://www.agedm.tv/) - Anime / Sub / 1080p * [bimiacg](https://www.bimiacg14.net/) - Anime / Sub / 1080p * [music.163](https://music.163.com/) - Music @@ -269,15 +266,13 @@ * [nunubook.com](https://nunubook.com/) - Fiction / Non-fiction * [hallowlib](https://bk.hallowlib.org/) - Fiction / Non-fiction * [haodoo](https://haodoo.net/) - Fiction -* [24hbook](https://24hbook.com/) - Fiction / Non-fiction / [Telegram](https://t.me/hi24hbook) -* [lingjingxingzhe](https://lingjingxingzhe.com/) - Fiction +* [24hbook](https://24hbook.com/) - Fiction / Non-fiction * [guoxuedashi.net](https://www.guoxuedashi.net/) - Fiction / Non-fiction * [5165.org](https://5165.org/) - Fiction / Nonfiction * [zhonghuadiancang](https://www.zhonghuadiancang.com/) - Classic Books * [52shuku](https://www.52shuku.vip/) - Books / Light-Novels * [ttkan](https://www.ttkan.co) - Books / Light-Novels * [Piaotian](https://www.piaotia.com/) - Books / Light-Novels -* [369book](https://www.369book.cc/) - Light-Novels * [qqszz](https://www.qqszz.net/) - Books / Light-Novels / Sign-Up Required * [yodu](https://www.yodu.org/) - Books / Light-Novels * [beqege](https://www.beqege.cc/) - Light-Novels @@ -314,7 +309,6 @@ * [yibenmanhua](https://www.yibenmanhua.com/) - Manga * [dongmanmanhua](https://www.dongmanmanhua.cn/) - Manga * [2animx](https://www.2animx.com/) - Manga -* [DMZJ](https://www.idmzj.com/) - Manga * [cartoonmad](https://www.cartoonmad.com/) - Manga * [baozimh](https://baozimh.one/) - Manhua * [acgn.cc](https://comic.acgn.cc/) - Manga @@ -325,7 +319,7 @@ * [CText](https://ctext.org/), [ChineseNotes](https://chinesenotes.com/texts.html) - Chinese Historic Text Archive * [guoxue](http://www.guoxue.com/) - History / Journals * [NG Tech](https://ng-tech.icu/) - Documents -* [ebooks](https://github.com/XWHQSJ/ebooks), [Chinese Programming Books](https://github.com/justjavac/free-programming-books-zh_CN) or [awesome-wiki-books](https://github.com/awesome-wiki/awesome-wiki-books), [Banshujiang](http://www.banshujiang.cn/) - Programming Books +* [ebooks](https://github.com/XWHQSJ/ebooks), [Chinese Programming Books](https://github.com/justjavac/free-programming-books-zh_CN) or [Banshujiang](http://www.banshujiang.cn/) - Programming Books * [kangxizidian](https://kangxizidian.com/) - Chinese Kangxi Dictionary * [Shufazidian](https://www.shufazidian.com/) - Chinese Calligraphy Dictionary * [owlook](https://www.owlook.com.cn/) - Chinese Web Novel Search / [GitHub](https://github.com/howie6879/owllook) @@ -340,8 +334,6 @@ # ► Czech / Čeština -* [Seznam](https://www.seznam.cz/) - Web Search Engine -* [CSFD](https://www.csfd.cz/) - Czech Film Database * [uschovna](https://www.uschovna.cz/) or [posilej](https://posilej.cz/) - Czech File Hosts ## ▷ Downloading / Stahování @@ -350,14 +342,20 @@ * [WarezCenter](https://warcenter.cz/) - Video / Audio / Books / NSFW * [WebShare](https://webshare.cz/) - Video / Audio / Books +## ▷ Torrenting + +* [sktorrent](https://sktorrent.eu/) - Movies / TV / Anime + ## ▷ Streaming / Streamování * [Bombuj](https://bombuj.si/) - Movies / TV * [Sledujteto](https://www.sledujteto.cz/) - Movies / TV / Anime / 1080p * [videoserialy](https://videoserialy.to/) - Movies / TV / Anime / 1080p * [svetserialu](https://svetserialu.io/) - Movies / TV / Anime / 1080p +* [najserialy](https://www.najserialy.io/) - Movies / TV / Anime / 1080p * [Ceskatelevize](https://www.ceskatelevize.cz/ivysilani/) - Movies / TV * [StarSites](https://goal.starsites.fun/) - Live Football / Hockey +* [CSFD](https://www.csfd.cz/) - Czech Film Database ## ▷ Reading / Čtení @@ -402,12 +400,11 @@ * 🌐 **[/r/FrancePirate Mega](https://francepirate.gitbook.io/wikitipiak/tipiakeries)** - Piracy Site Mega Thread / [Subreddit](https://www.reddit.com/r/FrancePirate/) * [SubSynchro](https://www.subsynchro.com/), [Sous-Titres](https://www.sous-titres.eu/) or [SubFactory](https://subfactory.fr/) - Subtitles -* [Wikiwix](https://wikiwix.com/) - Wikipedia Search +* [Wikiwix Archive](https://archive.wikiwix.com/) - Wikipedia Search * [Tseret](https://tseret.com/) - Game Guides * [BonPatron](https://bonpatron.com/) - Spelling and Grammar Check * [GoTo10](https://www.goto10.fr/) - BBS and Minitel Archives * [DropReference](https://dropreference.com/) - PC Building Site -* [Wikiwix Archive](https://archive.wikiwix.com/) - Web Archive Site * [nuit-blanche](https://nuit-blanche.ch/) - Drug Detox Help * [Remonterletemps](https://remonterletemps.ign.fr) - France Geographic / Forestry Info and Maps * [Paradise lost.666](https://mfp666.blogspot.com/) - Classic French Movies / TV / Music @@ -416,7 +413,6 @@ * [FRDownMags](https://fr.downmagaz.net/) - Magazines * [French EPs](https://patsouloldies.blogspot.com/) - Classic French Music MP3 (192) * [Abandonware France](https://www.abandonware-france.org/index.php) - Abandonware -* [TousLesDrivers](https://www.touslesdrivers.com/) - Drivers * [Deal Labs](https://www.dealabs.com/) - Track Deals * [Perspective Monde](https://perspective.usherbrooke.ca/) - Datasets / Statistics * [Prix Carburants](https://www.prix-carburants.gouv.fr/) - Gas Prices @@ -424,7 +420,7 @@ ## ▷ Downloading / Téléchargement -* [WawaCity](https://www.wawacity.tips/) - Movies / TV / Check [Telegram](https://t.me/Wawacity_officiel) if Domain Changes +* [WawaCity](https://www.wawacity.pet/) - Movies / TV / Check [Telegram](https://t.me/Wawacity_officiel) if Domain Changes * [MuaDib](https://muaddib-sci-fi.blogspot.com/) - Sci-Fi Movies * [PiratePunk](https://www.pirate-punk.net/) - Punk Music / Radio / Concerts Dates / Forum * [Emurom](https://www.emurom.net/) - Retro ROMs @@ -433,69 +429,69 @@ ## ▷ Torrenting -* [YGGTorrent](https://www.yggtorrent.top/) - Video / Audio / ROMs / Books -* [Torrent9](https://www.torrent9.site/), [2](https://torrent9.app/) - Video / Audio / ROMs / Books +* [YGGTorrent](https://www.yggtorrent.top/) - Video / Audio / ROMs / Books / Sign-Up Required +* [Torrent9](https://torrent9.to/) - Video / Audio / ROMs / Books * [Cpasbien](https://www1.cpasbien.to/) - Video / Audio / ROMs / Books -* [Sharewood](https://www.sharewood.tv/) - Video / Audio / ROMs / Books +* [Sharewood](https://www.sharewood.tv/) - Video / Audio / ROMs / Books / Sign-Up Required ## ▷ Streaming * ⭐ **[VF-Stream](https://films.vfstream.eu/)** - Movies / TV / Anime * ⭐ **[RgShows](https://www.rgshows.me/)** - Movies / TV / Anime / 4K / [API](https://embed.rgshows.me/) / [Guide](https://www.rgshows.me/guide.html) / [Discord](https://discord.gg/bosskingdom-comeback-1090560322760347649) -* ⭐ **[Movix](https://www.movix.site/)**, [2](https://streammovix.vercel.app/) - Movies / TV / Anime / [Discord](https://discord.com/invite/movix) -* ⭐ **[Frembed](https://frembed.live/)** - Movies / TV / Anime / API +* ⭐ **[Movix](https://www.movix.site/)** - Movies / TV / Anime / [Discord](https://discord.gg/2wSpDJjbvP) +* ⭐ **[Frembed](https://frembed.club/)** - Movies / TV / Anime / API * [Deksov](https://deksov.com/) - Movies / TV / Anime -* [Darkiworld](https://darkiworld7.com/) - Movies / TV / Anime -* [cinepulse](https://cinepulse.fr/) - Movies / TV / Anime +* [Darkiworld](https://darki-tometjerry.com/) - Movies / TV / Anime +* [cinepulse](https://cinepulse.to/) - Movies / TV / Anime * [coflix](https://coflix.mov/) - Movies / TV / Anime -* [Sadisflix](https://sadisflix.ing/), [2](https://sadisflix.vip/) - Movies / TV / Anime / Dub / 1080p / Use Adblocker / [Mirrors](https://sadisflix.wiki/) / [Telegram](https://t.me/sadisflix) -* [Wiflix](https://wiflix-hd.kim/) - Movies / Series / Anime / Dub / [Telegram](https://t.me/wiflix2023) +* [Sadisflix](https://sadisflix.ing/) - Movies / TV / Anime / Dub / 1080p / Use Adblocker / [Telegram](https://t.me/sadisflix) * [Kordoz](https://www.kordoz.com/) - Movies / TV / Anime -* [TF1](https://www.tf1.fr/) - Movies / TV / Anime / Live TV -* [mymovix](https://mymovix.org/) - Movies +* [filmoflix](https://www.filmoflix.is/) - Movies / TV / Anime +* [TF1](https://www.tf1.fr/) - Movies / TV / Anime / Live TV / French VPN Required for Some Content +* [french-streaming](https://www.french-streaming.tv) - Movies / TV / Anime +* [cinestream](https://cinestream.info/) - Movies / TV / Anime * [Cinémathèque de Bretagne](https://www.cinematheque-bretagne.bzh/) - Classic / Amateur Movies * [ICI Tou.tv](https://ici.tou.tv/) - Canada Public Broadcaster / Movies / TV / Docs / Cartoons / Requires Account * [Télé-Québec](https://www.telequebec.tv/) - Québec Public Broadcaster / Movies / TV / Docs / Requires Account * [TV5Unis](https://www.tv5unis.ca/) - Multiple Broadcasters / Movies / TV / Docs / No Account Required * [TFO](https://www.tfo.org/) - Ontario French Public Broadcaster / Movies / TV / Docs / Anime / No Account Required * [FRAnime](https://franime.fr/) - Anime / Sub / 1080p -* [FRAnime.to](https://franime.to/) - Anime / Sub / 1080p * [toonanime](https://fr.toonanime.biz/) - Anime / Sub / Dub * [VoirAnime](https://v6.voiranime.com/) - Anime / Sub / 1080p * [vostfree](https://vostfree.ws/) - Anime / Sub / 1080p * [animesultra](https://v6.animesultra.net/) - Anime / Sub / Dub +* [ryokaianime](https://ryokaianime.fr/) - Anime / Dub / [Discord](https://discord.gg/JXpm5cZrtC) * [French Anime](https://french-anime.com/) - Anime / Sub / 1080p * [Streaming-integrale](https://streaming-integrale.com/) - Anime Sub / Dub / 1080p * [vostanime](https://vostanime.fr/) - Anime / Sub / 1080p * [animeko](https://animeko.co/) - Anime / Sub / 1080p -* [animesz](https://v1.animesz.xyz/) - Anime / Sub / 1080p * [anime-sama](https://anime-sama.fr/) - Anime / Sub / 1080p -* [AWTWA](https://www.awtwa.site/) - Anime / Dub / 1080p / [Discord](https://discord.gg/Pjs5p5TrEW) -* [WITV](https://witv.space/) - Live TV / Sports * [LeFoot](https://lefoot.ru/) - Live Sports * [oohquelbut](https://oohquelbut.ru/) - Live Sports +* [canalsport](https://canalsport.ru/) - Live Sports * [JokerTV](https://jokertv.ru/) - Live Football -* [remontadatv](https://remontadatv.ru/), [2](https://linktr.ee/streamonsport) - Live Football -* [Doc4U](https://doc4u.top/) - Documentaries -* [CatoonHub](https://catoonhub.com/) - Cartoons / Dub / 720p / [Discord](https://discord.com/invite/M7gRTuXc6d) +* [remontadatv](https://remontadatv.ru/) - Live Football +* [CatoonHub](https://catoonhub.com/) - Cartoons / Dub / 720p +* [kiboanime](https://www.kiboanime.app/) - Anime Streaming Mobile App * [Lesics](https://youtube.com/@LesicsFR) - Sabins Civil Engineering * [Grafikart](https://grafikart.fr/) - Programming Courses -* [programmes-radio](https://www.programmes-radio.com/en/) - French Radio Schedule / Streaming +* [fluxradios](https://fluxradios.blogspot.com/) - Radio Stations +* [programmes-radio](https://www.programmes-radio.com/en/) - Radio Schedule / Streaming ## ▷ Reading / Lecture -* [Bookys](https://ww8.bookys-ebooks.com/) - Books / Comics / Magazines / Newspapers / NSFW +* [Bookys](https://www6.bookys-ebooks.com/) - Books / Comics / Magazines / Newspapers / NSFW * [zone-ebook.com](https://zone-ebook.com/) - Books / Comics / Magazines / Newspapers / Audiobooks * [Nos Livres](https://noslivres.net/) - Public Domain Books * [PDF Prof](https://pdfprof.com/) - Educational Books * [Audiocite](https://www.audiocite.net/) - Audiobooks * [nooSFere](https://www.noosfere.org/) - Science Fiction * [Origines](https://mangas-origines.fr/) - Manga / Manhwa / Manhua / NSFW / [Discord](https://discord.com/invite/origines) -* [mangadraft](https://www.mangadraft.com/) - Manga / Comics / Webtoons / Light-Novels +* [Mangadraft](https://www.mangadraft.com/) - Manga / Comics / Webtoons / Light-Novels * [Planete-BD](https://planete-bd.org/) - Manga / Comics -* [SushiScans](https://sushiscan.net/) - Manga +* [SushiScan](https://sushiscan.net/) - Manga * [Theses.fr](https://www.theses.fr/) - Theses -* [oraedes](https://oraedes.fr/) - Occult / Esoteric +* [ORAEDES](https://oraedes.fr/) - Occult / Esoteric *** @@ -512,7 +508,7 @@ ## ▷ Downloading / Herunterladen -* [Usenet DE Guide](https://github.com/PCJones/usenet-guide) - German Usenet Guide / [Discord](https://discord.com/invite/pZrrMcJMQM) +* [Usenet DE Guide](https://github.com/PCJones/usenet-guide) - German Usenet Guide / [Discord](https://discord.gg/src6zcH4rr) * [Radar / Sonarr DE Guide](https://github.com/PCJones/radarr-sonarr-german-dual-language/blob/main/GERMAN_DUAL_LANGUAGE_GUIDE_GER.md) * [Crawli](https://crawli.net/) - Download Search * [DarkLight](https://board.darklight.to/) - Video / Audio / ROMs / Books / Magazines / NSFW @@ -545,7 +541,6 @@ * [xCine](https://xcine.click) - Movies / TV / Dub / 720p * [Kinokiste](https://kinokiste.live/) - Movies / TV / Dub / 720p * [streamkiste.taxi](https://streamkiste.taxi/) - Movies / TV / Dub / 720p -* [FSHD](https://www1.fshd.ro/) - Movies / TV / Dub * [Einschalten](https://einschalten.in/) - Movies / TV / Dub / 720p * [Haschcon](https://haschcon.com/) - Movies / 720p * [Burning Series](https://bs.to/) - TV / Dub / 720p @@ -558,7 +553,7 @@ * [LiveTV](https://livetv.sx/dex/) - Sports * [SRF.CH](https://www.srf.ch/) - Live TV / Sports / Swiss VPN Required * [2ix2](https://www.2ix2.com/) - Live TV -* [tvpinto](https://www.tvpinto.com/) - Live TV +* [livestream](https://www.livestream.ad/) - Live TV * [dtvd](https://dtvd.net/) - Live TV * [Studyflix](https://studyflix.de/) - Courses * [mediathekviewweb](https://mediathekviewweb.de/) - IPTV @@ -583,11 +578,6 @@ * [Warez.Ge](https://warez.ge/) - Video / Audio -## ▷ Streaming - -* [AsianDrama](https://asiandrama.ge/) - Drama / Sub / 1080p -* [AnimeTV](https://animetv.night-city.online/) - Anime / Dub / 720p - *** # ► Greek / Ελληνικά @@ -611,9 +601,10 @@ * [NetNix](https://netnix.tv/) - Live TV * [stokourbeti](https://stokourbeti.online/) - Live Sports * [GreekSport](https://greeksport.pages.dev/) - Live Sports +* [SportOnTV](https://sportontv.xyz/) - Live Sports / [Discord](https://discord.gg/YhQPSSMps2) * [Foothubhd](https://foothubhd.online/) - Live Football / [Discord](https://discord.com/invite/KGgsRmKZPC) * [Live24](https://live24.gr/) or [e-Radio](https://www.e-radio.gr/) - Radio -* [Subs4series](https://www.subs4series.com/), [xsubs](http://xsubs.tv), [greeksubs](https://greeksubs.net) or [subs4free](https://www.subs4free.club/) - Greek Subtitles +* [Subs4series](https://www.subs4series.com/), [greeksubs](https://greeksubs.net) or [subs4free](https://www.subs4free.club/) - Greek Subtitles ## ▷ Torrenting @@ -626,6 +617,7 @@ * [AB-Maps](https://www.abmaps.com/) - Map Tool * [WizdomSubs](https://wizdom.xyz/) or [Ktuvit](https://www.ktuvit.me/) - Subtitles * [TranslationsMovieHEB](https://t.me/translationsmoviesheb) - Request Subtitle Translations +* [RedAlert](https://redalert.me/index_en.html) or [RocketAlert](https://rocketalert.live/) - Rocket Alerts ## ▷ Streaming / הזרמה @@ -649,12 +641,12 @@ ## ▷ Streaming -* [moviedrive](https://moviedrive.hu/kezdolap/) - Movies / TV / Anime / Sub / Dub / 1080p +* [moviedrive](https://moviedrive.hu/) - Movies / TV / Anime / Sub / Dub / 1080p * [OnlineFilmekIngyen](https://www.onlinefilmekingyen1.com/) - Movies / Sub / Dub / 1080p * [filmezz](https://filmezz.club/) - Movies / TV / Dub / 720p * [filmezek](https://filmezek.com/) - Movies * [mozicsillag](https://mozicsillag1.me/) - Movies / TV / Sub / Dub / 720p -* [animedrive](https://animedrive.hu/) - Anime / [Discord](https://discord.com/invite/xcgeYp3) +* [animedrive](https://animedrive.hu/) - Anime / [Discord](https://discord.com/invite/blackfire) *** @@ -670,40 +662,40 @@ * ⭐ **[VegaMovies](http://vegamovies.bot/)** - Movies / TV / Anime / 1080p / 4K / [Telegram](https://telegram.dog/vega_officials) * ⭐ **[UHDMovies](https://modlist.in/?type=uhdmovies)** - Movies / 4K * ⭐ **[MkvCinemas](https://mkvcinemas.moi/)** - Movies / TV / Anime / Sub / Dub / 1080p / 4K -* ⭐ **[OlaMovies](https://olamovies.help/)** - Movies / TV / Sub / Dub / 1080p / 4K / Use Adblocker / [Telegram](https://telegram.me/olamovies_officialv69) -* ⭐ **[MoviesMod](https://modlist.in/?type=hollywood)** - Movies / TV / Sub / Dub / 1080p / [Telegram](https://modlist.in/?type=telegram) / [Bypass](https://greasyfork.org/en/scripts/474747) -* ⭐ **[ToonWorld4All](https://toonworld4all.me/)** - Anime / Cartoon / Geoblocked +* ⭐ **[HDHub4u](https://hdhublist.com/?re=hdhub)** - Movies / TV / 1080p / [Telegram](https://hdhub4u.frl/join-our-group/) +* ⭐ **[OlaMovies](https://olamovies.help/)** - Movies / TV / Sub / Dub / 1080p / 4K / Use Adblocker +* ⭐ **[MoviesMod](https://modlist.in/?type=hollywood)** - Movies / TV / Sub / Dub / 1080p / [Bypass](https://greasyfork.org/en/scripts/474747) * ⭐ **[SD Toons](https://sdtoons.in)** - Movies / TV / Anime / 1080p +* ⭐ **[ToonWorld4All](https://toonworld4all.me/)** - Anime / Cartoon / Geoblocked * ⭐ **[AToZ Cartoonist](https://atozcartoonist.me/)** - Cartoons / Anime / Sub / Dub / 1080p / [Link Bypasser](https://greasyfork.org/en/scripts/484907) / [Discord](https://discord.com/invite/ZUW8yzDutd) -* ⭐ **[ToonsHub](https://www.toonshub.xyz/)** - Anime / Dub / 1080p / [Telegram](https://t.me/s/toonshubupdates) / [Discord](https://discord.com/invite/2mPFKykW4j) +* ⭐ **[ToonsHub](https://www.toonshub.xyz/)** - Anime / Dub / 1080p / [Discord](https://dsc.gg/toonshub) / [Telegram](https://t.me/s/toonshubupdates) * ⭐ **[Free Lossless Desi Music](https://hindi-lossless.blogspot.com/)** - Music / FLAC * ⭐ **[TamilBlasters](https://www.1tamilblasters.net/)** - Movies / TV / Sub / Dub / 1080p / 4K / Anime / Indian Langauges * ⭐ **[TamilMV](https://www.1tamilmv.com/)** - Movies / TV / Sub / Dub / 1080p / 4K / Anime / Indian Langauges * [OOMoye](https://www.oomoye.me/) - Movies / TV / Anime / Some NSFW * [Bollyflix](https://bollyflix.phd/) - Movies / TV / Anime * [Mallumv](https://mallumv.guru/) - Movies / Sub / Dub / 1080p / [Telegram](https://t.me/MalluMvoff) -* [SSR Movies](https://ssrmovies.com/) - Movies / TV / Sub / Dub / 1080p / [Telegram](https://telegram.dog/+MF2EXeitLjMxY2Ux) +* [SSR Movies](https://ssrmovies.com/) - Movies / TV / Sub / Dub / 1080p / [Telegram](https://ssrmovies.onl/telegram/) * [MkvMoviesPoint](https://mkvmoviespoint.cool/) - Movies / TV / Sub / Dub / 1080p / [Telegram](https://telegram.me/mkvpoint1) * [MKV Mad](https://mkvmad.com/) - Movies / TV / Sub / Dub / 1080p * [KatMovieHD](https://katworld.net/?type=KatmovieHD) - Movies / TV / Anime / Sub / Dub / 1080p * [PrivateMovieZ](https://privatemoviez.art/) - Movies / TV / 1080p * [Cinevood](https://cinevood.net/) - Movies / TV / 1080p -* [Moviesup](https://moviesup.site/) - Movies / TV / 1080p +* [Cinemalux](https://cinemalux.store/) - Movie / TV / 1080p +* [ProtonMovies](https://m2.protonmovies.top/) - Movies / TV +* [Fojik](https://fojik.site/) - Movies * [MoviesFD](https://moviesfd.vip/) - Movies / Sub / Dub / 1080p * [Paidnaija](https://paidnaija.net/) - Movies / Sub / 720p / [Telegram](https://t.me/joinchat/E9cst-5oQDA5MzRk) * [mkvAnime](https://ww1.mkvanime.mov/) - Movies / Shows / Anime / Sub / Dub / 1080p -* [HDHub4u](https://hdhublist.com/?re=hdhub) - Movies / TV / 1080p / [Telegram](https://hdhublist.com/?re=telegram) * [MKVHub](https://www.mkvhub.hair/) - Movies / TV / Sub / Dub / 1080p / [Telegram](https://telegram.dog/+lTty7fOB6I4yM2M5) -* [FilmyMeet](https://filmy4web.mex.com/) - Movies / TV / Dub / 1080p / [Telegram](https://telegram.dog/+VV_6NFqFLTc1N2E1) * [MoviesNation](https://movies.dog/), [2](https://moviesnation.party/) - Movies / TV / Sub / Dub / 1080p / [Telegram](https://t.me/+O88huh3QZ2k2Yjc9) * [DesireMovies](https://desiremovies.my/) - Movies / TV / Sub / Dub / 1080p -* [UncutHD](https://www.jadoocinema.com/) - Movies / TV / Sub / Dub / 1080p * [9xflix](https://9xflix.com/m/) - Movies / TV / NSFW / Sub / Dub / 720p +* [Fibwatch](https://fibwatch.art/) - Movies / TV * [KatDrama](https://katdrama.com/) - Korean Drama * [AnimeAcademy](https://animeacademy.in/) - Anime / Sub / Dub / 1080p * [PikaHD](https://pikahd.com/) - Anime / Dub / 1080p -* [Anilot.in](https://anilot.in/) - Anime / 1080p / [Telegram](https://t.me/Anilot_Anime) -* [Toonsouthindia](https://toonsouthindia.com/) - Anime / Cartoon / 1080p / [Telegram](https://telegram.me/+VQNviznAktwAxUv8) +* [Anilot.in](https://www.animeraja.in/) - Anime / 1080p / [Telegram](https://t.me/Anilot_Anime) * [Toonhub4u](https://toonhub4u.me/) - Anime / Cartoon / Dub / 1080p / [Telegram](https://telegram.me/joinchat/oHRgJ6SMZ6c3OTI1) * [New Hindi Animes](https://t.me/New_Hindi_Animes) - Anime Telegram Chat * [Indian Flac Songs](https://t.me/indianflacsongs) - Music / FLAC @@ -712,40 +704,39 @@ ## ▷ Torrenting -* ⭐ **[TamilBlasters](https://1tamilblasters.net/)** - Movies / TV / Sub / Dub / 1080p / 4K / Anime / Indian Langauges -* ⭐ **[TamilMV](https://www.1tamilmv.com/)** - Movies / TV / Sub / Dub / 1080p / 4K / Anime / Indian Langauges +* ⭐ **[TamilBlasters](https://1tamilblasters.net/)** - Movies / TV / Sub / Dub / 1080p / 4K / Anime / Indian Languages +* ⭐ **[TamilMV](https://www.1tamilmv.com/)** - Movies / TV / Sub / Dub / 1080p / 4K / Anime / Indian Languages ## ▷ Streaming -* ⭐ **[Cineby](https://www.cineby.app/)** - Movies / TV / Anime / 1080p / Auto-Next / [Discord](https://discord.gg/C2zGTdUbHE) (unofficial) +* ⭐ **[StreamBlasters](https://www.streamblasters.party/)** - Movies / TV / Sub / Dub / 720p / 1080p / 4K / Anime / Indian Languages (Use basic Ublock Origin Lite Ad filter) +* ⭐ **[Cineby](https://www.cineby.app/)** - Hindi-Dub Movies / TV / Anime / 1080p / Auto-Next / [Discord](https://discord.gg/C2zGTdUbHE) (unofficial) * ⭐ **[HydraHD](https://hydrahd.ac/)** - Movies / TV / Anime / Auto-Next / [Status](https://hydrahd.info/) * ⭐ **[RgShows](https://www.rgshows.me/)** - Movies / TV / Anime / 4K / [API](https://embed.rgshows.me/) / [Guide](https://www.rgshows.me/guide.html) / [Discord](https://discord.gg/bosskingdom-comeback-1090560322760347649) * ⭐ **[ToonStream](https://toonstream.love/)** - Cartoons / Anime / 1080p / [Telegram](https://telegram.me/toonstream) * ⭐ **[AniSAGA](https://anisaga.org/)** - Anime / Dub / 1080p -* ⭐ **[FireFlix](https://fireflix.fun/)**, [2](https://fireflixhd1.netlify.app/) - Movies / TV / Anime +* ⭐ **[Anime World India](https://watchanimeworld.in/)** - Anime * ⭐ **[MultiMovies](https://multimovies.guru)** - Movies / TV / .guru Always Redirects to Main -* ⭐ **[Anime World India](https://theanimeworld.in/)** - Anime +* ⭐ **[Anime World India](https://anime-world.app/)** - Anime +* [TamilMV](https://www.1tamilmv.com/) - Movies / TV / Sub / Dub / 1080p / 4K / Anime / Indian Languages * [Einthusan](https://einthusan.tv/) - Movies / 1080p * [ToonBaba](https://toonbaba.site/) - Anime -* [9xmovies](https://9xmovies.fund/) - Movies / TV / Sub / Dub / 1080p / 4K -* [Desi Serials](https://www.desi-serials.cc/), [2](https://playdesi.net/playdesi/) - South Asian Movies / TV / Live / Sub / Dub / 1080p -* [HindiMoviesTV](https://www.hindimoviestv.com/) - Movies / Dub / 1080p +* [TamilCrow](https://www.1tamilcrow.net/) - Tamil Movies / TV / Dub / 720p / 1080p +* [TamilGun](https://tamilgun.group/) - Tamil Movies / TV / Dub / 720p / 1080p +* [TamilDhool](https://www.tamildhool.net/) - Tamil TV Shows / TV Serials / 720p / 1080p +* [tamilpirates](https://tamilpirates.icu/) - Tamil Movies / TV / Dub / 720p / 1080p * [MiniTV](https://www.amazon.in/minitv) - Movies / TV / Sub / 1080p * [HindiMovie](https://m.vk.com/hindimovie) - Movies / Dub / 1080p -* [WatchoFree](https://watchofree.online/) - Movies / TV / Dub / 1080p -* [Moviefuze](https://www.moviefuze.com/) - Movies / TV / Dub / 1080p +* [Cinemaluxe](https://cinemaluxe.sbs/) - Movies / TV / Anime * [HDMovie1](https://hdmovie1.free.nf/) - Movies / TV / Dub / 1080p / 4K * [moviesflix](https://moviesflix.com.pl/) - Movies / Dub / 1080p * [jattfilms](https://jattfilms.cfd/) - Movies / TV / Dub / 1080p * [flixsix](https://flixsix.com/) - Movies / TV / Dub / 1080p * [Movi](https://www.movi.pk/) - Movies / TV / Dub / 1080p -* [aFimlyWap](https://www.afilmywap.org.vc/) - Movies / TV / 480p / [Telegram](https://telegram.me/+QkTcitP80VplMzhl) -* [Cloudy](https://cloudy.pk/) - Movies / TV / Cartoons / Sub / Dub / 720p / [Telegram](https://t.me/cloudy_pk) +* [aFimlyWap](https://www.afilmywap.dad/) - Movies / TV / 480p / [Telegram](https://telegram.me/+QkTcitP80VplMzhl) +* [Cloudy](https://cloudy.pk/) - Movies / TV / Cartoons / Sub / Dub / 720p / [Telegram](https://t.me/cloudypkmovies) * [MovieHDPlus](https://www.moviehdplus.com/) - South Asian Movies / TV / Sub / Dub / 720p -* [HindiPix](https://hindipix.com/) - Movies / TV / Dub / 720p -* [StreamBlasters](https://streamblasters.pm/) - Movies / TV / Sub / Dub / 720p / 1080p / 4K / Anime / Indian Langauges -* [TamilCrow](https://www.1tamilcrow.net/) - Tamil Movies / TV / Dub / 720p -* [TamilGun](https://tamilgun.group/) - Tamil Movies / TV / Dub / 720p +* [HindiPix](https://hindipix.com/) - Movies / TV / Dub / 720pp * [IndianCine](https://indiancine.ma/) - Indian Short / Classic Movies * [mxplayer](https://www.mxplayer.in) - Movies * [DistroTV](https://distro.tv/) - Live TV @@ -763,6 +754,7 @@ * [Digital Library of India](https://dli.sanskritdictionary.com) - Books * [NDLI](https://ndl.iitkgp.ac.in/) - Educational Resources / Documents * [Sanskrit Documents](https://sanskritdocuments.org) or [gitasupersite](https://www.gitasupersite.iitk.ac.in/) - Esoteric Texts +* [Hindwi](https://hindwi.org/) - Hindi Poems *** @@ -773,7 +765,7 @@ ## ▷ Downloading / Mengunduh * ⭐ **[Lendrive](https://lendrive.web.id/)** - Movies / Anime / Sub / Dub / 1080p / x265 -* [sontolfilm](https://sontolfilm.xyz/) - Movies / TV / Anime +* [sontolfilm](https://sontolmovie.xyz) - Movies / TV / Anime * [ngefilm21](https://www.ngefilm21.pw/) - Movies / TV / Anime / Use "Mirror" * [Kusonime](https://kusonime.com/) - Anime / Sub / Dub / 1080p / [Discord](https://discord.com/invite/4A7RqFraZW) * [AniBatch](https://anibatch.anibatch.moe/), [2](https://www.animebatch.id/) - Anime / Dub / 1080p @@ -785,7 +777,7 @@ ## ▷ Streaming / Menyiarkan * ⭐ **[OtakuDesu](https://otakudesu.cloud/)** - Anime / Sub / 720p -* ⭐ **[sontolfilm](https://sontolfilm.xyz/)** - Movies / TV / Anime +* ⭐ **[sontolfilm](https://sontolmovie.xyz/)** - Movies / TV / Anime * [ngefilm21](https://www.ngefilm21.pw/) - Movies / TV / Anime * [MyNimeku](https://www.mynimeku.com/) - Anime / Sub / 1080p * [anoBoy](https://ww1.anoboy.app/) - Anime / Sub / 1080p @@ -797,11 +789,12 @@ * [ManhwaIndo](https://manhwaindo.net/) - Manga * [Komiku](https://komiku.id/) - Manga -* [Komikcast](https://komikcast.bz/) - Manga +* [Komikcast](https://komikcast02.com/) - Manga * [maid.my](https://www.maid.my.id/) - Manga * [BacaLightNovel](https://bacalightnovel.co/) - Light Novels * [Sakuranovel](https://sakuranovel.id/) - Light Novels * [langka](https://langka.vercel.app/) or [catatannusantara](https://www.catatannusantara.com/pustaka) - History Books +* [sastra](https://www.sastra.org/) - History Wiki *** @@ -811,7 +804,6 @@ ## ▷ Downloading / Scaricare -* [eurekaddl](https://eurekaddl.makeup/) - Video / Audio / Books / Magazines / Newspapers / Comics / NSFW / Sub / 1080p * [OverDay](https://overday.info/) - Courses / Books * [HD4Me](https://hd4me.net/) - Movies / TV / Sub / 720p * [StreamingCommunity](https://github.com/Lovi-0/StreamingCommunity) - Movie / TV / Download Script @@ -825,10 +817,9 @@ ## ▷ Streaming -* [StreamingCommunity](https://streamingcommunity.spa/) - Movies / TV +* [StreamingCommunity](https://streamingunity.cam/) - Movies / TV * [Altadefinizione](https://altadefinizione.gent/) - Movies / Sub / Dub / 1080p / 4K * [CasaCinema](https://casacinema.living/) - Movies / TV / Anime / Sub / Dub / 1080p / 4K -* [filmsenzalimiti](https://filmsenzalimiti.giving/) - Movies / TV / Sub / Dub / 1080p / 4K * [RaiPlay](https://www.raiplay.it/) - Movies / TV / Dub * [Mediaset Infinity](https://mediasetinfinity.mediaset.it/) - Movies / TV * [CB01](https://cb01net.com/) - Movies / TV @@ -853,9 +844,10 @@ * [MiniTokyo3D](https://minitokyo3d.com/) - Tokyo Public Transport Map * [Poipiku](https://poipiku.com/) - User-Made Images -* [Marshmallow](https://marshmallow-qa.com/) - Send / Receive Positive Messages +* [Voicevox](https://voicevox.hiroshiba.jp/) - FOSS Japanese TTS / Singing Synthesis * [Annict](https://annict.com/) - Anime Tracker * [Japanese Subtitles](https://gist.github.com/tatsumoto-ren/78ba4e5b7c53c7ed2c987015fa05cc2b) - Subtitles +* [Jimaku](https://jimaku.cc/) - Anime Subtitles * [Japan Reference](https://jref.com/) - Japanese Culture Forum * [fuseji](http://fuseji.net/) - Hidden Character Search * [goo](https://www.goo.ne.jp/) or [Yahoo Japan](https://search.yahoo.co.jp/) - Search @@ -866,10 +858,10 @@ * ⭐ **[TheMoeWay](https://learnjapanese.moe/)** - Japanese Media / [Discord](https://discord.gg/nhqjydaR8j) * [Akiba-Online](https://www.akiba-online.com/) - Video / Audio / Comics / NSFW / 1080p * [Asia Media Blog](https://asiamediablog.com/) - Video / Audio / Magazines / NSFW / 1080p -* [jpddl](https://jpddl.com/) - Manga / Raw Anime / Music / Drama / 1080p * [Sukidesuost](https://sukidesuost.info/) - Music / MP3 / FLAC * [JPop Singles](https://www.jpopsingles.eu/) - Music / MP3 / FLAC * [Doujin Cafe (Discord)](https://discord.gg/doujincafe) - Music / MP3 / FLAC +* [Doujin Music](https://rentry.co/FMHYBase64#doujin-music) - Music / MP3 * [DoujinStyle](https://doujinstyle.com/) - Music / MP3 / FLAC * [J-pop Music Download](https://jpop.xyz/) - Music / MP3 / FLAC * [Perfect Dark](http://kasumi.moe/pd/) - P2P App @@ -888,7 +880,6 @@ * [AQ Stream](https://aqstream.com/) - Live TV / [Discord](https://discord.com/invite/dVhgAgwxHE) * [Lesics](https://youtube.com/@LesicsJPN) - Sabins Civil Engineering * [National Film Archive of Japan](https://meiji.filmarchives.jp/) - Japanese Movie Archive -* [kuukunen](https://touhou.kuukunen.net/) - Music * [SimulRadio](https://simulradio.info/) - Radio * [Kagakueizo](https://www.kagakueizo.org/) - Science Documentaries * [Twitcasting](https://twitcasting.tv/) - Live Streaming @@ -917,15 +908,14 @@ * [Comics888](https://comics888.com/) - Manga * [KLManga](https://klz9.com/) - Manga * [LManga](https://www.lmanga.com/) - Manga -* [jmanga](https://jmanga.cam/), [2](https://jmanga.se/) - Manga +* [jmanga](https://jmanga.se/) - Manga * [mangaraw](https://mangaraw.plus/) - Manga * [raw1001](https://raw1001.net/) - Manga * [mangakoma01](https://mangakoma01.net/) - Manga * [mangakoma](https://mangakoma.net/) - Manga -* [syosetu](https://syosetu.now/) - Manga * [rawfree](https://rawfree.me/) - Manga * [spoilerplus](https://spoilerplus.tv) - Manga -* [mangajikan](https://www.mangajikan.com/) - Manga +* [mangajikan](https://www.mangajikan.cc/) - Manga * [boroboro](https://boroboro.neocities.org/) - Manga * [tonarinoyj](https://tonarinoyj.jp/) - Manga * [Honto](https://honto.jp/cp/ebook/recent/free.html) - Manga / NSFW @@ -957,15 +947,12 @@ * [KPopExplorer](https://kpopexplorer.net/) - Music / MP3 / FLAC * [ilKPOP](https://ilkpop.in/) - Music / MP3 -## ▷ Torrenting - -* [TorrentHaja](https://torrenthaja.com/) - Video / Audio / Books - ## ▷ Streaming * [OnDemandKorean](https://www.ondemandkorea.com/) - Korean Movies / TV / 720p * [AQ Stream](https://aqstream.com/) - Live TV / [Discord](https://discord.com/invite/dVhgAgwxHE) * [Chzzk](https://chzzk.naver.com/) - Live Streams +* [eHistory](https://www.ehistory.go.kr/) - Video Archive / Cultural Films * [Lesics](https://youtube.com/@Sabinz) - Sabins Civil Engineering ## ▷ Reading @@ -1001,7 +988,6 @@ * 🌐 **[Free VPN Telegram Channels](https://bin.disroot.org/?85b66e37980b245e#DRbHouuNMfXGRdqPs68y6nGLULhHdvdXzuPdDmBxsyi2)** - Free VPNs Index * [PersianBlocker](https://github.com/MasterKia/PersianBlocker) - Persian Adblock Filters + Guides * [Wudooh](https://wudooh.app/) - Make Persian Text Clearer -* [Targoman](https://targoman.ir/) - Translator / [GitHub](https://github.com/targoman) * [cscot](https://cscot.pages.dev/2023/07/10/v2ray-geoip-iran/) - V2Ray GeoIP Guide * [IranFirewall](https://viewdns.info/iranfirewall/) - Iranian Firewall Block Test * [Persian Calendar](https://github.com/persian-calendar/persian-calendar) - Android Persian Calendar @@ -1017,18 +1003,11 @@ * [DigiMovie](https://digimoviez.com/) - Movies / TV / Sub / Dub / 1080p * [iranianfilmarch](https://t.me/iranianfilmarch) - Iranian Movies / 1080p * [AnimeSubtitle](https://animesubtitle.ir/) - Anime Subtitles -* [FLACColdSong](https://t.me/flacoldsong) - Music / FLAC * [MusicGeek](https://musicgeek.ir/) - Music / MP3 / FLAC -* [SongSara](https://songsara.net/) - Music / MP3 / FLAC * [pop-music](https://pop-music.ir/) - Music / MP3 * [MusicDagh](https://www.musicdagh.ir/) - Music / MP3 -* [Musico](https://musico.ir/) - Music / MP3 * [GolsarMusic](https://golsarmusic.ir/) - Music / MP3 * [Download1Music](https://download1music.ir/) - Music / MP3 -* [Music-fa](https://music-fa.com/) - Music / MP3 -* [UpMusics](https://upmusics.com/) - Music / MP3 -* [SevilMusic](https://sevilmusic.com/) - Music / MP3 -* [mytehranmusic](https://mytehranmusic.com/) - Music / MP3 * [Just Music](https://just-music.ir/) - Classical Music / MP3 * [Pixinema](https://www.pixinema.ir/) - Soundtracks * [farsroid](https://www.farsroid.com/) - APKs @@ -1041,22 +1020,16 @@ * [FarsiLand](https://farsiland.com/) - Persian Movies / TV / 1080p * [RadioVatani](https://www.radiovatani.com/) - Persian Movies / TV / Live / 1080p * [Nostalgik](https://nostalgiktv.org/) - Persian Movies / TV / Cartoons / 720p -* [naabmovie](https://naabmovie.ir/) - Movies / TV / Sub / 1080p * [imvbox](https://www.imvbox.com/) - Movies / TV / Sub -* [PersianHive](https://persianhive.com/) - TV * [Anten.ir](https://www.anten.ir/) - Live TV / Sports * [Sepehr](https://sepehrtv.ir/) - Live TV * [ParsaTV](https://www.parsatv.com/) - Live TV * [MusicGeek](https://musicgeek.ir/) - Music -* [VMusic](https://vmusic.ir/) - Music -* [mytehranmusic](https://mytehranmusic.com/) - Music * [Awesome Persian Podcasts](https://github.com/ashkanRmk/awesome-persian-podcasts) - Podcasts ## ▷ Reading / خواندن -* [parsbook.com](https://www.parsbook.com/) - Educational / Programming / Engineering * [Afghanistandl](https://afghanistandl.nyu.edu/) - Historical Books -* [TakBook](https://www.takbook.com/) - Books *** @@ -1070,7 +1043,6 @@ ## ▷ Downloading / Pobieranie * ⭐ **[Grupa Mirai](https://www.grupa-mirai.pl/)** - Anime / Sub / 1080p / [Discord](https://discord.gg/WyXrp6ZK5J) -* [DarkSiders](https://darksiders.pl/) - Video / Audio * [animezone](https://www.animezone.pl/) - Anime / Sub / 720p * [Polish Abandonware](https://polish-abandonware.pl/) - Abandonware / [Discord](https://discord.gg/TuDSpDzDsh) @@ -1121,12 +1093,16 @@ # ► Portuguese / Português +* **Note** - Brazil is known for having lots of site blocking, try using a [VPN](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/adblock-vpn-privacy#wiki_.25BA_vpn) if you cannot access one. + +*** + * 🌐 **[PiracyBG-PTBR](https://rentry.org/PiracyBG-PTBR)** - Beginners Guide to Piracy * 🌐 **[Pirataria Megathread](https://pirataria.link)**, [2](https://rentry.co/pirataria-digital) - Portuguese /r/Piracy Mega / [Subreddit](https://www.reddit.com/r/pirataria/) * 🌐 **[Invertexto](https://www.invertexto.com)** - Online Tools Index * [SAPO](https://www.sapo.pt) - Search * [Legendas Brasil](https://legendasbrasil.org) - Subtitle Search App -* [Legendei.TV](https://legendei.tv), [Legendas.net](https://legendas.net) or [Legenda Oficial](http://legendaoficial.net) - Subtitles +* [Legendas.net](https://legendas.net) or [Legenda Oficial](http://legendaoficial.net) - Subtitles * [Educa Mais Brasil](https://www.educamaisbrasil.com.br/enem/guia-enem) - ENEM Study Material * [Flutterando](https://github.com/Flutterando/roadmap) - Flutter Guides * [Escola Kids](https://escolakids.uol.com.br) - Kids Learning @@ -1152,7 +1128,6 @@ * [Dark Animes](https://darkmahou.org) - Anime * [Anime No Sekai](https://www.ansktracker.net) - Anime WebIRC Tracker * [Sua Música](https://www.suamusica.com.br) - Audio / MP3 -* [Livros e Cursos Download](https://timaterial.blogspot.com) - Courses ## ▷ Streaming @@ -1160,7 +1135,6 @@ * ⭐ **[Gyn Cursos](https://gyncursos.com.br)**, **[Curso em Vídeo](https://www.cursoemvideo.com)**, **[iEstudar Cursos](https://iestudar.com)** or **[Pensar Cursos](https://www.pensarcursos.com.br)** - Courses * [Redecanais](https://redecanais.fi/) - Movies / TV / Anime / Dub / 1080p * [WarezCDN](https://warezcdn.com) - API for Movies / TV / Anime -* [Vizer](https://vizertv.in/) - Movies / TV / Anime / Sub / Dub / 1080p * [GoFilmes](https://gofilmes.me/m/) - Movies / TV / Sub / Dub / 1080p * [tugaflix](https://tugaflix.best) - Movies / TV / Sub / 1080p * [megafilmeshd50](https://megafilmeshd50.zip/) - Movies / TV @@ -1173,14 +1147,13 @@ * [NetMovies](https://www.netmovies.com.br) - Movies / TV / Requires Login * [Bombozila](https://bombozila.com) - Movies / TV / Requires Login * [Olhos na TV](https://www.olhosnatv.com.br) - Live TV / Sports -* [Assistir TV Online Grátis](https://aovivo.pro/tvonline/) - Live TV / Sports -* [Mega Canais](https://megacanais.com/aovivo/) - Live TV / Sports * [CXTv](https://www.cxtv.com.br) - Live TV * [TV Gazeta](https://www.tvgazeta.com.br/aovivo/) - Live TV +* [embedtv](https://embedtv.digital/) - Live TV * [TV Cultura](https://cultura.uol.com.br/aovivo/) - Live TV +* [piratetv](https://piratetv.pro/) - Live TV * [pirilampo](https://www.pirilampo.tv/) - Live TV * [Futebol Agora](https://futebolagora.gratis/) - Live Sports -* [IPTV Brasil](https://iptvbrasilapk.com) - IPTV Player * [Kultivi](https://app.kultivi.com) - Courses * [Prime Cursos](https://www.primecursos.com.br) - Courses * [UNIASSELVI](https://portal.uniasselvi.com.br/cursolivre) - Courses @@ -1190,7 +1163,6 @@ * [Download de Livros Grátis](https://download-de-livros-gratis.webnode.page) - Courses * [Núcleo do Conhecimento](https://www.nucleodoconhecimento.com.br) - Courses * [Escola Virtual Gov](https://www.escolavirtual.gov.br/catalogo) - Courses -* [eaulas](https://eaulas.usp.br/portal/home) - Courses * [Veduca](https://veduca.org) - Courses * [Moodle](https://moodle.ifrs.edu.br/course/index.php?categoryid=38) - MOOC Courses * [Marcos Aba](https://www.youtube.com/@MarcosAba/videos) - Math Courses @@ -1231,7 +1203,6 @@ * [Baixe Livros](https://www.baixelivros.com.br) - Books * [eBooksBrasil](https://ebooksbrasil.org) - Books * [Online Cursos Gatuitos](https://onlinecursosgratuitos.com) - Books -* [Elivros](https://elivros.love/) - Books * [Dlivros](https://dlivros.com/) - Books * [Doceru](https://doceru.com/) - Books * [Cultura Acadêmica](https://www.culturaacademica.com.br) - Educational Books @@ -1257,7 +1228,6 @@ * [VerCapas](https://www.vercapas.com.br) - Magazines * [Revista do Linux](https://augustocampos.net/revista-do-linux/index.html) - Linux Magazine * [Jornais Brasileiros](https://www.jornaisbrasileiros.net.br) - News App -* [Microsoft Learn](https://learn.microsoft.com/pt-br/training/) - Development Tutorials * [Toda Matéria](https://www.todamateria.com.br) - Learning Material * [Brasil Escola](https://brasilescola.uol.com.br) - Learning Material * [Mundo Educação](https://mundoeducacao.uol.com.br) - Math / History @@ -1274,10 +1244,8 @@ ## ▷ Downloading -* [FilmeSerialHD.Biz](https://filmeserialehd.biz/) - Movies / TV / Anime / Sub / 720p * [xCinema.ro](https://www.xcinema.ro/) - Movies / TV / Sub / 720p * [FilmePeAlese](https://www.filmepealese.com/) - Movies / TV / Sub / 720p -* [Filmeonline](https://filmeonline.uno/) - TV / 720p ## ▷ Streaming @@ -1306,7 +1274,7 @@ # ► Russian / Русский -* ⭐ **[РосКомСвобода](https://t.me/roskomsvoboda_discuss)** / [roskomsvoboda](https://t.me/roskomsvoboda) / [rks_org_Bot](https://t.me/rks_org_bot) - Censorship Discussion Telegram +* ⭐ **[РосКомСвобода](https://t.me/roskomsvoboda_discuss)** / [roskomsvoboda](https://t.me/roskomsvoboda) / [rks_org_Bot](https://t.me/rks_org_bot) or [protocol_vpn](https://t.me/protocol_vpn) - Censorship Discussion Telegrams * [Ru.Board](https://forum.ru-board.com/) - Piracy Discussion Forum * [Hi!Load VPN](https://t.me/hlvpnbot) - Free Shadowsocks TG / 30GB per month / No Torrenting / [Support](https://t.me/highloadvpn) * [rublacklist](https://reestr.rublacklist.net/en/) - Blocked Sites List @@ -1328,19 +1296,18 @@ * [government_rus](https://t.me/government_rus) - Official Government Telegram * [zakupki_time](https://t.me/zakupki_time) - Government Procurement Watch * [Што за шрифт?](https://t.me/+lZD1qlHA3sFhMzQy) - Fonts -* [3DArchive](https://t.me/ArchiveStl) - 3D Models * [World Art](http://www.world-art.ru/) - Movie / Anime / Game Reviews and Art Display * [Cute Chan](https://kpop.re/) - K-Pop Imageboard ## ▷ Downloading / Скачивание -* ⭐ **[4PDA](https://4pda.to/forum/)** - Android / iOS / [App](https://github.com/slartus/4pdaClient-plus) / [Captcha Note](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#4pda-captcha), [2](https://doorsgeek.blogspot.com/2015/08/4pdaru-loginregister-captcha-tutorial.html) +* ⭐ **[4PDA](https://4pda.to/forum/)** / Android, iOS / [App](https://github.com/slartus/4pdaClient-plus) / [Captcha Note](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#4pda-captcha), [2](https://doorsgeek.blogspot.com/2015/08/4pdaru-loginregister-captcha-tutorial.html) * [Androeed](https://androeed.store/), [2](https://androeed.ru/) - Android * [CWER](http://cwer.ru/), [2](http://cwer.ws/) - Video / Audio / Games / Books * [2BakSa](http://2baksa.ws/) - Video / Audio / Books * [Allmults](https://allmults.org/) - Cartoons / Sub / Dub / 1080p -* [tancpol](https://tancpol.net/) - Music / MP3 * [z3.fm](https://z3.fm/) - Music / MP3 +* [tancpol](https://tancpol.net/) - Music / MP3 * [MetalArea](https://metalarea.org/) or [MDCORE](https://vk.com/mdcore) - Metal / MP3 * [MDROCK](https://vk.com/mdrock) - Rock / MP3 * [KinoSoundtrack](https://www.kinosoundtrack.com/) - Soundtracks / MP3 @@ -1358,7 +1325,6 @@ * [Riper.AM](https://riperam.org/) - Video / Audio / Books / Magazines / NSFW * [rustorka](https://rustorka.com/forum/index.php) - Video / Audio / Books / ROMs / Games / Magazines * [Korsars](http://korsars.pro/) - Video / Audio / Books -* [UnionDHT](https://uniondht.org/) - Video / Audio / Books / NSFW * [SeedOff](https://seedoff.zannn.top/) - Video / Audio / Books * [DDGroupClub](http://ddgroupclub.win/) - Video / Audio / Books / ROMs * [Utor.pp](http://utor.pp.ua/) - Video / Audio / Books / ROMs @@ -1369,7 +1335,6 @@ * [Fast torrent](http://fast-torrent.ru/) - Movies / TV / Anime * [BigFanGroup](https://bigfangroup.org/) - Movies / TV / Anime * [Animelayer](https://animelayer.ru/) - Anime -* [Shikimori](https://shikimori.me/) - Anime Tracker * [kinozal](https://kinozal.tv/) - Movies * [bitru](https://bitru.org/) - Movies * [Selezen](https://www.selezen.club/) - Movies @@ -1386,18 +1351,14 @@ * [Zona Plus](https://w140.zona.plus/) - Movies / TV / Anime / Dub * [IVI](https://www.ivi.tv/) - Movies / TV / Anime / Dub * [KinoFlux](https://kinoflux.biz/) - Movies / TV / Dub / 1080p -* [KinoKrad](https://kinokrad.film/) - Movies / TV / Dub / 1080p * [baskino](https://baskino.film/) - Movies / Dub / 1080p * [DostFilms](https://dostfilms.site/) - Movies / TV / Anime / Dub / 1080p -* [gidonline](https://gidonline.eu/) - Movies / TV / Anime / Sub / Dub / 1080p * [reyohoho](https://reyohoho.github.io/reyohoho/) - Movies / TV / Anime / Sub / Dub / 1080p -* [zetflix](https://zetflix.zone/) - Movies / TV / Anime / Sub / Dub / 1080p * [kinogoo](https://hd.kinogoo.cc/) - Movies / TV / Anime / Sub / Dub / 1080p * [filmix](https://filmix.biz/) - Movies / TV / Anime / 720p * [Kinotochka](https://kinovibe.co/) - Movies / TV / Anime / Dub / 720p * [filmozavr](https://filmozavr.com/) - Movies / TV / Anime / Dub * [seasonvar](http://seasonvar.ru/) - TV / Dub / 720p -* [DarkLibria](https://darklibria.it/) - Anime / Dub / 1080p * [gidanime](https://gidanime.tv/) - Anime / Dub / 1080p / [Telegram](https://t.me/GidAnime) * [animang](https://animang.one/) - Anime / Dub / 1080p * [Shiza Project](https://shiza-project.com/) - Anime / Dub / 720p @@ -1408,6 +1369,7 @@ * [Anidub](https://anidub.pro/) - Anime / Sub / Dub / 1080p / [Telegram](https://t.me/anidubofficial) / [Discord](https://discord.com/invite/QF6Kn99tsu) * [SovietRomantica](https://sovetromantica.com/) - Anime / Dub / 1080p / [Telegram](https://t.me/joinchat/9yG7ZfmLX1E4OWNi) / [Discord](https://discord.com/invite/sWRPWN4) * [Tunime](https://an0ncer.github.io/) - Anime / Sub / 1080p +* [yummyanime](https://yummyanime.tv/) - Anime * [AniLabX](https://anilabx.xyz/) - Android Anime / Cartoons / Drama App * [RUkino](https://rukino.org/) - Russian Movies / TV / 1080p * [CCCP Film](https://cccp-film.ru/) - Soviet Movies / TV @@ -1422,6 +1384,7 @@ * [Viks](http://ip.viks.tv/) - Live TV * [Telik](https://telik.top/) - Live TV * [ontivi](https://ip.ontivi.net/) - Live TV +* [livestream](https://www.livestream.ad/) - Live TV * [Glaz.tv](https://glaz.tv/) - Live TV * [DomaTV](http://live.domatv.net/) - Live TV * [finttv](https://finttv.in/) - Live Sports @@ -1454,20 +1417,19 @@ * [libking](https://libking.ru/) - Books * [Maxima Library](https://maxima-library.com/) - Books * [rulit](https://www.rulit.me/) - Books -* [bookscafe](https://bookscafe.net/) - Books / NSFW -* [bookscafe](https://bookscafe.net/) - Books +* [bookscafe](https://bookscafe.net/) - Books / Some NSFW * [Litgu.ru](https://litgu.ru/) - Books -* [Bookree](https://bookree.org/) - Books * [MirKnig.sur](https://mirknig.su/) - Books / Fiction / Nonfiction * [saitknigi](https://ru.sait-knigi.ru/) - Books / Audiobooks * [Litgu.ru](https://litgu.ru/) - Books / Audiobooks * [Fantasy Worlds](https://fantasy-worlds.org/) - Books / Audiobooks * [booktracker](https://booktracker.org/) - Books / Audiobooks / Comics / Magazines / NSFW * [AniLabX](https://anilabx.xyz/) - Manga / Comics / Light Novels +* [Russian Game Mags](https://rentry.co/FMHYBase64#russian-game-mags) - Gaming Magazines +* [Gameland](https://gameland.ru/archive/) - Country of Games Magazine Archive * [mangalib.me](https://mangalib.me/) - Manga * [Com-X Life](https://com-x.life/m) - Manga * [MangaPoisk](https://mangapoisk.me/) - Manga -* [manga-chan](https://manga-chan.me/) - Manga * [Manga Club](https://mangaclub.ru/) - Manga * [Manga Hub](https://mangahub.ru/) - Manga * [mmnt](https://www.mmnt.ru/) - Document Search @@ -1476,7 +1438,7 @@ * [Arzamas](https://arzamas.academy/) - Cultural History * [geokniga](https://www.geokniga.org/) - Geology Documents * [Playing Soviet](https://commons.princeton.edu/soviet/) - Children's Books -* [Baza Knig](https://baza-knig.ink/), [Flibusta_Anglysky](https://t.me/flibusta_anglysky), [Аkniga](https://akniga.org/), [Bibl](https://m.biblus.in/), [Knizhkin](https://knizhkin.net/) or [Bibl.us](https://bibl.us/) - Audiobooks +* [Baza Knig](https://baza-knig.ink/), [Flibusta_Anglysky](https://t.me/flibusta_anglysky), [Аkniga](https://akniga.org/), [Bibl](https://m.biblus.in/) or [Bibl.us](https://bibl.us/) - Audiobooks * [Science Lab](https://fantlab.ru/) - Sci-Fi Book Discussion *** @@ -1485,12 +1447,17 @@ ## ▷ Streaming +* [Kukaj](https://vvv.kukaj.fi/) - Movies / TV * [jOj Archive](https://www.joj.sk/archiv) - Movies / TV * [Markiza](https://www.markiza.sk/) - Movies / TV * [rtvs](https://www.rtvs.sk/televizia/archiv) - TV * [Bombuj](https://bombuj.si/) - Movies / TV * [MojeVideo](https://www.mojevideo.sk/) - User Videos +## ▷ Torrenting + +* [sktorrent](https://sktorrent.eu/) - Movies / TV / Anime + *** # ► Spanish / Español @@ -1501,7 +1468,6 @@ * [AIfindy](https://aifindy.com/) - AI Tools Index * [Diccionario RAE en un clic](https://chromewebstore.google.com/detail/diccionario-rae-en-un-cli/gejdeepcjkfbepfkcfdgiodgoglakiii) - Dictionary Extension * [El Museo de los 8 bits](https://museo8bits.com/) - History of Computing -* [Steamcito](https://emilianog94.github.io/Steamcito-Precios-Steam-Argentina-Impuestos-Incluidos/landing/index.html) - Converts Steam Prices to Argentine Pesos * [Universia](https://www.universia.net) - Spanish University Search * [SubDivX](https://www.subdivx.com/) - Subtitles @@ -1533,13 +1499,11 @@ * [subtituladas.com](https://subtituladas.com/) - Movies / Sub / 720p * [Bajalo Gratis](https://bajalogratis.com/) - Movies / Latino * [Mega DVDRip](https://peliculas-dvdrip.com/) - Movies / TV / Latino / Castilian / [Bypass](https://greasyfork.org/en/scripts/477591) -* [Mega 1 Link](https://mega1link.com/) - Movies / TV / Latino / Castilian / [Bypass](https://greasyfork.org/en/scripts/477591) * [ProgramasVirtualesPC](https://www.programasvirtualespc.net/category/peliculas/) - Movies / TV / Latino / [Bypass](https://greasyfork.org/en/scripts/462492), [2](https://greasyfork.org/en/scripts/477591) * [Gatonplayseries](https://gatonplayseries.com/) - Movies / TV / Latino / Anime / [Bypass](https://greasyfork.org/en/scripts/477591) * [Peliculas Google Drive](https://www.peliculasgd.net/) - Movies / Latino / [Bypass](https://greasyfork.org/en/scripts/484943) * [TodoDVDFull](https://www.tododvdfull.com/) - Movies / Latino * [granpirata](https://granpirata.com/) - Movies / TV / Animation / Latino / [Bypass](https://greasyfork.org/en/scripts/477591) -* [Peli Series HD](https://www.peliserieshd.com/) - Movies / TV / Latino * [Mega Descargas](https://mega-descargas-serie.blogspot.com/) - TV / Latino * [RetroCanal](https://retrocanal.net/) - Classical Movies / TV * [DCC](https://cineclasicodcc.com/) - Classical Movies / TV @@ -1556,13 +1520,14 @@ * [Fukou-Da!](https://fukou-da.net/) - Anime / Sub / Light Novels * [animesfinalizadoLSHD](https://t.me/animesfinalizadoLSHD) - Anime / Telegram * [Cursos En Mega](https://t.me/s/cursosenmega) - Courses / [Bypass](https://greasyfork.org/en/scripts/462492) +* [punkconpunk](https://punkconpunk.blogspot.com/) - MP3 / Punk Music * [Hello-Python](https://github.com/mouredev/Hello-Python) or [python-web](https://github.com/mouredev/python-web) - Python Courses ## ▷ Torrenting / Torrentear -* ⭐ **[DonTorrent](https://dontorrent.business/)**, [2](https://donproxies.com/) - Movies / TV / Documentaries / Castilian / [Telegram](https://t.me/s/DonTorrent) / [.onion](https://dontorufwmbqhnoe2wvko5ynis6axf7bqod6wkmdvxmjyek64tantlqd.onion/) * ⭐ **[MejorTorrent](https://www15.mejortorrent.rip/)** - Movies / TV / Documentaries / Castilian * ⭐ **[Grantorrent.wtf](https://grantorrent.wtf/)** - Movies / TV / Documentaries / Castilian +* [DonTorrent](https://donproxies.com/) - Movies / TV / Documentaries / Castilian / [Telegram](https://t.me/s/DonTorrent) / [.onion](https://dontorufwmbqhnoe2wvko5ynis6axf7bqod6wkmdvxmjyek64tantlqd.onion/) * [EliteTorrent](https://www.elitetorrent.wf/) - Movies / TV * [Wolfmax4k](https://wolfmax4k.com/) - Movies / TV / 4K / 1080p * [Torrenflix](https://www.torrenflix.com/) - Movies / TV @@ -1587,17 +1552,15 @@ * [yaske](https://yaske.ru/) - Movies / TV / [Telegram](https://t.me/wwwyaskeru) * [Zonaleros](https://www.zona-leros.com/peliculas-hd-online-lat) - Movies / TV / 1080p / Latino * [Solo Latino](https://sololatino.net/) - Movies / TV / Anime / 1080p / Latino -* [PelisPlusHD.nz](https://pelisplushd.nz/) - Movies / TV / Anime / Latino * [PelisxD](https://www.pelisxd.com/) - Movies / TV / Latino * [ModoCine](https://modocine.com/) - Movies / TV * [poseidonhd2](https://www.poseidonhd2.co/) - Movies / TV * [PelisPedia](https://pelispedia.mov/) - Movies / TV / Latino -* [futbollibrehd](https://futbol-libre.org/) / [2](https://futbollibrehd.cl/) - Live Sports +* [futbollibrehd](https://futbollibrehd.cl/) - Live Sports * [la12hd](https://la12hd.com/) - Live Sports * [Zanex](https://zanex.lat/) - Live Sports * [streamtp2](https://streamtp2.com/) - Live Sports * [AceStream Links](https://rentry.co/FMHYBase64#acestream) - Live Sports Acestream IDs -* [PelisPedia3](https://io.pelispedia.io/) - Movies / TV / Anime / Latino * [Cinecalidad.gg](https://vwv.cinecalidad.gg/) - Movies / TV / Animation / Latino * [Cinecalidad.tel](https://w1.cinecalidad.tel/) - Movies / Latino * [Cuevana2](https://www.cuevana2espanol.net/) - Movies / TV / Latino @@ -1606,14 +1569,11 @@ * [detodopeliculas](https://detodopeliculas.nu/) - Movies / TV * [verpeliculasonline](https://verpeliculasonline.org/), [2](https://ver-peliculas-online.org/) - Movies / TV * [oscar220374](https://oscar220374.com/) - Movies / TV / Castilian -* [Cuevana8](https://ww3.cuevana8.com/) - Movies / TV * [PelisPedia.is](https://pelispedia.is/) - Movies / TV * [TuCineClasico](https://online.tucineclasico.es/) - Movies * [Gnula.se](https://gnula.se/) - TV / Anime * [Gnula.nu](https://gnula.nu/) - Movies -* [Movidy.cam](https://movidy.cam/) - Movies / TV / Anime * [CineHDPlus](https://cinehdplus.org/) - Movies / TV -* [PelisFlix](https://pelisflix.pet/), [2](https://pelisflix2.trade/) - Movies / TV * [PelisForte](https://pelisforte.se/) - Movies / TV * [EntrePeliculasySeries](https://entrepeliculasyseries.nz/) - Movies / TV / Anime * [VerPeliculasUltra](https://verpeliculasultra.com/) - Movies @@ -1626,7 +1586,6 @@ * [Vix](https://www.vix.com/tv/) - TV / LATAM Only * [AtresPlayer](https://www.atresplayer.com/) - Movies / TV / Live TV / Castilian * [Cine Libre Online](https://www.cinelibreonline.com/) - YouTube Movies -* [LegalMentegratis](http://legalmentegratis.com/) - YouTube Movies * [Argentine Cinema](https://www.youtube.com/@argentinecinemawithenglish4476/) - Argentine YouTube Movies * [Cine.Arplay](https://play.cine.ar/) - Argentinian Movies / TV * [Cinemargentino](https://www.cinemargentino.com/) - Movies / Documentaries @@ -1646,7 +1605,6 @@ * [ytanime](https://ytanime.tv/) - Anime / Sub * [AnimeID](https://www.animeid.tv/) - Anime / Sub * [animeyt](https://animeyt.es/) - Anime / Sub -* [serieslan](https://serieslan.com/) - Cartoons * [LACartoons](https://www.lacartoons.com/) - Cartoons * [LatinLucha](https://latinlucha.es/) - WWE / MMA Replays / Latino * [EventosHQ](https://www.eventoshq.me/) - WWE / MMA Replays / Latino @@ -1662,7 +1620,6 @@ * [LectuEpubGratis](https://lectuepubgratis3.com/) - Books * [Lectulandia](https://ww3.lectulandia.com/), [2](https://ww3.lectulandia.co/) - Books * [Ebookelo](https://ww2.ebookelo.com/) - Books -* [EspaEbook](https://www.espaebook2.com/) - Books * [Bibliotecasecreta](http://bibliotecasecreta.nl/) - Telegram Book Bot * [Elejandría](https://www.elejandria.com/) - Books * [El Libro Total](https://www.ellibrototal.com/ltotal/) - Books / Audiobooks @@ -1678,7 +1635,6 @@ * [lexmangas](https://www.lexmangas.com/) - Manga * [miauscan](https://lectormiau.com/) - Manga * [zonatmo](https://zonatmo.com/) - Manga -* [Mangaesp](https://mangaesp.net/) - Manga * [anzmangashd](https://www.anzmangashd.com/) - Manga * [vermanhwa](https://vermanhwa.com/) - Manga * [faneo](https://www.faneo.es/) - Manga @@ -1701,7 +1657,6 @@ ## ▷ Streaming * [SVT Play](https://www.svtplay.se/) - Movies / TV -* [DreamFilmsW](https://dreamfilmsw.online/) - Movies / TV * [Filmarkivet](https://www.filmarkivet.se/) - Short Films *** @@ -1712,7 +1667,6 @@ ## ▷ Streaming สตรีม -* [moviehdfree](https://moviehdfree.net/) - Movies / TV * [037hdmovie](https://www.037hdmovie.com/) - Movies ## ▷ Reading / อ่าน @@ -1727,6 +1681,7 @@ * ⭐ **[caglaryalcin's list](https://github.com/caglaryalcin/ublacklist/)** or [TemizAramaMotorum](https://gitlab.com/fr0stb1rd/temizaramamotorum) - Get rid of low-quality Turkish results * [Teyit](https://teyit.org/), [DoğrulukPayı](https://www.dogrulukpayi.com/) - News Verification +* [GoodbyeDPI-Turkey](https://github.com/cagritaskn/GoodbyeDPI-Turkey) - GoodbyeDPI for Turkish ISPs ## ▷ Downloading / İndirme @@ -1734,6 +1689,7 @@ * [Playstation Haber](https://playstationhaber.com/) / [MCpsp](https://www.mcpsp.com) - PlayStation Piracy Forums * [Turkish Audio Center](https://www.turkishaudiocenter.com), [Shareses](https://shareses.com), [Türkçe Ses İndir](https://www.turkcesesindir.com/), [Turkce Ses Dosyası](https://turkce-sesdosyasi.blogspot.com/) or [Turkish Sound Track](https://trsoundtrack.blogspot.com/) - Turkish Dubs * [Sinner Clown](https://sinnerclownceviri.net) / [Discord](https://discord.com/invite/nApvcT6Tt6), [Hangar](https://www.hangarceviri.com) - Game Localizations +* [mp3semti](https://mp3semti.com/) - Music / MP3s ## ▷ Streaming / İzleme @@ -1741,39 +1697,40 @@ * ⭐ **[Yabancıdizi](https://yabancidizi.tv), [2](https://yabancidizi.pro)** - Movies / TV / Sub / Dub / 1080p / [Telegram](https://t.me/s/yabancidizipw) * ⭐ **[FullHDFilmizlesene](https://www.fullhdfilmizlesene.de/)**, [2](https://www.fullhdfilmizlesene.com) - Movies / Dub / Sub / 1080p * ⭐ **[Dizi Film Botu](https://t.me/Difix9Bot)** - TV / Sub / Dub / Anime / 1080p / 2K / 4K / Movies / TV / Documentaries -* [Dizipal](https://www.google.com/search?q=intitle:%22dizipal%22&num=1) - Movies / TV / Sub / Dub / 1080p +* [Dizipal](https://www.google.com/search?q=intitle:"dizipal.org"&num=1) - Movies / TV / Sub / Dub / 1080p * [Dizilla](https://dizilla.club) - Movies / TV / Sub / Dub / 1080p * [SeriesAZ](https://seriesaz.com/) - Movies / TV / Sub / Dub / 1080p +* [filmmakinesi](https://filmmakinesi.de/) - Movies / TV / Sub / Dub / 1080p * [Dizibox](https://www.dizibox.com) - TV / Sub / 1080p * [Diziyou](https://www.diziyou.co/) - TV / Sub / Dub / 1080p +* [SelçukFlix](https://selcukflix.com/) - TV / Sub / Dub / 1080p * [Ddizi](https://www.ddizi.vip/) - TV -* [Dizilab](https://dizilab.com/) - TV * [Diziizle](https://www.diziizle.tel/) - TV -* [Filmmodu](https://www.filmmodu.tv/), [Jet Film izle](https://jetfilmizle.de/), [4kFilmizlesene](https://www.4kfilmizlesene.org/) or [Film İzlesene](https://www.filmizlesene.pro) - Movies +* [Jet Film izle](https://jetfilmizle.de/) or [4kFilmizlesene](https://www.4kfilmizlesene.org/) - Movies * [Turkish123](https://turkish123.com/) or [Yoturkish](https://www.yoturkish.com) - Turkish TV w/ Eng Subs * [Türk Anime](https://www.turkanime.co/) / [Downloader](https://github.com/KebabLord/turkanime-indirici), [Anizm](https://anizm.net/), [Anime Who](https://animewho.com), [TR Anime İzle](https://www.tranimeizle.co), [OpenAnime](https://openani.me/), [AnimeciX](https://anm.cx/), [SeiCode](https://seicode.net/), [AsyaAnimeleri](https://asyaanimeleri.top/) - Anime * [CanlıTV](https://www.canlitv.me/) - Live TV -* [KralBozguncu](https://discord.gg/7rVwCEsZv9) or [Bozguncu Kirathanesi](https://discord.com/invite/Bzm9pgH9QA) - Live Football +* [Bozguncu Kirathanesi](https://discord.com/invite/Bzm9pgH9QA) - Live Football ## ▷ Reading / Okuma * ⭐ **[Kitap Botu](https://t.me/Kitap777bot)** - The largest Turkish PDF/EPUB/MOBI archive in the world * 🌐 **[Turkish PDF Channels](https://new2.telemetr.io/en/catalog/turkey/books?page=1&sort=participants_growth_7_days)** - Most popular Turkish PDF channels in Telegram -* [Kitap](https://t.me/addlist/ioGiM9KIZvhjOTZk) or [E kütüphanem](https://www.whatsapp.com/channel/0029VaAUDreDTkK0uDGbP21z) - Books +* [Kitap](https://t.me/addlist/ioGiM9KIZvhjOTZk) - Books +* [E kütüphanem](https://www.whatsapp.com/channel/0029VaAUDreDTkK0uDGbP21z) - Books +* [hattusa](https://hattusa.club/) - Books * [Manga Denizi](https://www.mangadenizi.net/) - Manga / [Discord](https://discord.com/invite/8zBMSGZ) * [Mavi Manga](https://mavimanga.com/) - Manga * [Trwebtoon](https://trwebtoon.com/) - Manga * [Nirvana Manga](https://nirvanamanga.com/) - Manga +* [Tortuga-ceviri](https://tortugaceviri.com/) - Manga / [Disocrd](https://discord.gg/bSxwMNM9mm) * [SadScans](http://sadscans.com) - Manga / [Discord](https://discord.gg/sQ5M2fFQ45) * [Raindrop](https://www.raindropteamfan.com/) - Manga -* [Seri Manga](https://serimangas.com/) - Manga -* [Glory Manga](https://glorymanga.com/) - Manga * [Uzaymanga](https://uzaymanga.com/) - Manga -* [Tortuga-ceviri](https://tortuga-ceviri.com/) - Manga *** -# ► Ukrainian / українська +# ► Ukrainian / Українська ## ▷ Torrenting @@ -1812,7 +1769,7 @@ # ► Vietnamese / Việt -* ⭐ **[Voz.vn](https://voz.vn/)**, **[TECHRUM.VN](https://www.techrum.vn/)** or **[WhiteHat.vn](https://whitehat.vn/)** - Tech Forum +* ⭐ **[Voz.vn](https://voz.vn/)**, [VN-Z](https://vn-z.vn/), [TECHRUM.VN](https://www.techrum.vn/) or [WhiteHat.vn](https://whitehat.vn/) - Tech Forum * ⭐ **[J2team](https://www.facebook.com/groups/j2team.community)** - Tech Community * ⭐ **[Unikey](https://www.unikey.org/en/)** - Vietnamese Keyboard * ⭐ **[Baomoi](https://baomoi.com/)** - News Aggregator / [Mobile](https://play.google.com/store/apps/details?id=com.epi&hl=en_US) @@ -1828,7 +1785,7 @@ * [GameVui](https://gamevui.vn/) or [Game24h](https://game24h.vn/) - Browser Games * [KiTuHay](https://kituhay.com/), [Symbols](https://symbols.vn/), [KTDB](https://ktdb.vn/) or [KiTuAz](https://kituaz.com/) - Special Characters * [Run](https://run.vn/) or [IconFB](https://iconfb.net/) - Emojis -* [Dafontvn](https://www.dafontvn.com/) or [FontChu](https://fontchu.com/) - Fonts +* [Dafontvn](https://www.dafontvn.com/)- Fonts * [TestKey](https://keytest.vn/) - Test Keyboard * [ClickTest](https://clicktest.vn/) - Mouse Click Test * [TestMic](https://testmic.vn/) - Test Microphone @@ -1836,9 +1793,9 @@ * [VNTyping](https://vntyping.com/), [VietnameseTyping](https://vietnamesetyping.com/) - Vietnamese Typing * [Diễn đàn Học Mãi](https://diendan.hocmai.vn/) - Study Forum * [MuaThongMinh](https://muathongminh.vn/) - E-commerce Price Tracker -* [FBVN](https://chromewebstore.google.com/detail/hlnhbiajcpmjpgpedgfdigiccejengbi), [L.O.C](https://chromewebstore.google.com/detail/eojdckfcadamkapabechhbnkleligand) or [MonokaiToolkit](https://chromewebstore.google.com/detail/monokaitoolkit-extension/dagbggkfgebkmlmnlidioknbhilfnngn) - Friends Filter for Facebook +* [L.O.C](https://chromewebstore.google.com/detail/eojdckfcadamkapabechhbnkleligand) or [MonokaiToolkit](https://chromewebstore.google.com/detail/monokaitoolkit-extension/dagbggkfgebkmlmnlidioknbhilfnngn) - Friends Filter for Facebook * [J2TEAM](https://home.j2team.dev/) - Browser Extensions & Web Applications / [Facebook](https://www.facebook.com/groups/364997627165697) -* [123Note](https://123note.net/) or [Notepad](https://notepad.vn/) - Notepad Tools +* [123Note](https://123note.net/) - Notepad Tools * [Random](https://random.com.vn/), [QuaySo](https://quayso.vn/) or [NgauNhien](https://ngaunhien.vn/) - Random Tools * [FPT.AI](https://fpt.ai/vi/tts) or [vbee](https://www.vbee.vn/) - Text to Speech * [Unity_Cheat_Sheet](https://github.com/NaomiLe1811/Unity_Cheat_Sheet_Tieng_Viet) - Unity Game Engine Cheat Sheet @@ -1856,27 +1813,22 @@ ## ▷ Streaming / Phát trực tuyến +* ⭐ **[rophim](https://www.rophim.me/phimhay)** - Movies / TV / Anime / [Telegram](https://t.me/rophimzone), [2](https://t.me/congdongrophim) / [Discord](https://discord.gg/rophim) * ⭐ **[VTVGo](https://vtvgo.vn/)** - Live TV * ⭐ **[ZingMP3](https://zingmp3.vn/)** - Music -* [BiluTV](https://bilutvw.com/) - Movies / TV / Anime / Sub / Dub * [JenkaStudioVN](https://www.jenkastudiovn.net/) - Movies / Anime / Sub / Dub / 1080p * [Ô Phim](https://ophim.tuphim.net/) - Movies / Anime / Cartoon / TV / Sub / 1080p * [Phimmoi](https://vuaphimmoi.net/) - Movies / TV / Anime / Sub / Dub / 720p * [Danet](https://danet.vn/) - Movies / TV / Anime / Live TV / Sub / 720p * [XemPhim](https://xemphim.app/) - Movies / TV / Sub / 720p -* [NguonPhim](https://nguonphimp.com/) - Movies / TV / Anime / Sub / 720p -* [rophim](https://www.rophim.me/phimhay) - Movies / TV / Anime +* [chuyenphim18](https://chuyenphim18.site/) - Movies / TV / Anime / Sub / 720p * [kkphim](https://kkphim.com/), [2](https://phim.nguonc.com/), [3](https://ophim.movie/) / Movies / TV / Anime / [Ad Script](https://github.com/Hth4nh/PureMovies) * [HoatHinh3D](https://hoathinh3d.fun/) - Chinese Animation / Sub / 1080p -* [HHNinja](https://hhninja4.tv/) - Chinese Animation / Sub / 1080p -* [VuiGhe](https://vuighe3.com/) - Anime / Sub / 720p * [phim.in](https://phim.in.net/) - Anime / Movies / TV / Chinese Animation / Sub / Dub / 1080p * [AnimeTVN](https://animetvn4.com/) - Anime / Chinese Animation / Sub / 1080p * [AnimeVietsub](https://animevietsub.link/) - Anime / Chinese Animation / Sub / 1080p * [Ani4u](https://ani4u.org/) - Anime / Sub / 1080p * [AnimeVSub](https://animevsub.eu.org/) - Anime / Chinese Animation / Sub / 1080p / [Extension](https://github.com/anime-vsub/extension-animevsub-helper) -* [AnimeHay](https://animehay.bio/) - Anime / Chinese Animation / Sub / 1080p -* [Anime47](https://anime47.lol/) - Anime / Chinese Animation / Sub * [Tokuvn](https://tokuvn.com/) - Tokusatsu / Sub * [Mocha](https://video.mocha.com.vn/) - Video / 1080p * [MyClip](https://myclip.vn/) - Video / 1080p @@ -1923,14 +1875,11 @@ * [cuutruyen](https://cuutruyen.net/) - Manga * [hanultruyen](https://hanultruyen.net/) - Manga * [Bao Tung Truyen](https://baotangtruyen20.com/) - Manga -* [Dtruyen](https://dtruyen.com/) - Manga / Manhwa / Manhua * [Truyensieuhay](https://truyensieuhay.com/) - Manga / Manhwa / Manhua * [Vietwriter](https://vietwriter.vn/) - Manga / Manhwa / Manhua / Novel -* [Doctruyen5s](https://doctruyen.vip/) - Manga / Manhwa / Manhua * [TruyenFull](https://truyenfull.vn/) - Manga / Light Novels * [Hako](https://docln.net/) - Light Novels / [Facebook](https://www.facebook.com/groups/hako.group) * [Sonako](https://sonako.fandom.com/vi/wiki/Sonako_Light_Novel) - Light Novels / [Facebook](https://www.facebook.com/SonakoWiki/) -* [Truyenyy](https://truyenyy.pro/) - Light Novels / Freemium * [sstruyen](https://sstruyen.vn/) - Light Novels * [Babla](https://www.babla.vn/) - Dictionary * [VDict](https://vdict.com/) - Dictionary @@ -1945,9 +1894,9 @@ * [kool.to](https://www.kool.to/) - Multilingual / Live TV * [Keyman](https://keyman.com/) - Multilingual / Keyboard Files * [Jainism Library of Jain Literature](https://www.atmadharma.com/index.html) - Multilingual / Sacred Texts -* [Filma24](https://www.filma24.band/) - Albanian / Movies / TV / 1080p * [amharicbookss](https://t.me/amharicbookss) - Amharic / Books * [Yoda](https://yoda.az/) - Azerbaijani / Live TV +* [euskal](https://www.euskal-encodings.eus/) - Basque / Download / Movies / TV * [channelmyanmar](https://channelmyanmar.org) - Burmese / Movies / TV / Cartoons / 1080p / 4K * [lupiteam](https://lupiteam.net/) - Corsican / Manga * [BalkanDownload](https://balkandownload.org/) - Croatian / Download / Video / Audio / Games / Books / Comics @@ -1972,11 +1921,12 @@ * [Anime Balkan](https://animebalkan.gg/) - Serbian / Streaming / Anime / 1080p * [ZulTV](https://zultv.com/) - Serbian / Live TV * [gledajcrtace](https://www.gledajcrtace.xyz/) or [gledajcrtace.org](https://gledajcrtace.org/) - Serbian / Dubbed Cartoons +* [baiscopedownloads](https://baiscopedownloads.link/) - Sinhalese / Download / Movies / TV +* [ZoomLinkHub](https://zoomlinkhub.com/) - Sinhalese / Download / Movies / TV * [zoom.lk](https://zoom.lk/) or [Cineru.lk](https://cineru.lk/) - Sinhalese / Subtitles * [Najdi.si](https://www.najdi.si/) - Slovene / Search * [BSF](https://bsf.si/) - Slovene Film Database * [iptv-ch](https://rentry.co/FMHYBase64#swiss-iptv-playlists) - Swiss / IPTV Resources -* [tagalogdubbed](https://tagalogdubbed.com/) - Tagalog / Streaming / Movies / TV * [Segoideas](https://segoideas.com/) - Taiwanese / Streaming / TV * [wlext](https://wlext.is/) - Turkish / Filipino / Thai / Streaming / Movies * [Machine Learning ka Chilla](https://www.youtube.com/playlist?list=PL9XvIvvVL50HHzaLPtFBOuikAWa0JdhMW) - Urdu / Machine Learning Course diff --git a/docs/other/selfhosting.md b/docs/other/selfhosting.md index 4f4f6df0a..af2dea4d0 100644 --- a/docs/other/selfhosting.md +++ b/docs/other/selfhosting.md @@ -13,6 +13,25 @@ Do note that you **must** differentiate your instance from the official site (fm #### Prerequisites +### Docker (Experimental) + +You will need to install Docker and Docker Compose run your own instance of FMHY locally. + +- [Docker](https://docs.docker.com/get-docker/) +- [Docker Compose](https://docs.docker.com/compose/install/) + +After installing Docker and Docker Compose, run the following commands: + +```bash +git clone https://github.com/fmhy/edit.git +cd edit +sudo docker compose up --build +``` + +It should take a few minutes to build the image and start the container, running at port 4173. + +### Manually + - [Git](https://git-scm.com/downloads) - [Node.js](https://nodejs.org/en/download/) - Use the latest available LTS, doesn't matter much - [pnpm 9.12.2 or newer](https://pnpm.io/installation) @@ -104,4 +123,4 @@ You may want to disable NSFW content (sidebar entry, page contents) and/or the A rm -rf docs/.vitepress/cache rm -rf docs/.vitepress/dist pnpm install - ``` \ No newline at end of file + ``` diff --git a/docs/posts/june-2025.md b/docs/posts/june-2025.md new file mode 100644 index 000000000..37410793f --- /dev/null +++ b/docs/posts/june-2025.md @@ -0,0 +1,93 @@ +--- +title: Monthly Updates [June] +description: June 2025 updates +date: 2025-06-01 +next: false + +prev: false + +footer: true +--- + +