mirror of
https://github.com/fmhy/edit.git
synced 2026-01-17 01:12:02 +11:00
Merge branch 'fmhy:main' into patch-1
This commit is contained in:
commit
a1a956223c
30 changed files with 2114 additions and 1356 deletions
|
|
@ -46,14 +46,24 @@ export default defineConfig({
|
|||
['link', { rel: 'icon', href: '/test.png', type: 'image/svg+xml' }],
|
||||
['link', { rel: 'alternate icon', href: '/test.png' }],
|
||||
['link', { rel: 'mask-icon', href: '/test.png', color: '#7bc5e4' }],
|
||||
["meta", { name: "keywords", content: meta.keywords.join(" ") }],
|
||||
['meta', { name: 'keywords', content: meta.keywords.join(' ') }],
|
||||
['link', { rel: 'apple-touch-icon', href: '/test.png', sizes: '192x192' }],
|
||||
// Bing site verification
|
||||
["meta", {
|
||||
name: "msvalidate.01", content: "55ae5a0600A8C7827B59CFD506D76DC2"
|
||||
}],
|
||||
[
|
||||
'meta',
|
||||
{
|
||||
name: 'msvalidate.01',
|
||||
content: '55ae5a0600A8C7827B59CFD506D76DC2'
|
||||
}
|
||||
],
|
||||
// Google site verification
|
||||
["meta", { name: "google-site-verification", content: "XCq-ZTw6VJPQ7gVNEOl8u0JRqfadK7WcsJ0H598Wv9E" }]
|
||||
[
|
||||
'meta',
|
||||
{
|
||||
name: 'google-site-verification',
|
||||
content: 'XCq-ZTw6VJPQ7gVNEOl8u0JRqfadK7WcsJ0H598Wv9E'
|
||||
}
|
||||
]
|
||||
],
|
||||
transformHead: async (context) => generateMeta(context, meta.hostname),
|
||||
buildEnd: async (context) => {
|
||||
|
|
@ -130,7 +140,7 @@ export default defineConfig({
|
|||
search,
|
||||
footer: {
|
||||
message: `${feedback} (rev: ${commitRef})`,
|
||||
copyright: `© ${new Date().getFullYear()}, <a href="https://github.com/nbats">nbats</a>, <a href="https://github.com/taskylizard">taskylizard</a> and contributors. <a href="https://i.ibb.co/VJQmQ9t/image.png">Estd 2018.</a>`
|
||||
copyright: `© ${new Date().getFullYear()}, <a href="https://github.com/nbats">nbats</a>, <a href="https://tasky.nuxt.dev" class="text-[#ff91af]">taskylizard</a> and contributors. <a href="https://i.ibb.co/VJQmQ9t/image.png">Estd 2018.</a>`
|
||||
},
|
||||
editLink: {
|
||||
pattern: 'https://github.com/fmhy/FMHYEdit/edit/main/docs/:path',
|
||||
|
|
|
|||
|
|
@ -147,6 +147,10 @@ export const nav: DefaultTheme.NavItem[] = [
|
|||
link: 'https://github.com/fmhy/bookmarks'
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
text: '💐 tasky',
|
||||
link: 'https://tasky.nuxt.dev'
|
||||
}
|
||||
]
|
||||
|
||||
|
|
|
|||
|
|
@ -3,8 +3,11 @@ const { frontmatter } = useData()
|
|||
</script>
|
||||
|
||||
<template>
|
||||
<a v-if="frontmatter.hero.announcement" :href="frontmatter.hero.announcement.link"
|
||||
class="mb-3 inline-flex items-center rounded-lg bg-[var(--vp-c-default-soft)] px-4 py-1 text-sm font-semibold">
|
||||
<a
|
||||
v-if="frontmatter.hero.announcement"
|
||||
:href="frontmatter.hero.announcement.link"
|
||||
class="mb-3 inline-flex items-center rounded-lg bg-[var(--vp-c-default-soft)] px-4 py-1 text-sm font-semibold"
|
||||
>
|
||||
{{ frontmatter.hero.announcement.title }}
|
||||
</a>
|
||||
</template>
|
||||
|
|
|
|||
|
|
@ -5,50 +5,36 @@ import ToggleStarred from './ToggleStarred.vue'
|
|||
</script>
|
||||
|
||||
<template>
|
||||
<div class="card">
|
||||
<div class="card-header">
|
||||
<div class="card-title">Emoji Legend</div>
|
||||
<div
|
||||
class="bg-$vp-c-bg hover:bg-$vp-c-bg/40 border-$vp-c-default-soft hover:border-primary transition-border relative z-0 rounded-lg border-2 border-solid p-5 duration-500"
|
||||
>
|
||||
<div class="align-center mb-4 flex justify-between">
|
||||
<div class="text-$vp-c-text-1 lh-relaxed text-sm font-bold">
|
||||
Emoji Legend
|
||||
</div>
|
||||
</div>
|
||||
<Field icon="i-twemoji-globe-with-meridians">Indexes</Field>
|
||||
<Field icon="i-twemoji-repeat-button">Storage Links</Field>
|
||||
<Field icon="i-twemoji-star">Recommendations</Field>
|
||||
<div class="card-header">
|
||||
<div class="card-title">Options</div>
|
||||
<div class="align-center mb-4 flex justify-between">
|
||||
<div class="text-$vp-c-text-1 lh-relaxed text-sm font-bold">Options</div>
|
||||
</div>
|
||||
<InputField id="toggle-starred" label="Toggle Starred">
|
||||
<template #display>
|
||||
<ToggleStarred />
|
||||
</template>
|
||||
</InputField>
|
||||
|
||||
<Field icon="i-lucide:github">
|
||||
<a
|
||||
href="https://github.com/fmhy/edit"
|
||||
target="_blank"
|
||||
rel="noopener noreferrer"
|
||||
aria-label="Star FMHY on GitHub"
|
||||
class="text-primary underline font-bold"
|
||||
>
|
||||
Star on GitHub
|
||||
</a>
|
||||
</Field>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<style scoped>
|
||||
.card-header {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
margin-bottom: 12px;
|
||||
}
|
||||
|
||||
.card-title {
|
||||
font-weight: 700;
|
||||
color: var(--vp-c-text-1);
|
||||
line-height: 32px;
|
||||
font-size: 16px;
|
||||
}
|
||||
|
||||
.card {
|
||||
background: var(--vp-c-bg);
|
||||
padding: 12px 24px 24px;
|
||||
border-radius: 12px;
|
||||
position: relative;
|
||||
z-index: 0;
|
||||
border: 1px solid transparent;
|
||||
transition: border-color 0.4s ease-in-out;
|
||||
}
|
||||
|
||||
.card:hover {
|
||||
border-color: var(--vp-c-brand-1);
|
||||
}
|
||||
</style>
|
||||
|
|
|
|||
|
|
@ -106,7 +106,6 @@
|
|||
* 🌐 **[Awesome Malware Analysis](https://github.com/rshipp/awesome-malware-analysis)** - Malware Analysis Resources
|
||||
* ↪️ **[Site Legitimacy Check](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_site_legitimacy_check)**
|
||||
* ↪️ **[Virtual Machines](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/system-tools#wiki_.25B7_virtual_machines)**
|
||||
* ⭐ **[How to Avoid Malware](https://www.reddit.com/r/Piracy/wiki/browsing_and_downloading_guide)** - Malware Avoidance Guide
|
||||
* ⭐ **[Sandboxie Plus](https://sandboxie-plus.com/)** / [Guide](https://rentry.co/sandboxie-guide) or [Windows Sandbox](https://learn.microsoft.com/en-us/windows/security/application-security/application-isolation/windows-sandbox/windows-sandbox-overview) - Sandbox Environments
|
||||
* ⭐ **[AdwCleaner](https://www.malwarebytes.com/adwcleaner/)** - Anti-Adware
|
||||
* ⭐ **[Malwarebytes](https://rentry.co/FMHYBase64#malwarebytes)**, [2](https://www.malwarebytes.com/) - Antivirus
|
||||
|
|
@ -265,7 +264,7 @@
|
|||
* 🌐 **[2FA Directory](https://2fa.directory/)** - List of Sites with 2FA Support
|
||||
* ⭐ **[Ente Auth](https://github.com/ente-io/ente#ente-auth)** - Windows / Mac / Android / iOS 2FA / [Audit](https://ente.io/blog/cryptography-audit/)
|
||||
* ⭐ **[Aegis](https://getaegis.app/)** - Android 2FA
|
||||
* ⭐ **[AuthenticatorPro](https://authenticatorpro.jmh.me)** - Android 2FA
|
||||
* ⭐ **[Stratum](https://stratumauth.com)** - Android 2FA
|
||||
* ⭐ **[HaveIBeenPwned PW](https://haveibeenpwned.com/Passwords)** - Password Breach Check
|
||||
* ⭐ **[Password Strength Chart](https://i.ibb.co/y8n3BZP/Hive-Systems-Password-Table-2024-Square.png)** / [2](https://i.imgur.com/g4NcQKd.png)
|
||||
* [2FAS](https://2fas.com/) - Android / iOS 2FA / [Discord](https://discord.gg/q4cP6qh2g5)
|
||||
|
|
@ -359,7 +358,7 @@
|
|||
* ⭐ **[/r/VPNs](https://www.reddit.com/r/vpns/)** - Discussion Forum
|
||||
* ⭐ **[Windscribe](https://windscribe.com)** - Has Free Plan
|
||||
* ⭐ **[AirVPN](https://airvpn.org/)** - Paid
|
||||
* ⭐ **[Proton](https://protonvpn.com)** - No Torrenting with Free Plan / [Config Generation](https://gist.github.com/fusetim/1a1ee1bdf821a45361f346e9c7f41e5a) / [GitHub](https://github.com/ProtonVPN/)
|
||||
* ⭐ **[Proton](https://protonvpn.com)** - No Torrenting with Free Plan / [Config Generation](https://protonvpn.com/support/wireguard-configurations) / [GitHub](https://github.com/ProtonVPN/)
|
||||
* ⭐ **[Warp](https://one.one.one.one/)** - Free / #Free-Stuff [Discord Pins](https://discord.gg/5W9QJKuPkD) for Keys
|
||||
* ⭐ **Warp Tools** - [WireGuard Guide](https://rentry.co/foss-warp) / [Client](https://github.com/ViRb3/wgcf), [2](https://github.com/bepass-org/oblivion-desktop) / [Warp+ Data](https://t.me/warpplus), [2](https://github.com/nxvvvv/warp-plus), [3](https://github.com/totoroterror/warp-cloner), [4](https://t.me/generatewarpplusbot) / [Warp+ Warning](https://rentry.co/warpwarning2)
|
||||
* ⭐ **[Riseup](https://riseup.net/en/vpn)** - Free / [Config CLI Script](https://github.com/kmille/riseup-vpn-configurator)
|
||||
|
|
|
|||
15
docs/ai.md
15
docs/ai.md
|
|
@ -30,6 +30,7 @@
|
|||
* [feyn](https://feyn.chat/) - GPT-4o / Multiple Chatbots / # Required
|
||||
* [MagAI](https://rentry.org/freegpt4withmagai) - Multiple Chatbots
|
||||
* [Tune AI](https://chat.tune.app/) - Multiple Chatbots / 24 Msgs per Chat / [Discord](https://discord.gg/EkH7px4JNW)
|
||||
* [ChatGPT Plus](https://chatgptplus.cn/) - Free ChatGPT Plus
|
||||
* [freegpt4](https://rentry.org/freegpt4) - Free GPT-4 Methods
|
||||
* [groq](https://groq.com/) - Llama 3 and Mixtral Chatbots
|
||||
* [Lambda Chat](https://lambda.chat/chatui/) - Llama 3.1 / Unlimited
|
||||
|
|
@ -51,11 +52,11 @@
|
|||
* ⭐ **[You](https://you.com/)** - AI Search Engine
|
||||
* [Phind](https://www.phind.com/) - Llama Search Engine / [Discord](https://discord.gg/S25yW8TebZ)
|
||||
* [Morphic](https://www.morphic.sh/) - AI Search Engine / [Discord](https://discord.gg/zRxaseCuGq)
|
||||
* [Andi](https://andisearch.com/) - AI Search Engine
|
||||
* [Komo](https://komo.ai/) - AI Search Engine
|
||||
* [iAsk](https://iask.ai/) - AI Search Engine
|
||||
* [AyeSoul](https://ayesoul.com/) - AI Search Engine
|
||||
* [Mindfulq](https://www.mindfulq.com/) - AI Search Engine
|
||||
* [Andi](https://andisearch.com/) - AI Search Engine
|
||||
* [iSeek](https://www.iseek.com/) - AI Search Engine
|
||||
* [OpenPerplex](https://openperplex.com/) - AI Search Engine / [GitHub](https://github.com/YassKhazzan/openperplex_backend_os)
|
||||
* [uncovr](https://uncovr.app/) - AI Search Engine / [Discord](https://discord.gg/a4gDaVWceP)
|
||||
|
|
@ -68,7 +69,8 @@
|
|||
## ▷ Self-Hosting Tools
|
||||
|
||||
* ⭐ **[Jan.ai](https://jan.ai/)** - Self-Hosted
|
||||
* ⭐ **[SillyTavern](https://docs.sillytavern.app/)** - Frontend for LLMs
|
||||
* ⭐ **[SillyTavern](https://docs.sillytavern.app/)** - Self-Hosted Interface
|
||||
* ⭐ **[Open-WebUI](https://openwebui.com/)** - Self-Hosted Interface / [GitHub](https://github.com/open-webui/open-webui)
|
||||
* ⭐ **[llama.cpp](https://github.com/ggerganov/llama.cpp)** - Self-Host Transformer-Based LLMs / [Guide](https://rentry.org/llama-mini-guide)
|
||||
* ⭐ **[kobold.cpp](https://github.com/LostRuins/koboldcpp)** - llama.cpp with API + GUI / [rocM](https://github.com/YellowRoseCx/koboldcpp-rocm) / [Colab](https://colab.research.google.com/github/LostRuins/koboldcpp/blob/concedo/colab.ipynb)
|
||||
* ⭐ **[Pinokio](https://pinokio.computer/)** - Single Click AI Model Installer / [Discord](https://discord.gg/TQdNwadtE4)
|
||||
|
|
@ -115,13 +117,13 @@
|
|||
* 🌐 **[Awesome AI Agents](https://github.com/e2b-dev/awesome-ai-agents)** - Coding / Programming AIs
|
||||
* ⭐ **[Codeium](https://codeium.com/)** - Coding AI / [Live Chat](https://codeium.com/live/general) / [Discord](https://discord.com/invite/3XFf78nAx5)
|
||||
* ⭐ **[Pieces](https://pieces.app/) / [Docs](https://docs.pieces.app)** - Multi-LLM Coding AI / GPT-4 for Free
|
||||
* [WDTCD?](https://whatdoesthiscodedo.com/) - Simple Code Explanations
|
||||
* [Sourcery](https://sourcery.ai/) - Auto-Pull Request Reviews
|
||||
* [Devv](https://devv.ai/) - Coding Search Engine
|
||||
* [Cursor](https://www.trycursor.com/) - Coding AI / [Discord](https://discord.gg/PJEgRywgRy)
|
||||
* [ImageCook](https://imgcook.com) - Coding AI / [GitHub](https://github.com/imgcook/imgcook)
|
||||
* [CodeWhisperer](https://aws.amazon.com/q/developer/) - Coding AI
|
||||
* [Telosys](https://www.telosys.org/) - Coding AI
|
||||
* [WDTCD?](https://whatdoesthiscodedo.com/) - Coding AI
|
||||
* [Sourcery](https://sourcery.ai/) - Coding AI
|
||||
* [Devv](https://devv.ai/) - Coding AI
|
||||
* [SuperMaven](https://supermaven.com/) - Coding AI / [Discord](https://discord.com/invite/QQpqBmQH3w)
|
||||
* [Cody](https://sourcegraph.com/cody) - Coding AI
|
||||
* [OpenDevin](https://github.com/All-Hands-AI/OpenHands) - Coding AI
|
||||
|
|
@ -211,6 +213,7 @@
|
|||
* ⭐ **[LMSYS Arena](https://lmarena.ai/?leaderboard)** - Chatbot Leaderboards / Benchmarks
|
||||
* ⭐ **[Open LLM Leaderboard](https://huggingface.co/spaces/open-llm-leaderboard/open_llm_leaderboard)** - Chatbot Leaderboards / Benchmarks
|
||||
* ⭐ **[LiveBench](https://livebench.ai/)** - Chatbot Leaderboards / Benchmarks
|
||||
* [SEAL LLM Leaderboards](https://scale.com/leaderboard) - Chatbot Leaderboards
|
||||
* [WildBench](https://huggingface.co/spaces/allenai/WildBench) - Chatbot Benchmarks
|
||||
* [Aider Leaderboards](https://aider.chat/docs/leaderboards/) - Chatbot Leaderboards / Benchmarks
|
||||
* [ArtificialAnalysis](https://artificialanalysis.ai/) - Chatbot Benchmarks
|
||||
|
|
@ -274,6 +277,7 @@
|
|||
* ⭐ **[Leonardo.ai](https://app.leonardo.ai/)** / 30 Daily
|
||||
* [imgsys](https://imgsys.org/) - Compare AI Image Generators
|
||||
* [FLUX.1 [Schnell]](https://huggingface.co/spaces/black-forest-labs/FLUX.1-schnell) / [2](https://fal.ai/models/fal-ai/flux/schnell?ref=blog.fal.ai) or [FLUX.1 [Dev]](https://huggingface.co/spaces/black-forest-labs/FLUX.1-dev) / [2](https://fal.ai/models/fal-ai/flux/dev?ref=blog.fal.ai) / Unlimited
|
||||
* [NexusAI](https://flux.nexusapi.tech/) / Unlimited
|
||||
* [Stable Diffusion](https://huggingface.co/spaces/stabilityai/stable-diffusion) / Unlimited / [GitHub](https://github.com/Stability-AI/stablediffusion) / [Discord](https://discord.com/invite/stablediffusion)
|
||||
* [Prodia](https://app.prodia.com/) / Unlimited / [Huggingchat Demo](https://huggingface.co/spaces/prodia/fast-stable-diffusion) / [Discord](https://discord.com/invite/495hz6vrFN)
|
||||
* [Kling AI](https://klingai.com/) / 75+ Daily
|
||||
|
|
@ -287,6 +291,7 @@
|
|||
* [Recraft](https://www.recraft.ai/) / Unlimited
|
||||
* [PicSynth](https://www.picsynth.me/generation) / Unlimited
|
||||
* [Piclumen](https://piclumen.com/) / Unlimited
|
||||
* [Pixvify](https://pixvify.com/) / Unlimited
|
||||
* [OIChat](https://chat.oaichat.cc/) / Unlimited
|
||||
* [ImageLabs](https://editor.imagelabs.net/) / Unlimited
|
||||
* [Pollinations](https://pollinations.ai/) / Unlimited / [Discord](https://discord.com/invite/8HqSRhJVxn)
|
||||
|
|
|
|||
|
|
@ -118,7 +118,8 @@
|
|||
* ⭐ **[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), [App Finder](https://play.google.com/store/apps/details?id=scadica.aq) or [ShowAppsLike](https://showappslike.com/) - APK Search Engines
|
||||
* [Direct Download From Google Play](https://greasyfork.org/en/scripts/33005-direct-download-from-google-play/) - Add Direct DL Links to Google Play
|
||||
* [GBox](https://www.gboxlab.com/) - GMS Google Box
|
||||
* [InstallWithOptions](https://github.com/zacharee/InstallWithOptions/) - Install APKs with Extra Options
|
||||
* [InstallWithOptions](https://github.com/zacharee/InstallWithOptions/) - Install / Merge APKs with Extra Options
|
||||
* [SAI](https://github.com/Aefyr/SAI) or [AntiSplit-M](https://github.com/AbdurazaaqMohammed/AntiSplit-M) - Merge Split APKs
|
||||
* [Raccoon](https://raccoon.onyxbits.de/) - Private APK Downloader
|
||||
* [APKeep](https://github.com/EFForg/apkeep) - APK Download CLIs
|
||||
* [APK Editor Studio](https://qwertycube.com/apk-editor-studio/) or [Apktool M](https://maximoff.su/apktool/?lang=en) - APK Editors
|
||||
|
|
@ -202,7 +203,7 @@
|
|||
* [Phonetones](http://onj3.andrelouis.com/phonetones/) or [RingtoneRobot](https://t.me/RingtoneRobot) - Ringtones Directories
|
||||
* [Panels](https://play.google.com/store/apps/details?id=com.fossor.panels&hl=en_US&gl=QA) - Android Sidebar Panel / [Unlock](https://rentry.co/FMHYBase64#panels)
|
||||
* [Statusbar Icon Hider](https://play.google.com/store/apps/details?id=com.cooliehat.statusbariconhider) - Hide Status Bar Items
|
||||
* [Candybar](https://github.com/zixpo/candybar), [Arcticons](https://arcticons.com/) or [Iconeration](https://f-droid.org/packages/com.kaanelloed.iconeration/) - Custom Icon Packs
|
||||
* [Pix](https://rentry.co/FMHYBase64#pix), [Candybar](https://github.com/zixpo/candybar), [Arcticons](https://arcticons.com/) or [Iconeration](https://f-droid.org/packages/com.kaanelloed.iconeration/) - Custom Icon Packs
|
||||
* [Giga Icon](https://play.google.com/store/apps/details?id=it.mirko.gigaicon&hl=en_IN&gl=US) - Make Icons Bigger
|
||||
* [IconRequest](https://github.com/Kaiserdragon2/IconRequest) - Find Missing Icons
|
||||
|
||||
|
|
@ -229,6 +230,7 @@
|
|||
|
||||
* ⭐ **[Google Lens](https://lens.google/)** - 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) or [Gallery 2.0](https://github.com/IacobIonut01/Gallery) - Photo / Video Galleries
|
||||
* ⭐ **[Reincubate Camo](https://reincubate.com/camo/)**, [IRuin](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)
|
||||
* [Libre Camera](https://github.com/iakdis/librecamera), [GrapheneOS Camera](https://github.com/GrapheneOS/Camera), [ProofMode](https://gitlab.com/guardianproject/proofmode/proofmode-android) or [Open Camera](https://sourceforge.net/projects/opencamera/) - FOSS Camera Apps
|
||||
|
|
@ -238,7 +240,6 @@
|
|||
* [Minutiae](https://play.google.com/store/apps/details?id=com.minutiae) or [1 Second Everyday](https://1se.co/) - Video-a-Day App
|
||||
* [Alibi](https://github.com/Myzel394/Alibi) or [DroidDashcam](https://play.google.com/store/apps/details?id=com.helge.droiddashcam) - Mobile Dashcams
|
||||
* [SmoothAction](https://play.google.com/store/apps/details?id=com.danielkorgel.SmoothActionCamSlowmo) - Slow Motion Video Recorder
|
||||
* [IRuin](https://iriun.com/), [Reincubate Camo](https://reincubate.com/camo/) or [DroidCam](https://github.com/dev47apps/droidcam-linux-client) - Use Android as Webcam
|
||||
* [Locket Widget](https://play.google.com/store/apps/details?id=com.locket.Locket&hl=en&gl=US) - Real-Time Photo Sharing
|
||||
* [Material Photo Widget](https://github.com/fibelatti/photo-widget) - Homescreen Photo Widget
|
||||
* [ImageToolbox](https://github.com/T8RIN/ImageToolbox), [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) or [Pixomatic](https://pixomatic.us/) - Image Editors
|
||||
|
|
@ -271,7 +272,7 @@
|
|||
## ▷ Keyboard / Text
|
||||
|
||||
* ⭐ **[FUTO Keyboard](https://keyboard.futo.org/)** - Privacy-Focused Keyboard
|
||||
* ⭐ **[FUTO Voice](https://voiceinput.futo.org/)** - Privacy-Focused Voice Keyboard
|
||||
* ⭐ **[FUTO Voice](https://voiceinput.futo.org/)** - Privacy-Focused Voice Input
|
||||
* ⭐ **[Florisboard](https://florisboard.org)** - Privacy-Focused Keyboard
|
||||
* ⭐ **[Thumb-Key](https://github.com/dessalines/thumb-key)** - Keyboard
|
||||
* ⭐ **[HeliBoard](https://github.com/Helium314/HeliBoard)** - Privacy-Focused Keyboard
|
||||
|
|
@ -361,7 +362,7 @@
|
|||
* ↪️ **[Android Code Editors](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/dev-tools#wiki_.25B7_android_code_editors)**
|
||||
* ⭐ **[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
|
||||
* ⭐ **[OpenCalc](https://github.com/Darkempire78/OpenCalc)**, [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), [microMathematics](https://github.com/mkulesh/microMathematics) or [yetCalc](https://github.com/Yet-Zio/yetCalc) - Calculators
|
||||
* [Tooly](https://play.google.com/store/apps/details?id=com.yousx.thetoolsapp) - Multi-Tool App
|
||||
* [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
|
||||
* [Geto](https://github.com/JackEblan/Geto) - Custom App Settings
|
||||
|
|
@ -376,6 +377,7 @@
|
|||
* [Noiseun Canceller](https://play.google.com/store/apps/details?id=com.jazibkhan.noiseuncanceller) - Audio Surrounding Recorder
|
||||
* [Speakeasy](https://apps.apple.com/us/app/speakeasy-ai-dictation/id6474271933) or [Text Reader](https://elevenlabs.io/text-reader) - Text to Speech
|
||||
* [Voiceliner](https://a9.io/voiceliner/) - Voice Memos / [GitHub](https://github.com/maxkrieger/voiceliner)
|
||||
* [DiaryVault](https://github.com/SankethBK/diaryvault) - Diary App
|
||||
* [TouchDroid](https://github.com/vitaminncpp/TouchDroid), [Mousedroid](https://github.com/hypertensiune/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/Mathieu-Beliveau/android-virtual-pen) - Use Device as PC Virtual Pen
|
||||
* [Listy](https://listy.is/) - Create Lists of Anything
|
||||
|
|
@ -461,7 +463,7 @@
|
|||
|
||||
* ↪️ **[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)**, [Keyspace](https://keyspace.cloud/), [Keyguard](https://github.com/AChep/keyguard-app), [AuthPass](https://authpass.app/), [KeyPass](https://github.com/yogeshpaliyal/KeyPass), [PasswordStore](https://passwordstore.app/) or [Keepass2Android](https://play.google.com/store/apps/details?id=keepass2android.keepass2android) / [GitHub](https://github.com/PhilippC/keepass2android) - Password Managers
|
||||
* ⭐ **[K-9 Mail](https://k9mail.app/)**, [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
|
||||
* ⭐ **[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
|
||||
* [Feeder](https://f-droid.org/en/packages/com.nononsenseapps.feeder/), [Twine](https://github.com/msasikanth/twine), [FeedMe](https://github.com/seazon/FeedMe), [news](https://f-droid.org/packages/co.appreactor.news/) / [GitHub](https://github.com/bubelov/news), [nunti](https://gitlab.com/ondrejfoltyn/nunti), [Aggregator News](https://play.google.com/store/apps/details?id=com.and96.aggregator_news), [CapyReader](https://github.com/jocmp/capyreader) or [ReadYou](https://github.com/Ashinch/ReadYou) - RSS Readers
|
||||
* [Raven](https://github.com/ksh-b/raven) - News Apps
|
||||
|
|
@ -477,6 +479,7 @@
|
|||
* [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) or [Revolution IRC](https://github.com/MCMrARM/revolution-irc) - IRC Clients
|
||||
* [Bridgefy](https://bridgefy.me/) - Offline Messaging App
|
||||
* [Eruda](https://pastebin.com/7qSZXjDS) - 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
|
||||
|
|
@ -505,7 +508,7 @@
|
|||
* [OldLander](https://github.com/OctoNezd/oldlander) - Improve Old Reddit
|
||||
* [Updoot](https://updoot.app/) - Reddit Saved Post / Comment Manager
|
||||
* [MobiChan](https://github.com/Rukkaitto/mobichan), [Kuroba](https://github.com/K1rakishou/Kuroba-Experimental) / [2](https://github.com/Adamantcheese/Kuroba) or [Chan](https://github.com/moffatman/chan) - 4Chan Apps
|
||||
* [Instander](https://thedise.me/instander/) / [Telegram](https://t.me/instander), [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)
|
||||
* [Instander](https://t.me/instander), [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)
|
||||
* [TikTokModCloud](https://t.me/TikTokModCloud) - Modded TikTok Client
|
||||
* [MessengerPro](https://rentry.co/FMHYBase64#messengerpro) - 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
|
||||
|
|
@ -673,12 +676,13 @@ https://github.com/Akylas/alpimaps
|
|||
|
||||
***
|
||||
|
||||
* ⭐ **[LibreTorrent](https://gitlab.com/proninyaroslav/libretorrent)**
|
||||
* [tTorrent](https://ttorrent.org/)
|
||||
* [Flud](https://play.google.com/store/apps/details?id=com.delphicoder.flud)
|
||||
* [BiglyBT](https://android.biglybt.com/)
|
||||
* [TorrServe](https://github.com/YouROK/TorrServe)
|
||||
* [ADM](https://play.google.com/store/apps/details?id=com.dv.adm)
|
||||
* ⭐ **[LibreTorrent](https://gitlab.com/proninyaroslav/libretorrent)** - Torrent Client
|
||||
* [tTorrent](https://ttorrent.org/) - Torrent Client
|
||||
* [Flud](https://play.google.com/store/apps/details?id=com.delphicoder.flud) - Torrent Client
|
||||
* [BiglyBT](https://android.biglybt.com/) - Torrent Client
|
||||
* [TorrServe](https://github.com/YouROK/TorrServe) - Torrent Client
|
||||
* [ADM](https://play.google.com/store/apps/details?id=com.dv.adm) - Torrent Client
|
||||
* [1DM](https://play.google.com/store/apps/details?id=idm.internet.download.manager&hl=en-US) - Torrent Client
|
||||
* [Trireme](https://github.com/teal77/trireme) - Deluge Client
|
||||
* [Transdroid](https://www.transdroid.org) - Manage BitTorrent Clients / [GitHub](https://github.com/erickok/transdroid) / [F-Droid](https://f-droid.org/packages/org.transdroid.full/)
|
||||
* [nzb360](https://play.google.com/store/apps/details?id=com.kevinforeman.nzb360) - NZB / Torrent Manager
|
||||
|
|
@ -783,7 +787,6 @@ https://github.com/Akylas/alpimaps
|
|||
* [Musekit](https://github.com/Kwasow/Musekit) or [Tack](https://github.com/patzly/tack-android) - Tuning Fork / Metronome
|
||||
* [SongSync](https://github.com/Lambada10/SongSync) or [Lyricify](https://github.com/WXRIW/Lyricify-App) - Lyrics Apps
|
||||
* [FastLyrics](https://github.com/TecCheck/FastLyrics) or [Rush](https://github.com/shub39/Rush) - Find Lyrics for Playing Song
|
||||
*
|
||||
* [Metadator](https://github.com/BobbyESP/Metadator) - ID3 Metadata Editor
|
||||
|
||||
***
|
||||
|
|
@ -1164,13 +1167,16 @@ https://github.com/Akylas/alpimaps
|
|||
* 🌐 **[Julioverne](https://julio.hackyouriphone.org/)** - Privacy Tools
|
||||
* ↪️ **[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 for iOS
|
||||
* ⭐ **[Signal](https://apps.apple.com/us/app/signal-private-messenger/id874139669)**, [SimpleX](https://apps.apple.com/us/app/simplex-chat-secure-messenger/id1605771084), [Session](https://getsession.org/) or [Olvid](https://olvid.io/en/) - Encrypted Messaging
|
||||
* ⭐ **[Signal](https://apps.apple.com/us/app/signal-private-messenger/id874139669)**,
|
||||
* ⭐ **[SimpleX](https://apps.apple.com/us/app/simplex-chat-secure-messenger/id1605771084)** - Encrypted Messaging
|
||||
* [Session](https://getsession.org/) - Encrypted Messaging
|
||||
* [Olvid](https://olvid.io/en/) - Encrypted Messaging
|
||||
* [DNSecure](https://github.com/kkebo/DNSecure) - Encrypted DNS
|
||||
* [Private Photo Vault](https://apps.apple.com/us/app/private-photo-vault-pic-safe/id417571834) or [No See You](https://noseeyou.com/) - Private Photo Album
|
||||
* [Brave](https://apps.apple.com/us/app/brave-private-web-browser-vpn/id1052879175), [Firefox Focus](https://apps.apple.com/us/app/firefox-focus-privacy-browser/id1055677337) or [DuckDuckGo Privacy Browser](https://duckduckgo.com/app) - Privacy-Based Browsers
|
||||
* [Element](https://apps.apple.com/us/app/element-messenger/id1083446067), [FluffyChat](https://apps.apple.com/us/app/fluffychat/id1551469600) or [Syphon](https://syphon.org/) - Matrix Clients
|
||||
* [Wickr](https://apps.apple.com/us/app/wickr-pro/id1200926568), [Jami](https://jami.net/) or [MySudo](https://mysudo.com/) - Encrypted Messaging / Video Calls
|
||||
* [ProtonMail](https://apps.apple.com/us/app/protonmail-encrypted-email/id979659905) - Encrypted Emailing Service
|
||||
* [ProtonMail](https://apps.apple.com/us/app/protonmail-encrypted-email/id979659905) or [Tuta](https://tuta.com/) - Encrypted Emailing Service
|
||||
* [InstAddr](https://apps.apple.com/us/app/instaddr/id806157957) - Temp Mail
|
||||
|
||||
***
|
||||
|
|
@ -1179,6 +1185,7 @@ https://github.com/Akylas/alpimaps
|
|||
|
||||
* 🌐 **[CyPwn](https://ipa.cypwn.xyz/)** - Tweaked App Library / [Discord](https://discord.gg/cypwn)
|
||||
* 🌐 **[ReJail](https://rejail.ru/)** - Cracked Tweaks Repository
|
||||
* 🌐 **[IPA Sources](https://rentry.org/ipa-sources2)** - IPA Resources
|
||||
* 🌐 **[Open-Source iOS Apps](https://github.com/dkhamsing/open-source-ios-apps)** - Open-Source Apps
|
||||
* 🌐 **[Awesome TestFlight](https://github.com/pluwen/awesome-testflight-link)** or [TestFlight Spreadsheet](https://docs.google.com/spreadsheets/d/1Uej3AQPxRcLRXnmthUXR-7oGkNV_GsMFgCoNnuPtSwI/) - TesFlight App Indexes
|
||||
* ⭐ **[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)
|
||||
|
|
|
|||
|
|
@ -46,6 +46,7 @@
|
|||
* [SpotifyCloud](https://spotifycloud.zamar-roura.com/) - Playlist Words
|
||||
* [Spotify Dedup](https://spotify-dedup.com/) - Playlist Song Dedup / [GitHub](https://github.com/JMPerez/spotify-dedup/)
|
||||
* [Opslagify](https://opslagify.deruever.nl/) - Library Size
|
||||
* [Album Availability Map](https://kaaes.github.io/albums-availability/ ) - Check Album Availability
|
||||
* [Awesome Spotify Stats](https://github.com/rimsiw/awesome-spotify-stats) or [NewTunes](https://newtunes.xyz/) - Listening Stats
|
||||
* [Spoticulum](https://spoticulum.xyz/) - Spotify Collection Snapshots
|
||||
* [Chart My Music](https://www.chartmymusic.com/) - Spotify Album Collages
|
||||
|
|
@ -223,7 +224,7 @@
|
|||
* ⭐ **[lucida](https://lucida.to/)**, [2](https://lucida.su/) - Multi-Site / 320kb / MP3 / FLAC / [Telegram](https://t.me/lucidahasmusic) / [Discord](https://discord.gg/5EEexMqVuE)
|
||||
* ⭐ **[DoubleDouble](https://doubledouble.top/)** - [Multi-Site](https://pastebin.com/dPT8aE0R) / 320kb / MP3 / FLAC / [Telegram](https://t.me/+AuKfQGOOLrFlOTZk) / [Important Note](https://rentry.co/LucidaDoubleDouble)
|
||||
* ⭐ **[cobalt](https://cobalt.tools/)** - [Multi-Site](https://github.com/imputnet/cobalt?tab=readme-ov-file#supported-services) / 320kb / MP3 / Ad-Free / [Instances](https://instances.hyper.lol/)
|
||||
* ⭐ **[squid.wtf](https://squid.wtf/)** - Deezer / Qobuz / FLAC / [Discord](https://discord.gg/ATjPbzR)
|
||||
* ⭐ **[squid.wtf](https://squid.wtf/)**, [2](https://qobuz.vercel.app/) - Deezer / Qobuz / FLAC / [Discord](https://discord.gg/ATjPbzR)
|
||||
* ⭐ **[yet another music server](https://yams.tf/)** - Deezer / Tidal / Qobuz / Spotify / FLAC
|
||||
* ⭐ **[MP3 Daddy](https://mp3-daddy.com/)** - Deezer / 320kb / MP3 / FLAC
|
||||
* [EzMP3](https://ezmp3.cc/) - YouTube / 320kb / MP3 / Ad-Free / [Subreddit](https://www.reddit.com/r/EzMP3/)
|
||||
|
|
@ -524,6 +525,7 @@
|
|||
* [Maloja](https://maloja.krateng.ch) / [GitHub](https://github.com/krateng/maloja) or [Multi Scrobbler](https://github.com/FoxxMD/multi-scrobbler) - Self-Hosted Audio Scrobbling
|
||||
* [libib](https://www.libib.com/) - Desktop Media Catalog
|
||||
* [AME](https://gitlab.com/SuperSaltyGamer/ame) - Music Site Enhancement Userscripts
|
||||
* [Music Chart Maker](https://musicchartmaker.com/) - Create Album Collages
|
||||
|
||||
***
|
||||
|
||||
|
|
|
|||
|
|
@ -34,7 +34,7 @@ For mobile we recommend **[Cromite](https://github.com/uazo/cromite)**, **[Firef
|
|||
|
||||
### Movies / Shows
|
||||
|
||||
* **Streaming: [movie-web](https://erynith.github.io/movie-web-instances/) / [watch.lonelil](https://watch.lonelil.ru/) + [Sources](https://watch.lonelil.ru/onboarding/extension) / [Nunflix](https://nunflix.org/) / [Braflix](https://www.braflix.gd/)**
|
||||
* **Streaming: [movie-web](https://erynith.github.io/movie-web-instances/) / [watch.lonelil](https://watch.lonelil.ru/) + [Sources](https://watch.lonelil.ru/onboarding/extension) / [Nunflix](https://nunflix.org/) / [Braflix](https://www.braflix.is/)**
|
||||
* **Downloading: [Vadapav](https://rentry.co/FMHYBase64#vadapav) / [Pahe](https://pahe.ink/) / [PSARips](https://psa.wf/)**
|
||||
* **Torrenting: [1337x](https://1337x.to/movie-library/1/) / [TorrentGalaxy](https://torrentgalaxy.to/torrents.php?parent_cat=Movies) / [Aggregators](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/torrent/#wiki_.25B7_aggregators)**
|
||||
* **Sports Streaming: [Streamed](https://streamed.su/) / [Sportsurge](https://v2.sportsurge.net/home4/)**
|
||||
|
|
@ -99,7 +99,7 @@ Before installing any file, its 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.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.
|
||||
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.
|
||||
|
||||
!!!note Its best *not* to use your main email or password when you sign up for piracy sites. Its 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.
|
||||
|
||||
|
|
|
|||
|
|
@ -58,9 +58,9 @@
|
|||
* 🌐 **[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)**
|
||||
* ⭐ **[DevDocs](https://devdocs.io/)** - Dev Documentation
|
||||
* ⭐ **[DevToys](https://devtoys.app/)** - Dev Multi-Tool App
|
||||
* [Slidev](https://github.com/slidevjs/slidev) - Developer Presentation Slides
|
||||
* [Devhints](https://devhints.io/) - Developer Cheat Sheets
|
||||
* [DevToys](https://devtoys.app/) - Dev Multi-Tool App
|
||||
* [Student Developer Pack](https://education.github.com/pack) - Free Developer Tools for Students
|
||||
* [AppFlowy](https://appflowy.io/) - Project Workspace / [GitHub](https://github.com/AppFlowy-IO/AppFlowy)
|
||||
* [DevDeals](https://www.devdeals.org/) - Free Tools / Promotions for Developers
|
||||
|
|
@ -130,7 +130,6 @@
|
|||
* [dnSpyEx](https://github.com/dnSpyEx/dnSpy) - .NET Debugger and Assembly Editor
|
||||
* [Crontab Guru](https://crontab.guru/) - Crontab Editor / Job Scheduler
|
||||
* [Crontab Generator](https://crontab-generator.org/) - Generate Crontab Syntax
|
||||
* [shadcn-ui](https://ui.shadcn.com/) or [shadcn-svelte](https://shadcn-svelte.com) - Website Components
|
||||
* [Fluent Svelte](https://fluent-svelte.vercel.app/) - Microsoft's Fluent Design System in Svelte
|
||||
* [Slint](https://slint.dev) / [GitHub](https://github.com/slint-ui/slint) or [QT Designer](https://build-system.fman.io/qt-designer-download) - GUI Development Tools
|
||||
* [Inno Setup](https://jrsoftware.org/isinfo.php) or [InstallForge](https://www.installforge.net/) - Create Installation Programs
|
||||
|
|
@ -249,7 +248,7 @@
|
|||
* 🌐 **[Awesome Badges](https://dev.to/envoy_/150-badges-for-github-pnk)** - GitHub Badge Resources
|
||||
* 🌐 **[GitHub-Userscripts](https://greasyfork.org/en/users/24847)** - GitHub Userscripts
|
||||
* ⭐ **[GitHub Desktop](https://desktop.github.com/)** / [Linux](https://github.com/shiftkey/desktop) - GitHub Desktop Client
|
||||
* ⭐ **[GitHub.Dev](https://github.dev/)* - GitHub Web Apps
|
||||
* ⭐ **[GitHub.Dev](https://github.dev/)** - GitHub Web Apps
|
||||
* [Gothub](https://codeberg.org/gothub/gothub) - GitHub Frontend
|
||||
* [GitHub Cheat Sheet](https://github.com/tiimgreen/github-cheat-sheet) - GitHub Cheat Sheet
|
||||
* [GitHubStatus](https://www.githubstatus.com/) - GitHub Outage Status
|
||||
|
|
@ -417,12 +416,6 @@
|
|||
* [Code2Prompt](https://github.com/mufeedvh/code2prompt) - Convert Codebase to LLM Prompt
|
||||
* [Dump Dir](https://github.com/fargusplumdoodle/dump_dir) - Provide Context to LLMs via Clipboard Content
|
||||
* [Nixified](https://nixified.ai/) - Nix Flake for AI Projects
|
||||
* [Approaching (Almost) Any Machine Learning Problem](https://github.com/abhishekkrthakur/approachingalmost/blob/master/AAAMLP.pdf) - Machine Learning Problem-Solving Book
|
||||
* [AI-For-Beginners](https://github.com/microsoft/AI-For-Beginners), [Beginner Guides](https://microsoft.github.io/generative-ai-for-beginners/) or [HF Learn](https://huggingface.co/learn) - Machine Learning Guides
|
||||
* [ML Course Notes](https://github.com/dair-ai/ML-Course-Notes) - Machine Learning Course Notes
|
||||
* [100-Days-Of-ML-Code](https://github.com/Avik-Jain/100-Days-Of-ML-Code) or [Practical Deep Learning](https://course.fast.ai/) - Machine Learning Coding Lessons
|
||||
* [minitorch](https://github.com/minitorch/minitorch) - Machine Learning Engineering Course Code
|
||||
* [ML YouTube Courses](https://github.com/dair-ai/ML-YouTube-Courses) - Machine Learning Courses on YouTube
|
||||
* [Cyberbotics](https://cyberbotics.com/) - Robot Simulator
|
||||
|
||||
***
|
||||
|
|
@ -933,7 +926,7 @@
|
|||
* [Grav](https://getgrav.org/) - Flat-File CMS / [GitHub](https://github.com/getgrav/grav)
|
||||
* [Flux](https://www.runonflux.io/) - Decentralized Cloud Infrastructure
|
||||
* [URLPages](http://jstrieb.github.io/urlpages) - Store Entire Pages in URLs / [GitHub](https://github.com/jstrieb/urlpages)
|
||||
* [Shoelace](https://shoelace.style/), [Fast](https://www.fast.design/) or [Elix](https://component.kitchen/elix) - Web Component Libraries
|
||||
* [shadcn-ui](https://ui.shadcn.com/), [Shoelace](https://shoelace.style/), [Fast](https://www.fast.design/), [shadcn-svelte](https://shadcn-svelte.com), [Indie UI](https://ui.indie-starter.dev/) or [Elix](https://component.kitchen/elix) - Web Component Libraries
|
||||
* [Web Developer](https://chromewebstore.google.com/detail/web-developer/bfbameneiokkgbdmiekhjnmfkcnldhhm) - Web Developer Toolbar Extension
|
||||
* [Prepostseo](https://prepostseo.com/), [SEOMagnifier](https://seomagnifier.com/), [LearningSEO.io](https://learningseo.io/) or [SEO Cheat Sheet](https://seo-cheat-sheet.9elements.com/) - SEO Tools / Resources
|
||||
* [Aptabase](https://aptabase.com/), [GoatCounter](https://www.goatcounter.com/) or [Nibbler](https://nibbler.insites.com/) - Site Analytics
|
||||
|
|
@ -998,7 +991,7 @@
|
|||
* [Pay 2 Email](https://pay2.email/) - Simple Website Contact Form
|
||||
* [Seventy Seven](https://www.seventy-seven.dev/) - Customer Support Tool
|
||||
* [Chaindesk](https://www.chaindesk.ai/) - AI Chatbot for Customer Support
|
||||
* [Formshare](https://formshare.ai/) - AI Form / Feedback Builder
|
||||
* [Formshare](https://formshare.ai/) or [Stylr](https://www.stylr.xyz/) - Form Creators
|
||||
* [Twitcker](https://twitcker.com/) - Add Twitter Feed Ticker to Site
|
||||
* [Curator](https://curator.io/) - Embed Social Media Feeds
|
||||
* [MinIO](https://min.io/) or [Filebase](https://filebase.com/) - Cloud Native Object Storage
|
||||
|
|
@ -1117,6 +1110,7 @@
|
|||
* ↪️ **[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 Uptime Monitors
|
||||
* ⭐ **[TLD-List](https://tld-list.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/) - Search / Compare Servers
|
||||
* [srvrlss](https://srvrlss.io/) - Search / Compare Serverless Platforms
|
||||
|
|
@ -1125,7 +1119,6 @@
|
|||
* [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
|
||||
* [SitePriace](https://www.siteprice.org/) - Domain Price Estimations
|
||||
* [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
|
||||
|
|
@ -1200,7 +1193,7 @@
|
|||
## ▷ SVG Tools
|
||||
|
||||
* ↪️ **[SVG / Vector Images](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_svg_icons)**
|
||||
* [Method](https://editor.method.ac/), [SVG.wtf](https://svg.wtf/) or [SVG Viewer](https://www.svgviewer.dev/) - SVG Editors / Viewers
|
||||
* [Method](https://editor.method.ac/), [SVG.wtf](https://svg.wtf/), [Mossaik](https://mossaik.app/) or [SVG Viewer](https://www.svgviewer.dev/) - SVG Editors / Viewers
|
||||
* [SVGFilters](https://svgfilters.com/) - SVG Filter Builder
|
||||
* [Crayon](https://designstripe.com/crayon) or [SVGArtista](https://svgartista.net/) - SVG Animation Tools
|
||||
* [SVGO](https://github.com/svg/svgo) or [SVGCrop](https://svgcrop.com/) - SVG Optimization / [GUI](https://jakearchibald.github.io/svgomg/)
|
||||
|
|
|
|||
|
|
@ -167,7 +167,7 @@
|
|||
* ⭐ **[FluentStore](https://github.com/yoshiask/FluentStore)** - Microsoft Store Frontend
|
||||
* ⭐ **[store.rg](https://store.rg-adguard.net/)** - Paid Microsoft Store Link Generator / [Guide](https://rentry.co/paidAppsMsStore)
|
||||
* [SourceForge](https://sourceforge.net/)- FOSS Repositories
|
||||
* [Fossies](https://fossies.org/all.html) - FOSS Archive
|
||||
* [Fossies](https://fossies.org/) - FOSS Archive
|
||||
* [Free Software Directory](https://directory.fsf.org/wiki/Main_Page) or [FOSS Wiki](https://en.wikipedia.org/wiki/Portal:Free_and_open-source_software/Categories) - FOSS Wikis
|
||||
* [Softpedia](https://www.softpedia.com/), [Realityripple](https://realityripple.com/), [OlderGeeks](https://oldergeeks.com/), [FilePuma](https://www.filepuma.com/), [FileEagle](https://www.fileeagle.com/), [LO4D](https://www.lo4d.com/), [GRC](https://www.grc.com/freepopular.htm), [Uwe Sieber's Homepage](https://www.uwe-sieber.de/english.html) or [Software Informer](https://software.informer.com/) - Freeware
|
||||
* [PortableApps.com](https://portableapps.com/), [Portapps](https://portapps.io/) or [PortableAppZ](https://portableappz.blogspot.com/) - Portable Apps
|
||||
|
|
|
|||
|
|
@ -712,6 +712,7 @@
|
|||
* ⭐ **[Readlang](https://readlang.com/)** - Learn a Language via Web Browsing
|
||||
* [Duolingo](https://rentry.co/FMHYBase64#duolingo) / [Tips](https://duome.eu/tips), [Memrise](https://rentry.co/FMHYBase64#memrise), [LingoDeer](https://www.lingodeer.com/) or [Busuu](https://rentry.co/FMHYBase64#busuu) - Language Learning Lessons
|
||||
* [WordReference](https://www.wordreference.com/), [Glosbe](https://glosbe.com/) or [Reverso](https://reverso.net/) - Translation Dictionary
|
||||
* [Yomitan](https://yomitan.wiki/) - Popup Dictionary / [Discord](https://discord.gg/3v22CATnyr)
|
||||
* [ReverseDictionary](https://reversedictionary.org/) or [OneLook Reverse](https://onelook.com/reverse-dictionary.shtml) - Search for Words Using Their Meanings
|
||||
* [HelloTalk](https://www.hellotalk.com/) - Learn Languages via AI Conversation
|
||||
* [Languagelearning.site](https://languagelearning.site/) - Language Learning Torrents
|
||||
|
|
@ -790,7 +791,6 @@
|
|||
* [Learn Japanese Grammar](https://kimallen.sheepdogdesign.net/) or [BunPro](https://bunpro.jp/) - Learn Japanese Grammar
|
||||
* [Jotoba](https://jotoba.de/), [core6000](https://core6000.neocities.org/), [Tagaini](https://www.tagaini.net/), [Takoboto](https://takoboto.jp/), [Jisho](https://jisho.org/), [Massif](https://github.com/rsimmons/massif), [Shirabe Jisho](https://apps.apple.com/us/app/shirabe-jisho/id1005203380), [JapBase](https://japbase.neocities.org/), [Weblio](https://ejje.weblio.jp/), [Goo Dictionary](https://dictionary.goo.ne.jp/), [JS-Dict](https://github.com/petlyh/JS-Dict) or [rtk-search](https://hochanh.github.io/rtk/) - Japanese Dictionaries / Phrases
|
||||
* [OJAD](https://www.gavo.t.u-tokyo.ac.jp/ojad/eng/pages/home) - Japanese Accent Dictionary
|
||||
* [Yomitan](https://github.com/themoeway/yomitan) - Popup Japanese Dictionary
|
||||
* [ichi.moe](https://ichi.moe/) - Japanese to English Phrase Translation
|
||||
* [japReader](https://github.com/marisukukise/japReader) - Japanese Text Translator
|
||||
* [DelvinLanguage](http://delvinlanguage.com/) - Fill in Missing Japanese Words
|
||||
|
|
@ -927,6 +927,7 @@
|
|||
* [Hyperskill](https://hyperskill.org/) - Programming Courses
|
||||
* [EggHead](https://egghead.io/) - Programming Courses
|
||||
* [TechSchool](https://techschool.dev/en) - Programming Courses / [Discord](https://discord.com/invite/C4abRX5skH)
|
||||
* [USACO Guide](https://usaco.guide/) - Competitive Programming Lessons
|
||||
* [Beej's Guides](https://www.beej.us/guide/) or [LearnByExample](https://learnbyexample.github.io/) - Programming Guides
|
||||
* [HelloWorldCollection](http://helloworldcollection.de/) - Hello World Programming Collection
|
||||
* [CodeTriage](https://www.codetriage.com/) - Learn Coding by Building Projects
|
||||
|
|
@ -957,6 +958,13 @@
|
|||
* [systemd-by-example](https://systemd-by-example.com/) - Systemd Learning
|
||||
* [The Linux Kernel](https://www.kernel.org/doc/html/latest/) - Linux Kernel Development Guides / [Archives](https://kernel.org/)
|
||||
* [Workbench](https://apps.gnome.org/Workbench) - Learn / Experiment with Gnome / [GitHub](https://github.com/workbenchdev/Workbench)
|
||||
* [Approaching (Almost) Any Machine Learning Problem](https://github.com/abhishekkrthakur/approachingalmost/blob/master/AAAMLP.pdf) - Machine Learning Problem-Solving Book
|
||||
* [Deep ML](https://www.deep-ml.com/) - Solve Machine Learning Problems
|
||||
* [AI-For-Beginners](https://github.com/microsoft/AI-For-Beginners), [Beginner Guides](https://microsoft.github.io/generative-ai-for-beginners/) or [HF Learn](https://huggingface.co/learn) - Machine Learning Guides
|
||||
* [ML Course Notes](https://github.com/dair-ai/ML-Course-Notes) - Machine Learning Course Notes
|
||||
* [100-Days-Of-ML-Code](https://github.com/Avik-Jain/100-Days-Of-ML-Code) or [Practical Deep Learning](https://course.fast.ai/) - Machine Learning Coding Lessons
|
||||
* [minitorch](https://github.com/minitorch/minitorch) - Machine Learning Engineering Course Code
|
||||
* [ML YouTube Courses](https://github.com/dair-ai/ML-YouTube-Courses) - Machine Learning Courses on YouTube
|
||||
|
||||
***
|
||||
|
||||
|
|
@ -1266,8 +1274,7 @@
|
|||
* [Thsrs](https://www.ironicsans.com/thsrs/) - Synonyms
|
||||
* [Synonym.com](https://www.synonym.com/) - Synonyms
|
||||
* [Feeels](https://feelu.vercel.app/) - Emotion Synonym Chart
|
||||
* [KnowYourMeme](https://knowyourmeme.com/) - Meme Database
|
||||
* [Pronouns List](https://pronounslist.com/) - List of Prefferred Pronouns
|
||||
* [Pronouns List](https://pronounslist.com/) - List of Preferred Pronouns
|
||||
* [Gender Neutral Dictionary](https://en.pronouns.page/dictionary) - Gender Neutral Language Dictionary
|
||||
* [PrideFlags](https://www.prideflags.org/) - LGBT Flag Index
|
||||
|
||||
|
|
|
|||
|
|
@ -216,6 +216,7 @@
|
|||
|
||||
* ⭐ **[Sejda](https://www.sejda.com/)**, [ILovePDF](https://www.ilovepdf.com/), [DigiPDF](https://digipdf.app/?lang=en_US), [PDF2Go](https://www.pdf2go.com/) or [SimplePDF](https://simplepdf.eu/) - Online PDF Toolkits
|
||||
* ⭐ **[PDFGear](https://www.pdfgear.com/)**, **[PDF24](https://www.pdf24.org/)**, [xPDFReader](https://www.xpdfreader.com/), [PDF Arranger](https://github.com/pdfarranger/pdfarranger), [PrivatePDF](https://photown.github.io/private-pdf/), [PDFBox](https://pdfbox.apache.org/) or [OpenPDF](https://github.com/LibrePDF/OpenPDF) - Offline PDF Toolkits
|
||||
* [Stirling-PDF](https://github.com/Stirling-Tools/Stirling-PDF) - Self-Hosted PDF Toolkit
|
||||
* [PDFGrep](https://pdfgrep.org/) - PDF Text Search
|
||||
* [View-only PDF](https://rentry.co/cm4b7) - Download View-Only PDF on GDrive
|
||||
* [online2pdf](https://online2pdf.com/) or [2PDFConverter](https://www.2pdfconverter.com/) - Convert Files to PDF
|
||||
|
|
|
|||
|
|
@ -56,7 +56,7 @@
|
|||
* ⭐ **[KaOsKrew](https://www.kaoskrew.org/)** - 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)
|
||||
* ⭐ **[M4CKD0GE Repacks](https://m4ckd0ge-repacks.site/)** - Download / [Discord](https://discord.gg/693hNBdymb)
|
||||
* ⭐ **[ARMGDDN Browser](https://cs.rin.ru/forum/viewtopic.php?f=14&t=140593)** - Download / [Telegram](https://t.me/ARMGDDNGames)
|
||||
* ⭐ **[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 / Password: gnarly
|
||||
* [Xatab Repacks](https://byxatab.com/) - Torrent
|
||||
* [ScOOt3r Repacks (Discord)](https://discord.gg/xe3Fys8Upy) - Download / Torrent
|
||||
|
|
|
|||
|
|
@ -10,7 +10,6 @@
|
|||
* [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
|
||||
* [Preset.id](https://preset.id/) - Adobe Lightroom Presets
|
||||
* [GradientArt](https://gra.dient.art/) or [TailBlend](https://tailblend.vercel.app/) - Gradient Editor
|
||||
* [VeoLuz](https://jaredforsyth.com/veoluz/) - Photon Path Art Tool
|
||||
* [Canvas](https://www.nvidia.com/en-us/studio/canvas/) - Turn Simple Art into Photo Realistic Landscapes
|
||||
|
|
@ -189,6 +188,7 @@
|
|||
|
||||
## ▷ Drawing
|
||||
|
||||
* ⭐ **[Excalidraw](https://excalidraw.com/)** - Drawing / Sketching
|
||||
* ⭐ **[AutoDraw](https://www.autodraw.com/)** or [Magic Sketchpad](https://magic-sketchpad.glitch.me/) - AI Drawing Tools
|
||||
* [inkscape](https://inkscape.org/) - Drawing / Sketching
|
||||
* [Inkdo](https://www.microsoft.com/en-us/p/inkodo/9nblggh4s50q) - Drawing / Sketching
|
||||
|
|
@ -200,7 +200,6 @@
|
|||
* [Sketchbook](https://www.sketchbook.com/) - Drawing / Sketching / Mobile Only
|
||||
* [Paper](https://wetransfer.com/explore/paper) - Drawing / Sketching / iOS Only
|
||||
* [Concepts](https://concepts.app/) - Drawing / Sketching
|
||||
* [Excalidraw](https://excalidraw.com/) - Drawing / Sketching
|
||||
* [Aggie.io](https://aggie.io/), [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)
|
||||
|
|
@ -269,7 +268,7 @@
|
|||
|
||||
## ▷ Meme Tools
|
||||
|
||||
* ⭐ **[KnowYourMeme](https://knowyourmeme.com/)** or [FndThatMeme](https://findthatmeme.com/) - Meme Databases
|
||||
* ⭐ **[KnowYourMeme](https://knowyourmeme.com/)** or [FndThatMeme](https://findthatmeme.com/) - Meme Databases / [Frontend](https://mm.vern.cc/), [2](https://git.vern.cc/cobra/MeMe)
|
||||
* [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
|
||||
|
|
|
|||
|
|
@ -96,7 +96,8 @@ features:
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="#BEC23F" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-folder-down"><path d="M20 20a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.9a2 2 0 0 1-1.69-.9L9.6 3.9A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2Z"/><path d="M12 10v6"/><path d="m15 13-3 3-3-3"/></svg>
|
||||
link: /downloadpiracyguide
|
||||
details:
|
||||
Download all your favourite software, movies, tv shows, music, games and more!
|
||||
Download all your favourite software, movies, tv shows, music, games and
|
||||
more!
|
||||
|
||||
- title: Torrenting
|
||||
icon: |
|
||||
|
|
|
|||
|
|
@ -162,7 +162,7 @@
|
|||
* [Cabal](https://cabal.chat/) - P2P Chat / [GitHub](https://github.com/cabal-club)
|
||||
* [BlueBubbles](https://bluebubbles.app/) - iMessage Client
|
||||
* [Atlus](https://github.com/amanharwara/altus) or [WAO](https://dedg3.com/wao/) - WhatsApp Clients
|
||||
* [WhatsApp-Chat-Exporter](https://wts.knugi.dev/) - WhatsApp Skype Chats
|
||||
* [WhatsApp-Chat-Exporter](https://github.com/KnugiHK/WhatsApp-Chat-Exporter), [2](https://wts.knugi.dev/) - WhatsApp HTML Chat Exporter / Root Required
|
||||
* [WAIncognito](https://chromewebstore.google.com/detail/waincognito/alhmbbnlcggfcjjfihglopfopcbigmil) - Disable WhatsApp Read Receipts & Presence Updates
|
||||
* [TikTok Chat Reader](https://tiktok-chat-reader.zerody.one/) - Live TikTok Chat Reader
|
||||
* [Urlebird](https://urlebird.com/) - Third-Party TikTok with better UI
|
||||
|
|
@ -578,7 +578,6 @@
|
|||
|
||||
* 🌐 **[Desktop Web Browsers](https://github.com/nerdyslacker/desktop-web-browsers)** - Desktop Browser Index
|
||||
* 🌐 **[Browser Comparisons](https://privacytests.org/)** or [ATH Comparisons](https://avoidthehack.com/util/browser-comparison) - Compare Popular Browsers
|
||||
* 🌐 **[Awesome Web Desktops](https://github.com/syxanash/awesome-web-desktops)** - OS Emulators
|
||||
* ↪️ **[Privacy Browsers](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/adblock-vpn-privacy/#wiki_.25B7_browser_privacy)**
|
||||
* ⭐ **[BrowserBench](https://browserbench.org/)** or [WPT](https://wpt.fyi) - Browser Benchmark Tests
|
||||
* ⭐ **[WhatTrainIsItNow?](https://whattrainisitnow.com/)** - Track Firefox Releases
|
||||
|
|
|
|||
|
|
@ -111,7 +111,7 @@
|
|||
## ▷ Wayland Compositors
|
||||
|
||||
* 🌐 **[Wayland Compositor Index](https://wiki.archlinux.org/title/Wayland#Compositors)** - List of Wayland Compositors
|
||||
* ⭐ **[Hyprland](https://hyprland.org/)** - Wayland Compositor / [Arch Wiki](https://wiki.archlinux.org/title/Hyprland) / [Simple Config](https://end-4.github.io/dots-hyprland-wiki/en/)
|
||||
* ⭐ **[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 Compositors
|
||||
* [LabWC](https://github.com/labwc/labwc) - Wayland Compositors
|
||||
|
|
@ -326,10 +326,11 @@ Linux Gaming Guide
|
|||
* ↪️ **[Linux 2FA](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/adblock-vpn-privacy#wiki_.25B7_password_privacy_.2F_2fa)**
|
||||
* ↪️ **[DNS Adblocking](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/adblock-vpn-privacy/#wiki_.25B7_dns_adblocking)**
|
||||
* ⭐ **[Arch Security Wiki](https://wiki.archlinux.org/title/Security)**, [Linux Hardening](https://vez.mrsk.me/linux-hardening.html) / [2](https://madaidans-insecurities.github.io/guides/linux-hardening.html) or [How to Secure a Linux Server](https://github.com/imthenachoman/How-To-Secure-A-Linux-Server) - Linux Security Guides
|
||||
* ⭐ **[SpoofDPI](https://github.com/xvzc/SpoofDPI)** or [zapret](https://github.com/bol-van/zapret) - DPI circumvention
|
||||
* ⭐ **[SpoofDPI](https://github.com/xvzc/SpoofDPI)** or [zapret](https://github.com/bol-van/zapret) - DPI Circumvention
|
||||
* ⭐ **[CryptSetup](https://gitlab.com/cryptsetup/cryptsetup)** or [Tomb](https://dyne.org/software/tomb/) - File Encryption
|
||||
* [Securely Wipe Disk](https://wiki.archlinux.org/title/Securely_wipe_disk) or [SSD Memory Cell Clearing](https://wiki.archlinux.org/title/Solid_state_drive/Memory_cell_clearing) - Linux Disk Wipe Guides
|
||||
* [JShielder](https://github.com/Jsitech/JShielder) - Hardening Script for Linux Servers
|
||||
* [YouTubeUnblock](https://github.com/Waujito/youtubeUnblock) - YouTube DPI Circumvention
|
||||
* [SShuttle](https://github.com/sshuttle/sshuttle) - Proxy
|
||||
* [Lynis](https://github.com/CISOfy/lynis) - Linux Security Auditing Tool
|
||||
* [Lockigest](https://elma.dev/work/lockigest/) - Screen Locker / [GitHub](https://github.com/elmsec/lockigest)
|
||||
|
|
@ -340,7 +341,7 @@ Linux Gaming Guide
|
|||
* [OpenVPN Wrapper](https://github.com/slingamn/namespaced-openvpn) - VPN Tunnel
|
||||
* [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 GUI
|
||||
* [wireguird](https://github.com/UnnoTed/wireguird) - Wireguard GTK GUI
|
||||
* [Netbird](https://github.com/netbirdio/netbird) or [vnStat](https://github.com/vergoh/vnstat) - Network Monitors
|
||||
* [Howdy](https://github.com/boltgolt/howdy) - Linux Facial Authentication
|
||||
* [ShuffleStacks](https://shufflecake.net/) - Create Hidden Volumes
|
||||
|
|
@ -675,7 +676,7 @@ Linux Gaming Guide
|
|||
* 🌐 **[Awesome MacOS](https://github.com/iCHAIT/awesome-macOS)**, [OpenSourceApple](https://opensource.apple.com/), [Awesome Mac](https://github.com/jaywcjlove/awesome-mac) or [Awesome OS Apps](https://github.com/serhii-londar/open-source-mac-os-apps) - FOSS App Indexes
|
||||
* 🌐 **[Mac Menu Bar](https://macmenubar.com/)** - Menu Bar App Index
|
||||
* ⭐ **[Homebrew](https://brew.sh/)** / [GUI](https://corkmac.app/), [Munki](https://www.munki.org/munki/), [MacApps](https://macapps.link/en/) or [AppLite](https://aerolite.dev/applite/index.html) - Package Managers
|
||||
* [AppsTorrent](https://appstorrent.ru/) / [Note](https://pastebin.com/dNirumnk)
|
||||
* [AppsTorrent](https://appstorrent.ru/)
|
||||
* [Macintosh Garden](https://macintoshgarden.org/)
|
||||
* [MacBed](https://www.macbed.com/)
|
||||
* [nMac](https://nmac.to/)
|
||||
|
|
@ -714,7 +715,6 @@ Linux Gaming Guide
|
|||
* ↪️ **[DNS Adblocking](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/adblock-vpn-privacy/#wiki_.25B7_dns_adblocking)**
|
||||
* ⭐ **[Malwarebytes](https://www.malwarebytes.com/mac-download)**, [BlockBlock](https://objective-see.org/products/blockblock.html) or [KnockKnock](https://objective-see.org/products/knockknock.html) - Antivirus
|
||||
* ⭐ **[SpotX-Bash](https://github.com/jetfir3/SpotX-Bash)** or [Mac_Spotify_Adblock](https://github.com/Devanshu-17/Mac_Spotify_Adblock) - Spotify Adblockers
|
||||
* [Ka-Block!](https://apps.apple.com/us/app/ka-block/id1037173557), [BlockBear](https://apps.apple.com/ca/app/blockbear/id1023924541) or [Adblock Plus for iOS](https://gitlab.com/eyeo/adblockplus/adblock-plus-for-safari) - Safari Adblockers
|
||||
* [MacOS Privacy Guide](https://github.com/drduh/macOS-Security-and-Privacy-Guide) - Mac Privacy & Security Guides
|
||||
* [Gas Mask](https://github.com/2ndalpha/gasmask) - Block Ads via Host Files
|
||||
* [Adguard DNS](https://1fichier.com/?ef26ks4abjzct7o1k8os) - DNS Adlocker
|
||||
|
|
|
|||
|
|
@ -72,6 +72,7 @@
|
|||
* [/r/freegames](https://www.reddit.com/r/freegames/) - Games
|
||||
* [/r/RandomActsOfGaming](https://www.reddit.com/r/RandomActsOfGaming/) - Games
|
||||
* [TemporarilyFreeGames](https://t.me/temporarilyfreegames) - Games
|
||||
* [Free Games Tracker](https://pyoneerc1.itch.io/free-games-tracker) - Games
|
||||
* [GamePower](https://www.gamerpower.com/) - Games
|
||||
* [ClaimFreeGames](https://claimfreegames.com/) - Games
|
||||
* [GrabFreeGames](https://grabfreegames.com/) - Games / [Steam Group](https://steamcommunity.com/groups/GrabFreeGames) / [Discord](https://discord.gg/CjQSS4z)
|
||||
|
|
@ -140,7 +141,6 @@
|
|||
* [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
|
||||
* [Taste Bud](https://taste-bud.io/) - Recipe Search AI / Pinboard
|
||||
* [Epicurious](https://www.epicurious.com/) - Recipe Search
|
||||
* [based.cooking](https://based.cooking/) - Recipe Search
|
||||
* [Recipe Search](https://recipe-search.typesense.org/) - Recipe Search
|
||||
|
|
@ -402,6 +402,7 @@
|
|||
* [Instant Street View](https://www.instantstreetview.com/) - Instantly Load Street View
|
||||
* [MapCrunch](https://www.mapcrunch.com/) or [Random Street View](https://randomstreetview.com/) - Random Street View
|
||||
* [city roads](https://anvaka.github.io/city-roads/) - City Roads Map
|
||||
* [GeoHack](https://geohack.toolforge.org/) - Uncensored Google Satellite View
|
||||
|
||||
***
|
||||
|
||||
|
|
@ -1230,7 +1231,6 @@
|
|||
## ▷ Interactive
|
||||
|
||||
* 🌐 **[David.li](https://david.li/)** - Physics Games
|
||||
* 🌐 **[Awesome Web Desktops](https://github.com/syxanash/awesome-web-desktops)** - OS Emulators
|
||||
* ↪️ **[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)**
|
||||
|
|
@ -1241,10 +1241,6 @@
|
|||
* ⭐ **[Human Benchmark](https://humanbenchmark.com/)** - Brain Games & Cognitive Tests
|
||||
* ⭐ **[Got Rhythm?](https://www.concerthotels.com/got-rhythm)** - Rhythm / Tempo Test
|
||||
* ⭐ **[2020 Game](https://2020game.io/)** - Play Through 2020
|
||||
* [Virtual x86](https://copy.sh/v86/) - x86-compatible OS Emulators
|
||||
* [PCjs Machines](https://www.pcjs.org/) or [Windows93](https://www.windows93.net/) - Classic Computer Emulators
|
||||
* [InfiniteMac](https://infinitemac.org/) - Apple OS Emulators
|
||||
* [Quantum Playground](https://www.quantumplayground.net/#/home) - Quantum Computer Simulator
|
||||
* [Little Alchemy](https://littlealchemy.com/) or [Little Alchemy 2](https://littlealchemy2.com/) - Alchemy Game
|
||||
* [JUST SCREAM!](https://justscream.baby/) - Scream into the Universe
|
||||
* [VentScape](https://www.ventscape.life/) or [PostSecretVoicemail](https://www.postsecretvoicemail.com/) - Speak into a Void
|
||||
|
|
@ -1352,12 +1348,13 @@
|
|||
* [InfoMesh](https://infomesh.org/) - Web History / Info
|
||||
* [info.cern](https://info.cern.ch/) - First Website on the Internet
|
||||
* [BetaWiki](https://betawiki.net/wiki/Main_Page) - Operating System / Software History / [Discord](https://discord.com/invite/XPz5Zm42tR)
|
||||
* [Old Computer Museum](https://oldcomputers.net/) - Computer History / Info
|
||||
* [Old Computer Museum](https://oldcomputers.net/) - Computer History
|
||||
* [The HP 9845 Project](https://www.hp9845.net/) - HP 9845 Computer History
|
||||
* [Folklore](https://www.folklore.org) or [TheAppleWiki](https://theapplewiki.com/) - Apple Computer History
|
||||
* [Crypto Museum](https://www.cryptomuseum.com/) - Cryptographic Machine History / Info
|
||||
* [The Retro Web](https://theretroweb.com/) - Computer Hardware History / Info
|
||||
* [VGA Museum](https://www.vgamuseum.info/) - Graphic Cards History / Info
|
||||
* [Crypto Museum](https://www.cryptomuseum.com/) - Cryptographic Machine History
|
||||
* [The Retro Web](https://theretroweb.com/) - Computer Hardware History
|
||||
* [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/), [KilledByMicrosoft](https://killedbymicrosoft.info/) or [KilledByTech](https://killedby.tech/) - Dead Projects
|
||||
* [Projectrho](https://www.projectrho.com/public_html/rocket/) - Fantasy Rocket Encyclopedia
|
||||
|
|
|
|||
|
|
@ -35,7 +35,6 @@
|
|||
* ⭐ **[RunTV](https://runtv.cc/)** - Anime / Sub / 1080p
|
||||
* [ArabLionz](https://arlionztv.ink/), [2](https://arlionztv.pro/) - Movies / TV / Sub / 1080p
|
||||
* [egydead](https://egydead.space/) - Movies / TV / Anime / Sub / 1080p
|
||||
* [dramacafe](https://dramacafe-tv.com/) - Movies / TV / Anime / Sub / 1080p
|
||||
* [akwam](https://ak.sv/) - Movies / TV / Sub / 1080p
|
||||
* [arabseed](https://m.asd.quest/) - Movies / TV / Wrestling / Sub / 1080p
|
||||
* [FajerShow](https://fajer.show) - Movies / TV / Cartoons / Sub / 720p
|
||||
|
|
@ -352,10 +351,8 @@
|
|||
## ▷ Torrenting / Télecharger
|
||||
|
||||
* [Torrent9](https://www.torrent9.se/), [2](https://www.torrent9.site/), [3](https://torrent9.app/) - Video / Audio / ROMs / Books
|
||||
* [Torrent911](https://www.torrent911.wf/) - Video / Audio / ROMs / Books
|
||||
* [OxTorrent](https://oxtorrents.co/) - Video / Audio / ROMs / Books
|
||||
* [Cpasbien](https://feminalpes.fr/), [2](https://www.cpasbien.tw/) - Video / Audio / ROMs / Books
|
||||
* [Zetorrents](https://www.zetorrents.pw/) - Video / Audio / ROMs / Books
|
||||
* [Sharewood](https://www.sharewood.tv/) - Video / Audio / ROMs / Books
|
||||
|
||||
## ▷ Streaming
|
||||
|
|
@ -365,6 +362,7 @@
|
|||
* ⭐ **[Hotstream](https://hotstream.me/)** - Movies / Series / Live TV / Dub / 1080p / [Discord](https://hotstream.me/discord)
|
||||
* ⭐ **[Animeo TV](https://animeovf.fr)** - Anime / Sub / Dub / 1080p
|
||||
* [Sadisflix](https://sadisflix.wiki/) - Movies / TV / Anime / Dub / 1080p / [Telegram](https://t.me/sadisflix) / Use Adblocker
|
||||
* [Atstream](https://atstream.xyz/) - Movies / TV / Anime / Dub / 1080p
|
||||
* [VoirFilmsHD](https://flashfilms-hd.top/) - Movies / TV / Cartoons / Anime / Sub / Dub / 720p
|
||||
* [Cinémathèque de Bretagne](https://www.cinematheque-bretagne.bzh/) - Classic / Amateur Movies
|
||||
* [OtakuFR](https://otakufr.cc/) - Anime / Sub / 1080p
|
||||
|
|
@ -540,7 +538,7 @@
|
|||
* ⭐ **[OlaMovies](https://olamovies.hair/)** - Movies / TV / Sub / Dub / 1080p / 4K / [Telegram](https://t.me/olamovies_officialv6)
|
||||
* ⭐ **[VegaMovies](https://vegamovies.nz/)** - Movies / TV / Anime / 1080p / 4K / [Telegram](https://telegram.dog/VegamoviesTo_Official)
|
||||
* ⭐ **[MkvCinemas](https://mkvcinemas.cat/)** - Movies / TV / Anime / Sub / Dub / 1080p / 4K / [Telegram](https://t.me/+WzLYNDSawQk1MTk1)
|
||||
* ⭐ **[MoviesMod](https://moviesmod.life/)** - Movies / TV / Sub / Dub / 1080p / [Telegram](https://telegram.dog/moviesmodorg) / [Bypass](https://greasyfork.org/en/scripts/474747)
|
||||
* ⭐ **[MoviesMod](https://moviesmod.day/)** - Movies / TV / Sub / Dub / 1080p / [Telegram](https://telegram.dog/moviesmodorg) / [Bypass](https://greasyfork.org/en/scripts/474747)
|
||||
* ⭐ **[SD Toons](https://sdtoons.in)** - Movies / TV / Anime / 1080p
|
||||
* ⭐ **[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)
|
||||
|
|
@ -578,7 +576,7 @@
|
|||
|
||||
## ▷ Torrenting
|
||||
|
||||
* ⭐ **[TamilBlasters](https://1tamilblasters.skin/)** - Movies / [Proxy](https://tamilblasters.unblockit.ong/)
|
||||
* ⭐ **[TamilBlasters](https://1tamilblasters.skin/)** - Movies
|
||||
* ⭐ **[1tamilmv](https://www.1tamilmv.eu/)** - Movies
|
||||
|
||||
## ▷ Streaming
|
||||
|
|
@ -628,10 +626,8 @@
|
|||
## ▷ Reading
|
||||
|
||||
* [SuccessCDs](https://www.successcds.net/) - CBSE Study Guides
|
||||
* [BDEBooks](https://bdebooks.com/) - Books
|
||||
* [Digital Library of India](https://dli.sanskritdictionary.com) - Books
|
||||
* [Sanskrit Documents](https://sanskritdocuments.org) - Sacred Texts
|
||||
* [aryasamajjamnagar.org](https://www.aryasamajjamnagar.org/homepage.htm) - Hinduism Texts
|
||||
|
||||
***
|
||||
|
||||
|
|
@ -980,7 +976,7 @@
|
|||
# ► Portuguese / Português
|
||||
|
||||
* 🌐 **[PiracyBG-PTBR](https://rentry.org/PiracyBG-PTBR)** - Beginners Guide to Piracy
|
||||
* 🌐 **[Pirataria](https://megathread.ahoypirata.lat/)**, [2](https://rentry.co/pirataria-digital) - Portuguese /r/Piracy Mega / [Subreddit](https://www.reddit.com/r/pirataria/)
|
||||
* 🌐 **[Pirataria](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
|
||||
|
|
@ -1117,6 +1113,7 @@
|
|||
* [Poesias Online](https://www.poesiasonline.com) - Poetry
|
||||
* [Site de Poesias](https://sitedepoesias.com) - Poetry
|
||||
* [A Magia da Poesia](https://poemassemerros.wordpress.com) - Poetry
|
||||
* [bibliotecaelfica](https://bibliotecaelfica.org/) - RPG Books
|
||||
* [Superarquivo](https://super.abril.com.br/superarquivo/) - Magazines
|
||||
* [Jornais e Revistas](https://www.jornaiserevistas.com) - Magazines
|
||||
* [VerCapas](https://www.vercapas.com.br) - Magazines
|
||||
|
|
@ -1137,6 +1134,7 @@
|
|||
* [Apologeta](https://www.apologeta.com.br) - Bible Commentary
|
||||
* [biblia.com.br](https://biblia.com.br) or [iGuga](https://www.iguga.org) - Biblical Dictionary
|
||||
* [Arquivo.pt](https://arquivo.pt) - History / Sociology / Linguistics Archives
|
||||
* [Desciclopédia](https://desciclopedia.org/wiki/P%C3%A1gina_principal) - Wikipedia Parody
|
||||
|
||||
***
|
||||
|
||||
|
|
@ -1665,10 +1663,8 @@
|
|||
* [Zalo](https://id.zalo.me/), [2](https://chat.zalo.me/) - Chat App / [Dark Mode](https://zadark.com/) / [Desktop](https://zalo.me/pc) / [Android](https://play.google.com/store/apps/details?id=com.zing.zalo&hl=en) / [iOS](https://apps.apple.com/us/app/zalo/id579523206)
|
||||
* [CocCoc](https://coccoc.com/search) - Search
|
||||
* [Speedtest](https://speedtest.vn/), [Vinahost](https://speedtest.vinahost.vn/) - Internet Speed Test
|
||||
* [BizTime](https://biztime.com.vn/), [HahaLolo](https://www.hahalolo.com/) or [Lotus](https://lotus.vn/) - Social Networks
|
||||
* [Forumvi](https://www.forumvi.com/) - Create a Forum
|
||||
* [LichAm](https://licham.net/), [XemLichAm](https://www.xemlicham.com/) or [LichAmHomNay](https://licham.com.vn/) - Lunar Calendar
|
||||
* [MayTinhOnline](https://maytinhonline.com/) - Calculator
|
||||
* [BusMap](https://busmap.vn/) - Bus Journey
|
||||
* [abProxy](https://proxy.abtech.vn/) - Web Proxy
|
||||
* [XaBuon](https://xabuon.com/) or [Xem](https://xem.vn/) - Memes
|
||||
|
|
@ -1759,6 +1755,7 @@
|
|||
* ⭐ **[VietJack](https://vietjack.com/)** - Educational Books / Documents
|
||||
* ⭐ **[LoiGiaiHay](https://loigiaihay.com/)** - Educational Books / Documents
|
||||
* ⭐ **[VNDoc](https://vndoc.com/)** - Educational Books / Documents
|
||||
* ⭐ **[Tech12h](https://tech12h.com/)** - Educational Books / Documents
|
||||
* [SachVui](https://sachvuii.com/) - Books / [Direct Links](https://greasyfork.org/en/scripts/488558)
|
||||
* [MeTaiSach](https://metaisach.com/) - Books
|
||||
* [DocSachHay](https://docsachhay.net/) - Books
|
||||
|
|
|
|||
|
|
@ -56,7 +56,7 @@
|
|||
* [Porndish](https://www.porndish.com/)
|
||||
* [Analdin](https://www.analdin.com/)
|
||||
* [Tube8](https://www.tube8.com/)
|
||||
* [xMegaDrive](https://video.xmegadrive.com/)
|
||||
* [xMegaDrive](https://www.xmegadrive.com/), [2](https://video.xmegadrive.com/)
|
||||
* [Porndoe](https://porndoe.com/)
|
||||
* [Porndig](https://www.porndig.com/)
|
||||
* [anysex.com](https://anysex.com/)
|
||||
|
|
@ -495,6 +495,7 @@
|
|||
* [Xbooru](https://xbooru.com/)
|
||||
* [The Hentai World](https://thehentaiworld.com/)
|
||||
* [WHentai](https://whentai.com/)
|
||||
* [Rule34 Scroller](https://rule34.pw/)
|
||||
* [Hypno Hub](https://hypnohub.net/) - Hypno Fetish Art / [Discord](https://discord.com/invite/4Y82pB6)
|
||||
* [SmutBase](https://smutba.se/) - NSFW 3D Models
|
||||
* [Permanent Booru](http://owmvhpxyisu6fgd7r2fcswgavs7jly4znldaey33utadwmgbbp4pysad.onion/)
|
||||
|
|
|
|||
|
|
@ -63,9 +63,9 @@
|
|||
|
||||
# ► Ebooks
|
||||
|
||||
* ⭐ **[Anna's Archive](https://annas-archive.org/)**, [2](https://annas-archive.se/), [3](https://annas-archive.li/) - Books / Comics / Educational / [Expand Downloads](https://greasyfork.org/en/scripts/494262) / [Mobile App](https://github.com/dstark5/Openlib)
|
||||
* ⭐ **[Anna's Archive](https://annas-archive.org/)**, [2](https://annas-archive.li/) - Books / Comics / Educational / [Expand Downloads](https://greasyfork.org/en/scripts/494262) / [Mobile App](https://github.com/dstark5/Openlib)
|
||||
* ⭐ **[Library Genesis](https://libgen.is)** - Books / Comics / Manga / [Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_libgen_tools) / [Mirrors](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_libgen__mirrors)
|
||||
* ⭐ **[Z-Library](https://singlelogin.re/)**, [2](http://z-library.do/), [3](https://z-lib.gs/), [4](https://articles.sk/), [5](https://z-lib.gd/), [6](https://1lib.sk/) - Books / Comics / Educational / [Desktop / Extensions](https://go-to-library.sk/) / [.onion](http://loginzlib2vrak5zzpcocc3ouizykn6k5qecgj2tzlnab5wcbqhembyd.onion/), [2](http://bookszlibb74ugqojhzhg2a63w5i2atv5bqarulgczawnbmsb6s6qead.onion/) / [Subreddit](https://www.reddit.com/r/zlibrary/) / [Telegram](https://t.me/zlibrary_official)
|
||||
* ⭐ **[Z-Library](https://singlelogin.re/)**, [2](https://z-lib.gs/), [3](https://articles.sk/), [4](https://z-lib.gd/), [5](https://1lib.sk/) - Books / Comics / Educational / [Desktop / Extensions](https://go-to-library.sk/) / [.onion](http://loginzlib2vrak5zzpcocc3ouizykn6k5qecgj2tzlnab5wcbqhembyd.onion/), [2](http://bookszlibb74ugqojhzhg2a63w5i2atv5bqarulgczawnbmsb6s6qead.onion/) / [Subreddit](https://www.reddit.com/r/zlibrary/) / [Telegram](https://t.me/zlibrary_official)
|
||||
* ⭐ **[Mobilism](https://forum.mobilism.org)**, [2](https://forum.mobilism.me/) - Books / Audiobooks / Magazines / Newspapers / Comics / [User Ranks](https://rentry.co/mobilismranks), [2](https://pastebin.com/pZuuMxYm)
|
||||
* ⭐ **[Bookracy](https://bookracy.ru/)**, [2](https://bookracy.org/), [3](https://lite.bookracy.org/) - Books / [Subreddit](https://reddit.com/r/bookracy) / [Discord](https://discord.com/invite/bookracy)
|
||||
* ⭐ **[Archive.org](https://archive.org/details/texts)** - Books / Audiobooks / Magazines / Newspapers / [Downloader](https://rentry.org/arch1ve), [2](https://bookripper.neocities.org/), [3](https://redd.it/fm1xpw) / [Extension](https://github.com/elementdavv/internet_archive_downloader) / [Script](https://redd.it/ofcqds)
|
||||
|
|
@ -260,7 +260,7 @@
|
|||
* [Sounding Spirit](https://library.soundingspirit.org/) - Religious Songbooks
|
||||
* [The Dead Sea Scrolls](https://www.deadseascrolls.org.il/) - Dead Sea Scrolls Archive
|
||||
* [DigiVatLib](https://digi.vatlib.it/) - Digital Vatican Library
|
||||
* [BibleGateway](https://www.biblegateway.com/) or [Bible.com](https://www.bible.com/) - Christian Bible
|
||||
* [BibleGateway](https://www.biblegateway.com/), [Armorer](https://armorer.io/) or [Bible.com](https://www.bible.com/) - Christian Bible
|
||||
* [eSword](https://e-sword.net/) - Christian Bible Desktop App
|
||||
* [Classics Ethereal Library](https://www.ccel.org/) - Christianity
|
||||
* [Hidden Bible](http://www.hiddenbible.com/enoch/online.html) - Enoch Translation
|
||||
|
|
|
|||
|
|
@ -72,17 +72,17 @@
|
|||
## ▷ Discord Clients
|
||||
|
||||
* 🌐 **[Discord3rdParties](https://github.com/Discord-Client-Encyclopedia-Management/Discord3rdparties)** - Discord Clients Index
|
||||
* ⭐ **[Vencord](https://vencord.dev/)** - Discord Client Mod / [Desktop Client](https://github.com/Vencord/Vesktop) / [Discord](https://discord.gg/D9uwnFnqmd) / [GitHub](https://github.com/Vendicated/Vencord)
|
||||
* ⭐ **[Vencord](https://vencord.dev/)** - Discord Client Mod / [Discord](https://discord.gg/D9uwnFnqmd) / [GitHub](https://github.com/Vendicated/Vencord)
|
||||
* ⭐ **[BetterDiscord](https://betterdiscord.app/)** - Discord Client Mod / [Discord](https://discord.gg/0Tmfo5ZbORCRqbAd) / [GitHub](https://github.com/BetterDiscord/BetterDiscord)
|
||||
* ⭐ **BetterDiscord Tools** - [Plugins](https://betterdiscord.app/plugins) / [Banned Plugins](https://rentry.co/BDBannedPlugins), [2](https://github.com/mov-ebx/BannedBetterDiscordPlugins) / [Support](https://discord.gg/0Tmfo5ZbORCRqbAd) / [Nitro](https://github.com/riolubruh/YABDP4Nitro) / [Re-install Guide](https://gist.github.com/Knewest/ee59d3960e18e6d813c9221b54b36ab1)
|
||||
* ⭐ **[OpenAsar](https://openasar.dev/)** - Improved Discord Desktop's app.asar / [Discord](https://discord.gg/YDMptE8u2b) / [GitHub](https://github.com/GooseMod/OpenAsar)
|
||||
* ⭐ **[WebCord](https://github.com/SpacingBat3/WebCord)** - Privacy-Hardened Client / [Discord](https://discord.gg/Vm4CwZx)
|
||||
* [Replugged](https://replugged.dev/) - Discord Client Mod / [Discord](https://discord.gg/HnYFUhv4x4)
|
||||
* [ArmCord](https://github.com/ArmCord/ArmCord) - Discord Client / Lightweight / [Discord](https://discord.gg/TnhxcqynZ2)
|
||||
* [Legcord](https://github.com/Legcord/Legcord) - Discord Client / Lightweight / [Discord](https://discord.gg/TnhxcqynZ2)
|
||||
* [GoofCord](https://github.com/Milkshiift/GoofCord) - Privacy-Focused Legcord Fork
|
||||
* [abaddon](https://github.com/uowuo/abaddon) - Discord Client Mod / Lightweight / [Discord](https://discord.gg/wkCU3vuzG5)
|
||||
* [GoofCord](https://github.com/Milkshiift/GoofCord) - Discord Client
|
||||
* [Discordo](https://github.com/ayn2op/discordo) - Discord Terminal Client
|
||||
* [discord-PWA](https://github.com/NeverDecaf/discord-PWA) - Discord PWA Client
|
||||
* [Vesktop](https://github.com/Vencord/Vesktop) - Web Client w/ Vencord Preinstalled
|
||||
* [Spacebar](https://github.com/spacebarchat/spacebarchat) - Self-hostable Discord Client
|
||||
* [Dorion](https://github.com/SpikeHD/Dorion) - Lightweight Discord Client
|
||||
* [Dissent](https://github.com/diamondburned/dissent) - GTK4 Discord Client
|
||||
|
|
@ -291,7 +291,7 @@
|
|||
## ▷ Telegram Clients
|
||||
|
||||
* ⭐ **[web.telegram](https://web.telegram.org/)** / [2](https://webk.telegram.org/) / [3](https://weba.telegram.org/) - Web Client
|
||||
* ⭐ **[Materialgram](https://github.com/kukuruzka165/materialgram)** - Desktop Client / Portable
|
||||
* ⭐ **[Materialgram](https://kukuruzka165.github.io/materialgram/)** - Desktop Client / Portable
|
||||
* ⭐ **[Unigram](https://github.com/UnigramDev/Unigram)** - Desktop Client
|
||||
* [TDesktop](https://github.com/Forkgram/tdesktop) - Desktop Client
|
||||
* [TDesktop x64](https://github.com/TDesktop-x64/tdesktop) - Desktop Client / [Telegram](https://t.me/tg_x64)
|
||||
|
|
@ -420,7 +420,6 @@
|
|||
* [PSTube](https://github.com/prateekmedia/pstube) - YouTube Frontend
|
||||
* [youtube-local](https://github.com/user234683/youtube-local) or [yt-local](https://git.sr.ht/~heckyel/yt-local) - YouTube Frontend
|
||||
* [YouT-ube](https://www.yout-ube.com/) - YouTube Frontend
|
||||
* [yt.d0.cx](https://yt.d0.cx/) - YouTube Frontend
|
||||
* [Ytfzf](https://github.com/pystardust/ytfzf) or [YewTube](https://github.com/mps-youtube/yewtube) - Terminal YouTube Players
|
||||
* [Video Resumer](https://addons.mozilla.org/en-US/firefox/addon/video-resumer/) - Resume Videos Where You Left Off / [Note](https://pastebin.com/Jd1DJW8w)
|
||||
* [Looptube](https://www.looptube.xyz/) - Loop YouTube Videos / Segments
|
||||
|
|
@ -463,7 +462,7 @@
|
|||
* ⭐ **[Enhancer for YT](https://www.mrfdev.com/enhancer-for-youtube)**, [ImprovedTube](https://improvedtube.com/), [Tweaks for YT](https://inzk.dev/tweaks-for-youtube/) or [Magic Actions](https://www.chromeactions.com/) - YouTube Enhancement Extensions
|
||||
* ⭐ **[ReturnYouTubeDislikes](https://returnyoutubedislike.com/)** - View YouTube Dislikes / [Web App](https://haeri.github.io/youtube-dislike-viewer/), [2](https://jabrek.net/dislike-en) / [Discord](https://discord.com/invite/mYnESY4Md5)
|
||||
* ⭐ **[DeArrow](https://dearrow.ajay.app/)** or [Clickbait Remover](https://github.com/pietervanheijningen/clickbait-remover-for-youtube) - Reduce Sensationalism / Clickbait
|
||||
* [Untrap](https://untrap.app/), [Less Addictive YouTube](https://github.com/AlexisDrain/Less-Addictive-YouTube) or [YourTube](https://github.com/rahgurung/YourTube) - Distraction-Free YouTube
|
||||
* ⭐ **[Untrap](https://untrap.app/)** or [Less Addictive YouTube](https://github.com/AlexisDrain/Less-Addictive-YouTube) - Distraction-Free YouTube
|
||||
* [BlockTube](https://github.com/amitbl/blocktube) or [YTBlock](https://chromewebstore.google.com/detail/ytblock-block-any-content/nedcanggplmbbgmlpcjiafgjcpdimpea) - YouTube Content Blocker
|
||||
* [Thumbnail Rating Bar](https://github.com/elliotwaite/thumbnail-rating-bar-for-youtube) - Display Like / Dislike Ratio on Thumbnails
|
||||
* [youtube-like-dislike-shortcut](https://github.com/avi12/youtube-like-dislike-shortcut) - Video Like / Dislike Hotkeys
|
||||
|
|
@ -485,6 +484,7 @@
|
|||
|
||||
* ⭐ **[Favoree](https://www.favoree.io/)** - Search / Discover YouTube Channels
|
||||
* ⭐ **[YouTube Advanced Search](https://playlists.at/youtube/search/)** - Search Engine
|
||||
* ⭐ **[PlayPhrase](https://playphrase.me/)**, [clip.cafe](https://clip.cafe/), [ClipBase](https://clipbase.xyz/), [Filmot](https://filmot.com/), [InPhrase](https://inphrase.com/) or [Yarn](https://yarn.co/) / [2](https://getyarn.io/) - Phrase Search Engines
|
||||
* ⭐ **[Filmot](https://filmot.com/)** or [CTRL-F-VIDEO](https://github.com/Evan-Wildenhain/CTRL-F-VIDEO) - Search within YouTube Transcripts / [Firefox](https://addons.mozilla.org/en-US/firefox/addon/youtube-captions-search/) / [Chrome](https://chromewebstore.google.com/detail/youtube-captions-search/kimbeggjgnmckoikpckibeoaocafcpbg)
|
||||
* [YouTube Search Fixer Suite](https://addons.mozilla.org/en-US/firefox/addon/youtube-suite-search-fixer/) - Fix YouTube Search / Declutter Homepage
|
||||
* [YouTube Search Grid View](https://greasyfork.org/en/scripts/481422-youtube-search-results-in-grid-view) - View Results in Grid
|
||||
|
|
@ -505,7 +505,7 @@
|
|||
* 🌐 **[Twitch Database](https://twitchdatabase.com/)** or [SullyGnome](https://sullygnome.com/) - Twitch Tool Indexes
|
||||
* 🌐 **[Twitch Extensions](https://dashboard.twitch.tv/extensions/categories/43f48606-8b91-4149-94e6-02def012c79f)** - Twitch Extensions Index
|
||||
* ⭐ **[7TV](https://7tv.app/)**, [BetterTTV](https://betterttv.com/) or [FrankerFacez](https://www.frankerfacez.com/) - Twitch Enhancement Extensions
|
||||
* ⭐ **[TwitchNoSub](https://github.com/besuper/TwitchNoSub)** - Watch Sub Only Twitch Videos
|
||||
* ⭐ **[TwitchNoSub](https://github.com/besuper/TwitchNoSub)** or [Sub-Vod](https://www.sub-vod.fr/) - Watch Sub Only Twitch Videos
|
||||
* ⭐ **[Stream Scheme](https://www.streamscheme.com/)** - Livestreaming Guides / Resources
|
||||
* [Gumbo](https://github.com/seldszar/gumbo) or [Twitch-Live](https://github.com/yungsamd17/Twitch-Live) - Twitch Stream Trackers
|
||||
* [HypeTrigger](https://hypetrigger.io/) - Automatically Create Clips
|
||||
|
|
@ -559,6 +559,7 @@
|
|||
|
||||
* 🌐 **[TwitchAdSolutions](https://github.com/pixeltris/TwitchAdSolutions)** - Solutions / Scripts for Blocking Twitch Ads
|
||||
* ⭐ **[TTV LOL PRO](https://github.com/younesaassila/ttv-lol-pro)** - Twitch Adblocker / [Proxies](https://wiki.cdn-perfprod.com/v/v1/must-read/proxies)
|
||||
* [AdGuardExtra](https://github.com/AdguardTeam/AdGuardExtra) - Twitch Adblocker
|
||||
* [PurpleAdblock](https://addons.mozilla.org/en-US/firefox/addon/purpleadblock/) - Twitch Adblocker
|
||||
* [VideoAdBlockForTwitch](https://github.com/cleanlock/VideoAdBlockForTwitch) - Twitch Adblocker
|
||||
* [luminous-ttv](https://github.com/AlyoshaVasilieva/luminous-ttv) - Twitch Adblocker
|
||||
|
|
@ -793,7 +794,6 @@
|
|||
* [Arbital](https://arbital.com/) - Hybrid Blogging / Wiki Platform
|
||||
* [Dreamwidth](https://www.dreamwidth.org/) - Blogging Platform
|
||||
* [Haven](https://havenweb.org/) or [WriteFreely](https://writefreely.org/) - Self-Hosted Blogging Platforms
|
||||
* [Multiverse](https://multiverse.plus/) - Make Highly Customizable Blogs
|
||||
* [Bear Blog](https://bearblog.dev/), [Mataroa](https://mataroa.blog/) or [smol.pub](https://smol.pub/) / [Key](https://m15o.ichi.city/smolpub/key-request.html) - Minimalist Blogging Platforms
|
||||
* [Notepin](https://notepin.co/) - Anonymous Blogging Platform
|
||||
* [Zonelets](https://zonelets.net/) - Static Blog Template
|
||||
|
|
|
|||
|
|
@ -17,7 +17,7 @@
|
|||
* [ChokokuCAD](https://github.com/itta611/ChokokuCAD) - CAD Modeling
|
||||
* [Onshape](https://www.onshape.com/en/products/free) - CAD Modeling
|
||||
* [Tinkercad](https://www.tinkercad.com/) - CAD Modeling
|
||||
* [FreeCAD](https://www.freecad.org/) - CAD Modeling
|
||||
* [FreeCAD](https://github.com/realthunder/FreeCAD/), [2](https://www.freecad.org/) - CAD Modeling
|
||||
* [BRL-CAD](https://brlcad.org/) - CAD Modeling
|
||||
* [LibreCAD](https://librecad.org/) - CAD Modeling
|
||||
* [OpenSCAD](https://openscad.org/) or [Mayo](https://github.com/fougue/mayo) - 3D CAD Modelers
|
||||
|
|
@ -64,7 +64,7 @@
|
|||
* ⭐ **[Easy Notes](https://github.com/Kin69/EasyNotes)**
|
||||
* [LibreOffice Viewer](https://f-droid.org/packages/org.documentfoundation.libreoffice/) - Office Suite
|
||||
|
||||
[Markor](https://fossdroid.com/a/markor.html), [sNotz](https://sunilpaulmathew.github.io/sNotz/), [Google Keep](https://play.google.com/store/apps/details?id=com.google.android.keep), [Bundled Notes](https://play.google.com/store/apps/details?id=com.xaviertobin.noted), [ColorNote](https://www.colornote.com/), [Notion](https://www.notion.so/), [Joplin](https://joplinapp.org/), [Notebook](https://www.zoho.com/notebook/), [UpNote](https://play.google.com/store/apps/details?id=com.getupnote.android), [OneNote](https://support.microsoft.com/en-us/office/microsoft-onenote-for-android-46b4b49d-2bef-4746-9c30-6abb5e20b688), [neutriNote](https://github.com/appml/neutrinote), [Writer Plus](https://play.google.com/store/apps/details?id=co.easy4u.writer), [Orgzly](https://github.com/orgzly-revived/orgzly-android-revived), [Justnote](https://justnote.cc/), [Note to Self](https://play.google.com/store/apps/details?id=com.makenotetoself), [Noto](https://github.com/alialbaali/Noto), [Obsidian](https://obsidian.md/mobile), [Saber](https://github.com/saber-notes/saber) (tablets), [Quillpad](https://quillpad.github.io/), [Spooky](https://theachoem.github.io/spooky-mb/), [Moe Memos](https://memos.moe/), [Ara Note](https://github.com/hashemi-hossein/ara-note), [Notally](https://github.com/OmGodse/Notally), [Omni Notes](https://omninotes.app/), [Walling](https://play.google.com/store/apps/details?id=app.walling.mandroid), [Orion](https://play.google.com/store/apps/details?id=com.orion.notein.global), [memos](https://memos.moe/), [NotiNotes](https://github.com/Yanndroid/NotiNotes), [DailyNote](https://play.google.com/store/apps/details?id=com.akapps.dailynote), [Workflowy](https://play.google.com/store/apps/details?id=com.workflowy.android), [OpenNote](https://github.com/YangDai2003/OpenNote-Compose), [NotePad](https://github.com/mshdabiola/NotePad), [uNote](https://gitlab.com/Varlorg/uNote/), [Xed-Editor](https://github.com/RohitKushvaha01/Xed-Editor)
|
||||
[Markor](https://fossdroid.com/a/markor.html), [sNotz](https://sunilpaulmathew.github.io/sNotz/), [Google Keep](https://play.google.com/store/apps/details?id=com.google.android.keep), [Bundled Notes](https://play.google.com/store/apps/details?id=com.xaviertobin.noted), [ColorNote](https://www.colornote.com/), [Notion](https://www.notion.so/), [Joplin](https://joplinapp.org/), [Notebook](https://www.zoho.com/notebook/), [UpNote](https://play.google.com/store/apps/details?id=com.getupnote.android), [OneNote](https://support.microsoft.com/en-us/office/microsoft-onenote-for-android-46b4b49d-2bef-4746-9c30-6abb5e20b688), [neutriNote](https://github.com/appml/neutrinote), [Writer Plus](https://play.google.com/store/apps/details?id=co.easy4u.writer), [Orgzly](https://github.com/orgzly-revived/orgzly-android-revived), [Justnote](https://justnote.cc/), [Note to Self](https://play.google.com/store/apps/details?id=com.makenotetoself), [Noto](https://github.com/alialbaali/Noto), [Obsidian](https://obsidian.md/mobile), [Saber](https://github.com/saber-notes/saber) (tablets), [Quillpad](https://quillpad.github.io/), [Spooky](https://theachoem.github.io/spooky-mb/), [Moe Memos](https://memos.moe/), [Ara Note](https://github.com/hashemi-hossein/ara-note), [Notally](https://github.com/OmGodse/Notally), [Omni Notes](https://omninotes.app/), [Walling](https://play.google.com/store/apps/details?id=app.walling.mandroid), [Orion](https://play.google.com/store/apps/details?id=com.orion.notein.global), [memos](https://memos.moe/), [NotiNotes](https://github.com/Yanndroid/NotiNotes), [DailyNote](https://play.google.com/store/apps/details?id=com.akapps.dailynote), [Workflowy](https://play.google.com/store/apps/details?id=com.workflowy.android), [OpenNote](https://github.com/YangDai2003/OpenNote-Compose), [NotePad](https://github.com/mshdabiola/NotePad), [uNote](https://gitlab.com/Varlorg/uNote/), [Xed-Editor](https://github.com/RohitKushvaha01/Xed-Editor), [Kardi Notes](https://f-droid.org/packages/github.rikodot.kardi_notes/)
|
||||
|
||||
### To-Do Apps
|
||||
|
||||
|
|
@ -267,6 +267,7 @@
|
|||
|
||||
* ⭐ **[Signal](https://signal.org/#signal)** or [Mollyim](https://github.com/mollyim/mollyim-android)
|
||||
* ⭐ **[Briar](https://briarproject.org/)**
|
||||
* ⭐ **[SimpleX](https://simplex.chat/)**
|
||||
|
||||
[Status](https://status.im/), [Confide](https://play.google.com/store/apps/details?id=cm.confide.android), [ChatSecure](https://ballinger.io/apps/chatsecure/), [Snikket](https://snikket.org/), [RetroShare](https://retroshare.cc/), [BiP](https://bip.com/en/), [Olvid](https://olvid.io/en/), [Berty](https://berty.tech/), [OpenKeychain](https://www.openkeychain.org/), [NewNode](https://newnode.com/), [Kontalk](https://www.kontalk.org/), [Wire](https://wire.com/en/download/), [Databag](https://github.com/balzack/databag)
|
||||
|
||||
|
|
@ -993,6 +994,7 @@
|
|||
* ⭐ **[Primitive Technology](https://youtube.com/@primitivetechnology9550?si=NClgkWZP5Q3L_p_W)**
|
||||
* [SurvivalManual](https://ligi.de/) / [GitHub](https://github.com/ligi/SurvivalManual)
|
||||
* [r/Preppers](https://www.reddit.com/r/preppers/)
|
||||
* [Trail Sense](https://kylecorry.com/Trail-Sense/) - Wilderness Survival App / [GitHub](https://github.com/kylecorry31/Trail-Sense)
|
||||
|
||||
[OffGridDownload](https://t.me/offgriddownload), [ExploreMarMaris](http://www.exploremarmaris.com/read/Survival/), [/r/PrepperFileShare](https://reddit.com/r/PrepperFileShare), [The Preparedness Encyclopedia](https://www.fluidicice.com/tpe)
|
||||
|
||||
|
|
@ -1006,6 +1008,7 @@
|
|||
* ⭐ **[SVG Repo](https://www.svgrepo.com/)**
|
||||
* [GrommetIcons](https://icons.grommet.io/) - SVG Icons for React
|
||||
* [HealthIcons](https://healthicons.org/) - Medical Icons
|
||||
|
||||
[Icofont](https://icofont.com/icons), [svgl](https://svgl.app/), [iconer](https://iconer.app/), [SimpleIcons](https://simpleicons.org/), [xIcons](https://xicons.org), [Polaris](https://polaris.shopify.com/icons), [Phosphor Icons](https://phosphoricons.com/), [iCongo](https://icongo.github.io/), [IconFinder](https://www.iconfinder.com/), [Lucide](https://lucide.dev/icons/), [Ant Design](https://ant.design/components/icon/), [IconPacks](https://www.iconpacks.net/), [svgmix](https://svgmix.com/), [Iconbuddy](https://iconbuddy.app/), [Noun Project](https://thenounproject.com/), [cappuccicons](https://cappuccicons.com/), [Orion](https://www.orioniconlibrary.com/), [Flaticon](https://www.flaticon.com/), [Devicon](https://devicon.dev/), [Glyphs](https://glyphs.fyi/), [IconArchive](https://iconarchive.com/), [IconDuck](https://iconduck.com/), [icon icons](https://icon-icons.com/), [Icons-For-Free](https://icons-for-free.com/), [Streamline](https://www.streamlinehq.com/), [Dryicons](https://dryicons.com/), [Icones](https://icones.js.org/), [CaptainIconWeb](https://mariodelvalle.github.io/CaptainIconWeb/), [IconNinja](https://www.iconninja.com/),[IconHunt](https://www.iconhunt.site/), [Teenyicons](https://teenyicons.com/), [awsicons](https://awsicons.dev/), [iconoir](https://iconoir.com/), [heroicons](https://heroicons.dev/), [composeicons](https://composeicons.com/), [iconmonstr](https://iconmonstr.com/)
|
||||
|
||||
***
|
||||
|
|
@ -1116,6 +1119,7 @@
|
|||
|
||||
### Udemy TG Channels
|
||||
|
||||
* [UdemyRip](https://t.me/udemyrip)
|
||||
* [udemyforu](https://t.me/udemyforu)
|
||||
* [CGPERS](https://t.me/CGPERS)
|
||||
* [Udemy_Courses_Free_Daily](https://t.me/Udemy_Courses_Free_Daily)
|
||||
|
|
|
|||
|
|
@ -54,7 +54,7 @@
|
|||
|
||||
## ▷ System Tweaks
|
||||
|
||||
* ⭐ **[EverythingToolbar](https://github.com/srwi/EverythingToolbar)** or [yasb](https://github.com/da-rth/yasb) - Tweaked Taskbars
|
||||
* ⭐ **[EverythingToolbar](https://github.com/srwi/EverythingToolbar)** or [yasb](https://github.com/amnweb/yasb) - Tweaked Taskbars
|
||||
* ⭐ **[Open Shell](https://open-shell.github.io/Open-Shell-Menu/)** - Tweak Start Menu
|
||||
* ⭐ **[EarTrumpet](https://eartrumpet.app/)**, [Volumey](https://github.com/G-Stas/Volumey) or [Volume2](https://github.com/irzyxa/Volume2) - Tweak Volume Mixer
|
||||
* ⭐ **[AltSnap](https://github.com/RamonUnch/AltSnap)** - Tweaked Windows Dragging
|
||||
|
|
@ -166,17 +166,22 @@
|
|||
|
||||
## ▷ Virtual Machines
|
||||
|
||||
* 🌐 **[Awesome Web Desktops](https://github.com/syxanash/awesome-web-desktops)** - OS Emulators / VMs
|
||||
* ↪️ **[Android Emulators](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/android#wiki_.25BA_android_emulators)**
|
||||
* ⭐ **[VMware Workstation](https://rentry.co/FMHYBase64#vmware) or [VirtualBox](https://www.virtualbox.org/)** / [Portable](https://www.vbox.me/) - Virtual Machines
|
||||
* ⭐ **[Virt-Manager](https://virt-manager.org/)** or [Vagrantup](https://www.vagrantup.com/) - Virtual Machine Managers
|
||||
* ⭐ **[Hackintosh](https://hackintosh.com/)**, [Emaculation](https://www.emaculation.com/), [felixrieseberg](https://github.com/felixrieseberg/macintosh.js/) or [OneClick-macOS](https://github.com/notAperson535/OneClick-macOS-Simple-KVM) - macOS Virtual Machines
|
||||
* ⭐ **Hackintosh Tools** - [Guide](https://www.tonymacx86.com/) / [Ryzen](https://github.com/mikigal/ryzen-hackintosh) / [XiaoMi](https://github.com/daliansky/XiaoMi-Pro-Hackintosh)
|
||||
* ⭐ **Hackintosh Tools** - [Guide](https://chefkissinc.github.io/guides/hackintosh/), [2](https://www.tonymacx86.com/) / [Ryzen](https://github.com/mikigal/ryzen-hackintosh) / [XiaoMi](https://github.com/daliansky/XiaoMi-Pro-Hackintosh)
|
||||
* [Looking Glass](https://looking-glass.io/) - App for Using Kernel-Based Virtual Machine Configured for VGA PCI Pass-Through
|
||||
* [Qemu](https://gitlab.com/qemu-project/qemu), [Hyper-V](https://learn.microsoft.com/en-us/virtualization/hyper-v-on-windows/) or [Denodo Test](https://community.denodo.com/test-drives/) - Virtual Machines
|
||||
* [OSBoxes](https://www.osboxes.org/) - Preinstalled Virtual Machine
|
||||
* [CollabVM](https://computernewb.com/collab-vm/) - Online Virtual Machines
|
||||
* [CollabVM](https://computernewb.com/collab-vm/) or [Terminator](https://terminator.aeza.net/) - Online Virtual Machines
|
||||
* [Virtual PC](https://www.microsoft.com/en-us/download/details.aspx?id=3243) - Windows XP Virtual Machine
|
||||
* [QuickEmu](https://github.com/quickemu-project/quickemu) or [Dexpot](https://www.dexpot.de/) - Virtual Machine Creator
|
||||
* [Virtual x86](https://copy.sh/v86/) - x86-compatible OS Emulators
|
||||
* [PCjs Machines](https://www.pcjs.org/) or [Windows93](https://www.windows93.net/) - Classic Computer Emulators
|
||||
* [InfiniteMac](https://infinitemac.org/) - Apple OS Emulators
|
||||
* [Quantum Playground](https://www.quantumplayground.net/#/home) - Quantum Computer Simulator
|
||||
* [winevdm](https://github.com/otya128/winevdm) - 16-bit Windows on 64-bit Systems
|
||||
* [Blink](https://github.com/jart/blink) - Linux Emulator for Windows
|
||||
* [Dockerholics](https://github.com/petersem/dockerholics) - Docker Apps
|
||||
|
|
@ -415,7 +420,7 @@
|
|||
* [Chloechantelle Guide](https://www.ricing.chloechantelle.com/) or [Heliohost Guide](https://ninjasr.heliohost.org/w/lb/windows) - Windows Customization Guides
|
||||
* [Blackbox 4 Windows](https://blackbox4windows.com/) - Custom Windows Shells / Widgets
|
||||
* [Alternative Windows Shells Wiki](https://en.wikipedia.org/wiki/List_of_alternative_shells_for_Windows) - Alt Windows Shells
|
||||
* [WindowsCustomization](https://windowscustomization.com/), [WinCustomize](https://www.wincustomize.com/), [Win10 DeviantArt](https://www.deviantart.com/tag/windows10), [WinClassic](https://winclassic.boards.net/) or [7Themes](https://7themes.su/) - Customization / Themes / Wallpapers
|
||||
* [WindowsCustomization](https://windowscustomization.com/), [WinCustomize](https://www.wincustomize.com/), [Win10 DeviantArt](https://www.deviantart.com/tag/windows10), [WinClassic](https://winclassic.boards.net/), [Vin Star Theme](https://www.vinstartheme.com/) or [7Themes](https://7themes.su/) - Customization / Themes / Wallpapers
|
||||
* [WinDynamicDesktop](https://github.com/t1m0thyj/WinDynamicDesktop) or [Dynamic Theme](https://apps.microsoft.com/detail/9nblggh1zbkw) - Dynamic Desktop Themes
|
||||
* [SecureUxTheme](https://github.com/namazso/SecureUxTheme) or [UltraUXThemePatcher](https://mhoefs.eu/software_uxtheme.php?ref=syssel&lang=en) - Ux Theme Patcher
|
||||
* [7TSP GUI](https://www.deviantart.com/devillnside/art/7TSP-GUI-2019-Edition-804769422) - Theme Source Patcher
|
||||
|
|
@ -447,6 +452,7 @@
|
|||
* [Simple Desktops](https://simpledesktops.com/), [Positron Dream](https://www.positrondream.com/) or [SetAsWall](https://www.setaswall.com/) - Minimalist Wallpapers
|
||||
* [/r/LivingBackgrounds](https://reddit.com/r/LivingBackgrounds), [WALLegend](https://wallegend.net/en/) or [MoeWalls](https://moewalls.com/) - Animated Wallpapers
|
||||
* [AutoWall](https://github.com/SegoCode/AutoWall) - Turn Videos / GIFs to Live Wallpapers
|
||||
* [VSThemes Live Walls](https://vsthemes.org/en/wallpapers/) -Live Wallpapers
|
||||
* [Screencaps](https://screencaps.us/) or [shot.cafe](https://shot.cafe/) - Movie / TV Wallpapers
|
||||
* [Anime Pictures](https://anime-pictures.net/), [Anime_WallpapersHD](https://t.me/Anime_WallpapersHD/), [WallpaperWaifu](https://wallpaperwaifu.com/) or [MyLiveWallpapers](https://mylivewallpapers.com/) - Anime Wallpapers
|
||||
* [Dracula Wallpapers](https://draculatheme.com/wallpaper) - Dracula Wallpapers
|
||||
|
|
|
|||
|
|
@ -119,18 +119,18 @@
|
|||
* [LilySpeech](https://lilyspeech.com/) - Fast Voice-To-Text Software
|
||||
* [VoiceNotebook](https://voicenotebook.com/) - Speech Transcription Notebook
|
||||
|
||||
|
||||
***
|
||||
|
||||
## ▷ Encode / Decode
|
||||
|
||||
* ⭐ **[CyberChef](https://gchq.github.io/CyberChef/)** - Encode / Decode Text
|
||||
* ⭐ **[Base64 Decode](https://www.base64decode.org/) / [Encode](https://www.base64encode.org/)** / [Dynamic](https://apps.maximelafarie.com/base64/) / [Chrome](https://chromewebstore.google.com/detail/base64-encoderdecoder/afdannbjainhcddbjjlhamdgnojibeoi), [2](https://chromewebstore.google.com/detail/base64-decode-copy/llcfmnginbnmkeddkjjellcimmffjdcf), [3](https://chromewebstore.google.com/detail/clip64-base64-decoder/hdneaoibdfdmifgfjjlkbkceanhjmgch) / [Firefox](https://addons.mozilla.org/en-US/firefox/addon/base64-decoder/)
|
||||
* ⭐ **[Base64 Decode](https://www.base64decode.org/)**, [Base64 E/D](https://apps.maximelafarie.com/base64/) or [Base64.Guru](https://base64.guru/) - Encode / Decode Base64
|
||||
* [Ciphey](https://github.com/Ciphey/Ciphey) - Automated Decryption Tool
|
||||
* [Universal Encoding Tool](https://unenc.com/) - Encode / Convert Text
|
||||
* [cryptii](https://cryptii.com/), [DenCode](https://dencode.com/) - Text / URL Encoding
|
||||
* [Online Tools](https://emn178.github.io/online-tools/index.html) - Text / URL Encoding and Decoding
|
||||
* [URL Decode](https://url-decode.com/) / [Encode](https://url-decode.com/tool/url-encode) - URL Encoding / Decoding
|
||||
* Base64 Extensions - [Chrome](https://chromewebstore.google.com/detail/base64-encoderdecoder/afdannbjainhcddbjjlhamdgnojibeoi), [2](https://chromewebstore.google.com/detail/base64-decode-copy/llcfmnginbnmkeddkjjellcimmffjdcf), [3](https://chromewebstore.google.com/detail/clip64-base64-decoder/hdneaoibdfdmifgfjjlkbkceanhjmgch) / [Firefox](https://addons.mozilla.org/en-US/firefox/addon/base64-decoder/)
|
||||
|
||||
***
|
||||
|
||||
|
|
@ -258,12 +258,13 @@
|
|||
|
||||
## ▷ Office Suites
|
||||
|
||||
* ↪️ **[Office Activation](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/system-tools#wiki_.25B7_windows_activation)** / [Guide](https://redd.it/1814gmp) / [Custom Install Guide](https://gravesoft.dev/office_c2r_custom)
|
||||
* ⭐ **[LibreOffice](https://www.libreoffice.org/)** - FOSS Office Suite
|
||||
* ⭐ **[OnlyOffice](https://www.onlyoffice.com/)** - FOSS Office Suite
|
||||
* ⭐ **[Microsoft Office](https://gravesoft.dev/office_c2r_links)** - Office Suite
|
||||
* ⭐ **Microsoft Office Tools** - [Activation](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/system-tools#wiki_.25B7_windows_activation) / [Activation Guide](https://redd.it/1814gmp) / [Custom Install Guide](https://gravesoft.dev/office_c2r_custom) / [Hot Keys](https://support.microsoft.com/en-us/office/keyboard-shortcuts-in-microsoft-365-e765366f-24fc-4054-870d-39b214f223fd), [2](https://i.ibb.co/0m9t95b/ebacd47bf83b.png)
|
||||
* ⭐ **[Office Scrubber](https://github.com/abbodi1406/WHD/tree/master/scripts)** - Office Removal Tool
|
||||
* [Microsoft Office Hot Keys](https://support.microsoft.com/en-us/office/keyboard-shortcuts-in-microsoft-365-e765366f-24fc-4054-870d-39b214f223fd), [2](https://i.ibb.co/0m9t95b/ebacd47bf83b.png)
|
||||
* [Calligra](https://calligra.org/) - FOSS Office Suite
|
||||
* [Office Scrubber](https://github.com/abbodi1406/WHD/raw/master/scripts/OfficeScrubber_12r.zip) - Office Removal Tool / [Readme](https://github.com/abbodi1406/BatUtil/blob/master/OfficeScrubber/README.md)
|
||||
* [Office365Version](https://www.office365versions.com/) - Office 365 Version History
|
||||
|
||||
***
|
||||
|
|
|
|||
|
|
@ -7,9 +7,9 @@
|
|||
# ► Video Tools
|
||||
|
||||
* ↪️ **[AI Video Generators](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/ai#wiki_.25BA_video_generation)**
|
||||
* ⭐ **[Reincubate Camo](https://reincubate.com/camo/)** - Use Any Camera as Webcam
|
||||
* ⭐ **[Waifu2x GUI](https://github.com/AaronFeng753/Waifu2x-Extension-GUI)**, [Video2x](https://github.com/k4yt3x/video2x), [Enhancr](https://github.com/mafiosnik777/enhancr) or [Dandere2x](https://github.com/akai-katto/dandere2x) - Video Upscalers
|
||||
* ⭐ **[Deep-Live-Cam](https://github.com/hacksider/Deep-Live-Cam)**, [Rope](https://github.com/Hillobar/Rope), [SimSwap](https://github.com/neuralchen/SimSwap), [Roop Unleashed](https://github.com/C0untFloyd/roop-unleashed) or [Roop](https://github.com/s0md3v/roop) - Video Face Swap Tools
|
||||
* ⭐ **[PlayPhrase](https://playphrase.me/)**, [clip.cafe](https://clip.cafe/), [ClipBase](https://clipbase.xyz/), [Filmot](https://filmot.com/) or [Yarn](https://yarn.co/) / [2](https://getyarn.io/) - Internet Clip Quote Search
|
||||
* [Deep-Live-Cam](https://github.com/hacksider/Deep-Live-Cam), [Rope](https://github.com/Hillobar/Rope), [SimSwap](https://github.com/neuralchen/SimSwap), [Roop Unleashed](https://github.com/C0untFloyd/roop-unleashed) or [Roop](https://github.com/s0md3v/roop) - Video Face Swap Tools
|
||||
* [VideoHelp Forum](https://forum.videohelp.com/) - All Things Media / Video
|
||||
* [VCSI](https://github.com/amietn/vcsi) - Create Video Contact Sheets / Thumbnails
|
||||
* [VMAF](https://github.com/Netflix/vmaf) - Video Quality Assessment
|
||||
|
|
@ -346,7 +346,7 @@
|
|||
## ▷ Video Editors
|
||||
|
||||
* ⭐ **[kdenlive](https://kdenlive.org/en/)** - Video Editor
|
||||
* ⭐ **[DaVinci Resolve](https://www.blackmagicdesign.com/products/davinciresolve)** - Video Editor
|
||||
* ⭐ **[DaVinci Resolve](https://www.blackmagicdesign.com/products/davinciresolve)** - Video Editor / Signup Required
|
||||
* ⭐ **[Shotcut](https://shotcut.org/)** - Video Editor
|
||||
* [Auto-Editor](https://auto-editor.com/) - CLI Editor
|
||||
* [MoviePy](https://zulko.github.io/moviepy/) - Python Editor
|
||||
|
|
@ -384,7 +384,7 @@
|
|||
## ▷ Online Editors
|
||||
|
||||
* ⭐ **[Pikimov](https://pikimov.com/)**
|
||||
* ⭐ **[Mastershot](https://mastershot.app/)**
|
||||
* ⭐ **[Mastershot](https://mastershot.app/)** / Signup Required
|
||||
* [VideoInu](https://videoinu.com/)
|
||||
* [Clideo](https://clideo.com/)
|
||||
* [Kapwing](https://www.kapwing.com/)
|
||||
|
|
|
|||
|
|
@ -10,18 +10,18 @@
|
|||
|
||||
* ⭐ **[movie-web Instances](https://erynith.github.io/movie-web-instances/)**, [2](https://docs.undi.rest/instances) - Movies / TV / Anime / 4K / 1080p / Ad-Free / [Docs](https://docs.undi.rest/)
|
||||
* ⭐ **[watch.lonelil](https://watch.lonelil.ru/)** - Movies / TV / Anime / 4K / 1080p / [Add Sources](https://watch.lonelil.ru/onboarding/extension) / [Discord](https://discord.com/invite/BKts6Jb5sA) / [Telegram](https://t.me/watchlonelil)
|
||||
* ⭐ **[Braflix](https://www.braflix.gd/)** - Movies / TV / Anime / 4K / 1080p / [Discord](https://discord.com/invite/dexBcDVdEk)
|
||||
* ⭐ **[Braflix](https://www.braflix.is/)** - Movies / TV / Anime / 4K / 1080p / [Discord](https://discord.com/invite/dexBcDVdEk)
|
||||
* ⭐ **[Freek](https://freek.to/)** - Movies / TV / Anime / 1080p
|
||||
* ⭐ **[HydraHD](https://hydrahd.cc/)** - Movies / TV / Anime / 1080p / [Telegram](https://t.me/+BUrW9XlfiW1lNDQ0)
|
||||
* ⭐ **[Nunflix](https://nunflix.org/)**, [2](https://nunflix.live/), [3](https://nunflix.com/), [4](https://nunflix-firebase.web.app/), [5](https://nunflix-ey9.pages.dev/), [6](https://nunflix-firebase.firebaseapp.com/) - Movies / TV / Anime / 4K / 1080p / [Discord](https://discord.gg/CXVyfhgn26)
|
||||
* ⭐ **[Novafork](https://novafork.com/)** - Movies / TV / 4k / 1080p / [Discord](https://discord.gg/XbDBBmh5FY) / [GitHub](https://github.com/fanlimgames/novafork)
|
||||
* ⭐ **[kipwatch](https://kipwatch.xyz/)** - Movies / TV / Anime / 1080p / [Discord](https://discord.gg/tDKYeh9eQn)
|
||||
* ⭐ **[KipFlix](https://kipflix.xyz/)**, [2](https://kipstream.lol/) - Movies / TV / Anime / 1080p / [Discord](https://discord.gg/tDKYeh9eQn)
|
||||
* ⭐ **[kipstream](https://kipstream.lol/)**, [KipFlix](https://kipflix.xyz/) or [kipwatch](https://kipwatch.xyz/) - Movies / TV / Anime / 1080p / [Discord](https://discord.gg/tDKYeh9eQn)
|
||||
* ⭐ **[Heartive](https://heartive.pages.dev/)** - Movies / TV / Anime / 1080p
|
||||
* ⭐ **[StreamFlix](https://watch.streamflix.one/)**, [2](https://streamflix.space/) - Movies / TV / Anime / 4K / 1080p / [Discord](https://discord.gg/C8fyfz5pYz)
|
||||
* ⭐ **[PressPlay](https://www.pressplay.top/)** - Movies / TV / 1080p / [Discord](https://discord.gg/r4QrghF4B9)
|
||||
* ⭐ **[Autoembed](https://watch.autoembed.cc/)** - Movies / TV / Anime / Drama / 4K / 1080p / [API Docs](https://autoembed.cc/#api/) / [Discord](https://discord.gg/BWDSXV9aX4)
|
||||
* ⭐ **[Smashystream](https://smashystream.xyz/)**, [2](https://flix.smashystream.xyz/), [3](https://smashystream.com/) or [smashy](https://smashy.stream/) (ad-free w/ signup) - Movies / TV / Anime / 1080p
|
||||
* ⭐ **[RgShows](https://www.rgshows.me/)** - Movies / TV / Anime / 4K / 1080p
|
||||
* ⭐ **[456movie](https://456movie.com/)** - Movies / TV / 4K / 1080p
|
||||
* ⭐ **[Rive](https://rivestream.live/)**, [2](https://rivestream.xyz/), [3](https://cinemaos-v2.vercel.app/) - Movies / TV / Anime / 4K / 1080p / Ad-Free / [Status](https://rentry.co/rivestream) / [Discord](https://discord.gg/6xJmJja8fV)
|
||||
* ⭐ **[NetPlay](https://netplayz.ru/)** - Movies / TV / Anime / 1080 / [Discord](https://discord.gg/NCH4rzxJ36)
|
||||
|
|
@ -48,7 +48,7 @@
|
|||
* [Cataz](https://cataz.ru/) - Movies / TV / Anime / 1080p
|
||||
* [YoYoMovies](https://yoyomovies.net/) - Movies / TV / Anime / 1080p
|
||||
* [FlixHQ.click](https://flixhq.click/) - Movies / TV / 1080p
|
||||
* [RgShows](https://www.rgshows.me/) - Movies / TV / Anime / 4K / 1080p
|
||||
* [Filmex](https://filmex.to/) - Movies / TV / Anime / 1080p / [Discord](https://discord.gg/6r5KTZgqXV)
|
||||
* [ViewVault](https://viewvault.org/) - Movies / TV / Anime / 1080p
|
||||
* [CorsFlix](https://corsflix.us.kg/) - Movies / TV / Anime / 1080p
|
||||
* [PopcornMovies](https://popcornmovies.to/) - Movies / TV / Anime / 1080p
|
||||
|
|
@ -63,6 +63,8 @@
|
|||
* [MP4Hydra](https://mp4hydra.org/), [2](https://mp4hydra.top/) - Movies / 1080p / [Mirrors](https://mp4hydra.info/)
|
||||
* [CinemaUnlocked](https://cinemaunlocked.com/) - Movies / TV / Anime / 1080p
|
||||
* [AZMovies](https://azm.to/) - Movies / 1080p
|
||||
* [streamfr](https://streamfr.onrender.com/) - Movies / TV / Anime / 1080p / [Discord](https://discord.com/invite/bqXhREHEDt)
|
||||
* [Mokmobi](https://mokmobi.site/) - Movies / TV / Anime / 1080p
|
||||
* [M4uFree](https://m4ufree.se/) - Movies / TV / Anime / 1080p / [Clones](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_m4ufree_clones)
|
||||
* [zmov](https://zmov.vercel.app/), [2](https://watch.coen.ovh/) - Movies / TV / Anime / 1080p / [GitHub](https://github.com/coen-h/zmov)
|
||||
* [Hopcorn](https://c.hopmarks.com/) or [Hopplay](https://p.hopmarks.com/) - Movies / TV / Anime / 4K / 1080p
|
||||
|
|
@ -156,8 +158,9 @@
|
|||
* [AnimeCross](https://anime.cross.moe/) - Sub / 1080p / [Discord](https://discord.com/invite/3AxZvGArdm)
|
||||
* [AnimeOwl](https://animeowl.live/) - Sub / Dub / 1080p / [Discord](https://discord.com/invite/xHYcvdMvZ2)
|
||||
* [1Anime](https://1anime.co/), [2](https://1anime.one/) - Sub / Dub / 1080p / [Discord](https://dsc.gg/1Anime)
|
||||
* [Anidey](https://anidey.fun/) - Sub / Dub / 1080p / [Discord](https://discord.gg/rT5AQkys2v)
|
||||
* [AnimeSuge](https://animesugetv.to/), [2](https://animixplay.tube) - Sub / Dub / 1080p
|
||||
* [Animixplay.name](https://animixplay.name/) - Sub / Dub / 1080p
|
||||
* [Animixplay.name](https://animixplay.name/), [2](https://animixplay.st/) - Sub / Dub / 1080p
|
||||
* [YugenAnime](https://yugenanime.tv/) - Sub / Dub / 1080p
|
||||
* [AnimeHub](https://animehub.ac/) - Sub / Dub / 1080p
|
||||
* [Anipulse](https://www.anipulse.to/) - Sub / Dub / 1080p / [Discord](https://discord.gg/KKuCUgSHVs)
|
||||
|
|
@ -210,7 +213,7 @@
|
|||
* ⭐ **[CouchTuner](https://www.couchtuner.show/)** - TV / Anime / 720p / [Telegram](https://t.me/+tPEqeXLobAo4YTZh)
|
||||
* ⭐ **[Best Series](https://bstsrs.in/)**, [2](https://topsrs.day/), [3](https://srstop.link/) - TV / Anime / 1080p
|
||||
* ⭐ **[NOXX](https://noxx.to/)** - TV / 1080p
|
||||
* ⭐ **[Taskmaster](https://www.youtube.com/@Taskmaster/playlists?view=50&sort=dd&shelf_id=1)** - Taskmaster Episodes / [International](https://www.reddit.com/r/panelshow/wiki/taskmaster/), [2](https://www.youtube.com/@Taskmaster/playlists?view=50&shelf_id=6) / [Full Series List](https://trakt.tv/users/nbatman/lists/taskmaster-shows)
|
||||
* ⭐ **[Taskmaster](https://www.youtube.com/@Taskmaster/playlists?view=50&sort=dd&shelf_id=1)** - Taskmaster Episodes / [International](https://www.reddit.com/r/panelshow/wiki/index/), [2](https://www.youtube.com/@Taskmaster/playlists?view=50&shelf_id=6) / [Full Series List](https://trakt.tv/users/nbatman/lists/taskmaster-shows)
|
||||
* [Teleisodes](https://telepisodes.org/) - TV / 1080p
|
||||
* [databasegdriveplayer](https://databasegdriveplayer.co/series.php) - TV / Anime / 720p
|
||||
* [TVSeries](https://www.tvseries.in/) - TV / Anime / 720p
|
||||
|
|
@ -370,14 +373,15 @@
|
|||
* ↪️ **[IPTV Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_iptv_tools)** or [Awesome IPTV](https://github.com/iptv-org/awesome-iptv) - IPTV Resources / [Players](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_m3u_players) / [Playlists](https://rentry.co/FMHYBase64#iptv-playlists) / [Search](https://www.foodieguide.com/iptvsearch/) / [Generate Playlists](https://github.com/gogetta69/TMDB-To-VOD-Playlist)
|
||||
* ⭐ **[TheTVApp](https://thetvapp.to/)** - TV / Sports / Ad-Free
|
||||
* ⭐ **[TOTV](http://totv.org/channels)** - TV / Sports
|
||||
* ⭐ **[DaddyLive](https://dlhd.so/)** or [miztv](https://miztv.shop/), [2](https://miztv.ru/) - TV / Sport / [Telegram](https://t.me/dlhdlive)
|
||||
* ⭐ **[watch.lonelil](https://watch.lonelil.ru/tv)** - TV / Sports / [Schedule](https://watch.lonelil.ru/schedule)
|
||||
* ⭐ **[DaddyLive](https://dlhd.sx/)** or [miztv](https://miztv.shop/), [2](https://miztv.ru/) - TV / Sport
|
||||
* ⭐ **[EasyWebTV](https://zhangboheng.github.io/Easy-Web-TV-M3u8/routes/countries.html)** or [IPTV Web](https://iptv-web.app/) - TV / Sports / 1080p
|
||||
* [Braflix](https://www.braflix.gd/livestream/) - TV / Sports
|
||||
* [Heartive](https://heartive.pages.dev/live/) - Live TV / Sports
|
||||
* [SusFlix](https://susflix.tv/) - TV / Sports / [Discord](https://discord.gg/BE7kTVezBN)
|
||||
* [Xumo Play](https://play.xumo.com/networks) - TV / US Only
|
||||
* [Pluto](https://pluto.tv/live-tv), [2](https://app-lgwebos.pluto.tv/live-tv) - TV / Sports / US Only
|
||||
* [SportsLive](https://sportslive.me/) - Sport / [Discord](https://discord.gg/22BUXzus2h) / [Telegram](https://t.me/+TQLKRehSyuszOWRi)
|
||||
* [Time4TV](https://time4tv.online/) - TV / Sports
|
||||
* [time4tv.top](https://time4tv.top/) - TV / Sports
|
||||
* [RgShows](https://www.rgshows.me/) - TV / [Discord](https://discord.com/invite/bosskingdom-comeback-1090560322760347649)
|
||||
|
|
@ -706,7 +710,7 @@
|
|||
* ⭐ **[1337x Movies](https://1337x.to/movie-library/1/)** - Movies / TV / Anime
|
||||
* ⭐ **[TorrentGalaxy Movies](https://torrentgalaxy.to/torrents.php?parent_cat=Movies)** - Movies / TV / Anime
|
||||
* ⭐ **[RuTracker Movies](https://rutracker.org/forum/index.php?c=2)** - Movies / TV / Anime / [Wiki](http://rutracker.wiki/) / [Rules](https://rutracker.org/forum/viewtopic.php?t=1045)
|
||||
* ⭐ **[Kinozal](https://kinozal.tv/)** - Movies / TV / 4K / 1080p
|
||||
* ⭐ **[Kinozal](https://kinozal.tv/)** - Movies / TV / 4K / 1080p / Signup Required
|
||||
* ⭐ **[EZTV](https://eztvx.to/)** - TV / Anime
|
||||
* ⭐ **[Video Torrent CSE](https://cse.google.com/cse?cx=006516753008110874046:gaoebxgop7j)**
|
||||
* [RGShows](https://www.rgshows.me/torrent/) - Multi-Site Search
|
||||
|
|
@ -843,7 +847,7 @@
|
|||
|
||||
# ► Subtitles
|
||||
|
||||
* 🌐 **[elSubtitle](https://www.elsubtitle.com/)**, [SubConverter](https://subconverter.com/) or [Subtitle Tools](https://subtitletools.com/) - Subtitle Tools
|
||||
* 🌐 **[elSubtitle](https://www.elsubtitle.com/)**, [SubConverter](https://subconverter.com/), [Subtitle One](https://subtitleone.cc/) or [Subtitle Tools](https://subtitletools.com/) - Subtitle Tools
|
||||
* ⭐ **[Substital](https://substital.com/)** or [Movie-Subtitles](https://github.com/gignupg/Movie-Subtitles) - External Subtitle Extensions
|
||||
* [DST](https://www.syedgakbar.com/projects/dst), [Aegisub](https://github.com/arch1t3cht/Aegisub/releases), [Subtitle Workshop](https://www.uruworks.net/), [SubtitleEdit](https://www.nikse.dk/subtitleedit), [Jubler Subtitle](https://www.jubler.org/) or [Subtitld](https://subtitld.org/) - Subtitle Editor
|
||||
* [Penguin](https://github.com/carsonip/Penguin-Subtitle-Player) - External Subs Players
|
||||
|
|
@ -943,6 +947,7 @@
|
|||
* [SuperEmbed](https://www.superembed.stream/) - Movies / TV / API / 1080p
|
||||
* [2embed](https://www.2embed.cc/) - Movies / TV / API / 1080p
|
||||
* [VidLink](https://vidlink.pro/) - Movies / TV / API / 1080p
|
||||
* [CineScrape](https://cinescrape.com/) - Movies / TV / Anime / API / 4K / 1080p / [Discord](https://discord.gg/XbDBBmh5FY)
|
||||
* [VidSrc.me](https://vidsrc.me/) - Movies / TV / Anime / API / 1080p
|
||||
* [moviee](https://moviee.tv/api) - Movies / TV / 1080p
|
||||
* [WHVX](https://whvx.net/) - Movies / TV / Anime / API / 4K / 1080p
|
||||
|
|
|
|||
11
package.json
11
package.json
|
|
@ -30,24 +30,24 @@
|
|||
"feed": "^4.2.2",
|
||||
"itty-fetcher": "^0.9.4",
|
||||
"nitro-cors": "^0.7.1",
|
||||
"nitropack": "latest",
|
||||
"nitropack": "^2.9.7",
|
||||
"nprogress": "^0.2.0",
|
||||
"pathe": "^1.1.2",
|
||||
"unocss": "^0.58.9",
|
||||
"vitepress": "^1.3.4",
|
||||
"vue": "^3.4.38",
|
||||
"vitepress": "^1.4.1",
|
||||
"vue": "^3.5.12",
|
||||
"x-satori": "^0.1.5",
|
||||
"zod": "^3.23.8"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@biomejs/biome": "^1.8.3",
|
||||
"@biomejs/biome": "^1.9.3",
|
||||
"@ianvs/prettier-plugin-sort-imports": "^4.3.1",
|
||||
"@iconify-json/carbon": "^1.1.37",
|
||||
"@iconify-json/heroicons-solid": "^1.1.12",
|
||||
"@iconify-json/lucide": "^1.1.207",
|
||||
"@iconify-json/mdi": "^1.1.68",
|
||||
"@iconify-json/twemoji": "^1.1.16",
|
||||
"@taskylizard/biome-config": "^1.0.1",
|
||||
"@taskylizard/biome-config": "^1.0.4",
|
||||
"@types/node": "^20.15.0",
|
||||
"@types/nprogress": "^0.2.3",
|
||||
"prettier": "^3.3.3",
|
||||
|
|
@ -56,6 +56,7 @@
|
|||
"sass": "^1.77.8",
|
||||
"stylelint": "^16.9.0",
|
||||
"stylelint-config-standard-scss": "^13.1.0",
|
||||
"typescript": "^5.6.3",
|
||||
"unplugin-auto-import": "^0.18.2",
|
||||
"vite-plugin-optimize-exclude": "^0.0.1",
|
||||
"vite-plugin-terminal": "^1.2.0",
|
||||
|
|
|
|||
3116
pnpm-lock.yaml
generated
3116
pnpm-lock.yaml
generated
File diff suppressed because it is too large
Load diff
Loading…
Add table
Add a link
Reference in a new issue