mirror of
https://github.com/fmhy/edit.git
synced 2026-01-17 01:12:02 +11:00
Merge branch 'main' into scroll
This commit is contained in:
commit
8d9df16060
37 changed files with 3114 additions and 2475 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.`
|
||||
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',
|
||||
|
|
|
|||
|
|
@ -131,7 +131,6 @@ export const socialLinks: DefaultTheme.SocialLink[] = [
|
|||
|
||||
export const nav: DefaultTheme.NavItem[] = [
|
||||
{ text: '🔖 Glossary', link: 'https://rentry.org/The-Piracy-Glossary' },
|
||||
{ text: '📑 Guides', link: 'https://rentry.co/fmhy-guides' },
|
||||
{
|
||||
text: '💾 Backups',
|
||||
link: 'https://github.com/fmhy/FMHY/wiki/Backups'
|
||||
|
|
@ -143,13 +142,15 @@ export const nav: DefaultTheme.NavItem[] = [
|
|||
{ text: '🌐 Search', link: '/posts/search' },
|
||||
{ text: '🏞 Wallpapers', link: '/other/wallpapers' },
|
||||
{ text: '📋 snowbin', link: 'https://pastes.fmhy.net' },
|
||||
{ text: '🔍 SearXNG', link: 'https://searx.fmhy.net/' },
|
||||
{ text: '🔍 Whoogle', link: 'https://whoogle.fmhy.net/' },
|
||||
{
|
||||
text: '🔗 Bookmarks',
|
||||
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,16 +106,14 @@
|
|||
* 🌐 **[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
|
||||
* ⭐ **[Security / Antivirus Multireddit](https://www.reddit.com/user/goretsky/m/security/)** - Reddit Communities
|
||||
* [BleepingComputer Forums](https://www.bleepingcomputer.com/forums/f/22/virus-trojan-spyware-and-malware-removal-help/), [Malwarebytes Forums](https://forums.malwarebytes.com/forum/7-windows-malware-removal-help-support/) or [Sysnative Forums](https://www.sysnative.com/forums/forums/security-arena.66/) - Malware Removal Forums / [Note](https://pastebin.com/0mrmPXgz)
|
||||
* [ESET](https://rentry.co/FMHYBase64#eset) - Antivirus
|
||||
* [Dangerzone](https://dangerzone.rocks/) - Convert dangerous PDFs to safe PDFs / [GitHub](https://github.com/freedomofpress/dangerzone)
|
||||
* [Dangerzone](https://dangerzone.rocks/) - Convert potentially malicious files to safe PDFs / [GitHub](https://github.com/freedomofpress/dangerzone)
|
||||
* [ANY.RUN](https://any.run/), [Triage](https://tria.ge/) or [Cuckoo](https://cuckoo.cert.ee/) - Online Sandboxes
|
||||
* [PE-sieve](https://github.com/hasherezade/pe-sieve) - Process Scanner
|
||||
* [No More Ransom](https://www.nomoreransom.org/en/decryption-tools.html) - Ransomware Decryption Tools
|
||||
* [ID Ransomware](https://id-ransomware.malwarehunterteam.com/) - Ransomware Identification Tool
|
||||
* [ConfigureDefender](https://github.com/AndyFul/ConfigureDefender) - Configure Windows Defender Settings
|
||||
|
|
@ -155,7 +153,7 @@
|
|||
* [Big Ass Data Broker Opt-Out List](https://github.com/yaelwrites/Big-Ass-Data-Broker-Opt-Out-List) - List of Data Broker Opt-Out Resources
|
||||
* [Surfer](https://github.com/CEREBRUS-MAXIMUS/Surfer-Data) - Multi-platform User Data Exporter
|
||||
* [F-Secure Identity Theft Checker](https://www.f-secure.com/en/identity-theft-checker) - Identity Theft Check
|
||||
* [PrivNote](https://privnote.com/), [SafeNote](https://safenote.co/), [Burn.Link](https://burn.link/), [ThisLinkWillSelfDestruct](https://thislinkwillselfdestruct.com/), [s.cr](https://s.cr/) or [OneTimeSecret](https://onetimesecret.com/) - Send Self-Destructing Messages
|
||||
* [PrivNote](https://privnote.com/), [SafeNote](https://safenote.co/), [Burn.Link](https://burn.link/), [ThisLinkWillSelfDestruct](https://thislinkwillselfdestruct.com/), [s.cr](https://s.cr/), [burnmynote](https://www.burnmynote.link/) or [OneTimeSecret](https://onetimesecret.com/) - Send Self-Destructing Messages
|
||||
* [chausies encrypt](https://chausies.xyz/encrypt), [Steg Cloak](https://stegcloak.surge.sh/) or [spam mimic](https://www.spammimic.com/index.cgi) - Send Encrypted Text
|
||||
* [USBKill](https://github.com/hephaest0s/usbkill) - Anti-Forensic USB Killswitch
|
||||
* [HiddenVM](https://github.com/aforensics/HiddenVM) - Run an Oracle VM on TailsOS
|
||||
|
|
@ -165,6 +163,7 @@
|
|||
* [image-scrubber](https://everestpipkin.github.io/image-scrubber) - Anonymize Protest Photos / [GitHub](https://github.com/everestpipkin/image-scrubber)
|
||||
* [Mobile Verification Toolkit](https://www.privacyguides.org/en/device-integrity/) - Test for Potential Compromises on Android / iOS
|
||||
* [GoFOSS](https://gofoss.net/) - Why You Should Use FOSS Alternatives
|
||||
* [SurveillanceWatch](https://www.surveillancewatch.io/) - Surveillance Company Connections
|
||||
* [If An Agent Knocks](https://docs.google.com/document/d/176Yds1p63Q3iaKilw0luChMzlJhODdiPvF2I4g9eIXo/) - Best Practices if Contacted by Agents
|
||||
|
||||
***
|
||||
|
|
@ -184,6 +183,7 @@
|
|||
* [AvoidTheHack](https://avoidthehack.com/) - Educational Blog
|
||||
* [Hostux](https://hostux.network/) - Privacy Tools
|
||||
* [Privacy Settings](https://github.com/StellarSand/privacy-settings) - Privacy Setting Guides
|
||||
* [Privacy Not Included](https://foundation.mozilla.org/privacynotincluded/) - Product Privacy Ratings
|
||||
* [EncryptedList](https://encryptedlist.xyz/) - List of Encrypted Services/Apps
|
||||
* [ProductivePrivacy](https://productiveprivacy.com/) - Privacy-Focused Productivity Apps
|
||||
|
||||
|
|
@ -227,7 +227,7 @@
|
|||
* ⭐ **[PrivacySpy](https://privacyspy.org/)** or [Terms of Service; Didn't Read](https://tosdr.org/) - Sites Privacy Policies
|
||||
* ⭐ **[JustGetMyData](https://justgetmydata.com/)** - Links to Obtain Your Data from Websites
|
||||
* ⭐ **[Cryptomator](https://cryptomator.org/)**, [Boxcryptor](https://www.boxcryptor.com/en/) or [Tahoe-LAFS](https://tahoe-lafs.org/trac/tahoe-lafs) - Cloud File Encryption
|
||||
* [FirefoxMonitor](https://monitor.firefox.com/) - Data Breach Check
|
||||
* [FirefoxMonitor](https://monitor.mozilla.org/) - Data Breach Check
|
||||
* [BreachDirectory](https://breachdirectory.org), [Snusbase](https://snusbase.com/), [Leak Lookup](https://leak-lookup.com/), [Trufflehog](https://trufflesecurity.com/) or [leakpeek](https://leakpeek.com/) - Data Breach Search Engines
|
||||
* [JustDeleteMe](https://justdeleteme.xyz/) - Find / Terminate Old Accounts
|
||||
* [OpenPhish](https://openphish.com/), [Netcraft Report](https://report.netcraft.com/report), [isitPhishing](https://isitphishing.org/), [PhishStats](https://phishstats.info/) or [PhishTank](https://phishtank.org/) - Report Phishing Sites
|
||||
|
|
@ -237,7 +237,6 @@
|
|||
* [ssh-chat](https://github.com/shazow/ssh-chat) or [Devzat](https://github.com/quackduck/devzat) - SSH Chat / [Info](https://shazow.net/posts/ssh-how-does-it-even/)
|
||||
* [GPGTools](https://gpgtools.org/) - Encrypt & Sign Data / Communications
|
||||
* [PeerTube](https://joinpeertube.org/) - Decentralized Video Hosting / [Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/social-media#wiki_.25B7_peertube_tools)
|
||||
* [Undiscord](https://github.com/VendorAttestation/undiscord-reborn) - Delete Discord Messages / [Warning](https://i.ibb.co/pdg4hRr/0b0d78219f05.png)
|
||||
* [Redact](https://redact.dev/) - Delete Twitter / Reddit Data
|
||||
* [delete-likes-from-twitter](https://gist.github.com/aymericbeaumet/d1d6799a1b765c3c8bc0b675b1a1547d) - Delete Twitter Likes / Favorites
|
||||
* [PowerDeleteSuite](https://github.com/j0be/PowerDeleteSuite) - Reddit Auto Post Delete
|
||||
|
|
@ -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)
|
||||
|
|
@ -300,10 +299,8 @@
|
|||
* ⭐ **[Proton Mail](https://proton.me/mail)** - Encrypted Email / [.onion](https://protonmailrmez3lotccipshtkleegetolb73fuirgj7r4o4vfu7ozyd.onion/) / [GitHub](https://github.com/ProtonMail/WebClients)
|
||||
* [Tuta](https://tuta.com/) - Encrypted Email
|
||||
* [Disroot](https://disroot.org/en/services/email) - Encrypted Email
|
||||
* [lil mail server](https://uq.ci/) - Simple Privacy-Focused Email
|
||||
* [EmailPrivacyTester](https://www.emailprivacytester.com/) - Email Privacy Test
|
||||
* [SecLists](https://seclists.org/) - Security Mailing List Archive
|
||||
* [Have I Been Sold?](https://haveibeensold.app/) - Monitor Third Party Email Sales
|
||||
|
||||
***
|
||||
|
||||
|
|
@ -312,7 +309,7 @@
|
|||
* ⭐ **[ClearURLs](https://docs.clearurls.xyz)** - Remove Tracking Elements from URLs / [Features](https://gitlab.com/ClearURLs/ClearUrls#features), [2](https://i.ibb.co/4JsQwP5/sqzfmLD.png) / Can Break Sites
|
||||
* ⭐ **[CanvasBlocker](https://github.com/kkapsner/CanvasBlocker)** - Prevent Canvas Fingerprinting
|
||||
* ⭐ **[Creepjs](https://abrahamjuliot.github.io/creepjs)**, [WEBKAY](https://webkay.robinlinus.com/), [BrowserRecon](https://www.computec.ch/projekte/browserrecon/?s=scan), [Device Info](https://www.deviceinfo.me/), [CoverYourTracks](https://firstpartysimulator.org/) / [2](https://coveryourtracks.eff.org/) or [PersonalData](https://personaldata.info/) - Tracking / Fingerprinting Tests
|
||||
* [dataskydd](https://webbkoll.dataskydd.net/) or [Blacklight](https://themarkup.org/blacklight) - Site Tracking Info
|
||||
* [dataskydd](https://webbkoll.5july.net/) or [Blacklight](https://themarkup.org/blacklight) - Site Tracking Info
|
||||
* [Data Removal Guide](https://inteltechniques.com/workbook.html) - Remove Online Data
|
||||
* [GameIndustry](https://gameindustry.eu/en/) - Block Trackers in Desktop / Mobile Games
|
||||
* [BrowserLeaks](https://browserleaks.com/), [Do I leak?](https://www.top10vpn.com/tools/do-i-leak/) or [IPLeak.net](https://ipleak.net) - IP Leak Tests
|
||||
|
|
@ -326,46 +323,13 @@
|
|||
|
||||
***
|
||||
|
||||
## ▷ Frontends
|
||||
|
||||
* 🌐 **[Alt Frontends](https://github.com/mendel5/alternative-front-ends)** / [2](https://rentry.co/8kqrrn), [Farside](https://farside.link/), [2](https://cf.farside.link/) or [alternative-frontends](https://github.com/digitalblossom/alternative-frontends) - Frontend Indexes
|
||||
* ↪️ **[YouTube Frontends](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/social-media#wiki_.25B7_players_.2F_frontends)**
|
||||
* ⭐ **[LibRedirect](https://libredirect.github.io/)** / [GitHub](https://github.com/libredirect/libredirect), [Predirect](https://github.com/libreom/predirect) or [Proxy Redirect](https://openuserjs.org/scripts/sjehuda/Proxy_Redirect) - Frontend Redirect Extensions
|
||||
* [Numblr](https://github.com/heyLu/numblr) - Self-Hosted Frontend Redirect
|
||||
* [Photon](https://photon-reddit.com/), [reditr](https://reditr.com/), [RDX](https://rdx.overdevs.com/) or [redlib](https://redlib.fmhy.net/) / [GitHub](https://github.com/redlib-org/redlib) - Reddit Frontends
|
||||
* [Invidious Redirect](https://addons.mozilla.org/en-US/firefox/addon/hooktube-redirect/?src=search) - YouTube Frontend Redirect
|
||||
* [twstalker](https://twstalker.com/), [X Cancelled](https://xcancel.com/) or [nitter](https://nitter.poast.org/) / [Instances](https://status.d420.de/), [2](https://github.com/zedeus/nitter/wiki/Instances) - Twitter Frontends
|
||||
* [Proxigram](https://codeberg.org/ThePenguinDev/Proxigram) or [Imginn](https://imginn.com) - Instagram Frontends
|
||||
* [Proxitok](https://github.com/pablouser1/ProxiTok) or [OffTikTok](https://www.offtiktok.com/) - TikTok Frontends
|
||||
* [Tumlook](https://www.tumlook.com/), [Tumgik](https://www.tumgik.com/) or [PriviBlur](https://github.com/syeopite/priviblur) - Tumblr Frontends
|
||||
* [BreezeWiki](https://breezewiki.com/) - Fandom Frontend / [Mirrors](https://pastebin.com/DmbrhEDD)
|
||||
* [MikuInvidious](https://0xacab.org/johnxina/mikuinvidious) - BiliBili Frontend
|
||||
* [SafeTwitch](https://codeberg.org/SafeTwitch/safetwitch) or [Twineo](https://codeberg.org/CloudyyUw/twineo) - Twitch Frontends
|
||||
* [Whoogle](https://benbusby.com/projects/whoogle-search/) - Google Search Frontend
|
||||
* [Lingva Translate](https://github.com/TheDavidDelta/lingva-translate) - Google Translate Frontend
|
||||
* [Scribe](https://sr.ht/~edwardloveall/Scribe/), [medium.rip](https://medium.rip/) or [LibMedium](https://libmedium.batsense.net/) - Medium Frontends
|
||||
* [Quetre](https://quetre.iket.me) - Quora Frontend / [GitHub](https://github.com/zyachel/quetre)
|
||||
* [Rimgo](https://codeberg.org/rimgo/rimgo) - Imgur Frontend / [Instances](https://codeberg.org/rimgo/instances)
|
||||
* [Binternet](https://github.com/Ahwxorg/Binternet) - Pinterest Frontend
|
||||
* [Pixivfe](https://codeberg.org/VnPower/pixivfe) - Pixiv Frontend
|
||||
* [Gothub](https://codeberg.org/gothub/gothub) - GitHub Frontend
|
||||
* [AnonymousOverflow](https://code.whatever.social) - StackOverflow Frontend
|
||||
* [Tent](https://codeberg.org/sun/Tent) - Bandcamp Frontend
|
||||
* [Dumb](https://codeberg.org/rramiachraf/dumb) or [Intellectual](https://intellectual.insprill.net/) - Genius Frontend
|
||||
* [Rural Dictionary](https://codeberg.org/zortazert/rural-dictionary) - Urban Dictionary Frontend
|
||||
* [BiblioReads](https://codeberg.org/nesaku/BiblioReads) - Goodreads Frontend
|
||||
* [LibreMDb](https://libremdb.iket.me) - IMDb Frontend
|
||||
* [Neuters](https://neuters.de/) - Reuters Frontend
|
||||
|
||||
***
|
||||
|
||||
## ▷ Search Engines
|
||||
|
||||
* 🌐 **[Search Engine Party](https://searchengine.party/)** - Privacy Search Engine Comparisons
|
||||
* 🌐 **[nixnet](https://searx.nixnet.services/)**, [searx.space](https://searx.space/) or [Searx Index](https://www.startpage.com/sp/search?q=%22powered%20by%20Searx%22) - Searx Instance Indexes
|
||||
* ⭐ **[searx.fmhy](https://searx.fmhy.net/)**, [Fuck Off Google](https://search.fuckoffgoogle.net/), [searx](https://searx.be/), [tiekoetter](https://searx.tiekoetter.com/) or [monocles](https://monocles.de/) - Searx Instance / [GitHub](https://github.com/searxng/searxng)
|
||||
* ⭐ **[Fuck Off Google](https://search.fuckoffgoogle.net/)**, [searx](https://searx.be/), [tiekoetter](https://searx.tiekoetter.com/) or [monocles](https://monocles.de/) - Searx Instance / [GitHub](https://github.com/searxng/searxng)
|
||||
* ⭐ **[Araa](https://araa.extravi.dev/)** - Uses Google / DDG / Qwant
|
||||
* [whoogle.fmhy](https://whoogle.fmhy.net/) - Whoogle Instance / Uses Google
|
||||
* [whoogle](https://github.com/benbusby/whoogle-search?tab=readme-ov-file#public-instances) - Whoogle Instance / Uses Google
|
||||
* [DuckDuckGo](https://start.duckduckgo.com/) - [Shortcuts](https://duckduckgo.com/bangs), [2](https://github.com/dmlls/yang) / Uses Bing
|
||||
* [LibreY](https://github.com/Ahwxorg/librey) or [LibreX](https://github.com/hnhx/librex)
|
||||
* [4get](https://4get.ca/)
|
||||
|
|
@ -379,7 +343,7 @@
|
|||
* [ekoru](https://ekoru.org/) - Uses Bing
|
||||
* [Gibiru](https://gibiru.com/) - Uses Google
|
||||
* [SearXNG](https://docs.searxng.org/) - Self-Hosted
|
||||
* [Whoogle](https://pypi.org/project/whoogle-search/) - Self-Hosted
|
||||
* [Whoogle](https://pypi.org/project/whoogle-search/) - Self-Hosted / [Frontend](https://benbusby.com/projects/whoogle-search/)
|
||||
|
||||
***
|
||||
|
||||
|
|
@ -394,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)
|
||||
|
|
@ -430,7 +394,7 @@
|
|||
|
||||
* ⭐ **[SecureDNSClient](https://github.com/msasanmh/SecureDNSClient)** - DNS Proxy GUI / [Guide](https://rentry.co/SecureDNSClient)
|
||||
* [Psiphon](https://psiphon.ca/) - Free Proxy / VPN
|
||||
* [Lantern](https://lantern.io/) - Free Proxy / Low Limits
|
||||
* [Lantern](https://lantern.io/) - Free Proxy / Slowed Past 250mb
|
||||
* [No Thought is a Crime](https://ntc.party/) - Internet Censorship Discussion
|
||||
* [GoodbyeDPI](https://github.com/ValdikSS/GoodbyeDPI/) / [GUI](https://github.com/mguludag/GUI-for-GoodbyeDPI), [PowerTunnel](https://github.com/krlvm/PowerTunnel), [zapret](https://github.com/bol-van/zapret) or [Green Tunnel](https://github.com/SadeghHayeri/GreenTunnel) - DPI Circumvention Local Proxies
|
||||
* [Hola Proxy](https://github.com/Snawoot/hola-proxy) - Alternative Client for Hola Free Proxy Service
|
||||
|
|
@ -444,7 +408,7 @@
|
|||
* [wireproxy](https://github.com/pufferffish/wireproxy) - Use VPNs as proxies
|
||||
* [Hiddify](https://hiddify.com/) - Auto-Proxy Client
|
||||
* [NginxProxyManager](https://nginxproxymanager.com) - Self-Hosted Proxy Server / [GitHub](https://github.com/NginxProxyManager/nginx-proxy-manager)
|
||||
* [Shadowsocks](https://shadowsocks.org/) - Proxy Client and Self-Hosted Server / [Free Servers](https://github.com/ruanfei/cross), [2](https://github.com/vxiaov/free_proxies), [3](https://shadowmere.akiel.dev/) / [Client](https://github.com/shadowsocks/shadowsocks-windows)
|
||||
* [Shadowsocks](https://shadowsocks.org/) - Proxy Client and Self-Hosted Server / [Free Servers](https://github.com/ruanfei/cross), [2](https://github.com/vxiaov/free_proxies), [3](https://shadowmere.xyz/) / [Client](https://github.com/shadowsocks/shadowsocks-windows)
|
||||
* [Hysteria](https://v2.hysteria.network/) - Proxy Client and Self-Hosted Server
|
||||
* [Xray-Core](https://github.com/XTLS/Xray-core) - Proxy Client and Self-Hosted Server / [Telegram](https://t.me/projectXray), [2](https://t.me/projectVless)
|
||||
* [Ultraviolet](https://docs.titaniumnetwork.org/proxies/ultraviolet) or [Metallic](https://github.com/cognetwork-dev/Metallic) - Self-Hosted Proxy Websites
|
||||
|
|
@ -461,7 +425,6 @@
|
|||
* [SSLSecureProxy](https://www.sslsecureproxy.com/)
|
||||
* [HideIP](https://www.hideip.co/)
|
||||
* [4EverProxy](https://www.4everproxy.com/)
|
||||
* [KProxy](https://www.kproxy.com/)
|
||||
* [Free Proxy](https://freeproxy.win/)
|
||||
* [Blockaway](https://www.blockaway.net/)
|
||||
* [Free Proxy Servers](https://www.free-proxy-servers.com/)
|
||||
|
|
@ -469,6 +432,7 @@
|
|||
* [CroxyProxy](https://www.croxyproxy.com/)
|
||||
* [ProxyPx](https://croxyproxy.best/)
|
||||
* [ProxySite](https://www.proxysite.cc/)
|
||||
* [KProxy](https://www.kproxy.com/)
|
||||
* [ProxyOf2](https://proxyof2.com/)
|
||||
* [Proxy-URLs](https://www.proxy-urls.com/)
|
||||
* [Sitenable](https://freeproxy.io/)
|
||||
|
|
|
|||
77
docs/ai.md
77
docs/ai.md
|
|
@ -8,31 +8,29 @@
|
|||
|
||||
## ▷ Online Chatbots
|
||||
|
||||
* 🌐 **[Awesome Free ChatGPT](https://github.com/LiLittleCat/awesome-free-chatgpt/blob/main/README_en.md)** - Online GPT Indexes
|
||||
* 🌐 **[Awesome Free ChatGPT](https://github.com/LiLittleCat/awesome-free-chatgpt)** - Online GPT Indexes
|
||||
* ⭐ **[ChatGPT](https://chatgpt.com/)** - GPT-4o Chatbot / [Discord](https://discord.com/invite/openai)
|
||||
* ⭐ **[wrtn](https://wrtn.ai/)** - GPT-4 Chatbot / [Android](https://play.google.com/store/apps/details?id=com.wrtn.app) / [iOS](https://apps.apple.com/us/app/%EB%A4%BC%ED%8A%BC-%EB%AA%A8%EB%91%90%EB%A5%BC-%EC%9C%84%ED%95%9C-ai-%ED%8F%AC%ED%84%B8/id6448556170) / Ask for English
|
||||
* ⭐ **[Claude](https://claude.ai/)** - Anthropic's Chatbot / Phone # Required
|
||||
* ⭐ **[Not Diamond](https://chat.notdiamond.ai/)** - Multiple Chatbots
|
||||
* ⭐ **[LMSYS Chat](https://lmarena.ai/)** - Chat and Compare Multiple Chatbots
|
||||
* ⭐ **[ChatPDF](https://www.chatpdf.com/)** or [Ask Your PDF](https://askyourpdf.com/) - Turn Books into Chatbots
|
||||
* [TypeSet](https://typeset.io/) or [Elicit](https://elicit.com/) - Research Paper Chatbots
|
||||
* [Gemini](https://gemini.google.com/), [2](https://aistudio.google.com/app/prompts/new_chat) or [Gemma](https://github.com/google/gemma.cpp), [2](https://ai.google.dev/gemma/) - Google's Chatbot
|
||||
* [DuckDuckGo AI](https://duck.ai/) - Multiple Chatbots
|
||||
* [LLM Playground](https://llmplayground.net/) - Multiple Chatbots / 1000 word limit / [Discord](https://discord.com/invite/q55gsH8z5F)
|
||||
* [OAICHAT](https://chat.oaichat.cc/), [2](https://chat.sorapi.dev/), [3](https://ffa.chat/) - GPT-4o / Multiple Chatbots
|
||||
* [GPT4o.so](https://gpt4o.so/app) - GPT-4o
|
||||
* [OAICHAT](https://chat.oaichat.cc/), [2](https://chat.sorapi.dev/), [3](https://ffa.chat/), [4](https://happyapi.org/) - GPT-4o / Multiple Chatbots
|
||||
* [sdk.vercel](https://sdk.vercel.ai/) - Multiple Chatbots
|
||||
* [Not Diamond](https://chat.notdiamond.ai/) - Multiple Chatbots
|
||||
* [Zhucn](https://zhucn.org/), [Schat.laigc](https://schat.laigc.cloudns.be/) or [SharedChat](https://sharedchat.fun/) - GPT Mirror Pools / [Guide](https://rentry.org/mirrorpools)
|
||||
* [Kelaode](https://kelaode.ai/) - Claude Mirror Pool / Set 8 Letter Password / [Guide](https://rentry.org/mirrorpools)
|
||||
* [LibreChat](https://librechat.ai/) - Multiple Chatbots / [Discord](https://discord.librechat.ai/)
|
||||
* [Mistral](https://chat.mistral.ai/chat) - Multiple Chatbots / Account Required
|
||||
* [Lite-GPT](https://lite.icoding.ink/) - Multiple Chatbots
|
||||
* [DuckDuckGo AI](https://duck.ai/) - Multiple Chatbots
|
||||
* [HuggingChat](https://huggingface.co/chat/) - Open-Source Chatbots
|
||||
* [infermatic](https://infermatic.ai/) - Multiple Chatbots / [Discord](https://discord.gg/9GUXmDx9GF)
|
||||
* [lollms-webui](https://github.com/ParisNeo/lollms-webui) - Multiple Chatbots
|
||||
* [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
|
||||
|
|
@ -41,23 +39,24 @@
|
|||
* [Pi](https://pi.ai/talk) - Inflection AI's Chatbot
|
||||
* [Reka Playground](https://chat.reka.ai/) - Reka's Chatbot
|
||||
* [Poe](https://poe.com/) - Multiple Chatbots / 150 Daily / [Discord](https://discord.com/invite/joinpoe)
|
||||
* [ChatGPTBox](https://github.com/josStorer/chatGPTBox), [KeepChatGPT](https://github.com/xcanwin/KeepChatGPT/blob/main/docs/README_EN.md) or [Merlin](https://www.getmerlin.in/) - Extensions
|
||||
* [DAnswer](https://docs.danswer.dev/) or [DocsGPT](https://docsgpt.arc53.com/) - Turn Documents into Chatbots
|
||||
* [GPT4o.so](https://gpt4o.so/app) - GPT-4o
|
||||
* [PrivateGPT](https://docs.privategpt.dev/), [NotebookLM](https://notebooklm.google/), [Raven](https://www.ravenotes.com/), [DAnswer](https://docs.danswer.dev/) or [DocsGPT](https://app.docsgpt.cloud/) - Document Chatbots / Note-Taking
|
||||
|
||||
***
|
||||
|
||||
## ▷ AI Search Engines
|
||||
|
||||
* ⭐ **[Microsoft Copilot](https://copilot.microsoft.com)** - GPT-4 Powered Search / [SydneyQT Jailbreak](https://github.com/juzeon/SydneyQt)
|
||||
* ⭐ **[wrtn](https://wrtn.ai/)** - GPT-4 Chatbot / [Android](https://play.google.com/store/apps/details?id=com.wrtn.app) / [iOS](https://apps.apple.com/us/app/%EB%A4%BC%ED%8A%BC-%EB%AA%A8%EB%91%90%EB%A5%BC-%EC%9C%84%ED%95%9C-ai-%ED%8F%AC%ED%84%B8/id6448556170) / Ask for English
|
||||
* ⭐ **[Microsoft Copilot](https://copilot.microsoft.com)** - GPT-4o Powered Search / [SydneyQT Jailbreak](https://github.com/juzeon/SydneyQt)
|
||||
* ⭐ **[Perplexity](https://www.perplexity.ai/)** - GPT-4o Powered Search / [Open Source Models](https://labs.perplexity.ai/) / [Enhancements](https://cplx.vercel.app/)
|
||||
* ⭐ **[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)
|
||||
|
|
@ -70,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)
|
||||
|
|
@ -88,7 +88,7 @@
|
|||
|
||||
## ▷ Roleplaying Chatbots
|
||||
|
||||
* 🌐 **[Ayumi LLM](http://ayumi.m8geil.de/ayumi_bench_v3_results.html)** or [BestERP](https://besterp.ai/) - Roleplaying LLM Lists
|
||||
* 🌐 **[BestERP](https://besterp.ai/)** - Roleplaying LLM Lists
|
||||
* 🌐 **[Img-Resources](https://rentry.org/lmg-resources)** - LLM Character Resources / [Templates](https://rentry.org/lmg_template)
|
||||
* ⭐ **[PygmalionAI](https://discord.com/invite/pygmalionai)** - Self-Hosted Roleplaying Models with Resources / [Resources](https://rentry.co/PygmalionLinks)
|
||||
* ⭐ **[Call Annie](https://callannie.ai/)** - GPT-3.5 Chatbot with Real-Time Voice and Video / [Discord](https://discord.gg/Rfbzet5R3v)
|
||||
|
|
@ -100,10 +100,11 @@
|
|||
* [KoboldAI](https://github.com/henk717/KoboldAI) - GUI for Roleplaying Chatbots / [Web App](https://lite.koboldai.net/)
|
||||
* [GPT Call](https://gptcall.net/) - Roleplaying Chatbots / [Discord](https://discord.gg/88fQT5Bgfe)
|
||||
* [Dreamshow](https://dreamshow.ai/) - Roleplaying Chatbots
|
||||
* [Moescape](https://moescape.ai/) - Roleplaying Chatbot
|
||||
* [4thWall AI](https://beta.4wall.ai/) - Roleplaying Chatbots
|
||||
* [TavernAI](https://tavernai.net/) - Roleplaying / Adventure Chatbot
|
||||
* [AI Dungeon](https://play.aidungeon.io/main/landing) - Roleplaying / Adventure Chatbot
|
||||
* [Faraday](https://faraday.dev/) - Self-Hosted Roleplaying Chatbot
|
||||
* [Faraday](https://backyard.ai/) - Self-Hosted Roleplaying Chatbot
|
||||
* [Shapes.ai](https://shapes.inc/) - Discord Roleplaying Bot
|
||||
* [Broken Bear](https://www.brokenbear.com/) - Vent to AI Bear
|
||||
* [Kajiwoto](https://kajiwoto.ai/), [Miku](https://docs.miku.gg/) / [Discord](https://discord.gg/3XPdpUdGgV) or [Agnai](https://agnai.chat/) - Chatbot Builders
|
||||
|
|
@ -116,25 +117,25 @@
|
|||
* 🌐 **[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/codewhisperer/) - Coding AI
|
||||
* [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://about.sourcegraph.com/cody) - Coding AI
|
||||
* [OpenDevin](https://github.com/OpenDevin/OpenDevin) - Coding AI
|
||||
* [Cody](https://sourcegraph.com/cody) - Coding AI
|
||||
* [OpenDevin](https://github.com/All-Hands-AI/OpenHands) - Coding AI
|
||||
* [continue](https://continue.dev/) - Coding AI
|
||||
* [Bito AI](https://bito.ai/) - Coding AI
|
||||
* [Claude Dev](https://github.com/saoudrizwan/claude-dev) - Coding AI
|
||||
* [CodiumAI](https://www.codium.ai/) - Coding AI
|
||||
* [CodiumAI](https://www.qodo.ai/) - Coding AI
|
||||
* [Blackbox](https://www.blackbox.ai/) - Coding AI
|
||||
* [Codel](https://github.com/semanser/codel) - Coding AI
|
||||
* [DoWhile](https://chat.collectivai.com/) - Coding AI
|
||||
* [DoWhile](https://chat.dowhile.ai/) - Coding AI
|
||||
* [Denigma](https://denigma.app/#demo) - Coding AI
|
||||
* [GPT Engineer](https://github.com/AntonOsika/gpt-engineer) - Coding AI
|
||||
* [GPT Engineer](https://github.com/gpt-engineer-org/gpt-engineer) - Coding AI
|
||||
* [Aider](https://aider.chat/) - Terminal Coding AI
|
||||
* [Codacy](https://www.codacy.com/) or [AI Code Review](https://ai-code-reviewer.com/) - Code Fixing AIs
|
||||
* [Open Interpreter](https://github.com/OpenInterpreter/open-interpreter) - Run Code Locally
|
||||
|
|
@ -151,8 +152,8 @@
|
|||
|
||||
* 🌐 **[Awesome ChatGPT](https://github.com/uhub/awesome-chatgpt)** - ChatGPT Resources
|
||||
* 🌐 **[Every ChatGPT GUI](https://github.com/billmei/every-chatgpt-gui)** - ChatGPT GUI Index
|
||||
* 🌐 **[cool-ai-stuff](https://cas.xyzbot.net)** - Comparison Overview of Free(mium) AI API Proxies
|
||||
* [PrivateGPT](https://docs.privategpt.dev/) - Offline Document Chatbots
|
||||
* 🌐 **[cool-ai-stuff](https://cas.zukijourney.com/)** - Comparison Overview of Free(mium) AI API Proxies
|
||||
* [ChatGPTBox](https://github.com/josStorer/chatGPTBox) or [KeepChatGPT](https://github.com/xcanwin/KeepChatGPT/blob/main/docs/README_EN.md) - Extensions
|
||||
* [TGPT](https://github.com/aandrew-me/tgpt) - ChatGPT TUIs
|
||||
* [LLM](https://github.com/simonw/llm) - ChatGPT CLI
|
||||
* [Msty](https://msty.app/) - Desktop App
|
||||
|
|
@ -178,10 +179,11 @@
|
|||
* ⭐ **[Prompt Engineering Guide](https://www.promptingguide.ai)** / [GitHub](https://github.com/dair-ai/Prompt-Engineering-Guide), [LearnPrompting](https://learnprompting.org/docs/intro), [OpenAI Guide](https://platform.openai.com/docs/guides/prompt-engineering), [Claude Guide](https://docs.anthropic.com/claude/docs/prompt-engineering) or [LearningPrompt](https://learningprompt.wiki/) - Prompting Guides
|
||||
* [ChatGPT System Prompt](https://github.com/LouisShark/chatgpt_system_prompt) - Prompt Directory
|
||||
* [500 Best Prompts](https://puzzle-jute-202.notion.site/500-Best-ChatGPT-Prompts-f5b4ad65deec4b6385316fdb8740af74) - Prompt Directory
|
||||
* [TheBigPromptLibrary](https://github.com/0xeb/TheBigPromptLibrary) - Prompt Directory
|
||||
* [ChatGPT-Prompts](https://github.com/yokoffing/ChatGPT-Prompts) - Prompt Directory
|
||||
* [Awesome Claude Prompts](https://github.com/langgptai/awesome-claude-prompts/) - Prompt Directory
|
||||
* [L1B3RT45](https://github.com/elder-plinius/L1B3RT45) - Jailbreak Prompts / [Discord](https://discord.gg/basi) / [Twitter](https://x.com/elder_plinius)
|
||||
* [promptfoo](https://github.com/typpo/promptfoo) or [PromptKnit](https://promptknit.com/) - Prompt Playgrounds
|
||||
* [promptfoo](https://github.com/promptfoo/promptfoo) or [PromptKnit](https://promptknit.com/) - Prompt Playgrounds
|
||||
* [Marketing 2099](https://sintralabs.notion.site/Marketing-2099-Ultimate-ChatGPT-Marketing-Prompts-To-Copy-Paste-200-tasks-fc22c9142d6a4a4286a3fe755be932e6) - ChatGPT Marketing Prompts
|
||||
* [Tensor Trust](https://tensortrust.ai/) or [Gandalf](https://gandalf.lakera.ai/) - Prompting Skill Games
|
||||
* [chat-gpt-games](https://github.com/AdmTal/chat-gpt-games) - Prompt Games
|
||||
|
|
@ -199,6 +201,7 @@
|
|||
* [YP for AI](https://www.ypforai.com) - AI Directory
|
||||
* [Awesome AI Tools](https://github.com/mahseema/awesome-ai-tools) - AI Directory
|
||||
* [It's Better With AI](https://itsbetterwithai.com/) - AI Directory
|
||||
* [GPT Demo](https://www.gptdemo.net/gpt/search?lg=en&cate=&keywords=&tags=free,&sort=popular) - AI Directory
|
||||
* [ArtificialStudio](https://www.artificialstudio.ai/tools) - Multi-Tool Browser AIs
|
||||
* [Google Labs](https://labs.google/) or [AI Test Kitchen](https://aitestkitchen.withgoogle.com/) - Google AI Experiments
|
||||
* [LLM Pricing](https://docs.google.com/spreadsheets/d/18GHPEBJzDbICmMStPVkNWA_hQHiWmLcqUdEJA1b4MJM/) - LLM Pricing Index
|
||||
|
|
@ -208,9 +211,11 @@
|
|||
## ▷ AI Benchmarks
|
||||
|
||||
* ⭐ **[LMSYS Arena](https://lmarena.ai/?leaderboard)** - Chatbot Leaderboards / Benchmarks
|
||||
* ⭐ **[LLM Leaderboard](https://huggingface.co/spaces/open-llm-leaderboard/open_llm_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
|
||||
* [The Fastest AI](https://thefastest.ai/) - Chatbot Benchmarks
|
||||
|
||||
|
|
@ -245,6 +250,7 @@
|
|||
* [Dream Machine](https://lumalabs.ai/dream-machine) - Video Generator
|
||||
* [text-to-video](https://text-to-video.vercel.app) - Video Generator
|
||||
* [LensGo](https://lensgo.ai/) - Video Generator
|
||||
* [Kling AI](https://klingai.com/) - Video Generator
|
||||
* [Pika Labs](https://www.pika.art/) - Video Generator
|
||||
* [Hailuo AI](https://hailuoai.com/video) - Video Generator / Use Translator / [Discord](https://discord.com/invite/hvvt8hAye6)
|
||||
* [Damo](https://huggingface.co/spaces/damo-vilab/modelscope-text-to-video-synthesis) - Video Generator
|
||||
|
|
@ -262,7 +268,7 @@
|
|||
* ⭐ **[Mage](https://www.mage.space/)** / Unlimited / [Discord](https://discord.com/invite/GT9bPgxyFP)
|
||||
* ⭐ **[Poe](https://poe.com/)** / 100 Daily / [Discord](https://discord.com/invite/joinpoe)
|
||||
* ⭐ **[Dezgo](https://dezgo.com/)** / Unlimited / [Discord](https://discord.com/invite/RQrGpUhPhx)
|
||||
* ⭐ **[Meta AI](https://imagine.meta.com/)** / Unlimited
|
||||
* ⭐ **[Meta AI](https://www.meta.ai/icebreakers/imagine/)** / Unlimited
|
||||
* ⭐ **[FastFLUX](https://fastflux.ai/)** - Unlimited
|
||||
* ⭐ **[Playground](https://playground.com/)** / 100 Daily
|
||||
* ⭐ **[Ideogram](https://ideogram.ai/)** / 100 Daily
|
||||
|
|
@ -271,13 +277,13 @@
|
|||
* ⭐ **[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
|
||||
* [Unstability.ai](https://www.unstability.ai/) / 52 Daily
|
||||
* [NVIDIA NIM](https://build.nvidia.com/) / 50 Daily
|
||||
* [SeaArt](https://www.seaart.ai/) / 40 Daily
|
||||
* [FLUXPro](https://fluxpro.art/) / 20 Every 6 Hours [Discord](https://discord.gg/YMmUAvtRva)
|
||||
* [OpenArt](https://openart.ai/) / 50 Daily / [Discord](https://discord.com/invite/yTMNvk5z97)
|
||||
* [StableDiffusionWeb](https://stablediffusionweb.com/) / 10 Daily
|
||||
* [AIGallery](https://aigallery.app/) / Unlimited
|
||||
|
|
@ -285,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)
|
||||
|
|
@ -293,8 +300,9 @@
|
|||
* [PixArt-alpha](https://huggingface.co/spaces/PixArt-alpha/PixArt-alpha) / Unlimited
|
||||
* [GetIMG.ai](https://getimg.ai/) / 100 Monthly / [Discord](https://discord.com/invite/5KsUXSzVwS)
|
||||
* [Adobe Firefly](https://firefly.adobe.com/) / 25 Monthly / [Discord](https://discord.com/invite/dJnsV5s8PZ) / Sign-Up Required
|
||||
* [FLUXPro](https://fluxpro.art/) / 50 Weekly / [Discord](https://discord.gg/YMmUAvtRva)
|
||||
* [AITurbo](https://app.aitubo.ai/) / 25 Daily / [Discord](https://discord.gg/qTu6YsRn7F)
|
||||
* [Yodayo](https://yodayo.com/) / 15 Daily
|
||||
* [Moescape](https://moescape.ai/) / 15 Daily
|
||||
* [Maze.guru](https://maze.guru/gallery) / 12 Daily
|
||||
* [PixAI](https://pixai.art/) / 10 Daily
|
||||
* [HotPot](https://hotpot.ai/)
|
||||
|
|
@ -340,14 +348,12 @@
|
|||
* [Stable Horde](https://stablehorde.net/) - Distributed Network of GPUs running Stable Diffusion / [Interface](https://aqualxx.github.io/stable-ui/), [2](https://tinybots.net/artbot), [3](https://artificial-art.eu/)
|
||||
* [NOP / WAS](https://colab.research.google.com/drive/1jUwJ0owjigpG-9m6AI_wEStwimisUE17) - AI Image Generation Colab
|
||||
* [image-mixer-demo](https://huggingface.co/spaces/lambdalabs/image-mixer-demo), [AITransformer](https://aitransformer.net/) - AI Image Transformers
|
||||
* [Inpaint Anything](https://github.com/geekyutao/Inpaint-Anything) or [Lama Cleaner](https://github.com/Sanster/lama-cleaner) - Image Fill / Item Removal
|
||||
* [Inpaint Anything](https://github.com/geekyutao/Inpaint-Anything) or [Lama Cleaner](https://github.com/Sanster/IOPaint) - Image Fill / Item Removal
|
||||
* [Unstable Diffusion](https://discord.com/invite/unstablediffusion) - AI Image Community
|
||||
* [/r/sdforall](https://www.reddit.com/r/sdforall/) - Stable Diffusion Subreddit
|
||||
* [TheAlly's Guide](https://civitai.com/models/22881/) - Stable Diffusion Guide
|
||||
* [StableDiffusion Cheatsheet](https://supagruen.github.io/StableDiffusion-CheatSheet/) - Stable Diffusion Cheatsheet
|
||||
* [Textard](https://rentry.org/textard) - Textual Inversion Guide
|
||||
* [drfar](https://rentry.org/drfar) - InPainting Guide
|
||||
* [AnimAnon](https://rentry.org/AnimAnon) - AI Animation Guide
|
||||
* [The Other](https://rentry.org/59xed3), [DummyLoRA](https://rentry.org/dummylora), [ezlora](https://rentry.org/ezlora), [Dreambooth](https://rentry.org/2chAI_LoRA_Dreambooth_guide_english) or [ora_train](https://rentry.org/lora_train) - SD LoRA Guides
|
||||
* [SafeTensorsGuide](https://rentry.org/safetensorsguide) - How to Convert .ckpt to .safetensors
|
||||
* [DummyControlNet](https://rentry.org/dummycontrolnet) - ControlNet Guide
|
||||
|
|
@ -385,11 +391,11 @@
|
|||
## ▷ Text to Speech
|
||||
|
||||
* 🌐 **[TTS Arena](https://huggingface.co/spaces/TTS-AGI/TTS-Arena)** - Text to Speech Voting / Leaderboards
|
||||
* ⭐ **[ElevenLabs](https://beta.elevenlabs.io/)** / [Discord](https://discord.com/invite/elevenlabs)
|
||||
* ⭐ **[Uberduck](https://uberduck.ai/)**
|
||||
* ⭐ **[WhisperSpeech](https://huggingface.co/spaces/collabora/WhisperSpeech)** - [Discord](https://discord.com/invite/FANw4rHD5E)
|
||||
* ⭐ **[Tortoise TTS](https://github.com/neonbjb/tortoise-tts)**
|
||||
* ⭐ **[Bark](https://huggingface.co/spaces/suno/bark)** - [GitHub](https://github.com/suno-ai/bark) / [Discord](https://discord.com/invite/J2B2vsjKuE)
|
||||
* [ElevenLabs](https://beta.elevenlabs.io/) / [Discord](https://discord.com/invite/elevenlabs)
|
||||
* [Balabolka](https://www.cross-plus-a.com/bportable.htm)
|
||||
* [ttsMP3](https://ttsmp3.com/)
|
||||
* [FakeYou](https://fakeyou.com/)
|
||||
|
|
@ -417,7 +423,7 @@
|
|||
|
||||
## ▷ Voice Change / Clone
|
||||
|
||||
* ⭐ **[Applio](https://github.com/IAHispano/Applio)** - Voice Cloning / [Discord](https://discord.com/invite/iahispano) / [Playground](https://applio.org/playground)
|
||||
* ⭐ **[Applio](https://github.com/IAHispano/Applio)** - Voice Cloning / [Discord](https://discord.com/invite/iahispano) / [Playground](https://applio.org/products/playground)
|
||||
* ⭐ **[weights.gg](https://www.weights.gg/)** / [Discord](https://discord.gg/aihub) or [Voice Models](https://voice-models.com/) - AI Voice Models and Guides
|
||||
* ⭐ **[RVC V2](https://github.com/RVC-Project/Retrieval-based-Voice-Conversion-WebUI/blob/main/docs/en/README.en.md)** - RVC V2 Voice Cloning (locally)
|
||||
* ⭐ **[voice-changer](https://github.com/w-okada/voice-changer)** - Real-Time Voice Changer (W-Okada) - [Guide](https://rentry.co/VoiceChangerGuide)
|
||||
|
|
@ -426,7 +432,6 @@
|
|||
* [Clownfish](https://clownfish-translator.com/voicechanger/) - Voice Changer
|
||||
* [Bark with Voice Clone](https://huggingface.co/spaces/kevinwang676/Bark-with-Voice-Cloning) - Voice Cloning
|
||||
* [RVC_HFv2](https://huggingface.co/spaces/r3gm/RVC_HFv2) - Voice Cloning
|
||||
* [RVC Docs](https://docs.aihub.wtf/) - RVC AI Documentation
|
||||
|
||||
***
|
||||
|
||||
|
|
|
|||
|
|
@ -9,16 +9,17 @@
|
|||
## ▷ Modded APKs
|
||||
|
||||
* ⭐ **[Mobilism](https://forum.mobilism.org/viewforum.php?f=398)** / [App](https://forum.mobilism.org/app/) / [User Ranks](https://rentry.co/mobilismranks), [2](https://pastebin.com/pZuuMxYm)
|
||||
* ⭐ **[4PDA](https://4pda.to/forum/)** - [App](https://github.com/slartus/4pdaClient-plus) / Use [translator](https://addons.mozilla.org/en-US/firefox/addon/traduzir-paginas-web/)
|
||||
* ⭐ **[PDALife](https://pdalife.com/)** / [App](https://pdalife.com/pdalife-app-android-a40597.html) / [Telegram](https://t.me/pdalife_official)
|
||||
* ⭐ **[4PDA](https://4pda.to/forum/)** - [App](https://github.com/slartus/4pdaClient-plus) / Use [translator](https://addons.mozilla.org/en-US/firefox/addon/traduzir-paginas-web/) / [Captcha Note](https://pastebin.com/NNh7e2HB), [2](https://doorsgeek.blogspot.com/2015/08/4pdaru-loginregister-captcha-tutorial.html)
|
||||
* ⭐ **[PlatinMods](https://platinmods.com/)** - Modded Games
|
||||
* ⭐ **[RockMods](https://www.rockmods.net/)** / [Telegram](https://t.me/RBMods)
|
||||
* ⭐ **[RockMods](https://www.rockmods.net/)** / [Telegram](https://t.me/RBMods)
|
||||
* [LiteAPKs](https://liteapks.com/) / [App](https://liteapks.com/app.html) / [Note](https://pastebin.com/3ebTvx0b)
|
||||
* [Modyolo](https://modyolo.com/) / [Note](https://pastebin.com/3ebTvx0b)
|
||||
* [Nsane Forums](https://nsaneforums.com/)
|
||||
* [PDALife](https://pdalife.com/) / [App](https://pdalife.com/pdalife-app-android-a40597.html) / [Telegram](https://t.me/pdalife_official)
|
||||
* [Sbenny](https://sbenny.com/)
|
||||
* [farsroid](https://www.farsroid.com/)
|
||||
* [RevDL](https://www.revdl.com/)
|
||||
* [APKSum](https://www.apksum.com/)
|
||||
* [AndroidRepublic](https://androidrepublic.org/)
|
||||
* [Androeed](https://androeed.store/), [2](https://androeed.ru/)
|
||||
* [AndroPalace](https://www.andropalace.org/) / [Telegram](https://telegram.me/officialandropalace)
|
||||
|
|
@ -26,7 +27,6 @@
|
|||
* [APKVision](https://apkvision.org/)
|
||||
* [A2Z APK](https://a2zapk.io/)
|
||||
* [HappyMod](https://happymod.com/)
|
||||
* [APK Home](https://apkhome.io/)
|
||||
* [APK4Free](https://apk4free.net/)
|
||||
* [Release APK](https://forum.release-apk.com/)
|
||||
* [ReXDL](https://rexdl.com/) / [Telegram](https://t.me/joinchat/AAAAAFVMhwX7IzS5hMc8OQ)
|
||||
|
|
@ -42,7 +42,6 @@
|
|||
* ⭐ **[APKCombo](https://apkcombo.com/)**
|
||||
* ⭐ **[Aurora Store](https://auroraoss.com/)** - Alt App Store / [GitLab](https://gitlab.com/AuroraOSS/AuroraStore)
|
||||
* [APKPure](https://apkpure.net/), [2](https://apkpure.com/)
|
||||
* [APKSum](https://www.apksum.com/)
|
||||
* [Play Search](https://playsearch.kaki87.net/) - Advanced Playstore Search
|
||||
* [Android Ultimate Collection](https://xdaforums.com/t/android-ultimate-collection-guides.4513231/)
|
||||
* [APKMonk](https://www.apkmonk.com/)
|
||||
|
|
@ -65,7 +64,7 @@
|
|||
* [IzzyOnDroid](https://android.izzysoft.de/applists.php) - FOSS Apps / [F-Droid](https://apt.izzysoft.de/fdroid/index.php)
|
||||
* [You Apps](https://you-apps.net/) - FOSS Apps / [GitHub](https://github.com/you-apps)
|
||||
* [FossDroidAndroid](https://t.me/FossDroidAndroid) - FOSS Apps / Telegram
|
||||
* [GrapheneOS Apps](https://github.com/GrapheneOS/Apps) - Work on Non-GrapheneOS Devices
|
||||
* [GrapheneOS Apps](https://github.com/GrapheneOS/AppStore) - Work on Non-GrapheneOS Devices
|
||||
* [Android Auto Apps Downloader](https://github.com/shmykelsa/aaad) - Android Vehicle Apps
|
||||
|
||||
***
|
||||
|
|
@ -119,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
|
||||
|
|
@ -150,7 +150,7 @@
|
|||
|
||||
* 🌐 **[Manufacturer Specific](https://rentry.org/ekrw4)** - Manufacturer Specific Mobile Tools
|
||||
* ↪️ **[Device Comparisons](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/misc#wiki_.25B7_electronics)**
|
||||
* ⭐ **[XDA](https://forum.xda-developers.com/)** - Android Discussion Forum
|
||||
* ⭐ **[XDA](https://xdaforums.com/)** - Android Discussion Forum
|
||||
* ⭐ **[ADBAppControl](https://adbappcontrol.com/en/)** or [Octi](https://github.com/d4rken-org/octi) - Android Device Managers
|
||||
* ⭐ **[Gadget Bridge](https://gadgetbridge.org/)** - Bluetooth Device Manager
|
||||
* ⭐ **[scrcpy](https://github.com/Genymobile/scrcpy)**, **[PlainApp](https://docs.plain.icu/)**, [anl](https://anl.ink/), [WebADB](https://app.webadb.com/) or [QtScrcpy](https://github.com/barry-ran/QtScrcpy) - Control Android via Desktop
|
||||
|
|
@ -165,7 +165,7 @@
|
|||
* [Swappa](https://swappa.com/imei) or [SickW](https://www.sickw.com/) - IMEI, MEID, ESN Checker
|
||||
* [Fix My Speakers](https://fixmyspeakers.com/) - Eject Water from Phone Speakers
|
||||
* [FlashDim](https://github.com/cyb3rko/flashdim) - Adjust Flashlight Brightness
|
||||
* [Fire Toolbox](https://forum.xda-developers.com/t/windows-tool-fire-toolbox-v12-0.3889604/) - Fire Tablet Tools
|
||||
* [Fire Toolbox](https://xdaforums.com/t/windows-tool-fire-toolbox-v12-0.3889604/) - Fire Tablet Tools
|
||||
|
||||
***
|
||||
|
||||
|
|
@ -184,7 +184,7 @@
|
|||
|
||||
## ▷ Customization
|
||||
|
||||
* ⭐ **[Iconify](https://github.com/Mahmud0808/Iconify)** (root), [RBoard](https://forum.xda-developers.com/t/app-rboard-theme-manager.4331445/) / [GitHub](https://github.com/DerTyp7214/RboardThemeManagerV3), [ColorBlendr](https://github.com/Mahmud0808/ColorBlendr) or [Substratum](https://www.xda-developers.com/substratum-hub/) - Theme Managers
|
||||
* ⭐ **[Iconify](https://github.com/Mahmud0808/Iconify)** (root), [RBoard](https://xdaforums.com/t/app-rboard-theme-manager.4331445/) / [GitHub](https://github.com/DerTyp7214/RboardThemeManagerV3), [ColorBlendr](https://github.com/Mahmud0808/ColorBlendr) or [Substratum](https://www.xda-developers.com/substratum-hub/) - Theme Managers
|
||||
* ⭐ **[/r/AndroidThemes](https://www.reddit.com/r/androidthemes/)** - Android Themes Subreddit
|
||||
* ⭐ **[Mobile Abyss](https://mobile.alphacoders.com/)** - Wallpapers
|
||||
* [PixelXpert](https://github.com/siavash79/PixelXpert) or [Dashbud](https://dashbud.dev/) / [Discord](https://discord.com/invite/78h7xgj) - Android Customization Apps
|
||||
|
|
@ -203,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
|
||||
|
||||
|
|
@ -230,21 +230,21 @@
|
|||
|
||||
* ⭐ **[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) or [Camator](https://gcamator.com/) - Google Cam Downloads / [Telegram](https://t.me/googlecameraport) / [XML Configs](https://t.me/xmlshamimmod)
|
||||
* [Libre Camera](https://github.com/iakmds/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
|
||||
* [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
|
||||
* [notesGPT](https://usenotesgpt.com/), [FadCam](https://github.com/anonfaded/FadCam) or [AudioNote](https://certified84.github.io/AudioNote/) - Video / Voice Recorders
|
||||
* [Jitsi](https://jitsi.org/) - Video Chat
|
||||
* [RemoteVideoCam](https://github.com/izivkov/RemoteVideoCam) - Video Lan
|
||||
* [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) - 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
|
||||
* [ImgurViewer](https://github.com/SpartanJ/ImgurViewer) - Quickly View Imgur (+ other site) Images
|
||||
* [Mematic](https://www.mematic.net/) or [Memetastic](https://github.com/gsantner/memetastic) - Meme Creators
|
||||
* [Mematic](https://www.mematic.com/) or [Memetastic](https://github.com/gsantner/memetastic) - Meme Creators
|
||||
* [VES](https://github.com/VincentEngel/VES-Image-Compare) - Compare Two Images
|
||||
* [PhotoRoom](https://www.photoroom.com/) - Background Removers / Retouch / Enhance
|
||||
* [Gcam-Services-Provider](https://github.com/lukaspieper/Gcam-Services-Provider) - Use Google Cam without Google Play
|
||||
|
|
@ -272,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
|
||||
|
|
@ -281,6 +281,7 @@
|
|||
* [AnySoftKeyboard](https://anysoftkeyboard.github.io/) - Privacy-Focused Keyboard
|
||||
* [KeyboardGPT](https://github.com/Mino260806/KeyboardGPT) - AI Keyboard
|
||||
* [Sayboard](https://github.com/ElishaAz/Sayboard) - AI Voice Keyboard
|
||||
* [Text Reader](https://elevenlabs.io/text-reader) - Text to Speech
|
||||
* [NotificationDictionary](https://github.com/tirkarthi/NotificationDictionary), [Ciyue](https://f-droid.org/packages/org.eu.mumulhl.ciyue/), [Livio](https://play.google.com/store/apps/dev?id=7909003501452794484), [Look Up](https://rentry.co/FMHYBase64#look-up) or [AARD2](https://github.com/itkach/aard2-android) - Dictionary Apps
|
||||
* [DeepLAndroid](https://github.com/sakusaku3939/DeepLAndroid), [RTranslator](https://github.com/niedev/RTranslator) or [TranslateYou](https://github.com/you-apps/TranslateYou) - Translation Apps
|
||||
* [Grammarly](https://rentry.co/FMHYBase64#grammarly-keyboard-premium) - Grammarly Keyboard Premium
|
||||
|
|
@ -324,18 +325,18 @@
|
|||
|
||||
## ▷ Root / Flash
|
||||
|
||||
* ⭐ **[Magisk](https://github.com/topjohnwu/Magisk)**, [KernelSU](https://kernelsu.org/), [MagiskOnWSALocal](https://github.com/LSPosed/MagiskOnWSALocal), [Magisk Files](https://huskydg.github.io/magisk-files), [APatch](https://github.com/bmax121/APatch) or [Mtk Easy Su](https://github.com/JunioJsv/mtk-easy-su) - Android Root Tools
|
||||
* ⭐ **Magisk Tools** - [Module Manager](https://github.com/DerGoogler/MMRL), [2](https://github.com/MRepoApp/MRepo/) / [Mods](https://t.me/magiskmod_update) / [Support Layer](https://github.com/axonasif/rusty-magisk) / [PlayIntegrity Fix](https://xdaforums.com/t/module-play-integrity-fix-safetynet-fix.4607985/), [2](https://github.com/osm0sis/PlayIntegrityFork), [3](https://xdaforums.com/t/tricky-store-the-next-generation-pif.4683446/) / [Fix Guide](https://xdaforums.com/t/module-play-integrity-fix-safetynet-fix.4607985/page-177#post-89189572) / [Alt Repo](https://github.com/Magisk-Modules-Alt-Repo)
|
||||
* ⭐ **[Magisk](https://github.com/topjohnwu/Magisk)**, [KernelSU](https://kernelsu.org/), [MagiskOnWSALocal](https://github.com/LSPosed/MagiskOnWSALocal), [Kitsune Magisk](https://huskydg.github.io/magisk-files), [APatch](https://github.com/bmax121/APatch) or [Mtk Easy Su](https://github.com/JunioJsv/mtk-easy-su) - Android Root Tools
|
||||
* ⭐ **Magisk Tools** - [Module Manager](https://github.com/DerGoogler/MMRL) / [Mods](https://t.me/magiskmod_update) / [Support Layer](https://github.com/axonasif/rusty-magisk) / [PlayIntegrity Fix](https://xdaforums.com/t/module-play-integrity-fix-safetynet-fix.4607985/), [2](https://github.com/osm0sis/PlayIntegrityFork), [3](https://xdaforums.com/t/tricky-store-bootloader-keybox-spoofing.4683446/) / [Fix Guide](https://xdaforums.com/t/module-play-integrity-fix-safetynet-fix.4607985/page-177#post-89189572) / [Alt Repo](https://github.com/Magisk-Modules-Alt-Repo)
|
||||
* ⭐ **[Android Docker](https://gist.github.com/FreddieOliveira/efe850df7ff3951cb62d74bd770dce27)** - Run Docker on Android
|
||||
* [ADB-and-FastbootPlusPlus](https://github.com/K3V1991/ADB-and-FastbootPlusPlus) - ADB / Fastboot Programs
|
||||
* [aShell](https://gitlab.com/sunilpaulmathew/ashell) or [aShellYou](https://github.com/DP-Hridayan/aShellYou) - ADB Shells
|
||||
* [LiveBoot](https://play.google.com/store/apps/details?id=eu.chainfire.liveboot&hl=en_IN) - LogCat / Dmesg Boot Animation
|
||||
* [LogFox](https://github.com/F0x1d/LogFox) - LogCat Reader
|
||||
* [Amazing Temp Root](https://forum.xda-developers.com/t/amazing-temp-root-for-mediatek-armv8-2020-08-24.3922213/) - MediaTek Temp Root
|
||||
* [Amazing Temp Root](https://xdaforums.com/t/amazing-temp-root-for-mediatek-armv8-2020-08-24.3922213/) - MediaTek Temp Root
|
||||
* [TWRP Root](https://twrp.me/) / [Telegram](https://t.me/samsung_twrp_root/78379) or [UnofficialTWRP](https://unofficialtwrp.com/) - TWRP Root
|
||||
* [SkyHawk](https://skyhawkrecovery.github.io/) - Custom Recovery Firmware
|
||||
* [SWAP](https://rentry.co/FMHYBase64#swap) - Create SWAP file without Root
|
||||
* [Smali Patcher](https://forum.xda-developers.com/t/module-smali-patcher-7-4.3680053/) - Android System Patcher
|
||||
* [Smali Patcher](https://xdaforums.com/t/module-smali-patcher-7-4.3680053/) - Android System Patcher
|
||||
* [Play Integrity API Checker](https://github.com/1nikolas/play-integrity-checker-app) - Device Integrity Checker
|
||||
* [Albastuz3d](https://albastuz3d.net/) - Stock Phone ROMs
|
||||
* [ConnectBot](https://connectbot.org/) - SSH Client
|
||||
|
|
@ -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
|
||||
|
|
@ -374,8 +375,9 @@
|
|||
* [Chai](https://www.chai-research.com/) - Roleplaying Chatbots
|
||||
* [Audio-Recorder](https://gitlab.com/axet/android-audio-recorder/tree/HEAD) or [android-audio-recorder](https://gitlab.com/axet/android-audio-recorder) - Audio Recorders
|
||||
* [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) - Text to Speech
|
||||
* [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
|
||||
|
|
@ -395,13 +397,13 @@
|
|||
## ▷ Android Adblocking
|
||||
|
||||
* ↪️ **[DNS Adblocking](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/adblock-vpn-privacy/#wiki_.25B7_dns_adblocking)**
|
||||
* ⭐ **[Rethink DNS](https://rethinkdns.com/app)** / [Blocklists](https://rethinkdns.com/app#blocklists), [personalDNSfilter](https://www.zenz-solutions.de/personaldnsfilter-wp/) / [F-Droid](https://f-droid.org/packages/dnsfilter.android), [DNSWarden](https://dnswarden.com/) / [GitHub](https://github.com/bhanupratapys/dnswarden) or [Pi-hole](https://github.com/DesktopECHO/Pi-hole-for-Android) - DNS Adblockers
|
||||
* ⭐ **[System Wide Adblocking](https://redd.it/oyfmr1)** - System Wide Adblocking Guide
|
||||
* ⭐ **[AdGuard Premium](https://rentry.co/FMHYBase64#adguard-premium)** - Adblocking App
|
||||
* ⭐ **uBlock Origin** - [Firefox](https://addons.mozilla.org/en-US/firefox/addon/ublock-origin/) / [Chromium](https://chromewebstore.google.com/detail/ublock-origin/cjpalhdlnbpafiamejdnhcphjbkeiagm)
|
||||
* ⭐ **[Cromite](https://github.com/uazo/cromite)** or [jQuarks](https://f-droid.org/packages/com.oF2pks.jquarks/) - Adblocking Browsers / [Filter](https://github.com/xarantolus/filtrite) / [Adblock Scripts](https://userscripts.010.one/)
|
||||
* ⭐ **[RedReader](https://github.com/QuantumBadger/RedReader)** or [Stealth](https://f-droid.org/packages/com.cosmos.unreddit/) / [2](https://gitlab.com/cosmosapps/stealth) - Ad-Free Reddit Clients
|
||||
* ⭐ **[Hermit](https://rentry.co/FMHYBase64#hermit)** / [2](https://play.google.com/store/apps/details?id=com.chimbori.hermitcrab) or [Incognito](https://play.google.com/store/apps/details?id=md.elway.webapp) - Web App Containers
|
||||
* ⭐ **[Rethink DNS](https://rethinkdns.com/app)** / [Blocklists](https://rethinkdns.com/app#blocklists), [personalDNSfilter](https://www.zenz-solutions.de/personaldnsfilter-wp/) / [F-Droid](https://f-droid.org/packages/dnsfilter.android), [DNSWarden](https://dnswarden.com/) / [GitHub](https://github.com/bhanupratapys/dnswarden) or [Pi-hole](https://github.com/DesktopECHO/Pi-hole-for-Android) - DNS Adblockers
|
||||
* [AdAway](https://adaway.org/) - Adblocking App / [GitHub](https://github.com/AdAway/AdAway)
|
||||
* [PrivateDNSAndroid](https://github.com/karasevm/PrivateDNSAndroid) - DNS Switchers
|
||||
* [ad-free](https://abertschi.github.io/ad-free/landing/) - Audio Adblocking App
|
||||
|
|
@ -421,10 +423,12 @@
|
|||
* ↪️ **[Android 2FA](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/adblock-vpn-privacy#wiki_.25B7_password_privacy_.2F_2fa)**
|
||||
* ⭐ **[TrackerControl](https://trackercontrol.org/)**, [Permission Pilot](https://github.com/d4rken-org/permission-pilot), [Exodus](https://reports.exodus-privacy.eu.org/en/) / [2](https://github.com/Exodus-Privacy/exodus-android-app), [PermissionManagerX](https://github.com/mirfatif/PermissionManagerX) or [HideDroid](https://github.com/Mobile-IoT-Security-Lab/HideDroid) - App Permission Managers
|
||||
* ⭐ **[VirusTotal](https://docs.virustotal.com/docs/mobile-apps)** or [Pithus](https://beta.pithus.org/) - APK / URL Virus Scanners
|
||||
* ⭐ **[UrlCheck](https://github.com/TrianguloY/UrlChecker)**, [Leon](https://github.com/svenjacobs/leon), [LinkSheet](https://github.com/LinkSheet/LinkSheet) or [Untracker](https://github.com/zhanghai/Untracker) - Remove URL Tracking
|
||||
* ⭐ **[DPITunnel](https://github.com/nomoresat/DPITunnel-android)** or [Intra](https://getintra.org) - Proxies
|
||||
* ⭐ **[Shadowsocks-Android](https://github.com/shadowsocks/shadowsocks-android)** - Shadowsocks Proxy App
|
||||
* ⭐ **[NekoBoxForAndroid](https://github.com/MatsuriDayo/NekoBoxForAndroid)** / [Warning](https://pastebin.com/WnmaBTgZ) or [Matsuri](https://matsuridayo.github.io/) - Proxy Toolchains
|
||||
* ⭐ **[TorServices](https://f-droid.org/packages/org.torproject.torservices/)** or [Orbot](https://play.google.com/store/apps/details?id=org.torproject.android&hl=en_US) - Tor Proxy Apps
|
||||
* ⭐**[Network Survey](https://www.networksurvey.app/)**, [PCAPdroid](https://emanuele-f.github.io/PCAPdroid/) or [keepitup](https://github.com/ibbaa/keepitup/) - Network Monitors
|
||||
* ⭐ **[XPL-EX](https://github.com/0bbedCode/XPL-EX)** or [InviZible](https://invizible.net) / [GitHub](https://github.com/Gedsh/InviZible) - Privacy Managers
|
||||
* ⭐ **[Amarok](https://github.com/deltazefiro/Amarok-Hider)** - Hide Files / Apps
|
||||
* [ceno-browser](https://censorship.no/en/index.html) - Proxy Browser / [GitHub](https://github.com/censorship-no/ceno-browser)
|
||||
|
|
@ -434,15 +438,12 @@
|
|||
* [Privacy Guides](https://www.privacyguides.org/en/android/) - Android Privacy Guides
|
||||
* [DroidFS](https://forge.chapril.org/hardcoresushi/DroidFS) - Encrypted File Managers
|
||||
* [Extirpater](https://github.com/Divested-Mobile/extirpater) - Space Eraser / Make Deleted Files Irrecoverable
|
||||
* [Leon](https://github.com/svenjacobs/leon), [UrlChecker](https://github.com/TrianguloY/UrlChecker), [LinkSheet](https://github.com/LinkSheet/LinkSheet) or [Untracker](https://github.com/zhanghai/Untracker) - Remove URL Tracking
|
||||
* [LibChecker](https://github.com/LibChecker/LibChecker) - View App Third-Party Libraries
|
||||
* [Sapio](https://github.com/jonathanklee/Sapio) - Scan Apps for Google Dependency
|
||||
* [NetGuard](https://www.netguard.me/) - Block Internet Access Per App / [GitHub](https://github.com/M66B/NetGuard)
|
||||
* [AirGuard](https://github.com/seemoo-lab/AirGuard) - AirTag Tracking Protection
|
||||
* [Hypatia](https://gitlab.com/divested-mobile/hypatia) - Antivirus
|
||||
* [QUAD9 Connect](https://play.google.com/store/apps/details?id=com.quad9.aegis) - DNS Encryption
|
||||
* [AFWall+](https://github.com/ukanth/afwall/) (root) or [Rethink App](https://rethinkfirewall.com/) / [GitHub](https://github.com/celzero/rethink-app), [Karma](https://github.com/StarGW-net/karma-firewall) - Firewalls
|
||||
* [PCAPdroid](https://emanuele-f.github.io/PCAPdroid/) or [keepitup](https://github.com/ibbaa/keepitup/) - Network Monitors
|
||||
* [v2rayNG](https://github.com/2dust/v2rayNG) or [V2Ray Proxy](https://play.google.com/store/apps/details?id=free.v2ray.proxy.VPN) - Build Privacy Network
|
||||
* [Open SSTP Client](https://github.com/kittoku/Open-SSTP-Client) - SSTP Client
|
||||
* [SimpleLogin](https://github.com/simple-login/Simple-Login-Android) or [Anonaddy](https://gitlab.com/Stjin/anonaddy-android) - Email Forwarding
|
||||
|
|
@ -461,8 +462,8 @@
|
|||
## ▷ Android Internet
|
||||
|
||||
* ↪️ **[Android Browsers](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_android_browsers)**
|
||||
* ⭐ **[KeePassDX](https://www.keepassdx.com/)**, **[BitWarden](https://play.google.com/store/apps/details?id=com.x8bit.bitwarden)**, [Keyspace](https://keyspace.cloud/), [Keyguard](https://github.com/AChep/keyguard-app), [AuthPass](https://authpass.app/), [KeyPass](https://github.com/yogeshpaliyal/KeyPass) 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
|
||||
* ⭐ **[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/)**, [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
|
||||
|
|
@ -478,13 +479,14 @@
|
|||
* [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
|
||||
* [MobiDevTools](https://addons.mozilla.org/en-US/firefox/addon/mobidevtools/) - Firefox Inspect Element
|
||||
* [SubX](https://play.google.com/store/apps/details?id=com.alkapps.subx) or [SubscriptionManager](https://play.google.com/store/apps/details?id=de.simolation.subscriptionmanager) - Track Subscription Services
|
||||
* [WiFiman](https://play.google.com/store/apps/details?id=com.ubnt.usurvey), [WiFiAnalyzer](https://vremsoftwaredevelopment.github.io/WiFiAnalyzer/) or [WLANScanner](https://github.com/bewue/WLANScanner) - Network Scanners
|
||||
* [Fing](https://www.fing.com/products/fing-app) - Network Toolkit
|
||||
* [Fing](https://www.fing.com/fing-app/) - Network Toolkit
|
||||
|
||||
***
|
||||
|
||||
|
|
@ -492,20 +494,21 @@
|
|||
|
||||
* ↪️ **[Social Media Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/social-media/)**
|
||||
* ↪️ **[Twitch Adblockers](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/social-media#wiki_.25B7_twitch_adblockers)**
|
||||
* ⭐ **[Aliucord](https://github.com/Aliucord/Aliucord) / [Discord](https://discord.gg/EsNDvBaHVU)** or [Bunny](https://github.com/pyoncord/Bunny) / [Plugins](https://bn-plugins.github.io/vd-web/) / [Discord](https://discord.gg/XjYgWXHb9Q) - Modded Discord Clients / [Rich Presence](https://github.com/dead8309/Kizzy)
|
||||
* ⭐ **[Voyager](https://vger.app) / [GitHub](https://github.com/aeharding/voyager)**, [Jerboa](https://github.com/dessalines/jerboa), [Eternity](https://codeberg.org/Bazsalanszky/Eternity) or [Thunder](https://github.com/thunder-app/thunder) - Lemmy Clients
|
||||
* ⭐ **[Tusky](https://tusky.app/)**, [Mastify](https://github.com/whitescent/Mastify), [Dhaaga](https://github.com/suvam0451/dhaaga), [tooot](https://tooot.app/ ), [SubwayTooter](https://github.com/tateisu/SubwayTooter), [Megalodon](https://sk22.github.io/megalodon/) or [Dimett](https://github.com/MateriiApps/Dimett) - Mastodon Clients / [Improved Notifications](https://LucasGGamerM.github.io/moshidon/) / [GitHub](https://github.com/LucasGGamerM/moshidon)
|
||||
* ⭐ **[Bunny](https://github.com/pyoncord/Bunny)** / [Plugins](https://bn-plugins.github.io/vd-web/) / [Discord](https://discord.gg/XjYgWXHb9Q), **[Revenge](https://github.com/revenge-mod/revenge)** or **[Aliucord](https://github.com/Aliucord/Aliucord)** / [Discord](https://discord.gg/EsNDvBaHVU) - Modded Discord Clients
|
||||
* ⭐ **[Voyager](https://vger.app) / [GitHub](https://github.com/aeharding/voyager)**, [Jerboa](https://github.com/LemmyNet/jerboa), [Eternity](https://codeberg.org/Bazsalanszky/Eternity), [summit](https://play.google.com/store/apps/details?id=com.idunnololz.summit) or [Thunder](https://github.com/thunder-app/thunder) - Lemmy Clients
|
||||
* ⭐ **[Tusky](https://tusky.app/)**, [Mastify](https://github.com/whitescent/Mastify), [Dhaaga](https://github.com/suvam0451/dhaaga), [tooot](https://tooot.app/ ), [SubwayTooter](https://github.com/tateisu/SubwayTooter), [Megalodon](https://sk22.github.io/megalodon/) or [Dimett](https://github.com/MateriiApps/Dimett) - Mastodon Clients / [Improved Notifications](https://lucasggamerm.github.io/moshidon//) / [GitHub](https://github.com/LucasGGamerM/moshidon)
|
||||
* ⭐ **[Reddit Client Patch Guide](https://github.com/KobeW50/ReVanced-Documentation/blob/main/Reddit-Client-ID-Guide.md)** - How To Patch 3rd Party Reddit Clients
|
||||
* ⭐ **[AyuGram](https://t.me/ayugramchat)**, **[Nagram](https://github.com/nextalone/nagram)**, [Nekogram](https://nekogram.app/), [NekoX](https://github.com/dic1911/NekoX), [TelegramAndroid](https://github.com/Forkgram/TelegramAndroid), [exteraGram](https://exteragram.app/), [Cherrygram](https://github.com/arsLan4k1390/Cherrygram), [TurboTel](https://t.me/s/TurboTel), [Nullgram](https://github.com/qwq233/Nullgram/), [Octogram](https://octogram.me/) or [Telegram-FOSS](https://github.com/Telegram-FOSS-Team/Telegram-FOSS) - Telegram Clients
|
||||
* ⭐ **[piko](https://t.me/pikopatches)** / [GitHub](https://github.com/crimera/piko) or [Squawker](https://github.com/j-fbriere/squawker) - Twitter Apps
|
||||
* [Watomatic](https://watomatic.app/) / [GitHub](https://github.com/adeekshith/watomatic) or [AutoResponder](https://www.autoresponder.ai/) - Chat App Auto-Responders
|
||||
* [MessengerEx](https://github.com/C10udburst/MessengerEx/) - Facebook Messenger Adblocker
|
||||
* [Xtra](https://github.com/crackededed/Xtra), [BBTV](https://github.com/bttv-android/bttv), [Twire](https://github.com/twireapp/Twire) or [Frosty](https://www.frostyapp.io/) - Twitch Clients
|
||||
* [Kizzy](https://github.com/dead8309/Kizzy) - Discord Rich Presence
|
||||
* [DankChat](https://github.com/flex3r/DankChat) - Talk in Multiple Twitch Chats at Once
|
||||
* [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
|
||||
|
|
@ -520,7 +523,7 @@
|
|||
|
||||
## ▷ Android File Tools
|
||||
|
||||
* ⭐ **[MiXplorer](https://mixplorer.com/)**, [2](https://forum.xda-developers.com/t/app-2-2-mixplorer-v6-x-released-fully-featured-file-manager.1523691/) - Advanced Root File Explorer / Manager / [Themes](https://play.google.com/store/apps/details?id=de.dertyp7214.mixplorerthemecreator)
|
||||
* ⭐ **[MiXplorer](https://mixplorer.com/)**, [2](https://xdaforums.com/t/app-2-2-mixplorer-v6-x-released-fully-featured-file-manager.1523691/) - Advanced Root File Explorer / Manager / [Themes](https://play.google.com/store/apps/details?id=de.dertyp7214.mixplorerthemecreator)
|
||||
* ⭐ **[SD Maid](https://github.com/d4rken-org/sdmaid-se)** - File Manager / Data Cleaner / [Discord](https://discord.com/invite/8Fjy6PTfXu)
|
||||
* ⭐ **[MaterialFiles](https://github.com/zhanghai/MaterialFiles)** - File Manager
|
||||
* ⭐ **[File-Manager](https://github.com/FossifyOrg/File-Manager)** - File Manager
|
||||
|
|
@ -539,7 +542,7 @@
|
|||
* [Arc](https://play.google.com/store/apps/details?id=com.quadren.arc) - File Sync / Sharing
|
||||
* [iyox-Wormhole](https://github.com/iyox-studios/iyox-Wormhole) or [Wormhole](https://gitlab.com/lukas-heiligenbrunner/wormhole) - File Sync / Sharing
|
||||
* [GUI](https://github.com/howeyc/crocgui) - File Sync / Sharing
|
||||
* [Disky](https://felixnuesse.de/disky/) - Disk Usage Analyzer
|
||||
* [Disky](https://felixnuesse.de/disky/) - Disk Usage Analyzer / [GitHub](https://github.com/newhinton/disky)
|
||||
* [Adebar](https://codeberg.org/izzy/Adebar), [OpenAndroidBackup](https://www.openandroidbackup.me/) / [GitHub](https://github.com/mrrfv/open-android-backup), [DataBackup](https://github.com/XayahSuSuSu/Android-DataBackup) (root), [Swift Backup](https://swiftapps.org/), [Neo Backup](https://github.com/NeoApplications/Neo-Backup) (root) - Device Backup Tools
|
||||
* [Folder in Folder](https://play.google.com/store/apps/details?id=com.ss.folderinfolder) - Create Subfolders
|
||||
* [Marc Files](https://play.google.com/store/apps/details?id=com.marc.files) - File Manager Shortcut
|
||||
|
|
@ -553,7 +556,7 @@
|
|||
## ▷ Productivity / Calendars
|
||||
|
||||
* ↪️ **[Text Editors / To-Do](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_android_note_apps)**
|
||||
* ⭐ **[Sleep as Android](https://rentry.co/FMHYBase64#sleep-as-android)**, [Sleep Cycle](https://rentry.co/FMHYBase64#sleep-cycle), [Clock](https://github.com/BlackyHawky/Clock), [Chrono](https://github.com/vicolo-dev/chrono), [ClockYou](https://github.com/you-apps/ClockYou) or [AlarmClock](https://github.com/yuriykulikov/AlarmClock) - Clocks / Alarms
|
||||
* ⭐ **[Sleep as Android](https://rentry.co/FMHYBase64#sleep-as-android)**, [Sleep Cycle](https://rentry.co/FMHYBase64#sleep-cycle), [Clock](https://github.com/BlackyHawky/Clock), [Clockology](https://rentry.co/FMHYBase64#clockology), [Chrono](https://github.com/vicolo-dev/chrono), [ClockYou](https://github.com/you-apps/ClockYou) or [AlarmClock](https://github.com/yuriykulikov/AlarmClock) - Clocks / Alarms
|
||||
* [Etar](https://github.com/Etar-Group/Etar-Calendar), [JTX](https://jtx.techbee.at/), [digical](https://digibites.nl/digical) or [TimeTreeApp](https://timetreeapp.com/intl/en/) - Calendars
|
||||
* [QRAlarm](https://github.com/sweakpl/qralarm-android) - Scan QR Code to Turn Off Alarm
|
||||
* [Calendar Notifications](https://play.google.com/store/apps/details?id=com.tuogol.calendar.notification) - View Calendar as Notifications
|
||||
|
|
@ -572,7 +575,7 @@
|
|||
* [Success](https://eveningkid.com/success/) - Productivity Tracker
|
||||
* [Unlock Master](https://github.com/sweakpl/unlock-master) - Productivity Tracker
|
||||
* [Goodtime](https://github.com/adrcotfas/Goodtime) - Productivity Tracker
|
||||
* [timeto](https://github.com/medvedev91/timetome) - Productivity Tracker
|
||||
* [timeto](https://github.com/Medvedev91/timeto.me) - Productivity Tracker
|
||||
* [Mind Leak](https://play.google.com/store/apps/details?id=de.mdiener.android.mindleak) - Productivity Tracker
|
||||
|
||||
***
|
||||
|
|
@ -595,7 +598,6 @@
|
|||
* [Tides Near Me](https://play.google.com/store/apps/details?id=me.tidesnear.free) - Tide Tracking App
|
||||
* [FindMyDevice](https://gitlab.com/Nulide/findmydevice), [phonetrack](https://gitlab.com/eneiluj/phonetrack-oc) / [2](https://gitlab.com/eneiluj/phonetrack-android) or [AutoWhatsAppTriggers](https://play.google.com/store/apps/details?id=om.roitman.autowhatsapptriggers) - Track Phones Location
|
||||
* [OwnTracks](https://owntracks.org/), [Hauk](https://github.com/bilde2910/Hauk), [Positional](https://github.com/Hamza417/Positional) / [2](https://github.com/mtrewartha/positional), [GPSCockpit](https://github.com/woheller69/gpscockpit), [GPSTest](https://play.google.com/store/apps/details?id=com.android.gpstest) or [GnssLogger](https://play.google.com/store/apps/details?id=com.google.android.apps.location.gps.gnsslogger) - Track Own Location / GPS
|
||||
* [Locus](https://github.com/Myzel394/locus) - E2E Location Sharing
|
||||
* [Android-Mock-Location](https://github.com/warren-bank/Android-Mock-Location) or [GPS JoyStick Guide](http://gpsjoystick.theappninjas.com/faq/) (root) - Fake GPS Location
|
||||
* [MetaRadar](https://github.com/Semper-Viventem/MetaRadar) - Track Devices Following You
|
||||
* [WTMP](https://play.google.com/store/apps/details?id=com.wtmp.svdsoftware) - Detect When Phone is Touched
|
||||
|
|
@ -618,6 +620,7 @@ https://github.com/Akylas/alpimaps
|
|||
* [OSS Weather](https://github.com/Akylas/oss-weather)
|
||||
* [Clima](https://codeberg.org/Lacerte/clima)
|
||||
* [Rain](https://github.com/DarkMooNight/Rain)
|
||||
* [Weawow](https://play.google.com/store/apps/details?id=com.weawow&hl=en_CA)
|
||||
* [KWeather](https://invent.kde.org/utilities/kweather)
|
||||
* [Meteored](https://rentry.co/FMHYBase64#meteored)
|
||||
* [OpenWeather](https://play.google.com/store/apps/details?id=uk.co.openweather)
|
||||
|
|
@ -632,12 +635,11 @@ https://github.com/Akylas/alpimaps
|
|||
***
|
||||
|
||||
* 🌐 **[Emulators on Android](https://emulation.gametechwiki.com/index.php/Emulators_on_Android)**
|
||||
* ↪️ **[Emulators on Linux](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/linux#wiki_.25B7_android_emulators)**
|
||||
* ⭐ **[Termux](https://termux.com/)**, [Termux Monet](https://github.com/KitsunedFox/termux-monet), [Limbo](https://github.com/limboemu/limbo) or [TermOne Plus](https://termoneplus.com/) - Windows Emulator on Android / Terminal Emulators / OS Environments
|
||||
* ⭐ **[Termux](https://termux.com/)**, [Limbo](https://github.com/limboemu/limbo) or [TermOne Plus](https://termoneplus.com/) - Windows Emulator on Android / Terminal Emulators / OS Environments
|
||||
* ⭐ **Termux Tools** - [YT-DL](https://github.com/OzakIOne/termux-youtube-dl), [2](https://github.com/khansaad1275/Termux-YTD) / [GUI](https://github.com/termux/termux-gui) / [ADB / Fastboot Tools](https://github.com/MasterDevX/Termux-ADB) / [Beautify](https://github.com/mayTermux/myTermux)
|
||||
* ⭐ **[mobox](https://github.com/olegos2/mobox)**, [Box64Droid](https://github.com/Ilya114/Box64Droid), [Boxvidra](https://github.com/Boxvidra/Boxvidra-Android) or [Winlator](https://winlator.org) / [GitHub](https://github.com/brunodev85/winlator) - Windows Emulators on Android
|
||||
* ⭐ **[mobox](https://github.com/olegos2/mobox)**, [Box64Droid](https://github.com/Ilya114/Box64Droid), [Boxvidra](https://github.com/xoureldeen-dev/Winux-VM) or [Winlator](https://winlator.org) / [GitHub](https://github.com/brunodev85/winlator) - Windows Emulators on Android
|
||||
* [Andronix](https://andronix.app/) - Linux Emulator for Android
|
||||
* [Ubuntu on Android](https://udroid-rc.gitbook.io) - Ubuntu Emulator on Android / [GitHub](https://github.com/RandomCoderOrg/ubuntu-on-android)
|
||||
* [Ubuntu on Android](https://docs.udroid.org/) - Ubuntu Emulator on Android / [GitHub](https://github.com/RandomCoderOrg/ubuntu-on-android)
|
||||
* [FlashLite](https://flashlite.games/) - Flash Emulator / [Discord](https://discord.gg/F2dsGhTX6y)
|
||||
* [/r/EmulationOnAndroid](https://www.reddit.com/r/emulationonandroid) - Android Game Emulation Subreddit
|
||||
* [Dan's Palace](https://discord.gg/RqQeZwrP8k) - Android / PSVita PC Game Ports Discord / [Telegram](https://t.me/danspalace)
|
||||
|
|
@ -649,15 +651,14 @@ https://github.com/Akylas/alpimaps
|
|||
|
||||
## ▷ Android on Windows
|
||||
|
||||
* **Warning** - Closed-source emulators (like Nox) contain intrusive ads and trackers, so it's best to use open-source options or android subsystems (like WayDroid).
|
||||
* **Warning** - Closed-source emulators (like Nox) contain intrusive ads and trackers, so it's best to use open-source options or android subsystems.
|
||||
|
||||
***
|
||||
|
||||
* 🌐 **[Android Emulators](https://emulation.gametechwiki.com/index.php/Android_emulators)** - Android Emulator Index
|
||||
* ↪️ **[Android on Linux](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/linux#wiki_.25B7_android_on_linuxs)**
|
||||
* ⭐ **[WSABuilds](https://github.com/MustardChef/WSABuilds)** / Windows Subsystem / Pre-built Binaries
|
||||
* ⭐ **[Android Studio Emulator](https://developer.android.com/studio/run/managing-avds#createavd)**
|
||||
* ⭐ **[Google Play Games](https://play.google.com/googleplaygames)** - Android Mobile Games on Windows
|
||||
* [AOPC](https://aopc.dev/) - Android Desktop OS Forums
|
||||
* [Docker Android](https://github.com/budtmo/docker-android) - Android on Docker
|
||||
* [Genymotion](https://www.genymotion.com/download/) - Cloud Emulator
|
||||
* [Nox](https://www.bignox.com/) / [Debloat](https://gist.github.com/TameemS/72c4b92131977aced56e727d51599a48) - Android Emulator
|
||||
|
|
@ -675,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
|
||||
|
|
@ -694,7 +696,7 @@ https://github.com/Akylas/alpimaps
|
|||
* ↪️ **[Multi-Platform Readers](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/reading#wiki_.25BA_ebook_readers)**
|
||||
* ⭐ **[Openlib](https://github.com/dstark5/Openlib)** - Free Books / Anna's Archive
|
||||
* ⭐ **[Mobilism](https://forum.mobilism.org/app/)** / [User Ranks](https://rentry.co/mobilismranks), [2](https://pastebin.com/pZuuMxYm) - Free Books
|
||||
* ⭐ **[KafkaArchives](https://www.kafkaarchives.com/)** - Archive.org Books / Audiobooks
|
||||
* ⭐ **[KafkaArchives](https://www.getkafka.app/)** - Archive.org Books / Audiobooks
|
||||
* ⭐ **[Librera](https://librera.mobi/)** - Ebook Reader
|
||||
* ⭐ **[Moon+ Reader](https://www.moondownload.com/)** - Ebook Reader / [Themes](https://rentry.co/moontheme)
|
||||
* ⭐ **[Lithium](https://play.google.com/store/apps/details?id=com.faultexception.reader)** - Ebook Reader
|
||||
|
|
@ -706,6 +708,7 @@ https://github.com/Akylas/alpimaps
|
|||
* [Sirin](https://play.google.com/store/apps/details?id=com.sirin.android) - Audiobook Player
|
||||
* [AudioAnchor](https://github.com/flackbash/AudioAnchor) - Audiobook Player
|
||||
* [eStories](https://play.google.com/store/apps/details?id=com.estories) - Audiobook Player
|
||||
* [Text Reader](https://elevenlabs.io/text-reader) - Create Audiobooks
|
||||
* [CoolReader](https://apt.izzysoft.de/fdroid/index/apk/org.coolreader) - Ebook Reader
|
||||
* [BookReader](https://gitlab.com/axet/android-book-reader) - Ebook Reader
|
||||
* [Prestigio](https://play.google.com/store/apps/details?id=com.prestigio.ereader) - Ebook Reader
|
||||
|
|
@ -730,8 +733,8 @@ https://github.com/Akylas/alpimaps
|
|||
|
||||
## ▷ Android Manga
|
||||
|
||||
* ⭐ **[Mihon](https://mihon.app/) / [Discord](https://discord.gg/mihon)** - Manga Reader / [Extensions](https://keiyoushi.github.io/extensions/), [2](https://discord.gg/3FbCpdKbdY), [3](https://wotaku.wiki/guides/tech/repo) / [Official Forks](https://mihon.app/forks/), [2](https://github.com/null2264/yokai), [3](https://github.com/nekomangaorg/Neko), [4](https://github.com/komikku-app/komikku)
|
||||
* ⭐ **[Kotatsu](https://kotatsu.app/)** - Manga Reader / / [Discord](https://discord.gg/NNJ5RgVBC5) / [Telegram](https://t.me/kotatsuapp)
|
||||
* ⭐ **[Mihon](https://mihon.app/) / [Discord](https://discord.gg/mihon)** - Manga Reader / [Extensions](https://keiyoushi.github.io/extensions/), [2](https://discord.gg/3FbCpdKbdY), [3](https://wotaku.wiki/guides/tech/repo) / [Official Forks](https://mihon.app/forks/), [2](https://github.com/nekomangaorg/Neko), [3](https://github.com/komikku-app/komikku)
|
||||
* ⭐ **[Kotatsu](https://kotatsu.app/)** - Manga Reader / [Discord](https://discord.gg/NNJ5RgVBC5) / [Telegram](https://t.me/kotatsuapp)
|
||||
* ⭐ **[Dantotsu](https://github.com/rebelonion/Dantotsu)** - Manga Reader / [Extension Guide](https://wotaku.wiki/guides/tech/repo) / [Discord](https://discord.gg/W9KHG7zzKd)
|
||||
* [Neko](https://github.com/nekomangaorg/Neko) - Manga Reader / [Discord](https://discord.gg/4vmK42QuKG)
|
||||
* [Perfect Viewer](https://rentry.co/FMHYBase64#perfect-viewer) - Manga File Viewer
|
||||
|
|
@ -758,11 +761,10 @@ https://github.com/Akylas/alpimaps
|
|||
* [Redomi](https://github.com/acszo/Redomi/) - Multi-Platform Streaming
|
||||
* [SoundCloud](https://play.google.com/store/apps/details?id=com.soundcloud.android&hl=us) - Streaming
|
||||
* [GrayJay](https://grayjay.app/) - Streaming
|
||||
* [Musify](https://gokadzev.github.io/Musify/) - Streaming / [GitHub](https://github.com/gokadzev/Musify)
|
||||
* [BloomeeTunes](https://github.com/HemantKArya/BloomeeTunes) - Streaming
|
||||
* [Soundbound App](https://soundbound.app/) - Steaming / Download / [Telegram](https://t.me/soundboundofficial)
|
||||
* [Seeker](https://github.com/jackBonadies/SeekerAndroid) or [AIDS](https://forum.mobilism.org/search.php?st=0&sk=t&sd=d&sr=topics&keywords=aids&sf=titleonly) - Download / MP3
|
||||
* [SaturnMusic](https://github.com/SaturnMusic/) - Deezer / FLAC / Requires Premium (Firehawk52)
|
||||
* [SaturnMusic](https://github.com/SaturnMusic/) or [Refreezer](https://github.com/DJDoubleD/refreezer) - Deezer / FLAC / Requires Premium (Firehawk52)
|
||||
* [Funkwhale](https://dev.funkwhale.audio/funkwhale/funkwhale-android), [Trebel](https://home.trebel.io/) or [Deezer](https://play.google.com/store/apps/details?id=deezer.android.app) - Streaming
|
||||
* [Azusa](https://github.com/lovegaoshi/azusa-player-mobile) - Bilibili Audio Player
|
||||
* [Music Time Travel](https://play.google.com/store/apps/details?id=com.zh.musictimetravel) - Music Discovery
|
||||
|
|
@ -774,7 +776,7 @@ https://github.com/Akylas/alpimaps
|
|||
* [Digitron](https://play.google.com/store/apps/details?id=com.geka000.digitron) - Audio Synthesizer
|
||||
* [ViPER4Android](https://github.com/programminghoch10/ViPER4AndroidRepackaged) - Audio Modifier / Equalizer
|
||||
* [Music Maker JAM](https://www.musicmakerjam.app/) - Music Creator / Mixer
|
||||
* [SoundID](https://play.google.com/store/apps/details?id=com.sonarworks.soundid.mobile), [Wavelet](https://play.google.com/store/apps/details?id=com.pittvandewitt.wavelet), [Poweramp Equalizer](https://play.google.com/store/apps/details?id=com.maxmpz.equalizer), [RootlessJamesDSP](https://github.com/ThePBone/RootlessJamesDSP), [Precise Volume](https://play.google.com/store/apps/details?id=com.phascinate.precisevolume), [FlowEQ](https://play.google.com/store/apps/details?id=com.floweq.equalizer) or [Flat Equalizer](https://play.google.com/store/apps/details?id=com.jazibkhan.equalizer) - Audio Equalizers
|
||||
* [SoundID](https://play.google.com/store/apps/details?id=com.sonarworks.soundid.mobile), [Wavelet](https://play.google.com/store/apps/details?id=com.pittvandewitt.wavelet), [Poweramp Equalizer](https://play.google.com/store/apps/details?id=com.maxmpz.equalizer), [RootlessJamesDSP](https://github.com/timschneeb/RootlessJamesDSP), [Precise Volume](https://play.google.com/store/apps/details?id=com.phascinate.precisevolume), [FlowEQ](https://play.google.com/store/apps/details?id=com.floweq.equalizer) or [Flat Equalizer](https://play.google.com/store/apps/details?id=com.jazibkhan.equalizer) - Audio Equalizers
|
||||
* [audio-analyzer](https://github.com/woheller69/audio-analyzer-for-android) or [Spectroid](https://play.google.com/store/apps/details?id=org.intoorbit.spectrum) - Audio Spectrum Analyzers
|
||||
* [Black Screen](https://play.google.com/store/apps/details?id=io.japp.blackscreen) - Turn Off Display While Audio is Playing
|
||||
* [Flip DND](https://play.google.com/store/apps/details?id=com.urbandroid.dnd) - Flip to Activate Do Not Disturb Mode
|
||||
|
|
@ -783,7 +785,7 @@ https://github.com/Akylas/alpimaps
|
|||
* [Volumee](https://maslanka.app/volumee/) or [SoundTap](https://play.google.com/store/apps/details?id=fr.angel.soundtap) - Volume Button Track Control
|
||||
* [VolumeLockr](https://github.com/jonathanklee/VolumeLockr) - Volume Locker
|
||||
* [Musekit](https://github.com/Kwasow/Musekit) or [Tack](https://github.com/patzly/tack-android) - Tuning Fork / Metronome
|
||||
* [SongSync](https://github.com/Lambada10/SongSync) - Download Lyrics
|
||||
* [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
|
||||
|
||||
|
|
@ -794,7 +796,6 @@ https://github.com/Akylas/alpimaps
|
|||
* ⭐ **[Poweramp](https://forum.mobilism.org/search.php?keywords=poweramp&sr=topics&sf=titleonly)**
|
||||
* ⭐ **[AIMP](https://www.aimp.ru/?do=download&os=android)**
|
||||
* ⭐ **[Musicolet Music Player](https://krosbits.in/musicolet/)**
|
||||
* ⭐ **[BlackPlayer EX](https://www.revdl.com/blackplayer-ex-apk-download.html/)**
|
||||
* ⭐ **[Symphony](https://zyrouge.github.io/symphony/)**
|
||||
* [Finamp](https://github.com/jmshrv/finamp) - Jellyfin Music Player
|
||||
* [Ultrasonic](https://gitlab.com/ultrasonic/ultrasonic) - Subsonic Clients
|
||||
|
|
@ -811,7 +812,6 @@ https://github.com/Akylas/alpimaps
|
|||
* [Nyx Music Player](https://play.google.com/store/apps/details?id=com.awedea.nyx)
|
||||
* [mucke](https://github.com/moritz-weber/mucke)
|
||||
* [Phonograph Plus](https://github.com/chr56/Phonograph_Plus)
|
||||
* [Vanilla](https://play.google.com/store/apps/details?id=com.kyant.vanilla&hl=en)
|
||||
* [Pulse Music](https://play.google.com/store/apps/details?id=com.hardcodecoder.pulse)
|
||||
* [Zen Music Player](https://github.com/pakka-papad/Zen)
|
||||
* [BladePlayer](https://github.com/vhaudiquet/BladePlayer)
|
||||
|
|
@ -824,6 +824,7 @@ https://github.com/Akylas/alpimaps
|
|||
|
||||
* ⭐ **[InnerTune](https://github.com/z-huang/InnerTune)**, [2](https://github.com/Malopieds/InnerTune), [3](https://github.com/DD3Boh/OuterTune) - YouTube Music Player
|
||||
* ⭐ **[Namida](https://github.com/namidaco/namida)** - YouTube Music Player
|
||||
* [Musify](https://gokadzev.github.io/Musify/) - Strea YouTube Music Player / [GitHub](https://github.com/gokadzev/Musify)
|
||||
* [RiMusic](https://rimusic.xyz) - YouTube Music Player / [GitHub](https://github.com/fast4x/RiMusic)
|
||||
* [Harmony Music](https://github.com/anandnet/Harmony-Music) - YouTube Music Player
|
||||
* [SimpMusic](https://simpmusic.tech/) - YouTube Music Player
|
||||
|
|
@ -850,7 +851,6 @@ https://github.com/Akylas/alpimaps
|
|||
* [Podbean](https://play.google.com/store/apps/details?id=com.podbean.app.podcast) - Podcast Player
|
||||
* [PocketCasts](https://www.pocketcasts.com/) - Podcast Player
|
||||
* [Podcini](https://github.com/XilinJia/Podcini) - Podcast Player
|
||||
* [Podcast Addict](https://play.google.com/store/apps/details?id=com.bambuna.podcastaddict) - Podcast Player
|
||||
* [Transistor](https://codeberg.org/y20k/transistor) - Radio App
|
||||
* [RadioTime](https://radiotimeapp.com/) - Radio App
|
||||
* [SiriusXM](https://rentry.co/FMHYBase64#siriusxm) - Radio App
|
||||
|
|
@ -879,8 +879,7 @@ https://github.com/Akylas/alpimaps
|
|||
|
||||
# ► Android Streaming
|
||||
|
||||
* ↪️ **[Video Players](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_android_video_players)**
|
||||
* ⭐ **[Stremio](https://www.stremio.com/)** - Torrent Streaming / [/r/StremioAddons](https://reddit.com/r/StremioAddons) / Use [VPN](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/adblock-vpn-privacy#wiki_vpn_guide)
|
||||
* ⭐ **[Stremio](https://www.stremio.com/)** - Torrent Streaming / [Guide](https://guides.viren070.me/stremio), [2](https://rentry.co/bye-sudo) / [/r/StremioAddons](https://reddit.com/r/StremioAddons) / Use [VPN](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/adblock-vpn-privacy#wiki_vpn_guide)
|
||||
* ⭐ **[CloudStream](https://cloudstream-on-fleek-co.ipns.dweb.link/)** - Movies / TV / Anime
|
||||
* ⭐ **CloudStream Resources** - [Plugins](https://discord.com/invite/wpX5Rfcx87), [2](https://github.com/Rowdy-Avocado/Rowdycado-Extensions), [3](https://rentry.org/cs3-repos) / [Discord](https://discord.com/invite/5Hus6fM) / [Docs](https://recloudstream.github.io/csdocs/), [2](https://cloudstream.miraheze.org/wiki/Main_Page) / [GitHub](https://github.com/recloudstream/cloudstream)
|
||||
* ⭐ **[FlixQuest](https://flixquest.beamlak.dev/)** - Movies / TV / [GitHub](https://github.com/BeamlakAschalew/flixquest)
|
||||
|
|
@ -889,11 +888,12 @@ https://github.com/Akylas/alpimaps
|
|||
* ⭐ **[Kodi](https://kodi.tv/)** - [/r/Addons4Kodi](https://www.reddit.com/r/Addons4Kodi/) / [Tracker](https://kinkeadtech.com/best-kodi-streaming-addons/) / [Trending](https://kodiapps.com/addons-chart) / [Real-Debrid](https://real-debrid.com/)
|
||||
* ⭐ **[Syncler](https://syncler.net/)** - Movies / TV / [Providers](https://www.reddit.com/r/providers4syncler/)
|
||||
* ⭐ **[BubblesUPNP](https://play.google.com/store/apps/details?id=com.bubblesoft.android.bubbleupnp&gl=US)**, [DMS](https://github.com/anacrolix/dms) or [Macast](https://xfangfang.github.io/Macast/) - Media Servers
|
||||
* [PopcornTime](https://popcorn-time.site) - Torrent Streaming / / [GitHub](https://github.com/popcorn-official/popcorn-android) / Use [VPN](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/adblock-vpn-privacy#wiki_vpn_guide)
|
||||
* [PopcornTime](https://popcorn-time.site) - Torrent Streaming / [GitHub](https://github.com/popcorn-official/popcorn-android) / Use [VPN](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/adblock-vpn-privacy#wiki_vpn_guide)
|
||||
* [FilmPlus](https://filmplus.app/) - Movies / TV
|
||||
* [Vega App](https://github.com/Zenda-Cross/vega-app) - Movies / TV
|
||||
* [TeaTV](https://rentry.co/FMHYBase64#teatv) - Movies / TV
|
||||
* [Flixeon](https://flixeon.me/) - Movies / TV
|
||||
* [OnStream](https://rentry.co/FMHYBase64#onstream) - Movies / TV
|
||||
* [Movies Cave](https://rentry.co/FMHYBase64#movies-cave-app) - Movies / TV
|
||||
* [LokLok](https://loklok.com/download) - Movies / TV
|
||||
* [EncoreTVB](https://play.google.com/store/apps/details?id=com.tvbusa.english&hl=en_US) - Chinese Drama
|
||||
|
|
@ -910,6 +910,21 @@ https://github.com/Akylas/alpimaps
|
|||
|
||||
***
|
||||
|
||||
## ▷ Android Video Players
|
||||
|
||||
* ⭐ **[VLC](https://www.videolan.org/vlc/download-android.html)**
|
||||
* ⭐ **[mpvKt](https://github.com/abdallahmehiz/mpvKt/)**
|
||||
* ⭐ **[Just Player](https://github.com/moneytoo/Player)**
|
||||
* [MX Player](https://rentry.co/FMHYBase64#mx-player) / [Codec](https://github.com/USBhost/MX_FFmpeg)
|
||||
* [mpv-android](https://github.com/mpv-android/mpv-android)
|
||||
* [Nova Video Player](https://github.com/nova-video-player/aos-AVP)
|
||||
* [Fermata Media Player](https://github.com/AndreyPavlenko/Fermata)
|
||||
* [Next Player](https://github.com/anilbeesetti/nextplayer)
|
||||
* [Audiofy](https://play.google.com/store/apps/details?id=com.prime.player)
|
||||
* [M3UAndroid](https://github.com/realOxy/M3UAndroid) - Media Player / [Telegram](https://t.me/m3u_android)
|
||||
|
||||
***
|
||||
|
||||
## ▷ Android Anime
|
||||
|
||||
* 🌐 **[Wotaku](https://wotaku.wiki/software#anime-streaming)** - Anime Streaming Index / [Discord](https://discord.gg/vShRGx8ZBC)
|
||||
|
|
@ -923,7 +938,7 @@ https://github.com/Akylas/alpimaps
|
|||
* [AnimeChicken](https://animechicken.app/)
|
||||
* [animity](https://github.com/kl3jvi/animity) / [Discord](https://discord.com/invite/eNuX9U57SM)
|
||||
* [AnimeScrap](https://github.com/fakeyatogod/AnimeScrap) - Anime Download App
|
||||
* [MALClient](https://github.com/Drutol/MALClient), [MyAnimeList Client](https://play.google.com/store/apps/details?id=net.myanimelist.app), [AL-chan](https://zend10.github.io/AL-chan/), [Nekome](https://github.com/Chesire/Nekome), [Otraku](https://play.google.com/store/apps/details?id=com.otraku.app), [Moelist](https://moelist.net/), [Kitsune](https://github.com/Drumber/Kitsune), [AniTrend](https://anitrend.co/) / [GitHub](https://github.com/AniTrend/anitrend-app) or [AniLib](https://anilib.onrender.com/) - Anime Trackers
|
||||
* [MALClient](https://github.com/Drutol/MALClient), [AL-chan](https://zend10.github.io/AL-chan/), [Nekome](https://github.com/Chesire/Nekome), [Moelist](https://moelist.net/), [Kitsune](https://github.com/Drumber/Kitsune), [AniTrend](https://anitrend.co/) / [GitHub](https://github.com/AniTrend/anitrend-app) or [AniLib](https://anilib.onrender.com/) - Anime Trackers
|
||||
|
||||
***
|
||||
|
||||
|
|
@ -953,7 +968,7 @@ https://github.com/Akylas/alpimaps
|
|||
* [Clipious](https://github.com/lamarios/clipious) - Android Invidious Client
|
||||
* [Hyperion](https://github.com/zt64/Hyperion) - YouTube Frontend
|
||||
* [SkyTube](https://github.com/SkyTubeTeam/SkyTube) - YouTube Player
|
||||
* [FreeTube Android](https://github.com/MarmadileManteater/FreeTubeCordova) - YouTube Player
|
||||
* [FreeTube Android](https://github.com/MarmadileManteater/FreeTubeAndroid) - YouTube Player
|
||||
* [Video Summarizer](https://play.google.com/store/apps/details?id=com.emote.youtube_summarizer) - YouTube Video Summarizer
|
||||
|
||||
***
|
||||
|
|
@ -977,7 +992,6 @@ https://github.com/Akylas/alpimaps
|
|||
* [WebOS YouTube](https://github.com/webosbrew/youtube-webos) - Ad-Free YouTube for LG TVs / [Guide](https://youtu.be/Zoc9Bt9TuZA), [2](https://redd.it/wzs6hg)
|
||||
* [med4web](https://rentry.org/med4web) - Guide for streaming torrents on LG TVs
|
||||
* [Playlet](https://channelstore.roku.com/en-ca/details/840aec36f51bfe6d96cf6db9055a372a/playlet) - Ad-Free YouTube Roku Client
|
||||
* [LG SmartShare](https://www.lg.com/support/smart-share) - Share files to LGTV
|
||||
* [Serenity Android](https://github.com/NineWorlds/serenity-android) - Plex / Emby Android TV App
|
||||
* [AnimeTV](https://github.com/amarullz/AnimeTV) - Anime Android TV App
|
||||
* [SmartTwitchTV](https://github.com/fgl27/SmartTwitchTV) - Smart TV Twitch Player
|
||||
|
|
@ -992,15 +1006,14 @@ https://github.com/Akylas/alpimaps
|
|||
|
||||
# ► iOS Tools
|
||||
|
||||
* 🌐 **[JulioverneHYI](https://julio.hackyouriphone.org/)** - Piracy Tools
|
||||
* ↪️ **[Safari Extensions](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/internet-tools#wiki_.25B7_safari_extensions)**
|
||||
* ⭐ **[Orion](https://kagi.com/orion/)** - Browser with Chrome + Firefox Extension Support / [Discord](https://discord.com/invite/gKh5E6ys6D)
|
||||
* ⭐ **[Bitwarden](https://apps.apple.com/app/bitwarden-free-password-manager/id1137397744)**, [Keepassium](https://keepassium.com/), [AuthPass](https://authpass.app/), [Strongbox](https://strongboxsafe.com/) or [PasswordStore](https://passwordstore.app/) - Password Managers
|
||||
* ⭐ **[Bitwarden](https://apps.apple.com/app/bitwarden-free-password-manager/id1137397744)**, [Keepassium](https://keepassium.com/), [AuthPass](https://authpass.app/) or [Strongbox](https://strongboxsafe.com/) - Password Managers
|
||||
* ⭐ **[PairVPN Hotspot](https://pairvpn.com/hotspot)** - Create Mobile Hotspots
|
||||
* [Gear4](https://gear4.app/) - Browser with Userscript Support
|
||||
* [Arc](https://apps.apple.com/us/app/arc-search-find-it-faster/id6472513080) - Feature-Rich iOS Adblock Browser
|
||||
* [iOS Settings URLs](https://github.com/FifiTheBulldog/ios-settings-urls) - iOS Settings URL List
|
||||
* [Das Image](https://apps.apple.com/ca/app/das-image-search-and-explore/id1464079804), [iPhone11papers](https://iphone11papers.com/), [FreshWalls](https://apps.apple.com/in/app/freshwalls-4k-hd-wallpapers/id1627085956) or [iOS Wallpapers](https://goo.gl/photos/ZVpabTtcezd35XBa9/) - iOS Wallpapers
|
||||
* [Das Image](https://apps.apple.com/ca/app/das-image-search-and-explore/id1464079804), [FreshWalls](https://apps.apple.com/in/app/freshwalls-4k-hd-wallpapers/id1627085956) or [iOS Wallpapers](https://goo.gl/photos/ZVpabTtcezd35XBa9/) - iOS Wallpapers
|
||||
* [wrtn](https://apps.apple.com/us/app/%EB%A4%BC%ED%8A%BC-%EB%AA%A8%EB%91%90%EB%A5%BC-%EC%9C%84%ED%95%9C-ai-%ED%8F%AC%ED%84%B8/id6448556170), [OpenAI-ChatGPT](https://apps.apple.com/us/app/openai-chatgpt/id6448311069) or [Kai](https://trykai.app/) - ChatGPT Apps
|
||||
* [Offline File Browser](https://apps.apple.com/us/app/offline-files-browser-docs/id1557618225) or [Santander](https://github.com/NSAntoine/Santander) - File Managers
|
||||
* [Piracy Shortcuts](https://redd.it/1cjo1k5) - iOS Piracy Shortcuts App
|
||||
|
|
@ -1008,9 +1021,9 @@ https://github.com/Akylas/alpimaps
|
|||
* [SwiftyTorrent](https://github.com/danylokos/SwiftyTorrent) or [iTorrent](https://github.com/XITRIX/iTorrent) - Torrent Clients
|
||||
* [iZip](https://apps.apple.com/us/app/izip-zip-unzip-unrar/id413971331) - File Archiver
|
||||
* [The National Do Not Call Registry](https://www.donotcall.gov/) - Opt Out of Telemarketing Calls
|
||||
* [touchHLE](https://github.com/hikari-no-yume/touchHLE) - iOS App Desktop Emulator
|
||||
* [touchHLE](https://github.com/touchHLE/touchHLE) - iOS App Desktop Emulator
|
||||
* [Downgrade Apps](https://github.com/qnblackcat/How-to-Downgrade-apps-on-AppStore-with-iTunes-and-Charles-Proxy/) - How to Downgrade Apps
|
||||
* [Drafts](https://getdrafts.com/), [Strflow](https://strflow.app/), [FreeNotes](https://apps.apple.com/in/app/freenotes-note-taking/id6464237904) or [Bear](https://bear.app/) - Note-Taking / Text Editors
|
||||
* [Drafts](https://getdrafts.com/), [Goodnotes](https://www.goodnotes.com/), [Strflow](https://strflow.app/), [FreeNotes](https://apps.apple.com/in/app/freenotes-note-taking/id6464237904) or [Bear](https://bear.app/) - Note-Taking / Text Editors
|
||||
* [Noteful](https://apps.apple.com/in/app/noteful-note-taking-on-pdf/id1587904334) or [Highlights](https://highlightsapp.net/) - PDF Note-Taking
|
||||
* [Git Journal](https://gitjournal.io/) - Mobile Markdown Notes
|
||||
* [iSH Shell](https://ish.app/) or [a-Shell](https://holzschu.github.io/a-Shell_iOS/) - Terminal Emulators
|
||||
|
|
@ -1020,12 +1033,11 @@ https://github.com/Akylas/alpimaps
|
|||
* [UTM](https://getutm.app/) - Virtual Machines
|
||||
* [Lock Launcher](https://www.locklauncher.com/) - Lock Screen App Launcher
|
||||
* [Scriptable](https://apps.apple.com/us/app/scriptable/id1405459188) - Automation Script Tool
|
||||
* [PureKFD](https://github.com/PureKFD/PureKFD) or [Misaka](https://github.com/straight-tamago/misaka) - iOS Customization Apps
|
||||
* [PureKFD](https://github.com/Lrdsnow/PureKFD) or [Misaka](https://github.com/straight-tamago/misaka) - iOS Customization Apps
|
||||
* [iSkin](https://iskin.tooliphone.net/), [Anemone](https://www.ios-repo-updates.com/repository/odyssey-repo/package/com.anemonetheming.anemone3/), [/r/iOSsetups](https://www.reddit.com/r/iOSsetups/) or [/r/iOSthemes](https://www.reddit.com/r/iOSthemes/) - iOS Themes
|
||||
* [iCustom](https://icustom.tooliphone.net/) - Make Custom Icons without Shortcuts
|
||||
* [RoutineHub](https://routinehub.co/) - Siri Shortcuts
|
||||
* [Color Widgets](https://apps.apple.com/us/app/color-widgets/id1531594277), [WidgetSmith](https://apps.apple.com/us/app/widgetsmith/id1523682319) or [widgetopia](https://apps.apple.com/us/app/widgetopia-widgets-weather/id1536432615) - iOS Widgets
|
||||
* [Video Saver Pro](https://apps.apple.com/us/app/video-saver-pro-cloud-drive/id1297144302) - Video Downloader
|
||||
* [YT-DLP](https://mcgaritydotme.notion.site/Using-yt-dlp-to-download-YouTube-content-on-an-iPad-16d0f4bcaf524d41a92a0d714d4bd100) or [YouDown](https://apps.apple.com/sa/app/youdown/id1487658334) - YouTube Downloaders
|
||||
* [Keynote](https://apps.apple.com/us/app/keynote/id361285480) - Make Presentations
|
||||
* [GlobeConvert](https://apps.apple.com/us/app/globeconvert-currency-units/id334851202) - Currency / Unit Converter
|
||||
|
|
@ -1084,14 +1096,14 @@ https://github.com/Akylas/alpimaps
|
|||
|
||||
## ▷ iOS Jailbreaking
|
||||
|
||||
* 🌐 **[iOS Jailbreak Guide](https://ios.cfw.guide/)**, [CanIJailbreak?](https://canijailbreak.com/), [HackYouriPhone Repo](https://repo.hackyouriphone.org/) or [IPA Apps](https://ipa-apps.me/) - Jailbreaking Tool Indexes
|
||||
* 🌐 **[iOS Jailbreak Guide](https://ios.cfw.guide/)**, [CanIJailbreak?](https://canijailbreak.com/) or [IPA Apps](https://ipa-apps.me/) - Jailbreaking Tool Indexes
|
||||
* ⭐ **[/r/jailbreak](https://reddit.com/r/jailbreak)** - Jailbreaking Subreddit / [Wiki](https://www.reddit.com/r/jailbreak/wiki/index)
|
||||
* ⭐ **[Sideloading Beginners Guide](https://redd.it/orqzau)**, [Free Sideloading](https://docs.google.com/document/d/1QseJR-ZTGJO0q99l9eh1-wsR-tldtbsM6rbsti08EDQ/), [Avieshek's Guide](https://avieshek.wordpress.com/2024/06/11/how-to-sideload-on-ios/) or [Noob Guide to Sideloading](https://www.reddit.com/r/Piracy/comments/pt5uv9/noob_guide_to_sideloading_in_ios/) - Sideloading Guides
|
||||
* ⭐ **[/r/sideloaded](https://reddit.com/r/sideloaded)** - Sideloading Subreddit / [Wiki](https://www.reddit.com/r/sideloaded/wiki/index)
|
||||
* [IPSW](https://ipsw.me/) - Provides Jailbreak Firmware
|
||||
* [Blackb0x](https://github.com/NSSpiral/Blackb0x) - Apple TV Jailbreak
|
||||
* [Dopamine](https://github.com/opa334/Dopamine) - 15-16.6.1 Semi-Untethered Jailbreak
|
||||
* [Serotonin](https://github.com/mineek/Serotonin) - 16.0-16.6.1 Semi-Jailbreak (A12+)
|
||||
* [Serotonin](https://github.com/SerotoninApp/Serotonin) - 16.0-16.6.1 Semi-Jailbreak (A12+)
|
||||
* [Def1nit3lyN0tAJa1lbr3akTool](https://github.com/KpwnZ/Def1nit3lyN0tAJa1lbr3akTool/tree/v1.0.0) - 16.0-16.6.1 Semi-Untethered Jailbreak (arm64)
|
||||
* [nekoJB](https://nekojb.hhls.xyz/) - 15.0-15.8 Semi-Untethered Jailbreak (arm64)
|
||||
* [palera1n](https://palera.in) - 15.0-18.x Jailbreak (arm64) / [GitHub](https://github.com/palera1n/palera1n)
|
||||
|
|
@ -1100,7 +1112,7 @@ https://github.com/Akylas/alpimaps
|
|||
* [Odyssey](https://theodyssey.dev/) - 13.0 to 13.7 Semi-tethered Jailbreak
|
||||
* [Chimera](https://chimera.coolstar.org/) - 12.0-12.5.7 Jailbreak
|
||||
* [unc0ver](https://github.com/pwn20wndstuff/Undecimus) - 11.0-14.8 Jailbreak
|
||||
* [Totally Not Spyware](https://totally-not.spyware.lol/) - 10.0 - 10.3.3 WebKit-Based Jailbreak (64-bit Only)
|
||||
* [Totally Not Spyware](https://totally.not.spyware.lol/) - 10.0 - 10.3.3 WebKit-Based Jailbreak (64-bit Only)
|
||||
* [Meridian](https://meridian.sparkes.zone/) - 10.0-10.3.3 Jailbreak
|
||||
* [sockH3lix](https://github.com/SongXiaoXi/sockH3lix/releases/latest) - 10.0.1-10.3.3 Jailbreak
|
||||
* [doubleH3lix](https://github.com/tihmstar/doubleH3lix) - 10.0-10.3.3 Jailbreak
|
||||
|
|
@ -1132,7 +1144,6 @@ https://github.com/Akylas/alpimaps
|
|||
* [Sileo](https://cydia.saurik.com/api/share#?source=https://repo.getsileo.app) or [Zebra](https://getzbra.com/) - iOS Package Managers
|
||||
* [Repo Updates](https://www.ios-repo-updates.com/) - App Repository Updates
|
||||
* [Roothide Bootstrap](https://github.com/roothide/Bootstrap) - Inject Tweaks into Apps without jailbreak (14.0-17.0) / [Tweaks](https://github.com/roothide/roothide.github.io)
|
||||
* [CyDown](https://julio.hackyouriphone.org/description.html?id=com.julioverne.cydown) - Cracked Jailbreak Tweaks
|
||||
* [iDownloadBlog](https://www.idownloadblog.com) - Jailbreak News
|
||||
|
||||
***
|
||||
|
|
@ -1156,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
|
||||
|
||||
***
|
||||
|
|
@ -1171,13 +1185,14 @@ 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 / [IPAs](https://github.com/swaggyP36000/TrollStore-IPAs) / [Decrypt](https://github.com/donato-fiore/TrollDecrypt)
|
||||
* ⭐ **[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)
|
||||
* ⭐ **[Sideloadly](https://sideloadly.io/)**, [AltStore](https://altstore.io/) / [Repo Viewer](https://altsource.by.lao.sb/browse/) / [Alt Server](https://github.com/NyaMisty/AltServer-Linux), [SideStore](https://sidestore.io/) or [SignTools](https://github.com/SignTools/SignTools) - Non-Jailbreak App Sideloading
|
||||
* ⭐ **[IPALibrary](https://ipalibrary.me/)** - Tweaked Apps
|
||||
* ⭐ **PDALife** - [Games](https://pdalife.com/ios/games) / [Apps](https://pdalife.com/ios/programmy/) / [Telegram](https://t.me/pdalife_official)
|
||||
* ⭐ **[4PDA](https://4pda.to/forum/)** - Tweaked Apps / Use [translator](https://addons.mozilla.org/en-US/firefox/addon/traduzir-paginas-web/)
|
||||
* ⭐ **[4PDA](https://4pda.to/forum/)** - Tweaked Apps / Use [translator](https://addons.mozilla.org/en-US/firefox/addon/traduzir-paginas-web/) / [Captcha Note](https://pastebin.com/NNh7e2HB), [2](https://doorsgeek.blogspot.com/2015/08/4pdaru-loginregister-captcha-tutorial.html)
|
||||
* PDALife - [Games](https://pdalife.com/ios/games) / [Apps](https://pdalife.com/ios/programmy/) / [Telegram](https://t.me/pdalife_official)
|
||||
* [AppDB](https://appdb.to) - App Library
|
||||
* [AppSnake](https://appsnake.cypwn.xyz/) - IAP Database
|
||||
* [DPixel](https://t.me/dpixel) - Tweaked Apps / Telegram
|
||||
|
|
@ -1185,7 +1200,6 @@ https://github.com/Akylas/alpimaps
|
|||
* [fnd](https://fnd.io/) - App Store Search
|
||||
* [Mobilism iOS Apps](https://forum.mobilism.org/viewforum.php?f=312) - App Library / [User Ranks](https://rentry.co/mobilismranks), [2](https://pastebin.com/pZuuMxYm)
|
||||
* [App Cake](https://www.iphonecake.com/) - App Library
|
||||
* [iosninja](https://iosninja.io/ipa-library) - App Library
|
||||
* [Jailbreaks.app](https://jailbreaks.app/) - App Library
|
||||
* [StarFiles](https://starfiles.co/) - App Library
|
||||
* [AppStore](https://t.me/iOSAppsFree) - Tweaked Apps
|
||||
|
|
@ -1202,17 +1216,16 @@ https://github.com/Akylas/alpimaps
|
|||
* ⭐ **[EeveeSpotify](https://github.com/whoeevee/EeveeSpotify)** - Ad-Free Spotify / Sideloaded
|
||||
* ⭐ **[Spotify++](https://rentry.co/FMHYBase64#spotify)** - Ad-Free Spotify / Sideloaded
|
||||
* ⭐ **[SpotC++](https://spotcompiled.github.io/)** - Ad-Free Spotify / Sideloaded
|
||||
* ⭐ **[YT Tweaked](https://rentry.co/FMHYBase64#yt-tweaked-ipas)**, [YTMusilife](https://rentry.co/FMHYBase64#ytmusilife) or [YTMusicUltimate](https://github.com/ginsudev/YTMusicUltimate), [Trebel](https://home.trebel.io/), [Soundcloud](https://apps.apple.com/us/app/soundcloud/id336353151), [eSound](https://apps.apple.com/ca/app/esound-music-player-app-mp3/id1224933860), [Musi](https://feelthemusi.com/) or [Audiomack](https://apps.apple.com/ca/app/audiomack-download-new-music/id921765888) - Streaming
|
||||
* ⭐ **[YT Tweaked](https://rentry.co/FMHYBase64#yt-tweaked-ipas)**, [YTMusilife](https://rentry.co/FMHYBase64#ytmusilife) or [YTMusicUltimate](https://github.com/dayanch96/YTMusicUltimate), [Trebel](https://home.trebel.io/), [Soundcloud](https://apps.apple.com/us/app/soundcloud/id336353151), [Musi](https://feelthemusi.com/) or [Audiomack](https://apps.apple.com/ca/app/audiomack-download-new-music/id921765888) - Streaming
|
||||
* [Spotilife](https://rentry.co/FMHYBase64#spotilife) - Ad-Free Spotify / Jailbreak or Sideload
|
||||
* [Deezer](https://apps.apple.com/app/deezer/id292738169) - Streaming
|
||||
* [Musi](https://apps.apple.com/us/app/musi-simple-music-streaming/id591560124) - Streaming
|
||||
* [Demus](https://demus.app/) - Streaming
|
||||
* [Qello](https://apps.apple.com/us/app/qello-concerts-live-music/id491069819) - Concerts & Live Music Streaming
|
||||
* [Boom](https://apps.apple.com/us/app/boom-bass-booster-equalizer/id1065511007) - Audio Equalizer
|
||||
* [VOX](https://apps.apple.com/us/app/vox-mp3-flac-music-player/id916215494) or [Melodista](https://apps.apple.com/us/app/melodista-music-offline-player/id1293175325) - Audio Player
|
||||
* [wInd3x](https://github.com/freemyipod/wInd3x) - iPod Classic / Nano Bootrom Exploit
|
||||
* [GarageBand](https://apps.apple.com/us/app/garageband/id408709785) - Audio Editor / Creator
|
||||
[SpotiStats](https://apps.apple.com/us/app/spotistats-for-spotify/id1526912392) - Spotify Listening Stats
|
||||
* [SpotiStats](https://stats.fm/) - Spotify Listening Stats
|
||||
|
||||
***
|
||||
|
||||
|
|
@ -1229,7 +1242,6 @@ https://github.com/Akylas/alpimaps
|
|||
|
||||
* [A Soft Murmur](https://apps.apple.com/app/apple-store/id1175522255) - Mix Ambient Sounds
|
||||
* [Tide.fm](https://apps.apple.com/cn/app/tide/id1077776989) - Meditation / Sleep Sounds
|
||||
* [myNoise](https://apps.apple.com/be/app/mynoise/id813099896) - Background Noises / Interactive Soundscapes
|
||||
|
||||
***
|
||||
|
||||
|
|
@ -1255,7 +1267,6 @@ https://github.com/Akylas/alpimaps
|
|||
|
||||
* [NineAnimator](https://nineanimator.marcuszhou.com/) / [Discord](https://discord.gg/dzTVzeW)
|
||||
* [Ketsu](https://ketsu.app/download.html) / [Discord](https://discord.gg/gjcy6MQ)
|
||||
* [Tweaked Crunchyroll ++](http://www.iosemulatorspot.com/tweaked-crunchyroll/) - Tweaked Crunchyroll
|
||||
* [MyAnimeList Client](https://apps.apple.com/us/app/myanimelist-official/id1469330778) - MyAnimeList Client
|
||||
* [Otraku](https://github.com/lotusprey/otraku), [Ryuusei](https://ryuusei.moe/) or [AniHyou](https://axiel7.github.io/anihyou) / [GitHub](https://github.com/axiel7/AniHyou-android) - AniList Apps
|
||||
|
||||
|
|
@ -1283,4 +1294,4 @@ https://github.com/Akylas/alpimaps
|
|||
* [SideBooks](https://apps.apple.com/us/app/sidebooks/id409777225) - PDF Reader
|
||||
* [BookPlayer](https://github.com/TortugaPower/BookPlayer) - Audiobook Player
|
||||
* [MangaToon](https://apps.apple.com/us/app/mangatoon-manga-reader/id1385287093), [ZETSU](https://apps.apple.com/us/app/zetsu-by-orion/id1510161371) or [Hanami](https://github.com/oolxg/Hanami) - Manga Reader
|
||||
* [Libby](https://apps.apple.com/us/app/libby-by-overdrive/id1076402606) - Borrow Digital Library Books
|
||||
* [Libby](https://apps.apple.com/us/app/libby-by-overdrive/id1076402606) - Digital Library Books / Extend time via Offline or Airplane mode
|
||||
|
|
@ -29,29 +29,30 @@
|
|||
|
||||
* ⭐ **[Spicetify](https://spicetify.app/)** - Spotify Themes / Plugins
|
||||
* ⭐ **Spicetify Tools** - [CLI](https://spicetify.app) / [Addons](https://github.com/3raxton/spicetify-custom-apps-and-extensions) / [Discord](https://discord.gg/VnevqPp2Rr)
|
||||
* ⭐ **[exportify](https://github.com/watsonbox/exportify)** - Playlist Backup
|
||||
* ⭐ **[playlists.cloud](https://playlists.cloud/)** or [Trikatuka](http://trikatuka.aknakn.eu/) - Playlist Transfer Tools
|
||||
* [sptlrx](https://github.com/raitonoberu/sptlrx) or [Versefy](https://versefy.app/) - Lyric Apps
|
||||
* [Syrics](https://syrics-web-akashrchandran.vercel.app/) - Download Synced Lyrics / [GitHub](https://github.com/akashrchandran/syrics-web)
|
||||
* [Playlist Randomizer](https://stevenaleong.com/tools/spotifyplaylistrandomizer) - Playlist Randomizer
|
||||
* [Playlist Sorter](https://www.playlistsorter.com/) - Sort Playlists
|
||||
* [Timelineify](https://www.timelineify.com/) - Sort Playlists by Release
|
||||
* [Tagify](https://tagify.me/) - Use Playlists as Tags
|
||||
* [Trikatuka](http://trikatuka.aknakn.eu/) or [playlists.cloud](https://playlists.cloud/) - Playlist Transfer Tools
|
||||
* [Share Liked Songs](https://nonnullish.github.io/share-liked-songs/) - Create Shareable Playlist from Liked Songs
|
||||
* [Skiley](https://skiley.net/) - Playlist Manager
|
||||
* [Kotify](https://github.com/dzirbel/kotify) - Organize Spotify Music
|
||||
* [PlaylistProxy](https://playlistproxy.net/) - Create Anonymous Playlists
|
||||
* [PlaylistProxy](https://playlistproxy.net/) - Create Anonymous Playlists / [GitHub](https://github.com/okanten/playlistproxy.net)
|
||||
* [Spotlistr](https://www.spotlistr.com/) - Playlist Converter
|
||||
* [Playlistor](https://playlistor.io/) - Apple Music Playlist Converter
|
||||
* [SpotifyCloud](https://spotifycloud.zamar-roura.com/) - Playlist Words
|
||||
* [Spotify Dedup](https://spotify-dedup.com/) - Playlist Song Dedup / [GitHub](https://github.com/JMPerez/spotify-dedup/)
|
||||
* [exportify](https://github.com/watsonbox/exportify) or [SpotMyBackup](http://www.spotmybackup.com/) - Playlist Backup
|
||||
* [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
|
||||
* [Tierify](https://tierify.app/) - Tier Lists
|
||||
* [Kira](https://kira.vercel.app/) - Browse by Country
|
||||
* [Kira](https://kira.vercel.app/) - Browse by Country / [GitLab](https://gitlab.com/timrossback/kira)
|
||||
* [ListenByLabel](https://www.lbl.fm/) - Browse by Labels
|
||||
* [Syrics](https://syrics-web-akashrchandran.vercel.app/) - Download Synced Lyrics / [GitHub](https://github.com/akashrchandran/syrics-web)
|
||||
* [spotify-github-profile](https://github.com/kittinan/spotify-github-profile) - GitHub Display
|
||||
|
||||
***
|
||||
|
|
@ -61,8 +62,8 @@
|
|||
## ▷ Streaming Apps
|
||||
|
||||
* ⭐ **[Custom YouTube Music](https://th-ch.github.io/youtube-music/)** - YouTube Music Client / [Themes](https://github.com/kerichdev/themes-for-ytmdesktop-player/)
|
||||
* ⭐ **[SpoTube](https://spotube.krtirtho.dev/)** - YouTube Music Client / [GitHub](https://github.com/KRTirtho/spotube)
|
||||
* [MooSync](https://moosync.app/) - YouTube Music Client / [GitHub](https://github.com/Moosync/Moosync)
|
||||
* [SpoTube](https://spotube.krtirtho.dev/) - YouTube Music Client
|
||||
* [yewtube](https://github.com/mps-youtube/yewtube) - YouTube Music Client
|
||||
* [spmp](https://github.com/toasterofbread/spmp) - YouTube Music Client
|
||||
* [Headset](https://headsetapp.co) - YouTube Music Client
|
||||
|
|
@ -87,11 +88,8 @@
|
|||
* ⭐ **[SoundCloud](https://soundcloud.com/)** - User Made Songs / [Spotify Theme](https://userstyles.world/style/5470/soundfy-v3) / [Dark Theme](https://github.com/huds0nx/soundcloud-luna)
|
||||
* ⭐ **[hate5six](https://hate5six.com/)** - Concert Recordings
|
||||
* [Spotify Web Client](https://open.spotify.com/)
|
||||
* [WProject](https://wproject.vercel.app/) - Browser Music
|
||||
* [Groovesharks](https://groovesharks.org/) - Browser Music
|
||||
* [Last.fm](https://www.last.fm/) - Browser Music
|
||||
* [ccMixter](https://dig.ccmixter.org/) - Browser Music
|
||||
* [BIFY](https://bify.net/) - Browser Music
|
||||
* [FreeListenOnline](https://freelistenonline.com/) - Browser Music
|
||||
* [Audiomack](https://audiomack.com/) - Browser Music
|
||||
* [Pandora](https://www.pandora.com/) - Browser Music
|
||||
|
|
@ -112,7 +110,8 @@
|
|||
* [Dream of the 90s](https://www.youtube.com/@Dreamofthe90s/playlists) - Obscure 90s
|
||||
* [OperaOnVideo](https://www.operaonvideo.com/) - Opera Recordings
|
||||
* [Classical Music Only](https://classicalmusiconly.com/) or [musopen](https://musopen.org/music/) - Classical Music
|
||||
* [Bandcamp](https://bandcamp.com/tag/free-music?tab=all_releases) or [Mirlo](https://mirlo.space/) - Free Music Release Platforms
|
||||
* [Bandcamp](https://bandcamp.com/tag/free-music?tab=all_releases) - Free Music Release Platform / [Frontend](https://codeberg.org/sun/Tent)
|
||||
* [Mirlo](https://mirlo.space/) - Free Music Release Platform
|
||||
* [Audius](https://audius.co/) - User Made Music Platform
|
||||
* [AudionautiX](https://audionautix.com/) - Mood-Based Streaming
|
||||
* [Neko Network](https://live.neko-network.net/) - Anime Music Videos
|
||||
|
|
@ -145,12 +144,12 @@
|
|||
* ⭐ **[Daft Punk Cafe](https://daftpunk.cafe/)** - Daft Punk Radio
|
||||
* [Podchaser](https://podchaser.com/), [Rephonic](https://rephonic.com/graph) or [Listen Notes](https://www.listennotes.com/) - Podcast Databases / Trackers
|
||||
* [iHeartRadio](https://www.iheart.com/), [Mixcloud](https://www.mixcloud.com/), [myTuner](https://mytuner-radio.com/), [TuneIn](https://tunein.com/) or [Zeno](https://zeno.fm/) - Podcasts / Radio
|
||||
* [PodParadise](https://www.podparadise.com/), [Podbean](https://www.podbean.com/), [Podbay](https://podbay.fm/), [Google Podcasts](https://podcasts.google.com/), [podcastindex](https://podcastindex.org/), [player.fm](https://player.fm/), [Podcast Republic](https://www.podcastrepublic.net/), [Relay.fm](https://www.relay.fm/) or [BlogTalkRadio](https://www.blogtalkradio.com/popular) - Podcasts
|
||||
* [PodParadise](https://www.podparadise.com/), [Podbean](https://www.podbean.com/), [Podbay](https://podbay.fm/), [podcastindex](https://podcastindex.org/), [player.fm](https://player.fm/), [Podcast Republic](https://www.podcastrepublic.net/), [Relay.fm](https://www.relay.fm/) or [BlogTalkRadio](https://www.blogtalkradio.com/popular) - Podcasts
|
||||
* [Maps.fm](https://maps.fm/) - Find Podcasts from Anywhere
|
||||
* [PodClips](https://podclips.com/) - Podcast Clips
|
||||
* [podcast-dl](https://github.com/lightpohl/podcast-dl), [PodFetch](https://samtv12345.github.io/PodFetch) or [PodGrab](https://github.com/akhilrex/podgrab) - Podcast Downloaders
|
||||
* [CPod](https://github.com/z-------------/CPod) - Podcast App
|
||||
* [PodScripts](https://podscripts.co/) or [PodText](https://podtext.ai/) - Podcast Transcript Search
|
||||
* [PodScripts](https://podscripts.co/) - Podcast Transcript Search
|
||||
* [OpenPodcast](https://openpodcast.dev) - Podcast Analytics
|
||||
* [Archive.org](https://archive.org/details/audio?&sort=-downloads&page=1) - News / Classic Radio / Podcasts
|
||||
* [Dumb Old Time Radio](https://www.dumb.com/oldtimeradio/), [Relic Radio](https://www.relicradio.com/) or [Old Time Radio](https://oldtime.radio/) - Classic Radio
|
||||
|
|
@ -171,10 +170,10 @@
|
|||
* [Pool Suite](https://poolsuite.net/) - Summer Radio
|
||||
* [J1 Radio](https://rec.torontocast.stream/player/) - J-Pop Radio
|
||||
* [LISTEN.moe](https://listen.moe/) - K-Pop Radio
|
||||
* [420.moe](https://420.moe/ ) - 420 Radio
|
||||
* [Nectarine](https://www.scenestream.net/demovibes/streams/) - Demo Scene Music Radio
|
||||
* [Radiooooo](https://radiooooo.com/) - Radio / Time Machine
|
||||
* [Campus FM](https://www.campus-fm.com/) - College Radio
|
||||
* [420.moe](https://420.moe/) - 420 Radio
|
||||
* [Listen To The Clouds](https://listentothe.cloud/), [LoFiATC](https://www.lofiatc.com/) or [LiveATC](https://www.liveatc.net/) - Air Traffic Radio Chatter
|
||||
* [Broadcastify](https://www.broadcastify.com/) - Live Emergency, Aircraft and Rail Radio
|
||||
* [OpenMHz](https://openmhz.com/) - Live Police Radio
|
||||
|
|
@ -224,10 +223,10 @@
|
|||
|
||||
* ⭐ **[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)
|
||||
* ⭐ **[deezer.squid](https://deezer.squid.wtf/)** or [qobuz.squid](https://qobuz.squid.wtf/) - Deezer / Qobuz / FLAC / [Discord](https://discord.gg/ATjPbzR)
|
||||
* ⭐ **[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/)**, [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
|
||||
* ⭐ **[cobalt](https://cobalt.tools/)** - YouTube / 320kb / MP3 / Ad-Free / [Instances](https://instances.hyper.lol/)
|
||||
* [EzMP3](https://ezmp3.cc/) - YouTube / 320kb / MP3 / Ad-Free / [Subreddit](https://www.reddit.com/r/EzMP3/)
|
||||
* [AZMP3](https://azmp3.cc/) - YouTube / 320kb / MP3 / Ad-Free
|
||||
* [YTiz](https://ytiz.xyz/) - YouTube / SoundCloud / Bandcamp / 128kb / AAC / [GitHub](https://github.com/tizerk/ytiz)
|
||||
|
|
@ -250,7 +249,6 @@
|
|||
* [Spytify](https://jwallet.github.io/spy-spotify/overview.html) - Spotify / 160kb Free / 320kb Premium
|
||||
* [Zotify](https://zotify.xyz/) - Spotify / 160kb Free / 320kb Premium / [Discord](https://discord.gg/Arpx9hunkm)
|
||||
* [OnTheSpot](https://github.com/justin025/onthespot) - Spotify / 160kb Free / 320kb Premium / [Discord](https://discord.com/invite/hz4mAwSujH)
|
||||
* [Spotify Direct Downloader](https://github.com/afkarxyz/spotify-downloader-gui) - Lucida / Spotifydown Frontend
|
||||
* [spotify_sync](https://github.com/jbh-cloud/spotify_sync) - Deezer / 128kb Free / FLAC Premium (Firehawk52)
|
||||
* [streamrip](https://github.com/nathom/streamrip) - Deezer / Tidal / Qobuz / SoundCloud / 128kb Free / FLAC Premium (Firehawk52)/ [Colab](https://github.com/r-piratedgames/rip)
|
||||
* [d-fi](https://notabug.org/sayem314/d-fi) - Deezer / FLAC / Requires Premium (Firehawk52) / [GUI](https://github.com/jaylex32/BeatOn)
|
||||
|
|
@ -281,7 +279,7 @@
|
|||
* ⭐ **[BeatSpotBot](https://t.me/BeatSpotBot)** - Deezer / Tidal / Yandex / VK / FLAC
|
||||
* ⭐ **[Glomatico Amazon](https://t.me/GlomaticoAmazonMusicBot)** and **[Glomatico Apple](https://t.me/GlomaticoAppleMusicBot)** - Amazon / Apple / FLAC / [FAQ](https://rentry.org/glomaticobotfaq)
|
||||
* [JioDLBot](https://t.me/JioDLBot) - JioSaavn / Gaana / FLAC
|
||||
* [Spotify_downloa_bot](https://t.me/Spotify_downloa_bot) - YouTube / JioSaavn / 320kb MP3
|
||||
* [Spotify_download_bot](https://t.me/Spotify_downloa_bot) - YouTube / JioSaavn / 320kb MP3
|
||||
* [Music_Downloader_Bot_Spotify](https://t.me/Music_Downloader_Bot_Spotify) - Deezer / YouTube / Spotify / 320kb
|
||||
* [DeezerMusicBot](https://t.me/DeezerMusicBot) - Deezer / 320kb MP3
|
||||
* [deezload2bot](https://t.me/deezload2bot) - Deezer / 320kb MP3
|
||||
|
|
@ -307,7 +305,6 @@
|
|||
|
||||
* 🌐 **[Music Education Masterlist](https://rentry.co/FMHYBase64#music-education-masterlist)**
|
||||
* ↪️ **[Royalty Free Music](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_royalty_free_music)**
|
||||
* ⭐ **[Slider](https://hayqbhgr.slider.kz/)** - 320kb / MP3
|
||||
* ⭐ **[TrackerHub](https://rentry.co/FMHYBase64#trackerhub)** - Artists Spreadsheet / [Discord](https://discord.gg/trackerhub)
|
||||
* ⭐ **[Audio Download CSE](https://cse.google.com/cse?cx=006516753008110874046:ibmyuhh72io)** / [CSE 2](https://cse.google.com/cse?cx=006516753008110874046:ohobg3wvr_w) / [CSE 3](https://cse.google.com/cse?cx=32d85b41e2feacd3f) - Multi-Site Search
|
||||
* [/r/xTrill](https://reddit.com/r/xTrill) - Download App / [Backup](https://reddit.com/r/xTrillBackup)
|
||||
|
|
@ -315,7 +312,6 @@
|
|||
* [VK::MP3](https://metacpan.org/pod/VK::MP3) - VK MP3 Search Tool
|
||||
* [musify](https://musify.club/) - 320kb / MP3
|
||||
* [ccMixter](https://ccmixter.org/) - DL / Stream / 320kb / MP3
|
||||
* [ShareMania](https://sharemania.us/) - 320kb / MP3
|
||||
* [RockDownload](https://www.rockdownload.org/) - 320kb / MP3
|
||||
* [punk.cat](https://punkcata.blogspot.com/) - 320kb / MP3
|
||||
* [SongsLover](https://songslover.me/) - 256kb / MP3
|
||||
|
|
@ -348,18 +344,18 @@
|
|||
* [GetRockMusic](https://getrockmusic.net/) - MP3 / FLAC
|
||||
* [Core Radio](https://coreradio.online/) - MP3 / FLAC
|
||||
* [AlterPortal](https://alterportal.net/) - MP3 / FLAC
|
||||
* [ShareMania](https://sharemania.us/) - FLAC / MP3 / M4A
|
||||
* [Moe:81](https://rentry.co/FMHYBase64#moe81) - MP3 / FLAC
|
||||
* [Plastinka](https://plastinka.org/) - MP3 / FLAC
|
||||
* [Exystence](https://exystence.net/) - MP3 / FLAC
|
||||
* [ThemFire](https://themfire.pro/) - MP3 / FLAC
|
||||
* [Music Rider](https://musicrider.org/) - MP3 / FLAC
|
||||
* [FindFlac](http://findflac.com/) - FLAC / MP3 / MP4
|
||||
* [iPlusFree](https://www7.iplusfree.org/), [iTDMusic](https://itdmusic.in/), [iTopMusicx](https://itopmusicx.com/) or [Plus Premieres](http://www129.pluspremieres.biz//) - iTunes M4A
|
||||
* [iPlusFree](https://www7.iplusfree.org/), [iTDMusic](https://itdmusic.in/) or [Plus Premieres](http://www129.pluspremieres.biz//) - iTunes M4A
|
||||
* [Archive.org](https://archive.org/) - MP3
|
||||
* [xprm](https://xprm.net/) - MP3 / DL / Stream / Requests
|
||||
* [Jimmy R](https://jimmyr.com/mp3_search.php) or [Musgle](http://www.musgle.com/) - Google Directory Search / MP3
|
||||
* [Take Metal](https://takemetal.org/) - Metal / MP3
|
||||
* [DTS-Metal](https://dts-metal.com/) - Metal / MP3
|
||||
* [Me-4U](https://me-4u.com/index.php) - Metal / MP3
|
||||
* [Metalminos](https://metalminos.net/) - Metal / MP3
|
||||
* [TechnicalDeathMetal](https://technicaldeathmetal.org/) - Metal / MP3
|
||||
|
|
@ -367,9 +363,8 @@
|
|||
* [GetMetal Club](https://getmetal.club/) - Metal / MP3 / FLAC
|
||||
* [Nuclear Holocaust](https://nuclear-holocaust.blogspot.com/) - Metal / FLAC
|
||||
* [The Last Disaster](https://thelastdisaster.vip/) - Metal / Hardcore / Rock / MP3 / FLAC
|
||||
* [HPS Music](https://hpsmusic.ru/) - Hardcore / Punk / MP3
|
||||
* [Sophie's Floorboard](https://sophiesfloorboard.blogspot.com/) - Hardcore / MP3
|
||||
* [1Gabba](https://1gabba.pw/), [Gabber](https://gabber.od.ua/), [EDM Lake](https://edmlake.com/), [EDMBoost](https://edmboost.org/), [EDMWaves](https://edmwaves.org/), [MusicFans](https://musicfans.space/), [PSYFP](https://psyfp.ucoz.ru/), [DMO](https://dance-music.org/), [MyPromoSound](https://mypromosound.com/), [ElectronicFresh](https://electronicfresh.com/) or [InEvil](https://www.inevil.com/) - Electronic / MP3
|
||||
* [1Gabba](https://1gabba.pw/), [Gabber](https://gabber.od.ua/), [EDM Lake](https://edmlake.com/), [EDMBoost](https://edmboost.org/), [EDMWaves](https://edmwaves.org/), [MusicFans](https://musicfans.space/), [PSYFP](https://psyfp.ucoz.ru/), [DMO](https://dance-music.org/), [MyPromoSound](https://mypromosound.com/), [ElectronicFresh](https://electronicfresh.com/) - Electronic / MP3
|
||||
* [Ektoplazm](https://ektoplazm.com/) - Electronic / MP3 / FLAC
|
||||
* [1Trance](https://1trance.org/) - Trance / MP3
|
||||
* [1Techno](https://1techno.org/) - Techno / MP3
|
||||
|
|
@ -394,7 +389,6 @@
|
|||
* [MusicRepublic](https://music-republic-world-traditional.blogspot.com/) - World / MP3 / FLAC
|
||||
* [KPopMusicDownload](https://kpopdownloadscmm.blogspot.com/) - K-Pop / MP3
|
||||
* [MP3JP](https://mp3jp.si/) - Japanese / MP3 / FLAC
|
||||
* [JP Music Blog](https://jpmusicblog.com/) - Japanese / MP3 / FLAC
|
||||
* [FondSound](https://www.fondsound.com/) - Experimental / MP3
|
||||
* [Hipstrumentals](https://hipstrumentals.com/) - Instrumentals / MP3
|
||||
* [MikuDB](https://mikudb.moe/) - Vocaloid / MP3
|
||||
|
|
@ -416,7 +410,7 @@
|
|||
* ⭐ **[Redacted](https://interviewfor.red/)** - MP3 / FLAC
|
||||
* ⭐ **[New-Team](https://new-team.org/)** - MP3 / FLAC
|
||||
* ⭐ **[Orpheus](https://orpheus.network/)** - MP3 / FLAC / [Interviews](https://interview.orpheus.network/)
|
||||
* ⭐ **[Redtopia](https://rentry.co/FMHYBase64#redtopia)** - Redtopia Repository / FLAC / [Interviews](https://interviewfor.red/en/index.html)
|
||||
* ⭐ **[Redtopia](https://rentry.co/FMHYBase64#redtopia)** - Redtopia Repository / FLAC
|
||||
* ⭐ **[Lidarr](http://lidarr.audio/)** or [Headphones](https://github.com/rembo10/headphones) - Audio Torrent Autodownload
|
||||
* ⭐ **[Audio Torrent CSE](https://cse.google.com/cse?cx=006516753008110874046:v75cyb4ci55)** - Multi-Site Search
|
||||
* [DimeADozen](http://www.dimeadozen.org/) - MP3 / FLAC
|
||||
|
|
@ -456,7 +450,7 @@
|
|||
|
||||
## ▷ Game Soundtracks
|
||||
|
||||
* [Khinsider](https://downloads.khinsider.com/) / [Downloader](https://github.com/obskyr/khinsider), [2](https://github.com/weespin/KhinsiderDownloader) - Game Soundtracks / MP3
|
||||
* ⭐ **[Khinsider](https://downloads.khinsider.com/)** - Game Soundtracks / MP3 / [Downloader](https://github.com/obskyr/khinsider), [2](https://github.com/weespin/KhinsiderDownloader)
|
||||
* [RetroTracks](https://retro.sx/) - Retro Game Soundtracks / MP3
|
||||
* [VGMPF](https://www.vgmpf.com/Wiki/index.php) - Retro Game Soundtracks / MP3
|
||||
* [VGMRips](https://vgmrips.net/packs/) - Retro Game Music Rips / VGM
|
||||
|
|
@ -491,7 +485,6 @@
|
|||
* ⭐ **[Tunefind](https://www.tunefind.com/)** - Find Music from Movies / TV
|
||||
* ⭐ **[Discover Quickly](https://discoverquickly.com/)**, **[Chosic](https://www.chosic.com/)**, [TapeFear](https://www.tapefear.com/), [SongsLikeX](https://songslikex.com/), [Dubolt](https://dubolt.com/) or [Maroofy](https://maroofy.com/) - Song Discovery Tools
|
||||
* [Music-Map](https://www.music-map.com/), [Musicroamer](https://www.musicroamer.com/), [Gnoosic](https://www.gnoosic.com/), [Music Galaxy](https://galaxy.spotifytrack.net/), [SAGE](https://hate5six.com/sage), [LivePlasma](https://liveplasma.com/) or [GNOD](https://www.gnod.com/) - Artist Discovery Tools
|
||||
* [Discovering Music](https://4chanmusic.fandom.com/wiki/Discovering_Music) - Music Discovery Guide
|
||||
* [Odesli](https://odesli.co/) - Song / Podcast Platform Search / [Telegram Bot](https://t.me/odesli_bot)
|
||||
* [Kworb](https://kworb.net/) - Music Top Charts
|
||||
* [ClassicRockHistory](https://www.classicrockhistory.com/classic-rock-bands-list-and-directory/) - Classic Rock Band Archive
|
||||
|
|
@ -505,26 +498,22 @@
|
|||
* [XM Playlist](https://xmplaylist.com/) - XM Radio Spotify Playlists
|
||||
* [Spotify Playlist Archive](https://spotifyplaylistarchive.com/) - Archive of Official Spotify Playlists
|
||||
* [Spoqify](https://spoqify.com/) - Anonymous Playlist Generator
|
||||
* [TuneMunk](https://www.tunemunk.com/) - Spotify Playlist Sharing
|
||||
* [MusitcTo](https://www.musicto.com/) - Musician Curated Playlists
|
||||
* [BoilTheFrog](http://boilthefrog.playlistmachinery.com/) - Create Playlist from 2 Artists
|
||||
* [UpcomingPlaylists](https://www.upcomingplaylists.com/) - Playlists of Artists Playing Live Near You
|
||||
* [TuneMyMusic](https://www.tunemymusic.com/) - Transfer Playlists between Services
|
||||
* [Obscurify](https://obscurifymusic.com/) or [MusicTaste](https://musictaste.space/) - Compare Music Taste to Others
|
||||
* [Random Song Generator](https://randomsonggenerator.com/), [Samplette](https://samplette.io/) or [UnknownMusicBot](https://t.me/UnknownMusicBot) - Play Random YouTube Songs
|
||||
* [Random Songs](https://random-song.com/) - Play Random Spotify Songs
|
||||
* [Random Album Bookmark Script](https://pastebin.com/rR4qrvnX) - Find Random Albums
|
||||
* [1001 Albums Generator](https://1001albumsgenerator.com/) - Generates Random Album Each Weekday
|
||||
* [DigitalDreamDoor](https://digitaldreamdoor.com/) - Greatest 100 Lists
|
||||
* [Acclaimed Music](https://www.acclaimedmusic.net/) - Discover Acclaimed Music of the Times
|
||||
* [Best Ever Albums](https://www.besteveralbums.com/index.php) or [AlbumByMood](https://www.albumbymood.com/) - Discover Albums
|
||||
* [Best Ever Albums](https://www.besteveralbums.com/index.php) - Discover Albums
|
||||
* [MusicGenreTree](https://www.musicgenretree.org/chart.html) - Discover New Music by Genre
|
||||
* [SecondHandSongs](https://secondhandsongs.com/) or [WhoSampled](https://www.whosampled.com/) - Cover / Remix Databases
|
||||
* [SoundtrackTracklist](https://soundtracktracklist.com/) or [FilmMusicSite](https://www.filmmusicsite.com/en/) - Soundtrack Databases
|
||||
* [generasia](https://www.generasia.com/) - Asian Music Wiki
|
||||
* [dbkpop](https://dbkpop.com/), [KPop Fandom](https://kpop.fandom.com/wiki/) or [KPopping](https://kpopping.com/) - K-Pop Databases
|
||||
* [Stage48](http://stage48.net/wiki/index.php) - Stage48 Idol Group Database
|
||||
* [KHip-pop Wiki](https://khiphop.fandom.com/) - Korean Hip-pop Wiki
|
||||
* [Music.ishkur](https://music.ishkur.com/) - Electronic Music Guide
|
||||
* [This Is What You Listen To](https://tiwylt.musimap.io/) - Song Genre / Info Analyzer
|
||||
* [Identifying Music Genres](https://chunisama.github.io/Identifying-Music-Genres/) - Compare Music Genres
|
||||
|
|
@ -535,7 +524,8 @@
|
|||
* [MediaTracker](https://github.com/bonukai/MediaTracker) - Self-Hosted Media Tracker
|
||||
* [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://notabug.org/SuperSaltyGamer/ame) - Music Site Enhancement Userscripts
|
||||
* [AME](https://gitlab.com/SuperSaltyGamer/ame) - Music Site Enhancement Userscripts
|
||||
* [Music Chart Maker](https://musicchartmaker.com/) - Create Album Collages
|
||||
|
||||
***
|
||||
|
||||
|
|
@ -550,11 +540,8 @@
|
|||
* ⭐ **[FFmpeg](https://ffmpeg.org/)**, [fre:ac](https://www.freac.org/) / [GitHub](https://github.com/enzo1982/freac), [FlicFlac](https://github.com/DannyBen/FlicFlac), [LameXP](https://sourceforge.net/projects/lamexp/) or [Sox](https://sourceforge.net/projects/sox/) - Audio Converters
|
||||
* ⭐ **[Pillowcase](https://pillowcase.su/)** - Audio File Host / 200MB (500MB with Account) / Forever
|
||||
* [Phiola](https://github.com/stsaz/phiola), [AudioToolSet](https://audiotoolset.com/) or [Safeaudiokit](https://safeaudiokit.com/) - Audio Multi-Tool Apps / Sites
|
||||
* [qAAC](https://github.com/nu774/qaac) - QuickTime AAC/ALAC encoder
|
||||
* [opus-tools](https://opus-codec.org/downloads/) - Encode, Inspect and Decode .opus Files
|
||||
* [Tunebat](https://tunebat.com/) - Music Key / BPM Database
|
||||
* [ASAK](https://github.com/chaosprint/asak) - Audio Recording
|
||||
* [Cleanfeed](https://cleanfeed.net/) - Live Audio Recording
|
||||
* [Karaoke Mugen](https://mugen.karaokes.moe/en/) - Karaoke App
|
||||
* [X-Minus](https://x-minus.pro/) or [karaoke-maker](https://humtools.com/karaoke-maker/) - Create Karaoke Songs
|
||||
* [VB Cables](https://rentry.co/FMHYBase64#vb-cables) - Virtual Audio Cables
|
||||
* [Librescore Downloader](https://github.com/LibreScore/dl-librescore) - Librescore Downloader
|
||||
|
|
@ -570,19 +557,15 @@
|
|||
* ⭐ **[VOX Music Player](https://vox.rocks/windows-music-player)**
|
||||
* ⭐ **[MusicBee](https://getmusicbee.com/)**
|
||||
* [Harmonoid](https://harmonoid.com/) / [Discord](https://discord.gg/2Rc3edFWd8)
|
||||
* [Muzik](https://muzik-apps.github.io/muzik-web/)
|
||||
* [TimeStetch](https://29a.ch/timestretch/) - Web-Based
|
||||
* [MusikCube](https://musikcube.com/) - Terminal-Based
|
||||
* [XMPlay](https://www.un4seen.com/) - Module-Friendly
|
||||
* [Butterchurn Visualizer](https://butterchurnviz.com/), [MusicVid](https://musicvid.org/), [Vizzy](https://vizzy.io/) or [CatNip](https://github.com/noriah/catnip) - Audio Visualizers
|
||||
* [PartyEngine](https://aggrocrab.itch.io/partyengine) - Audio Party Visualizer
|
||||
* [NCurses++](https://github.com/ncmpcpp/ncmpcpp)
|
||||
* [Roon](https://rutracker.org/forum/tracker.php?nm=roon)
|
||||
* [iTunes](https://www.apple.com/itunes/)
|
||||
* [Audacious](https://audacious-media-player.org/)
|
||||
* [Strawberry](https://www.strawberrymusicplayer.org/)
|
||||
* [Exaile](https://exaile.org/)
|
||||
* [Jajuk](https://www.jajuk.info/)
|
||||
* [quodlibet](https://github.com/quodlibet/quodlibet/)
|
||||
* [deadbeef](https://deadbeef.sourceforge.io/)
|
||||
* [Museeks](https://museeks.io/)
|
||||
|
|
@ -627,7 +610,7 @@
|
|||
* [TagEditor](https://github.com/Martchus/tageditor) - Metadata Organizer
|
||||
* [tone](https://github.com/sandreas/tone) - Metadata Organizer
|
||||
* [Kid3](https://kid3.kde.org/) - Metadata Organizer
|
||||
* [MetaTogger](https://www.luminescence-software.org/en/metatogger) - Metadata Organizer
|
||||
* [MetaTogger](https://luminescence-software.org/en/metatogger/about/) - Metadata Organizer
|
||||
* [MusicBrainz](https://picard.musicbrainz.org/) - Metadata Organizer
|
||||
* [TagScanner](https://www.xdlab.ru/en/) - Metadata Organizer
|
||||
|
||||
|
|
@ -651,7 +634,7 @@
|
|||
|
||||
## ▷ Lyric Sites
|
||||
|
||||
* ⭐ **[dumb](https://github.com/rramiachraf/dumb)** or [genius](https://genius.com/) - Lyric Explanations
|
||||
* ⭐ **[dumb](https://github.com/rramiachraf/dumb)**, [Intellectual](https://intellectual.insprill.net/) or [genius](https://genius.com/) - Lyric Explanations
|
||||
* [AZLyrics](https://www.azlyrics.com/), [Lyricsify](https://www.lyricsify.com/), [FindMusicByLyrics](https://findmusicbylyrics.com/) or [Lyrics.com](https://www.lyrics.com/) - Lyric Search
|
||||
* [Lyricify](https://github.com/WXRIW/Lyricify-App) - Lyrics Desktop App
|
||||
* [Versefy](https://versefy.app/) or [Lyrics-In-Terminal](https://github.com/Jugran/lyrics-in-terminal) - Lyric Finder for Spotify / Tidal / VLC
|
||||
|
|
@ -706,11 +689,10 @@
|
|||
* 🌐 **[Awesome Music Production](https://github.com/ad-si/awesome-music-production)** or [AFreeStudio](https://www.afreestudio.com/) - Music Production Indexes
|
||||
* 🌐 **[MultiSong Leaderboard](https://mvsep.com/quality_checker/multisong_leaderboard)** - Music & Voice Separation AI Leaderboards
|
||||
* ↪️ **[AI Audio Generation](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/ai#wiki_.25BA_audio_generation)**
|
||||
* ↪️ **[Remove Vocals](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_remove_vocals)**
|
||||
* ↪️ **[Separate Voice / Instrumentals](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_remove_vocals)**
|
||||
* ⭐ **[KVR Audio](https://www.kvraudio.com/)** or [VI-CONTROL](https://vi-control.net/community/) - Audio Production News / Forums
|
||||
* [ProducerLibrary](https://producerlibrary.carrd.co/) - Audio Production Tutorials / [Discord](https://discord.gg/KfyHfUTjsK)
|
||||
* [We Suck At Producing](https://discord.gg/wsap) - Audio Production Discord
|
||||
* [Demucs](https://github.com/adefossez/demucs) / [Colab](https://colab.research.google.com/drive/1dC9nVxk3V_VPjUADsnFu8EiT-xnU1tGH?usp=s), [Vocal Remover](https://separatemusic.com/), [Acapella-Extractor](https://www.acapella-extractor.com/), [splitmysong](https://www.splitmysong.com/), [free-music-demixer](https://freemusicdemixer.com/), [Mikrotakt](https://mikrotakt.app/), [ezstems](https://ezstems.com/) or [melody ml](https://melody.ml/) - Separate Voice from Instrumentals
|
||||
* [Adobe Enhance](https://podcast.adobe.com/enhance) - Speech Enhancer
|
||||
* [Chowdhury DSP](https://chowdsp.com/products.html) - Audio Signal Processing
|
||||
* [Oscilloscope](https://bummsn.de/osc_txt/) - Audio Oscillation Test (turn volume down)
|
||||
|
|
@ -736,17 +718,13 @@
|
|||
* [plugdata](https://plugdata.org/) - Visual Audio Editor / [Discord](https://discord.com/invite/eT2RxdF9Nq)
|
||||
* [Element](https://kushview.net/element/), [Bespoke](https://www.bespokesynth.com/) or [SunVox](https://warmplace.ru/soft/sunvox/) - Modular Audio Environments / [Discord](https://discord.com/invite/RVk3RVJ)
|
||||
* [Music Experiment](https://petersalomonsen.com/webassemblymusic/livecodev2/), [Sonic-Pi](https://sonic-pi.net/), [SuperCollider](https://supercollider.github.io/) or [WebChuck IDE](https://ccrma.stanford.edu/~tzfeng/webchuck-ide/) - Create Music with Code
|
||||
* [TuneFlow](https://tuneflow.com/) - AI Audio Editor
|
||||
* [WaveTracker](https://wavetracker.org/) - Wavetable Audio Editor / [GitHub](https://github.com/squiggythings/WaveTracker)
|
||||
* [ocenaudio](https://www.ocenaudio.com/) - Audio Editor
|
||||
* [Wavosaur](https://www.wavosaur.com/) - Audio Editor
|
||||
* [Reaper](https://www.reaper.fm/) - Audio Editor / [Note](https://pastebin.com/aP4M6ArY)
|
||||
* [Cakewalk](https://www.bandlab.com/products/cakewalk) - Audio Editor / [Discord](https://discord.com/invite/bandlab)
|
||||
* [Audovia Music](https://audovia.co.uk/) - Classical Music Creator (Linux Only)
|
||||
* [danielx](https://danielx.net/composer/) or [AMS](https://flyx.org/ams/) - Mario Paint Composer Ports / [Archive](https://archive.org/details/mariopaintcomposer_201609)
|
||||
* [LittleSoundDJ](https://www.littlesounddj.com/lsd/index.php) - Game Boy Audio Editor
|
||||
* [Open Note Block Studio](https://opennbs.org/) - Minecraft Note Block Song Editor
|
||||
* [QasarBeach](https://adamstrange.itch.io/qasarbeach) - Fairlight CMI Emulation
|
||||
* [Upiano](https://github.com/eliasdorneles/upiano) - Terminal Piano
|
||||
* [Rosegarden](https://rosegardenmusic.com/) or [Ariamaestosa](https://ariamaestosa.github.io/ariamaestosa/docs/index.html) - Midi Sequencer / Notation Editors
|
||||
* [Basic Pitch](https://basicpitch.spotify.com/) - Create MIDI via Sound
|
||||
* [BitMidi](https://bitmidi.com/) or [VGMusic](https://www.vgmusic.com/) - MIDI Files
|
||||
|
|
@ -764,7 +742,6 @@
|
|||
* [Chrome Song Maker](https://musiclab.chromeexperiments.com/Song-Maker/) - Sequencer
|
||||
* [Pro-54](https://cmajor.dev/docs/Examples/Pro54/) - Pro-53 Browser Port
|
||||
* [Roland50.studio](https://roland50.studio/) or [Acid Machine 2](https://errozero.co.uk/acid-machine/) - Drum Machine / TB-303 Bass Synth
|
||||
* [WubMachine](https://the.wubmachine.com/) - Dubstep Music Creator
|
||||
* [Sequencer](https://sequencer.henryfellerhoff.com/) or [DrawBeats](https://drawbeats.com/) - Scale Sequencers
|
||||
* [OnlineSequencer](https://onlinesequencer.net/) - Music Sequencer
|
||||
* [Petaporon](https://pixwlk.itch.io/petaporon) - Piano Sequencer / [Instrument Editor](https://pixwlk.itch.io/petaporon-editor)
|
||||
|
|
@ -844,6 +821,7 @@
|
|||
* [Free-Loops](https://free-loops.com/)
|
||||
* [Freesound](https://freesound.org/)
|
||||
* [GDC](https://sonniss.com/gameaudiogdc)
|
||||
* [Citizen DJ](https://citizen-dj.labs.loc.gov/)
|
||||
* [soundbible](https://soundbible.com/)
|
||||
* [SoundGator](https://www.soundgator.com/)
|
||||
* [FindSounds](https://www.findsounds.com/)
|
||||
|
|
@ -860,6 +838,10 @@
|
|||
|
||||
***
|
||||
|
||||
# ► [System Audio](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/system-tools/#wiki_.25B7_system_audio)
|
||||
|
||||
***
|
||||
|
||||
# ► [Android Audio](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/android#wiki_.25BA_android_audio)
|
||||
|
||||
***
|
||||
|
|
|
|||
|
|
@ -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/) + [Sources](https://pastebin.com/vXzVCEda) [watch.lonelil](https://watch.lonelil.ru/)** + [Sources](https://watch.lonelil.ru/onboarding/extension) / [Nunflix](https://nunflix.com/) / [Braflix](https://www.braflix.st/)**
|
||||
* **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/)**
|
||||
|
|
@ -55,7 +55,7 @@ For mobile we recommend **[Cromite](https://github.com/uazo/cromite)**, **[Firef
|
|||
### Music
|
||||
|
||||
* **Streaming: [SpotX](https://github.com/SpotX-Official/SpotX) / [Custom YouTube Music](https://th-ch.github.io/youtube-music/)**
|
||||
* **Downloading: [lucida](https://lucida.to/) / [squid.wtf](https://deezer.squid.wtf/) / [MP3 Daddy](https://mp3-daddy.com/) / [Soulseek](https://slsknet.org/)**
|
||||
* **Downloading: [lucida](https://lucida.to/) / [squid.wtf](https://squid.wtf/) / [MP3 Daddy](https://mp3-daddy.com/) / [Soulseek](https://slsknet.org/)**
|
||||
* **Mobile: [xManager](https://www.xmanagerapp.com/) / [InnerTune](https://github.com/z-huang/InnerTune) / [EeveeSpotify](https://github.com/whoeevee/EeveeSpotify) (iOS)**
|
||||
* **Track / Discover: [Last.fm](https://www.last.fm/home) / [RateYourMusic](https://rateyourmusic.com/)**
|
||||
|
||||
|
|
@ -73,7 +73,7 @@ For mobile we recommend **[Cromite](https://github.com/uazo/cromite)**, **[Firef
|
|||
|
||||
### Reading
|
||||
|
||||
* **Downloading: [Annas Archive](https://annas-archive.org/) / [Library Genesis](https://libgen.rs/) / [Z-Library](https://singlelogin.re/) / [Mobilism](https://forum.mobilism.org) / [Bookracy](https://bookracy.ru)**
|
||||
* **Downloading: [Annas Archive](https://annas-archive.org/) / [Library Genesis](https://libgen.is) / [Z-Library](https://singlelogin.re/) / [Mobilism](https://forum.mobilism.org) / [Bookracy](https://bookracy.ru)**
|
||||
* **Audiobooks: [AudiobookBay](https://audiobookbay.lu/) / [Mobilism Audiobooks](https://forum.mobilism.org/viewforum.php?f=124) / [Tokybook](https://tokybook.com/)**
|
||||
* **Manga: [ComicK](https://comick.io/) / [MangaSee](https://mangasee123.com/) / [MangaDex](https://mangadex.org/)**
|
||||
* **Comics: [ReadComicsOnline](https://readcomiconline.li/) / [GetComics](https://getcomics.org/)**
|
||||
|
|
@ -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.
|
||||
|
||||
|
|
@ -126,7 +126,7 @@ Downloading files through torrenting can cause issues with your ISP, so using a
|
|||
|
||||
* **Torrent Clients: [qBittorrent](https://www.qbittorrent.org/) / [Transmission](https://transmissionbt.com/) / [Deluge](https://www.deluge-torrent.org/)**
|
||||
* **Torrent Sites: [TorrentGalaxy](https://torrentgalaxy.to/) / [RuTracker](https://rutracker.org/)**
|
||||
* **Torrent Streaming: [Stremio](https://www.stremio.com/) + [Addons](https://stremio-addons.netlify.app/) / [Guide](https://viren070.github.io/guides/stremio/guide)**
|
||||
* **Torrent Streaming: [Stremio](https://www.stremio.com/) + [Addons](https://stremio-addons.netlify.app/) / [Guide](https://guides.viren070.me/stremio), [2](https://rentry.co/bye-sudo)**
|
||||
|
||||
***
|
||||
|
||||
|
|
|
|||
352
docs/devtools.md
352
docs/devtools.md
|
|
@ -18,6 +18,7 @@
|
|||
* [TheSecMaster](https://twitter.com/TheSecMaster1) - Cybersecurity Twitter
|
||||
* [Tech-Blogs](https://tech-blogs.dev/) - Blogs for Developers
|
||||
* [The Devs Network](https://thedevs.network/) - Developer Chat
|
||||
* [DevBuddies](https://buddies.dev/) - Search for Programming Partners
|
||||
* [StackShare](https://stackshare.io/) - Tech Stack Collaboration
|
||||
|
||||
***
|
||||
|
|
@ -41,6 +42,10 @@
|
|||
|
||||
***
|
||||
|
||||
# ► [Developer Learning](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/edu#wiki_.25BA_developer_learning)
|
||||
|
||||
***
|
||||
|
||||
# ► Developer Tools
|
||||
|
||||
* 🌐 **[Awesome Emacs](https://github.com/emacs-tw/awesome-emacs)** or [Melpa](https://melpa.org/) - Emacs Packages / [Tiling](https://github.com/ch11ng/exwm)
|
||||
|
|
@ -53,8 +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
|
||||
|
|
@ -113,34 +119,22 @@
|
|||
* ⭐ **Electron Tools** - [App Store](https://www.electronjs.org/apps/) / [Debugger](https://github.com/pd4d10/debugtron) / [Mod Loader](https://kernel.fish/) / [Builder](https://www.electron.build/)
|
||||
* ⭐ **[new(releases)](https://newreleases.io/)** - Software Release Notifications
|
||||
* [Proton Native](https://proton-native.js.org/), [Neutralinojs](https://neutralino.js.org/), [Electron](https://www.electronjs.org/), [Flet](https://flet.dev/) or [Tauri](https://tauri.app/) / [Resources](https://github.com/tauri-apps/awesome-tauri) - Desktop App Builders
|
||||
* [vfox](https://vfox.lhan.me/) - SDK Version Manager
|
||||
* [WinFsp](https://winfsp.dev/) - Write File Systems (i.e. "Windows drives")
|
||||
* [Budibase](https://budibase.com/), [ToolJet](https://tooljet.com/), [retool](https://retool.com/) or [Appsmith](https://www.appsmith.com/) - Internal Tool Builders
|
||||
* [Budibase](https://budibase.com/), [ToolJet](https://tooljet.com/) or [Appsmith](https://www.appsmith.com/) - Internal Tool Builders
|
||||
* [Theos](https://theos.dev/) - Program Build System / [GitHub](https://github.com/theos/theos) / [Jailed Tweaks](https://github.com/kabiroberai/theos-jailed/wiki/Installation)
|
||||
* [New Software](https://github.com/ardalis/new-software-project-checklist) - Project Decision Checklist
|
||||
* [Radicle](https://radicle.xyz/) - P2P Software Development
|
||||
* [MSYS2](https://www.msys2.org/) - Windows Software Creator
|
||||
* [Nomad](https://www.nomadproject.io/) / [GitHub](https://github.com/hashicorp/nomad), [Dokploy](https://github.com/dokploy/dokploy), [Kamal](https://kamal-deploy.org/) / [Discord](https://discord.gg/YgHVT7GCXS) or [Waypoint](https://www.waypointproject.io) - App Deployment
|
||||
* [Nomad](https://www.nomadproject.io/) / [GitHub](https://github.com/hashicorp/nomad), [Dokploy](https://github.com/dokploy/dokploy) or [Waypoint](https://www.waypointproject.io) - App Deployment
|
||||
* [Dotnet Content Creators](https://www.wearedotnet.io/) - .NET Content Creators Index
|
||||
* [Dotnet Releaser](https://github.com/xoofx/dotnet-releaser) - Automate Release of .NET Applications
|
||||
* [dnSpyEx](https://github.com/dnSpyEx/dnSpy) - .NET Debugger and Assembly Editor
|
||||
* [Gaultier Blog](https://gaultier.github.io/blog/x11_x64.html) - Learn x86-64 Assembly
|
||||
* [dnSpyEx](https://github.com/dnSpyEx/dnSpy) - .NET Debugger and Assembly Editor
|
||||
* [Crontab Guru](https://crontab.guru/) - Crontab Editor / Job Scheduler
|
||||
* [Cron AI](https://cron-ai.vercel.app/) - Convert Words to Cron Expressions
|
||||
* [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), [Fyne](https://fyne.io/) or [QT Designer](https://build-system.fman.io/qt-designer-download) - GUI Development Tools
|
||||
* [BugSnag](https://www.bugsnag.com/) - Application Stability Monitor
|
||||
* [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
|
||||
* [CODEX-Installer](https://github.com/SolsticeSpectrum/CODEX-Installer) - Original CODEX Installer Code
|
||||
* [Sparkle](https://sparkle-project.org) - MacOS Update Framework
|
||||
* [Dify](https://dify.ai/) - Create AI Apps
|
||||
* [Jina](https://docs.jina.ai) - Create AI Applications
|
||||
* [Ink](https://github.com/vadimdemedes/ink) - Create Interactive CLI Apps
|
||||
* [smenu](https://github.com/p-gen/smenu) - Create CLI Menus
|
||||
* [Enquirer](https://github.com/enquirer/enquirer) or [Prompts](https://github.com/terkelg/prompts) - Create CLI Prompts
|
||||
* [blessed-contrib](https://github.com/yaronn/blessed-contrib) - Create Terminal Applications
|
||||
* [Etebase](https://www.etebase.com/) - Encrypted App Backend
|
||||
* [tl;drLegal](https://www.tldrlegal.com/) - Software License Summaries
|
||||
* [VirtualBuddy](https://github.com/insidegui/VirtualBuddy) - Virtualize macOS 12 and later on Apple Silicon
|
||||
|
|
@ -156,35 +150,14 @@
|
|||
* 🌐 **[Awesome Android UI](https://github.com/wasabeef/awesome-android-ui)**, [UIGarage](https://uigarage.net/), [UXArchive](https://uxarchive.com/), [Mobbin](https://mobbin.com/), [UISources](https://www.uisources.com/) or [LovelyUI](https://lovelyui.com/) - Mobile UI Resources
|
||||
* 🌐 **[Heroku-Alt](https://rentry.co/Heroku-Alt)** or [heroku-free-alternatives](https://github.com/anandrmedia/heroku-free-alternatives) - Heroku Alternatives
|
||||
* ↪️ **[App Mockups](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_app_.2F_site_mockups)**
|
||||
* ⭐ **[Tizen](https://www.tizen.org/)** - Android TV App Creator
|
||||
* ⭐ **[Android Developer Roadmap](https://github.com/skydoves/android-developer-roadmap)**
|
||||
* [SupaBase](https://supabase.com/), [Kodular](https://www.kodular.io/), [Glide](https://www.glideapps.com/), [AppCreator24](https://www.appcreator24.com/), [Dokku](https://dokku.com/), [Flutter](https://flutter.dev/) / [Resources](https://github.com/Solido/awesome-flutter), [2](https://github.com/leanflutter/awesome-flutter-desktop), [Plasmic](https://www.plasmic.app/), [noodl](https://www.noodl.net/) or [Android Studio](https://developer.android.com/studio/index.html) - App Creators / Builders
|
||||
* [StreamLit](https://streamlit.io/) - Data Science App Creator / [Templates](https://extras.streamlit.app/)
|
||||
* [Windows App Development](https://learn.microsoft.com/en-us/windows/apps/) - Windows App Dev Docs
|
||||
* [Xamarin](https://dotnet.microsoft.com/en-us/apps/xamarin) - App Development Platform / [GitHub](https://github.com/xamarin)
|
||||
* [Framer](https://www.framer.com/) - Interactive Site / App Design Tool
|
||||
* [MemberPrism](http://r.ftqq.com/MemberPrism2/) - Member-Only App Builder
|
||||
* [butterfly](https://github.com/GetStream/butterfly) - App UI Builder
|
||||
* [Layout Editor](https://apt.izzysoft.de/fdroid/index/apk/com.itsvks.layouteditor) - App Layout Editor
|
||||
* [Flutter Login Page Design](https://github.com/afgprogrammer/Flutter-Login-Page-Design) or [LoginCritter](https://github.com/cgoldsby/LoginCritter) - Login Page Designs
|
||||
* [SupaBase](https://supabase.com/), [Plasmic](https://www.plasmic.app/) or [Android Studio](https://developer.android.com/studio/index.html) - App Creators / Builders
|
||||
* [App ideas](https://github.com/florinpop17/app-ideas) - Collection of App Ideas
|
||||
* [Fastlane](https://fastlane.tools/) - App Development Automation / [GitHub](https://github.com/fastlane/fastlane)
|
||||
* [Blisk](https://blisk.io/) - Cross-Device Testing
|
||||
* [Percy](https://percy.io/) - Visual App Review Platform
|
||||
* [Booster](https://booster.johnsonlee.io/) - Mobile App Optimization
|
||||
* [Xcodes App](https://github.com/XcodesOrg/XcodesApp) - Xcode Manager
|
||||
* [ControlRoom](https://github.com/twostraws/ControlRoom) - Xcode Simulator Controller
|
||||
* [DevCleaner](https://github.com/vashpan/xcode-dev-cleaner) - Xcode Cache Cleaner
|
||||
* [IconKitchen](https://icon.kitchen/) or [AppIcon](https://appicon.co/) - App Icon Generator
|
||||
* [MDB GO](https://mdbgo.com/) - Free App Hosting
|
||||
* [namae](https://namae.dev/) - App Name Availability Check
|
||||
* [Sketchbook Compose](https://github.com/GetStream/sketchbook-compose) - Jetpack Sketchbook
|
||||
* [XDGuru](https://www.xdguru.com/) - Adobe XD Resources
|
||||
* [Median](https://median.co/) - Convert Websites to Mobile Apps
|
||||
* [Flutter Tips and Tricks](https://github.com/vandadnp/flutter-tips-and-tricks) - Flutter Tips and Tricks
|
||||
* [Media Kit](https://github.com/media-kit/media-kit) - Video / Audio Library for Flutter and Dart
|
||||
* [Uiautomator2](https://github.com/openatx/uiautomator2), [ADB](https://github.com/ashishb/adb-enhanced) or [Appium](https://appium.io/) / [GitHub](https://github.com/appium/appium) - Automated App Testing
|
||||
* [SigNoz](https://signoz.io/) - Detect App Issues
|
||||
* [ADB](https://github.com/ashishb/adb-enhanced) or [Appium](https://appium.io/) / [GitHub](https://github.com/appium/appium) - Automated App Testing
|
||||
* [Privado](https://docs.privado.ai) - Generate App Privacy Reports / [GitHub](https://github.com/Privado-Inc/privado)
|
||||
* [PM2](https://pm2.keymetrics.io/) - Process Manager
|
||||
* [Mantine](https://mantine.dev/) - Components and Templates
|
||||
|
|
@ -192,21 +165,12 @@
|
|||
* [Official Android Courses](https://developer.android.com/courses) - Android Training Courses
|
||||
* [Android Libhunt](https://android.libhunt.com/) - Android Packages
|
||||
* [Android-Iconics](https://github.com/mikepenz/Android-Iconics) - Use Any Icon / Font as Your Drawable App
|
||||
* [Plank](https://launchpad.net/plank) - Simple Dock / [GitHub](https://github.com/ricotz/plank)
|
||||
* [AndroidAssetStudio](https://romannurik.github.io/AndroidAssetStudio/) - Android App Assets
|
||||
* [Contacts Android](https://vestrel00.github.io/contacts-android/) - Android Contacts APIs
|
||||
* [Compose Samples](https://developer.android.com/develop/ui/compose) - Android UI Toolkit
|
||||
* [Push Notifications API](https://github.com/viktorholk/push-notifications-api) - Push Notifications API
|
||||
* [TV Samples](https://github.com/android/tv-samples) - Android TV App Samples
|
||||
* [Lich](https://github.com/line/lich) - Android Development Libraries
|
||||
* [androidx](https://github.com/androidx/androidx) - Android Development Environment for Jetpack Extensions
|
||||
* [Redex](https://fbredex.com/) - Android Bytecode Optimizer
|
||||
* [SwiftDump](https://github.com/neil-wu/SwiftDump) - Retrieve Swift Object info from Mach-O file
|
||||
* [SpreadsheetView](https://github.com/bannzai/SpreadsheetView) - Spreadsheet UI for iOS Apps
|
||||
* [Xcode](https://developer.apple.com/xcode/) - Test and Build iOS / iPadOS Apps
|
||||
* [iOS Icon Gallery](https://www.iosicongallery.com/) - iOS Icon Examples
|
||||
* [PrivacyFlash-Pro](https://github.com/privacy-tech-lab/privacyflash-pro) - Generate iOS Privacy Policies
|
||||
* [Appleshouter](https://github.com/kosmigramma/appleshouter) - iOS notifications for PWAs and Web apps
|
||||
|
||||
***
|
||||
|
||||
|
|
@ -277,14 +241,15 @@
|
|||
|
||||
## ▷ GitHub Tools
|
||||
|
||||
* 🌐 **[GitHub Awesome](https://app.polymersearch.com/discover/github-awesome)**, [OSS Insight](https://ossinsight.io/), [grep.app](https://grep.app/), [awesome-list](https://github.com/topics/awesome-list) or [Awesome GitHub](https://github.com/fffaraz/awesome-github) - GitHub Project Indexes
|
||||
* 🌐 **[GitHub Awesome](https://app.polymersearch.com/discover/github-awesome)**, [OSS Insight](https://ossinsight.io/), [awesome-list](https://github.com/topics/awesome-list) or [Awesome GitHub](https://github.com/fffaraz/awesome-github) - GitHub Project Indexes
|
||||
* 🌐 **[Awesome First PR Opportunities](https://github.com/MunGell/awesome-for-beginners)** - Beginner FOSS Project Index
|
||||
* 🌐 **[Awesome Actions](https://github.com/sdras/awesome-actions)** - GitHub Action Resources
|
||||
* 🌐 **[Awesome Browser Extensions](https://stefanbuck.com/awesome-browser-extensions-for-github)** - GitHub Browser Extensions
|
||||
* 🌐 **[Awesome Badges](https://dev.to/envoy_/150-badges-for-github-pnk)** - GitHub Badge Resources
|
||||
* 🌐 **[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 App
|
||||
* ⭐ **[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
|
||||
* [Languish](https://tjpalmer.github.io/languish/) - GitHub Programming Language Stats
|
||||
|
|
@ -383,7 +348,7 @@
|
|||
|
||||
## ▷ API Tools
|
||||
|
||||
* 🌐 **[Awesome APIs](https://github.com/TonnyL/Awesome_APIs)**, [API List](https://apilist.fun/), [Public APIs](https://publicapis.dev/), [RapidAPI](https://rapidapi.com/), [APIsList](https://apislist.com/), [API House](https://apihouse.vercel.app/), [APIs Guru](https://apis.guru/), [FreePublicAPIs](https://www.freepublicapis.com/), [Public API Lists](https://github.com/public-api-lists/public-api-lists), [APIVault](https://apivault.dev/), [Any API](https://any-api.com/) or [Public APIs](http://public-apis.org) / [GitHub](https://github.com/public-apis/public-apis) - API Indexes
|
||||
* 🌐 **[Awesome APIs](https://github.com/TonnyL/Awesome_APIs)**, [API List](https://apilist.fun/), [Public APIs](https://publicapis.dev/), [RapidAPI](https://rapidapi.com/), [APIsList](https://apislist.com/), [API House](https://apihouse.vercel.app/), [APIs Guru](https://apis.guru/), [FreePublicAPIs](https://www.freepublicapis.com/), [Public API Lists](https://github.com/public-api-lists/public-api-lists), [APIVault](https://apivault.dev/) or [Any API](https://any-api.com/) - API Indexes
|
||||
* 🌐 **[Awesome API Security](https://github.com/arainho/awesome-api-security)** or [APIKit](https://github.com/API-Security/APIKit) - API Security Resources
|
||||
* 🌐 **[List of Providers](https://docs.consumet.org/list-of-providers)** - Piracy Site APIs
|
||||
* 🌐 **[Free AI Stuff](https://github.com/zukixa/cool-ai-stuff)**, [cool ai stuff!](https://cas.zukijourney.com/) or [API Together](https://api.together.xyz/playground) - AI APIs and Sites
|
||||
|
|
@ -399,9 +364,8 @@
|
|||
* [Insomnia](https://insomnia.rest/) or [Insomnium](https://github.com/ArchGPT/insomnium) (Privacy focused fork) - API Clients
|
||||
* [Bruno](https://www.usebruno.com/) - API Testing Client
|
||||
* [ReDoc](https://redocly.github.io/redoc/) - Generate API Documentation
|
||||
* [Mockable](https://www.mockable.io/), [Mocky](https://designer.mocky.io/) or [MockLab](https://www.wiremock.io/) - Mock APIs
|
||||
* [Mockable](https://www.mockable.io/), [{JSON} Placeholder](https://jsonplaceholder.typicode.com/), [jsoning](https://jsoning.com/api/), [Mocky](https://designer.mocky.io/) or [MockLab](https://www.wiremock.io/) - Mock APIs
|
||||
* [Mockae](https://mockae.com/) - Mock APIs with Lua Execution
|
||||
* [{JSON} Placeholder](https://jsonplaceholder.typicode.com/) - Fake APIs
|
||||
* [InstantAPIs](https://github.com/csharpfritz/InstantAPIs) - API Endpoint Generator
|
||||
* [Wyzie Subs](https://subs.wyzie.ru/) - Subtitle Scraping API
|
||||
* [Stein](https://steinhq.com/) - Turn Google Sheets into Database API
|
||||
|
|
@ -452,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
|
||||
|
||||
***
|
||||
|
|
@ -530,6 +488,7 @@
|
|||
* [Nuklear](https://github.com/Immediate-Mode-UI/Nuklear) - Game GUI Creator
|
||||
* [HUDSxGUIS](https://www.hudsandguis.com/) - UI Design Concepts
|
||||
* [SPARTAN Procedural](https://pnjeffries.itch.io/spartan-procjam-edition) - Procedural Tile Generator
|
||||
* [Game Sounds](https://gamesounds.xyz/) - Royalty Free Game Sounds
|
||||
* [Bleeper](https://pixwlk.itch.io/bleeper) or [jfxr](https://jfxr.frozenfractal.com/) - Game Sound Effects Creators
|
||||
* [Engine Simulator](https://www.engine-sim.parts/) - Engine Sound Simulator / [GitHub](https://github.com/ange-yaghi/engine-sim)
|
||||
* [The Sounds Resource](https://www.sounds-resource.com/) - Game Sounds Examples
|
||||
|
|
@ -569,7 +528,7 @@
|
|||
* ⭐ **[Neovim](https://neovim.io/)** - Code Editor
|
||||
* ⭐ **[Lite XL](https://lite-xl.com/)** - Code Editor / [Plugin Manager](https://github.com/lite-xl/lite-xl-plugin-manager) / [Plugins](https://github.com/lite-xl/lite-xl-plugins) / [Themes](https://github.com/lite-xl/lite-xl-colors)
|
||||
* ⭐ **[Emacs](https://www.gnu.org/software/emacs/)** - Code Editor / [Docs](https://emacsdocs.org/)
|
||||
* ⭐ **[WebDen](https://webden.dev/)**, [Sharplab](https://sharplab.io/), [tech.io](https://tech.io/), [CodingGround](https://www.tutorialspoint.com/codingground.htm) or [Online Tools](https://onlinetool.io/) - Code Playgrounds
|
||||
* ⭐ **[WebDen](https://webden.dev/)**, [Sharplab](https://sharplab.io/), [tech.io](https://tech.io/) or [CodingGround](https://www.tutorialspoint.com/codingground.htm) - Code Playgrounds
|
||||
* [Heynote](https://heynote.com/) - Code Editor / Notepad
|
||||
* [Edna](https://edna.arslexis.io/) - Code Editor / Notepad
|
||||
* [Bluefish](https://bluefish.openoffice.nl/index.html) - [Templates](https://templates.openoffice.org/en)
|
||||
|
|
@ -649,6 +608,7 @@
|
|||
|
||||
## ▷ Android Code Editors
|
||||
|
||||
* ⭐ **[Android Studio Emulator](https://developer.android.com/studio/run/managing-avds#createavd)** - Android Code Editor
|
||||
* ⭐ **[AndroidIDE](https://androidide.com/)** - Android Code Editor
|
||||
* ⭐ **[Acode](https://acode.app)** - Android Code Editor / [GitHub](https://github.com/deadlyjack/Acode)
|
||||
* [Sora](https://github.com/Rosemoe/sora-editor) - Android Code Editor
|
||||
|
|
@ -737,258 +697,6 @@
|
|||
|
||||
***
|
||||
|
||||
# ► Courses / Tutorials
|
||||
|
||||
* 🌐 **[Awesome Certificates](https://panx.io/awesome-certificates/)** - Dev Course Indexes
|
||||
* 🌐 **[Awesome Podcasts](https://github.com/rShetty/awesome-podcasts)** - Podcasts for Software Engineers
|
||||
* 🌐 **[Awesome YouTubers](https://github.com/JoseDeFreitas/awesome-youtubers)** - YouTube Dev Channels Indexes
|
||||
* 🌐 **[ProgrammingLearningResources](https://rentry.co/ProgrammingLearningResources)** or [A-to-Z-Resources-for-Students](https://github.com/dipakkr/A-to-Z-Resources-for-Students) - Programming Learning Resources
|
||||
* 🌐 **[Path to Senior Engineer](https://github.com/jordan-cutler/path-to-senior-engineer-handbook)** - Software Engineer Resources
|
||||
* ↪️ **[Programming Books](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/reading#wiki_.25B7_programming_books)** - Read / Download Programming Books
|
||||
* ↪️ **[Programming / Coding Tutorials](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_coding_tutorials)**
|
||||
* ⭐ **[freeCodeCamp](https://www.freecodecamp.org/)** - Programming / Courses / Interactive
|
||||
* ⭐ **[Git Cheatsheet](https://www.ndpsoftware.com/git-cheatsheet.html#loc=index;)** or [Git Commands](https://gabrieldejesus.github.io/git-commands/) / [2](https://github.com/gabrieldejesus/git-commands) - Git Command Lists
|
||||
* ⭐ **[OpenVim](https://openvim.com/)** - Interactive Vim Tutorial
|
||||
* ⭐ **[StarSQL](https://selectstarsql.com/)** or [Learn SQL](https://sqlbolt.com/) - SQL Lessons
|
||||
* [First Timers Only](https://www.firsttimersonly.com/) or [First Contributions](https://firstcontributions.github.io/) - Contribution Guides for Beginners
|
||||
* [Git Guide](https://fateen45.notion.site/Git-GitHub-61bc81766b2e4c7d9a346db3078ce833) or [Git Tips](https://github.com/git-tips/tips) - Git Guides / Tips
|
||||
* [Oh My Git!](https://ohmygit.org/) or [Oh Shit, Git!?!](https://ohshitgit.com/) - Git Learning Game
|
||||
* [Git+ Coach](https://github.com/vishal2376/git-coach) - Git Learning App
|
||||
* [Git Tutorial](https://4geeksacademy.github.io/git-interactive-tutorial/) - Interactive Git Tutorial
|
||||
* [Learn Git Branching](https://learngitbranching.js.org/) - Interactive Git Branching Guide
|
||||
* [Git-it](https://github.com/jlord/git-it-electron) - Learn CLI Git & GitHub
|
||||
* [Git Time](https://git.bradwoods.io/) - Git Version Control System Learning Game
|
||||
* [Audio Dev](https://audiodev.blog/newbie-resources/) - Audio Programming Learning Resources
|
||||
* [DZone](https://dzone.com/) - Developer Tutorials
|
||||
* [DevToolTips](https://devtoolstips.org/) - Developer Tips
|
||||
* [Dev.tube](https://dev.tube/) - Developer Talks
|
||||
* [DecodingDevOps](https://www.decodingdevops.com/) - Developer Q&A
|
||||
* [Roadmap](https://roadmap.sh/) - Developer Roadmaps / [GitHub](https://github.com/kamranahmedse/developer-roadmap)
|
||||
* [Programming Challenges](https://i.ibb.co/J3ppPQ3/5bdea0d754ac.png), [LightOJ](https://lightoj.com/) or [Code Golf](https://codegolf.stackexchange.com/) - Programming Challenges
|
||||
* [RoboMind](https://www.robomind.net/) or [Checki0](https://checkio.org/) - Code Learning Games
|
||||
* [mimo](https://mimo.org/) - Coding Tutorial App
|
||||
* [Curated Programming Resources](https://github.com/Michael0x2a/curated-programming-resources) - Programming Courses
|
||||
* [Interactive Tutorials](https://github.com/ronreiter/interactive-tutorials) or [Code Basics](https://code-basics.com/) - Interactive Programming Courses
|
||||
* [Learn to Program](https://github.com/karlhorky/learn-to-program) - Programming Courses
|
||||
* [FreeCourses](https://freecourses.github.io/) - Programming Courses
|
||||
* [CloudSkillsBoost](https://www.cloudskillsboost.google/paths) - Programming Courses
|
||||
* [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)
|
||||
* [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
|
||||
* [Codecademy](https://www.codecademy.com/) or [Coddy](https://coddy.tech/) - Coding Lessons
|
||||
* [CodinGame](https://www.codingame.com/) - Games to Practice Coding / Programming
|
||||
* [Advent of Code](https://adventofcode.com/) - Programming Puzzles
|
||||
* [Karel The Robot](https://github.com/fredoverflow/karel) - Basic Programming Teaching Environment
|
||||
* [Project Based Learning](https://github.com/practical-tutorials/project-based-learning) - Collection of Project-Based Tutorials
|
||||
* [Interview University](https://github.com/jwasham/coding-interview-university) - Software Engineer Study Guides
|
||||
* [Software Engineering Interview Preparation](https://github.com/orrsella/soft-eng-interview-prep) - Software Engineer Interview Preparation
|
||||
* [system-design-primer](https://github.com/donnemartin/system-design-primer) - Large Scale System Design Guides
|
||||
* [LearnToCloud](https://learntocloud.guide/) - Cloud Computing Guide
|
||||
* [Swift Playgrounds](https://developer.apple.com/tutorials/swiftui) - Learn Swift UI / [Samples](https://developer.apple.com/tutorials/sample-apps)
|
||||
* [LearnYouHaskell](http://learnyouahaskell.com/chapters) - Haskell Guide
|
||||
* [Vim Cheatsheet](https://i.ibb.co/FbdMMHN/460e75dd8543.png) or [rTorr](https://vim.rtorr.com/) - Vim Editor Cheat Sheets
|
||||
* [Vim University](https://github.com/wincent/vim-university) - Vim Tips
|
||||
* [VimTip](https://vim.fandom.com/wiki/Category:VimTip) - Vim Editor Tips
|
||||
* [Vim Adventures](https://vim-adventures.com/) - Vim Learning Game
|
||||
* [Vim Golf](https://www.vimgolf.com/) - Vim Challenges
|
||||
* [High Assurance Rust](https://highassurance.rs/) - Software Development Guide
|
||||
* [SQL PD](https://sqlpd.com/), [Lost at SQL](https://lost-at-sql.therobinlord.com/) or [SQL Easy](https://www.sql-easy.com/) - SQL Learning Games
|
||||
* [PostgreSQL Tutorial](https://www.postgresqltutorial.com/) - PostgreSQL Tutorial
|
||||
* [MySQL Tutorial](https://www.mysqltutorial.org/) - MySQL Tutorial
|
||||
* [LearnOpenGL](https://learnopengl.com/) - Learn OpenGL
|
||||
* [Devops Exercises](https://github.com/bregman-arie/devops-exercises) - DevOps Exercises
|
||||
* [90DaysOfDevOps](https://github.com/MichaelCade/90DaysOfDevOps) - Learn DevOps
|
||||
* [Hasura](https://hasura.io/learn/) - GraphQL Courses
|
||||
* [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)
|
||||
|
||||
***
|
||||
|
||||
## ▷ Web Development
|
||||
|
||||
* 🌐 **[MDN](https://developer.mozilla.org/)** or [Web Dev Resources](https://joshjoshuap-webdevresources.vercel.app/) - Web Dev Learning Resources
|
||||
* ⭐ **[Odin Project](https://www.freecodecamp.org/learn/the-odin-project/)**, [2](https://www.theodinproject.com/) - Programming / Courses / Interactive / [Discord](https://discord.com/invite/fbFCkYabZB)
|
||||
* ⭐ **[FullStackOpen](https://fullstackopen.com/en/)** - Full Stack Course
|
||||
* ⭐ **[LandChad](https://landchad.net/)** or [learn.sadgrl.online](https://learn.sadgrl.online/) - Site Development Guides
|
||||
* ⭐ **[Learn to Code HTML & CSS](https://learn.shayhowe.com/)** - HTML/CSS Course
|
||||
* ⭐ **[PHP: The Right Way](https://phptherightway.com/)**, [Learn PHP](https://odan.github.io/learn-php/) or [PHP Tutorial](https://www.phptutorial.net/) - Learn PHP
|
||||
* ⭐ **[JavaScript.info](https://javascript.info/)**, [Patterns.dev](https://www.patterns.dev/) or [30 Days Of JavaScript](https://github.com/Asabeneh/30-Days-Of-JavaScript) - JavaScript Learning Sites
|
||||
* [Web Dev for Beginners](https://microsoft.github.io/Web-Dev-For-Beginners/) - Web Dev Course
|
||||
* [Aquent Gymnasium](https://thegymnasium.com/) or [TheValleyOfCode](https://thevalleyofcode.com/) - Web Dev Tutorials
|
||||
* [Dash](https://dash.generalassemb.ly/) - Web Dev Courses
|
||||
* [Web Skills](https://andreasbm.github.io/web-skills/), [Codeguage](https://www.codeguage.com/) / [Discord](https://discord.gg/V8jcS8d2H5), [web.dev](https://web.dev/learn) or [Encodedna](https://www.encodedna.com/) - Web Dev Guides
|
||||
* [Codevolution](https://www.youtube.com/@Codevolution) - Web Dev Video Lessons
|
||||
* [Local-First Web](https://localfirstweb.dev/) - Local-First Web Development Guide
|
||||
* [DOM Events](https://domevents.dev/) - Learn about DOM Events
|
||||
* [backendlore](https://github.com/fpereiro/backendlore) - Backend Coding Guide
|
||||
* [backend-challenges](https://github.com/CollabCodeTech/backend-challenges) - Backend Challenges for Practice
|
||||
* [Full Stack Solana Development Guide](https://dev.to/edge-and-node/the-complete-guide-to-full-stack-solana-development-with-react-anchor-rust-and-phantom-3291) - [Examples](https://github.com/dabit3/complete-guide-to-full-stack-solana-development)
|
||||
* [STPG](https://stpg-tk.netlify.app/guides/) - Startpage Creation Guides / [Discord](https://discord.com/invite/ExAGgVR)
|
||||
* [Web Design in 4 Minutes](https://jgthms.com/web-design-in-4-minutes/) or [Strml](https://www.strml.net/) - Interactive Web Design Tutorial
|
||||
* [WebGL and GLSL Workshop](https://mattdesl.github.io/workshop-webgl-glsl/) - Interactive WebGL / GLSL Tutorial
|
||||
* [css-animation](https://css-animations.io/) - CSS Animation Tutorial
|
||||
* [100DayCSS](https://100dayscss.com/), [CSS Challenges](https://css-challenges.com/) or [PlayCSS](https://playcss.app/) - CSS Challenges
|
||||
* [Codepip](https://codepip.com/games/), [Grid Garden](https://cssgridgarden.com/), [CSS Battle](https://cssbattle.dev/), [CSS Speedrun](https://css-speedrun.netlify.app/), [CodingFantasy](https://codingfantasy.com/) or [CSS Diner](https://flukeout.github.io/) - CSS Learning Games
|
||||
* [Guess CSS](https://www.guess-css.app/) - CSS Guessing Game
|
||||
* [Flexbox Froggy](https://flexboxfroggy.com/), [Flexbox Zombies](https://mastery.games/flexboxzombies), [FlexboxDefense](http://www.flexboxdefense.com/) or [KnightsoftheFlexboxTable](https://knightsoftheflexboxtable.com/) - CSS Flexbox Learning Games
|
||||
* [DefensiveCSS](https://defensivecss.dev/) - CSS Tips
|
||||
* [LearnCSSGrid](https://learncssgrid.com/) or [GridByExample](https://gridbyexample.com/) - CSS Grid Guides
|
||||
* [Leaflet](https://leafletjs.com/) - JavaScript Library for Interactive Maps
|
||||
* [You Don't Know JS](https://github.com/getify/You-Dont-Know-JS) or [EloquentJavaScript](https://eloquentjavascript.net/) - JavaScript Learning Books
|
||||
* [JavaScript Questions](https://github.com/lydiahallie/javascript-questions) or [JavaScriptQuiz](https://javascriptquiz.com/) - JavaScript Questions for Practice
|
||||
* [33 JS Concepts](https://github.com/leonardomso/33-js-concepts) - Useful JavaScript Concepts
|
||||
* [You-Dont-Need-jQuery](https://github.com/camsong/You-Dont-Need-jQuery) - JavaScript Query Style Events Guide
|
||||
* [Airbnb JavaScript Style Guide](https://github.com/airbnb/javascript) - JavaScript Style Guide
|
||||
* [Untrusted](https://alexnisnevich.github.io/untrusted/) - JavaScript Learning Game
|
||||
* [HTML DOM](https://phuoc.ng/collection/html-dom/) - Learn DOM Manipulation
|
||||
* [HTMLDog](https://htmldog.com/) - HTML/CSS and JavaScript Tutorials
|
||||
|
||||
***
|
||||
|
||||
## ▷ Computer Science
|
||||
|
||||
* 🌐 **[CompSciLib](https://www.compscilib.com/)** - Computer Science Tools
|
||||
* ⭐ **[TeachYourselfComputerScience](https://teachyourselfcs.com/)** - Computer Science Book Recommendations
|
||||
* ⭐ **[Open Source Society University (OSSU)](https://github.com/ossu/computer-science)** / [PT-BR](https://github.com/ossu/computer-science-br) / [CN](https://github.com/ossu/computer-science-cn) - Computer Science Roadmap
|
||||
* ⭐ **[NandGame](https://nandgame.com/)** - Computer Building Puzzle
|
||||
* ⭐ **[CraftingInterpreters](http://www.craftinginterpreters.com/)** - Scripting Language Implementation Book / [GitHub](https://github.com/munificent/craftinginterpreters)
|
||||
* [CS1000](https://cs1000.surge.sh/) - Computer Science / Software Engineering
|
||||
* [Tech Dev Guide](https://techdevguide.withgoogle.com/) - Computer Science Google Courses
|
||||
* [Big-O Cheatsheet](https://www.bigocheatsheet.com/) - Computer Science Complexities Cheatsheet
|
||||
* [CSDIY](https://csdiy.wiki/en/), [awesome-low-level-design](https://github.com/ashishps1/awesome-low-level-design), [awesome-system-design-resources](https://github.com/ashishps1/awesome-system-design-resources) or [LearnAIFromScratch](https://learnaifromscratch.github.io/) - Computer Science Learning Guides
|
||||
* [ProfessorMesser](https://www.professormesser.com/) - IT Courses
|
||||
* [Code.org](https://code.org/) - Computer Science Courses
|
||||
* [cs-video-courses](https://github.com/Developer-Y/cs-video-courses) - Computer Science Courses
|
||||
* [Open Source Society University](https://github.com/ossu/computer-science) - Computer Science Courses / [GitHub](https://github.com/ossu) / [Discord](https://discord.gg/wuytwK5s9h)
|
||||
* [Modern Computer Science Curriculum](https://functionalcs.github.io/curriculum/) - Computer Science Courses
|
||||
* [CS50](https://cs50.harvard.edu/x/) - Harvard Computer Science Course
|
||||
* [CollegeComendium](https://collegecompendium.org/) - Computer Science Courses
|
||||
* [Runestone Interactive](https://runestone.academy/) - Interactive Guides
|
||||
* [Computerphile](https://www.youtube.com/@Computerphile/) or [CSDojo](https://www.youtube.com/@CSDojo) - Computer Science YouTube Channels
|
||||
* [ApressOpen](https://www.apress.com/us/apress-open/apressopen-titles) - Computer Science Books
|
||||
* [Papers We Love](https://paperswelove.org/) - Computer Science Research Papers
|
||||
* [CS Academy](https://csacademy.com/) - Interactive Computer Science Lessons
|
||||
* [From Nand To Tetris](https://www.nand2tetris.org/course) - Computer Building Lesson
|
||||
* [Copetti](https://www.copetti.org/) - In-depth Console Architecture Analysis / [GitHub](https://github.com/flipacholas/Architecture-of-consoles)
|
||||
* [Web Browser Engineering](https://browser.engineering/) - Learn about Browser Engineering
|
||||
* [Wi is Fi](https://www.wiisfi.com/) - Wi-Fi Educational Guide
|
||||
* [CPU Land](https://cpu.land/) - What Happens when you run Programs
|
||||
* [Computer Science Lecture Links](https://github.com/riti2409/Resources-for-preparation-Of-Placements)
|
||||
|
||||
***
|
||||
|
||||
## ▷ Data Science
|
||||
|
||||
* 🌐 **[Awesome DataScience](https://github.com/academic/awesome-datascience)** - Data Science Resources
|
||||
* 🌐 **[Data Engineer Handbook](https://github.com/DataExpert-io/data-engineer-handbook)** - Data Engineer Resources
|
||||
* ⭐ **[Open Source Society University (OSSU](https://github.com/ossu/data-science)** - Data Science Roadmap
|
||||
* [Mage](https://www.mage.ai/) - Data Science Pipelines
|
||||
* [Data Science Resources](https://rentry.co/FMHYBase64#data-science-resources) - Data Science Learning Resources
|
||||
* [365Datascience](https://365datascience.com/) - Data Science Courses
|
||||
* [Quick-R](https://www.statmethods.net/index.html) - R Tutorials
|
||||
* [Advanced R](https://adv-r.hadley.nz/) - R Guide / [Solutions](https://advanced-r-solutions.rbind.io/)
|
||||
* [R Packages](https://r-pkgs.org/) - R Packages Guide
|
||||
* [R for Data Science](https://r4ds.had.co.nz/) - R Data Science Guide
|
||||
* [ggplot2: Elegant Graphics for Data Analysis](https://ggplot2-book.org/index.html) - ggplot2 Guide
|
||||
* [Data Science Ipython Notebooks](https://github.com/donnemartin/data-science-ipython-notebooks), [Scipy Lectures](https://lectures.scientific-python.org/) or [Virgilio](https://virgili0.github.io/Virgilio/) / [GitHub](https://github.com/virgili0/Virgilio) - Learn DataScience
|
||||
* [Data Engineering Zoomcamp](https://github.com/DataTalksClub/data-engineering-zoomcamp) - Data Engineering Course
|
||||
* [Data Engineering Practice Problems](https://github.com/danielbeach/data-engineering-practice) - Data Engineering Practice
|
||||
* [Learn to Make Netflix Clone](https://github.com/kubowania/netflix-clone-graphql-datastax)
|
||||
|
||||
***
|
||||
|
||||
## ▷ Data Structures
|
||||
|
||||
* ⭐ **[Leetcode](https://leetcode.com/)** - Coding Practice
|
||||
* ⭐ **Leetcode Tools** - [Solutions](https://walkccc.me/LeetCode/), [2](https://leetcode.ca/) / [Company Questions](https://github.com/MysteryVaibhav/leetcode_company_wise_questions), [2](https://docs.google.com/document/d/1icaNSRq6XcWO3EOycEP9F9P8SLerBanpY3Ni_ZzCfFA/), [3](https://seanprashad.com/leetcode-patterns/) / [Animations](https://github.com/MisterBooo/LeetCodeAnimation) / [Anki Cards](https://github.com/fspv/leetcode-anki) / [Videos](https://github.com/fishercoder1534/Leetcode) / [Resources](https://github.com/ashishps1/awesome-leetcode-resources)
|
||||
* ⭐ **[NeetCode](https://neetcode.io/)** - Coding Interview Practice
|
||||
* [algonds](https://github.com/MaciejWas/algonds) - Coding Practice
|
||||
* [Codility](https://app.codility.com/programmers/) - Coding Practice
|
||||
* [ProjectLearn](https://projectlearn.io/) - Coding Practice
|
||||
* [LintCode](https://www.lintcode.com/) or [CodeWars](https://www.codewars.com/) - Coding Practice
|
||||
* [Coding Questions](https://platform.stratascratch.com/coding) or [Skilled.dev](https://skilled.dev/) - Coding Interview Questions
|
||||
* [DevPost](https://devpost.com/), [HackTheEarth](https://www.hackerearth.com/challenges/), [EMKC](https://emkc.org/challenges), [AtCoder](https://atcoder.jp/) or [Toph.co](https://toph.co/) - Hackathon / Challenge Communities
|
||||
* [Rosetta Code](https://rosettacode.org/wiki/Rosetta_Code), [Kattis](https://open.kattis.com/) or [Coding Problems](https://github.com/MTrajK/coding-problems) - Coding Problems / Solutions
|
||||
* [Exercism](https://exercism.org/), [HackerRank](https://www.hackerrank.com/) or [CS Circles](https://cscircles.cemc.uwaterloo.ca/) - Programming Lessons
|
||||
* [Algorithms-Cheatsheet-Resources](https://github.com/starkblaze01/Algorithms-Cheatsheet-Resources) - Code Algorithm Cheat Sheets
|
||||
* [algorithms](https://prashantbarahi.com.np/docs/algorithms/intro) - Code Algorithms & Data Structures Tutorials
|
||||
* [VisuAlgo](https://visualgo.net/) - Data Structures & Algorithm Animations
|
||||
* [Algorithm Visualizer](https://algorithm-visualizer.org/) or [Sorting Algorithms Visuallizer](https://sadanandpai.github.io/algo-visualizers/#/sorting-visualizer/bubble) / [GitHub](https://github.com/sadanandpai/sorting-visualizer) - Visualize Code Algorithms
|
||||
* [The Algorithms](https://the-algorithms.com/) - Algorithms Index
|
||||
* [CSES Problemset](https://cses.fi/problemset/) - Collection of Algorithmic Programming Problems
|
||||
* [Memery Spy](https://memory-spy.wizardzines.com/) - Learn how Bytes Represent Variables
|
||||
|
||||
***
|
||||
|
||||
## ▷ UI / UX
|
||||
|
||||
* [design.tips](https://www.designer.tips/) or [Utopia](https://utopia.fyi/) - Design Tips
|
||||
* [HackDesign](https://hackdesign.org/) or [Sky Design](https://github.com/josephgoksu/sky-design) - UI / Webdesign Courses
|
||||
* [Learn UI Design](https://learnui.design/) - UI Design Course
|
||||
* [50 UI Tips](https://fifty.user-interface.io/50_ui_tips.pdf) - UI Design Book
|
||||
* [Can't Unsee](https://cantunsee.space/) - UI Design Test
|
||||
* [UXTools](https://uxtools.co/) or [UXMovement](https://uxmovement.com/) - Learn UX Design
|
||||
* [SitePoint](https://www.sitepoint.com/) - UX Design Courses & Books
|
||||
* [delightful humane design](https://codeberg.org/teaserbot-labs/delightful-humane-design) - Humane Design Resources
|
||||
* [Laws of UX](https://lawsofux.com/) - Maxims / Principles for UI Designers
|
||||
* [Deceptive Patterns](https://www.deceptive.design/) - Deceptive User Experience Examples
|
||||
* [UI Coach](https://uicoach.io/) - UI Design Challenge Generator
|
||||
* [HTML Dog](https://htmldog.com/) or [Front Tips](https://front.tips/) - Frontend Tutorials & Examples
|
||||
* [FrontEndMentor](https://www.frontendmentor.io/), [Phuoc](https://phuoc.ng/) or [Frontend Challenges](https://github.com/felipefialho/frontend-challenges) - Frontend Design Challenges
|
||||
* [Frontend Learning Kit](https://github.com/sadanandpai/frontend-learning-kit) - Frontend Learning Index
|
||||
* [Frontend Bootcamp](https://microsoft.github.io/frontend-bootcamp/) - Frontend Workshop
|
||||
* [Design Pattern for Humans](https://github.com/kamranahmedse/design-patterns-for-humans) - Guide on Design Patterns
|
||||
|
||||
***
|
||||
|
||||
## ▷ Cybersecurity
|
||||
|
||||
* 🌐 **[Free Cyber Resources](https://github.com/gerryguy311/Free_CyberSecurity_Professional_Development_Resources)**, [BlueTeam Tools](https://github.com/A-poc/BlueTeam-Tools) or [Applied Cybersecurity](https://www.nist.gov/itl/applied-cybersecurity/nice/resources/online-learning-content) - Cybersecurity Learning Resources
|
||||
* 🌐 **[CTF Sites](https://ctfsites.github.io/)**, [echoCTF.RED](https://echoctf.red/), [picoCTF](https://picoctf.org/), [CTF Beginners Guide](https://jaimelightfoot.com/blog/so-you-want-to-ctf-a-beginners-guide/) or [CTFLearn](https://ctflearn.com/) - CTF Challenges / Resources
|
||||
* ⭐ **[crackmes.one](https://crackmes.one/)** / [Discord](https://discord.com/invite/2pPV3yq), [Hackers101](https://www.hacker101.com/), [SmashTheStack](https://smashthestack.org/), [WebHacking](https://webhacking.kr/) or [DefendTheWeb](https://defendtheweb.net/) - Cybersecurity Challenges
|
||||
* ⭐ **[HackTricks](https://book.hacktricks.xyz/)** - Practical Penetration Testing & Security Auditing Tips
|
||||
* ⭐ **[OWASP Cheatsheet](https://cheatsheetseries.owasp.org/)** - Application Security Guide
|
||||
* [Skills for All](https://skillsforall.com/) or [90DaysOfCyberSecurity](https://github.com/farhanashrafdev/90DaysOfCyberSecurity) - Cybersecurity Courses
|
||||
* [TryHackMe](https://tryhackme.com/), [Hack The Box](https://www.hackthebox.com/) or [OpenSecurityTraining2](https://opensecuritytraining.info/) - Cybersecurity Lessons
|
||||
* [Addielamarr](https://publish.obsidian.md/addielamarr/), [Cyber Talent Kids](https://cybertalentskids.com/) or [Teach Yourself Info Sec](https://teachyourselfinfosec.com/) - Learn About Cybersecurity
|
||||
* [pwn.college](https://pwn.college/) - Cybersecurity Practice
|
||||
* [OverTheWire](https://overthewire.org/wargames/) - Cybersecurity Learning Game
|
||||
* [Hacksplaining](https://www.hacksplaining.com/) - Developer Security Lessons
|
||||
* [MicroCorruption](https://microcorruption.com/) - Learn Reverse Engineering / Cybersecurity
|
||||
* [x86re](https://x86re.com/) - Reverse Engineering Guide
|
||||
* [John Hammond](https://www.youtube.com/@_JohnHammond) or [LowLevelLearning](https://www.youtube.com/@LowLevelLearning/) - Cybersecurity YouTube Tutorials
|
||||
* [Pentesting Bible](https://github.com/blaCCkHatHacEEkr/PENTESTING-BIBLE) or [Juice Shop](https://owasp.org/www-project-juice-shop/) - Learn Pentesting
|
||||
* [How DNS Works](https://howdns.works/) - Learn DNS
|
||||
* [How DNSSEC Works](https://howdnssec.works/) - Learn DNSSEC
|
||||
* [sha256_project](https://github.com/oconnor663/sha256_project) or [cryptohack](https://cryptohack.org/) - Cryptography Learning
|
||||
* [How HTTPS Works](https://howhttps.works/) - Learn HTTPS
|
||||
|
||||
***
|
||||
|
||||
## ▷ Game Development
|
||||
|
||||
* ⭐ **[Learn Gamedev](https://github.com/notpresident35/awesome-learn-gamedev)** - Resources
|
||||
* ⭐ **[MagicTools](https://github.com/ellisonleao/magictools)** - Resources
|
||||
* ⭐ **[develop.games](https://www.develop.games/)** - Game Dev Guides
|
||||
* ⭐ **[Brackeys](https://www.youtube.com/channel/UCYbK_tjZ2OrIZFBvU6CCMiA)** - Game Dev Tutorials
|
||||
* ⭐ **[r/gamedev](https://www.reddit.com/r/gamedev/)** - Reddit Community
|
||||
* [Newgrounds Wiki: Game Dev Resources](https://www.newgrounds.com/wiki/creator-resources/game-dev-resources) - Resources
|
||||
* [The VG Resource](https://www.vg-resource.com/) - Resources
|
||||
* [PICO-8](https://mboffin.itch.io/pico8-educational-toolset) - Basic Game Dev Concepts / [Web Version](https://www.pico-8-edu.com/)
|
||||
* [From Zero To Hero](https://therealpenaz91.itch.io/2dgd-f0th) - 2D Game Dev Book
|
||||
* [Web Game Dev](https://www.webgamedev.com/) - Game Dev Guides / [Discord](https://discord.com/invite/5Z28wjTeyh)
|
||||
* [SebastianLague](https://www.youtube.com/c/SebastianLague/playlists?view=50&sort=dd&shelf_id=4) - Game Dev Tutorials
|
||||
* [Trig for Games](https://demoman.net/?a=trig-for-games) - Trigonometry Lessons for Games
|
||||
* [Game Math](https://gamemath.com/book/intro.html) - Mathematics Lessons for Game Devs
|
||||
* [Graphics Workshop](https://github.com/ekzhang/graphics-workshop) - Learn Computer Graphics
|
||||
* [QB64SourceCode](https://www.qb64tutorial.com/) - QB64 Game Programming Tutorials
|
||||
|
||||
***
|
||||
|
||||
# ► Programming Languages
|
||||
|
||||
* 🌐 **[Awesome Cheatsheets](https://lecoupa.github.io/awesome-cheatsheets/)**, **[QuickRef.me](https://quickref.me/)**, [HowDoI](https://github.com/gleitz/howdoi), [OverApi](https://overapi.com/) or [Cheat Sheets](http://www.cheat-sheets.org/) - Programming Cheat Sheets
|
||||
|
|
@ -1150,14 +858,13 @@
|
|||
* 🌐 **[Awesome JavaScript](https://github.com/sorrycc/awesome-javascript)** - JavaScript Resources
|
||||
* ↪️ **[TypeScript Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage/#wiki_typescript_tools)**
|
||||
* ↪️ **[Vue Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage/#wiki_vue_tools)**
|
||||
* [JavaScripting](https://www.javascripting.com/) - JavaScript Libraries
|
||||
* [Vanilla List](https://vanillalist.top/) - Vanilla JavaScript Repository
|
||||
* [RunKit](https://runkit.com/) - Browser JavaScript Sandbox
|
||||
* [1loc](https://phuoc.ng/collection/1-loc/) - JavaScript Code Snippets
|
||||
* [JavaScript Algorithms](https://github.com/trekhleb/javascript-algorithms) - Algorithms and Data Structures in JavaScript
|
||||
* [Gummy](https://gummyjs.vercel.app/) - Easily Build JavaScript Programs
|
||||
* [Obfuscator](https://obfuscator.io/) or [js-confuser](https://js-confuser.com/) - JavaScript Obfuscators
|
||||
* [jsdfe](https://avotoko.github.io/javascript-deobfuscator/), [de4js](https://lelinhtinh.github.io/de4js/), [Deobfuscator](https://willnode.github.io/deobfuscator/), [Deobfuscate](https://deobfuscate.relative.im/) or [deobfuscate.io/](https://deobfuscate.io/) - JavaScript Deobfuscators
|
||||
* [jsdfe](https://avotoko.github.io/javascript-deobfuscator/), [de4js](https://lelinhtinh.github.io/de4js/), [Deobfuscator](https://willnode.github.io/deobfuscator/), [WebCrack](https://webcrack.netlify.app/), [Deobfuscate](https://deobfuscate.relative.im/) or [deobfuscate.io/](https://deobfuscate.io/) - JavaScript Deobfuscators
|
||||
* [Unibeautify](https://github.com/Unibeautify/unibeautify) - JavaScript Beautifier
|
||||
* [Minify JS](https://minify-js.com/) - JavaScript Minifier
|
||||
* [Underdash](https://surma.github.io/underdash/) - JavaScript Snippets
|
||||
|
|
@ -1174,7 +881,6 @@
|
|||
* [React Suite](https://rsuitejs.com/) or [Radix UI](https://www.radix-ui.com/) - React Components
|
||||
* [Bulletproof React](https://github.com/alan2207/bulletproof-react) - React App Architecture
|
||||
* [React Native Apps](https://github.com/ReactNativeNews/React-Native-Apps/) - React App Examples
|
||||
* [Aspect](https://sample-code.aspect.app/) - Copy React Code from Any Site
|
||||
* [Refine](https://refine.dev/) or [GitWit](https://gitwit.dev/) - React App Builders
|
||||
* [Alright](https://github.com/DoneDeal0/alright-react-app) - Generate React Apps
|
||||
* [Codux](https://www.codux.com/) - Visual IDE for React
|
||||
|
|
@ -1197,7 +903,6 @@
|
|||
|
||||
* 🌐 **[Awesome PHP](https://github.com/ziadoz/awesome-php)** - PHP Resources
|
||||
* [XAMPP](https://www.apachefriends.org/) - PHP Development Environment
|
||||
* [PHP Beautifier](https://phpbeautifier.com/) - PHP Formatter
|
||||
* [Clean Code PHP](https://github.com/piotrplenik/clean-code-php) - Clean Code for PHP
|
||||
* [Valinor](https://valinor.cuyz.io) / [GitHub](https://github.com/CuyZ/Valinor) - PHP Object Mapper
|
||||
* [Spatie](https://spatie.be/open-source) / [GitHub](https://github.com/spatie/fork) or [3v4l](https://3v4l.org) - Run PHP Concurrently
|
||||
|
|
@ -1221,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
|
||||
|
|
@ -1286,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
|
||||
|
|
@ -1330,11 +1035,11 @@
|
|||
* ↪️ **[Color Pickers](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/img-tools#wiki_.25B7_color_pickers)**
|
||||
* ⭐ **[ColorHexa](https://www.colorhexa.com/)** - Color Hex Encyclopedia
|
||||
* ⭐ **[Realtime Colors](https://realtimecolors.com/)** - Preview Color Palettes
|
||||
* ⭐ **[SpyColor](https://www.spycolor.com/)** or [Colouris](https://colouris.surge.sh/) - Color Model Conversions
|
||||
* ⭐ **[Color & Contrast](https://colorandcontrast.com/)** - Color / Contrast Guide
|
||||
* [ColorsAndFonts](https://www.colorsandfonts.com/) - Quickly Copy Colors & Typography Combinations
|
||||
* [Paletton](https://paletton.com/) - Color Scheme Designer
|
||||
* [Palettte](https://palettte.app/) - Color Palette Editor
|
||||
* [Colouris](https://colouris.surge.sh/) - Color Model Conversions
|
||||
* [PaletteGenerator](https://palettegenerator.com/) or [Alwane](https://alwane.io/) - Color Palette Extractor
|
||||
* [Colorable](https://colorable.jxnblk.com/) / [GitHub](https://github.com/jxnblk/colorable), [color.review](https://color.review/), [accessible-color-matrix](https://toolness.github.io/accessible-color-matrix/) or [Accessible Brand Colors](https://abc.useallfive.com/) - Accessible Color Pallette Builders
|
||||
* [Color Oracle](https://colororacle.org/), [WhoCanUse](https://www.whocanuse.com/) or [Toptal](https://www.toptal.com/designers/colorfilter) - Color Blindness Simulator / Tests
|
||||
|
|
@ -1405,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
|
||||
|
|
@ -1413,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
|
||||
* [WorthBuck](https://worthbuck.com/) or [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
|
||||
|
|
@ -1477,7 +1182,6 @@
|
|||
* [Web Vitals Leaderboard](https://vitals-leaderboard.pazguille.me/), [CodSpeed](https://codspeed.io/) or [Lighthouse Metrics](https://lighthouse-metrics.com/) - Website Performance Tests
|
||||
* [Prometheus](https://prometheus.io/) - Site Metrics / [Setup](https://thanos.io/)
|
||||
* [Carbon Calculator](https://www.websitecarbon.com/) - Estimate Sites Carbon Footprint
|
||||
* [Site Inspector](https://www.getsiteinspector.com/) - Check Site for Spelling / Grammatical Errors
|
||||
* [UX Check](https://chromewebstore.google.com/detail/ux-check/giekhiebdpmljgchjojblnekkcgpdobp) - Site Heuristic Evaluation
|
||||
* [Testmail](https://testmail.app/) - Site Signup Test
|
||||
* [Responsive Viewer](https://responsiveviewer.org/) - Test Site on Multiple Screen Types / [Chrome](https://chromewebstore.google.com/detail/responsive-viewer/inmopeiepgfljkpkidclfgbgbmfcennb)
|
||||
|
|
@ -1489,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/)
|
||||
|
|
@ -1616,7 +1320,6 @@
|
|||
* 🌐 **[Reverse Engineering Resources](https://github.com/wtsxDev/reverse-engineering)** - Reverse Engineering Resources
|
||||
* ⭐ **[GHIDRA](https://ghidra-sre.org/)** - Reverse Engineering
|
||||
* ⭐ **[x64dbg](https://x64dbg.com/)** - Debugger for Reverse Engineering
|
||||
* ⭐ **[RevShells](https://www.revshells.com/)** - Reverse Shell Generator
|
||||
* [Radare](https://rada.re/r/) - Reverse Engineering
|
||||
* [Rizin](https://rizin.re/) - Reverse Engineering
|
||||
* [Frida](https://frida.re/) - Reverse Engineering
|
||||
|
|
@ -1658,7 +1361,6 @@
|
|||
* ⭐ **[JSON Hero](https://jsonhero.io/)**, [Jayson](https://apps.apple.com/us/app/jayson/id1447750768) or [JSONView](https://jsonview.com/) - JSON Viewers / Editors
|
||||
* [jq](https://jqlang.github.io/jq/) - CLI JSON Processor / [GitHub](https://github.com/jqlang/jq)
|
||||
* [oq](https://blacksmoke16.github.io/oq/) - Portable jq Wrapper / [GitHub](https://github.com/Blacksmoke16/oq)
|
||||
* [Transluna](https://transluna.net/) - JSON Translator
|
||||
* [JMESPath](https://jmespath.org/) - Query Language for JSON / [Tutorial](https://jmespath.org/tutorial.html)
|
||||
* [zio-json](https://zio.dev/zio-json)- JSON Library
|
||||
* [Mock Turtle](https://mockturtle.net/) - Generate Mock JSON Data
|
||||
|
|
|
|||
|
|
@ -15,6 +15,8 @@
|
|||
* ↪️ **[Google Piracy Groups](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_google_piracy_discussion_groups)**
|
||||
* ⭐ **[Directory Lister](https://directorylister.com/)** - Open Directory Explorer
|
||||
* ⭐ **[EyeDex](https://www.eyedex.org/)**, [ODCrawler](https://odcrawler.xyz/), [ODS](https://sites.google.com/view/l33tech/tools/ods) or [mmnt](https://www.mmnt.net/) - Open Directory Search Engines
|
||||
* ⭐ **[Soulseek](https://slsknet.org/)** or [Nicotine+](https://nicotine-plus.org/) - File Sharing App / [Stats](https://github.com/mrusse/Slsk-Upload-Stats-Tracker) / [Server App](https://github.com/slskd/slskd)
|
||||
* [eMule Plus](https://sourceforge.net/projects/emuleplus/) - File Sharing App
|
||||
* [mega.archive (Discord)](https://discord.gg/R3zEZUPp3Q) / [Chat](https://discord.gg/ZRhpUtzvkC) - Megadrive Archive
|
||||
* [GDrive Server](https://telegra.ph/GDrive-Server-Direct-Links-06-28)
|
||||
* [Napalm FTP](https://www.searchftps.net/), [Mamont](https://www.mmnt.ru/int/) or [Search-22](https://search-22.com/ftp-search-tools) - FTP Search
|
||||
|
|
@ -23,7 +25,7 @@
|
|||
* [Open Directory Downloader](https://github.com/KoalaBear84/OpenDirectoryDownloader) - Open Directory Indexer
|
||||
* [Pastebin CSE](https://cse.google.com/cse?cx=0cd79b819f26af9d0) - Search Pastebin Directories
|
||||
* [CD.TextFiles](http://cd.textfiles.com/) - CD Text File Archive
|
||||
* [Defacto2](https://defacto2.net/home) - Scene / Sub-Scene Database
|
||||
* [Defacto2](https://defacto2.net/) - Scene / Sub-Scene Database
|
||||
|
||||
***
|
||||
|
||||
|
|
@ -46,33 +48,27 @@
|
|||
* [psychodownloads](https://psychodownloads.com/) - Video / Audio / ROMs / Books / Magazines / NSFW
|
||||
* [Merlin Warez](https://merlinwz.com/) - Video / Audio / Books / Audiobooks / Comics / Magazines
|
||||
* [Sbenny's Forum](https://forum.sbenny.com/) - Video / Audio / ROMs / Books / [Discord](https://discord.gg/kf9FKQx)
|
||||
* [CyberPhoenix](http://www.cyberphoenix.org/forum/) - Video / Audio / ROMs / Books / Magazines / Comics
|
||||
* [dreamteamdownloads1](https://www.dreamteamdownloads1.com/index.php) - Video / Audio / ROMs / Books / Magazines
|
||||
* [DownDuck](https://www.downduck.com/) - Video / Audio / Books / Magazines
|
||||
* [AllYouLike](https://allyoulike.org/) - Video / Audio Books / Magazines / ROMs / Comics / NSFW
|
||||
* [DDLValley](https://www.ddlvalley.me/) - Video / Audio / ROMs / Books / Comics / Magazines / [Forum](https://forum.ddlvalley.me/)
|
||||
* [MaxRelease](https://max-rls.com/) - Video / Audio / Magazines
|
||||
* [AyakaLounge](https://ayakalounge.me/) - Video / Audio / ROMs
|
||||
* [2DDL](https://2ddl.it/) - Video / Audio / Books / Comics / Magazines
|
||||
* [WarezLover](https://warezlover.xyz/) - Video / Audio / ROMs / Books / Magazines
|
||||
* [1DDL](https://1ddl.org/) - Video / Audio / Books / Comics / Magazines
|
||||
* [TFPDL](https://tfpdl.se/), [2](https://tfpdl.to/) - Video / Magazines / NSFW
|
||||
* [WarezLoad](https://warezload.net/index.php) - Video / Audio / Books
|
||||
* [Katz DDL](https://katzddl.net/) - Video / Audio / Books / NSFW
|
||||
* [FreshWAP](https://www.freshwap.us/), [2](https://freshwap.cc/) - Video / Audio / Books / Magazines
|
||||
* [BadshahUploads](https://badshahuploads.xyz/) - Video / Audio / Books / Leech Required
|
||||
* [FrostClick](https://www.frostclick.com/wp/) - Video / Audio / Books
|
||||
* [Leaker](https://leaker.me/) - Video / Audio
|
||||
* [TehParadox](https://www.tehparadox.net/) - Video / Audio / Books / Magazines / ROMs
|
||||
* [wJungle](https://wjungle.net/) - Video / Audio / Books / NSFW
|
||||
* [PuZo](https://www.puzo.org/) - Video / Audio / Books / Audiobooks / NSFW
|
||||
* [Warez-Serbia](https://www.warez-serbia.com/) - Video / Audio / Books / Magazines / NSFW
|
||||
* [Warez Heaven](https://www.warezheaven.com/index.php) - Video / Audio / ROMs / Books / NSFW
|
||||
* [Download.ir](https://download.ir/) - Video / ROMs
|
||||
* [SceneSource](https://www.scnsrc.me/), [2](https://www.scenesource.me/) - Video / Audio / ROMs / Books
|
||||
* [Amader Forum](https://amaderforum.net/) - Video / Books / NSFW
|
||||
* [Download For All](https://dl4all.org/), [2](https://dl4all.biz/) - Video / Audio / Books / Magazines
|
||||
* [ddlspot](https://www.ddlspot.com/) - Video / Audio
|
||||
* [Uploadgig](https://uploadgig.me/) - Video / Audio / Books / Audiobooks / Magazines / NSFW
|
||||
* [Warez-World](https://warez-world.org/) - Video / Audio / Books / Magazines / NSFW
|
||||
* [0DayDDL](https://0dayddl.com/) - Video / Audio / Books / Magazines
|
||||
* [Downturk.net](https://www.downturk.net/) - Video / Audio / Books
|
||||
|
|
@ -162,7 +158,7 @@
|
|||
|
||||
## ▷ Freeware Sites
|
||||
|
||||
* 🌐 **[Awesome Open Source](https://awesomeopensource.com/)**, [OpenAlternative](https://openalternative.co/), [Opensource Builders](https://opensource.builders/), [OSSSoftware](https://osssoftware.org/), [OSS Gallery](https://oss.gallery/), [Awesome OSS](https://github.com/RunaCapital/awesome-oss-alternatives), [Gadgeteer](https://gadgeteer.co.za/opensourcesoftware/) or [FossHub](https://www.fosshub.com/) - FOSS Indexes
|
||||
* 🌐 **[Awesome Open Source](https://awesomeopensource.com/)**, [Awesome Useful Projects](https://github.com/Furthir/awesome-useful-projects), [OpenAlternative](https://openalternative.co/), [Opensource Builders](https://opensource.builders/), [OSSSoftware](https://osssoftware.org/), [OSS Gallery](https://oss.gallery/), [Awesome OSS](https://github.com/RunaCapital/awesome-oss-alternatives), [Gadgeteer](https://gadgeteer.co.za/opensourcesoftware/) or [FossHub](https://www.fosshub.com/) - FOSS Indexes
|
||||
* 🌐 **[Awesome Free Software](https://github.com/johnjago/awesome-free-software)**, [Windows Ultimate Collection](https://xdaforums.com/t/windows-ultimate-collection-guides.4507867/), [Free Lunch](https://github.com/auctors/free-lunch), [MajorGeeks](https://www.majorgeeks.com/content/page/top_freeware_picks.html) or [TinyApps](https://tinyapps.org/) - Freeware Indexes
|
||||
* 🌐 **[Awesome Selfhosted](https://awesome-selfhosted.net/)**, [2](https://gitlab.com/awesome-selfhosted/awesome-selfhosted) or [Selfh.st](https://selfh.st/apps/) - Self-Hosted Software Indexes
|
||||
* 🌐 **[Awesome Python Applications](https://github.com/mahmoud/awesome-python-applications)** - Python App Index
|
||||
|
|
@ -176,12 +172,10 @@
|
|||
* [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
|
||||
* [Nirsoft](https://www.nirsoft.net/), [Windows-Utilities](https://orga.cat/windows-utilities), [OS Vault](https://osvault.weebly.com/directory.html) or [WinTools](https://www.wintools.info/) - Windows Software
|
||||
* [UWP Community](https://uwpcommunity.com/) - Universal Windows Programs / [Discord](https://discord.gg/eBHZSKG)
|
||||
* [Suckless](https://suckless.org/) - Simple Software Archive
|
||||
* [VETUSWARE](https://vetusware.com/) - Abandonware / Operating Systems / Games
|
||||
* [OldVersion](http://www.oldversion.com/) - Old Versions of Software
|
||||
* [The Vintage Software Collection](https://rentry.co/fmhybase64#the-vintage-software-collection) or [SCiZE's Classic Warez Collection](https://scenelist.org/) - Retro Software
|
||||
* [BelowAverage](https://belowaverage.org/) - I.T. Software
|
||||
|
||||
***
|
||||
|
||||
|
|
@ -189,7 +183,6 @@
|
|||
|
||||
* ⭐ **[AlternativeTo](https://alternativeto.net/)** - Crowdsourced Recommendations
|
||||
* [Adobe Alternatives](https://github.com/KenneyNL/Adobe-Alternatives) - Adobe Software Alternative Index
|
||||
* [SaaSHub](https://www.saashub.com/) - Alt Software Index
|
||||
* [opensourcealternative.to](https://www.opensourcealternative.to/) - Open-Source Alternatives
|
||||
|
||||
***
|
||||
|
|
@ -202,15 +195,6 @@
|
|||
|
||||
***
|
||||
|
||||
# ► File Sharing Apps
|
||||
|
||||
* ⭐ **[Soulseek](https://slsknet.org/)** or [Nicotine+](https://nicotine-plus.org/) - File Sharing App / [Stats](https://github.com/mrusse/Slsk-Upload-Stats-Tracker) / [Server App](https://github.com/slskd/slskd)
|
||||
* [DC++](https://dcplusplus.sourceforge.io/index.html) - File Sharing App / [Hubs](https://dchublists.com/), [2](https://dchublist.org/), [3](https://dchublist.biz/)
|
||||
* [Fopnu](https://fopnu.com/), [Shareaza](https://shareaza.sourceforge.net/) or [eMule Plus](https://sourceforge.net/projects/emuleplus/) - File Sharing App
|
||||
* [WinMX](https://patch.winmxconex.com/) - File Sharing App / [Forum](https://forum.winmxworld.com/)
|
||||
|
||||
***
|
||||
|
||||
## ▷ IRC Tools
|
||||
|
||||
* 🌐 **[Awesome IRC](https://github.com/davisonio/awesome-irc)** - IRC Resources
|
||||
|
|
|
|||
|
|
@ -7,7 +7,7 @@
|
|||
# ► Documentaries
|
||||
|
||||
* ⭐ **[IHaveNoTV](https://ihavenotv.com)**
|
||||
* ⭐ **[DocumentaryArea](https://www.documentaryarea.com/)** / [Remove Watermark](https://github.com/skitts4code/Clear-Mark) (or use PIP)
|
||||
* ⭐ **[DocumentaryArea](https://www.documentaryarea.com/)** / [Remove Watermark](https://github.com/acridsoul/Clear-Mark) (or use PIP)
|
||||
* ⭐ **[DocPlus](https://www.docplus.com/)**
|
||||
* ⭐ **[1337x Documentaries](https://1337x.to/top-100-documentaries)** / Torrent
|
||||
* [LearnOutLoud](https://www.learnoutloud.com/)
|
||||
|
|
@ -22,7 +22,7 @@
|
|||
* [WatchDocumentaries](https://watchdocumentaries.com/)
|
||||
* [ThoughtMaybe](https://thoughtmaybe.com/)
|
||||
* [PBS](https://www.pbs.org/video/)
|
||||
* [Nat Geo](https://www.nationalgeographic.com/tv/browse/watch-free)
|
||||
* [Nat Geo](https://www.natgeotv.com/)
|
||||
* [Folkstreams](https://www.folkstreams.net/)
|
||||
* [Films For Action](https://www.filmsforaction.org/)
|
||||
* [/r/Documentaries](https://reddit.com/r/Documentaries)
|
||||
|
|
@ -41,7 +41,7 @@
|
|||
* ↪️ **[Udemy Tools / Coupons](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_udemy_coupons)**
|
||||
* ⭐ **[Coursera](https://www.coursera.org/)** - Courses / [Financial Aid](https://github.com/abdelrahmaan/Financial-aid-on-coursera-) / [Download](https://github.com/raffaem/cs-dlp)
|
||||
* ⭐ **[edX](https://www.edx.org/)** - Courses / [Downloader](https://github.com/rehmatworks/edx-downloader)
|
||||
* ⭐ **[MitOpenCourseWare](https://ocw.mit.edu/index.htm)** - Courses
|
||||
* ⭐ **[MitOpenCourseWare](https://ocw.mit.edu/)** - Courses
|
||||
* ⭐ **[Khan Academy](https://www.khanacademy.org/)** - Courses / [Downloader](https://github.com/rand-net/khan-dl) / [Solver](https://greasyfork.org/en/scripts/427964)
|
||||
* ⭐ **[Class Central](https://www.classcentral.com/)** - Search for Courses
|
||||
* [CourseBuffet](https://www.coursebuffet.com/) - Multi-Site Course Search
|
||||
|
|
@ -67,6 +67,7 @@
|
|||
|
||||
***
|
||||
|
||||
* 🌐 **[Free-Courses-For-Everyone](https://github.com/MasterBrian99/Free-Courses-For-Everyone)** - Course Site Index
|
||||
* ↪️ **[Course Megadrives](https://rentry.co/FMHYBase64#course-megadrives)**
|
||||
* ⭐ **[TutFlix](https://tutflix.org/)** - Courses / Drives / Signup Opens Fridays
|
||||
* ⭐ **[OneHack](https://onehack.us/)** - Courses / [Telegram](https://t.me/Official_OneHack)
|
||||
|
|
@ -80,7 +81,6 @@
|
|||
* [technet24](https://technet24.ir/category/videos) - Courses
|
||||
* [AfraTafreeh](https://afratafreeh.com/) - Courses
|
||||
* [InfiCourses](https://www.inficourses.com/) - Courses
|
||||
* [Free-Courses-For-Everyone](https://github.com/MasterBrian99/Free-Courses-For-Everyone) - Courses
|
||||
* [learningDL](https://learningdl.net/) - Courses / Leech required
|
||||
* [LinkedIn_Learning](https://t.me/linkedin_learning) - LinkedIn Courses
|
||||
* [CertCommunity](https://www.certcommunity.org/forum/) - IT Cert Courses
|
||||
|
|
@ -97,7 +97,6 @@
|
|||
|
||||
* [Course Club](https://courseclub.me/) - Courses
|
||||
* [FreeCourseSite](https://freecoursesite.com/) - Courses
|
||||
* [FreeCoursesOnline](https://freecoursesonline.me/) - Courses
|
||||
* [Docspedia](https://docspedia.world/) - Courses / Signup Required
|
||||
|
||||
***
|
||||
|
|
@ -121,7 +120,7 @@
|
|||
* ⭐ **[The Punctuation Guide](https://www.thepunctuationguide.com/)** - Punctuation Guide
|
||||
* [media.ccc.de](https://media.ccc.de/) - Educational Presentations
|
||||
* [Ted Talks](https://www.ted.com/) - Inspiring and Educational Talks
|
||||
* [Stack Exchange](https://stackexchange.com/) or [CuriousCat](https://curiouscat.live/) - Q&A Communities
|
||||
* [Stack Exchange](https://stackexchange.com/) or [Quetre](https://quetre.iket.me) - Q&A Communities
|
||||
* [AFAIK](https://afaik.io/) - Learning Map / [Discord](https://discord.gg/mMNwRvWM8s)
|
||||
* [Open Educational Resources](https://cdn-infographic.pressidium.com/wp-content/uploads/How-to-Search-for-Open-Educational-Resources-Infographic.jpg) - How to Search for Open Educational Resources
|
||||
* [AnimaGraffs](https://animagraffs.com/) - Animated Infographs
|
||||
|
|
@ -133,7 +132,7 @@
|
|||
* [HowStuffWorks](https://www.howstuffworks.com/) or [CoolMindMaps](https://www.coolmindmaps.com/) - Learn How Things Work
|
||||
* [Explorabl.es](https://explorabl.es/), [MinuteLabs](https://minutelabs.io/), [Wikiversity](https://www.wikiversity.org/) or [Learnamic](https://www.learnamic.com/) - Quizzes / Guides / Games
|
||||
* [masterWiki](https://masterwiki.how/) - MasterClass Classes Republished as wikiHow Articles
|
||||
* [LabXchange](https://www.labxchange.org/), [JavaLab](https://javalab.org/en/) or [EduMedia](https://www.edumedia-sciences.com/en/) - Interactive Science Simulations
|
||||
* [LabXchange](https://www.labxchange.org/), [JavaLab](https://javalab.org/en/) or [EduMedia](https://www.edumedia.com/) - Interactive Science Simulations
|
||||
* [LitCharts](https://www.litcharts.com/) - Literature Guides
|
||||
* [Bridge Command](https://www.bridgecommand.co.uk/) - Bridge Command Ship Simulator
|
||||
* [Appropedia](https://www.appropedia.org/) - Sustainability Wiki
|
||||
|
|
@ -161,7 +160,7 @@
|
|||
|
||||
## ▷ History
|
||||
|
||||
* ↪️ **[History Books](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/reading#wiki_.25B7_history_sites)**
|
||||
* ↪️ **[History Books](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/reading/#wiki_.25B7_history_books)**
|
||||
* ↪️ **[Historical Maps](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/misc#wiki_.25B7_historic_maps)** - Map Resources
|
||||
* ⭐ **[Historic Films](https://www.historicfilms.com/)** or [National Film Preservation Foundation](https://www.filmpreservation.org/) - Historic Footage / Films
|
||||
* ⭐ **[Histography](https://histography.io/)** or [Oldest](https://www.oldest.org/) - History Timelines
|
||||
|
|
@ -228,7 +227,7 @@
|
|||
* 🌐 **[Awesome Music Theory](https://github.com/vpavlenko/study-music)** - Music Theory Resources
|
||||
* 🌐 **[Music Outfitters](https://musicoutfitters.com/)** - Music Services / Information
|
||||
* ↪️ **[Sheet Music / Notation](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/audio#wiki_.25B7_sheet_music)**
|
||||
* ⭐ **[Muted](https://muted.io/)**, **[Open Music Theory](https://viva.pressbooks.pub/openmusictheory/)**, [Teoria](https://www.teoria.com/index.php), [LightNote](https://www.lightnote.co/) or [Music Theory](https://www.musictheory.net/) - Music Theory
|
||||
* ⭐ **[Muted](https://muted.io/)**, **[Open Music Theory](https://viva.pressbooks.pub/openmusictheory/)**, [Chromatone](https://chromatone.center/), [Teoria](https://www.teoria.com/index.php), [SimplifyingTheory](https://www.simplifyingtheory.com/), [LightNote](https://www.lightnote.co/) or [Music Theory](https://www.musictheory.net/) - Music Theory
|
||||
* [Helio](https://helio.fm/) or [NoteHeads](https://noteheads.net/) - Music Composition Tools
|
||||
* [MusicKit](https://musickit.jull.dev/) or [Tone Generator](https://www.szynalski.com/tone-generator/) - Metronome, Tuner & Tone Generators
|
||||
* [Tuner Ninja](https://tuner.ninja/) - Instrument Tuner
|
||||
|
|
@ -286,7 +285,7 @@
|
|||
* [The Book of Shaders](https://thebookofshaders.com/) - Fragment Shaders Guide
|
||||
* [The Bézier Game](https://bezier.method.ac/) - Pen Tool Practice
|
||||
* [ArtWithFlo](https://artwithflo.com/) - Procreate Tutorials
|
||||
* [Paintable](https://paintable.cc/blog-home-bootcamp/) - Digital Art Tutorials
|
||||
* [Paintable](https://paintable.cc/) - Digital Art Tutorials
|
||||
* [Pedro's Pixel Art Tutorials](https://blog.studiominiboss.com/pixelart) or [SLYNYRD](https://www.slynyrd.com/gallery-animated) - Pixel Art Tutorials
|
||||
* [MetPublications](https://www.metmuseum.org/met-publications/all) - Art Learning Books
|
||||
* [Drawingbooks.org](https://www.drawingbooks.org/) - Old Drawing Books
|
||||
|
|
@ -324,13 +323,13 @@
|
|||
* [Dollar Street](https://www.gapminder.org/dollar-street) - Compare Homes by Country / Income
|
||||
* [Unequal Scenes](https://unequalscenes.com/) - Scenes of Inequality Around the World
|
||||
* [EverySecond](https://everysecond.io/) - Visualize Per Second Data
|
||||
* [Internet Live Stats](https://www.internetlivestats.com/) - Live Internet Statistics
|
||||
* [OEC](https://oec.world/en) or [UN Comtrade](https://comtradeplus.un.org/) - Global Trade Data
|
||||
* [Statista](https://www.statista.com/) - Market Statistics
|
||||
* [Netblocks](https://netblocks.org/cost/) - Find Impact of Internet Shutdown on Economy
|
||||
* [Rulers.org](https://rulers.org/) - World Heads Of State & Government Database
|
||||
* [World Births and Deaths](https://worldbirthsanddeaths.com/) - World Birth / Death Rates Visualization
|
||||
* [DataUNODC](https://dataunodc.un.org/) - Drug / Crime Statistics
|
||||
* [Gun Violence Archive](https://www.gunviolencearchive.org/) - Gun Violence Statistics
|
||||
* [Incarceration in Real Numbers](https://mkorostoff.github.io/incarceration-in-real-numbers/) - Incarceration Visualization / Facts
|
||||
* [Expatistan](https://www.expatistan.com/) - Cost of Living Calculator
|
||||
* [Climate Data](https://climate-data.org/) or [Climate Explorer](https://crt-climate-explorer.nemac.org/) - Climate Change Data
|
||||
|
|
@ -391,7 +390,7 @@
|
|||
* [Gez.la](https://gez.la/) - Virtual Tours Map
|
||||
* [Wiki Spaces](https://wiki-spaces.org/) - Virtual Tours
|
||||
* [NaturalHistory](https://naturalhistory.si.edu/visit/virtual-tour) - Natural History Museum Virtual Tour
|
||||
* [Digital Giza](https://giza.mused.org/) - Great Pyramid Virtual Tours
|
||||
* [Digital Giza](https://mused.com/giza/) - Great Pyramid Virtual Tours
|
||||
* [Persepolis Reimagined](https://persepolis.getty.edu/) - Explore Persepolis Recreation
|
||||
* [WW2 in 100 Objects](https://www.tweedewereldoorlog.nl/100voorwerpen/en/virtual-tour/) - WW2 Museum Virtual Tour
|
||||
* [Spitfire Panorama](https://www.haraldjoergens.com/panoramas/spitfire-td314/files/) - Spitfire Mark IX Cockpit Interactve Panorama
|
||||
|
|
@ -429,7 +428,7 @@
|
|||
* [WebGL Water](https://madebyevan.com/webgl-water/) - Water Simulation
|
||||
* [LAMMPS](https://www.lammps.org/) - Molecular Dynamics (MD) Code
|
||||
* [avogadro](https://sourceforge.net/projects/avogadro/) or [MolView](https://molview.org/) - Molecular Viewers / Editors
|
||||
* [Simuwaerm](https://github.com/file-acomplaint/simuwaerm) - Heat Simulator
|
||||
* [Simuwaerm](https://github.com/lennart-finke/simuwaerm) - Heat Simulator
|
||||
* [Electromagnetic Radiation Spectrum Chart](https://i.ibb.co/XCyQNB7/01930032e368.jpg)
|
||||
|
||||
***
|
||||
|
|
@ -442,7 +441,7 @@
|
|||
* ⭐ **[Space Dashboard](https://spacedashboard.com/)** - Space Live Stream Dashboard
|
||||
* ⭐ **[EarthData](https://worldview.earthdata.nasa.gov/)** - Daily Satellite Replays
|
||||
* ⭐ **[Visible Earth](https://visibleearth.nasa.gov/)**, [GOES-16 Satellite Imagery](https://rammb-slider.cira.colostate.edu/) or [Sentinel Hub](https://www.sentinel-hub.com/) - Satellite Imagery
|
||||
* ⭐ **[NASA](https://www.nasa.gov/)** - National Aeronautics and Space Administration Website / [Images](https://images.nasa.gov/) / [Audio](https://www.nasa.gov/connect/sounds/index.html) / [Documents](https://ntrs.nasa.gov/search)
|
||||
* ⭐ **[NASA](https://www.nasa.gov/)** - National Aeronautics and Space Administration Website / [Images](https://images.nasa.gov/) / [Audio](https://www.nasa.gov/audio-and-ringtones/) / [Documents](https://ntrs.nasa.gov/search)
|
||||
* ⭐ **[JPL Photojournal](https://photojournal.jpl.nasa.gov/)** or [JPL Images](https://www.jpl.nasa.gov/images) - JPL Planetary Image Archives
|
||||
* ⭐ **[March to the Moon](https://tothemoon.ser.asu.edu/)**, [Apollo Image Atlas](https://www.lpi.usra.edu/resources/apollo/) or [ApolloArchive](https://apolloarchive.com/) / [Flickr](https://www.flickr.com/photos/projectapolloarchive/albums/ ) - Moon Landing Images
|
||||
* ⭐ **[In The Sky](https://in-the-sky.org/)** - Astronomy News / Interactive Guides
|
||||
|
|
@ -473,8 +472,8 @@
|
|||
* [ExoplanetExplore](https://exoplanetexplore.vercel.app) - Interactive Exoplanet Visualization
|
||||
* [Space Object Comparison](https://mr21.github.io/space-object-comparison/) - Compare Sizes Of Celestial Objects
|
||||
* [Astrogeology](https://astrogeology-usgs.hub.arcgis.com/pages/map-search) - Planetary Maps
|
||||
* [Map of the Universe](https://mapoftheuniverse.net/), [AndroidCelestia](https://github.com/celestiamobile/AndroidCelestia/) or [SpaceEngine](https://spaceengine.org/) / [Old Versions](https://forum.spaceengine.org/viewtopic.php?t=182) - Interactive Universe Scales
|
||||
* [NASA's Eyes](https://science.nasa.gov/eyes/) - 3D Space Visualizations / [Solar System](https://eyes.nasa.gov/apps/solar-system/#/home)
|
||||
* [Map of the Universe](https://mapoftheuniverse.net/), [Scale of the Universe](https://scaleofuniverse.com/), [AndroidCelestia](https://github.com/celestiamobile/AndroidCelestia/) or [SpaceEngine](https://spaceengine.org/) / [Old Versions](https://forum.spaceengine.org/viewtopic.php?t=182) - Interactive Universe Scales
|
||||
* [NASA's Eyes](https://science.nasa.gov/eyes/) or [Celestia](https://celestiaproject.space/) - 3D Space Visualizations / [Solar System](https://eyes.nasa.gov/apps/solar-system/#/home)
|
||||
* [100,000 Stars](https://stars.chromeexperiments.com/) - Interactive 3D Star Visualization
|
||||
* [AndroidPlanisphere](https://github.com/tengel/AndroidPlanisphere) - Android Star Chart
|
||||
* [Aladin](https://aladin.cds.unistra.fr/) - Astronomical Image Viewer / [Lite Version](https://aladin.cds.unistra.fr/AladinLite/)
|
||||
|
|
@ -483,7 +482,7 @@
|
|||
* [Stellarium-Web](https://stellarium-web.org/) or [Stellarium](https://stellarium.org/) - Virtual Stellariums
|
||||
* [WorldwideTelescope](https://worldwidetelescope.org/) - Interactive Telescope Data / [Home Page](https://worldwidetelescope.org/home/) / [GitHub](https://github.com/WorldWideTelescope)
|
||||
* [ESA Hubble](https://esahubble.org/) or [HubbleSite](https://hubblesite.org/) - Hubble Telescope Images
|
||||
* [Webb Space Telescope](https://webbtelescope.org/), [James Webb Space Telescope](https://jwst.nasa.gov/index.html) or [ESAWebb](https://esawebb.org/) - Webb Space Telescope Sites
|
||||
* [Webb Space Telescope](https://webbtelescope.org/), [James Webb Space Telescope](https://science.nasa.gov/mission/webb/) or [ESAWebb](https://esawebb.org/) - Webb Space Telescope Sites
|
||||
* [Webb Compare](https://www.webbcompare.com/) - Webb / Hubble Images
|
||||
* [Space Telescope Live](https://spacetelescopelive.org/) - Live Hubble Image Data
|
||||
* [APOD](https://apod.nasa.gov/) - Daily NASA Astronomy Images
|
||||
|
|
@ -505,7 +504,7 @@
|
|||
* ⭐ **[Microsoft Math Solver](https://math.microsoft.com/)**, [SpeedCrunch](https://speedcrunch.org/) or [MathPapa](https://www.mathpapa.com/algebra-calculator.html) - Advanced Calculator
|
||||
* ⭐ **[Cymath](https://www.cymath.com/)**, [PhotoMath](https://rentry.co/FMHYBase64#photomath), [Mathway](https://www.mathway.com/), [MathDF](https://mathdf.com/), [Math Solver](https://mathsolver.microsoft.com/en), [Tiger Algebra](https://www.tiger-algebra.com/) or [Symbolab](https://www.symbolab.com/) - Math Problem Solvers
|
||||
* ⭐ **[Wumbo](https://wumbo.net/)** - Math Reference Site
|
||||
* ⭐ **[Open Source Society University (OSSU)](https://github.com/ossu/math)** / [PT-BR](https://github.com/ossu/math-br) - Math Roadmap
|
||||
* ⭐ **[Open Source Society University](https://github.com/ossu/math)** / [PT-BR](https://github.com/ossu/math-br) - Math Roadmap
|
||||
* ⭐ **[AoPS Alcumus](https://artofproblemsolving.com/alcumus)** or [MathDash](https://mathdash.live/) - Adaptive Problem Solving
|
||||
* ⭐ **[Desmos](https://www.desmos.com/)** or [GeoGebra](https://www.geogebra.org/) - Graphing Calculators
|
||||
* ⭐ **[BetterExplained](https://betterexplained.com/)** - Math Guides / Courses
|
||||
|
|
@ -517,6 +516,7 @@
|
|||
* [GigaCalculator](https://www.gigacalculator.com/) - Calculators
|
||||
* [numbr.dev](https://numbr.dev/) - Calculators
|
||||
* [Aqua Calc](https://www.aqua-calc.com/) - Calculators
|
||||
* [PlanetCalc](https://planetcalc.com/) - Calculators
|
||||
* [Qalculate](https://qalculate.github.io/) - Desktop Calculator
|
||||
* [QwikTape](https://github.com/4silvertooth/QwikTape) - Note Style Calculator
|
||||
* [MatrixCalc](https://matrixcalc.org/en/) or [Reshish](https://matrix.reshish.com/) - Matrix Calculators
|
||||
|
|
@ -526,7 +526,7 @@
|
|||
* [Giac/Xcas](https://www-fourier.ujf-grenoble.fr/~parisse/giac.html) - Algebra System
|
||||
* [Algebra Rules](https://algebrarules.com/) - Learn Algebra Rules
|
||||
* [Mathematics Roadmap](https://github.com/TalalAlrawajfeh/mathematics-roadmap) - Mathematics Book Recommendations
|
||||
* [Converter Pro](https://f-droid.org/packages/com.ferrarid.converterpro/), [OneConvert](https://oneconvert.com/) or [ConvertAll](https://convertall.bellz.org/) - Unit Converters
|
||||
* [Converter Pro](https://f-droid.org/packages/com.ferrarid.converterpro/), [OneConvert](https://oneconvert.org/) or [ConvertAll](https://convertall.bellz.org/) - Unit Converters
|
||||
* [Integral Calculator](https://www.integral-calculator.com/) or [Derivative Calculator](https://www.derivative-calculator.net/) - Integral / Derivative Calculators
|
||||
* [TicCalc](https://www.ticalc.org/pub/) - TI Graphing Calculator Files
|
||||
* [TI-Basic Developer](http://tibasicdev.wikidot.com/) - TI-Basic Info Repository
|
||||
|
|
@ -562,7 +562,7 @@
|
|||
* ↪️ **[Comp Sci Resources](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/dev-tools#wiki_.25B7_computer_science)**
|
||||
* ↪️ **[3D Modeling](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_3d_modeling_apps) / [CAD Apps](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_cad_engineering)**
|
||||
* ⭐ **[/r/AskEngineers](https://www.reddit.com/r/AskEngineers/)** / [Wiki](https://www.reddit.com/r/AskEngineers/wiki/), **[/r/engineering](https://www.reddit.com/r/engineering/)** or [/r/AutomotiveEngineering](https://www.reddit.com/r/AutomotiveEngineering/) - Engineering Subreddits
|
||||
* ⭐ **[NPTEL](https://nptel.ac.in/course.html)** or [Lesics](https://youtube.com/@Lesics?si=iv2muojj8T15Wzpq) - Engineering Courses
|
||||
* ⭐ **[NPTEL](https://nptel.ac.in/course.html)** or [Sabin](https://www.youtube.com/@SabinCivil) - Engineering Courses
|
||||
* [Formulia](https://play.google.com/store/apps/details?id=m4.enginary) - Engineering Formulas / Tools
|
||||
* [Sanfoundry](https://www.sanfoundry.com/) - Engineering Questions & Answers
|
||||
* [CESDB](https://www.cesdb.com/) - Civil Engineering Software
|
||||
|
|
@ -618,7 +618,7 @@
|
|||
* ⭐ **[Wikispecies](https://species.wikimedia.org/)**, [A-Z Animal](https://a-z-animals.com/) or [The Catalogue of Life](https://www.catalogueoflife.org/) - Species Databases
|
||||
* ⭐ **[OneZoom](https://www.onezoom.org/)** - Tree of Life Explorer
|
||||
* ⭐ **[Lost and Found Nature](https://www.lostandfoundnature.com/)** - Re-Discovered Animals / Plants
|
||||
* ⭐ **[Open Source Society University (OSSU)](https://github.com/ossu/bioinformatics)** - Bioinformatics Roadmap
|
||||
* ⭐ **[Open Source Society University](https://github.com/ossu/bioinformatics)** - Bioinformatics Roadmap
|
||||
* [BiologyOnline](https://www.biologyonline.com/) - Biology Articles
|
||||
* [Biodiversity Heritage Library](https://www.biodiversitylibrary.org/) - Biodiversity Research
|
||||
* [Alien](https://alien-project.org/) - Artificial Life Simulator / [GitHub](https://github.com/chrxh/alien) / [Video](https://youtu.be/w9R6zrdl6jM)
|
||||
|
|
@ -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
|
||||
|
|
@ -742,7 +743,6 @@
|
|||
* [Tandem](https://www.tandem.net/)
|
||||
* [Conversation Exchange](https://www.conversationexchange.com/)
|
||||
* [RhinoSpike](https://rhinospike.com/)
|
||||
* [Lang-8](https://lang-8.com/)
|
||||
* [LangX](https://Langx.io/)
|
||||
* [Polyglot](https://polyglotclub.com/)
|
||||
|
||||
|
|
@ -775,14 +775,14 @@
|
|||
|
||||
## ▷ Japanese
|
||||
|
||||
* 🌐 **[GaijinRyman's Resources](https://github.com/GaijinRyman/JapaneseResources)**, [yame dame](https://yameda.me/), [Nihongo](https://nihongo-e-na.com/eng/), [Japanese Resources](https://forum.wordreference.com/threads/japanese-resources-%E2%80%94-constantly-updated.787986/) or [AnimeCards](https://animecards.site/) - Japanese Learning Resources
|
||||
* 🌐 **[GaijinRyman's Resources](https://github.com/GaijinRyman/LearningJapaneseResources)**, [yame dame](https://yameda.me/), [Nihongo](https://nihongo-e-na.com/eng/), [Japanese Resources](https://forum.wordreference.com/threads/japanese-resources-%E2%80%94-constantly-updated.787986/) or [AnimeCards](https://animecards.site/) - Japanese Learning Resources
|
||||
* 🌐 **[Japanese Pitch Accent Resources](https://github.com/olety/japanese-pitch-accent-resources)** - Japanese Accent Resources
|
||||
* ⭐ **[TheMoeWay](https://learnjapanese.moe/)** / [Discord](https://discord.gg/nhqjydaR8j), [Kakugo](https://github.com/blastrock/kakugo), [Marshall's Site](https://marshallyin.com/), [HeyJapan](https://heyjapan.net/), [Renshuu](https://www.renshuu.org/), [GuideToJapanese](https://guidetojapanese.org/), [jpdb](https://jpdb.io/), [NativShark](https://www.nativshark.com/), [Donkuri](https://donkuri.github.io/learn-japanese/) or [Tofugu](https://www.tofugu.com/) - Learn Japanese
|
||||
* ⭐ **[Animelon](https://animelon.com/)** - Learn Japanese with Anime
|
||||
* [Minato](https://minato-jf.jp/) - Japanese Courses
|
||||
* [JapaneseTab](https://github.com/Anupya/JapaneseTab) - Japanese Learning Extension
|
||||
* [Supernative](https://supernative.tv/) or [LearnNatively](https://learnnatively.com/) - Learn Japanese via Media
|
||||
* [jidoujisho](https://github.com/lrorpilla/jidoujisho) or [Manabi](https://reader.manabi.io/) - Learn Japanese via Books
|
||||
* [jidoujisho](https://github.com/arianneorpilla/jidoujisho) or [Manabi](https://reader.manabi.io/) - Learn Japanese via Books
|
||||
* [HayaiLearn](https://www.hayailearn.com/) - Learn Japanese via YouTube
|
||||
* [Memento](https://ripose-jp.github.io/Memento/) - Japanese Learning Video Player
|
||||
* [JapaneseWithAnime](https://www.japanesewithanime.com/) or [Immersion Kit](https://www.immersionkit.com/) - Learn Japanese with Anime / Manga
|
||||
|
|
@ -791,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
|
||||
|
|
@ -890,6 +889,264 @@
|
|||
|
||||
***
|
||||
|
||||
# ► Developer Learning
|
||||
|
||||
* 🌐 **[Awesome Certificates](https://panx.io/awesome-certificates/)** - Dev Course Indexes
|
||||
* 🌐 **[Awesome Podcasts](https://github.com/rShetty/awesome-podcasts)** - Podcasts for Software Engineers
|
||||
* 🌐 **[Awesome YouTubers](https://github.com/JoseDeFreitas/awesome-youtubers)** - YouTube Dev Channels Indexes
|
||||
* 🌐 **[ProgrammingLearningResources](https://rentry.co/ProgrammingLearningResources)** or [A-to-Z-Resources-for-Students](https://github.com/dipakkr/A-to-Z-Resources-for-Students) - Programming Learning Resources
|
||||
* 🌐 **[Path to Senior Engineer](https://github.com/jordan-cutler/path-to-senior-engineer-handbook)** - Software Engineer Resources
|
||||
* ↪️ **[Programming Books](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/reading#wiki_.25B7_programming_books)** - Read / Download Programming Books
|
||||
* ↪️ **[Programming / Coding Tutorials](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_coding_tutorials)**
|
||||
* ⭐ **[freeCodeCamp](https://www.freecodecamp.org/)** - Programming / Courses / Interactive
|
||||
* ⭐ **[Git Cheatsheet](https://www.ndpsoftware.com/git-cheatsheet.html#loc=index;)** or [Git Commands](https://gabrieldejesus.github.io/git-commands/) / [2](https://github.com/gabrieldejesus/git-commands) - Git Command Lists
|
||||
* ⭐ **[OpenVim](https://openvim.com/)** - Interactive Vim Tutorial
|
||||
* ⭐ **[StarSQL](https://selectstarsql.com/)** or [Learn SQL](https://sqlbolt.com/) - SQL Lessons
|
||||
* [First Timers Only](https://www.firsttimersonly.com/) or [First Contributions](https://firstcontributions.github.io/) - Contribution Guides for Beginners
|
||||
* [Git Guide](https://fateen45.notion.site/Git-GitHub-61bc81766b2e4c7d9a346db3078ce833) or [Git Tips](https://github.com/git-tips/tips) - Git Guides / Tips
|
||||
* [Oh My Git!](https://ohmygit.org/) or [Oh Shit, Git!?!](https://ohshitgit.com/) - Git Learning Game
|
||||
* [Git+ Coach](https://github.com/vishal2376/git-coach) - Git Learning App
|
||||
* [Git Tutorial](https://4geeksacademy.github.io/git-interactive-tutorial/) - Interactive Git Tutorial
|
||||
* [Learn Git Branching](https://learngitbranching.js.org/) - Interactive Git Branching Guide
|
||||
* [Git-it](https://github.com/jlord/git-it-electron) - Learn CLI Git & GitHub
|
||||
* [Git Time](https://git.bradwoods.io/) - Git Version Control System Learning Game
|
||||
* [Audio Dev](https://audiodev.blog/newbie-resources/) - Audio Programming Learning Resources
|
||||
* [DZone](https://dzone.com/) - Developer Tutorials
|
||||
* [DevToolTips](https://devtoolstips.org/) - Developer Tips
|
||||
* [Dev.tube](https://dev.tube/) - Developer Talks
|
||||
* [DecodingDevOps](https://www.decodingdevops.com/) - Developer Q&A
|
||||
* [Roadmap](https://roadmap.sh/) - Developer Roadmaps / [GitHub](https://github.com/kamranahmedse/developer-roadmap)
|
||||
* [Programming Challenges](https://i.ibb.co/J3ppPQ3/5bdea0d754ac.png), [LightOJ](https://lightoj.com/) or [Code Golf](https://codegolf.stackexchange.com/) - Programming Challenges
|
||||
* [RoboMind](https://www.robomind.net/) or [Checki0](https://checkio.org/) - Code Learning Games
|
||||
* [mimo](https://mimo.org/) - Coding Tutorial App
|
||||
* [Curated Programming Resources](https://github.com/Michael0x2a/curated-programming-resources) - Programming Courses
|
||||
* [Interactive Tutorials](https://github.com/ronreiter/interactive-tutorials) or [Code Basics](https://code-basics.com/) - Interactive Programming Courses
|
||||
* [Learn to Program](https://github.com/karlhorky/learn-to-program) - Programming Courses
|
||||
* [FreeCourses](https://freecourses.github.io/) - Programming Courses
|
||||
* [CloudSkillsBoost](https://www.cloudskillsboost.google/paths) - Programming Courses
|
||||
* [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
|
||||
* [Codecademy](https://www.codecademy.com/) or [Coddy](https://coddy.tech/) - Coding Lessons
|
||||
* [CodinGame](https://www.codingame.com/) - Games to Practice Coding / Programming
|
||||
* [Advent of Code](https://adventofcode.com/) - Programming Puzzles
|
||||
* [Karel The Robot](https://github.com/fredoverflow/karel) - Basic Programming Teaching Environment
|
||||
* [Project Based Learning](https://github.com/practical-tutorials/project-based-learning) - Collection of Project-Based Tutorials
|
||||
* [Interview University](https://github.com/jwasham/coding-interview-university) - Software Engineer Study Guides
|
||||
* [Software Engineering Interview Preparation](https://github.com/orrsella/soft-eng-interview-prep) - Software Engineer Interview Preparation
|
||||
* [system-design-primer](https://github.com/donnemartin/system-design-primer) - Large Scale System Design Guides
|
||||
* [LearnToCloud](https://learntocloud.guide/) - Cloud Computing Guide
|
||||
* [Swift Playgrounds](https://developer.apple.com/tutorials/swiftui) - Learn Swift UI / [Samples](https://developer.apple.com/tutorials/sample-apps)
|
||||
* [LearnYouHaskell](http://learnyouahaskell.com/chapters) - Haskell Guide
|
||||
* [Vim Cheatsheet](https://i.ibb.co/FbdMMHN/460e75dd8543.png) or [rTorr](https://vim.rtorr.com/) - Vim Editor Cheat Sheets
|
||||
* [Vim University](https://github.com/wincent/vim-university) - Vim Tips
|
||||
* [VimTip](https://vim.fandom.com/wiki/Category:VimTip) - Vim Editor Tips
|
||||
* [Vim Adventures](https://vim-adventures.com/) - Vim Learning Game
|
||||
* [Vim Golf](https://www.vimgolf.com/) - Vim Challenges
|
||||
* [High Assurance Rust](https://highassurance.rs/) - Software Development Guide
|
||||
* [SQL PD](https://sqlpd.com/), [Lost at SQL](https://lost-at-sql.therobinlord.com/) or [SQL Easy](https://www.sql-easy.com/) - SQL Learning Games
|
||||
* [PostgreSQL Tutorial](https://www.postgresqltutorial.com/) - PostgreSQL Tutorial
|
||||
* [MySQL Tutorial](https://www.mysqltutorial.org/) - MySQL Tutorial
|
||||
* [LearnOpenGL](https://learnopengl.com/) - Learn OpenGL
|
||||
* [Devops Exercises](https://github.com/bregman-arie/devops-exercises) - DevOps Exercises
|
||||
* [90DaysOfDevOps](https://github.com/MichaelCade/90DaysOfDevOps) - Learn DevOps
|
||||
* [Hasura](https://hasura.io/learn/) - GraphQL Courses
|
||||
* [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
|
||||
|
||||
***
|
||||
|
||||
## ▷ Web Development
|
||||
|
||||
* 🌐 **[MDN](https://developer.mozilla.org/)** or [Web Dev Resources](https://joshjoshuap-webdevresources.vercel.app/) - Web Dev Learning Resources
|
||||
* ⭐ **[Odin Project](https://www.freecodecamp.org/learn/the-odin-project/)**, [2](https://www.theodinproject.com/) - Programming / Courses / Interactive / [Discord](https://discord.com/invite/fbFCkYabZB)
|
||||
* ⭐ **[FullStackOpen](https://fullstackopen.com/en/)** - Full Stack Course
|
||||
* ⭐ **[LandChad](https://landchad.net/)** or [learn.sadgrl.online](https://learn.sadgrl.online/) - Site Development Guides
|
||||
* ⭐ **[Learn to Code HTML & CSS](https://learn.shayhowe.com/)** - HTML/CSS Course
|
||||
* ⭐ **[PHP: The Right Way](https://phptherightway.com/)**, [Learn PHP](https://odan.github.io/learn-php/) or [PHP Tutorial](https://www.phptutorial.net/) - Learn PHP
|
||||
* ⭐ **[JavaScript.info](https://javascript.info/)**, [Patterns.dev](https://www.patterns.dev/) or [30 Days Of JavaScript](https://github.com/Asabeneh/30-Days-Of-JavaScript) - JavaScript Learning Sites
|
||||
* [Web Dev for Beginners](https://microsoft.github.io/Web-Dev-For-Beginners/) - Web Dev Course
|
||||
* [Aquent Gymnasium](https://thegymnasium.com/) or [TheValleyOfCode](https://thevalleyofcode.com/) - Web Dev Tutorials
|
||||
* [Dash](https://dash.generalassemb.ly/) - Web Dev Courses
|
||||
* [Web Skills](https://andreasbm.github.io/web-skills/), [Codeguage](https://www.codeguage.com/) / [Discord](https://discord.gg/V8jcS8d2H5), [web.dev](https://web.dev/learn) or [Encodedna](https://www.encodedna.com/) - Web Dev Guides
|
||||
* [Codevolution](https://www.youtube.com/@Codevolution) - Web Dev Video Lessons
|
||||
* [Local-First Web](https://localfirstweb.dev/) - Local-First Web Development Guide
|
||||
* [DOM Events](https://domevents.dev/) - Learn about DOM Events
|
||||
* [backendlore](https://github.com/fpereiro/backendlore) - Backend Coding Guide
|
||||
* [backend-challenges](https://github.com/CollabCodeTech/backend-challenges) - Backend Challenges for Practice
|
||||
* [Full Stack Solana Development Guide](https://dev.to/edge-and-node/the-complete-guide-to-full-stack-solana-development-with-react-anchor-rust-and-phantom-3291) - [Examples](https://github.com/dabit3/complete-guide-to-full-stack-solana-development)
|
||||
* [STPG](https://stpg-tk.netlify.app/guides/) - Startpage Creation Guides / [Discord](https://discord.com/invite/ExAGgVR)
|
||||
* [Web Design in 4 Minutes](https://jgthms.com/web-design-in-4-minutes/) or [Strml](https://www.strml.net/) - Interactive Web Design Tutorial
|
||||
* [WebGL and GLSL Workshop](https://mattdesl.github.io/workshop-webgl-glsl/) - Interactive WebGL / GLSL Tutorial
|
||||
* [css-animation](https://css-animations.io/) - CSS Animation Tutorial
|
||||
* [100DayCSS](https://100dayscss.com/), [CSS Challenges](https://css-challenges.com/) or [PlayCSS](https://playcss.app/) - CSS Challenges
|
||||
* [Codepip](https://codepip.com/games/), [Grid Garden](https://cssgridgarden.com/), [CSS Battle](https://cssbattle.dev/), [CSS Speedrun](https://css-speedrun.netlify.app/), [CodingFantasy](https://codingfantasy.com/) or [CSS Diner](https://flukeout.github.io/) - CSS Learning Games
|
||||
* [Guess CSS](https://www.guess-css.app/) - CSS Guessing Game
|
||||
* [Flexbox Froggy](https://flexboxfroggy.com/), [Flexbox Zombies](https://mastery.games/flexboxzombies), [FlexboxDefense](http://www.flexboxdefense.com/) or [KnightsoftheFlexboxTable](https://knightsoftheflexboxtable.com/) - CSS Flexbox Learning Games
|
||||
* [DefensiveCSS](https://defensivecss.dev/) - CSS Tips
|
||||
* [LearnCSSGrid](https://learncssgrid.com/) or [GridByExample](https://gridbyexample.com/) - CSS Grid Guides
|
||||
* [Leaflet](https://leafletjs.com/) - JavaScript Library for Interactive Maps
|
||||
* [You Don't Know JS](https://github.com/getify/You-Dont-Know-JS) or [EloquentJavaScript](https://eloquentjavascript.net/) - JavaScript Learning Books
|
||||
* [JavaScript Questions](https://github.com/lydiahallie/javascript-questions) or [JavaScriptQuiz](https://javascriptquiz.com/) - JavaScript Questions for Practice
|
||||
* [33 JS Concepts](https://github.com/leonardomso/33-js-concepts) - Useful JavaScript Concepts
|
||||
* [You-Dont-Need-jQuery](https://github.com/camsong/You-Dont-Need-jQuery) - JavaScript Query Style Events Guide
|
||||
* [Airbnb JavaScript Style Guide](https://github.com/airbnb/javascript) - JavaScript Style Guide
|
||||
* [Untrusted](https://alexnisnevich.github.io/untrusted/) - JavaScript Learning Game
|
||||
* [HTML DOM](https://phuoc.ng/collection/html-dom/) - Learn DOM Manipulation
|
||||
* [HTMLDog](https://htmldog.com/) - HTML/CSS and JavaScript Tutorials
|
||||
|
||||
***
|
||||
|
||||
## ▷ Computer Science
|
||||
|
||||
* 🌐 **[CompSciLib](https://www.compscilib.com/)** - Computer Science Tools
|
||||
* ⭐ **[TeachYourselfComputerScience](https://teachyourselfcs.com/)** - Computer Science Book Recommendations
|
||||
* ⭐ **[Open Source Society University (OSSU)](https://github.com/ossu/computer-science)** / [PT-BR](https://github.com/ossu/computer-science-br) / [CN](https://github.com/ossu/computer-science-cn) - Computer Science Roadmap
|
||||
* ⭐ **[NandGame](https://nandgame.com/)** - Computer Building Puzzle
|
||||
* ⭐ **[CraftingInterpreters](http://www.craftinginterpreters.com/)** - Scripting Language Implementation Book / [GitHub](https://github.com/munificent/craftinginterpreters)
|
||||
* [CS1000](https://cs1000.surge.sh/) - Computer Science / Software Engineering
|
||||
* [Tech Dev Guide](https://techdevguide.withgoogle.com/) - Computer Science Google Courses
|
||||
* [Big-O Cheatsheet](https://www.bigocheatsheet.com/) - Computer Science Complexities Cheatsheet
|
||||
* [CSDIY](https://csdiy.wiki/en/), [awesome-low-level-design](https://github.com/ashishps1/awesome-low-level-design), [awesome-system-design-resources](https://github.com/ashishps1/awesome-system-design-resources) or [LearnAIFromScratch](https://learnaifromscratch.github.io/) - Computer Science Learning Guides
|
||||
* [ProfessorMesser](https://www.professormesser.com/) - IT Courses
|
||||
* [Code.org](https://code.org/) - Computer Science Courses
|
||||
* [cs-video-courses](https://github.com/Developer-Y/cs-video-courses) - Computer Science Courses
|
||||
* [Modern Computer Science Curriculum](https://functionalcs.github.io/curriculum/) - Computer Science Courses
|
||||
* [CS50](https://cs50.harvard.edu/x/) - Harvard Computer Science Course
|
||||
* [CollegeComendium](https://collegecompendium.org/) - Computer Science Courses
|
||||
* [Runestone Interactive](https://runestone.academy/) - Interactive Guides
|
||||
* [Computerphile](https://www.youtube.com/@Computerphile/) or [CSDojo](https://www.youtube.com/@CSDojo) - Computer Science YouTube Channels
|
||||
* [ApressOpen](https://www.apress.com/us/apress-open/apressopen-titles) - Computer Science Books
|
||||
* [Papers We Love](https://paperswelove.org/) - Computer Science Research Papers
|
||||
* [CS Academy](https://csacademy.com/) - Interactive Computer Science Lessons
|
||||
* [From Nand To Tetris](https://www.nand2tetris.org/course) - Computer Building Lesson
|
||||
* [Copetti](https://www.copetti.org/) - In-depth Console Architecture Analysis / [GitHub](https://github.com/flipacholas/Architecture-of-consoles)
|
||||
* [Web Browser Engineering](https://browser.engineering/) - Learn about Browser Engineering
|
||||
* [Wi is Fi](https://www.wiisfi.com/) - Wi-Fi Educational Guide
|
||||
* [CPU Land](https://cpu.land/) - What Happens when you run Programs
|
||||
* [Computer Science Lecture Links](https://github.com/riti2409/Resources-for-preparation-Of-Placements)
|
||||
|
||||
***
|
||||
|
||||
## ▷ Data Science
|
||||
|
||||
* 🌐 **[Awesome DataScience](https://github.com/academic/awesome-datascience)** - Data Science Resources
|
||||
* 🌐 **[Data Engineer Handbook](https://github.com/DataExpert-io/data-engineer-handbook)** - Data Engineer Resources
|
||||
* ⭐ **[Open Source Society University (OSSU](https://github.com/ossu/data-science)** - Data Science Roadmap
|
||||
* [Mage](https://www.mage.ai/) - Data Science Pipelines
|
||||
* [Data Science Resources](https://rentry.co/FMHYBase64#data-science-resources) - Data Science Learning Resources
|
||||
* [365Datascience](https://365datascience.com/) - Data Science Courses
|
||||
* [Advanced R](https://adv-r.hadley.nz/) - R Guide / [Solutions](https://advanced-r-solutions.rbind.io/)
|
||||
* [R Packages](https://r-pkgs.org/) - R Packages Guide
|
||||
* [R for Data Science](https://r4ds.had.co.nz/) - R Data Science Guide
|
||||
* [ggplot2: Elegant Graphics for Data Analysis](https://ggplot2-book.org/index.html) - ggplot2 Guide
|
||||
* [Data Science Ipython Notebooks](https://github.com/donnemartin/data-science-ipython-notebooks), [Scipy Lectures](https://lectures.scientific-python.org/) or [Virgilio](https://virgili0.github.io/Virgilio/) / [GitHub](https://github.com/virgili0/Virgilio) - Learn DataScience
|
||||
* [Data Engineering Zoomcamp](https://github.com/DataTalksClub/data-engineering-zoomcamp) - Data Engineering Course
|
||||
* [Data Engineering Practice Problems](https://github.com/danielbeach/data-engineering-practice) - Data Engineering Practice
|
||||
* [Learn to Make Netflix Clone](https://github.com/kubowania/netflix-clone-graphql-datastax)
|
||||
|
||||
***
|
||||
|
||||
## ▷ Data Structures
|
||||
|
||||
* ⭐ **[Leetcode](https://leetcode.com/)** - Coding Practice
|
||||
* ⭐ **Leetcode Tools** - [Solutions](https://walkccc.me/LeetCode/), [2](https://leetcode.ca/) / [Company Questions](https://github.com/MysteryVaibhav/leetcode_company_wise_questions), [2](https://docs.google.com/document/d/1icaNSRq6XcWO3EOycEP9F9P8SLerBanpY3Ni_ZzCfFA/), [3](https://seanprashad.com/leetcode-patterns/) / [Animations](https://github.com/MisterBooo/LeetCodeAnimation) / [Anki Cards](https://github.com/fspv/leetcode-anki) / [Videos](https://github.com/fishercoder1534/Leetcode) / [Resources](https://github.com/ashishps1/awesome-leetcode-resources)
|
||||
* ⭐ **[NeetCode](https://neetcode.io/)** - Coding Interview Practice
|
||||
* [algonds](https://github.com/MaciejWas/algonds) - Coding Practice
|
||||
* [Codility](https://app.codility.com/programmers/) - Coding Practice
|
||||
* [ProjectLearn](https://projectlearn.io/) - Coding Practice
|
||||
* [LintCode](https://www.lintcode.com/) or [CodeWars](https://www.codewars.com/) - Coding Practice
|
||||
* [Coding Questions](https://platform.stratascratch.com/coding) or [Skilled.dev](https://skilled.dev/) - Coding Interview Questions
|
||||
* [DevPost](https://devpost.com/), [HackTheEarth](https://www.hackerearth.com/challenges/), [EMKC](https://emkc.org/challenges), [AtCoder](https://atcoder.jp/) or [Toph.co](https://toph.co/) - Hackathon / Challenge Communities
|
||||
* [Rosetta Code](https://rosettacode.org/wiki/Rosetta_Code), [Kattis](https://open.kattis.com/) or [Coding Problems](https://github.com/MTrajK/coding-problems) - Coding Problems / Solutions
|
||||
* [Exercism](https://exercism.org/), [HackerRank](https://www.hackerrank.com/) or [CS Circles](https://cscircles.cemc.uwaterloo.ca/) - Programming Lessons
|
||||
* [Algorithms-Cheatsheet-Resources](https://github.com/starkblaze01/Algorithms-Cheatsheet-Resources) - Code Algorithm Cheat Sheets
|
||||
* [algorithms](https://prashantbarahi.com.np/docs/algorithms/intro) - Code Algorithms & Data Structures Tutorials
|
||||
* [VisuAlgo](https://visualgo.net/) - Data Structures & Algorithm Animations
|
||||
* [Algorithm Visualizer](https://algorithm-visualizer.org/) or [Sorting Algorithms Visuallizer](https://sadanandpai.github.io/algo-visualizers/#/sorting-visualizer/bubble) / [GitHub](https://github.com/sadanandpai/sorting-visualizer) - Visualize Code Algorithms
|
||||
* [The Algorithms](https://the-algorithms.com/) - Algorithms Index
|
||||
* [CSES Problemset](https://cses.fi/problemset/) - Collection of Algorithmic Programming Problems
|
||||
* [Memery Spy](https://memory-spy.wizardzines.com/) - Learn how Bytes Represent Variables
|
||||
|
||||
***
|
||||
|
||||
## ▷ UI / UX
|
||||
|
||||
* [design.tips](https://www.designer.tips/) or [Utopia](https://utopia.fyi/) - Design Tips
|
||||
* [HackDesign](https://hackdesign.org/) or [Sky Design](https://github.com/josephgoksu/sky-design) - UI / Webdesign Courses
|
||||
* [Learn UI Design](https://learnui.design/) - UI Design Course
|
||||
* [50 UI Tips](https://fifty.user-interface.io/50_ui_tips.pdf) - UI Design Book
|
||||
* [Can't Unsee](https://cantunsee.space/) - UI Design Test
|
||||
* [UXTools](https://uxtools.co/) or [UXMovement](https://uxmovement.com/) - Learn UX Design
|
||||
* [SitePoint](https://www.sitepoint.com/) - UX Design Courses & Books
|
||||
* [delightful humane design](https://codeberg.org/teaserbot-labs/delightful-humane-design) - Humane Design Resources
|
||||
* [Laws of UX](https://lawsofux.com/) - Maxims / Principles for UI Designers
|
||||
* [Deceptive Patterns](https://www.deceptive.design/) - Deceptive User Experience Examples
|
||||
* [UI Coach](https://uicoach.io/) - UI Design Challenge Generator
|
||||
* [HTML Dog](https://htmldog.com/) or [Front Tips](https://front.tips/) - Frontend Tutorials & Examples
|
||||
* [FrontEndMentor](https://www.frontendmentor.io/), [Phuoc](https://phuoc.ng/) or [Frontend Challenges](https://github.com/felipefialho/frontend-challenges) - Frontend Design Challenges
|
||||
* [Frontend Learning Kit](https://github.com/sadanandpai/frontend-learning-kit) - Frontend Learning Index
|
||||
* [Frontend Bootcamp](https://microsoft.github.io/frontend-bootcamp/) - Frontend Workshop
|
||||
* [Design Pattern for Humans](https://github.com/kamranahmedse/design-patterns-for-humans) - Guide on Design Patterns
|
||||
|
||||
***
|
||||
|
||||
## ▷ Cybersecurity
|
||||
|
||||
* 🌐 **[Free Cyber Resources](https://github.com/gerryguy311/Free_CyberSecurity_Professional_Development_Resources)**, [BlueTeam Tools](https://github.com/A-poc/BlueTeam-Tools) or [Applied Cybersecurity](https://www.nist.gov/itl/applied-cybersecurity/nice/resources/online-learning-content) - Cybersecurity Learning Resources
|
||||
* 🌐 **[CTF Sites](https://ctfsites.github.io/)**, [echoCTF.RED](https://echoctf.red/), [picoCTF](https://picoctf.org/), [CTF Beginners Guide](https://jaimelightfoot.com/blog/so-you-want-to-ctf-a-beginners-guide/) or [CTFLearn](https://ctflearn.com/) - CTF Challenges / Resources
|
||||
* ⭐ **[crackmes.one](https://crackmes.one/)** / [Discord](https://discord.com/invite/2pPV3yq), [Hackers101](https://www.hacker101.com/), [SmashTheStack](https://smashthestack.org/), [WebHacking](https://webhacking.kr/) or [DefendTheWeb](https://defendtheweb.net/) - Cybersecurity Challenges
|
||||
* ⭐ **[HackTricks](https://book.hacktricks.xyz/)** - Practical Penetration Testing & Security Auditing Tips
|
||||
* ⭐ **[OWASP Cheatsheet](https://cheatsheetseries.owasp.org/)** - Application Security Guide
|
||||
* [Skills for All](https://skillsforall.com/) or [90DaysOfCyberSecurity](https://github.com/farhanashrafdev/90DaysOfCyberSecurity) - Cybersecurity Courses
|
||||
* [TryHackMe](https://tryhackme.com/), [Hack The Box](https://www.hackthebox.com/) or [OpenSecurityTraining2](https://opensecuritytraining.info/) - Cybersecurity Lessons
|
||||
* [Addielamarr](https://publish.obsidian.md/addielamarr/), [Cyber Talent Kids](https://cybertalentskids.com/) or [Teach Yourself Info Sec](https://teachyourselfinfosec.com/) - Learn About Cybersecurity
|
||||
* [pwn.college](https://pwn.college/) - Cybersecurity Practice
|
||||
* [OverTheWire](https://overthewire.org/wargames/) - Cybersecurity Learning Game
|
||||
* [Hacksplaining](https://www.hacksplaining.com/) - Developer Security Lessons
|
||||
* [MicroCorruption](https://microcorruption.com/) - Learn Reverse Engineering / Cybersecurity
|
||||
* [x86re](https://x86re.com/) - Reverse Engineering Guide
|
||||
* [John Hammond](https://www.youtube.com/@_JohnHammond) or [LowLevelLearning](https://www.youtube.com/@LowLevel-tv/) - Cybersecurity YouTube Tutorials
|
||||
* [Pentesting Bible](https://github.com/blaCCkHatHacEEkr/PENTESTING-BIBLE) or [Juice Shop](https://owasp.org/www-project-juice-shop/) - Learn Pentesting
|
||||
* [How DNS Works](https://howdns.works/) - Learn DNS
|
||||
* [How DNSSEC Works](https://howdnssec.works/) - Learn DNSSEC
|
||||
* [sha256_project](https://github.com/oconnor663/sha256_project) or [cryptohack](https://cryptohack.org/) - Cryptography Learning
|
||||
* [How HTTPS Works](https://howhttps.works/) - Learn HTTPS
|
||||
|
||||
***
|
||||
|
||||
## ▷ Game Development
|
||||
|
||||
* ⭐ **[Learn Gamedev](https://github.com/notpresident35/awesome-learn-gamedev)** - Resources
|
||||
* ⭐ **[MagicTools](https://github.com/ellisonleao/magictools)** - Resources
|
||||
* ⭐ **[develop.games](https://www.develop.games/)** - Game Dev Guides
|
||||
* ⭐ **[Brackeys](https://www.youtube.com/channel/UCYbK_tjZ2OrIZFBvU6CCMiA)** - Game Dev Tutorials
|
||||
* ⭐ **[r/gamedev](https://www.reddit.com/r/gamedev/)** - Reddit Community
|
||||
* [Newgrounds Wiki: Game Dev Resources](https://www.newgrounds.com/wiki/creator-resources/game-dev-resources) - Resources
|
||||
* [The VG Resource](https://www.vg-resource.com/) - Resources
|
||||
* [PICO-8](https://mboffin.itch.io/pico8-educational-toolset) - Basic Game Dev Concepts / [Web Version](https://www.pico-8-edu.com/)
|
||||
* [From Zero To Hero](https://therealpenaz91.itch.io/2dgd-f0th) - 2D Game Dev Book
|
||||
* [Web Game Dev](https://www.webgamedev.com/) - Game Dev Guides / [Discord](https://discord.com/invite/5Z28wjTeyh)
|
||||
* [SebastianLague](https://www.youtube.com/c/SebastianLague/playlists?view=50&sort=dd&shelf_id=4) - Game Dev Tutorials
|
||||
* [Trig for Games](https://demoman.net/?a=trig-for-games) - Trigonometry Lessons for Games
|
||||
* [Game Math](https://gamemath.com/book/intro.html) - Mathematics Lessons for Game Devs
|
||||
* [Graphics Workshop](https://github.com/ekzhang/graphics-workshop) - Learn Computer Graphics
|
||||
* [QB64SourceCode](https://www.qb64tutorial.com/) - QB64 Game Programming Tutorials
|
||||
|
||||
***
|
||||
|
||||
# ► Educational Tools
|
||||
|
||||
* 🌐 **[nanoHUB](https://nanohub.org/)** - Nanotechnology Tools
|
||||
|
|
@ -922,7 +1179,6 @@
|
|||
* ⭐ **[StudyLion](https://lionbot.org)** - Study Tracker / Productivity Discord Bot / [GitHub](https://github.com/StudyLions/StudyLion)
|
||||
* ⭐ **[StudyKit](https://studykit.app/)**, [Knowt](https://knowt.com/), [Quizlet](https://quizlet.com/), [Shmoop](https://www.shmoop.com/) or [SparkNotes](https://www.sparknotes.com/) - Quizzes / Study Material / [Show Hidden](https://greasyfork.org/en/scripts/423872)
|
||||
* ⭐ **[Anki](https://apps.ankiweb.net/)** / [Add-ons](https://ankiweb.net/shared/addons) / [Decks](https://ankiweb.net/shared/decks) / [Awesome Anki](https://github.com/tianshanghong/awesome-anki), [StudyLib](https://www.studylib.net/), [RemNote](https://www.remnote.com/), [Flippity](https://www.flippity.net/), [Flashcard Machine](https://www.flashcardmachine.com/), [revisiondojo](https://www.revisiondojo.com/), [Flashka](https://www.flashka.ai/) or [NoteKnight](https://www.noteknight.com) - Flashcard Tools
|
||||
* ⭐ **[Scholar Unlock](https://www.scholarunlock.com/)** - Edu Account Sharing / [Note](https://ibb.co/rQTPw0N)
|
||||
* ⭐ **[Coursicle](https://www.coursicle.com/)** - Class Schedule Tracker / Android
|
||||
* ⭐ **[OpenSyllabus](https://opensyllabus.org/)** - Syllabus Search / Info
|
||||
* ⭐ **[Refseek](https://www.refseek.com/)**, [Explorer](https://explorer.globe.engineer/), [Occamm](https://www.occamm.com/) or [Merlot](https://www.merlot.org/merlot/index.htm) - Academic Search Engines
|
||||
|
|
@ -941,6 +1197,7 @@
|
|||
* [General Index](https://archive.org/details/GeneralIndex) - Article Metadata Mining Project
|
||||
* [Papertag](https://www.papertag.app/) - Attach Digital Content to Paper
|
||||
* [Graded](https://nightdreamgames.com/graded) - Grades Tracker / Android / [GitHub](https://github.com/NightDreamGames/Graded)
|
||||
* [CalculateCGPA](https://www.calculatecgpa.com/) - Calculate GPA
|
||||
* [guIHelp](https://discord.gg/rgF9jY8CpH) - Bartleby, Quizlet, Coursehero & Scribd Discord Bot
|
||||
* [LearnedEasy](https://learnedeasy.com/) - Create Summaries / Quizzes from Books
|
||||
* [SearchifyX](https://github.com/daijro/SearchifyX) - Search Flashcards
|
||||
|
|
@ -987,7 +1244,6 @@
|
|||
* 🌐 **[JEE Masterlist](https://rentry.co/FMHYBase64#jee-masterlist)** - JEE Resources
|
||||
* 🌐 **[/r/JEENEETards Index](https://www.reddit.com/r/JEENEETards/wiki/index)** - Guides / Study Material
|
||||
* ⭐ **[PirateHive](https://phantomcodex9.github.io/piratehive/)** - Guides / Study Material
|
||||
* ⭐ **[StudyRays](https://devjisu.com/)** - Guides / Study Material / [Telegram](https://telegram.dog/+PQRH3MJfeacxZWU1)
|
||||
* [JEE Books](https://t.me/+iHmGydsEO343ODk1) - JEE Books Archive
|
||||
* [Genetry](https://genetry.carrd.co/) or [Lec.Branch](https://t.me/addlist/pgaJblpaVWIwYjFl) - JEE Lectures
|
||||
* [YouTube Lengths](https://redd.it/1614jn5), [Fastlane Lengths](https://redd.it/17d1qt3) or [Normal Lane Lengths](https://redd.it/183er1y) - Lecture Lengths / Data
|
||||
|
|
@ -1018,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
|
||||
|
||||
|
|
@ -1046,7 +1301,6 @@
|
|||
* [Dictionary](https://www.dictionary.com/) - Dictionary
|
||||
* [Spellcheck](https://www.spellcheck.net/) - Dictionary
|
||||
* [Webopedia](https://www.webopedia.com/) or [TechTerms](https://techterms.com/) - Tech Dictionary
|
||||
* [Why The Fluff](https://www.whythefluff.com/) - Common Jargon Dictionary
|
||||
* [Phrases.org](https://phrases.org.uk/) - Phrase Dictionary
|
||||
* [Words to Use](https://www.words-to-use.com/) - Find Alternative Words
|
||||
* [Phrontistery](https://phrontistery.info/) - Obscure Word Dictionary
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
@ -259,12 +260,13 @@
|
|||
* [Filebin](https://filebin.net/) - Unlimited / 6 Days / [Warning](https://pastebin.com/W0j4VDAN)
|
||||
* [file.kiwi](https://file.kiwi/) - Unlimited / [File Expiry Explanation](https://file.kiwi/en/price)
|
||||
* [FEX.NET](https://fex.net/) - 100GB / 7 Days
|
||||
* [eDisk](https://www.edisk.cz/) - 20GB / 30 Days
|
||||
* [Easyupload.io](https://easyupload.io/) - 100GB / 30 Days
|
||||
* [SwissTransfer](https://www.swisstransfer.com/) - 50GB / 30 Days / 250 Downloads
|
||||
* [BowFile](https://bowfile.com/) - 20GB / 20 Days
|
||||
* [Hexupload](https://www.hexupload.net/) or [AnonTransfer](https://anontransfer.com/) - 15GB / 30 Days
|
||||
* [FileLu](https://filelu.com/) - 15GB / 1 Day (Unlimited with Account) / [Note](https://pastebin.com/Rr9ZqD2F)
|
||||
* [Fastupload.io](https://fastupload.io/en) - 10GB / 30 Days (60 Days with Account)
|
||||
* [eDisk](https://www.edisk.cz/) or [Easyupload.io](https://easyupload.io/) - 10GB / 30 Days
|
||||
* [Drop Download](https://drop.download/) - 10GB / 30 Days / Account Required
|
||||
* [DesiUpload](https://desiupload.co/) - 10GB / 15 Days (15GB / 30 Days with Account)
|
||||
* [GrosFichiers](https://www.grosfichiers.com/) - 10GB / 14 Days
|
||||
|
|
@ -296,24 +298,24 @@
|
|||
|
||||
* ⭐ **[ToffeeShare](https://toffeeshare.com/)**
|
||||
* ⭐ **[Blaze](https://blaze.vercel.app/)** / [GitHub](https://github.com/blenderskool/blaze)
|
||||
* ⭐ **[LocalSend](https://localsend.org/)** - Phone / Desktop Transfer / [Discord](https://discord.com/invite/GSRWmQNP87) / [GitHub](https://github.com/localsend/localsend)
|
||||
* ⭐ **[LocalSend](https://localsend.org/)** - Desktop / Mobile Transfer / [Discord](https://discord.com/invite/GSRWmQNP87) / [GitHub](https://github.com/localsend/localsend)
|
||||
* ⭐ **[justbeamit](https://justbeamit.com/)**
|
||||
* ⭐ **[spacedrop](https://spacedrop.app/)**
|
||||
* [wormhole](https://wormhole.app/)
|
||||
* [KDEConnect](https://kdeconnect.kde.org/)
|
||||
* [Warpinator](https://github.com/linuxmint/warpinator) - Phone / Desktop Transfer
|
||||
* [QRServ](https://play.google.com/store/apps/details?id=dev.uint.qrserv) - Phone / Desktop Transfer / [GitHub](https://github.com/uintdev/qrserv)
|
||||
* [Warpinator](https://github.com/linuxmint/warpinator) - Desktop / Mobile Transfer
|
||||
* [QRServ](https://play.google.com/store/apps/details?id=dev.uint.qrserv) - Desktop / Mobile Transfer / [GitHub](https://github.com/uintdev/qrserv)
|
||||
* [Magic Wormhole](https://github.com/magic-wormhole/magic-wormhole) - Desktop / Mobile Transfer
|
||||
* [croc](https://github.com/schollz/croc) - Desktop / Mobile Transfer / [GUI](https://github.com/howeyc/crocgui)
|
||||
* [pairdrop](https://pairdrop.net/) / [GitHub](https://github.com/schlagmichdoch/pairdrop)
|
||||
* [Snapdrop](https://snapdrop.net/) / [GitHub](https://github.com/SnapDrop/snapdrop)
|
||||
* [sharedrop](https://www.sharedrop.io/)
|
||||
* [new.space](https://new.space/)
|
||||
* [file.pizza](https://file.pizza/)
|
||||
* [Transfernow](https://www.transfernow.net/en)
|
||||
* [Magic Wormhole](https://github.com/magic-wormhole/magic-wormhole)
|
||||
* [onionshare](https://onionshare.org/)
|
||||
* [Horizon Send](https://send.hrzn.cool/)
|
||||
* [WinSCP](https://winscp.net/eng/index.php)
|
||||
* [croc](https://github.com/schollz/croc) / [GUI](https://github.com/howeyc/crocgui)
|
||||
* [landrop](https://landrop.app/)
|
||||
* [Surge](https://getsurge.io/)
|
||||
* [saladroom](https://saladroom.net/)
|
||||
|
|
@ -352,7 +354,7 @@
|
|||
|
||||
***
|
||||
|
||||
* ⭐ **[Cloud Storage Comparisons](https://eylenburg.github.io/cloud_comparison.htm)** - Compare Cloud Storage Polices
|
||||
* ⭐ **[Cloud Storage Comparisons](https://eylenburg.github.io/cloud_comparison.htm)** - Compare Cloud Storage Policies
|
||||
* ⭐ **[GDrive](https://drive.google.com/)** - 15GB Free / ~$3 for 1TB
|
||||
* ⭐ **[mega](https://mega.nz/)** - 20GB Free / ~$4.50 for 1TB / [GitHub](https://github.com/meganz)
|
||||
* ⭐ **[disk.yandex](https://disk.yandex.com/)** - 5GB Free / $2 for 1TB
|
||||
|
|
@ -415,9 +417,9 @@
|
|||
|
||||
## ▷ Mega Tools
|
||||
|
||||
* ⭐ **[Mega-to-Google-Drive](https://github.com/menukaonline/Mega-to-Google-Drive)** - Transfer Files from Mega to GDrive
|
||||
* ⭐ **[Megabasterd](https://github.com/tonikelope/megabasterd)** - MEGA Quota Bypass / [Note](https://pastebin.com/BpS2mwKX)
|
||||
* ⭐ **[Mega_account_generator](https://github.com/qtchaos/py_mega_account_generator)** - Unlimited Upload Size
|
||||
* ⭐ **[MegaDoctor](https://github.com/tonikelope/megadoctor)** - Mega Upload Manager
|
||||
* [MEGASync](https://mega.io/desktop) or [MegaCMD](https://mega.io/cmd) - Mega Apps
|
||||
* [Mega Gen](https://rentry.co/FMHYBase64#mega-gen) - Mega Account Generator
|
||||
* [Mega Gen](https://rentry.co/FMHYBase64#mega-gen) - Mega Account Generator
|
||||
* [Mega-to-Google-Drive](https://github.com/menukaonline/Mega-to-Google-Drive) - Transfer Files from Mega to GDrive
|
||||
|
|
@ -9,6 +9,7 @@
|
|||
* ↪️ **[Download Managers](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/file-tools/#wiki_.25B7_download_managers)**
|
||||
* ↪️ **[Media Posters / Covers](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_covers_.2F_posters)**
|
||||
* ↪️ **[Game Soundtracks](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/audio#wiki_.25B7_game_soundtracks)**
|
||||
* ⭐ **[Sunshine](https://app.lizardbyte.dev/Sunshine/)** or [Moonlight](https://moonlight-stream.org/) - Gaming Remote Desktop Client
|
||||
* ⭐ **[Library of Codexes](https://libraryofcodexes.com/)** - Game Codex Library
|
||||
* ⭐ **[HowLongToBeat](https://howlongtobeat.com/)**, [2](https://hl2b.com/) - Find Average Game Lengths
|
||||
* ⭐ **[/r/tipofmyjoystick](https://www.reddit.com/r/tipofmyjoystick/)** - Find Games via Screenshot or Description
|
||||
|
|
@ -17,7 +18,6 @@
|
|||
* [NIWA](https://www.niwanetwork.org/) - Nintendo Independent Wiki Alliance / [Discord](https://discord.gg/59Mq6qB )
|
||||
* [humble-cli](https://github.com/smbl64/humble-cli) - Humble Bundle CLI
|
||||
* [Gog To Free](https://greasyfork.org/en/scripts/481134) - Add Piracy Site Links to GOG Store
|
||||
* [Moonlight Stream](https://moonlight-stream.org/) / [Server](https://app.lizardbyte.dev/Sunshine/) - Remote Desktop Client
|
||||
* [The Models Resource](https://www.models-resource.com/) - Game Models
|
||||
* [The Spriters Resource](https://www.spriters-resource.com/) - Video Game Sprites
|
||||
* [MiiCharacters](https://www.miicharacters.com/) - Famous Mii Creation Guides
|
||||
|
|
@ -49,7 +49,7 @@
|
|||
* ↪️ **[Steam Workshop Downloaders](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_steam_workshop_downloaders)**
|
||||
* ⭐ **[Koalageddon](https://github.com/acidicoala/Koalageddon/)** / [v2](https://github.com/acidicoala/Koalageddon2) - DLC Unlocker for Steam, Epic, Origin, EA and Uplay
|
||||
* ⭐ **[SmokeAPI](https://github.com/acidicoala/SmokeAPI)** - Steam DLC Unlocker / [Auto Installer](https://github.com/pointfeev/CreamInstaller)
|
||||
* ⭐ **[GreenLuma](https://cs.rin.ru/forum/viewtopic.php?f=29&t=103709)** / [Manager](https://github.com/BlueAmulet/GreenLuma-2024-Manager) - Offline Steam DRM Bypass / DLC Unlockers
|
||||
* ⭐ **[GreenLuma](https://cs.rin.ru/forum/viewtopic.php?f=29&t=103709)** - Offline Steam DRM Bypass / DLC Unlocker / [Manager](https://github.com/BlueAmulet/GreenLuma-2024-Manager) / [Family Bypass Guide](https://rentry.org/gzny948p)
|
||||
* ⭐ **[Unsteam](https://cs.rin.ru/forum/viewtopic.php?f=20&t=134707&hilit=unsteam)** - Online Steam DRM Bypass / Cracked Servers Only / Multiplayer Emulator
|
||||
* ⭐ **[Steamless](https://github.com/atom0s/Steamless)** - Steam DRM Remover
|
||||
* ⭐ **[Goldberg](https://github.com/Detanup01/gbe_fork)** / [GUI](https://github.com/brunolee-GIT/GSE-Generator) / [Guide](https://rentry.co/goldberg_emulator) / [SmartSteamEmu](https://cs.rin.ru/forum/viewtopic.php?f=29&t=62935&sid=c6b5dadd40d56ac20a8789121bb743c5) - Offline Steam DRM Bypass / Multiplayer Emulator
|
||||
|
|
@ -79,7 +79,6 @@
|
|||
* [BoilR](https://github.com/PhilipK/BoilR) - Sync Game Platforms with Steam
|
||||
* [UWPHook](https://briano.dev/UWPHook/) - Add Windows Store Games to Steam
|
||||
* [Steam Rom Manager](https://github.com/SteamGridDB/steam-rom-manager) - Add ROMs to Steam
|
||||
* [HonestSteamBrowser](https://honeststeambrowser.com/) - Steam Server Browser
|
||||
* [Free Packages](https://steamdb.info/freepackages/) - Mass Activate All Free Steam Games / [Guide](https://youtu.be/svbdw-pYNT8)
|
||||
* [Idle Master Extended](https://github.com/JonasNilson/idle_master_extended) - Steam Card Automation
|
||||
* [SteamAchievementManager](https://github.com/gibbed/SteamAchievementManager) - Steam Achievement Manager
|
||||
|
|
@ -125,7 +124,7 @@
|
|||
* ⭐ **[MSI Afterburner](https://www.msi.com/Landing/afterburner)**, [GPU Tweak lll](https://www.asus.com/campaign/GPU-Tweak-III/index.php) or [EVGA Precision X1](https://www.evga.com/precisionx1/) / [Warning](https://ibb.co/VSYtdTW) - GPU Overclocking / [Guide](https://docs.google.com/document/d/14ma-_Os3rNzio85yBemD-YSpF_1z75mZJz1UdzmW8GE/)
|
||||
* ⭐ **[SystemRequirmentsLab](https://www.systemrequirementslab.com/cyri/)** or [PCGameBenchmark](https://www.pcgamebenchmark.com/) - Game Requirements Tests
|
||||
* ⭐ **[MSI Kombustor](https://www.geeks3d.com/furmark/kombustor/)** - GPU Benchmark Test
|
||||
* ⭐ **[ProSettings](https://prosettings.net/)**, [Share Gaming Tweaks](https://www.tenforums.com/gaming/117377-share-gaming-tweaks-chec-my-comprehensive-list-will-blow-your-mind.html), [/r/OptimizedGaming](https://www.reddit.com/r/OptimizedGaming/), [SweetFX](https://sfx.thelazy.net/), [ENBSeries](http://enbdev.com) or [Use Gaming Tweaks](https://github.com/PrincessAkira/Use-Gaming-Tweaks) - Settings Optimization Guides
|
||||
* ⭐ **[ProSettings](https://prosettings.net/)**, [Share Gaming Tweaks](https://www.tenforums.com/gaming/117377-share-gaming-tweaks-chec-my-comprehensive-list-will-blow-your-mind.html), [/r/OptimizedGaming](https://www.reddit.com/r/OptimizedGaming/), [SweetFX](https://sfx.thelazy.net/), [ENBSeries](http://enbdev.com) - Settings Optimization Guides
|
||||
* ⭐ **[DisplayMagician](https://displaymagician.littlebitbig.com/)** or [AutoActions](https://github.com/Codectory/AutoActions) - Per-Game Display Profiles
|
||||
* ⭐ **[Lossless Scaling](https://rentry.co/FMHYBase64#lossless-scaling)** or **[Magpie](https://github.com/Blinue/Magpie)** - Game Upscaler
|
||||
* [RagnoTech Optimization Catalog](https://ragnos1997.com/optimization-catalog/) or [TroubleChute](https://www.youtube.com/c/TroubleChute/featured) - Gaming Optimization Guides
|
||||
|
|
@ -156,7 +155,7 @@
|
|||
* [DsHidMini](https://docs.nefarius.at/projects/DsHidMini/) - Use PS3 Controllers on Windows
|
||||
* [JoyToKey](https://joytokey.net/en/) - Controller Emulator
|
||||
* [Spud Controller](https://sadwhale-studios.itch.io/) - Controller / Mouse Input Displays
|
||||
* [Gamepad-Tester](https://gamepad-tester.com/) or [AresLuna](https://aresluna.org/gamepad-tester/) - Controller Connectivity Testers
|
||||
* [Gamepad-Tester](https://hardwaretester.com/gamepad) or [AresLuna](https://aresluna.org/gamepad-tester/) - Controller Connectivity Testers
|
||||
* [hidusbf](https://github.com/LordOfMice/hidusbf) - Decrease DS4/5 Input Lag / [Video](https://youtu.be/x0wcJM4FtXQ )
|
||||
* [HidHide](https://docs.nefarius.at/projects/HidHide/) - Input Device Firewall
|
||||
* [Whitescent Engine](https://apt.izzysoft.de/fdroid/index/apk/com.github.whitescent.engine) - Use Phone as Joy Stick / [GitHub](https://github.com/whitescent/Engine)
|
||||
|
|
@ -176,7 +175,6 @@
|
|||
* [Otis_Inf Camera Mods](https://kemono.su/patreon/user/37343853) or [CinematicTools Archive](https://rentry.co/FMHYBase64#cinematictools-archive) - Game Camera Mods
|
||||
* [mod.io](https://www.mod.io/) - Cross Platform Game Mods Support / [Discord](https://discord.com/invite/modio)
|
||||
* [WabbaJack](https://www.wabbajack.org/) - Automated Modlist Installer / [Discord](https://discord.com/invite/wabbajack)
|
||||
* [NextGenUpdate](https://www.nextgenupdate.com/) - Game Mods
|
||||
* [ModWorkshop](https://modworkshop.net/) - Game Mods / [Discord](https://discord.com/invite/Eear4JW)
|
||||
* [GameFront](https://gamefront.com/) - Game Mods / [Discord](https://discord.com/invite/gamefront)
|
||||
* [Video Game Mods](https://videogamemods.com/) - Game Mods / [Discord](https://discord.com/invite/C2JussB8hk)
|
||||
|
|
@ -287,6 +285,7 @@
|
|||
* [Co-Optimu](https://www.co-optimus.com/) or [PlayCo-opGame](https://playco-opgame.com/) - Co-Op Game Databases
|
||||
* [SvenEvils Playground](https://store.steampowered.com/curator/8485829/) or [Local Multiplayer List](https://docs.google.com/spreadsheets/d/14f6qS2GJy8C-b40Df3dNH_aZq7WfZ4jMggzEajUrX0w/) - Local Multiplayer Game Database
|
||||
* [DoesItPlay?](https://www.doesitplay.org/) - Offline Game Compatibility Database
|
||||
* [CloudBase](https://cloudbase.gg/) - Cloud Game Database
|
||||
* [Low Spec Games](https://pastebin.com/MTCXZxCN) - Low Spec Game Database
|
||||
* [HOTU](https://www.homeoftheunderdogs.net/) - Rare Game Database
|
||||
* [Delisted Games](https://delistedgames.com/) - Delisted Games Database
|
||||
|
|
@ -328,9 +327,9 @@
|
|||
* [AlterWare](https://alterware.dev/) - COD Multiplayer Projects / [Discord](https://discord.gg/2ETE8engZM) / [GitHub](https://github.com/mxve/alterware-launcher)
|
||||
* [Plutonium](https://plutonium.pw/) - COD Multiplayer Projects / [Setup Guide](https://guides.viren070.me/plutonium) / [Video Guide](https://youtu.be/8F7hv98t8ck) / [Offline Launcher](https://github.com/JugAndDoubleTap/LanLauncher) / [Discord](https://discord.gg/d95y8ah)
|
||||
* [MRON Warzone](https://www.mronwarzone.ru/mron-mod) - MW2019 Multiplayer Client / [Guide](https://www.mronwarzone.ru/verdansk) / [Video Guide](https://youtu.be/mDAVpNILA7s) / [Discord](https://discord.gg/mronwarzone)
|
||||
* [H2M Backup](https://discord.gg/JxYz9kSyRs ) or [Justeeno H2M](https://discord.gg/kz5AMmeDnB) - Modern Warfare Remastered Multiplayer Client / [Guide](https://rentry.org/hz2uthaa) / [Video Guide](https://youtu.be/Sbgom13CJbk), [2](https://youtu.be/uTY_mdciMCg) / [Servers / Info](https://master.iw4.zip/) / [Tools](https://github.com/z6m/h2m-tool)
|
||||
* [HorizonMW](https://discord.gg/horizonmw) - Modern Warfare Remastered Multiplayer Client / [Guide](https://youtu.be/BgfTZMXeQ8E) / [Servers / Info](https://master.iw4.zip/) / [Tools](https://github.com/z6m/h2m-tool)
|
||||
* [CoD4x Mod](https://cod4x.ovh/) - COD4 Multiplayer Project / Requires MP Key / [Discord](https://discord.com/invite/fMGb7BGVvy)
|
||||
* [Venice Unleashed](https://veniceunleashed.net/) / [Discord](https://discord.com/invite/dpJwaVZ) or [Warsaw Revamped](https://warsaw-revamped.com/) / [Discord](https://discord.com/invite/C9Zrh4G) - Battlefield Mod Projects
|
||||
* [Venice Unleashed](https://veniceunleashed.net/) / [Discord](https://discord.com/invite/dpJwaVZ) or [Warsaw Revamped](https://warsaw.gg/) / [Discord](https://discord.com/invite/C9Zrh4G) - Battlefield Mod Projects
|
||||
* [Smash64](https://smash64.online/) - Smash Bros 64 Online / [Discord](https://discord.gg/ssb64)
|
||||
* [Marne](https://marne.io/) - BF1 Multiplayer Project / [Discord](https://marne.io/discord)
|
||||
* [Slippi](https://slippi.gg/) - Super Smash Bros Melee Online / [Discord](https://discord.com/invite/pPfEaW5)
|
||||
|
|
@ -389,14 +388,13 @@
|
|||
* [NASOS](https://download.digiex.net/Consoles/GameCube/Apps/NASOSbeta1.rar) - Gamecube iso.dec to ISO Converter
|
||||
* [NESDev](https://www.nesdev.org/) - NES / SNES Dev Homebrew Guides / Forum
|
||||
* [hakchi2 CE](https://github.com/TeamShinkansen/Hakchi2-CE) - Add More Roms to NES/SNES Classic Mini / [Discord](https://discord.gg/UUvqsAR)
|
||||
* [Easy Guide to Making Amiibo](https://redd.it/5ywlol) - How to Make Your Own Amiibo
|
||||
|
||||
***
|
||||
|
||||
## ▷ Switch Homebrew
|
||||
|
||||
* ⭐ **[Homebrew App Store](https://hb-app.store/)** - Switch / WiiU Homebrew App Store
|
||||
* [Switch Guide](https://nh-server.github.io/switch-guide/) - Switch Homebrew Guide
|
||||
* [Switch Guide](https://switch.hacks.guide/) - Switch Homebrew Guide
|
||||
* [Switchway](https://switchway.net/) - Switch Homebrew Guide
|
||||
* [/r/SwitchPirates](https://www.reddit.com/r/SwitchPirates/) or [/r/SwitchHacks](https://reddit.com/r/SwitchHacks) - Switch Homebrew Subreddits
|
||||
* [LAN Play Status](http://lan-play.com/) or [Switch-LAN-Play](https://github.com/spacemeowx2/switch-lan-play) / [Discord](https://discord.gg/PUEmfV4) - Switch Multiplayer Servers
|
||||
|
|
@ -482,9 +480,10 @@
|
|||
|
||||
* 🌐 **[MCDOC](https://mcdoc.openm.tech/)** - Minecraft Tools & Unlockers / [Discord](https://dc.openm.tech/)
|
||||
* 🌐 **[Awesome Minecraft](https://github.com/bs-community/awesome-minecraft)** or [Birdflop](https://www.birdflop.com/resources/) - Minecraft Resources
|
||||
* ⭐ **[Minecraft Wiki](https://minecraft.wiki/)** or [Discontinued Features Wiki](https://mcdf.wiki.gg/) - Minecraft Wikis
|
||||
* ⭐ **[Minecraft Wiki](https://minecraft.wiki/)** - Minecraft Wikis
|
||||
* ⭐ **[Villager Trading Cheatsheet](https://rayb78.github.io/minecraft-villager-trade-chart.html)**, [2](https://i.ibb.co/sKBjbzg/e9f8d80e2376.png)
|
||||
* ⭐ **[Minecraft Brewing Cheatsheet](https://minecraft.wiki/images/Minecraft_brewing_en.png)**
|
||||
* [MC Utils](https://mcutils.com/) - Minecraft Web Tools
|
||||
* [MCPEDL](https://mcpedl.com/) - Resources for Bedrock & PE
|
||||
* [DigiMinecraft](https://www.digminecraft.com/) - Minecraft Guides
|
||||
* [ViveCraft](https://www.vivecraft.org/) - VR Minecraft / [Discord](https://discord.com/invite/2x3QCk8qa9) / [Github](https://github.com/Vivecraft/VivecraftMod)
|
||||
|
|
@ -504,13 +503,14 @@
|
|||
## ▷ Hosting Tools
|
||||
|
||||
* 🌐 **[FMHL](https://fmhl.devloo.xyz/)** - Free Minecraft Hosts List
|
||||
* ⭐ **[auto-mcs](https://www.auto-mcs.com/)** - Easy Server Setup / [GitHub](https://github.com/macarooni-man/auto-mcs)
|
||||
* ⭐ **[Playit.gg](https://playit.gg/)** - Global Proxy / [Discord](https://discord.gg/AXAbujx)
|
||||
* ⭐ **[paper-optimization](https://paper-chan.moe/paper-optimization/)** or [minecraft-optimization](https://github.com/YouHaveTrouble/minecraft-optimization) - Server Optimization Guides
|
||||
* ⭐ **[auto-mcs](https://www.auto-mcs.com/)** - Easy Server Setup / [GitHub](https://github.com/macarooni-man/auto-mcs)
|
||||
* [e4mc](https://modrinth.com/mod/e4mc) / [Lan Server Properties](https://www.curseforge.com/minecraft/mc-mods/lan-server-properties) or [World Host](https://modrinth.com/mod/world-host) - Local Server Multiplayer Mods
|
||||
* [setup.md](https://setup.md/) - Server Admin Guides / Wiki
|
||||
* [CraftyControl](https://craftycontrol.com/), [MCSManager](https://mcsmanager.com/), [Lodestone](https://lodestone.cc/) / [GitHub](https://github.com/Lodestone-Team/lodestone) or [Fork](https://www.fork.gg/) - Minecraft Server Managers
|
||||
* [Minekube Connect](https://connect.minekube.com/) - Ingress Tunnel for Minecraft Servers
|
||||
* [ViaVersion](https://viaversion.com/) - Allow Connections from Older Versions / [Discord](https://discord.gg/viaversion ) / [GitHub](https://github.com/viaversion)
|
||||
* [mclo.gs](https://mclo.gs/) - Minecraft Log Sharing / Analyzing
|
||||
* [LazyMc](https://github.com/timvisee/lazymc) - Idle Minecraft Server
|
||||
* [Cuberite](https://cuberite.org/) - Server Setup
|
||||
|
|
@ -530,13 +530,13 @@
|
|||
* ⭐ **Prism Launcher Tools** - [Free Method](https://rentry.co/Prism4Free) / [Offline Bypass](https://github.com/antunnitraj/Prism-Launcher-PolyMC-Offline-Bypass) / [Ely.by Version](https://github.com/Octol1ttle/ElyPrismLauncher)
|
||||
* ⭐ **[ATLauncher](https://atlauncher.com/)** or [Technic Launcher](https://www.technicpack.net/) - Modpack Launcher
|
||||
* ⭐ **[Pojav](https://pojavlauncherteam.github.io/)** - Java Edition for Android & iOS (Requires Legit Account)
|
||||
* [MCLauncher](https://github.com/MCMrARM/mc-w10-version-launcher) or [Bedrock Launcher](https://bedrocklauncher.github.io/) - Launchers for Bedrock Edition
|
||||
* ⭐ **[Bedrock Launcher](https://bedrocklauncher.github.io/)** or [MCLauncher](https://github.com/MCMrARM/mc-w10-version-launcher) - Launchers for Bedrock Edition
|
||||
* [SkLauncher](https://skmedix.pl/) - User-friendly Launcher
|
||||
* [UltimMC](https://github.com/UltimMC/Launcher) - Launcher for Cracked Accounts
|
||||
* [Betacraft](https://betacraft.uk/) - Legacy Versions Launcher
|
||||
* [CheatBreaker](https://cheatbreaker.net/) - FPS Modpack Launcher / [GitHub](https://github.com/CheatBreakerNet/Launcher)
|
||||
* [MultiMC](https://multimc.org/) - Launcher
|
||||
* [Legacy Launcher](https://lln4.ru/en), [2](https://llaun.ch/en) - Launcher / [Discord](https://discord.com/invite/cVJuz5R)
|
||||
* [Legacy Launcher](https://llaun.ch/en) - Launcher / [Discord](https://discord.com/invite/cVJuz5R)
|
||||
* [HMCL](https://hmcl.huangyuhui.net/) - Launcher / [GitHub](https://github.com/HMCL-dev/HMCL)
|
||||
* [LabyMod](https://www.labymod.net/) - Launcher
|
||||
* [Crystal Launcher](https://crystal-launcher.net/) - Launcher
|
||||
|
|
@ -645,7 +645,6 @@
|
|||
* [Sym.gg](https://sym.gg/) - Battlefield Info & Weapon Stats / [Discord](https://discord.com/invite/RVRZ3RgYNP)
|
||||
* [Rust Clash](https://wiki.rustclash.com/) - Rust Info / Tools
|
||||
* [Stardew.app](https://stardew.app/) - Stardew Valley Progress Tracker
|
||||
* [Trackmania Replay Viewer](https://gbx.bigbang1112.cz/tool/replay-viewer) - View Trackmania Replays
|
||||
* [ACPatterns](https://acpatterns.com/) - Animal Crossing Pattern Tool / [Discord](https://discord.com/invite/9rGkZNk)
|
||||
* [D4Builds](https://d4builds.gg/) - Diablo 4 Builds
|
||||
* [Fortnite Tracker](https://fortnitetracker.com/) - Fortnite Leaderboards / Stats
|
||||
|
|
@ -700,8 +699,8 @@
|
|||
* [Gearoid Pokémon](https://gearoid.me/pokemon/) - Pokémon Guessing Game
|
||||
* [PKHeX](https://github.com/kwsch/PKHeX) - Pokémon Save File Editor
|
||||
* [GameBanana](https://gamebanana.com/mods/games/14783) - Pokémon Brilliant Diamond / Shining Pearl Mods
|
||||
* [Universal Pokémon Randomizer ZX](https://github.com/Ajarmar/universal-pokemon-randomizer-zx/) - Randomize Pokémon (works for GBA through 3DS)
|
||||
* [NYCPokeMap](https://nycpokemap.com/) - Real-Time Pokémon Go Map for NYC
|
||||
* [Universal Pokémon Randomizer ZX](https://github.com/Ajarmar/universal-pokemon-randomizer-zx/) - Randomize Pokémon (works for GBA to 3DS)
|
||||
* [NYCPokeMap](https://nycpokemap.com/) - Real-Time Pokémon GO Map for NYC
|
||||
* [PkmnCards](https://pkmncards.com/) - Pokémon Card Database
|
||||
* [unite-db](https://unite-db.com/) - Pokémon Unite Database
|
||||
* [HelixChamber](https://helixchamber.com/) - Unused Pokémon Material
|
||||
|
|
@ -760,8 +759,8 @@
|
|||
|
||||
## ▷ Mario Kart Tools
|
||||
|
||||
* ⭐ **[Retro Rewind](https://discord.gg/qbr3Y4PJFH)** - Retro MKW Tracks / Multiplayer / [Wiki](https://wiki.tockdom.com/wiki/Retro_Rewind) / [Auto-Updater](https://github.com/patchzyy/WheelWizard/releases) / [Setup Guide](https://rentry.org/Retro-Rewind) / [Troubleshooting](https://rentry.org/RR-Fixes)
|
||||
* ⭐ **[CTGP Revolution](https://www.chadsoft.co.uk/)** - Custom MKW Tracks / Multiplayer / Disc required
|
||||
* ⭐ **[Retro Rewind](https://rentry.org/Retro-Rewind)** - Retro MKW Tracks / Multiplayer / [Wiki](https://wiki.tockdom.com/wiki/Retro_Rewind) / [Auto-Updater](https://github.com/patchzyy/WheelWizard/releases) / [Troubleshooting](https://rentry.org/RR-Fixes) / [Discord](https://discord.gg/qbr3Y4PJFH)
|
||||
* ⭐ **[CTGP Revolution](https://www.chadsoft.co.uk/)** - Custom MKW Tracks / Multiplayer / Disc required / [Discord](https://discordapp.com/invite/XMEQGDK)
|
||||
* ⭐ **[Mario Kart Midnight](https://wiki.tockdom.com/wiki/Mario_Kart_Midnight)** - Custom MKW Tracks / Multiplayer
|
||||
* ⭐ **[MKWRs](https://mkwrs.com)** or [MKLeaderboards](https://www.mkleaderboards.com/) - Mario Kart Records / Videos
|
||||
* ⭐ **[MKW Lobbies](https://wiimmfi.de/stats/mkw)** - Online MKW Lobbies
|
||||
|
|
@ -808,9 +807,8 @@
|
|||
## ▷ Roblox Tools
|
||||
|
||||
* 🌐 **[Roblox Archive](https://archive.roblonium.com/)** - Roblox Client Archive
|
||||
* ⭐ **[Roblox Account Manager](https://github.com/ic3w0lf22/Roblox-Account-Manager)** - Roblox Account Manager
|
||||
* ⭐ **[Rolimon's](https://www.rolimons.com/games)** or [RoMonitor Stats](https://romonitorstats.com/) - Roblox Experience Stats
|
||||
* ⭐ **[Bloxstrap](https://bloxstrap.pizzaboxer.xyz/)** - Roblox Player Bootstrapper / [Discord](https://discord.com/invite/nKjV3mGq6R) / [GitHub](https://github.com/pizzaboxer/bloxstrap)
|
||||
* ⭐ **[Bloxstrap](https://bloxstraplabs.com/)** - Roblox Player Bootstrapper / [Discord](https://discord.com/invite/nKjV3mGq6R) / [GitHub](https://github.com/pizzaboxer/bloxstrap)
|
||||
* [Novetus](https://bitl.itch.io/novetus) - Self-Hosted Multi-version Roblox Client
|
||||
* [Roblox Studio Mod Manager](https://github.com/MaximumADHD/Roblox-Studio-Mod-Manager) - Roblox Studio Bootstrapper
|
||||
* [RoPro](https://ropro.io/), [Roblox+](https://chromewebstore.google.com/detail/roblox/jfbnmfgkohlfclfnplnlenbalpppohkm), [BTRoblox](https://twitter.com/AntiBoomz/status/1378597179556823040), [RoGold](https://rogold.live/) or [RoSeal](https://www.roseal.live/) - Enhance Roblox Website
|
||||
|
|
@ -840,7 +838,7 @@
|
|||
* ⭐ **[GIMI](https://github.com/SilentNightSound/GI-Model-Importer)** - Genshin Impact Modding Tool / [Gamebanana Page](https://gamebanana.com/games/8552) / [Discord](https://discord.gg/agmg)
|
||||
* [/r/GachaGaming](https://www.reddit.com/r/gachagaming/) - Gacha Games Subreddit
|
||||
* [LunarCore](https://github.com/Melledy/LunarCore) - Private Honkai: Star Rail Servers
|
||||
* [Star Rail Station](https://starrailstation.com/), [Pokke's Library](https://pokkelibrary.com/) or [stardb.gg](https://stardb.gg/) - Honkai Star Rail Guides
|
||||
* [Star Rail Station](https://starrailstation.com/) or [stardb.gg](https://stardb.gg/) - Honkai Star Rail Guides
|
||||
* [Seelie.me](https://seelie.me/) - Genshin / Star Rail Planner
|
||||
* [Genshin Center](https://genshin-center.com/) - Genshin Planner
|
||||
* [Genshin Optimizer](https://frzyc.github.io/genshin-optimizer/) - Genshin Impact Calculator / Artifact Optimizer
|
||||
|
|
|
|||
|
|
@ -31,32 +31,19 @@
|
|||
* [appnetica](https://appnetica.com/) - Download / Torrent / Pre-Installs
|
||||
* [AtopGames](https://atopgames.com/) - Download / Pre-Installs / [Discord](https://discord.gg/KSG9Tg2s7b)
|
||||
* [Reloaded Steam](https://reloadedsteam.com/) - Download / Pre-Installs / [Discord](https://discord.gg/XqMpBdVWvK)
|
||||
* [Rexa Games](https://rexagames.com/) - Download / Pre-Installs / [Discord](https://discord.gg/6KWStFYSTj)
|
||||
* [GetFreeGames](https://getfreegames.net/) - Download / [Discord](https://discord.gg/Pc5TtEzk7k)
|
||||
* [GLoad](https://gload.to/) - Download
|
||||
* [UndergroundGames](https://undergroundgames.net/) - Download / Torrent / Pre-Installs
|
||||
* [World of PC Games](https://worldofpcgames.com/) - Download / [Site Info](https://rentry.org/ikc3x8bt) / Use Adblocker
|
||||
* [Leeching Hell](http://www.leechinghell.pw/) - Download
|
||||
* [AWTDG](https://awtdg.site/) - Download / [Discord](https://discord.gg/kApRXRjJ7A)
|
||||
* [CG Games](https://www.cg-gamespc.com/) - Download
|
||||
* [GamePCFull](https://gamepcfull.com/) - Download
|
||||
* [IWannaPlay](https://sites.google.com/view/iwannaplay/список-игр) - Download / Telegram Required
|
||||
* [Polonium Games](https://polonium-games.xyz/) - Download / [Discord](https://pol-games.dsc.fr.to/)
|
||||
* [Vran's Piracy](https://rentry.co/vranpirated) - Download / [Discord](https://discord.gg/bnHNVgTCkb)
|
||||
* [IRC Games](https://redd.it/x804wg) - Download Games via IRC
|
||||
* [itch.io](https://itch.io/games/new-and-popular/featured/free), [Killed By A Pixel](https://frankforce.com/all-games/), [Gamdie](https://gamdie.com/), [Indie Rentry](https://rentry.org/hhtxv7ud), [DigiPen](https://games.digipen.edu/) or [Game Jolt](https://gamejolt.com/games?price=free) - Indie Games
|
||||
* itch.io Tools - [Downloader](https://github.com/Emersont1/itchio) / [Desktop](https://github.com/itchio/itch) / [Auto-Claim](https://github.com/Smart123s/ItchClaim)
|
||||
* [Alpha Beta Gamer](https://alphabetagamer.com/) - Play Games in Alpha / Beta Testing
|
||||
* [RPG Maker Games](https://rpgmaker.net/games/) - Games made via RPG Maker
|
||||
* [Locomalito](https://locomalito.com/) - Classic Game Remakes
|
||||
* [Necromanthus](https://necromanthus.com/) - 3D Shockwave Games
|
||||
* [LemmaSoft](https://lemmasoft.renai.us/) - Visual Novel Games / [Discord](https://discord.gg/6ckxWYm)
|
||||
* [vgperson](https://vgperson.com/games/) - Simple Japanese Games
|
||||
* [SAGE](https://sagexpo.org/) - Sonic Fan Games / [Discord](https://discord.sonicfangameshq.com/)
|
||||
* [Clone Hero](https://clonehero.net/) - Guitar Hero Clone / [Setlists](https://rentry.co/FMHYBase64#setlists), [2](https://customsongscentral.com/), [3](https://rentry.co/FMHYBase64#frif-drive) / [Wii Controller Support](https://github.com/Meowmaritus/WiitarThing) / [Custom Client](https://clonehero.scorespy.online)
|
||||
* [DoujinStyle](https://doujinstyle.com) - Doujin Games / [Discord](https://discord.com/invite/z2QDFdA)
|
||||
* [MoriyaShrine](https://moriyashrine.org/) - Touhou Games
|
||||
* [Planet Casio](https://www.planet-casio.com/Fr/programmes/jeux-casio.php) or [Cemetech](https://cemetech.net/) - Calculator Games
|
||||
* [GrimReaper's Scene ISO Collection](https://archive.org/details/@waffess) - ISO Collection
|
||||
* [Redump Forum](http://forum.redump.org/) - Disc Preservation Project
|
||||
* [/r/CrackSupport](https://reddit.com/r/CrackSupport) - Cracking Discussion / [Matrix](https://matrix.to/#/!MFNtxvVWElrFNHWWRm:nitro.chat?via=nitro.chat&via=envs.net&via=matrix.org) / [Guilded](https://guilded.gg/crackwatch) / [FAQ](https://rentry.co/cracksupport)
|
||||
|
||||
***
|
||||
|
||||
|
|
@ -69,14 +56,14 @@
|
|||
* ⭐ **[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
|
||||
* [DigitalZone](https://digitalzone.vercel.app/), [2](https://god0654.github.io/DigitalZone/) - Download / Portable Repacks / [Discord](https://discord.gg/ja3v2z26Sj)
|
||||
* [Elamigos](https://elamigos.site/) - Download
|
||||
* [Tiny-Repacks](https://www.tiny-repacks.win) - Torrent
|
||||
* [DODI Repacks](https://dodi-repacks.site/) - Torrent / [Opera Bypass](https://rentry.co/lootlink) / [Warning](https://pastebin.com/n5xS3v6k) / [Discord](https://discord.gg/D9WU7C9FSE)
|
||||
* [DODI Repacks](https://dodi-repacks.download/), [2](https://dodi-repacks.site/) - Torrent / [Opera Bypass](https://rentry.co/lootlink) / [Warning](https://pastebin.com/n5xS3v6k) / [Discord](https://discord.gg/D9WU7C9FSE)
|
||||
* [FreeGOGPCGames](https://freegogpcgames.com/) - GOG Games Torrent Uploads / [Hash Note](https://pastebin.com/pNMj3nay), [2](https://i.ibb.co/XbF2dv1/image.png)
|
||||
* [Magipack](https://www.magipack.games), [CollectionChamber](https://collectionchamber.blogspot.com/) or [ClassicPCGames](https://archive.org/details/classicpcgames) - Retro PC Games
|
||||
* [~archive](https://websites.umich.edu/~archive/) - Retro PC / Mac Games
|
||||
|
|
@ -88,7 +75,6 @@
|
|||
* ↪️ **[DOS](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_dos_games)** / **[MSX Games](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_msx_games)**
|
||||
* ⭐ **[My Abandonware](https://www.myabandonware.com/)** - Abandonware
|
||||
* ⭐ **[AbandonwareGames](https://abandonwaregames.net/)** - Abandonware
|
||||
* [PCGameAbandonware](https://www.pcgamesabandonware.com/) - Abandonware
|
||||
* [Flashtro](https://flashtro.com/) - Abandonware
|
||||
* [Zombs-Lair](https://www.zombs-lair.com/) - Abandonware
|
||||
* [Old-Games.com](https://www.old-games.com/) - Abandonware
|
||||
|
|
@ -175,6 +161,28 @@
|
|||
|
||||
***
|
||||
|
||||
## ▷ Special Interest
|
||||
|
||||
* ⭐ **[itch.io](https://itch.io/games/new-and-popular/featured/free)**, [Killed By A Pixel](https://frankforce.com/all-games/), [Gamdie](https://gamdie.com/), [Indie Rentry](https://rentry.org/hhtxv7ud), [DigiPen](https://games.digipen.edu/) or [Game Jolt](https://gamejolt.com/games?price=free) - Indie Games
|
||||
* ⭐ **itch.io Tools** - [Downloader](https://github.com/Emersont1/itchio) / [Desktop](https://github.com/itchio/itch) / [Auto-Claim](https://github.com/Smart123s/ItchClaim)
|
||||
* [Alpha Beta Gamer](https://alphabetagamer.com/) - Play Games in Alpha / Beta Testing
|
||||
* [RPG Maker Games](https://rpgmaker.net/games/) - Games made via RPG Maker
|
||||
* [Locomalito](https://locomalito.com/) - Classic Game Remakes
|
||||
* [Necromanthus](https://necromanthus.com/) - 3D Shockwave Games
|
||||
* [LemmaSoft](https://lemmasoft.renai.us/) - Visual Novel Games / [Discord](https://discord.gg/6ckxWYm)
|
||||
* [vgperson](https://vgperson.com/games/) - Simple Japanese Games
|
||||
* [Ninja Kiwi Archive](https://ninjakiwi.com/archive) - Ninja Kiwi / Bloons Archive
|
||||
* [SAGE](https://sagexpo.org/) - Sonic Fan Games / [Discord](https://discord.sonicfangameshq.com/)
|
||||
* [Clone Hero](https://clonehero.net/) - Guitar Hero Clone / [Setlists](https://rentry.co/FMHYBase64#setlists), [2](https://customsongscentral.com/), [3](https://rentry.co/FMHYBase64#frif-drive) / [Wii Controller Support](https://github.com/Meowmaritus/WiitarThing) / [Custom Client](https://clonehero.scorespy.online)
|
||||
* [DoujinStyle](https://doujinstyle.com) - Doujin Games / [Discord](https://discord.com/invite/z2QDFdA)
|
||||
* [MoriyaShrine](https://moriyashrine.org/) - Touhou Games
|
||||
* [Planet Casio](https://www.planet-casio.com/Fr/programmes/jeux-casio.php) or [Cemetech](https://cemetech.net/) - Calculator Games
|
||||
* [GrimReaper's Scene ISO Collection](https://archive.org/details/@waffess) - ISO Collection
|
||||
* [Redump Forum](http://forum.redump.org/) - Disc Preservation Project
|
||||
* [/r/CrackSupport](https://reddit.com/r/CrackSupport) - Cracking Discussion / [Matrix](https://matrix.to/#/!MFNtxvVWElrFNHWWRm:nitro.chat?via=nitro.chat&via=envs.net&via=matrix.org) / [Guilded](https://guilded.gg/crackwatch) / [FAQ](https://rentry.co/cracksupport)
|
||||
|
||||
***
|
||||
|
||||
## ▷ [Linux Games](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/linux#wiki_.25B7_linux_gaming)
|
||||
|
||||
***
|
||||
|
|
@ -234,7 +242,6 @@
|
|||
* [ROMhacking](https://www.romhacking.net/) or [Reality Incorporated](https://sites.google.com/view/bonmarioinc/rom-hacks/released-rom-hacks) - ROM Fan Translations
|
||||
* [/r/ROMs](https://www.reddit.com/r/ROMs/) - Discussion Sub
|
||||
* [Vimms Lair](https://vimm.net/) - Emulators / ROMs
|
||||
* [SafeROMs](https://www.saferoms.com/) - Emulators / ROMs
|
||||
* [Gnarly Repacks](https://rentry.co/FMHYBase64#gnarly_repacks) - ROMs / Emulator Repacks
|
||||
* [ROM-Collections](https://rentry.co/FMHYBase64#rom-collections) - ROMs
|
||||
* [WowROMs](https://wowroms.com/en) - ROMs
|
||||
|
|
@ -242,10 +249,9 @@
|
|||
* [Zophar's Domain](https://www.zophar.net/) - Emulators / ROM Hacks
|
||||
* [TheRomDepot](https://theromdepot.com/) - ROMs
|
||||
* [BlueRoms](https://www.blueroms.ws/) - Emulators / ROMs / Torrents
|
||||
* [Ghostware](https://rentry.co/FMHYBase64#ghostware) - ROMs
|
||||
* [Arquivista ROMs](https://rentry.co/FMHYBase64#arquivista) - ROMs
|
||||
* [FinalBurn Neo](https://rentry.co/FMHYBase64#finalburn-neo) - ROMs / Zip
|
||||
* [Romsie](https://romzie.com/) - Emulators / ROMs
|
||||
* [Romsie](https://roms2000.com/) - Emulators / ROMs
|
||||
* [Retrostic](https://www.retrostic.com/) - Emulators / ROMs
|
||||
* [Romsever](https://romsever.com) - Emulators / ROMs
|
||||
* [ROMsGames](https://www.romsgames.net/roms/) - Emulators / ROMs
|
||||
|
|
@ -255,7 +261,7 @@
|
|||
* [GameGinie](https://gameginie.com/) - Emulators / ROMs
|
||||
* [Technosagar](https://roms.technosagar.com/) - ROMs
|
||||
* [The Old Computer](https://www.theoldcomputer.com/) - Emulators / ROMs
|
||||
* [Emulator Games](https://www.emulatorgames.net/) or [FreeROMsDownload](https://roms-download.com/) - Emulators / ROMs
|
||||
* [Emulator Games](https://www.emulatorgames.net/) or [FreeROMsDownload](https://myretro.games/) - Emulators / ROMs
|
||||
* [Emuparadise](https://www.emuparadise.me/) - Emulators / ROMs / [Forum](https://www.epforums.org/) / [Workaround Script](https://web.archive.org/web/20230115181306/https://gist.github.com/byzantium225/484101c7846ce18e514b7b10bf4815c2)
|
||||
* [ROMsPURE](https://ROMspure.cc/) - Emulators / ROMs
|
||||
* [Romspedia](https://www.romspedia.com/) - Emulators / ROMs
|
||||
|
|
@ -307,6 +313,7 @@
|
|||
* [Dat-O-Matic](https://datomatic.no-intro.org/index.php) - ROM Datasets
|
||||
* [NSWDB](https://www.nswdb.com) - Switch Release Tracker
|
||||
* [RomStation](https://www.romstation.fr/) - ROM Downloader / Manager / Multiplayer
|
||||
* [RomPatcher](https://www.marcrobledo.com/RomPatcher.js/) - Online ROM Patcher / [GitHub](https://github.com/marcrobledo/RomPatcher.js/)
|
||||
|
||||
***
|
||||
|
||||
|
|
@ -362,8 +369,8 @@
|
|||
|
||||
* ↪️ **[Interactive Text Adventures](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_text_adventures)**
|
||||
* ⭐ **[Flashpoint](https://flashpointarchive.org/)** / [Discord](https://discord.gg/Z4gGtJvvn8), [Flash by Night](http://www.flashbynight.com/) or [Flash Library](https://rentry.co/FMHYBase64#software-library-flash) - Flash Game Archives
|
||||
* ⭐ **[Ninja Kiwi Archive](https://ninjakiwi.com/archive)** - Ninja Kiwi / Bloons Archive
|
||||
* ⭐ **[Allchemy](https://allchemy.io/)** or [Infinite Craft](https://neal.fun/infinite-craft/) / [Wiki](https://expitau.github.io/InfiniteCraftWiki/) / [Search](https://infinibrowser.zptr.cc/search) - Infinite Item Crafting Games
|
||||
* ⭐ **[Marble Blast Gold Web](https://marbleblast.vaniverse.io/)** - Marble Blast Gold in Browser
|
||||
* ⭐ **[Allchemy](https://allchemy.io/)** or [Infinite Craft](https://neal.fun/infinite-craft/) / [Wiki](https://expitau.github.io/InfiniteCraftWiki/) / [Search](https://infinibrowser.wiki/) - Infinite Item Crafting Games
|
||||
* ⭐ **[Powerline.io](https://powerline.io/)** - Multiplayer Snake / [Discord](https://discord.com/invite/NckDSyb)
|
||||
* ⭐ **[QWOP](https://www.foddy.net/Athletics.html)** - Ragdoll Running Game
|
||||
* ⭐ **[TagPro](https://koalabeast.com/)** - Multiplayer Capture the Flag / [Discord](https://discord.com/invite/hhW3MDzrt3)
|
||||
|
|
@ -371,13 +378,14 @@
|
|||
* [Moo Moo](https://moomoo.io/) - Multiplayer Survival Game
|
||||
* [Slither.io](http://slither.io/) - Grow the Longest Worm
|
||||
* [Hexar.io](http://www.hexar.io/), [splix.io](https://splix.io/) or [paper-io](https://paper-io.com/) - Control the Map
|
||||
* [agar.io](https://agar.io/) - Become the Biggest Circle
|
||||
* [agar.io](https://agar.io/) - Become the Biggest Circle
|
||||
* [Hole.io](https://hole-io.com/) - Become the Biggest Hole / [Discord](https://discord.gg/UA2HdpT)
|
||||
* [Deeeep](https://beta.deeeep.io/) - Multiplayer Feeding Frenzy Games
|
||||
* [SpaceCadetPinball](https://alula.github.io/SpaceCadetPinball) - Browser Space Cadet Pinball
|
||||
* [The Circle](https://the-circle.app/) - Dodge Circles
|
||||
* [JoeDangerTheGame](https://joedangerthegame.com/) - Trials Inspired Game
|
||||
* [Polka Dot Game](https://www.polkadotgame.com/) - Dodge & Eat Dots
|
||||
* [Launch Ball](https://launchball.sciencemuseum.org.uk/) - Physics Game w/ Map Creator
|
||||
* [Spinner](https://hyperspace-wizard.itch.io/spinner) - Spinner Timing Game
|
||||
* [Ehmorris](https://ehmorris.com/lander/) - Spaceship Landing Game
|
||||
* [Dino Swords](https://dinoswords.gg/) - Stay Alive by Jumping / Destroying Cacti
|
||||
|
|
@ -386,7 +394,7 @@
|
|||
* [Sans Fight](https://jcw87.github.io/c2-sans-fight/) - Undertale Fight Simulator
|
||||
* [DB Evolution](https://www.txori.com/dbdevolution) - Dragon Ball Fighting Game
|
||||
* [Flappy Bird](https://flappybird.io/) - HTML5 Flappy Bird
|
||||
* [Marble Blast Gold Web](https://marbleblast.vaniverse.io/) - Marble Blast Gold in Browser
|
||||
* [Starship](https://starshipthegame.spacex.com/) - SpaceX Rocket Game
|
||||
* [Tensor Trust](https://tensortrust.ai/) - AI Prompting Multiplayer Skill Game
|
||||
* [Rooms](https://rooms.xyz/) - Room Design Game / [Discord](https://discord.gg/rooms)
|
||||
* [fsh.zone](https://fsh.zone/) - Fishing Games / [Discord](https://discord.com/invite/FKEzJSf)
|
||||
|
|
@ -404,7 +412,6 @@
|
|||
|
||||
## ▷ Multi-Game Sites
|
||||
|
||||
* 🌐 **[Browser Games Rentry](https://rentry.org/zn79z)** - Browser Game Site Index
|
||||
* ⭐ **[itch.io web games](https://itch.io/games/free/platform-web)** - Browser Games
|
||||
* ⭐ **[Newgrounds](https://www.newgrounds.com/games)** - Browser Games
|
||||
* ⭐ **[Armor Games](https://armorgames.com/)** - Browser Games
|
||||
|
|
@ -418,14 +425,26 @@
|
|||
* [Deepnight](https://deepnight.net/) - Browser Games
|
||||
* [Nicky Case](https://ncase.me/) - Browser Games
|
||||
* [yell0wsuit](https://yell0wsuit.page/games.html) - Browser Games
|
||||
* [N-Arcade](https://n-arcade.io/) - Browser Games
|
||||
* [watabou](https://watabou.itch.io/) - Browser Games
|
||||
* [DAN-BALL](https://dan-ball.jp/en/) - Browser Games
|
||||
* [Miniplay](https://www.miniplay.com/) - Browser Games
|
||||
* [Yandex Games](https://yandex.com/games/) - Browser Games
|
||||
* [Poki](https://poki.com/) - Browser Games
|
||||
* [Arkadium](https://www.arkadium.com/) - Browser Games
|
||||
* [GamePix](https://www.gamepix.com/) - Browser Games
|
||||
* [RoundGames](https://www.roundgames.com/) - Browser Games
|
||||
* [Snokido](https://www.snokido.com/) - Browser Games
|
||||
* [Game-Game](https://game-game.com/) - Browser Games
|
||||
* [ArcadeSpot](https://arcadespot.com/) - Browser Games
|
||||
* [Gaming Wonderland](https://www.gamingwonderland.com/) - Browser Games
|
||||
* [Alfy](https://www.alfy.com/) - Browser Games
|
||||
* [Andkon](https://andkon.com/arcade/) - Browser Games
|
||||
* [FreeGames](https://freegames.org/) - Browser Games
|
||||
* [Friv](https://www.friv.com/) - Browser Games
|
||||
* [/r/WebGames](https://reddit.com/r/WebGames) - Browser Games Subreddit
|
||||
* [Spatial](https://www.spatial.io/) - 3D Browser Games
|
||||
* [Unblock KISD](https://sites.google.com/view/unblockkisd/), [Tyrone's Unblocked](https://sites.google.com/site/tyronesgamesez/) or [UBG365](https://ubg365.github.io/) / [Discord](https://discord.com/invite/jJXpcK6SFv) - Browser Games / Unblocked at Schools
|
||||
* [Rosebud AI](https://www.rosebud.ai/) - AI Made Browser Games
|
||||
* [Unblock KISD](https://sites.google.com/view/unblockkisd/), [Tyrone's Unblocked](https://sites.google.com/site/tyronesgamesez/) or [UBG365](https://ubg365.github.io/) - Browser Games / Unblocked at Schools
|
||||
* [CoolMathGames](https://www.coolmathgames.com/) - Browser Game Site (disguised as edu games)
|
||||
* [FlashMuseum](https://flashmuseum.org/), [Flash Arch](https://flasharch.com/en) or [AlbinoBlackSheep](https://www.albinoblacksheep.com/games/) - Flash Games
|
||||
* [Arcade Prehacks](https://www.arcadeprehacks.com/), [SamsHackedGames](https://www.samshackedgames.com/) or [KongHack](https://konghack.com/) - Flash Game Hacks
|
||||
|
|
@ -439,9 +458,9 @@
|
|||
* ⭐ **[NetGames](https://netgames.io/)** - Multiple Games / [Discord](https://discord.com/invite/chgD7WF)
|
||||
* ⭐ **[Codenames](https://codenames.game/)** - Party Card Games
|
||||
* ⭐ **[GarticPhone](https://garticphone.com/)** - Telephone Game
|
||||
* ⭐ **[skribbl](https://skribbl.io/)**, [Sketchful](https://sketchful.io/), [Drawize](https://www.drawize.com/) or [Gartic](https://gartic.io/) - Drawing / Guessing Game / Multiplayer
|
||||
* ⭐ **[skribbl](https://skribbl.io/)**, [DrawBattle](https://drawbattle.io/), [Sketchful](https://sketchful.io/), [Drawize](https://www.drawize.com/) or [Gartic](https://gartic.io/) - Drawing / Guessing Game / Multiplayer
|
||||
* ⭐ **[Eaglercraft](https://eaglercraftx1-8.github.io/eagler-files/1.8/resent4.0/index.html)**, [2](https://eaglercraft.com/) - Online Browser Minecraft / [Note](https://pastebin.com/wpDZzgN5) / [Source](https://git.eaglercraft.rip/eaglercraft)
|
||||
* ⭐ **Eaglercraft Tools** - [Client](https://eaglercraftx1-8.github.io/1.8/resent4.0/index.html) / [Mod Loader](https://eaglerforge.github.io/) / [Mod Search](https://eaglerrinth.github.io/) / [Create Mods](https://eaglerforge-builder.vercel.app/) / [Public Servers](https://servers.eaglercraft.com/)
|
||||
* ⭐ **Eaglercraft Tools** - [Mod Loader](https://eaglerforge.github.io/) / [Mod Search](https://eaglerrinth.github.io/) / [Create Mods](https://eaglerforge-builder.vercel.app/) / [Public Servers](https://servers.eaglercraft.com/)
|
||||
* [MiniBlox](https://miniblox.io/) - Online Minecraft Alternative
|
||||
* [Bloob.io](https://bloob.io/) - Multiple Games
|
||||
* [Gidd.io](https://gidd.io/) - Multiple Games
|
||||
|
|
@ -646,7 +665,7 @@
|
|||
* ⭐ **[Free Rice](https://freerice.com/)** - Earn Rice for the World Food Programme / Trivia
|
||||
* [FlightGuesser](https://flightguesser.com/) - Flight Path Guessing Game
|
||||
* [Akinator](https://en.akinator.com/) - 20 Questions
|
||||
* [WTM](https://whatthemovie.com/), [Moviedle](https://moviedle.xyz/), [Kino.wtf](https://www.kino.wtf/), [RT Daily](https://www.rottentomatoes.com/daily/) or [Framed](https://framed.wtf/) - Movie Guessing Games
|
||||
* [WTM](https://whatthemovie.com/), [Moviedle](https://moviedle.xyz/), [Kino.wtf](https://www.kino.wtf/) or [Framed](https://framed.wtf/) - Movie Guessing Games
|
||||
* [Cinenerdle](https://www.cinenerdle.app/) or [Cinenerdle2](https://www.cinenerdle2.app/) - Movie Puzzles
|
||||
* [BoxOfficeGA](https://boxofficega.me/) - Box Office Guessing
|
||||
* [GuessAnimeQuiz](https://guessanimequiz.com/) - Anime Guessing
|
||||
|
|
@ -670,7 +689,6 @@
|
|||
* [LoLdle](https://loldle.net/) - League of Legends Guessing Games
|
||||
* [Worldle](https://worldle.teuteuf.fr/) - Country Guessing Game
|
||||
* [Guess The Year](https://guess-the-year.davjhan.com/) or [ChronoPhoto](https://www.chronophoto.app/) - Year Guessing Game
|
||||
* [Factle](https://trivia.frontofficesports.com/factle) - Trivia Game
|
||||
* [Wikitrivia](https://wikitrivia.tomjwatson.com/) - Guess Which Event Came First
|
||||
* [Human or Not?](https://www.humanornot.ai/) - Guess Human vs. AI
|
||||
|
||||
|
|
@ -681,7 +699,7 @@
|
|||
* ⭐ **[Globle](https://globle-game.com/)** - Country Hot-or-Cold Guessing Game
|
||||
* [Emily's GeoGuessr Tools](https://geo.emily.bz/) - GeoGuessr Tools
|
||||
* [GeoTips](https://geotips.net/) / [Discord](https://discord.gg/svhWzU7FMa), [Plonk It](https://www.plonkit.net/) or [Top Tricks](https://somerandomstuff1.wordpress.com/2019/02/08/geoguessr-the-top-tips-tricks-and-techniques/) - GeoGuessr Guides
|
||||
* [OpenGuessr](https://openguessr.netlify.app/) - Free GeoGuessr Alternative with Multiplayer
|
||||
* [OpenGuessr](https://openguessr.com/) - Free GeoGuessr Alternative with Multiplayer
|
||||
* [Geotastic](https://geotastic.net/) - Multiplayer GeoGuessr / Account Required
|
||||
* [WorldGuessr](https://www.worldguessr.com/) - Free GeoGuessr Alternative
|
||||
* [City Guesser](https://virtualvacation.us/guess) - Video-Based GeoGuessr
|
||||
|
|
|
|||
|
|
@ -10,12 +10,9 @@
|
|||
* [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
|
||||
* [Craft](https://www.invisionapp.com/craft) - Photoshop / Sketch Plugins
|
||||
* [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
|
||||
* [Supershots](https://superblog.ai/supershots/) - Add Backgrounds to Images
|
||||
* [Image Splitter](https://ruyili.ca/image-splitter/) - Split Images into Tiles
|
||||
* [PicFont](https://picfont.com/) - Add Text to Images
|
||||
|
||||
|
|
@ -40,37 +37,28 @@
|
|||
|
||||
## ▷ Online Editors
|
||||
|
||||
* ⭐ **[Lunapic](https://lunapic.com/)**
|
||||
* ⭐ **[Photopea](https://www.photopea.com/)** / [Ad Script](https://greasyfork.org/en/scripts/449961), [2](https://greasyfork.org/en/scripts/469575)
|
||||
* [Pixlr](https://pixlr.com/)
|
||||
* [Photomate](https://photomate.dev/)
|
||||
* [BeFunky](https://www.befunky.com/)
|
||||
* [Resize Pixel](https://www.resizepixel.com/)
|
||||
* [Polotno Studio](https://studio.polotno.com/)
|
||||
* [OIE](https://www.online-image-editor.com/)
|
||||
* [IMG online](https://www.imgonline.com.ua/eng/)
|
||||
* [BitMappery](https://www.igorski.nl/application/bitmappery/)
|
||||
* [iPiccy](https://ipiccy.com/)
|
||||
* [Kapwing](https://www.kapwing.com/)
|
||||
* [ILoveImg](https://www.iloveimg.com/photo-editor)
|
||||
* [Panzoid](https://panzoid.com/)
|
||||
* [Stet](https://stet.io/)
|
||||
* [GifGit](https://www.gifgit.com/)
|
||||
* [Polarr](https://photoeditor.polarr.co/)
|
||||
* [UpperPix](https://upperpix.com/)
|
||||
* [webp2jpg](https://renzhezhilu.github.io/webp2jpg-online/)
|
||||
* [Picverse](https://www.picverse.com/)
|
||||
* [Fotor](https://www.fotor.com/)
|
||||
* [PictureEditor](https://www.pictureeditor.com/)
|
||||
* [PhotoStack](https://photostack.app/)
|
||||
* [Facet](https://facet.ai/)
|
||||
* [Peko-Step](https://www.peko-step.com/en/tool/imageeditor.html)
|
||||
* [imageamigo](https://imageamigo.com)
|
||||
* [ImageOnline](https://imageonline.co/)
|
||||
* [Tom's Editor](https://tomseditor.com/)
|
||||
* [photoaid](https://photoaid.com/en/tools/)
|
||||
* [edit.photo](https://edit.photo/)
|
||||
* [Image Resizer](https://www.image-resizer.eu/)
|
||||
* ⭐ **[Lunapic](https://lunapic.com/)** - Multi-Tool
|
||||
* ⭐ **[Polarr](https://photoeditor.polarr.co/)** - Multi-Tool
|
||||
* ⭐ **[Photopea](https://www.photopea.com/)** - Photoshop Alt
|
||||
* [BitMappery](https://www.igorski.nl/application/bitmappery/) - Photoshop Alt
|
||||
* [iPiccy](https://ipiccy.com/) - Photoshop Alt
|
||||
* [Stet](https://stet.io/) - Photoshop Alt
|
||||
* [Resize Pixel](https://www.resizepixel.com/) - Multi-Tool
|
||||
* [ImageOnline](https://imageonline.co/) - Multi-Tool
|
||||
* [GifGit](https://www.gifgit.com/) - Multi-Tool
|
||||
* [Tom's Editor](https://tomseditor.com/editor/) - Multi-Tool
|
||||
* [Peko-Step](https://www.peko-step.com/en/tool/imageeditor.html) - Multi-Tool
|
||||
* [Pixlr](https://pixlr.com/) - Simple Editor
|
||||
* [Photomate](https://photomate.dev/) - Simple Editor
|
||||
* [BeFunky](https://www.befunky.com/) - Simple Editor
|
||||
* [Polotno Studio](https://studio.polotno.com/) - Simple Editor
|
||||
* [OIE](https://www.online-image-editor.com/) - Simple Editor
|
||||
* [ILoveImg](https://www.iloveimg.com/photo-editor) - Simple Editor
|
||||
* [UpperPix](https://upperpix.com/) - Simple Editor
|
||||
* [Picverse](https://www.picverse.com/online-photo-editor) - Simple Editor
|
||||
* [webp2jpg](https://renzhezhilu.github.io/webp2jpg-online/) - Simple Editor
|
||||
* [edit.photo](https://edit.photo/) - Simple Editor
|
||||
* [Image Resizer](https://www.image-resizer.eu/) - Simple Editor
|
||||
|
||||
***
|
||||
|
||||
|
|
@ -85,6 +73,7 @@
|
|||
* [/r/estoration](https://www.reddit.com/r/estoration/) - Photo Restoration Requests
|
||||
* [Photo Face Restorer](https://www.restorephotos.io/) - Face Restoration / Colorization Tool / 2 Daily
|
||||
* [upscaler](https://icons8.com/upscaler) - Image Upscaling
|
||||
* [image-upscaling.net](https://image-upscaling.net/) - Image Upscaling
|
||||
* [Bigjpg](https://bigjpg.com/) - Image Upscaling
|
||||
* [Ilaria Upscaler](https://huggingface.co/spaces/TheStinger/Ilaria_Upscaler) - Image Upscaling
|
||||
* [Crunch](https://github.com/chrissimpkins/Crunch) - Image Upscaling
|
||||
|
|
@ -93,7 +82,6 @@
|
|||
* [Superimage](https://superimage.io/) - Image Upscaling
|
||||
* [ImageScaler](https://github.com/RoanH/ImageScaler/) - Image Upscaling
|
||||
* [Upscaler Stockphotos](https://upscaler.stockphotos.com/) - Image Upscaling
|
||||
* [Zyro Upscaler](https://zyro.com/tools/image-upscaler) - Image Upscaling
|
||||
* [Nicescaler](https://github.com/Djdefrag/NiceScaler) - Image Upscaling
|
||||
* [JPEG Quantsmooth](https://github.com/ilyakurdyukov/jpeg-quantsmooth) - Image Upscaling
|
||||
* [imgupscaler](https://imgupscaler.com/) - Image Upscaling
|
||||
|
|
@ -200,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
|
||||
|
|
@ -209,8 +198,8 @@
|
|||
* [Ok! So](https://okso.app/) - Drawing / Sketching
|
||||
* [Sketchpad](https://sketchpad.app/), [2](https://sketch.io/sketchpad) - Drawing / Sketching
|
||||
* [Sketchbook](https://www.sketchbook.com/) - Drawing / Sketching / Mobile Only
|
||||
* [Paper](https://wetransfer.com/explore/paper) - Drawing / Sketching / iOS Only
|
||||
* [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)
|
||||
|
|
@ -279,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
|
||||
|
|
@ -288,6 +277,7 @@
|
|||
* [Master of all Science](https://masterofallscience.com/) - Rick and Morty Meme Generator
|
||||
* [Frinkiac](https://frinkiac.com/) - Simpsons Meme Generator
|
||||
* [Morbotron](https://morbotron.com/) - Futurama Meme Generator
|
||||
* [LowQualitymemes](https://www.lowqualitymemes.com/) - Low Quality / Cursed Meme Generator
|
||||
* [BreakYourOwnNews](https://www.breakyourownnews.com/) - Breaking News Meme Generator
|
||||
* [AnimorphGenerator](https://animorphgenerator.com/) - Animorph Image Generator
|
||||
* [AwesomeCars](https://awesomecars.neocities.org/) - Drip Car Memes
|
||||
|
|
@ -304,7 +294,6 @@
|
|||
* 🌐 **[archives.design](https://archives.design/)** - Graphic Design Books
|
||||
* [calltoidea](https://www.calltoidea.com/), [onepagelove](https://onepagelove.com/), [awwwards](https://www.awwwards.com/websites), [thedesigninspiration](https://thedesigninspiration.com/), [theinspirationgrid](https://theinspirationgrid.com/) or [inspirationde](https://www.inspirationde.com/) - Graphic Design Inspirations
|
||||
* [PSDcovers](https://www.psdcovers.com/), [mockups-design](https://mockups-design.com/), [zippypixels](https://zippypixels.com/), [Mockups](https://mockups.pixeltrue.com/), [medialoot](https://medialoot.com/free-mockups/) or [MockupsForFree](https://mockupsforfree.com/) - Product Mockups
|
||||
* [Pokémon Assets](https://rentry.co/FMHYBase64#pokemon-assets) - Pokémon Assets Archive
|
||||
|
||||
***
|
||||
|
||||
|
|
@ -326,7 +315,6 @@
|
|||
* [Quote Maker](https://quotescover.com/) - Quote Picture Design
|
||||
* [Pixelied](https://pixelied.com/) - Online Design Tool
|
||||
* [Evernote.Design](https://www.evernote.design/) - Online Design Tools
|
||||
* [Design Tool Zip](https://rentry.co/FMHYBase64#design-tool-zip) - Design App Zip File
|
||||
* [Graphite](https://graphite.rs/) or [Recraft](https://app.recraft.ai/) - Vector Editors
|
||||
* [Glaxnimate](https://glaxnimate.mattbas.org/) - Vector Animation Tool
|
||||
* [MagicaVoxel](https://ephtracy.github.io/) or [Goxel](https://goxel.xyz/) - Voxel Art Editor / Interactive Path Tracing Renderer
|
||||
|
|
@ -360,7 +348,6 @@
|
|||
* [Texture Club](https://www.sketchuptextureclub.com/) - Textures
|
||||
* [TexturesForFree](https://texturesforfree.com/) - Textures
|
||||
* [fatstrawberry](https://www.fatstrawberry.co.uk/) - Textures
|
||||
* [AnthonyBoyd](https://www.anthonyboyd.graphics/) - Textures
|
||||
* [MatLib](https://matlib.gpuopen.com/main/materials/all) - Textures
|
||||
* [TextureNinja](https://texture.ninja/) - Textures
|
||||
* [cgbookcase](https://www.cgbookcase.com/) - Textures
|
||||
|
|
@ -371,7 +358,7 @@
|
|||
* [ArmorLab](https://armorlab.org/), [Pixela](https://pixela.ai/), [Texture Library](https://www.texture-library.com/) or [TextureLab](https://www.texturelab.io/) - Texture Generators
|
||||
* [TextureLab](https://njbrown.itch.io/texturelab) - Procedural Texture Generator / [GitHub](https://github.com/njbrown/texturelab) / [Discord](https://discord.com/invite/975NdQPsSc)
|
||||
* [Material Maker](https://rodzilla.itch.io/material-maker) - Procedural Texture Creator
|
||||
* [DoodDad](https://doodad.dev/pattern-generator), [Repeater](https://repeater.space/), [PatternPad](https://patternpad.com/), [patternico](https://patternico.com/), [Repeater](https://www.richardwestenra.com/repeater/), [more.graphics](https://more.graphics/), [Valentina](https://gitlab.com/smart-pattern/valentina), [tylify](https://tylify.app/), [Patternizer](https://www.patternizer.com/) or [Haikei](https://app.haikei.app/) - Pattern Generators
|
||||
* [DoodDad](https://doodad.dev/pattern-generator), [Repeater](https://repeater.space/), [PatternPad](https://patternpad.com/), [patternico](https://patternico.com/), [Repeater](https://www.richardwestenra.com/repeater/), [more.graphics](https://more.graphics/), [Valentina](https://gitlab.com/smart-pattern/valentina), [Patternizer](https://www.patternizer.com/) or [Haikei](https://app.haikei.app/) - Pattern Generators
|
||||
* [Noise & Gradient](https://www.noiseandgradient.com/), [Gradient Designer](https://gradient-designer.csspost.com/), [BGJar](https://bgjar.com/), [MeshGradient](https://meshgradient.in/) or [BGGenerator](https://bggenerator.com/) - Background / Gradient Generators
|
||||
* [Hide.Lizz](https://hide.lizz.website/) - Camouflage Pattern Generator
|
||||
* [Tabbied](https://tabbied.com/) or [Slopes](https://tinkersynth.com/slopes/) - Art Pattern Generators
|
||||
|
|
@ -390,12 +377,13 @@
|
|||
* [psdkeys](https://psdkeys.com/)
|
||||
* [AvaxGFX](https://avxgfx.com/)
|
||||
* [Freeject](https://www.freeject.net/)
|
||||
* [Cg_peers](https://t.me/Cg_peers)
|
||||
* [PDFTree](https://pngtree.com/)
|
||||
* [NitroGFX](https://nitrogfx.pro/)
|
||||
* [TianUI](https://www.titanui.com/)
|
||||
* [Designer Candies](https://designercandies.net/category/freebies/)
|
||||
* [GraphixTree](https://graphixtree.com/)
|
||||
* [PSDLY](https://www.psdly.com/)
|
||||
* [PSDLY](https://www.psdly.to/)
|
||||
* [Unblast](https://unblast.com/)
|
||||
* [CGArchives](https://cgarchives.com/)
|
||||
* [CGPlugin](https://t.me/s/cgplugin)
|
||||
|
|
@ -602,6 +590,7 @@
|
|||
* [MagicLantern](https://www.magiclantern.fm/) - Custom Canon EOS Firmware / [Unsupported](https://magiclantern.fandom.com/wiki/Other_dslr) / [Twitter](https://twitter.com/autoexec_bin) / [Subreddit](https://www.reddit.com/r/MagicLantern/) / [Discord](https://discord.gg/uaY8akC)
|
||||
* [CHDK](https://chdk.fandom.com/wiki/CHDK) - Custom Canon PowerShot Firmware
|
||||
* [fSpy](https://fspy.io/) - Still Image Camera Matching
|
||||
* [DPReview](https://www.dpreview.com/reviews/image-comparison/fullscreen) - Camera Image Comparison Web App
|
||||
* [GlanceBack](https://glanceback.info/) - Daily Webcam Photo Journal
|
||||
* [Image Color Summarizer](http://mkweb.bcgsc.ca/color-summarizer/) - Image Color Summarizer
|
||||
* [Image Colors](https://franciscouzo.github.io/image_colors/) - Image Color Scatter Plot
|
||||
|
|
@ -645,6 +634,7 @@
|
|||
* [ImageScanOCR](https://github.com/ttop32/ImageScanOCR) - Windows OCR Tool
|
||||
* [Handwriting-OCR](https://github.com/Breta01/handwriting-ocr) - Handwriting OCR
|
||||
* [Project Naptha](https://projectnaptha.com/) - Automatic OCR while Browsing Images
|
||||
* [Pomodoro](https://pomodoro.semlab.io/) - Online OCR
|
||||
* [i2ocr](https://www.i2ocr.com/) - Online OCR
|
||||
* [OCR.SPACE](https://ocr.space/) - Online OCR
|
||||
* [2OCR](https://2ocr.com/) - Online OCR
|
||||
|
|
@ -821,7 +811,7 @@
|
|||
* [Schizoware](https://sourceforge.net/projects/schizoware/) - Image Name / Hash Randomizer
|
||||
* [BetterCensorship](https://bc.betterrepack.com/) - Censor and De-censor Images
|
||||
* [ViewEXIF](https://www.imgonline.com.ua/eng/exif-info.php), [Jimpl](https://jimpl.com/), [ExifData](https://exifdata.com/), [OnlineEXIFViewer](https://onlineexifviewer.com/), [ExifLooter](https://github.com/aydinnyunus/exifLooter), [CameraSummary](https://camerasummary.com/) or [JPEGsnoop](https://www.impulseadventure.com/photo/jpeg-snoop.html) - EXIF / Metadata Viewers
|
||||
* [exiftool](https://exiftool.org/), [2](https://github.com/FrankBijnen/ExifToolGui/), [ExifCleaner](https://exifcleaner.com/), [EXIFRemove](https://www.exifremove.com/), [scrambled-exif](https://gitlab.com/juanitobananas/scrambled-exif), [Metadata-Remover](https://github.com/Anish-M-code/Metadata-Remover), [adarsus](https://www.adarsus.com/en/remove-metadata-online-document-image-video/) or [VerExif](https://www.verexif.com/en/) - Remove Meta / EXIF Data
|
||||
* [exiftool](https://exiftool.org/), [2](https://github.com/FrankBijnen/ExifToolGui/), [ExifCleaner](https://exifcleaner.com/), [EXIFRemove](https://www.exifremove.com/), [scrambled-exif](https://gitlab.com/juanitobananas/scrambled-exif), [Metadata-Remover](https://github.com/Anish-M-code/Metadata-Remover), [exifpurge](https://exifpurge.com/), [adarsus](https://www.adarsus.com/en/remove-metadata-online-document-image-video/) or [VerExif](https://www.verexif.com/en/) - Remove Meta / EXIF Data
|
||||
* [Pic2Map](https://www.pic2map.com/) - Image EXIF data viewer with GPS support
|
||||
* [TheExifer](https://www.thexifer.net/index.php), [Photini](https://github.com/jim-easterbrook/Photini) - Image EXIF Data Editors
|
||||
* [Base64 Image](https://www.base64-image.de/) - Encrypt / Decrypt Images
|
||||
|
|
|
|||
|
|
@ -7,8 +7,8 @@ hero:
|
|||
name: freemediaheckyeah
|
||||
tagline: The largest collection of free stuff on the internet!
|
||||
announcement:
|
||||
title: September Updates 🍂
|
||||
link: /posts/sept-2024
|
||||
title: October Updates 🎃
|
||||
link: /posts/oct-2024
|
||||
image:
|
||||
src: /test.png
|
||||
alt: FMHY Icon
|
||||
|
|
@ -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: |
|
||||
|
|
|
|||
|
|
@ -31,7 +31,7 @@
|
|||
* [Netbalancer](https://netbalancer.com/) - Internet Traffic Control
|
||||
* [Arcai](https://arcai.com/) - WiFi Speed Control
|
||||
* [TCP Optimizer](https://www.speedguide.net/downloads.php) - Connection Optimization / Tuning
|
||||
* [NeverSSL](http://neverssl.com/) or [HTTP Forever](http://httpforever.com/) - Fix Public Wi-Fi Login Pages
|
||||
* [NeverSSL](http://neverssl.com/) - Fix Public Wi-Fi Login Pages
|
||||
* [WiFi-Password](https://github.com/sdushantha/wifi-password) - Fetch WiFi Password / Generate QR Code
|
||||
* [Hosts File Editor](https://hostsfileeditor.com/) or [HostsDock](https://eshengsky.github.io/HostsDock/) - Windows Hosts File Editors
|
||||
* [MAC Address](https://macaddress.io/) - Check MAC Address
|
||||
|
|
@ -61,55 +61,39 @@
|
|||
## ▷ Bookmark Managers
|
||||
|
||||
* ⭐ **[Sidebery](https://github.com/mbnuqw/sidebery)** - Firefox Extension
|
||||
* ⭐ **[Raindrop.io](https://raindrop.io/)**
|
||||
* [Pilgrim](https://pilgrim.are.na/) - Tree Style Path Bookmarking
|
||||
* [Bort](https://bort.io/) - Bookmark Manager / Dropbox Sync
|
||||
* [WebCull](https://webcull.com/) - End-to-end Encryption / Extension / Webapp
|
||||
* [Floccus](https://floccus.org/) - Browser Bookmark Sync Extension / [GitHub](https://github.com/floccusaddon/floccus)
|
||||
* [Keep or Delete](https://www.soeren-hentzschel.at/firefox-webextensions/keep-or-delete-bookmarks/) or [Bookmarks Cleanup](https://chromewebstore.google.com/detail/bookmarks-clean-up/oncbjlgldmiagjophlhobkogeladjijl) - Bookmarks Folder Cleanup Extension
|
||||
* [Auto-Sort Bookmarks](https://github.com/eric-bixby/auto-sort-bookmarks-webext) - Bookmark Sorting Extension
|
||||
* [Bookmarklets Guide](https://rentry.co/bookmarklets-guide) - Useful Bookmarklets / Guide
|
||||
* [wallabag](https://wallabag.org/) - Save and Classify Articles
|
||||
* [SuperMemory](https://supermemory.ai/) - AI Bookmark App
|
||||
* [Bookmarks Organizer](https://github.com/cadeyrn/bookmarks-organizer) - Extension
|
||||
* [Centroly](https://centroly.com/) - Extension
|
||||
* [Omni](https://github.com/alyssaxuu/omni) - Extension
|
||||
* [Saka](https://saka.io/) - Extension
|
||||
* [BetterStacks](https://betterstacks.com/) - Extension
|
||||
* [Instapaper](https://www.instapaper.com/)
|
||||
* [Bookmark OS](https://bookmarkos.com/)
|
||||
* [Bookmarkify](https://bookmarkify.it/)
|
||||
* [Patchwork](https://patchworkapp.com/)
|
||||
* [start.me](https://start.me/start/int/startpage)
|
||||
* [buku](https://github.com/jarun/buku)
|
||||
* [booky](https://booky.io/)
|
||||
* [WebCrate](https://webcrate.app/)
|
||||
* [Unmark](https://unmark.it/)
|
||||
* [Diigo](https://diigo.com/)
|
||||
* [linkding](https://github.com/sissbruecker/linkding)
|
||||
* [linksort](https://linksort.com/)
|
||||
* [LinkAce](https://www.linkace.org/)
|
||||
* [Tagpacker](https://tagpacker.com/)
|
||||
* [yabs.io](https://www.yabs.io/)
|
||||
* [Shaarli](https://shaarli.readthedocs.io/en/master/)
|
||||
* [Openoox](https://openoox.com/)
|
||||
* [Mission Control](https://mission-control.app/)
|
||||
* [histre](https://histre.com/)
|
||||
* [Zulu](https://tryzulu.com/)
|
||||
* [Contentle](https://contentle.com/)
|
||||
* [Clipix](https://www.clipix.com/)
|
||||
* [Collect](https://colllect.io/)
|
||||
* [GGather](https://web.ggather.com/)
|
||||
* [Dropmark](https://www.dropmark.com/)
|
||||
* [Bookmarkme](https://bookmarkme.io/)
|
||||
* [Bublup](https://www.bublup.com/)
|
||||
* [Bkmark](https://bkmark.io/)
|
||||
* [Shiori](https://github.com/go-shiori/shiori)
|
||||
* [LinkSnatch](https://linksnatch.pages.dev/)
|
||||
* [KeepThisSite](https://keepthis.site/)
|
||||
* ⭐ **[Raindrop.io](https://raindrop.io/)** - Web-Based Manager
|
||||
* [Shiori](https://github.com/go-shiori/shiori) - Desktop Manager
|
||||
* [Bort](https://bort.io/) - Web-Based Manager / Dropbox Sync
|
||||
* [WebCull](https://webcull.com/) - Web-Based Manager
|
||||
* [Floccus](https://floccus.org/) - Browser Bookmark Sync / [GitHub](https://github.com/floccusaddon/floccus)
|
||||
* [buku](https://github.com/jarun/buku) - Terminal Manager
|
||||
* [wallabag](https://wallabag.org/) - Web-Based Manager
|
||||
* [Unmark](https://unmark.it/) - Web-Based Manager
|
||||
* [yabs.io](https://www.yabs.io/) - Web-Based Manager
|
||||
* [Dropmark](https://www.dropmark.com/) - Web-Based Manager
|
||||
* [KeepThisSite](https://keepthis.site/) - Web-Based Manager
|
||||
* [histre](https://histre.com/) - Web-Based Manager
|
||||
* [Instapaper](https://www.instapaper.com/) - Desktop Manager
|
||||
* [booky](https://booky.io/) - Desktop Manager
|
||||
* [linksort](https://linksort.com/) - Desktop Manager
|
||||
* [Bookmarkme](https://bookmarkme.io/) - Desktop Manager
|
||||
* [Bookmarks Organizer](https://github.com/cadeyrn/bookmarks-organizer) - Extension Manager
|
||||
* [Centroly](https://centroly.com/) - Extension Manager
|
||||
* [Omni](https://github.com/alyssaxuu/omni) - Extension Manager
|
||||
* [Saka](https://saka.io/) - Extension Manager
|
||||
* [BetterStacks](https://betterstacks.com/) - Extension Manager
|
||||
* [Mission Control](https://mission-control.app/) - Extension Manager
|
||||
* [Zulu](https://tryzulu.com/) - Extension Manager
|
||||
* [GGather](https://web.ggather.com/) - Extension Manager
|
||||
* [linkwarden](https://github.com/linkwarden/linkwarden), [Shaarli](https://shaarli.readthedocs.io/en/master/), [LinkAce](https://www.linkace.org/) or [linkding](https://github.com/sissbruecker/linkding) - Self-Hosted Managers
|
||||
* [ln.ht](https://ln.ht/), [link.horse](https://link.horse/) or [tinygem](https://tinygem.org/) - Social Bookmarking
|
||||
* [SuperMemory](https://supermemory.ai/) - AI Bookmark App
|
||||
* [Keep or Delete](https://www.soeren-hentzschel.at/firefox-webextensions/keep-or-delete-bookmarks/) or [Bookmarks Cleanup](https://chromewebstore.google.com/detail/bookmarks-clean-up/oncbjlgldmiagjophlhobkogeladjijl) - Bookmark Cleanup Extensions
|
||||
* [Auto-Sort Bookmarks](https://github.com/eric-bixby/auto-sort-bookmarks-webext) - Bookmark Sorting Extension
|
||||
* [Bookmarkify](https://bookmarkify.it/) - Create Bookmarklets
|
||||
* [Pilgrim](https://pilgrim.are.na/) - Tree Style Path Bookmarklets
|
||||
* [GetBookmarklets](https://getbookmarklets.com/) - Download / Share Bookmarklets
|
||||
* [linkwarden](https://github.com/linkwarden/linkwarden) - Self-Hosted Bookmark Manager
|
||||
* [Bookmarklets Guide](https://rentry.co/bookmarklets-guide) - Bookmarklets / Guide
|
||||
|
||||
***
|
||||
|
||||
|
|
@ -148,6 +132,7 @@
|
|||
* [LinkMix](https://linkmix.co/)
|
||||
* [Mylinx](https://mylinx.cc/)
|
||||
* [LinkBun](https://linkbun.io)
|
||||
* [AlsoAt](https://alsoat.app)
|
||||
* [pronouns.cc](https://pronouns.cc/) - Share Preferred Pronouns
|
||||
* [seemless](https://www.linkinbio.website/) - Link in Bio for Tiktok & Instagram
|
||||
* [itsmy.fyi](https://itsmy.fyi/) - Create Homepage via Github Issues / [GitHub](https://github.com/rishi-raj-jain/itsmy.fyi)
|
||||
|
|
@ -172,12 +157,12 @@
|
|||
* ⭐ **[Hack.chat](https://hack.chat/)**, [Shick](https://shick.me/), [LeapChat](https://www.leapchat.org/), [Yap](https://yap.chat/), [Convene](https://letsconvene.im/), [Stinto](https://stin.to/en) or [tik.io](https://tlk.io/) - Minimal Account Free Chats
|
||||
* ⭐ **[Gajim](https://gajim.org/)** or [xabber](https://www.xabber.com/) - XMPP Clients
|
||||
* [Pidgin](https://www.pidgin.im/), [Voximity](https://voximity.chat/), [Beeper](https://www.beeper.com/), [Texts](https://texts.com/) or [Ferdium](https://ferdium.org/) - Combine Web Apps / Chats
|
||||
* [Cirlos](https://www.cirlos.net/), [Miranda NG](https://www.miranda-ng.org/en/), [Escargot](https://escargot.chat/) or [WeeChat](https://weechat.org/) - Chat Apps
|
||||
* [Miranda NG](https://www.miranda-ng.org/en/), [Escargot](https://escargot.chat/) or [WeeChat](https://weechat.org/) - Chat Apps
|
||||
* [Twist](https://twist.com/) - Collaboration Chat Manager
|
||||
* [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
|
||||
|
|
@ -231,13 +216,11 @@
|
|||
# ► Search Tools
|
||||
|
||||
* ↪️ **[Reddit Search Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/social-media#wiki_.25B7_reddit_search)**
|
||||
* ⭐ **[pSearch](https://serjsx.github.io/wpSearch/)**, [Search All](https://www.searchall.net/), [WebSitesSearch](https://web-sites-search.web.app/), [CombinedSearch](https://combinedsearch.io/) or [AIO Search](https://www.aiosearch.com/) - Multi-Site Search
|
||||
* [100 Search Engines](https://www.100searchengines.com/) - Search with 100 Search Engines
|
||||
* [DuckDuckBang](https://mosermichael.github.io/duckduckbang/html/main.html) - DuckDuckGo !bang Meta Search / [GitHub](https://github.com/MoserMichael/duckduckbang)
|
||||
* [Trovu.net](https://trovu.net/) - Command Search / [GitHub](https://github.com/trovu/trovu)
|
||||
* [Jumps](https://jumps.io/) or [Yubnub](https://yubnub.org/) - Site Quick Search
|
||||
* [SimilarSiteSearch](https://www.similarsitesearch.com/), [SimilarWeb](https://similarweb.com/), [SitesLikes](https://www.siteslike.com/), [TopSimilarSites](https://topsimilarsites.com/), [SimilarSites](https://similarsites.com/), [OpenDirectory](https://odir.us/) or [SiteLike.org](https://www.sitelike.org/) - Similar Site Searches
|
||||
* [qDorks](https://qdorks.com/composer), [sitedorks](https://github.com/Zarcolio/sitedorks), [Dorks-collections-list](https://github.com/cipher387/Dorks-collections-list/), [OSINT Dorks](https://github.com/BushidoUK/OSINT-SearchOperators), [Google Dork List](https://www.boxpiper.com/posts/google-dork-list), [Dork Genius](https://dorkgenius.com/) or [DorkSearch](https://www.dorksearch.com/) - Search Engine Dorking Tools
|
||||
* [UserSearch](https://usersearch.org/), [Sherlock](https://sherlockproject.xyz/), [Maigret](https://github.com/soxoj/maigret), [Nexfil](https://github.com/thewhiteh4t/nexfil), [Lullar](https://lullar-com-3.appspot.com/), [Blackbird](https://github.com/p1ngul1n0/blackbird) or [WhatsMyName](https://whatsmyname.app/) - Username Search
|
||||
* [Soovle](https://soovle.com/), [Keyword.io](https://www.keyword.io/), [SearchEngineReports](https://searchenginereports.net/), [ContentIdeas](https://contentideas.io/) or [Keyword Tool](https://keywordtool.io/) - Popular Keyword Search
|
||||
* [The Search Engine Map](https://www.searchenginemap.com/) - View Search Engine Connections
|
||||
* [DuckDuckBang](https://mosermichael.github.io/duckduckbang/html/main.html) - DuckDuckGo !bang Meta Search / [GitHub](https://github.com/MoserMichael/duckduckbang)
|
||||
* [KeywordSheeter](https://keywordsheeter.com/) or [Spyfu](https://www.spyfu.com/) - Keyword Research Tools
|
||||
* [BoardReader](https://boardreader.com/), [CrowdView](https://crowdview.ai/) or [FindAForum](https://www.findaforum.net/Home/Search/) - Forum Search Engine
|
||||
* [BlogErnity](http://www.bloggernity.com/) or [SearchBlogspot](https://www.searchblogspot.com/) - Blog Search
|
||||
|
|
@ -245,17 +228,12 @@
|
|||
* [tumbex](https://www.tumbex.com/) - Tumblr Search
|
||||
* [AlsoAsked](https://alsoasked.com/) - Related Search Tool
|
||||
* [Wiby](https://wiby.org/), [2](https://wiby.me/) - Search Engine for Lightweight Web Pages
|
||||
* [Search My Site](https://searchmysite.net/) - Search Engine for Independent and Personal websites / Open Source
|
||||
* [Search My Site](https://searchmysite.net/) - Personal Site Search / Open Source
|
||||
* [Intelligence X](https://intelx.io/tools) or [Aware-Online](https://www.aware-online.com/en/osint-tools/) - Multiple Search Tools
|
||||
* [SimilarSiteSearch](https://www.similarsitesearch.com/), [SimilarWeb](https://similarweb.com/), [SitesLikes](https://www.siteslike.com/), [TopSimilarSites](https://topsimilarsites.com/), [SimilarSites](https://similarsites.com/), [OpenDirectory](https://odir.us/) or [SiteLike.org](https://www.sitelike.org/) - Similar Site Searches
|
||||
* [Marginalia Search](https://search.marginalia.nu/) - Text-Based Search Engine
|
||||
* [TheOldNet](https://theoldnet.com/) or [oldavista](https://www.oldavista.com/) - Retro Search Engines
|
||||
* [LumenDatabase](https://lumendatabase.org/) - Search DMCA Takedown Requests
|
||||
* [Refseek](https://www.refseek.com/) - Academic Search Engine
|
||||
* [Sources.com](https://www.sources.com/) - Journalism Source Search
|
||||
* [GrayHatWarfare](https://buckets.grayhatwarfare.com/) or [OpenBuckets](https://openbuckets.io/) - Amazon s3 Buckets Search
|
||||
* [UserSearch](https://usersearch.org/), [Sherlock](https://sherlockproject.xyz/), [Maigret](https://github.com/soxoj/maigret), [Nexfil](https://github.com/thewhiteh4t/nexfil), [Lullar](https://lullar-com-3.appspot.com/), [Blackbird](https://github.com/p1ngul1n0/blackbird) or [WhatsMyName](https://whatsmyname.app/) - Username Search
|
||||
* [qDorks](https://qdorks.com/composer), [sitedorks](https://github.com/Zarcolio/sitedorks), [Dorks-collections-list](https://github.com/cipher387/Dorks-collections-list/), [OSINT Dorks](https://github.com/BushidoUK/OSINT-SearchOperators), [Google Dork List](https://www.boxpiper.com/posts/google-dork-list), [Dork Genius](https://dorkgenius.com/) or [DorkSearch](https://www.dorksearch.com/) - Search Engine Dorking Tools
|
||||
* [Yandex Search Operators](https://yandex.com/support/direct/keywords/symbols-and-operators.html), [2](https://seosly.com/yandex-search-operators/) - Yandex Search Operator Resources
|
||||
* [FindAGrave](https://findagrave.com/) - Gravestone Search
|
||||
* [rfc.fyi](https://rfc.fyi/) - RFC Search
|
||||
|
|
@ -279,10 +257,17 @@
|
|||
|
||||
## ▷ Search Engines
|
||||
|
||||
* 🌐 **[Fagan Finder](https://www.faganfinder.com/)**, [DirectSearch.Net](http://www.directsearch.net/), [Search Engine Colossus](https://www.searchenginecolossus.com/) or [Search-Engine](https://start.me/p/wM7y15/search-engine) - Search Engine Indexes
|
||||
* 🌐 **[Fagan Finder](https://www.faganfinder.com/)**, [Search Engine Index](https://en.wikipedia.org/wiki/List_of_search_engines), [DirectSearch.Net](http://www.directsearch.net/), [Search Engine Colossus](https://www.searchenginecolossus.com/) or [Search-Engine](https://start.me/p/wM7y15/search-engine) - Search Engine Indexes
|
||||
* ↪️ **[AI Search Engines](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/ai#wiki_.25B7_ai_search_engines)**
|
||||
* ↪️ **[Privacy Search Engines](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/adblock-vpn-privacy#wiki_.25B7_search_engines)**
|
||||
* ⭐ **[Yandex](https://yandex.com/)**
|
||||
* ⭐ **[pSearch](https://serjsx.github.io/wpSearch/)**, [Search All](https://www.searchall.net/), [WebSitesSearch](https://web-sites-search.web.app/), [CombinedSearch](https://combinedsearch.io/) or [AIO Search](https://www.aiosearch.com/) - Multi-Site Search
|
||||
* [100 Search Engines](https://www.100searchengines.com/) - Search with 100 Search Engines
|
||||
* [Jumps](https://jumps.io/) or [Yubnub](https://yubnub.org/) - Site Quick Search
|
||||
* [Trovu.net](https://trovu.net/) - Command Search / [GitHub](https://github.com/trovu/trovu)
|
||||
* [The Search Engine Map](https://www.searchenginemap.com/) - View Search Engine Connections
|
||||
* [Marginalia Search](https://search.marginalia.nu/) - Text-Based Search Engine
|
||||
* [TheOldNet](https://theoldnet.com/) or [oldavista](https://www.oldavista.com/) - Retro Search Engines
|
||||
* [OceanHero](https://oceanhero.today/) - Save the Ocean via Search
|
||||
* [Ecosia](https://www.ecosia.org/) / [Firefox](https://addons.mozilla.org/en-US/firefox/addon/ecosia-the-green-search/) / [Chrome](https://chromewebstore.google.com/detail/ecosia-the-search-engine/eedlgdlajadkbbjoobobefphmfkcchfk)
|
||||
* [Leta](https://leta.mullvad.net) - Mullvad VPN Required
|
||||
|
|
@ -308,29 +293,29 @@
|
|||
## ▷ Custom Search Engines
|
||||
|
||||
* 🌐 **[CSE Utopia](https://start.me/p/EL84Km/cse-utopia)**, [Awesome CSEs](https://github.com/davzoku/awesome-custom-search-engines) or [Boolean Strings](https://booleanstrings.com/all-the-40-forty-custom-search-engines/) - Custom Search Engine Indexes
|
||||
* ⭐ **[TV Streaming CSE](https://cse.google.com/cse?cx=006516753008110874046:hrhinud6efg)** - Search TV Streaming Sites
|
||||
* ⭐ **[Streaming CSE](https://cse.google.com/cse?cx=006516753008110874046:cfdhwy9o57g##gsc.tab=0)**, [2](https://cse.google.com/cse?cx=006516753008110874046:o0mf6t-ugea##gsc.tab=0), [3](https://cse.google.com/cse?cx=98916addbaef8b4b6), [4](https://cse.google.com/cse?cx=0199ade0b25835f2e)
|
||||
* ⭐ **[Download CSE](https://cse.google.com/cse?cx=006516753008110874046:1ugcdt3vo7z)**, [2](https://cse.google.com/cse?cx=006516753008110874046:reodoskmj7h) - Search Download Sites
|
||||
* ⭐ **[Software CSE](https://cse.google.com/cse?cx=ae17d0c72fa6cbcd4)** or [Rave Search](https://ravesoftwaresearch.pages.dev/) - Search Software Sites
|
||||
* ⭐ **[Torrent CSE](https://cse.google.com/cse?cx=006516753008110874046:0led5tukccj)**, [2](https://cse.google.com/cse?cx=006516753008110874046:kh3piqxus6n) - Search General Torrent Sites
|
||||
* ⭐ **[Reading CSE](https://cse.google.com/cse?cx=006516753008110874046:s9ddesylrm8)**, [2](https://cse.google.com/cse?cx=006516753008110874046:rc855wetniu), [3](https://cse.google.com/cse?cx=e9657e69c76480cb8), [4](https://cse.google.com/cse?cx=c46414ccb6a943e39), [5](https://ravebooksearch.com/), [6](https://recherche-ebook.fr/en/) - Search Reading Sites
|
||||
* ⭐ **[Audiobooks CSE](https://cse.google.com/cse?cx=006516753008110874046:cwbbza56vhd)** - Search Audiobook Sites
|
||||
* ⭐ **[Comics CSE](https://cse.google.com/cse?cx=006516753008110874046:p4hgytyrohg)** - Search Comic Sites
|
||||
* ⭐ **[Manga CSE](https://cse.google.com/cse?cx=006516753008110874046:4im0fkhej3z)**, [2](https://cse.google.com/cse?cx=006516753008110874046:a5mavctjnsc#gsc.tab=0) - Search Manga Sites
|
||||
* ⭐ **[Android APK CSE](https://cse.google.com/cse?cx=e0d1769ccf74236e8)**, [2](https://cse.google.com/cse?cx=73948689c2c206528), [3](https://cse.google.com/cse?cx=a805854b6a196d6a6) - Search Android APK Sites
|
||||
* ⭐ **[Extensions CSE](https://cse.google.com/cse?cx=86d64a73544824102)** - Search Extension Sites
|
||||
* ⭐ **[Fonts CSE](https://cse.google.com/cse?cx=82154ebab193e493d)** - Search Font Sites
|
||||
* ⭐ **[Video Streaming CSE](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/video/#wiki_.25B7_video_streaming)** - Search YouTube-Like Video Sites
|
||||
* ⭐ **[Video Download CSE](https://cse.google.com/cse?cx=006516753008110874046:wevn3lkn9rr)**, [2](https://cse.google.com/cse?cx=89f2dfcea452fc451), [3](https://cse.google.com/cse?cx=aab218d0aa53e3578) - Search Video Download Sites
|
||||
* ⭐ **[Video Torrent CSE](https://cse.google.com/cse?cx=006516753008110874046:gaoebxgop7j)** - Search Video Torrent Sites
|
||||
* ⭐ **[Anime Streaming CSE](https://cse.google.com/cse?cx=006516753008110874046:vzcl7wcfhei)**, [2](https://cse.google.com/cse?cx=006516753008110874046:mrfarx7-dxu) or [Kuroiru](https://kuroiru.co/) - Search Anime Streaming Sites
|
||||
* ⭐ **[Anime Download CSE](https://cse.google.com/cse?cx=006516753008110874046:osnah6w0yw8)** - Search Anime Download Sites
|
||||
* ⭐ **[Anime Torrent CSE](https://cse.google.com/cse?cx=006516753008110874046:lamzt6ls4iz)** - Search Anime Torrent Sites
|
||||
* ⭐ **[Audio Download CSE](https://cse.google.com/cse?cx=006516753008110874046:ibmyuhh72io)**, [2](https://cse.google.com/cse?cx=006516753008110874046:ohobg3wvr_w), [3](https://cse.google.com/cse?cx=32d85b41e2feacd3f) - Search Audio Download Sites
|
||||
* ⭐ **[Audio Torrent CSE](https://cse.google.com/cse?cx=006516753008110874046:v75cyb4ci55)** - Search Audio Torrent Sites
|
||||
* ⭐ **[Game Download CSE](https://cse.google.com/cse?cx=006516753008110874046:cbjowp5sdqg)**, [Rezi Search](https://rezi.one/) or [/r/PiratedGames CSE](https://cse.google.com/cse?cx=20c2a3e5f702049aa) - Multi-Site Search Engines
|
||||
* ⭐ **[Game Torrent CSE](https://cse.google.com/cse?cx=006516753008110874046:pobnsujblyx)** or [Rave Search](https://ravegamesearch.pages.dev/) - Search Game Torrent Sites
|
||||
* ⭐ **[Pastebin CSE](https://cse.google.com/cse?cx=0cd79b819f26af9d0)**, [PastebinSearch](https://cipher387.github.io/pastebinsearchengines/) or [Paste Skimmer](https://sites.google.com/view/l33tech/tools/pasteskimmer) - Search Pastebins
|
||||
* [TV Streaming CSE](https://cse.google.com/cse?cx=006516753008110874046:hrhinud6efg) - Search TV Streaming Sites
|
||||
* [Streaming CSE](https://cse.google.com/cse?cx=006516753008110874046:cfdhwy9o57g##gsc.tab=0), [2](https://cse.google.com/cse?cx=006516753008110874046:o0mf6t-ugea##gsc.tab=0), [3](https://cse.google.com/cse?cx=98916addbaef8b4b6), [4](https://cse.google.com/cse?cx=0199ade0b25835f2e)
|
||||
* [Download CSE](https://cse.google.com/cse?cx=006516753008110874046:1ugcdt3vo7z), [2](https://cse.google.com/cse?cx=006516753008110874046:reodoskmj7h) - Search Download Sites
|
||||
* [Software CSE](https://cse.google.com/cse?cx=ae17d0c72fa6cbcd4) or [Rave Search](https://ravesoftwaresearch.pages.dev/) - Search Software Sites
|
||||
* [Torrent CSE](https://cse.google.com/cse?cx=006516753008110874046:0led5tukccj), [2](https://cse.google.com/cse?cx=006516753008110874046:kh3piqxus6n) - Search General Torrent Sites
|
||||
* [Reading CSE](https://cse.google.com/cse?cx=006516753008110874046:s9ddesylrm8), [2](https://cse.google.com/cse?cx=006516753008110874046:rc855wetniu), [3](https://cse.google.com/cse?cx=e9657e69c76480cb8), [4](https://cse.google.com/cse?cx=c46414ccb6a943e39), [5](https://ravebooksearch.com/), [6](https://recherche-ebook.fr/en/) - Search Reading Sites
|
||||
* [Audiobooks CSE](https://cse.google.com/cse?cx=006516753008110874046:cwbbza56vhd) - Search Audiobook Sites
|
||||
* [Comics CSE](https://cse.google.com/cse?cx=006516753008110874046:p4hgytyrohg) - Search Comic Sites
|
||||
* [Manga CSE](https://cse.google.com/cse?cx=006516753008110874046:4im0fkhej3z), [2](https://cse.google.com/cse?cx=006516753008110874046:a5mavctjnsc#gsc.tab=0) - Search Manga Sites
|
||||
* [Android APK CSE](https://cse.google.com/cse?cx=e0d1769ccf74236e8), [2](https://cse.google.com/cse?cx=73948689c2c206528), [3](https://cse.google.com/cse?cx=a805854b6a196d6a6) - Search Android APK Sites
|
||||
* [Extensions CSE](https://cse.google.com/cse?cx=86d64a73544824102) - Search Extension Sites
|
||||
* [Fonts CSE](https://cse.google.com/cse?cx=82154ebab193e493d) - Search Font Sites
|
||||
* [Video Streaming CSE](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/video/#wiki_.25B7_video_streaming) - Search YouTube-Like Video Sites
|
||||
* [Video Download CSE](https://cse.google.com/cse?cx=006516753008110874046:wevn3lkn9rr), [2](https://cse.google.com/cse?cx=89f2dfcea452fc451), [3](https://cse.google.com/cse?cx=aab218d0aa53e3578) - Search Video Download Sites
|
||||
* [Video Torrent CSE](https://cse.google.com/cse?cx=006516753008110874046:gaoebxgop7j) - Search Video Torrent Sites
|
||||
* [Anime Streaming CSE](https://cse.google.com/cse?cx=006516753008110874046:vzcl7wcfhei), [2](https://cse.google.com/cse?cx=006516753008110874046:mrfarx7-dxu) or [Kuroiru](https://kuroiru.co/) - Search Anime Streaming Sites
|
||||
* [Anime Download CSE](https://cse.google.com/cse?cx=006516753008110874046:osnah6w0yw8) - Search Anime Download Sites
|
||||
* [Anime Torrent CSE](https://cse.google.com/cse?cx=006516753008110874046:lamzt6ls4iz) - Search Anime Torrent Sites
|
||||
* [Audio Download CSE](https://cse.google.com/cse?cx=006516753008110874046:ibmyuhh72io), [2](https://cse.google.com/cse?cx=006516753008110874046:ohobg3wvr_w), [3](https://cse.google.com/cse?cx=32d85b41e2feacd3f) - Search Audio Download Sites
|
||||
* [Audio Torrent CSE](https://cse.google.com/cse?cx=006516753008110874046:v75cyb4ci55) - Search Audio Torrent Sites
|
||||
* [Game Download CSE](https://cse.google.com/cse?cx=006516753008110874046:cbjowp5sdqg), [Rezi Search](https://rezi.one/) or [/r/PiratedGames CSE](https://cse.google.com/cse?cx=20c2a3e5f702049aa) - Multi-Site Search Engines
|
||||
* [Game Torrent CSE](https://cse.google.com/cse?cx=006516753008110874046:pobnsujblyx) or [Rave Search](https://ravegamesearch.pages.dev/) - Search Game Torrent Sites
|
||||
* [Pastebin CSE](https://cse.google.com/cse?cx=0cd79b819f26af9d0), [PastebinSearch](https://cipher387.github.io/pastebinsearchengines/) or [Paste Skimmer](https://sites.google.com/view/l33tech/tools/pasteskimmer) - Search Pastebins
|
||||
* [File Host Search](https://cse.google.com/cse?cx=90a35b59cee2a42e1) - Search File Hosts
|
||||
* [Linux Software CSE](https://cse.google.com/cse?cx=81bd91729fe2a412b) - Search Linux Software Sites
|
||||
* [ROM CSE](https://cse.google.com/cse?cx=f47f68e49301a07ac), [2](https://cse.google.com/cse?cx=744926a50bd7eb010) - Search ROM Sites
|
||||
|
|
@ -360,7 +345,6 @@
|
|||
* ⭐ **[Flagfox](https://flagfox.wordpress.com/)** - Displays Country's Flag on Sites / [Adds Many URL Tools](https://i.ibb.co/N7Mq56Q/889730aa3863.png)
|
||||
* ⭐ **[HTTPStatus](https://httpstatus.io/)** - Check URL Status Codes / Redirect Chains
|
||||
* ⭐ **[lychee](https://lychee.cli.rs/)** - URL Scanner / [GitHub](https://github.com/lycheeverse/lychee/)
|
||||
* [cuttly](https://cutt.ly/) - Multiple URL Tools
|
||||
* [ChangeDetection.io](https://github.com/dgtlmoon/changedetection.io), [urlwatch](https://thp.io/2008/urlwatch/), [Visualping](https://visualping.io/), [changd](https://github.com/paschmann/changd) or [FollowThatPage](https://www.followthatpage.com/) - Page Change Detection / Notification
|
||||
* [W.A.R. Links Checker Premium](https://greasyfork.org/en/scripts/2024) - Auto-check the status of File Host links.
|
||||
* [SpyOffers](https://www.spyoffers.com/) - Affiliate Link Checker
|
||||
|
|
@ -388,7 +372,6 @@
|
|||
* ⭐ **[is.gd](https://www.is.gd/)** - `is.gd/9dkISG`
|
||||
* ⭐ **[Reduced](https://reduced.to/)** - `reduced.to/nuwad`
|
||||
* [v.gd](https://v.gd/) - `v.gd/Gj8oLR`
|
||||
* [gg.gg](https://gg.gg/) - `gg.gg/oggp7`
|
||||
* [Linkify](https://creator.linkify.cz/) - `linkify.cz/1a0O`
|
||||
* [bitly](https://bitly.com/) - `bit.ly/3cmqPIu` / [Reveal URL](https://i.ibb.co/tQVKYRq/3a97e5dd64b2.png)
|
||||
* [TinyUrl](https://tinyurl.com/) - `tinyurl.com/twgf2ks` / [Reveal URL](https://i.ibb.co/Wv90gT4/0d2992342fc7.png)
|
||||
|
|
@ -460,7 +443,7 @@
|
|||
|
||||
* ↪️ **[DNS Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/dev-tools#wiki_.25B7_dns_tools)**
|
||||
* ↪️ **[Domain Availability](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_domain_availability)**
|
||||
* [LinkScope](https://accentusoft.com/), [URLDNA](https://urldna.io/) or [DNSlytics](https://dnslytics.com/) - Domain Investigation Tools
|
||||
* ⭐ **[censys](https://search.censys.io/)**, [LinkScope](https://accentusoft.com/), [URLDNA](https://urldna.io/) or [DNSlytics](https://dnslytics.com/) - Domain Investigation Tools
|
||||
* [Rankchart](https://rankchart.org/) - Multiple Domain Tools
|
||||
* [DNSTwist](https://dnstwist.it/) / [GitHub](https://github.com/elceef/dnstwist) or [DNSTwister](https://dnstwister.report/) - Phishing Domain Scanners
|
||||
* [WhoisRequest](https://whoisrequest.com/) or [Whois Lookup](https://whois.domaintools.com/) - Whois Search
|
||||
|
|
@ -485,6 +468,7 @@
|
|||
* [Gmail Desktop](https://github.com/timche/gmail-desktop) - Gmail Desktop Client
|
||||
* [Got Your Back](https://github.com/GAM-team/got-your-back) - Backup Gmail Messages
|
||||
* [ExtractMailAddress](https://extractemailaddress.com/) - Extract Emails, URLs, and Numbers from Text
|
||||
* [scr.im](http://scr.im/) - Email Captcha Protection
|
||||
* [BugMeNot](https://bugmenot.com/), [FreeAccount](https://freeaccount.biz/) or [Password Login](https://password-login.com/) - Access & Share Throwaway Accounts
|
||||
|
||||
***
|
||||
|
|
@ -527,7 +511,7 @@
|
|||
* [TrashMail](https://trashmail.com/) - Email Forwarding Service
|
||||
* [Tmail.io](https://tmail.io/) - Gmail / Forever / 1 Day / 4 Domains
|
||||
* [22.Do](https://22.do/) - Gmail / 1 Day / 1 Day / 3 Domains
|
||||
* [Ago Gmail](https://www.agogmail.com/) - Gmail / 2 Domains
|
||||
* [MailTickingl](https://www.mailticking.com/) - Gmail / 2 Domains
|
||||
* [YOPmail](https://yopmail.com/email-generator) - Forever / 8 Days / 100+ Domains
|
||||
* [TempMail.Plus](https://tempmail.plus/en/) - Forever / 7 Days / 9 Domains / [.onion](http://tempmail4gi5qfqzjs2bxo3wf6eurpelxmior6ohzq5vw7aeay67wiyd.onion/)
|
||||
* [instant-email.org](https://instant-email.org/) - Forever / 3 Days / 7 Domains
|
||||
|
|
@ -579,7 +563,6 @@
|
|||
* ⭐ **[addy.io](https://addy.io/)** - Email Aliasing / [GitHub](https://github.com/anonaddy/anonaddy)
|
||||
* ⭐ **[DuckDuckGo Email Protection](https://duckduckgo.com/email/)** - Email Aliasing
|
||||
* [Mailvelope](https://mailvelope.com/) - Email Aliasing Extension
|
||||
* [scr.im](http://scr.im/) - Email Aliasing
|
||||
* [Mailgw](https://mailgw.com/) - Email Aliasing
|
||||
* [erine.email](https://erine.email/) - Email Aliasing
|
||||
* [33mail](https://33mail.com/) - Email Aliasing
|
||||
|
|
@ -595,12 +578,11 @@
|
|||
|
||||
* 🌐 **[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
|
||||
* ⭐ **[Edge-Remover](https://rentry.co/uninstall_edge)** - Microsoft Edge Removal Script
|
||||
* [VsyncTester](https://vsynctester.com/) - Browser VSYNC Test
|
||||
* ⭐ **[Edge-Uninstall](https://rentry.co/uninstall_edge)** - Microsoft Edge Removal Script
|
||||
* [VsyncTester](https://vsynctester.com/) - Browser VSYNC Test / Firefox Broken
|
||||
* [Browserling](https://www.browserling.com/) - Browser Emulators
|
||||
* [Gemini Portal](https://geminiprotocol.net/), [2](https://yesterweb.org/gemini) - Gemini to https Web Proxy Service
|
||||
* [Rambox](https://rambox.app/), [Kera](https://desktop.kerahq.com/) or [Tangram](https://github.com/sonnyp/Tangram) - Web App Browsers
|
||||
|
|
@ -896,7 +878,7 @@
|
|||
## ▷ OSINT Collections
|
||||
|
||||
* [OSINT Combine](https://www.osintcombine.com/tools) - OSINT Investigation Tools
|
||||
* [Bellingcat](https://docs.google.com/spreadsheets/d/18rtqh8EG2q1xBo2cLNyhIDuK9jrPGwYr9DI2UncoqJQ/) - Online Investigation Toolkit
|
||||
* [Bellingcat](https://bellingcat.gitbook.io/toolkit) - Online Investigation Toolkit
|
||||
* [Reuser](https://rr.reuser.biz/) - OSINT Resource Discovery Toolkit
|
||||
* [Cyber Detective's OSINT Collection](https://github.com/cipher387/osint_stuff_tool_collection) - General Index
|
||||
* [Nixintel's OSINT Resource List](https://start.me/p/rx6Qj8/nixintel-s-osint-resource-list) - General Index
|
||||
|
|
|
|||
|
|
@ -29,6 +29,7 @@
|
|||
* ⭐ **[All Things Linux](https://discord.gg/linux)** - Linux Discord Server
|
||||
* [Linux.Chat](https://discord.gg/linuxchat) - Linux Discord Server
|
||||
* [Linux x Technology](https://linuxdiscord.com/) - Linux Discord Server
|
||||
* [Arch Linux Community](https://discord.gg/3m6dbPR) - Linux Discord Server
|
||||
* [Discord-Linux](https://discord.gg/discord-linux) - Linux Discord Server
|
||||
* [Linux.org](https://linux.org/) - Linux Forum
|
||||
|
||||
|
|
@ -110,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
|
||||
|
|
@ -127,6 +128,7 @@
|
|||
* ⭐ **[AppImageLauncher](https://github.com/TheAssassin/AppImageLauncher)** - Integrate AppImages to App Launchers
|
||||
* ⭐ **[winetricks](https://github.com/Winetricks/winetricks)** - Wine Fixes
|
||||
* ⭐ **[rofi](https://davatorium.github.io/rofi/)** / [Emoji Selector](https://github.com/Mange/rofi-emoji), [Fuzzel](https://codeberg.org/dnkl/fuzzel), [Ulauncher](https://ulauncher.io/) or [wofi](https://hg.sr.ht/~scoopta/wofi) - App Launchers
|
||||
* ⭐ **[FreeRDP](https://www.freerdp.com/)** - Remote Desktop Client / [GitHub](https://github.com/FreeRDP/FreeRDP)
|
||||
* [wslu](https://wslutiliti.es/wslu) - Utilities for Windows 10 Linux Subsystem / [GitHub](https://github.com/wslutilities/wslu)
|
||||
* [Darling](https://www.darlinghq.org/) - Run macOS Apps on Linux
|
||||
* [innoextract](https://constexpr.org/innoextract/) - Windows Installer Unpacker
|
||||
|
|
@ -234,10 +236,10 @@
|
|||
* [g4music](https://gitlab.gnome.org/neithern/g4music) - Audio Player
|
||||
* [dopamine](https://github.com/digimezzo/dopamine) - Audio Player
|
||||
* [AudioTube](https://invent.kde.org/multimedia/audiotube) - Audio Player
|
||||
* [Kew](https://github.com/ravachol/kew) - Audio Player TUI
|
||||
* [Monophony](https://gitlab.com/zehkira/monophony) - YouTube Music Client
|
||||
* [ytermusic](https://github.com/ccgauche/ytermusic/) - YouTube Music Downloader
|
||||
* [Deezer Linux](https://github.com/aunetx/deezer-linux) or [DZR](https://github.com/yne/dzr) - Deezer Clients
|
||||
* [Myuzi](https://gitlab.com/albanobattistella/myuzi) - Music Streaming App
|
||||
* [MusicPod](https://github.com/ubuntu-flutter-community/musicpod) - Podcast / Radio Player
|
||||
* [HeadsetControl](https://github.com/Sapd/HeadsetControl) - Headset Settings Manager
|
||||
* [Pipewire](https://wiki.archlinux.org/title/PipeWire#Noise_suppression_for_voice) / [Plugins](https://github.com/wwmm/easyeffects) or [NoiseTorch](https://github.com/noisetorch/NoiseTorch) - Noise Suppression Software
|
||||
|
|
@ -284,7 +286,6 @@ Linux Gaming Guide
|
|||
* [RuTracker](https://rutracker.org/forum/viewforum.php?f=899) - Linux Games / [Translator](https://github.com/FilipePS/Traduzir-paginas-web#install) / [Wiki](http://rutracker.wiki/) / [Rules](https://rutracker.org/forum/viewtopic.php?t=1045)
|
||||
* [winesapOS](https://github.com/LukeShortCloud/winesapOS) - Play Games on Storage Devices
|
||||
* [Gamebuntu](https://discourse.ubuntu.com/t/gamebuntu/25544/13) - Setup Gaming Environment on Ubuntu / [GitLab](https://gitlab.com/rswat09/gamebuntu)
|
||||
* [RetroPlus](https://github.com/Vysp3r/RetroPlus) - ROM Downloader
|
||||
* [wine-wayland](https://github.com/varmd/wine-wayland) - Play DX9/DX11 / Vulkan Games
|
||||
* [steam-tui](https://github.com/dmadisetti/steam-tui) - Rust TUI for Steam
|
||||
* [steam-cli](https://github.com/berenm/steam-cli) - CLI for Steam
|
||||
|
|
@ -325,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)
|
||||
|
|
@ -339,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
|
||||
|
|
@ -355,7 +357,7 @@ Linux Gaming Guide
|
|||
## ▷ Linux Internet
|
||||
|
||||
* ⭐ **[qBittorrent](https://github.com/qbittorrent/qBittorrent/wiki/Installing-qBittorrent#linux)** / [Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_qbitorrent_tools), **[rTorrent](https://rakshasa.github.io/rtorrent/)** / [2](https://github.com/rakshasa/rtorrent), [Fragments ](https://apps.gnome.org/en/Fragments/), [BitFlu](https://bitflu.workaround.ch/), [kTorrent](https://apps.kde.org/ktorrent/) / [2](https://invent.kde.org/network/ktorrent) - Linux Torrent Clients
|
||||
* ⭐ **[Soulseek](https://www.slsknet.org/SoulseekQt/Linux/SoulseekQt-2018-1-30-64bit-appimage.tgz)** - File Sharing App
|
||||
* ⭐ **[Soulseek](https://www.slsknet.org)** - File Sharing App
|
||||
* ⭐ **[Linux WiFi Hotspot](https://github.com/lakinduakash/linux-wifi-hotspot)** - Create WiFi Hotspots
|
||||
* [RuTorrent](https://github.com/Novik/ruTorrent) or [flood](https://flood.js.org/) - RTorrent Web Frontend / [Themes](https://github.com/artyuum/3rd-party-ruTorrent-Themes)
|
||||
* rTorrent Tools - [Extended](http://rtorrent-ps.readthedocs.io/) / [Tools](https://pyrocore.readthedocs.org/) / [GitHub](https://github.com/pyroscope/pyrocore) / [Mods](https://calomel.org/rtorrent_mods.html)
|
||||
|
|
@ -397,9 +399,8 @@ Linux Gaming Guide
|
|||
* [Hexchat](https://hexchat.github.io/), [Adium](https://adium.im/), [Polari](https://wiki.gnome.org/Apps/Polari), [Irssi](https://github.com/irssi/irssi) or [Weechat](https://weechat.org/) - IRC Clients
|
||||
* [Dino](https://dino.im/) - XMPP Client
|
||||
* [gurk-rs](https://github.com/boxdot/gurk-rs) - Signal Client
|
||||
* [ZapZap](https://rtosta.com/zapzap-web/) - WhatsApp Client
|
||||
* [ZapZap](https://rtosta.com/zapzap-web/) - WhatsApp Client / [GitHub](https://github.com/rafatosta/zapzap)
|
||||
* [YouTube-Viewer](https://github.com/trizen/youtube-viewer), [Pipe Viewer](https://github.com/trizen/pipe-viewer) or [Pipeline](https://gitlab.com/schmiddi-on-mobile/pipeline) - YouTube Clients
|
||||
* [Giara](https://aur.archlinux.org/packages/giara/) - Reddit Client
|
||||
* [BetterDiscordctl](https://github.com/bb010g/betterdiscordctl) - Modded Discord Client / [Guide](https://gist.github.com/ObserverOfTime/d7e60eb9aa7fe837545c8cb77cf31172)
|
||||
* [Nextcord](https://docs.nextcord.dev/) - Discord API Wrapper
|
||||
* [Discover](https://github.com/trigg/Discover) - Discord Overlay
|
||||
|
|
@ -434,7 +435,7 @@ Linux Gaming Guide
|
|||
|
||||
***
|
||||
|
||||
## ▷ Android Emulators
|
||||
## ▷ Android on Linux
|
||||
|
||||
* ⭐ **[WayDroid](https://waydro.id/)** - Android Emulator / [GitHub](https://github.com/waydroid) / [Scripts](https://github.com/casualsnek/waydroid_script)
|
||||
* [Redroid](https://github.com/remote-android/redroid-doc) - Android Emulator
|
||||
|
|
@ -471,12 +472,11 @@ Linux Gaming Guide
|
|||
* [Distrobox](https://distrobox.it/) - Use Distros via Terminal
|
||||
* [htop](https://htop.dev/) or [Zenith](https://github.com/bvaisvil/zenith) - Interactive Process Viewers
|
||||
* [eza](https://eza.rocks/) - Modern ls replacement
|
||||
* [explainshell.com](https://explainshell.com/) - Match Command-Line Arguments to Help Text
|
||||
* [explainshell.com](https://explainshell.com/) or [shell.how](https://www.shell.how/) - Match Command-Line Arguments to Help Text
|
||||
* [PowerShell](https://github.com/powershell/powershell) - PowerShell
|
||||
* [Tmux](https://github.com/tmux/tmux) - Terminal Multiplexer / [Cheatsheet](https://tmuxcheatsheet.com/)
|
||||
* [Zellij](https://zellij.dev/) - Terminal Workspace
|
||||
* [asciinema](https://asciinema.org/) - Terminal Recorder
|
||||
* [Electerm](https://electerm.github.io/electerm) - Terminal / SSH / STP Client
|
||||
* [fzf](https://github.com/junegunn/fzf) or [skim](https://github.com/lotabout/skim) - Fuzzy Finders
|
||||
* [atuin](https://atuin.sh/) - Shell History Management / [GitHub](https://github.com/atuinsh/atuin)
|
||||
* [cbonsai](https://gitlab.com/jallbrit/cbonsai) - Generate Bonsai Trees in Terminal
|
||||
|
|
@ -642,7 +642,7 @@ Linux Gaming Guide
|
|||
* [Donna](https://www.musicdonna.com/) - AI Music Generator
|
||||
* [Mubert AI](https://apps.apple.com/us/app/mubert-ai-music-streaming/id1154429580) - AI Music Radio
|
||||
* [Playlisty](https://apps.apple.com/us/app/playlisty-the-playlist-tool/id1459275972) - Transfer Apple Music Playlists to Spotify
|
||||
* [Image Tricks Lite](https://apps.apple.com/us/app/image-tricks-lite/id403735824?mt=12) or [SeaShore](https://sourceforge.net/projects/seashore/) - Image Editors
|
||||
* [SeaShore](https://sourceforge.net/projects/seashore/) - Image Editors
|
||||
* [ImageOptim](https://imageoptim.com/mac) - Image Optimization
|
||||
* [Perspec](https://github.com/feramhq/Perspec) - Correct Perspective of Images
|
||||
* [Draw Things](https://apps.apple.com/us/app/draw-things-ai-generation/id6444050820) - AI Image Drawing Tool
|
||||
|
|
@ -676,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/)
|
||||
|
|
@ -715,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
|
||||
|
|
|
|||
|
|
@ -18,7 +18,6 @@
|
|||
* [Curlie](https://curlie.org/) - Topic Directory
|
||||
* [ooh.directory](https://ooh.directory/) - Blog Directory
|
||||
* [StatsCrop](https://www.statscrop.com/websites/top-sites/), [xRanks](https://xranks.com/), [DirtyWarez](https://dirtywarez.org/) or [CuteStat](https://www.cutestat.com/) - Site Rankings & Stats
|
||||
* [Simple Tools](https://simpletools.info/doku.php) - Simple Programs Index
|
||||
* [Appscope](https://appsco.pe/), [findPWA](https://findpwa.com/), [Store.app](https://store.app/), [SaaS Discovery](https://saasdiscovery.com/) or [Electron](https://www.electronjs.org/apps) - Web App Indexes
|
||||
* [SmartLinks](https://smartlinks.org/index.html) - Website Directory
|
||||
* [OneMillionScreenshots](https://onemillionscreenshots.com/) - Website Snapshot Map
|
||||
|
|
@ -33,7 +32,7 @@
|
|||
* [Creative Commons](https://github.com/fmhy/FMHYedit/issues/1386#issuecomment-1906854653) - Creative Commons Content Sites
|
||||
* [Cyberlife](https://cyberpunk-life.neocities.org/) - Cyberpunk-Related Content / Sites Index
|
||||
* [sourcehut](https://sr.ht/) - Public Project Index
|
||||
* [ImageBoards](https://imageboards.net/), [Chan List](https://archive.is/Npzwl) or [imageboards.json](https://github.com/ccd0/imageboards.json/blob/gh-pages/imageboards.json) - Imageboard Index
|
||||
* [ImageBoards](https://imageboards.net/) or [imageboards.json](https://github.com/ccd0/imageboards.json/blob/gh-pages/imageboards.json) - Imageboard Index
|
||||
* [Single Serving Sites](https://singleservingsites.cool/) - Single-Purpose Sites
|
||||
|
||||
***
|
||||
|
|
@ -73,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)
|
||||
|
|
@ -86,7 +86,6 @@
|
|||
* [/r/AppHookup](https://www.reddit.com/r/AppHookup/) - Free / Cheap Software & APKs
|
||||
* [NobsGames](https://nobsgames.stavros.io/android/?name=&genre=&rating__gt=&price=free) - Game APKs
|
||||
* [InstlApp](https://apps.apple.com/us/app/instlapp/id1502777382) - iOS Apps
|
||||
* [AppSumo Freebies](https://appsumo.com/tools/freebies/) - iOS Apps
|
||||
* [AppRaven](https://appraven.net/) - iOS Apps
|
||||
* [FreeCycle](https://www.freecycle.org/) or [Freegle](https://www.ilovefreegle.org/) - People Stuff Exchange
|
||||
* [BAEN](https://www.baen.com/catalog/category/view/s/free-library/id/2012) - Books
|
||||
|
|
@ -114,6 +113,7 @@
|
|||
* [KitchenConfidentials](https://kitchenconfidentials.com/) - Anonymous Food & Restaurant Reviews / [Subreddit](https://www.reddit.com/r/KitchenConfidential/)
|
||||
* [FoodExpirationDates](https://github.com/lorenzovngl/FoodExpirationDates) or [Fridgey](https://f-droid.org/packages/lying.fengfeng.foodrecords/) - Food Expiration Trackers
|
||||
* [Cheese.com](https://cheese.com/) - Cheese Resources
|
||||
* [Crispy Creations](https://rentry.co/crispycreations) - Potato Chip Info / Guides
|
||||
* [Tea Guide](https://pastebin.com/raw/80GeeXJV) - Tea Guide Masterlist
|
||||
* [Coffee Guide](https://pastebin.com/raw/UEzwuyLz) - Coffee Guide Masterlist
|
||||
* [Coffee or Bust!](https://www.coffeeorbust.com/) - Coffee-Making Guides
|
||||
|
|
@ -141,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
|
||||
|
|
@ -171,7 +170,7 @@
|
|||
* [WildFlowerSearch](https://wildflowersearch.org/) - Flower Identifier
|
||||
* [How Many Plants](https://howmanyplants.com/) - House Plant Information
|
||||
* [Florae](https://github.com/aeri/Florae) or [Plant-it](https://plant-it.org/) / [GitHub](https://github.com/MDeLuise/plant-it) - Plant Care Reminders
|
||||
* [WorldOfSucculents](https://worldofsucculents.com/) or [SucculentGuide](https://www.succulentguide.com/) - Succulent Database
|
||||
* [WorldOfSucculents](https://worldofsucculents.com/) - Succulent Database
|
||||
* [MyGarden](https://gitlab.com/m9712/mygarden) - Garden Management App
|
||||
* [Gardenia](https://www.gardenia.net/) or [Garden Design](https://www.gardendesign.com/) - Garden Design Resources
|
||||
* [/r/UrbanGardening](https://www.reddit.com/r/UrbanGardening/) - Urban Gardening Community
|
||||
|
|
@ -187,7 +186,7 @@
|
|||
# ► Travel
|
||||
|
||||
* ⭐ **[Atlas Obscura](https://www.atlasobscura.com/)**, [Turas](https://turas.app/), [CountryReports](https://www.countryreports.org/), [Wikivoyage](https://www.wikivoyage.org), [WikiTravel](https://wikitravel.org/) or [Wanderlog](https://wanderlog.com/guides) - Travel Guides
|
||||
* ⭐ **[JourneyPlan](https://journeyplan.co)**, [RoamAround](https://www.roamaround.io/), [TravelPlan](https://www.travelplan-ai.com/#get-trip), [maps.gpt](https://maps.gptcall.net/), [Holiwise](https://www.holiwise.com) or [Eddy](https://chat.eddytravels.com/) - Trip Planning
|
||||
* ⭐ **[JourneyPlan](https://journeyplan.co)**, [TravelPlan](https://www.travelplan-ai.com/#get-trip), [maps.gpt](https://maps.gptcall.net/), [Holiwise](https://www.holiwise.com) or [Eddy](https://chat.eddytravels.com/) - Trip Planning
|
||||
* ⭐ **[Borderless](https://borderless.safetywing.com/)** - Travel Restrictions Guide
|
||||
* ⭐ **[MapChecking](https://www.mapchecking.com/)** - Crowd Size Estimation
|
||||
* ⭐ **[Gas Price Map](https://www.gasbuddy.com/gaspricemap)** - US Gas Prices
|
||||
|
|
@ -247,7 +246,6 @@
|
|||
* [FixPhrase](https://fixphrase.com/) or [TextToMap](https://www.textomap.com/) - Text-Based Map Search
|
||||
* [Copernix](https://copernix.io/) - Explore a Map with Wikipedia
|
||||
* [Midgard Map](https://midgardmap.koboldpress.com/) - Midgard Map
|
||||
* [Snap Map](https://map.snapchat.com/) - Snapchat Map
|
||||
* [Flickr Map](https://www.flickr.com/map/) - Flickr Map
|
||||
* [WhatIsHalfway](https://www.whatshalfway.com/) - Find Closest Point Between Two Locations
|
||||
* [/r/MapPorn](https://reddit.com/r/MapPorn) - Reddit Map Community
|
||||
|
|
@ -346,7 +344,7 @@
|
|||
|
||||
* [USGS Maps](https://www.usgs.gov/products/maps) - Geologic Maps / 3-D Geologic Frameworks
|
||||
* [Macrostrat](https://macrostrat.org/) - Geological Data Map
|
||||
* [Fishermap](https://usa.fishermap.org/depth-map/) or [Bathymetric Data Viewer](https://www.ncei.noaa.gov/maps/bathymetry/) - Water Depth Maps
|
||||
* [Fishermap](https://usa.fishermap.org/depth-map/) - Water Depth Maps
|
||||
* [River Runner](https://river-runner.samlearner.com/) / [3D Map](https://river-runner-global.samlearner.com/) - Raindrop Tracking Map
|
||||
* [Global Wetlands](https://www2.cifor.org/global-wetlands/) - Wetlands Map
|
||||
* [Mindat](https://www.mindat.org/countrylist.php) - Mineral Deposits Map
|
||||
|
|
@ -356,7 +354,6 @@
|
|||
* [VolcanoDiscovery](https://www.volcanodiscovery.com/erupting_volcanoes.html) - Volcano Activity Map
|
||||
* [USGS](https://earthquake.usgs.gov/earthquakes/map/) - Earthquake Activity Map
|
||||
* [GPlates](https://www.gplates.org/) - Plate Tectonics Simulator
|
||||
* [Natural Hazards Viewer](https://www.ncei.noaa.gov/maps/hazards/) - Natural Hazards Map
|
||||
|
||||
***
|
||||
|
||||
|
|
@ -405,30 +402,29 @@
|
|||
* [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
|
||||
|
||||
***
|
||||
|
||||
# ► News
|
||||
|
||||
* 🌐 **[AllYouCanRead](https://www.allyoucanread.com/)**, [W3Newspapers.com](https://www.w3newspapers.com/), [World-Newspapers](https://world-newspapers.com/), [OnlineNewspapers](https://www.onlinenewspapers.com), [4IMN](https://www.4imn.com/) or [newspapersglobal](https://www.newspapersglobal.com/) - Worldwide News Sites Indexes
|
||||
* 🌐 **[Current Events Wiki](https://en.m.wikipedia.org/wiki/Portal:Current_events)** or [Slower News](https://www.slowernews.com/) - Breaking News
|
||||
* 🌐 **[AllYouCanRead](https://www.allyoucanread.com/)** - Worldwide News Sites Index
|
||||
* ↪️ **[Newspaper Sites](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/reading#wiki_.25B7_newspapers)**
|
||||
* ↪️ **[Bypass Article Paywalls](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/internet-tools#wiki_.25B7_paywall_bypass)**
|
||||
* ⭐ **[/m/news](https://www.reddit.com/user/nbatman/m/news/)** - News Multireddit
|
||||
* ⭐ **[TorrentFreak](https://torrentfreak.com/)** / [Telegram](https://t.me/torrentfreaks) - Piracy News
|
||||
* ⭐ **[Current Events Wiki](https://en.m.wikipedia.org/wiki/Portal:Current_events)** or [Slower News](https://www.slowernews.com/) - Breaking News
|
||||
* ⭐ **[Good News Network](https://www.goodnewsnetwork.org/)** or [Happy Daze](https://happydaze.io/) - Uplifting News
|
||||
* [JustRead](https://justread.link/) or [Unclutter](https://unclutter.it/) - Feed Managers / Readers
|
||||
* [Pocket](https://getpocket.com/) - Discover & Save Articles
|
||||
* [Unclutter](https://unclutter.it/) - Feed Managers / Readers
|
||||
* [News as Facts](https://newsasfacts.com/) - Wiki-Based News
|
||||
* [Google Alerts](https://www.google.com/alerts) - News Alerts by Topics
|
||||
* [Attabit](https://attabit.com/) or [Dunce Media](https://www.dunce.media/) - News Summaries
|
||||
* [Attabit](https://attabit.com/) - News Summaries
|
||||
* [Top Stories](https://murmel.social/top) - Top Fediverse News
|
||||
* [CBM](https://comicbookmovie.com/) - Comic / Movie / TV News
|
||||
* [Anime News Network](https://www.animenewsnetwork.com/) - Anime News
|
||||
* [Anime Corner](https://animecorner.me/) - Anime / Manga News
|
||||
* [ArtDaily](https://artdaily.com) - Art News
|
||||
* [The Athletic](https://www.nytimes.com/athletic/) / [Bypass Paywall](https://fmhy.net/internet-tools#paywall-bypass) / [Mobile](https://rentry.co/FMHYBase64#the-athletic)
|
||||
* [EventMap](https://rsoe-edis.org/eventMap) or [RiskMap](https://www.riskmap.com) - Emergency and Disaster Maps
|
||||
* [EventMap](https://rsoe-edis.org/eventMap) - Emergency and Disaster Maps
|
||||
* [Interactive News Map](https://usa.liveuamap.com/) or [Atlas Politica](https://www.atlaspolitica.com/) - Geolocated News Alerts / Headlines U.S.
|
||||
* [MedicineNet](https://www.medicinenet.com/), [MedPageToday](https://www.medpagetoday.com/), [EverydayHealth](https://www.everydayhealth.com/), [Medscape](https://www.medscape.com/), [healthline](https://www.healthline.com/) or [WebMD](https://www.webmd.com/) - Health News
|
||||
* [SciURLs](https://sciurls.com/), [NewScientist](https://www.newscientist.com/), [Nature](https://www.nature.com/), [Science](https://www.science.org/), [PopSci](https://www.popsci.com/), [ScienceDaily](https://www.sciencedaily.com/), [EurekAlert](https://www.eurekalert.org/) or [LiveScience](https://livescience.com/) - Science News
|
||||
|
|
@ -436,13 +432,15 @@
|
|||
* [Dailynous](https://dailynous.com/) - Philosophy News
|
||||
* [The Base Rate Times](https://www.baseratetimes.com/) - Market Prediction News
|
||||
* [Medievalists](https://www.medievalists.net/category/news/) - Medieval History News
|
||||
* [FinURLs](https://finurls.com/) or [WOC Street](https://wocstreet.com/ai-news) - Finance & Business News
|
||||
* [FinURLs](https://finurls.com/) - Finance & Business News
|
||||
* [Web3 Is Going Great](https://www.web3isgoinggreat.com/) - Web3 Disaster News
|
||||
* [Citizen](https://citizen.com/explore) - Real Time Local News (US Only)
|
||||
* [PlaneCrashInfo](https://www.planecrashinfo.com/) or [AVHerald](https://avherald.com/) - Aviation Incidents / News
|
||||
* [Read Something Interesting](https://readsomethinginteresting.com/), [Read Something Wonderful](https://readsomethingwonderful.com/), [Read Something Great](https://www.readsomethinggreat.com/) or [BoredReading](https://boredreading.com/) - Random Articles / Blog Posts
|
||||
* [Media Bias Fact Check](https://drmikecrowe.github.io/mbfcext/), [ground.news](https://ground.news/extension) or [HonestyMeter](https://www.honestymeter.com/) - Media Bias Checkers
|
||||
* [PressMob](https://pressmob.ai/) - Journalist Search
|
||||
* [Neuters](https://neuters.de/) - Reuters Frontend
|
||||
* [Scribe](https://sr.ht/~edwardloveall/Scribe/), [medium.rip](https://medium.rip/) or [LibMedium](https://libmedium.batsense.net/) - Medium Frontends
|
||||
|
||||
***
|
||||
|
||||
|
|
@ -510,13 +508,12 @@
|
|||
## ▷ Physical Health
|
||||
|
||||
* 🌐 **[Evidence Based Training Wiki](https://www.reddit.com/r/EvidenceBasedTraining/wiki/index/)** - Evidence-Based Training Resources
|
||||
* ⭐ **[Simple Science Fitness](https://ss.fitness/calculators)** or [SwoleHalla](https://www.swolehalla.com/) - Fitness Calculators
|
||||
* ⭐ **[Simple Science Fitness](https://ss.fitness/calculators)** - Fitness Calculators
|
||||
* ⭐ **[/u/KNightNox Diagram](https://i.ibb.co/xCGRdM0/c3b977fa36fc.jpg)** - Zoomable Exercise Diagram
|
||||
* ⭐ **[BMI Chart](https://i.ibb.co/bL65m8F/995c00ec75ba.png)** - Healthy BMI Graph
|
||||
* ⭐ **[Standard BMI Calculator](https://www.nhlbi.nih.gov/health/educational/lose_wt/BMI/bmicalc.htm)** - BMI Calculator
|
||||
* [epocrates](https://online.epocrates.com/), [medlineplus](https://medlineplus.gov/), [merckmanuals](https://www.merckmanuals.com/), [mayoclinic](https://www.mayoclinic.org/), [rxlist](https://www.rxlist.com/), [nejm](https://www.nejm.org/), [ncbi](https://www.ncbi.nlm.nih.gov/pmc/), [hhs](https://www.hhs.gov/), [nih](https://www.nih.gov/), [cdc](https://www.cdc.gov/) - Government Health Resources
|
||||
* [epocrates](https://www.epocrates.com/), [medlineplus](https://medlineplus.gov/), [merckmanuals](https://www.merckmanuals.com/), [mayoclinic](https://www.mayoclinic.org/), [rxlist](https://www.rxlist.com/), [nejm](https://www.nejm.org/), [ncbi](https://www.ncbi.nlm.nih.gov/pmc/), [hhs](https://www.hhs.gov/), [nih](https://www.nih.gov/), [cdc](https://www.cdc.gov/) - Government Health Resources
|
||||
* [osh](https://www.osh.net/) - Occupational Health and Safety Resources
|
||||
* [Blood Pressure Monitor](https://github.com/NobodyForNothing/blood-pressure-monitor-fl) - Blood Pressure Tracker
|
||||
* [CancerFactFinder](https://cancerfactfinder.org/) - Cancer Fact Search
|
||||
* [INCIDecoder](https://incidecoder.com/) or [Skin Signal](https://skinsignal.com/) - Skincare Ingredient Lists
|
||||
* [AMMFitness](https://www.ammfitness.co.uk/) - Fitness / Nutrition Info
|
||||
|
|
@ -542,7 +539,7 @@
|
|||
* [/r/Flexibility](https://www.reddit.com/r/flexibility/) - Flexibility Subreddit
|
||||
* [My Pacer](https://www.mypacer.com/) - Fitness App / Pedometer
|
||||
* [MyFitnessPal](https://www.myfitnesspal.com/) - Fitness / Health App
|
||||
* [CalorieScope](https://f-droid.org/packages/org.dynamicsoft.caloriescope/) or [PFCTE](https://github.com/SecUSo/privacy-friendly-circuit-training-exercises) - Exercise & Activity Tracker
|
||||
* [PFCTE](https://github.com/SecUSo/privacy-friendly-circuit-training-exercises) - Exercise & Activity Tracker
|
||||
* [FitoTrack](https://codeberg.org/jannis/FitoTrack), [HealthMode](https://www.healthmode.app/) or [Flexify](https://github.com/brandonp2412/Flexify) - Fitness Trackers
|
||||
* [Liftosaur](https://www.liftosaur.com/) or [StrongLifts](https://stronglifts.com/) - Weightlifting Trackers
|
||||
* [Liftvault](https://liftvault.com/) - Weightlifting Programs / Spreadsheets
|
||||
|
|
@ -569,7 +566,7 @@
|
|||
* ⭐ **[Dehydration Chart](https://i.ibb.co/b3YxZzr/921f6c843cf0.png)** - Dehydration Color Chart
|
||||
* ⭐ **[OpenFoodFacts](https://world.openfoodfacts.org/)** - Food Database & Health Information / [Scanner](https://play.google.com/store/apps/details?id=org.openfoodfacts.scanner)
|
||||
* [NutritionFacts.org](https://nutritionfacts.org/) - Video Library for Latest Health-Based Research
|
||||
* [The Nutrition Source](https://www.hsph.harvard.edu/nutritionsource/) - Harvard University Health Website
|
||||
* [The Nutrition Source](https://nutritionsource.hsph.harvard.edu/) - Harvard University Health Website
|
||||
* [Liquid Drink](https://play.google.com/store/apps/details?id=com.xpp.drink) - Liquid Intake Tracker
|
||||
* [Daily Dozen](https://github.com/nutritionfactsorg/daily-dozen-android) - Daily Diet Recommendations / Android
|
||||
* [EatThisMuch](https://www.eatthismuch.com/), [FitMenCook](https://fitmencook.com/) or [MealPrePro](https://mealpreppro.com/) - Diet Tool / iOS / Android
|
||||
|
|
@ -627,7 +624,7 @@
|
|||
* [CleanBrowsing](https://cleanbrowsing.org/filters/) - Family DNS Filters
|
||||
* [cringeMDb](https://cringemdb.com/), [Age Rating JuJu](https://www.ageratingjuju.com/), [CommonSenseMedia](https://www.commonsensemedia.org/) or [unconsenting media](https://www.unconsentingmedia.org) - Find SFW Movies
|
||||
* [Movie Parser](https://raskie.com/post/practical-ai-autodetecting-nsfw) - Detect NSFW Scenes in Movies / [GitHub](https://github.com/dynamite-ready/movie-parser)
|
||||
* [Puri.fy](https://pury.fi/), [Wingman Jr. Filter](https://addons.mozilla.org/en-US/firefox/addon/wingman-jr-filter/), [HaramBlur](https://linktr.ee/haramblur) or [NSFW-Filter](https://nsfw-filter.com/) - Block NSFW Images
|
||||
* [Wingman Jr. Filter](https://addons.mozilla.org/en-US/firefox/addon/wingman-jr-filter/), [HaramBlur](https://linktr.ee/haramblur) or [NSFW-Filter](https://nsfw-filter.com/) - Block NSFW Images
|
||||
* [Fortify](https://www.joinfortify.com/) - Porn Quitting Community
|
||||
* [SAA Recovery](https://saa-recovery.org/), [Cosa Recovery](https://cosa-recovery.org/) or [Smart Recovery](https://www.smartrecovery.org/) - Find Sex Addiction Meetings
|
||||
|
||||
|
|
@ -682,7 +679,6 @@
|
|||
* [Invoicely](https://invoiceto.me/), [InvoiceNinja](https://invoiceninja.com/) or [Akaunting](https://akaunting.com/) - Invoicing Tools
|
||||
* [Google Patents](https://patents.google.com/) - Searchable Patents Database
|
||||
* [PatentsExpiringToday](https://patentsexpiringtoday.com/) - Find Expired Patents
|
||||
* [Candor](https://candor.co/hiring-freezes/) - Hiring Freezes
|
||||
* [Layoffs.fyi](https://layoffs.fyi/) - Recent Layoffs Tracker
|
||||
* [GoodJobsFirst](https://goodjobsfirst.org/) - Subsidy Tracker
|
||||
* [QR Menu Creator](https://qrmenucreator.com/) - Convert Menu to QR Codes
|
||||
|
|
@ -704,7 +700,6 @@
|
|||
* [Resuminator](https://www.resuminator.in/)
|
||||
* [Sclof](https://sclof.com/)
|
||||
* [flowcv](https://flowcv.com/)
|
||||
* [cvservant](https://cvservant.com/cv/)
|
||||
* [Resumake](https://github.com/saadq/resumake)
|
||||
* [resume-nation](https://resume-nation.github.io/)
|
||||
* [sajilocv](https://sajilocv.com/)
|
||||
|
|
@ -713,7 +708,6 @@
|
|||
* [Resume.com](https://www.resume.com/)
|
||||
* [CvResumeNest](https://cvresumenest.com/)
|
||||
* [intelligentcv](https://www.intelligentcv.app/)
|
||||
* [cakeresume](https://www.cakeresume.com/)
|
||||
* [resumgo](https://www.resumgo.com/)
|
||||
* [resumake](https://latexresu.me/)
|
||||
* [Covered](https://covered.works/)
|
||||
|
|
@ -733,11 +727,12 @@
|
|||
* [/r/freelance](https://www.reddit.com/r/freelance/) - Freelance Subreddit
|
||||
* [MTurk](https://www.mturk.com/) - Online Task Work
|
||||
* [NoCummute](https://www.nocommutejob.com/) - Remote Job Notifications
|
||||
* [WeNomad](https://wenomad.so/) or [Nomad List](https://nomadlist.com/) - Remote Work Ratings
|
||||
* [WeNomad](https://wenomad.so/) or [Nomad List](https://nomads.com/) - Remote Work Ratings
|
||||
* [Jobspresso](https://jobspresso.co/) - Remote Jobs
|
||||
* [Remote Jobs](https://remotejobs.com/) - Remote Jobs
|
||||
* [himalayas](https://himalayas.app/) - Remote Jobs
|
||||
* [We Work Remotely](https://weworkremotely.com/) - Remote Jobs
|
||||
* [CareerVault](https://careervault.io/) - Remote Jobs
|
||||
* [NoDesk](https://nodesk.co/) - Remote Jobs
|
||||
* [Remote OK](https://remoteok.com/) - Remote Jobs
|
||||
* [JobsCollider](https://jobscollider.com/) - Remote Jobs
|
||||
|
|
@ -747,7 +742,6 @@
|
|||
* [Remotive](https://remotive.com/) - Remote Jobs
|
||||
* [DailyRemote](https://dailyremote.com/) - Remote Jobs
|
||||
* [HireBasis](https://www.hirebasis.com/) - Remote Jobs
|
||||
* [Remote Work Junkie](https://jobs.remoteworkjunkie.com/) - Remote Jobs
|
||||
* [Remotedom](https://remotedom.com/) - Remote Jobs
|
||||
|
||||
***
|
||||
|
|
@ -793,14 +787,12 @@
|
|||
|
||||
* 🌐 **[Awesome Startup](https://github.com/Ibexoft/awesome-startup-tools-list)** or [Tools for Startups](https://docs.google.com/spreadsheets/d/1s6-hGBh0_tqa-jd23fsdYuwbmS8UPmElPqaH-Rnoa_A/htmlview) - Startup Resources Indexes
|
||||
* 🌐 **[moreThanFAANGM](https://kaustubh-natuskar.github.io/moreThanFAANGM/)** - Good Companies / Startups Index
|
||||
* [NewIdeas](https://indieideas.io/) or [Business Generator](https://business-generator.vercel.app/) - Generate Business Ideas
|
||||
* [BetaList](https://betalist.com/) - Get Startup Ideas
|
||||
* [Playbooks](https://playbooks.com/) - Startup Tips
|
||||
* [Business Generator](https://business-generator.vercel.app/) - Generate Business Ideas
|
||||
* [Failory](https://www.failory.com/graveyard) - Learn Why Startups Failed
|
||||
* [280+ Websites to Submit Your Startup](https://airtable.com/shrwqaak73gy83w9A/tblu5RcUft9fYp9Ju/viwFHmIyMniXzlpK4?blocks=show) or [PlacesToPostYourStartup](https://www.placestopostyourstartup.com/) - Startup Submission Sites
|
||||
* [WellFound](https://wellfound.com/) - Find Employees for Startups
|
||||
* [namify](https://namify.tech/) - Domain / Business Name Suggestions
|
||||
* [namelix](https://namelix.com/) or [looka](https://looka.com/business-name-generator) - Business Name Generators
|
||||
* [AcronymCreator](https://acronymcreator.net/) - Business Acronym Generator
|
||||
* [Business Card Generator](https://business-card-generator.vercel.app/) or [Haystack](https://thehaystackapp.com/) - Business Cards
|
||||
* [AvaDocs](https://www.avodocs.com/) - Generate Legal Documents for Startups
|
||||
|
|
@ -811,7 +803,7 @@
|
|||
|
||||
* 🌐 **[/r/PersonalFinance Wiki](https://www.reddit.com/r/personalfinance/wiki/index)** or [UK Personal Finance](https://ukpersonal.finance/) - Financial Advice / Resources
|
||||
* ⭐ **[TradingView](https://www.tradingview.com/)**, [ticker](https://github.com/achannarasappa/ticker), [Candle](https://gitlab.com/cosmosapps/candle), [finviz](https://finviz.com/) or [Markets.sh](https://markets.sh/) - Stock Market Trackers
|
||||
* ⭐ **[Ghostfolio](https://ghostfol.io/)** / [Import](https://github.com/dickwolff/Export-To-Ghostfolio), [Maybe](https://hello.maybe.co/), [HomeBank](https://www.gethomebank.org/en/index.php), [Firefly III](https://firefly-iii.org/), [Money Manager EX](https://moneymanagerex.org/) or [Actual](https://github.com/actualbudget/actual) - Finance Managers
|
||||
* ⭐ **[Ghostfolio](https://ghostfol.io/en/start)** / [Import](https://github.com/dickwolff/Export-To-Ghostfolio), [Maybe](https://maybe.co/), [HomeBank](https://www.gethomebank.org/en/index.php), [Firefly III](https://firefly-iii.org/), [Money Manager EX](https://moneymanagerex.org/) or [Actual](https://github.com/actualbudget/actual) - Finance Managers
|
||||
* [US Taxes](https://ustaxes.org/) or [FreeTaxUSA](https://www.freetaxusa.com/) - File Taxes for Free / [Get Pin](https://youtu.be/iPw8I-cZ1eY) / [Form Calc](https://opentaxsolver.sourceforge.net/)
|
||||
* [Ivy Wallet](https://github.com/Ivy-Apps/ivy-wallet), [money-manager](https://github.com/moneymanagerex/android-money-manager-ex),[Buckwheat](https://buckwheat.app/), [My Expenses](https://www.myexpenses.mobi/), [Cashew](https://play.google.com/store/apps/details?id=com.budget.tracker_app) or [Sushi](https://github.com/jerameel/sushi) - Android Finance / Expense Managers
|
||||
* [GreenStash](https://github.com/Pool-Of-Tears/GreenStash) - Savings Tracking App
|
||||
|
|
@ -851,6 +843,7 @@
|
|||
* [BTCPay](https://btcpayserver.org/) - FOSS Bitcoin Payment Processor
|
||||
* [BitcoinWhosWho](https://www.bitcoinwhoswho.com/) - Bitcoin Address Scanner
|
||||
* [BlockChain](https://www.blockchain.com/explorer), [CoinWatch](https://github.com/shorthouse/CoinWatch), [Hivexplorer](https://hivexplorer.com/), [BlockChair](https://blockchair.com/), [L2BEAT](https://l2beat.com/), [HiveblockExplorer](https://hiveblockexplorer.com/) or [LiveCoinWatch](https://www.livecoinwatch.com/) - Live Cryptocurrency Prices
|
||||
* [Dora](https://www.ondora.xyz/) - Cross-Chain Search Engine
|
||||
* [DefiLlama](https://defillama.com/) - TVL Aggregator
|
||||
* [WalletExplorer](https://www.walletexplorer.com/) - Bitcoin Block Explorers
|
||||
* [Cryptopedia](https://www.gemini.com/cryptopedia) or [Crypto Canon](https://a16zcrypto.com/posts/article/crypto-readings-resources/) - Crypto Learning Resources
|
||||
|
|
@ -866,7 +859,7 @@
|
|||
* ⭐ **[ThisIsWhyImBroke](https://www.thisiswhyimbroke.com/)** - Find Interesting Things to Buy
|
||||
* ⭐ **[BuyReddit](https://www.buyreddit.com/)** or [RedditFavorites](https://redditfavorites.com/) - Reddit Recommended Products
|
||||
* ⭐ **[DarkPatternsTipline](https://darkpatternstipline.org/)** - Deceptive Service Design Tipline
|
||||
* [Kit.co](https://kit.co/), [Looria](https://www.looria.com/), [ProductHunt](https://producthunt.com/) or [Consumer Reports](https://consumerreports.org/) - Product / Service Reviews
|
||||
* [Kit.co](https://kit.co/), [Looria](https://www.looria.com/) or [ProductHunt](https://producthunt.com/) - Product / Service Reviews
|
||||
* [Pepper](https://www.pepper.com/) - Shopping Community
|
||||
* [Slant](https://www.slant.co/) - "What are the best..." Product Rankings
|
||||
* [Claros](https://www.claros.so/) - AI Product Recommendations / [Discord](https://discord.gg/87KJvjpkF8)
|
||||
|
|
@ -883,11 +876,10 @@
|
|||
* [carsized](https://www.carsized.com/) - Vehicle Size Comparisons
|
||||
* [CarVertical](https://www.carvertical.com/), [VehicleHistory](https://www.vehiclehistory.com/) or [Car Owners](https://carsowners.net/) - Vehicle History & VIN Search
|
||||
* [NHTSA](https://vpic.nhtsa.dot.gov/api/) - Vehicle Registration Database
|
||||
* [PartSouq](https://partsouq.com/) - Auto Parts Search
|
||||
* [RockAuto](https://www.rockauto.com/) or [PartSouq](https://partsouq.com/) - Auto Parts Search
|
||||
* [HiddenHousing](https://www.hiddenhousing.org/) - House Pricing Map
|
||||
* [Chipscribe](https://chipscribe.com/) - Split Service Subscription Costs Anonymously
|
||||
* [StockInformer](https://www.stockinformer.com/) - Product Stock Notifications
|
||||
* [GiftWhale](https://giftwhale.com/), [Throne](https://throne.com/) or [Wishlephant](https://wishlephant.com/) - Wishlist Generators
|
||||
* [Desenmascara](https://desenmascara.me/) - Spot Counterfeit Sites
|
||||
* [/r/FashionReps](https://www.reddit.com/r/FashionReps/) - Replica Clothing Community
|
||||
* [WornOnTV](https://wornontv.net/) - Find Outfits from TV Shows
|
||||
|
|
@ -908,15 +900,15 @@
|
|||
* ⭐ **[CPUBenchmark](https://www.cpubenchmark.net/)** or [NoteBenchcheck](https://www.notebookcheck.net/Benchmarks-Tech.123.0.html) - GPU / CPU Benchmarks
|
||||
* ⭐ **[/r/MechanicalKeyboards Wiki](https://www.reddit.com/r/MechanicalKeyboards/wiki/index)** or [Alexotos](https://www.alexotos.com/keyboard-vendor-list/) / [Discord](https://discord.com/invite/xMQArAaGRB) - Mechanical Keyboard Recommendations
|
||||
* ⭐ **[Mousepad Mastersheet](https://docs.google.com/spreadsheets/d/1RAnmZxDNduaGV8kB-GCvZ0MO6d9-0j9jmrU2f8dp0Ww/)** - Mousepad Comparison Chart
|
||||
* [Privacy Not Included](https://foundation.mozilla.org/privacynotincluded/) - Product Privacy Ratings
|
||||
* [LabGopher](https://www.labgopher.com/) - eBay Hardware Price Comparisons
|
||||
* [/r/buildapc](https://reddit.com/r/buildapc) - PC Building Community / [Discord](https://discord.com/invite/buildapc)
|
||||
* [/r/BuildAPCForMe](https://reddit.com/r/BuildAPCForMe) - PC Building Community
|
||||
* [/r/SuggestAPC](https://reddit.com/r/SuggestAPC) - PC Suggestion Community
|
||||
* [Desk Spacing](https://deskspacing.com/) or [PlanYourRoom](https://www.planyourroom.com/) - Visualize PC Setups
|
||||
* [NewMaxx's SSD Site](https://borecraft.com/), [JohnnyLucky](https://www.johnnylucky.org/index.html) or [SSD Chart](https://docs.google.com/spreadsheets/d/1B27_j9NDPU3cNlj2HKcrfpJKHkOf-Oi1DbuuQva2gT4/) - SSD Buying Comparisons
|
||||
* [Disk Prices](https://diskprices.com/) - Disk Price Tracker
|
||||
* [Shucks](https://shucks.top/) - External Drive Price Tracker
|
||||
* [/r/SuggestALaptop](https://reddit.com/r/SuggestALaptop), [Jarrod's Tech](https://jarrods.tech/resources/) or [Noteb](https://noteb.com/) - Laptop Suggestions / [Discord](https://discord.gg/pes68JM)
|
||||
* [Jarrod's Tech](https://jarrods.tech/resources/) or [Noteb](https://noteb.com/) - Laptop Suggestions / [Discord](https://discord.gg/pes68JM)
|
||||
* [Laptop Wiki](https://laptopwiki.eu/) - Laptop Info Database
|
||||
* [EveryMac](https://everymac.com/) - Mac Info Database
|
||||
* [Mouse Ratings](https://www.rtings.com/mouse/reviews/best), [EloShapes](https://www.eloshapes.com/), [Sensor.fyi](https://sensor.fyi/info/), [RocketJumpNinja](https://www.rocketjumpninja.com/) or [/r/MouseReview](https://www.reddit.com/r/MouseReview/) / [Discord](https://discord.gg/mousereview) - Mouse Buying Guides
|
||||
|
|
@ -929,7 +921,7 @@
|
|||
* [PSU Tier List](https://cultists.network/140/psu-tier-list/) - PSU Buying Guide
|
||||
* [PC Monitors](https://pcmonitors.info/), [TFTCentral](https://tftcentral.co.uk/), [Monitor Hunter](https://docs.google.com/document/d/1illeNLsUfZ4KuJ9cIWKwTDUEXUVpplhUYHAiom-FaDo/), [DisplaySpecifications](https://www.displayspecifications.com/), [Monitor Spreadsheet](https://pastebin.com/tkmakRNW) or [DisplayNinja](https://www.displayninja.com/) - Monitor Buying Guides
|
||||
* [sven dpi](https://www.sven.de/dpi/) or [Screensiz.es](https://screensiz.es/) - Screen / Monitor Size Comparisons
|
||||
* [Erin's Audio Corner](https://www.erinsaudiocorner.com/), [Speakerzilla](https://speakerzilla.com/) or [Equipboard](https://equipboard.com/) - Audio Equipment Comparisons
|
||||
* [Erin's Audio Corner](https://www.erinsaudiocorner.com/) or [Equipboard](https://equipboard.com/) - Audio Equipment Comparisons
|
||||
* [InStockAlert_DataLover](https://discord.gg/jd6KaBUHG4) or [Fixitfixitfixit](https://discord.gg/gpu) - GPU / Xbox / PS5 Drop Notifications / [Guide](https://youtu.be/2cBRW9FeQ3A)
|
||||
* [Don’t kill my app!](https://dontkillmyapp.com/) - Manufacturer Battery Life vs. App Functionality
|
||||
* [PhoneSized](https://phonesized.com/) or [HotSpot3D](https://www.hotspot3d.com/) - Phone Size Comparisons
|
||||
|
|
@ -983,8 +975,7 @@
|
|||
* [Search Ebay Sold](https://chromewebstore.google.com/detail/search-ebay-sold/mhlcjbhhieanjjafbcoeclghpnjhepif) - Ebay Sold Item Search
|
||||
* [/r/WhatsThisWorth](https://www.reddit.com/r/whatsthisworth/) - Online Appraisals
|
||||
* [GasPrices](https://gasprices.aaa.com/) - Gas Price Tracker
|
||||
* [SlyToday](https://slytoday.com/) - Price Comparison Search
|
||||
* [Valuta EX](https://valuta.exchange/) or [Currency World](https://currency.world/)- Currency Converters / [Firefox](https://addons.mozilla.org/en-US/firefox/search/?q=currency%20converter&sort=relevance&type=extension) / [Chrome](https://chromewebstore.google.com/search/currency%20converteren&_category=extensions)
|
||||
* [Valuta EX](https://valuta.exchange/) or [Currency World](https://currency.world/)- Currency Converters
|
||||
|
||||
***
|
||||
|
||||
|
|
@ -1044,7 +1035,7 @@
|
|||
* [Fragrantica](https://www.fragrantica.com/), [Basenotes](https://basenotes.com/) or [Parfumo](https://www.parfumo.com/) - Perfume / Fragrance Databases
|
||||
* [Stolen Drone](https://stolendrone.info/) - Stolen Drone Info
|
||||
* [CacheSleuth](https://www.cachesleuth.com/) - Geocaching Tools
|
||||
* [Morse Code](https://morsecode.me/) or [Woozle](https://vail.woozle.org/) - Create Morse Code Audio
|
||||
* [Woozle](https://vail.woozle.org/) - Create Morse Code Audio
|
||||
* [Parcelsapp](https://parcelsapp.com/en/), [Informed Delivery](https://informeddelivery.usps.com/) or [17Track](https://www.17track.net/en) - Mail Package Tracking
|
||||
* [Sweet Home 3D](https://www.sweethome3d.com/) or [Homestyler](https://www.homestyler.com/) - Interior Design Apps
|
||||
* [BlockLayer](https://www.blocklayer.com/) - Construction / Remodeling Calculators
|
||||
|
|
@ -1093,24 +1084,15 @@
|
|||
* [Cold Turkey](https://getcoldturkey.com/) - Site Blocker / Productivity App / [Premium (use python)](https://rentry.co/FMHYBase64#cold-turkey-premium)
|
||||
* [ActivityWatch](https://activitywatch.net/) - Device / App Time Tracker / [Extensions](https://github.com/ActivityWatch/aw-watcher-web)
|
||||
* [ProcrastiTracker](https://strlen.com/procrastitracker/) - Device / App Time Tracker
|
||||
* [ManicTime](https://www.manictime.com/) - Device / App Time Tracker
|
||||
* [Bytetrack](https://bytetrack-app.bytebeacon.com/) - Online Activity Tracker
|
||||
* [Furtherance](https://github.com/lakoliu/Furtherance) - Time Tracker
|
||||
* [Timer](https://klaster1.github.io/timer-5) - Time Tracker
|
||||
* [Forget](https://www.forget.work/) - Time Tracker
|
||||
* [Toggl](https://toggl.com/) - Time Tracker
|
||||
* [Pro Modoro](https://pro-modoro.xyz/) - Time Tracker / Break Reminders
|
||||
* [timebleed](https://timebleed.com/) - Time Tracker / Break Reminders
|
||||
* [wnr](https://getwnr.com/) - Time Tracker / Break Reminders
|
||||
* [Pomofocus](https://pomofocus.io/) - Time Tracker / Break Reminders
|
||||
* [Pomatez](https://zidoro.github.io/pomatez/) - Time Tracker / Break Reminders
|
||||
* [BreakTimer](https://breaktimer.app/) - Break Reminders
|
||||
* [Stretchly](https://hovancik.net/stretchly) - Break Reminders
|
||||
* [WorkRave](https://workrave.org/) - Break Reminders
|
||||
* [skāl.es](https://www.skal.es/) - Work Life Balance Tracking
|
||||
* [BreakMessage](https://breakmessage.com/) - Online Break Reminders
|
||||
* [TabWave](https://www.tabwave.app/) - Minimal / Productivity New Tab
|
||||
* [Virtual Cottage](https://dui.itch.io/virtual-cottage) - Activity / Tasks Virtual Cottage
|
||||
* [Plucky](https://pluckyfilter.com/), [Block Site](https://webextension.org/listing/block-site.html), [LeechBlock](https://www.proginosko.com/leechblock), [uBlacklist](https://iorate.github.io/ublacklist/docs) or [Forest](https://pastebin.com/rYuAivA0) - Site Blocking Extensions
|
||||
* [UnDistracted](https://www.undistracted.app/) or [Focus-ToDo](https://chromewebstore.google.com/detail/ngceodoilcgpmkijopinlkmohnfifjfb) - Chrome Productivity Managers
|
||||
|
||||
|
|
@ -1195,7 +1177,6 @@
|
|||
* [Creative Uncut](https://www.creativeuncut.com/) - Video Game Art
|
||||
* [IndieGameBooru](https://indiegame.booru.org/) - Indie Game Image Booru
|
||||
* [Random Screenshot](https://randomscreenshot.com/) or [Random Prnt.sc](https://chrishannah.me/prntsc/) - Random Screenshots
|
||||
* [Archillect](https://archillect.com/archive) - Image Posting Bot
|
||||
* [ArtVote](https://qcpages.qc.cuny.edu/~chanusa/artvote/) - Judge Art
|
||||
* [Random Comic Generator 3.0](https://explosm.net/rcg) - Explosm Random Comic Generator
|
||||
* [Chris Shier](https://www.csh.bz/) - Canvas Animations / GIFs
|
||||
|
|
@ -1214,7 +1195,6 @@
|
|||
* [No Paint](https://nopaint.art/) - Press "Paint" if you like what you see, "No" if you don't
|
||||
* [Triviart](https://triviart.live/) - Infinite Painting Canvas with Trivia
|
||||
* [paint.wtf](https://paint.wtf/) - Have an AI Judge Your Art
|
||||
* [Chimera Painter](https://storage.googleapis.com/chimera-painter/index.html) - Chimera Generator
|
||||
* [MakeCoatOfArms](https://www.allfamilycrests.com/makecoatofarms.htm) - Coat of Arms Generator
|
||||
* [Where Is The Google Car](https://www.whereisthegooglecar.com/) - Google Car Images / Locations
|
||||
* [Web Neko](https://webneko.net/) - Nekos on the Web
|
||||
|
|
@ -1251,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)**
|
||||
|
|
@ -1262,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
|
||||
|
|
@ -1281,10 +1256,11 @@
|
|||
* [Just Type Stuff](https://web.archive.org/web/20191229101209/https://justtypestuff.com/) - Type Things into Existence
|
||||
* [deardiary](https://deardiary.wtf/) - Machine Learning Diary / [Concept Video](https://youtu.be/Zc3qayGmYZQ)
|
||||
* [Cafe and Diner](https://www.cafeanddiner.com/) - Browser Mystery Game
|
||||
* [There Is No Website](https://www.thereisnoweb.site/) - Browser Website Game
|
||||
* [Terminal 00](https://angusnicneven.com/), [corru.observer](https://corru.observer/), [lomando](https://lomando.com/main.html), [angelangelangel](https://angelangelangelangelangel.com/) or [SilverLadder](http://www.silverladder.com/) - Cursed Sites / Horror Games
|
||||
* [Kamogo](https://www.kamogo.com/faq/) - Useless Web Apps
|
||||
* [larsberg](https://www.larsberg.net/#/), [substack](https://substack.net/) or [mrdoob](https://mrdoob.neocities.org/) - Trippy 3D Experiments
|
||||
* [Google Doodles](https://www.google.com/doodles?q=interactive) - Interactive Google Doodles
|
||||
* [Google Doodles](https://doodles.google/) - Interactive Google Doodles
|
||||
* [Quick, Draw](https://quickdraw.withgoogle.com/) - Doodle Game
|
||||
* [Doodle Dash](https://xenova-doodle-dash.static.hf.space/index.html) - Let AI Guess Doodles
|
||||
* [AI Bingo](https://ai-bingo.lipsumar.io/) - AI Art Guessing Games
|
||||
|
|
@ -1308,7 +1284,7 @@
|
|||
* [Fold & Cut](https://www.onemotion.com/fold-cut-paper/) - Make Digital Paper Snowflakes
|
||||
* [Iceberger](https://joshdata.me/iceberger.html) - Draw an Iceberg, See how it Floats
|
||||
* [BubblesPop](https://bubblespop.netlify.app/), [2](https://brainteaser.top/bubblespop.html) - Pop Bubble Wrap
|
||||
* [OneMillionCheckboxes](https://onemillioncheckboxes.com/), [TwoMillionCheckboxes](https://twomillioncheckboxes.com/), [Checkbox Life](https://huth.me/checkbox-life/) or [Checkbox Olympics](https://checkbox.toys/) - Checkbox Games
|
||||
* [OneMillionCheckboxes](https://onemillioncheckboxes.com/), [Checkbox Life](https://huth.me/checkbox-life/) or [Checkbox Olympics](https://checkbox.toys/) - Checkbox Games
|
||||
* [Fidget Page](https://www.fidgetpage.com/) - Play with Fidget Spinner
|
||||
* [Keep calm and poke me.](https://calm.ovh/) - Poke & Pull
|
||||
* [Elastic Man](https://www.adultswim.com/etcetera/elastic-man/) - Elastic Morty
|
||||
|
|
@ -1321,7 +1297,6 @@
|
|||
* [Neonflames](https://29a.ch/sandbox/2011/neonflames/) - Draw Nebulas
|
||||
* [Leapy Grid](https://codepen.io/Godje/full/mOzpEY/) - Play with Rainbow Grid
|
||||
* [Pixactly](https://pixact.ly/) - Pixel Size Drawing Challenge
|
||||
* [Plink](https://plink.in/) / [2](http://dinahmoelabs.com/plink/) - Multiplayer Music Maker
|
||||
* [Typatone](https://www.typatone.com/) - Play Music by Typing
|
||||
* [Blossom](https://blossom.alexbainter.com/) - Create Sounds via Clicks
|
||||
* [Drawing Garden](https://drawing.garden/) - Create Sounds via Mouse Movement
|
||||
|
|
@ -1373,18 +1348,20 @@
|
|||
* [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
|
||||
* [Museum of Failure](https://collection.museumoffailure.com/), [KilledByGoogle](https://killedbygoogle.com/), [KilledByMicrosoft](https://killedbymicrosoft.info/) or [KilledByTech](https://killedby.tech/) - Dead Projects
|
||||
* [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
|
||||
* [UFO Casebook](https://www.ufocasebook.com/), [UFO Discovery](https://app.polymersearch.com/polymerexamples/UFO_Sightings) or [UFO Sighting Chart](https://i.redd.it/0l9ugv9kz4091.jpg) - UFO Sighting Lists / Tracking
|
||||
* [BFRO](https://bfro.net/) - Bigfoot Research Site
|
||||
* [TheShadowlands](https://theshadowlands.net/) - Oldschool Paranormal Research Site
|
||||
* [BreezeWiki](https://breezewiki.com/) - Fandom Frontend / [Mirrors](https://pastebin.com/DmbrhEDD)
|
||||
* [BlackDrago](https://www.blackdrago.com/) - Dragon Encyclopedia
|
||||
* [FutureTimeline](https://www.futuretimeline.net/) - Timeline of Future Predictions
|
||||
* [Letters of Note](https://news.lettersofnote.com/) - Historical Letters
|
||||
|
|
@ -1396,7 +1373,7 @@
|
|||
* [Pushing Pixels](https://www.pushing-pixels.org/fui/) or [Saji8k](https://www.saji8k.com/kit-fui/) - Imaginary UI from Movies
|
||||
* [Nestflix](https://nestflix.fun/) - Fictional Media in Media Database
|
||||
* [BogLeech](https://bogleech.com/) - Monster Design Reviews
|
||||
* [BrickLink Studio](https://www.bricklink.com/v2/build/studio.page) - Lego Building Software
|
||||
* [BrickLink Studio](https://www.bricklink.com/v3/studio/download.page) - Lego Building Software
|
||||
* [Instructables](https://www.instructables.com/) - Free Projects / Crafts
|
||||
* [Toys from Trash](https://www.arvindguptatoys.com/toys.html) - Use Everyday Items to Make Toys
|
||||
* [Fold N Fly](https://www.foldnfly.com/) - Paper Airplane Guides
|
||||
|
|
@ -1414,7 +1391,7 @@
|
|||
* [Fun Trivia](https://www.funtrivia.com/), [Sporcle](https://www.sporcle.com/), [uQuiz](https://uquiz.com/), [ARealMe](https://www.arealme.com/) or [JetPunk](https://www.jetpunk.com/) - Quiz / Trivia
|
||||
* [Bestiefy](https://bestiefy.com/) - Friend Quizzes
|
||||
* [theOtaku](https://theotaku.com/quizzes) - Anime Personality Quizzes
|
||||
* [8dreams](https://8dreams.github.io/) - Political Alignment Test
|
||||
* [Politiscales](https://politiscales.party/), [8dreams](https://8dreams.github.io/) or [8values](https://8values.github.io/) - Political Alignment Test
|
||||
* [HowNormalAmI?](https://www.hownormalami.eu/) - Face Judge AI
|
||||
* [Face Shape AI](https://www.detect-face-shape.com) or [FaceShape](https://www.faceshape.com/) - Face Shape Detectors
|
||||
* [Face Age AI](https://www.howolddoilook.io) - AI Age Guessing
|
||||
|
|
@ -1446,6 +1423,7 @@
|
|||
* ⭐ **[Drinking Game Zone](https://drinkinggamezone.com/)** - Drinking Games Encyclopedia
|
||||
* ⭐ **[WhatBeatsRock](https://www.whatbeatsrock.com/)** - Guess What Beats What
|
||||
* ⭐ **[Library of Babel](https://libraryofbabel.info/)** - Every Book of Past, Present, and Future
|
||||
* [Visit A Random Website](https://visitarandomwebsite.com/) - Find Random Sites
|
||||
* [The Red Button](https://clicktheredbutton.com/) - Find Random Sites
|
||||
* [BoredButton](https://www.boredbutton.com/) - Find Random Sites
|
||||
* [Sharkle!](https://sharkle.com/) - Find Random Sites
|
||||
|
|
@ -1501,5 +1479,4 @@
|
|||
* [DownloadMoreRam](https://downloadmoreram.com/) - Download More RAM
|
||||
* [The Restart Page](http://www.therestartpage.com/) - Vintage Operating System Reboots
|
||||
* [Windows XP Error Worm](https://ybenbihi.github.io/windows-error-worm/) - Click & Drag Windows Errors
|
||||
* [Hair on Screen](https://chromewebstore.google.com/detail/hair-on-screen/egkikapjpndmjflbjjoondbihalgdjco) - Fake Hair on Screen Prank
|
||||
* [Hacktyper](https://hackertyper.net/), [Hoacks](https://hoacks.com/) or [Geektyper](https://geektyper.com/) - Fake Hacking Screen
|
||||
|
|
@ -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
|
||||
|
|
@ -113,7 +112,6 @@
|
|||
* [cinemabg](https://cinemabg.club/) - Movies / Sub / Dub / 720p
|
||||
* [BGTVI](https://bgtvi.com/) - TV / Sub / Dub / 720p
|
||||
* [BGESTV](https://bgestv.com) - TV / Sub / Dub / 720p
|
||||
* [TubeBG](https://www.tubebg.com/) - TV / Sub / Dub / 720p
|
||||
|
||||
***
|
||||
|
||||
|
|
@ -353,20 +351,18 @@
|
|||
## ▷ 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
|
||||
* [Torrent411](https://www.torrent411.to/) - Video / Audio / ROMs / Books
|
||||
* [Sharewood](https://www.sharewood.tv/) - Video / Audio / ROMs / Books
|
||||
|
||||
## ▷ Streaming
|
||||
|
||||
* ⭐ **[SeeFrench](https://seefrench.pro/)** - Movies / TV / Anime / Dub / 4K / 1080p / [Discord](https://discord.gg/5ZYBNAp7tm)
|
||||
* ⭐ **[Braflix](https://www.braflix.ru/)** - Movies / TV / Anime / Dub / 4K / 1080p
|
||||
* ⭐ **[Braflix](https://www.braflix.gd/)** - Movies / TV / Anime / Dub / 4K / 1080p
|
||||
* ⭐ **[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
|
||||
|
|
@ -414,8 +410,10 @@
|
|||
|
||||
## ▷ Downloading / Herunterladen
|
||||
|
||||
* [Usenet DE Guide](https://github.com/PCJones/usenet-guide) - German Usenet Guide / [Discord](https://discord.com/invite/pZrrMcJMQM)
|
||||
* [Radar / Sonarr DE Guide](https://github.com/PCJones/radarr-sonarr-german-dual-language/blob/main/GERMAN_DUAL_LANGUAGE_GUIDE_GER.md)
|
||||
* [Crawli](https://crawli.net/) - Download Search
|
||||
* [ArchivX](https://www.archivx.to/) or [StartSeite](https://startseite.to/) - Warez Lists
|
||||
* [ArchivX](https://www.archivx.to/), [StartSeite](https://startseite.to/) or [BestOfLinks](http://bestoflinks.synology.me/) - Warez Lists
|
||||
* [DarkLight](https://board.darklight.to/) - Video / Audio / ROMs / Books / Magazines / NSFW
|
||||
* [Warez-World](https://warez-world.org/) - Video / Audio / Books / Magazines / NSFW
|
||||
* [Goldesel](https://goldesel.bz/) - Video / Audio / NSFW
|
||||
|
|
@ -433,14 +431,14 @@
|
|||
|
||||
## ▷ Streaming
|
||||
|
||||
* ⭐ **[Braflix](https://www.braflix.ru/)** - Movies / TV / Anime / Dub / 4K / 1080p
|
||||
* ⭐ **[Kinoger](https://kinoger.com/)** - Movies / TV / 1080p
|
||||
* ⭐ **[HDFilme](https://hdfilme.plus/)** - Movies / TV / Anime / Dub / 1080p
|
||||
* ⭐ **[Kinoking](https://kinoking.cc/)** - Movies / TV / Anime / Dub / 1080p
|
||||
* ⭐ **[Kinokiste](https://kinokiste.live/)** - Movies / TV / Dub / 1080p
|
||||
* [streamkiste](https://streamkiste.taxi/) - Movies / TV / Dub / 1080p
|
||||
* [Braflix](https://www.braflix.gd/) - Movies / TV / Anime / Dub / 4K / 1080p
|
||||
* [Streamkiste](https://streamkiste.tv/), [2](https://streamkiste.taxi/) - Movies / TV / Dub / 1080p
|
||||
* [FilmPalast](https://filmpalast.sx/), [2](https://filmpalast.info/) - Movies / TV / Dub / 1080p
|
||||
* [Kinoger](https://kinoger.com/) - Movies / TV / 1080p
|
||||
* [Megakino](https://megakino.org/) - Movies / TV / Dub / 720p
|
||||
* [Megakino](https://megakino.onl/), [2](https://megakino.org/) - Movies / TV / Dub / 720p
|
||||
* [StreamCloud](https://streamcloud.sx/) - Movies / TV / 720p
|
||||
* [Kinos](https://www.kinos.to/) - Movies / TV / Dub / 720p
|
||||
* [xCine](https://xcine.ru/) - Movies / TV / Dub / 720p
|
||||
|
|
@ -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)
|
||||
|
|
@ -549,8 +547,8 @@
|
|||
* [SSR Movies](https://ssrmovies.men/) - Movies / TV / Sub / Dub / 1080p / [Telegram](https://telegram.dog/+MF2EXeitLjMxY2Ux)
|
||||
* [MkvMoviesPoint](https://mkvmoviespoint.bond/) - Movies / TV / Sub / Dub / 1080p / [Telegram](https://telegram.me/mkvpoint1)
|
||||
* [MKV Mad](https://www.mkvmad.cool/) - Movies / TV / Sub / Dub / 1080p / [Telegram](https://t.me/mkvmadofficial)
|
||||
* [KatMovieHD](https://katmoviehd.boo/) - Movies / TV / Anime / Sub / Dub / 1080p
|
||||
* [PrivateMovieZ](https://privatemoviez.xyz/) - Movies / TV / 1080p
|
||||
* [KatMovieHD](https://katmoviehd.fi/) - Movies / TV / Anime / Sub / Dub / 1080p
|
||||
* [PrivateMovieZ](https://privatemoviez.mom/) - Movies / TV / 1080p
|
||||
* [MoviesFD](https://moviesfd.cloud/) - Movies / Sub / Dub / 1080p
|
||||
* [BollyFlix](https://bollyflix.cat/) - Movies / TV / Anime / Sub / Dub / 1080p
|
||||
* [Paidnaija](https://paidnaija.com/) - Movies / Sub / 720p / [Telegram](https://t.me/joinchat/E9cst-5oQDA5MzRk)
|
||||
|
|
@ -561,7 +559,6 @@
|
|||
* [FilmyMeet](https://filmy4web.mex.com/) - Movies / TV / Dub / 1080p / [Telegram](https://telegram.dog/+VV_6NFqFLTc1N2E1)
|
||||
* [MoviesNation](https://moviesnation.rip/) - Movies / TV / Sub / Dub / 1080p / [Telegram](https://t.me/+CQizt5B7q880ZDQ9/)
|
||||
* [DesireMovies](https://desiremovies.nexus/) - Movies / TV / Sub / Dub / 1080p
|
||||
* [Moviehunt](https://moviehunt.us) - Movies / TV / Sub / Dub / 1080p
|
||||
* [UncutHD](https://www.jadoocinema.com/) - Movies / TV / Sub / Dub / 1080p / [Telegram](https://t.me/+6Kx9qLtPyO80OGM1)
|
||||
* [9xflix](https://9xflix.wang/m/) - Movies / TV / NSFW / Sub / Dub / 720p / [Telegram](https://t.me/ninexflix)
|
||||
* [EdithSeedbox](https://t.me/EdithSeedBox) - Movies / TV / Sub / Dub / 720p / [Login](https://pastebin.com/bQkQpee4)
|
||||
|
|
@ -579,14 +576,14 @@
|
|||
|
||||
## ▷ Torrenting
|
||||
|
||||
* ⭐ **[TamilBlasters](https://1tamilblasters.skin/)** - Movies / [Proxy](https://tamilblasters.unblockit.ong/)
|
||||
* ⭐ **[TamilBlasters](https://1tamilblasters.skin/)** - Movies
|
||||
* ⭐ **[1tamilmv](https://www.1tamilmv.eu/)** - Movies
|
||||
|
||||
## ▷ Streaming
|
||||
|
||||
* ⭐ **[ToonStream](https://toonstream.co/)** - Cartoons / 1080p / [Telegram](https://telegram.me/toonstream)
|
||||
* ⭐ **[Animerulz](https://animerulz.net)** - Anime / Hindi / Telugu / Tamil / 1080p / [Telegram](https://telegram.me/animerulz_xyz)
|
||||
* ⭐ **[Braflix](https://www.braflix.ru/)** - Movies / TV / Anime / Dub / 4K / 1080p
|
||||
* ⭐ **[Braflix](https://www.braflix.gd/)** - Movies / TV / Anime / Dub / 4K / 1080p
|
||||
* ⭐ **[BanglaPlex](https://banglaplex.art/)** - Movies / Sub / Dub / 1080p
|
||||
* ⭐ **[AnPlay](https://anplay.in/)** - Anime / Dub / 1080p
|
||||
* [ToonBaba](https://toonbaba.site/) - Anime
|
||||
|
|
@ -629,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
|
||||
|
||||
***
|
||||
|
||||
|
|
@ -805,7 +800,6 @@
|
|||
|
||||
## ▷ Downloading
|
||||
|
||||
* [PDPop](https://www.pdpop.com/) - Video / Books / NSFW / Sub / 1080p
|
||||
* [CinEast](https://cineaste.co.kr/) - Movies / TV / Sub / 1080p
|
||||
* [J-pop Music Download](https://jpop.xyz/category/k-pop/) - Music / MP3 / FLAC
|
||||
* [4Sashi](https://4sashi.com/) - Music / MP3 / FLAC
|
||||
|
|
@ -982,7 +976,7 @@
|
|||
# ► Portuguese / Português
|
||||
|
||||
* 🌐 **[PiracyBG-PTBR](https://rentry.org/PiracyBG-PTBR)** - Beginners Guide to Piracy
|
||||
* 🌐 **[Pirataria](https://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
|
||||
|
|
@ -1023,7 +1017,7 @@
|
|||
|
||||
## ▷ Streaming
|
||||
|
||||
* ⭐ **[Braflix](https://www.braflix.ru/)** - Movies / TV / Anime / Dub / 4K / 1080p
|
||||
* ⭐ **[Braflix](https://www.braflix.gd/)** - Movies / TV / Anime / Dub / 4K / 1080p
|
||||
* ⭐ **[CriaFlix](https://criaflix.live/)** - Movies / TV / Anime / 1080p / [Discord](https://discord.com/invite/z72kQpKRUP)
|
||||
* ⭐ **[Gyn Cursos](https://gyncursos.com.br)**, **[Curso em Vídeo](https://www.cursoemvideo.com)**, **[iEstudar Cursos](https://iestudar.com)** or **[Pensar Cursos](https://www.pensarcursos.com.br)** - Courses
|
||||
* [WarezCDN](https://warezcdn.com) - API for Movies / TV / Anime
|
||||
|
|
@ -1056,7 +1050,9 @@
|
|||
* [Download de Livros Grátis](https://download-de-livros-gratis.webnode.page) - Courses
|
||||
* [Núcleo do Conhecimento](https://www.nucleodoconhecimento.com.br) - Courses
|
||||
* [Escola Virtual Gov](https://www.escolavirtual.gov.br/catalogo) - Courses
|
||||
* [eaulas](https://eaulas.usp.br/portal/home) - Courses
|
||||
* [Veduca](https://veduca.org) - Courses
|
||||
* [Moodle](https://moodle.ifrs.edu.br/course/index.php?categoryid=38) - MOOC Courses
|
||||
* [Marcos Aba](https://www.youtube.com/@MarcosAba/videos) - Math Courses
|
||||
* [Lesics](https://youtube.com/@LesicsPOR) - Engineering Courses
|
||||
* [DIO](https://www.dio.me) - Development Courses
|
||||
|
|
@ -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
|
||||
|
||||
***
|
||||
|
||||
|
|
@ -1173,7 +1171,8 @@
|
|||
# ► Russian / Русский
|
||||
|
||||
* ⭐ **[Russian Internet Blackout Bypass Guide](https://telegra.ph/CHto-delat-pri-otklyuchenii-interneta-02-27), [2](https://www.the-village.ru/situation/howto/otklyuchenie-interneta)**
|
||||
* ⭐ **[РосКомСвобода](https://t.me/roskomsvoboda_discuss)** / [roskomsvoboda](https://t.me/roskomsvoboda) / [rks_legal_talk](https://t.me/rks_legal_talk) / [rks_org_Bot](https://t.me/rks_org_bot) or [Ru.Board](https://forum.ru-board.com/) - Piracy Discussion Telegram
|
||||
* ⭐ **[РосКомСвобода](https://t.me/roskomsvoboda_discuss)** / [roskomsvoboda](https://t.me/roskomsvoboda) / [rks_org_Bot](https://t.me/rks_org_bot) - Censorship Discussion Telegram
|
||||
* [Ru.Board](https://forum.ru-board.com/) - Piracy Discussion Forum
|
||||
* [Hi!Load VPN](https://t.me/hlvpnbot) - Free Shadowsocks TG / 30GB per month / No Torrenting / [Support](https://t.me/highloadvpn)
|
||||
* [rublacklist](https://reestr.rublacklist.net/en/) - Blocked Sites List
|
||||
* [DXP](https://dxp.ru/) - Subtitles Tracker
|
||||
|
|
@ -1200,7 +1199,7 @@
|
|||
|
||||
## ▷ Downloading / Скачивание
|
||||
|
||||
* ⭐ **[4PDA](https://4pda.to/forum/)** - Android / iOS / [App](https://github.com/slartus/4pdaClient-plus)
|
||||
* ⭐ **[4PDA](https://4pda.to/forum/)** - Android / iOS / [App](https://github.com/slartus/4pdaClient-plus) / [Captcha Note](https://pastebin.com/NNh7e2HB), [2](https://doorsgeek.blogspot.com/2015/08/4pdaru-loginregister-captcha-tutorial.html)
|
||||
* [Androeed](https://androeed.store/), [2](https://androeed.ru/) - Android
|
||||
* [m0nkrus](https://w14.monkrus.ws/) or [DC Hublist](https://dchublist.ru/hubs/) - Software
|
||||
* [CWER](http://cwer.ru/), [2](http://cwer.ws/) - Video / Audio / Games / Books
|
||||
|
|
@ -1217,7 +1216,7 @@
|
|||
|
||||
* 🌐 **[toptracker](https://toptracker.ru/)** - Torrent Site List
|
||||
* 🌐 **[UpTracker](https://www.uptracker.ru/)** - Torrent Tracker Index
|
||||
* ⭐ **[RuTracker](https://rutracker.nl/)**, [2](https://rutracker.org/forum/index.php), [3](https://rutracker.net/) - Video / Audio / Software / Comics / Magazines / [Wiki](http://rutracker.wiki/) / [Rules](https://rutracker.org/forum/viewtopic.php?t=1045)
|
||||
* ⭐ **[RuTracker](https://rutracker.org/forum/index.php)**, [2](https://rutracker.nl/), [3](https://rutracker.net/) - Video / Audio / Software / Comics / Magazines / VPN Required / [Wiki](http://rutracker.wiki/) / [Rules](https://rutracker.org/forum/viewtopic.php?t=1045)
|
||||
* [krasfs](https://krasfs.ru/) or [torrent.by](https://torrent.by/) - Torrent Search
|
||||
* [rutor](https://rutor.info/) - Video / Audio / Books / ROMs / Magazines
|
||||
* [NNTT](http://www.nntt.org/) - Video / Audio / Books / Magazines
|
||||
|
|
@ -1445,7 +1444,7 @@
|
|||
|
||||
## ▷ Streaming / Streamear
|
||||
|
||||
* ⭐ **[Braflix](https://www.braflix.ru/)** - Movies / TV / Anime / Dub / 4K / 1080p
|
||||
* ⭐ **[Braflix](https://www.braflix.gd/)** - Movies / TV / Anime / Dub / 4K / 1080p
|
||||
* ⭐ **[HDFull](https://dominioshdfull.com/)** - Movies / TV / Anime / 1080p / [Discord](https://discord.gg/BRKCXEe) / Castilian / Latino
|
||||
* ⭐ **[Cuevana](https://cuevana.si/)** - Movies / TV / Anime / 1080p / Latino
|
||||
* ⭐ **[LaQuay TDT Channels](https://www.tdtchannels.com/)** - Live TV / Live Radio / IPTV / Castilian / [GitHub](https://github.com/LaQuay/TDTChannels)
|
||||
|
|
@ -1459,7 +1458,7 @@
|
|||
* [PelisxD](https://www.pelisxd.com/) - Movies / TV / Latino
|
||||
* [PelisPedia](https://pelispedia.mov/) - Movies / TV / Latino
|
||||
* [PelisPedia3](https://io.pelispedia.io/) - Movies / TV / Anime / Latino
|
||||
* [Cinecalidad.gg](https://vwv.cinecalidad.gg/) - Movies / TV / Animation / Latino / [Telegram](https://t.me/cinecalidadchat)
|
||||
* [Cinecalidad.gg](https://vwv.cinecalidad.gg/) - Movies / TV / Animation / Latino
|
||||
* [Cinecalidad.tel](https://w1.cinecalidad.tel/) - Movies / Latino
|
||||
* [Cuevana2](https://www.cuevana2espanol.net/) - Movies / TV / Latino
|
||||
* [Cuevana3.biz](https://cuevana.biz/) - Movies / TV / Latino
|
||||
|
|
@ -1468,6 +1467,7 @@
|
|||
* [Fanpelis](https://fanpelis.la/) - Movies / TV / Anime / Latino
|
||||
* [Cuevana8](https://ww3.cuevana8.com/) - Movies / TV
|
||||
* [PelisPedia.is](https://pelispedia.is/) - Movies / TV
|
||||
* [TuCineClasico](https://online.tucineclasico.es/) - Movies
|
||||
* [Gnula.se](https://gnula.se/) - TV / Anime
|
||||
* [Gnula.nu](https://gnula.nu/) - Movies
|
||||
* [Movidy.cam](https://movidy.cam/) - Movies / TV / Anime
|
||||
|
|
@ -1583,7 +1583,7 @@
|
|||
# ► Turkish / Türkçe
|
||||
|
||||
* ⭐ **[caglaryalcin's list](https://github.com/caglaryalcin/ublacklist/)** - Get rid of low-quality Turkish results
|
||||
* ⭐ [akakçe](https://www.akakce.com/) - Find the cheapest price of everything
|
||||
* [Türkçe Mahremiyet Rehberi](https://github.com/1Xnes/turkish-privacy-guide) - Turkish Privacy Guide
|
||||
|
||||
## ▷ Downloading / İndirme
|
||||
|
||||
|
|
@ -1593,11 +1593,11 @@
|
|||
|
||||
## ▷ Streaming / İzleme
|
||||
|
||||
* ⭐ **[Dizipal](https://dizipal811.com/), [2](https://dizipal787.com/)** - Movies / TV / Sub / Dub / 1080p
|
||||
* ⭐ **[Dizipal](https://dizipal812.com/), [2](https://dizipal787.com/)** - Movies / TV / Sub / Dub / 1080p
|
||||
* ⭐ **[Yabancıdizi](https://yabancidizi.tv), [2](https://yabancidizi.pro)** - Movies / TV / Sub / Dub / 1080p
|
||||
* ⭐ **[Hdfilmcehennemi](https://www.hdfilmcehennemi.sh/)**, [2](https://www.hdfilmcehennemi.com/) - Movies / TV / Sub / Dub / 1080p
|
||||
* ⭐ **[FullHDFilmizlesene](https://www.fullhdfilmizlesene.de/)**, [2](https://www.fullhdfilmizlesene.com) - Movies / Dub / Sub / 4K / 1080p
|
||||
* [İnat TV](https://inattv139.link/) / [Twitter](https://twitter.com/inattvapk) / [Telegram](https://t.me/s/inattvlinks) - App / Movies / TV / Sports
|
||||
* [İnat TV](https://inattv146.link/) / [Twitter](https://twitter.com/inattvapk) / [Telegram](https://t.me/s/inattvlinks) - App / Movies / TV / Sports
|
||||
* [Dizibox](https://www.dizibox.com) - TV / Sub / 1080p
|
||||
* [Diziwatch](https://diziwatch.net/) - TV / Anime / Sub / 1080p
|
||||
* [Diziyou](https://www.diziyou.co/) - TV / Sub / Dub / 1080p
|
||||
|
|
@ -1610,7 +1610,6 @@
|
|||
## ▷ Reading / Okuma
|
||||
|
||||
* 🌐 **[Turkish PDF Channels](https://new2.telemetr.io/en/catalog/turkey/books?page=1&sort=participants_growth_7_days)** - Most popular Turkish PDF channels in Telegram
|
||||
* ⭐ **[Booksfer](https://booksfer.net)** - Books / Account Required
|
||||
* [Telegram Groups](https://t.me/addlist/XeOr3go8Q2MwZTNk), [Kütüphanem Yeniden](https://t.me/davetbotu5_bot) or [Kitap Botu](https://t.me/Arakitappbot) / [2](https://t.me/KKCI_BOT) - Books
|
||||
* [Küflü e-kitap](https://www.kuflu.com/forums/e-kitap.58) or [Küflü manga](https://www.kuflu.com/forums/anime-ve-manga.28) - Books / Magazines
|
||||
* [Udemy Bot](https://t.me/birikursbotumudedibot) - Udemy
|
||||
|
|
@ -1658,17 +1657,14 @@
|
|||
* ⭐ **[Voz.vn](https://voz.vn/)**, **[TECHRUM.VN](https://www.techrum.vn/)** or **[WhiteHat.vn](https://whitehat.vn/)** - Tech Forum
|
||||
* ⭐ **[J2team](https://www.facebook.com/groups/j2team.community)** - Tech Community
|
||||
* ⭐ **[Unikey](https://www.unikey.org/en/)**, [Vietkey](https://vietkey.com.vn/) or [EVkey](https://evkeyvn.com/) - Vietnamese Typing Software
|
||||
* ⭐ **[Baomoi](https://baomoi.com/)** - News Aggregator / [Mobile](https://play.google.com/store/apps/details?id=com.epi&hl=en_US)
|
||||
* [Quantrimang](https://quantrimang.com/), [Anonyviet](https://anonyviet.com/) - Tech News
|
||||
* [VozForums](https://vozforum.org/) - Tech Forum
|
||||
* [Phudeviet](http://phudeviet.org/) - Subtitles
|
||||
* [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
|
||||
* [Baomoi](https://baomoi.com/) - News Aggregator / [Mobile](https://play.google.com/store/apps/details?id=com.epi&hl=en_US)
|
||||
* [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
|
||||
|
|
@ -1700,7 +1696,6 @@
|
|||
* [HDVietnam](https://www.hdvietnam.xyz/) - Video / Audio
|
||||
* [TinMp3](https://tinmp3.com/) - Music
|
||||
* [NhacHay360](https://nhachayvn.net/) - Music
|
||||
* [123doc](https://123docz.net/trang-chu.htm) - Doccumentary
|
||||
|
||||
## ▷ Torrenting / Tải tệp bằng torrent
|
||||
|
||||
|
|
@ -1710,6 +1705,8 @@
|
|||
|
||||
## ▷ Streaming / Phát trực tuyến
|
||||
|
||||
* ⭐ **[VTVGo](https://vtvgo.vn/)** - Live TV
|
||||
* ⭐ **[ZingMP3](https://zingmp3.vn/)** - Music
|
||||
* [LuotPhim](https://luotphimtv1.com/) - Movies / TV / Anime / Sub / Dub / 1080p
|
||||
* [BiluTV](https://bilutvw.com/) - Movies / TV / Anime / Sub / Dub
|
||||
* [JenkaStudioVN](https://www.jenkastudiovn.net/) - Movies / Anime / Sub / Dub / 1080p
|
||||
|
|
@ -1736,7 +1733,6 @@
|
|||
* [Tokuvn](https://tokuvn.com/) - Tokusatsu / Sub
|
||||
* [Mocha](https://video.mocha.com.vn/) - Video / 1080p
|
||||
* [MyClip](https://myclip.vn/) - Video / 1080p
|
||||
* [VTVGo](https://vtvgo.vn/) - Live TV
|
||||
* [TV360](https://tv360.vn/) - Live TV / Sub / 1080p
|
||||
* [TVHayHD](http://xemtv.tvhayhd.tv/) - Live TV / 720p
|
||||
* [Xtv](https://xemtiviviet.net/) - Live TV / 1080p
|
||||
|
|
@ -1746,7 +1742,6 @@
|
|||
* [HPlus](https://hplus.com.vn/), [2](https://htvc.com.vn/) - Live TV / TV Show / 1080p
|
||||
* [THVL](https://www.thvli.vn/) - Live TV / TV Show / Movies / Dub
|
||||
* [VTC](https://portal.vtc.gov.vn/live) - Live TV / Dub / 1080p
|
||||
* [ZingMP3](https://zingmp3.vn/) - Music
|
||||
* [NhacCuaTui](https://www.nhaccuatui.com/) - Music
|
||||
* [Muvi](https://muvi.vn/) - Music
|
||||
* [Nhacvn](https://nhac.vn/) - Music
|
||||
|
|
@ -1760,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
|
||||
|
|
@ -1773,6 +1769,7 @@
|
|||
* [DocSach24](https://docsach24.co/) - Books
|
||||
* [SachHay](https://www.sachhayonline.com/) - Books
|
||||
* [TruyenPlus](https://Truyenplus.vn) - Books / Novel
|
||||
* [Violet](https://violet.vn) - Educational Books / Documents
|
||||
* [DocTaiLieu](https://doctailieu.com/) - Educational Books / Documents
|
||||
* [Fecomic](https://fecomic.cc/) - Manga / Manhwa / Manhua
|
||||
* [Truyencc](https://truyencc.com/) - Manga / Manhwa / Manhua
|
||||
|
|
|
|||
|
|
@ -15,7 +15,6 @@
|
|||
* [IndianPornList](https://indianpornlist.com/)
|
||||
* [Tommy's Bookmarks](https://www.tommys-bookmarks.com/)
|
||||
* [ThePornMap](https://thepornmap.com/)
|
||||
* [DirtyWarez Adult](https://dirtywarez.org/cat/adult) - Alexa Adult Site Rankings
|
||||
|
||||
***
|
||||
|
||||
|
|
@ -43,6 +42,7 @@
|
|||
* [PornXP](https://pornxp.org/)
|
||||
* [Youporn](https://www.youporn.com/)
|
||||
* [SomePorn](https://some.porn/)
|
||||
* [ThePornHub](https://thepornhub.org/)
|
||||
* [wapbold](https://wapbold.net/)
|
||||
* [Youjizz](https://www.youjizz.com/)
|
||||
* [Jizzbunker](https://www.jizzbunker.com/)
|
||||
|
|
@ -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/)
|
||||
|
|
@ -414,43 +414,23 @@
|
|||
* [XlecX](https://xlecx.one/) - Hentai Manga / Comics
|
||||
* [HentaiRox](https://hentairox.com/) - Hentai Manga
|
||||
* [EAHentai](https://eahentai.com/) - Hentai Manga
|
||||
* [M-Hentai](https://m-hentai.net/) - Hentai Manga
|
||||
* [177pica](http://www.177pica.com/) - Hentai Raws
|
||||
* [Hentaifromhell](https://hentaifromhell.org/) - Hentai Manga / Comics
|
||||
* [EggPornComics](https://eggporncomics.com/) - Hentai / Comics
|
||||
* [ILikeComix](https://ilikecomix.com/) - Comics
|
||||
* [AllPornComic](https://allporncomic.com/) - Comics
|
||||
* [MyHentaiGallery](https://myhentaigallery.com/) - Comics
|
||||
* [MyHentaiGallery](https://myhentaigallery.com/) - Comics / [Discord](https://discord.com/invite/h2cmkc64k8)
|
||||
* [FreeAdultComix](https://freeadultcomix.com/) - Comics
|
||||
* [Shentai](https://shentai.org/) - Comics
|
||||
* [ComixZilla](https://comixzilla.com/) - Comics
|
||||
* [My Hentai Comics](https://myhentaicomics.com/) - Comics
|
||||
* [Mult34](https://mult34.com/) - Comics
|
||||
* [ComicsValley](https://comicsvalley.com/) - Comics
|
||||
* [LaComics](https://lacomics.net/) - Comics
|
||||
* [PornComixOne](https://porncomixone.net/) - Comics
|
||||
* [AllPornComix.net](https://allporncomix.net/) - Comics
|
||||
* [Erofus](https://www.erofus.com/) - Comics / [Discord](https://discord.com/invite/ZKCV4CmhaD)
|
||||
* [SVSComics](https://svscomics.com/) - Comics
|
||||
* [BestPornComix](https://bestporncomix.com/) - Comics
|
||||
* [NXTComics](https://nxt-comics.net/) - Comics
|
||||
* [GoldenComics](https://goldencomics.art/) - Comics
|
||||
* [Porn Comics](https://porncomics.to/) - Comics
|
||||
* [BondageComixxx](https://bondagecomixxx.net/) - Comics
|
||||
* [Xcomics](https://xcomics.se/) - Comics
|
||||
* [XYZ Porn Comics](https://xyzcomics.com/) - Comics
|
||||
* [Manhwa18.cc](https://manhwa18.cc/) - Hentai Manga
|
||||
* [Mangadass](https://mangadass.com/) - Hentai Manga
|
||||
* [Hentaidexy](https://hentaidexy.net/) - Hentai Manga
|
||||
* [Hentaiwebtoon](https://hentaiwebtoon.com/) - Hentai Manga
|
||||
* [OmegaScans](https://omegascans.org/) - Hentai Manga / [Discord](https://discord.com/invite/BrkUm8jeng)
|
||||
* [MadaraDex](https://madaradex.org/) - Hentai Manga / [Discord](https://discord.com/invite/mubnYvjFEY)
|
||||
* [OmegaScans](https://omegascans.org/) - Pornwha / [Discord](https://discord.com/invite/BrkUm8jeng)
|
||||
* [Mikocon](https://www.mikocon.com/forum.php?mod=forumdisplay&fid=46) - Hentai Manga
|
||||
* [shikotch](https://shikotch.net/) - Hentai Manga
|
||||
* [Hentai IMG](https://hentai-img.com/) - Hentai Manga
|
||||
* [Anime-Sharing Hentai](https://www.anime-sharing.com/forum/hentai-ovas-36/) - Hentai Manga
|
||||
* [SavitaHD](https://savitahd.net/) - Indian Sex Comics
|
||||
* [Doujinantena](https://doujinantena.top/) - Japanese Hentai Manga
|
||||
* [ComicBox](https://www.comicbox.xyz/) - Chinese Pornhwa
|
||||
* [TMOHentai](https://tmohentai.com/) - Spanish Hentai Manga
|
||||
* [Manhwas](https://www.manhwas.net/) - Spanish Pornhwa
|
||||
|
|
@ -470,8 +450,8 @@
|
|||
* ⭐ **[F95Zone](https://f95zone.to/)**
|
||||
* ⭐ **[Nyaa Sukebei](https://sukebei.nyaa.si/)**
|
||||
* ⭐ **[Anime-Sharing](https://www.anime-sharing.com/#downloads-requests)** - Hentai Games DDL
|
||||
* [Ryuugames](https://ryuugames.com/)
|
||||
* [VNPocket](https://vnpocket.com)
|
||||
* [Ryuugames](https://ryuugames.com/)
|
||||
* [CPG Repacks](https://cpgrepacks.site) - [Discord](https://discord.gg/dtBSZ9N)
|
||||
* [PornDude Games](https://theporndude.com/best-porn-games), [2](https://theporndude.com/free-sex-games)
|
||||
* [The Asenheim Project](https://www.asenheim.org) / [Play Online](https://tss.asenheim.org/)
|
||||
|
|
@ -515,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/)
|
||||
|
|
|
|||
18
docs/posts/Internet-Archive.md
Normal file
18
docs/posts/Internet-Archive.md
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
---
|
||||
title: Internet Archive Breach
|
||||
description: Internet Archive was hacked
|
||||
date: 2024-10-09
|
||||
next: false
|
||||
aside: left
|
||||
prev: false
|
||||
|
||||
footer: true
|
||||
---
|
||||
|
||||
<Post authors="nbats" />
|
||||
|
||||
#### Internet Archive was hacked today, all 31 million accounts have had their details leaked. If you have an account its *highly* recommended to change your password on the site, as well as anywhere else you are using the same login details.
|
||||
|
||||
* https://www.bleepingcomputer.com/news/security/internet-archive-hacked-data-breach-impacts-31-million-users/
|
||||
|
||||
* https://haveibeenpwned.com/
|
||||
|
|
@ -1,51 +0,0 @@
|
|||
---
|
||||
title: Minecraft Server
|
||||
description: Minecraft Server
|
||||
date: 2024-02-11
|
||||
next: false
|
||||
aside: left
|
||||
prev: false
|
||||
|
||||
footer: true
|
||||
---
|
||||
|
||||
<Post authors="nbats" />
|
||||
|
||||
# Join at: `fmhy.net`
|
||||
|
||||
- You will be spawned at the [hub](https://cornhub.website/).
|
||||
- To go to vanilla, head to the end portal.
|
||||
- To go to modded, head to the nether portal.
|
||||
- Modded requires Minecraft 1.20.1 Forge.
|
||||
- Vanilla requires Minecraft 1.20.4.
|
||||
|
||||
---
|
||||
|
||||
### Mod Downloads
|
||||
|
||||
**Attached is the mod pack for modded**:
|
||||
[RAR](https://buzzheavier.com/f/GIr%2FvkDOsAA=) +
|
||||
[Guide](https://rentry.org/fmhy-modded) or you could use the .mrpack files and
|
||||
add it to Prism or other compatible launchers:
|
||||
|
||||
[FMHY_Modpack-2.mrpack](https://cdn.discordapp.com/attachments/1207087196327120896/1218042133382959184/FMHY_Modpack-2.mrpack?ex=66063922&is=65f3c422&hm=a3fecfe897d81368f91f6860f96e5359706c292269bafd82429d72b5323bf1a1)
|
||||
|
||||
[FMHY_Server_Pack_ClientPP.mrpack](https://cdn.discordapp.com/attachments/1207087196327120896/1218063597326827571/FMHY_Server_Pack_ClientPP.mrpack?ex=66064d20&is=65f3d820&hm=a2476bc723343c912bd4ab9e549bcfa0338c68ff0b670c266d4b1dbaabd3d032)
|
||||
|
||||
[Optional Modpack with QOL mods added](https://buzzheavier.com/f/GIr+b3jOsAA=)
|
||||
|
||||
---
|
||||
|
||||
### Things to Know
|
||||
|
||||
- If it times out when joining then just try rejoining again.
|
||||
- If you get stuck in the lobby, use the command `/server modded`
|
||||
or`/server survival` to join.
|
||||
- If you can't break blocks or it's glitching, you are probably too close to the
|
||||
spawn and need to go farther.
|
||||
- (Modded) To set a skin, use the `/skin` command.
|
||||
- To hide yourself from being shown in Dynmap, run this command `/dynmap hide`.
|
||||
- For modded 6GB+ RAM is required, but 12GB+ is recommended.
|
||||
- Simple Voice Chat mod is supported on Modded and (optional) Vanilla servers.
|
||||
|
||||
Have fun! ♥
|
||||
77
docs/posts/oct-2024.md
Normal file
77
docs/posts/oct-2024.md
Normal file
|
|
@ -0,0 +1,77 @@
|
|||
---
|
||||
title: Monthly Updates [Oct 2024]
|
||||
description: October 2024 updates
|
||||
date: 2024-10-01
|
||||
next: false
|
||||
aside: left
|
||||
prev: false
|
||||
|
||||
footer: true
|
||||
---
|
||||
|
||||
<Post authors="nbats"/>
|
||||
|
||||
:::info
|
||||
These update threads only contains major updates. If you're interested
|
||||
in seeing all minor changes you can follow our
|
||||
[Commits Page](https://github.com/fmhy/FMHYedit/commits/main) on GitHub or
|
||||
[Updates Channel](https://redd.it/17f8msf) in Discord.
|
||||
:::
|
||||
|
||||
# Wiki Updates
|
||||
|
||||
- Did a complete overhaul of the **[Beginners Guide](https://fmhy.net/beginners-guide)**. Removed outdated links, added new sites, and rewrote all the tips.
|
||||
|
||||
- Reorganized the [Anime Streaming](https://fmhy.net/videopiracyguide#anime-streaming) section based on **[tournament results](https://challonge.com/Anime_Streaming.svg)**.
|
||||
|
||||
- Reorganized both [Multi / Single Hosts](https://ibb.co/X7SC3f8) in the [Streaming section](https://fmhy.net/videopiracyguide) as people felt they were somewhat outdated.
|
||||
|
||||
- Added section for [Steam Deck](https://fmhy.net/gaming-tools#steam-deck) in Gaming Tools.
|
||||
|
||||
---
|
||||
|
||||
# Stars Added ⭐
|
||||
|
||||
- Starred [datadiff](https://fmhy.net/videopiracyguide#drives-directories) in Drives / Directories. Media directory with fast download speed, similar to vadapav / moo.
|
||||
|
||||
- Starred [Proton Pass](https://fmhy.net/internet-tools#password-managers) in Password Managers. Feature-rich manager comparable with things like Bitwarden.
|
||||
|
||||
- Starred [Miruro](https://fmhy.net/videopiracyguide#anime-streaming) in Anime Streaming. This was the winner of our anime streaming polls.
|
||||
|
||||
- Starred [RockMods](https://fmhy.net/android-iosguide#modded-apks) in Modded APKs. RockMods label all their releases correctly, and are usually one of the main sources of other groups.
|
||||
|
||||
- Starred [Openstax](https://fmhy.net/readingpiracyguide#educational-books) in Educational Books. Well-organized educational textbook site.
|
||||
|
||||
- Starred [Yet Another Call Blocker](https://fmhy.net/android-iosguide#number-sms) in Number / SMS. Hasn't been updated in awhile, but it doesn't need to be as its connected to a crowdsourced number [database](https://www.shouldianswer.com/).
|
||||
|
||||
- Starred [UrlCheck](https://fmhy.net/android-iosguide#android-privacy) in Android Privacy. Customizable open-source URL cleaner for android.
|
||||
|
||||
- Starred [Rev Wallpaper](https://fmhy.net/system-tools#wallpapers) in Wallpapers. Reverse wallpaper search engine.
|
||||
|
||||
- Starred [Edge-Remover](https://fmhy.net/internet-tools#browser-tools) in Browser Tools. Easy way to uninstall microsoft edge.
|
||||
|
||||
- Starred [Akuse](https://fmhy.net/videopiracyguide#anime-streaming) in Anime Streaming. Open-source anime app with nice UI.
|
||||
|
||||
- Starred [Movies Countdown](https://fmhy.net/videopiracyguide#calendar-upcoming) in Calendar / Upcoming. Tracks upcoming movie releases, both digital and theater.
|
||||
|
||||
- Starred [Simple Tab Groups](https://fmhy.net/storage#tab-managers) in Tab Managers. Feature-rich tab manager with plugin support.
|
||||
|
||||
---
|
||||
|
||||
# Things Removed
|
||||
|
||||
- Removed Essential from minecraft mods as they have a history of malicious practices and there are better options anyways.
|
||||
|
||||
- Removed Slider as they've been [shut down](https://ibb.co/NnY4M8b).
|
||||
|
||||
- Removed AnimeOut as they've closed signups.
|
||||
|
||||
- Unstarred LookMovie as they've locked 720p [behind a paywall](https://ibb.co/9W50NTg).
|
||||
|
||||
- Unstarred Modyolo and LiteAPKs as both mislabel releases from other groups as their own, and tag apps as newer versions than actually exist in order to get more downloads.
|
||||
|
||||
- Unstarred Gemini as many people consider it less useful than other AI.
|
||||
|
||||
* Unstarred Duolingo as there are better ways to learn languages.
|
||||
|
||||
* Unstarred Tixati as its closed source and there better options like qbit, transmission, deluge.
|
||||
File diff suppressed because one or more lines are too long
|
Before Width: | Height: | Size: 86 KiB After Width: | Height: | Size: 46 KiB |
|
|
@ -18,7 +18,7 @@
|
|||
|
||||
* ⭐ **[MyAnonaMouse](https://www.myanonamouse.net/)** - [Interviews](https://www.myanonamouse.net/inviteapp.php)
|
||||
* ⭐ **[Mobilism Audiobooks](https://forum.mobilism.org/viewforum.php?f=124)**, [2](https://forum.mobilism.me/viewforum.php?f=124) / [User Ranks](https://rentry.co/mobilismranks), [2](https://pastebin.com/pZuuMxYm)
|
||||
* ⭐ **[AudiobookBay](https://audiobookbay.lu/)** - Torrents / **[Warning](https://rentry.org/rriia9b4)** / [Discord](https://discord.com/invite/2zkHuwP3mW)
|
||||
* ⭐ **[AudiobookBay](https://audiobookbay.lu/)** - Torrents / **[Warning](https://rentry.org/rriia9b4)** / [Discord](https://discord.com/invite/r2jypVyj)
|
||||
* ⭐ **[Audiobook CSE](https://cse.google.com/cse?cx=006516753008110874046:cwbbza56vhd)** or **[Rave Search](https://ravebooksearch.com/index-audiobooks)** - Multi-Site Audiobook Search
|
||||
* [AudioBooksBee](https://audiobooksbee.com/)
|
||||
* [Audiobookss](https://audiobookss.com/)
|
||||
|
|
@ -63,10 +63,9 @@
|
|||
|
||||
# ► Ebooks
|
||||
|
||||
* ↪️ **[Telegram Ebook Channels](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_telegram_ebook_download)**
|
||||
* ⭐ **[Anna's Archive](https://annas-archive.org/)**, [2](https://annas-archive.se/), [3](https://annas-archive.li/), [4](https://annas-archive.gs/) - Books / Comics / Educational / [Expand Downloads](https://greasyfork.org/en/scripts/494262)
|
||||
* ⭐ **[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://z-library.rs/)**, [2](https://singlelogin.rs/), [3](https://singlelogin.re/) - Books / Comics / Educational / [Desktop / Extensions](https://zlibrary-qq.re/), [2](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)
|
||||
|
|
@ -76,6 +75,7 @@
|
|||
* ⭐ **[MyAnonaMouse](https://www.myanonamouse.net/)** - [Interviews](https://www.myanonamouse.net/inviteapp.php)
|
||||
* ⭐ **[FreeBannedBooks](https://freebannedbooks.org/)** - Books Banned in Schools by Politicians
|
||||
* ⭐ **[Reading CSE](https://cse.google.com/cse?cx=006516753008110874046:s9ddesylrm8)** / [2](https://cse.google.com/cse?cx=006516753008110874046:rc855wetniu) / [3](https://cse.google.com/cse?cx=e9657e69c76480cb8) / [4](https://cse.google.com/cse?cx=c46414ccb6a943e39), [Rave](https://ravebooksearch.com/) or [Recherche](https://recherche-ebook.fr/en/) - Multi-Site Book Search
|
||||
* [Open Slum](https://open-slum.org/) - Ebook Site Uptime Tracker
|
||||
* [Calibre](https://calibre-ebook.com/) - Ebook Manager / Downloader / [Libraries / Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/reading#wiki_.25B7_calibre_libraries)
|
||||
* [Book Search Guide](https://docs.google.com/document/d/1ZwWs8JOrlkrrqiHwkQSwc4_NM85Zbzc9t9ifQ1rHZgM/mobilebasic) - Guide to Finding Articles / Books
|
||||
* irc://irc.undernet.org/bookz
|
||||
|
|
@ -91,7 +91,6 @@
|
|||
* [Only Books](https://onlybooks.org/) - Books
|
||||
* [BooksToLearn](https://www.booktolearn.com) - Books
|
||||
* [Read Novels](https://en.novelonlineread.com/) - Books
|
||||
* [EBooksCart](https://ebookscart.com/) - Books
|
||||
* [TPB Books](https://thepiratebay.org/search.php?q=top100:601) - Books / Torrents / **Avoid Software / Games**
|
||||
* [Novel12](https://novel12.com/) - Books
|
||||
* [IsIDore](https://rentry.co/FMHYBase64#isidore) - Books
|
||||
|
|
@ -111,9 +110,12 @@
|
|||
* [BookFrom.net](https://www.bookfrom.net/) - Books
|
||||
* [FreeEditorial](https://www.freeditorial.com/) - Books
|
||||
* [Zoboko](https://zoboko.com/) - Books
|
||||
* [NovelsArchive](https://t.me/NovelsArchive) - Books / Telegram
|
||||
* [BooksMania](https://t.me/booksmania) - Books / Telegram
|
||||
* [FreeReadFeed](https://www.freereadfeed.com/) - Free Kindle Books
|
||||
* [Flibusta](https://flibusta.is/) - Books / [.i2p](https://flibusta.i2p/), [2](http://zmw2cyw2vj7f6obx3msmdvdepdhnw2ctc4okza2zjxlukkdfckhq.b32.i2p/) / Account Required
|
||||
* [ExClassics](https://www.exclassics.com/) - Obscure Books
|
||||
* [Hoopla](https://www.hoopladigital.com/) - Books / Library Card Required
|
||||
* [The Free Book Library](https://ebooks.i2p/) - Books / I2P Required
|
||||
* [Find Books](https://www.findbooks.info/) - Books / IPFS Required
|
||||
* [Antilibrary](http://127.0.0.1:43110/Antilibrary.bit/) - ZeroNet Required
|
||||
|
|
@ -128,7 +130,7 @@
|
|||
* [openlibrary](https://openlibrary.org/)
|
||||
* [Page by Page Books](https://www.pagebypagebooks.com/)
|
||||
* [Standard EBooks](https://standardebooks.org/)
|
||||
* [Manybooks](https://manybooks.net/) - Books
|
||||
* [Manybooks](https://manybooks.net/)
|
||||
* [Luminarium](https://www.luminarium.org/)
|
||||
* [JustFreeBooks](https://www.justfreebooks.info/)
|
||||
* [Classic Literature](https://classic-literature.co.uk/)
|
||||
|
|
@ -207,7 +209,7 @@
|
|||
|
||||
## ▷ Esoteric / Cultural
|
||||
|
||||
* 🌐 **[WiLd's Occult Ebook Sources](https://rentry.co/FMHYBase64#wilds-occult-ebook-sources)** - Occult / Esoterica
|
||||
* 🌐 **[WiLd's Occult Ebooks](https://rentry.co/FMHYBase64#wilds-occult-ebook-sources)** - Occult / Esoterica
|
||||
* 🌐 **[Soren Megathread](https://odysee.com/@Soren:71/%F0%9F%94%B0Megathread_with_Resources%F0%9F%94%B0:1)** - Occult / Esoterica
|
||||
* ↪️ **[Esoterica Telegram Channels](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_magic_.2F_esoteric_telegram_ebooks)**
|
||||
* ⭐ **[Sacred Text Archive](https://sacred-texts.com/)** - Religion / Mythology / Folklore / Esoterica / [Classic View](https://archive.sacred-texts.com/)
|
||||
|
|
@ -232,7 +234,6 @@
|
|||
* [Esoterica Drive](https://rentry.co/FMHYBase64#archive) - Esoterica
|
||||
* [Masonic Library](https://masonicshop.com/masonic-library/) - Esoterica / Freemasonry
|
||||
* [Azrk's library](https://rentry.co/FMHYBase64#azrks-library) - Occult / Esoterica / Satanism / Religion
|
||||
* [The Law of One](https://www.lawofone.info/) - The Law of One Sessions
|
||||
* [Rosicrucian Esotericism Lecture](https://rsarchive.org/) - Rosicrucian Esotericism
|
||||
* [Spirituality Megadrive](https://rentry.co/FMHYBase64#spirituality-megadrive)
|
||||
* [IAPSOP](http://iapsop.com/) - Spiritualist / Occult Periodicals
|
||||
|
|
@ -259,17 +260,14 @@
|
|||
* [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
|
||||
* [BibleTheLife](https://gitlab.com/hotlittlewhitedog/BibleTheLife) - Christian Bible / Android
|
||||
* [Bible](https://apps.apple.com/us/app/bible/id282935706) - Christian Bible / iOS
|
||||
* [Classics Ethereal Library](https://www.ccel.org/) - Christianity
|
||||
* [Hidden Bible](http://www.hiddenbible.com/enoch/online.html) - Enoch Translation
|
||||
* [GodAlone](http://www.godalone.org/) or [Quran](https://quran.com/) / [2](https://beta.quran.com/en) - Quran Translations / [Mobile](https://github.com/quran/quran_android), [2](https://alfaazplus.com/)
|
||||
* [GodAlone](http://www.godalone.org/) or [Quran](https://quran.com/) / [2](https://beta.quran.com/en) - Quran Translations / [Mobile](https://github.com/quran/quran_android)
|
||||
* [Awesome Islam](https://github.com/AhmedKamal/awesome-Islam) - Islam Related Projects / Apps
|
||||
* [OpenMaktaba](https://openmaktaba.com/) - Islamic Books
|
||||
* [TheIslam360](https://theislam360.com/) - Islamic Research App
|
||||
* [English Torah](https://englishtorah.com/) - Torah Translation
|
||||
* [Halakhah](https://www.halakhah.com/) - Talmud Translation
|
||||
* [Targum](http://targum.info/targumic-texts/) - Targum Translation
|
||||
* [Muslim Scholars](https://muslimscholars.info/) - Muslim Scholar Database
|
||||
|
|
@ -282,7 +280,7 @@
|
|||
## ▷ Special Interest
|
||||
|
||||
* ↪️ **[Survival / Prepping](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_survival)**
|
||||
* ↪️ **[Quote Collections](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_quotes)**
|
||||
* ↪️ **[Quote Collections](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/edu#wiki_.25B7_quote_indexes)**
|
||||
* ↪️ **[UFO Books](https://rentry.co/FMHYBase64#ufo-books)**
|
||||
* ⭐ **[Poetry Foundation](https://www.poetryfoundation.org/)**, [Poetry In Translation](https://www.poetryintranslation.com/), [PoemHunter](https://www.poemhunter.com/), [CAPA](https://capa.conncoll.edu/), [DiscoverPoetry](https://discoverpoetry.com/), [RUVerses](https://ruverses.com/), [PoetryNook](https://poetrynook.com/) or [Poetry.com](https://www.poetry.com/) - Poetry
|
||||
* ⭐ **[The Anarchist Library](https://theanarchistlibrary.org/special/index)** - Anarchism
|
||||
|
|
@ -299,7 +297,7 @@
|
|||
* [QSL](https://rentry.co/FMHYBase64#qsl) - Ham Radio & Antenna Books
|
||||
* [Film Books](https://rentry.co/FMHYBase64#film-books) - Film Books
|
||||
* [The Trove](https://web.archive.org/web/20210614215400/https://thetrove.is/) - Books / Fantasy / TTRPG
|
||||
* [DriveThruRPG](https://www.drivethrurpg.com/browse.php?pfrom=&pto=0&x=0&y=0) or [TTRPG Torrent](https://rentry.co/FMHYBase64#ttrpg-books) - TTRPG Books
|
||||
* [TTRPG Torrent](https://rentry.co/FMHYBase64#ttrpg-books) - TTRPG Books
|
||||
* [Project Aon](https://www.projectaon.org/en/Main/Home) - Lone Wolf Gamebooks
|
||||
* [Trans Reads](https://transreads.org/) - Transgender-focused Literature
|
||||
* [Anarcho-Copy](https://anarcho-copy.org/) - Anarchism
|
||||
|
|
@ -350,7 +348,6 @@
|
|||
* [Webcomix](https://github.com/J-CPelletier/webcomix) - Webcomics Downloader
|
||||
* [ComicReader](https://comicreader.netlify.app/) or [KThoom](https://github.com/codedread/kthoom) - Online Reader
|
||||
* [Komga](https://komga.org/) - Comic / Manga Media Server / [Discord](https://discord.gg/TdRpkDu) / [GitHub](https://github.com/gotson/komga)
|
||||
* [Webtoons Downloader](https://www.mediafire.com/file/7243pcp72ttzisk/Webtoons_Downloader_by_RieqyNS13.zip/file) - Webtoons Downloader
|
||||
* [ComicTagger](https://github.com/comictagger/comictagger) - Comic Metadata Tagger
|
||||
|
||||
***
|
||||
|
|
@ -411,14 +408,10 @@
|
|||
* ⭐ **[Toonily](https://toonily.com/)**
|
||||
* [Like Manga](https://likemanga.io/)
|
||||
* [Wuxia World](https://wuxiaworld.site/)
|
||||
* [MangaKomi](https://mangakomi.io/)
|
||||
* [Zero Scans](https://zscans.com/)
|
||||
* [MangaWeebs](https://mangaweebs.in/)
|
||||
* [Manhuafast](https://manhuafast.com/)
|
||||
* [Manhwasco](https://manhwasco.net/)
|
||||
* [Kaliscan](https://kaliscan.io/)
|
||||
* [Manhwatop](https://manhwatop.com/)
|
||||
* [Manhwafull](https://manhwafull.com/)
|
||||
|
||||
***
|
||||
|
||||
|
|
@ -445,14 +438,11 @@
|
|||
* [Ocean of EPUB](https://oceanofepub.com/)
|
||||
* [wuxiabee](https://www.wuxiabee.net/)
|
||||
* [List Novel](https://listnovel.com/)
|
||||
* [Novel Ringan](https://novelringan.com/)
|
||||
* [NobleMTL](https://noblemtl.com/)
|
||||
* [NovelLMAO](https://novelmao.com/)
|
||||
* [ReadNovelFull](https://readnovelfull.com)
|
||||
* [Panda Novel](https://www.panda-novel.com/)
|
||||
* [FreeWebNovel](https://freewebnovel.com/)
|
||||
* [MyBoxNovel](https://myboxnovel.com/)
|
||||
* [Foxaholic](https://www.foxaholic.com/)
|
||||
* [Translated Light Novels](https://rentry.co/FMHYBase64#translated-light-novels)
|
||||
* [NovelNext](https://novelnext.com/)
|
||||
* [NovelBuddy](https://novelbuddy.io/)
|
||||
|
|
@ -465,7 +455,6 @@
|
|||
* [Novel Hall](https://www.novelhall.com/)
|
||||
* [Rekt Novel Compilations](https://rektnovelcompilations.wordpress.com/)
|
||||
* [WoopRead](https://woopread.com/)
|
||||
* [MTL Novel](https://www.mtlnovel.com/)
|
||||
* [Royal Road](https://www.royalroad.com/) - Web Novels
|
||||
* [Light Novel Archive](https://t.me/LightNovelArchives) or [LN_Index](https://t.me/LN_Index) - Telegram
|
||||
* [Light Novel Archive](https://t.me/lightnovelarchive_bot) - Telegram / Bot
|
||||
|
|
@ -473,7 +462,7 @@
|
|||
* [Baka-Tsuki](https://www.baka-tsuki.org/project/?title=Main_Page) - Novels / Audio Recordings
|
||||
* [LN-Crawler-Colab](https://colab.research.google.com/github/HongYue1/LightNovel-Crawler-Colab/blob/main/lightnovel_crawler.ipynb) / [GitHub](https://github.com/HongYue1/LightNovel-Crawler-Colab), [Lightnovel Crawler](https://github.com/dipu-bd/lightnovel-crawler/), [novel-downloader](https://greasyfork.org/en/scripts/406070), [QuickNovel](https://github.com/LagradOst/QuickNovel) or [anime-dl](https://github.com/vrienstudios/anime-dl) - Light Novel Downloaders
|
||||
* [WebToEpub](https://github.com/dteviot/WebToEpub) - Novel to EPUB Converter
|
||||
* [LNMTL](https://lnmtl.com/) - Light Novel Translator
|
||||
* [LNMTL](https://lnmtl.com/) or [Omni](https://app.readomni.com/) - Light Novel Translators
|
||||
* [Scan Updates](https://www.scanupdates.com/) - Scan Release Updates
|
||||
|
||||
***
|
||||
|
|
@ -493,7 +482,6 @@
|
|||
* [freemagazines](https://freemagazines.top/) - VK
|
||||
* [FreeMagazinePDF](https://freemagazinespdf.com/) - VK
|
||||
* [ENMagazine](https://t.me/enmagazine) - Telegram
|
||||
* [newspaper_archive](https://t.me/newspaper_archive) - Telegram
|
||||
* [World Mags](https://www.worldmags.net/) - Nitroflare / Novafile
|
||||
* [PDF Dude](https://pdfdude.com/) - Novafile
|
||||
* [PDF Magazines Download](https://pdf-magazines-download.com/) - Novafile
|
||||
|
|
@ -524,12 +512,10 @@
|
|||
* [Meta-Press](https://www.meta-press.es/) - Newspaper Search
|
||||
* [EngNewspapers](https://vk.com/engnewspapers) - Telegram
|
||||
* [newspaper_archive](https://t.me/newspaper_archive) - Telegram
|
||||
* [dailynewspaper88](https://t.me/dailynewspaper88) - Telegram
|
||||
* [Chronicling America](https://chroniclingamerica.loc.gov/newspapers/)
|
||||
* [Kiosko](https://en.kiosko.net/)
|
||||
* [FullOnHistory](https://fultonhistory.com/)
|
||||
* [Loc.gov Newspapers](https://www.loc.gov/newspapers/)
|
||||
* [EurekaDDL](https://eurekaddl.autos/newspapers/)
|
||||
* [Newspapers](https://newspapers.com/)
|
||||
* [ThoughtCo](https://www.thoughtco.com/us-historical-newspapers-online-by-state-1422215)
|
||||
* [Library of Congress Newspapers](https://guides.loc.gov/foreign-newspapers/digital-resources)
|
||||
|
|
@ -597,7 +583,6 @@
|
|||
* [OpenDOAR](https://v2.sherpa.ac.uk/opendoar/) - Academic Repository Search
|
||||
* [Quantum Web Directory](https://qntm2017.github.io/qntm/OV.html) - Science / Tech / Math / Physics
|
||||
* [IntechOpen](https://www.intechopen.com/) - Science
|
||||
* [Magazines Scientific](https://scientificmagazines.top/) - Science Magazines
|
||||
* [Naked Scientists](https://www.thenakedscientists.com/) - Podcasts / Shows / Science
|
||||
* [Science Forums](https://www.scienceforums.net/) - Forums / Science
|
||||
* [Free Astronomy Resources](https://er-cryptid.tumblr.com/post/176809097526/free-astronomy-resources) or [Astronomy & Physics](https://rentry.co/FMHYBase64#astronomy-physics) - Books / Notes / Astronomy / Physics
|
||||
|
|
@ -605,7 +590,6 @@
|
|||
* [Institute of Mathematics](https://aimath.org/textbooks/) - Math / Books
|
||||
* [RealNotComplex](https://realnotcomplex.com/) - Math / Books
|
||||
* [HBPMS](https://hbpms.blogspot.com/) - Math / Books
|
||||
* [EngineeringBooksPDF](https://www.engineeringbookspdf.com/) - Engineering
|
||||
* [All About Circuits](https://www.allaboutcircuits.com/education/) - Electronics
|
||||
* [Ultimate Electronics Book](https://ultimateelectronicsbook.com/) - Electronics Schematics / Simulations
|
||||
* [SemiWiki](https://semiwiki.com/) - Semiconductor Wiki
|
||||
|
|
@ -613,14 +597,12 @@
|
|||
* [IT Book Drive](https://rentry.co/FMHYBase64#it-books-drive) - IT Books
|
||||
* [Explanations](https://magcius.github.io/xplain/article/) - Advanced Computer Explanations
|
||||
* [The Ergonomic Development of Video Game Controllers](https://www.longdom.org/open-access/the-ergonomic-development-of-video-game-controllers-2165-7556-1000209.pdf)
|
||||
* [Textbook of Bacteriology](https://www.textbookofbacteriology.net/index.html) - Microbiology Textbooks
|
||||
* [EveryCulture](https://www.everyculture.com/index.html) - World Culture Encyclopedia
|
||||
* [Encyclopaedia Iranica](https://www.iranicaonline.org/) - Iranian Culture Encyclopedia
|
||||
* [MedicalStudyZone](https://medicalstudyzone.com/) - Medical
|
||||
* [VetBooks](https://vetbooks.ir/) - Veterinary
|
||||
* [Brill](https://brill.com/) - International Law Books / Free for Students Only
|
||||
* [Sewing8](https://t.me/sewing8) - Sewing / Pattern Making Books
|
||||
* [/r/Scholar](https://reddit.com/r/Scholar)
|
||||
|
||||
***
|
||||
|
||||
|
|
@ -795,7 +777,7 @@
|
|||
* [Open Payments](https://openpaymentsdata.cms.gov/) - Medical Device Company Payment Reports
|
||||
* [NSA Archive](https://nsarchive.gwu.edu/) - Reports
|
||||
* [NAP](https://nap.nationalacademies.org/) - Reports
|
||||
* [WikiLeaks](https://wikileaks.org/) - Leaked Documents
|
||||
* [WikiLeaks](https://wikileaks.org/) - Leaked Documents / [Index](https://file.wikileaks.org/)
|
||||
* [Cryptome](https://cryptome.org/) - Leaked Documents
|
||||
* [snowden-archive](https://github.com/iamcryptoki/snowden-archive) - Leaked Snowden Documents
|
||||
* [Constitute Project](https://www.constituteproject.org/) - World Constitutions Database
|
||||
|
|
@ -835,7 +817,7 @@
|
|||
* ⭐ **[GoodReads](https://www.goodreads.com/)** / [Frontend](https://github.com/nesaku/BiblioReads) - Books / Comics / Manga / [Ratings Filter](https://www.book-filter.com/)
|
||||
* ⭐ **[TasteDive](https://tastedive.com/)** - Books
|
||||
* ⭐ **[StoryGraph](https://www.thestorygraph.com/)** - Books
|
||||
* ⭐ **[The Greatest Books](https://www.thegreatestbooks.org/)** - Book Recommendations / [Top 200](https://rentry.co/FMHYBase64#top-200)
|
||||
* ⭐ **[The Greatest Books](https://www.thegreatestbooks.org/)** - Book Recommendations
|
||||
* ⭐ **[MyAnimeList](https://myanimelist.net/)** - Manga / Light Novels / [Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_myanimelist_tools)
|
||||
* ⭐ **[Anilist](https://anilist.co/home)** - Manga / Light Novels / Manhwa / Manhua / [Wrapper](https://github.com/butterstroke/Anilist-Node) / [Extras](https://greasyfork.org/en/scripts/370473-automail)
|
||||
* ⭐ **[MangaUpdates](https://www.mangaupdates.com/)** - Manga (Has Obscure Stuff)
|
||||
|
|
@ -959,7 +941,7 @@
|
|||
* [FiveFilters](https://www.fivefilters.org/) - Multiple Article Accessibility Tools
|
||||
* [Readarr](https://readarr.com/) or [LazyLibrarian](https://gitlab.com/LazyLibrarian/LazyLibrarian) - Book Torrent Autodownload / Manager / [GitHub](https://github.com/Readarr/Readarr)
|
||||
* [GoBooDo](https://github.com/vaibhavk97/GoBooDo) - Google Book Downloader with Proxy Support
|
||||
* [DocDownloader](https://docdownloader.com/) or [scribd.vpdfs](https://scribd.vpdfs.com/) - [Scribd](https://www.scribd.com/) Document Downloaders
|
||||
* [ScribdVPDF](https://scribdvpdf.blogspot.com/), [DocDownloader](https://docdownloader.com/) or [scribd.vpdfs](https://scribd.vpdfs.com/) - [Scribd](https://www.scribd.com/) Document Downloaders
|
||||
* [FicHub](https://fichub.net/) or [FanFictionDownloader](https://fanfictiondownloader.net/) - Fanfiction Downloader
|
||||
* [Book Scraper](https://gitlab.com/minecraftpiston/book-scraper) - RoyalRoad / ScribbleHub Downloader
|
||||
* [Sigil Ebook](https://sigil-ebook.com/) - EPUB Editor
|
||||
|
|
|
|||
|
|
@ -6,8 +6,12 @@
|
|||
|
||||
# ► Social Media Tools
|
||||
|
||||
* 🌐 **[Alt Frontends](https://github.com/mendel5/alternative-front-ends)** / [2](https://rentry.co/8kqrrn), [Farside](https://farside.link/), [2](https://cf.farside.link/) or [alternative-frontends](https://github.com/digitalblossom/alternative-frontends) - Frontend Indexes
|
||||
* ⭐ **[SocialBlade](https://socialblade.com/)** - Social Media Stats
|
||||
* ⭐ **[LiveCounts](https://livecounts.io/)** - Live Social Media Stats
|
||||
* ⭐ **[LibRedirect](https://libredirect.github.io/)** / [GitHub](https://github.com/libredirect/libredirect), [Predirect](https://github.com/libreom/predirect) or [Proxy Redirect](https://openuserjs.org/scripts/sjehuda/Proxy_Redirect) - Frontend Redirect Extensions
|
||||
* [Numblr](https://github.com/heyLu/numblr) - Self-Hosted Frontend Redirect
|
||||
* [Proxitok](https://github.com/pablouser1/ProxiTok) or [OffTikTok](https://www.offtiktok.com/) - TikTok Frontends
|
||||
* [Social-Searcher](https://www.social-searcher.com/), [WeVerify](https://cse.google.com/cse?cx=006976128084956795641:ad1xj14zfap) or [Social Media CSE](https://cse.google.com/cse?cx=73dda67fd05b4405f#gsc.tab=1&gsc.sort=) - Social Media Search Engine
|
||||
* [Social Media Hacker List](https://github.com/MobileFirstLLC/social-media-hacker-list) - Social Media Apps / Tools
|
||||
* [ExportComments](https://exportcomments.com/) - Export Social Media Comments
|
||||
|
|
@ -26,9 +30,9 @@
|
|||
***
|
||||
|
||||
* 🌐 **[Awesome Discord](https://github.com/jacc/awesome-discord)** - Discord Tool Index
|
||||
* ⭐ **[Revolt](https://revolt.chat/)** / [Bots](https://rvlt.gg/discover/bots) / [Resources](https://github.com/insertish/awesome-revolt) / [Divolt Resources](https://github.com/ggtylerr/awesome-divolt) or **[Guilded](https://www.guilded.gg/)** - Discord Alternatives
|
||||
* ⭐ **[x266.mov](https://x266.mov/discord-embed/)**, [embeds.video](https://embeds.video/), [Stolen Shoes](https://stolen.shoes/), [autocompressor](https://autocompressor.net/), [embedez](https://embedez.com/) or [Discord Embedder](https://discord.nfp.is/) - Embed Videos on Discord
|
||||
* ⭐ **[Disblock Origin](https://codeberg.org/AllPurposeMat/Disblock-Origin)** or [Discord Adblock](https://github.com/CroissantDuNord/discord-adblock) - Hide Nitro / Boost Ads
|
||||
* [embeds.video](https://embeds.video/), [Stolen Shoes](https://stolen.shoes/), [autocompressor](https://autocompressor.net/) or [Discord Embedder](https://discord.nfp.is/) - Embed Videos on Discord
|
||||
* ⭐ **[Revolt](https://revolt.chat/)** / [Bots](https://rvlt.gg/discover/bots) / [Resources](https://github.com/insertish/awesome-revolt) / [Divolt Resources](https://github.com/ggtylerr/awesome-divolt) or **[Guilded](https://www.guilded.gg/)** - Discord Alternatives
|
||||
* [Multi-Accounts 1 Email](https://generator.email/blog/gmail-generator) - Create Multi Accounts with One Email / [Guide](https://rentry.co/altmethod)
|
||||
* [AnswersOverflow](https://www.answeroverflow.com/) - Discord Search Engine
|
||||
* [DiscordFS](https://github.com/dhrumilp15/haystackfs) - Discord File Search
|
||||
|
|
@ -39,7 +43,7 @@
|
|||
* [Dumpus](https://dumpus.app/) - Discord Data Package Explorer
|
||||
* [Wumpus Central](https://discord.gg/wumpus-central-1087801778365546556) - Discord Experimental Server Hub
|
||||
* [SimpleDiscordCrypt](https://gitlab.com/An0/SimpleDiscordCrypt) - Discord Message Encryption
|
||||
* [Undiscord](https://github.com/VendorAttestation/undiscord-reborn) - Delete Discord Messages / [Warning](https://i.ibb.co/pdg4hRr/0b0d78219f05.png)
|
||||
* [Discrub](https://github.com/prathercc/discrub-ext) - Delete Discord Messages / [Warning](https://i.ibb.co/pdg4hRr/0b0d78219f05.png)
|
||||
* [Permissions Calculator](https://discordapi.com/permissions.html) - Generate Discord OAuth Invites
|
||||
* [dsc.gg](https://dsc.gg/) - Create Custom Discord Invites
|
||||
* [Discord Previews](https://discord.gg/QMw7gQGMHj) - New Discord Builds / Changes
|
||||
|
|
@ -68,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
|
||||
|
|
@ -173,7 +177,7 @@
|
|||
* ⭐ **[Reddit Stream](https://reddit-stream.com/)** - Live Thread Viewer
|
||||
* ⭐ **[Reddit Enhancement Suite](https://redditenhancementsuite.com/)**, [Reddit Fix](https://greasyfork.org/en/scripts/404497-reddit-fix), [Reddit Extension](https://lawrenzo.com/p/reddit-extension), [RedditEnhancer](https://github.com/joelacus/RedditEnhancer) or [RedditMod2](https://greasyfork.org/en/scripts/29724-redditmod2) - Reddit Enhancement Extensions / Scripts
|
||||
* ⭐ **[Old Reddit Redirect](https://github.com/tom-james-watson/old-reddit-redirect)** - Redirect New Reddit to Old
|
||||
* [Photon](https://photon-reddit.com/), [reditr](https://reditr.com/), [RDX](https://rdx.overdevs.com/) or [redlib](https://redlib.fmhy.net/) / [GitHub](https://github.com/redlib-org/redlib) - Reddit Frontends
|
||||
* [Photon](https://photon-reddit.com/), [reditr](https://reditr.com/), [RDX](https://rdx.overdevs.com/) or [redlib](https://github.com/redlib-org/redlib-instances/blob/main/instances.md), [2](https://redlib.fmhy.net/) / [GitHub](https://github.com/redlib-org/redlib) - Reddit Frontends
|
||||
* [Spotlight](https://spotlight.thisux.com/) - Find Random Reddit Content
|
||||
* [Reddit Login Bypass Script](https://pastebin.com/raw/sU5tqwep) - Bypass Reddit Login
|
||||
* [Beleave](https://beleave.virock.org/) - Bulk Subreddit Unsub Tool
|
||||
|
|
@ -256,14 +260,14 @@
|
|||
|
||||
* 🌐 **[/r/ListOfSubreddits](https://www.reddit.com/r/ListOfSubreddits/)** - Subreddits Index
|
||||
* ↪️ **[Multireddit Indexes](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_multireddits)** or [/r/multihub](https://www.reddit.com/r/multihub/top/?sort=top&t=all)
|
||||
* ⭐ **[Vizit](https://redditstuff.github.io/sna/vizit/)**, [sayit](https://anvaka.github.io/sayit/), [subreddit_map](https://www.jacobsilterra.com/subreddit_map/network/index.html) or [SubredditMentionsGraph](https://dmarx.github.io/SubredditMentionsGraph/network/) - Visualize Related Subreddits
|
||||
* [FindAReddit](https://www.findareddit.com/) - Get Subreddit Suggestions / [Subreddit](https://www.reddit.com/r/findareddit/)
|
||||
* [Subreddit Calculator](https://trevor.shinyapps.io/subalgebra/) or [redsim](https://anvaka.github.io/redsim/) - Find Similar Subreddits
|
||||
* [sayit](https://anvaka.github.io/sayit/), [Vizit](https://redditstuff.github.io/sna/vizit/), [subreddit_map](https://www.jacobsilterra.com/subreddit_map/network/index.html) or [SubredditMentionsGraph](https://dmarx.github.io/SubredditMentionsGraph/network/) - Visualize Related Subreddits
|
||||
* [Map of Reddit](https://anvaka.github.io/map-of-reddit) or [Reddit Map](https://redditmap.social/) - Subreddit Maps
|
||||
* [subreddits](https://subreddits.org/) - Find Random Subreddits
|
||||
* [/r/Serendipity](https://www.reddit.com/r/Serendipity) - Posts from Random Subreddits
|
||||
* [/r/wowthissubexists](https://www.reddit.com/r/wowthissubexists/) - Find Niche Subreddits
|
||||
* [redditlist](https://redditlist.com/) or [Subreddit Stats](https://subredditstats.com/) - Subreddits Stats / Ranking
|
||||
* [Subreddit Stats](https://subredditstats.com/) - Subreddits Stats / Ranking
|
||||
|
||||
***
|
||||
|
||||
|
|
@ -276,7 +280,6 @@
|
|||
* [Telesco.pe](https://telesco.pe/) - Telegram Round Video Recorder
|
||||
* [Video Stream](https://github.com/lntechnical2/videostream) - Telegram Video Player
|
||||
* [TGCF](https://github.com/aahnik/tgcf) - Telegram Message Forwarding
|
||||
* [SaveDay](https://www.save.day/) - Telegram Bookmarking AI
|
||||
* [tg-channel-cloner-workers](https://gitlab.com/ParveenBhadooOfficial/tg-channel-cloner-workers) - Clone Telegram Channels
|
||||
* [CloneChat](https://github.com/apenasrr/clonechat) - Clone Telegram Chats
|
||||
* [tasra](https://the-eye.eu/tasra/) - Telegram Channel Archive
|
||||
|
|
@ -288,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)
|
||||
|
|
@ -347,6 +350,7 @@
|
|||
* 🌐 **[YT Large](https://ytlarge.com/)** - YouTube Tools
|
||||
* ↪️ **[Android YouTube Apps](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/android#wiki_.25B7_android_youtube_apps) / [iOS](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/android#wiki_.25B7_ios_youtube_apps)**
|
||||
* ⭐ **[PocketTube](https://pockettube.io/)** or [Kadium](https://kadium.kasper.space/) - Subscription Managers
|
||||
* ⭐ **[Anon Playlists](https://neverducky.github.io/anonymous-youtube-playlists/)** - Create Anon Playlists
|
||||
* [shorts-deflector](https://github.com/attituding/shorts-deflector), [Remove YouTube Shorts](https://addons.mozilla.org/en-US/firefox/addon/remove-youtube-shorts/), [ublock-hide-yt-shorts](https://github.com/gijsdev/ublock-hide-yt-shorts) or [youtube-shorts-block](https://github.com/doma-itachi/Youtube-shorts-block) - Hide YouTube Shorts
|
||||
* [YouTube_Subs_Bot](https://t.me/youtube_subs_bot) - Sub to Channels without Account
|
||||
* [YouTube-Subscriptions-RS](https://github.com/jeb5/YouTube-Subscriptions-RSS) - Export Subscriptions to RSS Feed
|
||||
|
|
@ -355,7 +359,6 @@
|
|||
* [MassYoutubeUnsubscriber](https://github.com/DomHeadroom/MassYoutubeUnsubscriber) - Bulk YouTube Subscription Remover
|
||||
* [YouTube Spammer Purge](https://github.com/ThioJoe/YT-Spammer-Purge) - Delete All YouTube Spam Comments / [Domain List](https://github.com/ThioJoe/YT-Spam-Lists)
|
||||
* [Age Restriction Bypass](https://github.com/zerodytrash/Simple-YouTube-Age-Restriction-Bypass) / [2](https://greasyfork.org/en/scripts/423851-simple-youtube-age-restriction-bypass) - Bypass YouTube Age Restrictions
|
||||
* [BlockTube](https://github.com/amitbl/blocktube) or [YTBlock](https://chromewebstore.google.com/detail/ytblock-block-any-content/nedcanggplmbbgmlpcjiafgjcpdimpea) - YouTube Content Blocker
|
||||
* [Playboard](https://playboard.co) or [ViewStats](https://www.viewstats.com/) - YouTube Channel Stats
|
||||
* [YouTube Watchmarker](https://github.com/sniklaus/youtube-watchmarker) - Fade Thumbnails of Watched Videos
|
||||
* [vidIQ](https://chromewebstore.google.com/detail/vidiq-vision-for-youtube/pachckjkecffpdphbpmfolblodfkgbhl) - YouTube Viewership Data
|
||||
|
|
@ -367,7 +370,6 @@
|
|||
* [YouTube Upload Time](https://chromewebstore.google.com/detail/youtube-upload-time/nenoecmaibjcahoahnmeinahlapheblg) - Check YouTube Upload Date
|
||||
* [TubeSync](https://github.com/meeb/tubesync) - Sync YouTube Channels / Playlists to a Media Server
|
||||
* [Playlist Creator for YouTube](https://chromewebstore.google.com/detail/drag-drop-playlist-creato/aklnkkbopjjemjlkffhamaepagbmblbg) or [Playlists at YouTube](https://playlists.at/youtube/) - Playlists Creators
|
||||
* [Anon Playlists](https://neverducky.github.io/anonymous-youtube-playlists/) - Create Anon Playlists
|
||||
* [ytcc](https://github.com/woefe/ytcc) or [Multiselect](https://addons.mozilla.org/en-US/firefox/addon/multiselect-for-youtube/), [2](https://chromewebstore.google.com/detail/gpgbiinpmelaihndlegbgfkmnpofgfei) - Playlist Managers
|
||||
* [YTPlaylistSorter](https://ytplaylistsorter.carterrj.co.uk/index.php) - Sorts YT Playlists
|
||||
* [playlist.tools](https://playlist.tools/) - YouTube Playlist Reverser
|
||||
|
|
@ -380,12 +382,12 @@
|
|||
* [YouBit](https://github.com/MeViMo/youbit) - Use YouTube as File Host
|
||||
* [ytcropper](https://ytcropper.com/), [yt_clipper](https://github.com/exwm/yt_clipper), [Apps Golem](https://appsgolem.com/en/cut-youtube-video) or [YTCutter.com](https://ytcutter.com/) - Crop YouTube Videos / Create Clips
|
||||
* [YTStamps](https://ytstamps.netlify.app/) - Create Custom Start / End Times
|
||||
* [Solidpoint](https://solidpoint.ai/), [Glasp](https://glasp.co/youtube-summary), [Glarity](https://glarity.app/), [Quickvid](https://quickvid.vercel.app/), [Eightify](https://eightify.app/), [VideoGist](https://www.videogist.co/),[VideoHighlight](https://videohighlight.com/), [Clipnote](https://clipnote.ai/) or [Summarize](https://summarize.tech/)- Summarize YouTube Videos
|
||||
* [Gemini](https://gemini.google.com/), [Solidpoint](https://solidpoint.ai/), [Glasp](https://glasp.co/youtube-summary), [Glarity](https://glarity.app/), [Quickvid](https://quickvid.vercel.app/), [Eightify](https://eightify.app/), [VideoGist](https://www.videogist.co/), [VideoHighlight](https://videohighlight.com/), [Clipnote](https://clipnote.ai/) or [Summarize](https://summarize.tech/) - Summarize YouTube Videos
|
||||
* [Stepify](https://stepify.tech/) - Get Step-By-Step Tutorial of YT Video
|
||||
* [Recover My Video](https://www.recovermy.video/) - Recover Titles of Deleted / Private YouTube Videos
|
||||
* [Filmot Title Restorer](https://greasyfork.org/en/scripts/430202-filmot-title-restorer) - Restore Deleted YouTube Video Titles in Playlists
|
||||
* [Kament](https://kament.io/) - Add Comments on Comment Disabled Videos
|
||||
* [Loadtup](https://loadtup.com/), [FrogBase](https://github.com/hayabhay/frogbase) - YouTube Video Transcribers
|
||||
* [Loadtup](https://loadtup.com/) or [FrogBase](https://github.com/hayabhay/frogbase) - YouTube Video Transcribers
|
||||
* [YT Sub Downloader](https://greasyfork.org/en/scripts/5368) or [YouTube_subtitle_downloader](https://t.me/youtube_subtitle_downloader_bot) - Download Subs from YouTube Videos
|
||||
* [amara](https://amara.org/en/) or [SubtitlesForYoutube](https://github.com/yashagarwal1411/SubtitlesForYoutube) - Add Subs to YouTube Videos / [Edge](https://microsoftedge.microsoft.com/addons/detail/subtitles-for-youtube/gfjcoflghpdkddjnpegonjhnbngeocfi)
|
||||
* [YouTube Subtitle Position](https://addons.mozilla.org/en-US/firefox/addon/youtube-subtitle-position/) - Change Position of YouTube Subtitles
|
||||
|
|
@ -404,7 +406,7 @@
|
|||
* ⭐ **[Poke](https://poketube.fun/)** - YouTube Frontend / [Discord](https://discord.gg/Kqdn8CHacP)
|
||||
* ⭐ **[FreeTube](https://freetubeapp.io/)** - YouTube Frontend / [GitHub](https://github.com/FreeTubeApp/FreeTube)
|
||||
* ⭐ **[Invidious](https://invidious.io/)**, [Invuedious](https://github.com/bocchilorenzo/invuedious) or [Materialio](https://materialio.us/) - YouTube Frontends
|
||||
* ⭐ **Invidious Tools** - [Instances](https://api.invidious.io/), [2](https://redirect.invidious.io/) / [TUI](https://github.com/darkhz/invidtui)
|
||||
* ⭐ **Invidious Tools** - [Instances](https://api.invidious.io/), [2](https://redirect.invidious.io/) / [TUI](https://github.com/darkhz/invidtui) / [Invidious Redirect](https://addons.mozilla.org/en-US/firefox/addon/hooktube-redirect/?src=search)
|
||||
* ⭐ **[PKGA](https://greasyfork.org/en/scripts/442089)** or [YouTube WideScreen](https://greasyfork.org/en/scripts/409893) - Improved YouTube Cinema Mode
|
||||
* ⭐ **[SponsorBlock](https://sponsor.ajay.app/)** - Skip Sponsored YouTube Ads / [Chromecast](https://github.com/gabe565/CastSponsorSkip) / [Script](https://github.com/mchangrh/sb.js), [2](https://greasyfork.org/en/scripts/453320)
|
||||
* ⭐ **[Fast Forward YouTube Shorts](https://greasyfork.org/en/scripts/466438)** - Add Skip Keys to Shorts
|
||||
|
|
@ -418,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
|
||||
|
|
@ -428,7 +429,7 @@
|
|||
* [YourCodecs](https://github.com/undecV/YourCodecs) - Enable / Disable Player Codecs
|
||||
* [YT CPU Tamer](https://greasyfork.org/en/scripts/431573), [YT JS Tamer](https://greasyfork.org/en/scripts/473972) or [Unhold YouTube](https://greasyfork.org/en/scripts/457205) - YouTube CPU Optimization
|
||||
* [Rotate YouTube Video](https://addons.mozilla.org/en-US/firefox/addon/rotate-youtube-video/) - Rotate YouTube Videos
|
||||
* [StretchSite](https://www.stretch.site/) or [Ultrawidify](https://github.com/tamius-han/ultrawidify) - Custom YouTube Aspect Ratio
|
||||
* [Ultrawidify](https://github.com/tamius-han/ultrawidify) - Custom YouTube Aspect Ratio
|
||||
* [YouTube: Audio Only](https://greasyfork.org/en/scripts/484611) or [Audio Only YouTube](https://chromewebstore.google.com/detail/audio-only-youtube/pkocpiliahoaohbolmkelakpiphnllog) - Audio Only YouTube
|
||||
|
||||
***
|
||||
|
|
@ -439,7 +440,7 @@
|
|||
* ↪️ **[Multi-Site Downloaders](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/video-tools#wiki_.25BA_video_download)**
|
||||
* ⭐ **[YT-DLP](https://github.com/yt-dlp/yt-dlp)** - YouTube CLI Downloader / [Commands](https://github.com/TheFrenchGhosty/TheFrenchGhostys-Ultimate-YouTube-DL-Scripts-Collection) / [Discord](https://discord.gg/H5MNcFW63r)
|
||||
* ⭐ **[cobalt](https://cobalt.tools/)** - Multi-Site / Online Downloader / [Instances](https://instances.hyper.lol/)
|
||||
* [yt-dlp-gui](https://github.com/kannagi0303/yt-dlp-gui) / [Easy Installer](https://github.com/kazukikasama/youtube-dlp-gui-installer), [ytdlp-interface](https://github.com/ErrorFlynn/ytdlp-interface), [Stacher](https://stacher.io/), [Vividl](https://github.com/Bluegrams/Vividl) or [Parabolic](https://github.com/NickvisionApps/Parabolic) - YT-DLP Alternative GUIs
|
||||
* [yt-dlp-gui](https://github.com/kannagi0303/yt-dlp-gui) / [Easy Installer](https://github.com/kazukikasama/youtube-dlp-gui-installer), [ytdlp-interface](https://github.com/ErrorFlynn/ytdlp-interface), [Stacher](https://stacher.io/), [dsymbol yt-dlp](https://github.com/dsymbol/yt-dlp-gui), [Vividl](https://github.com/Bluegrams/Vividl), [Media Downloader](https://github.com/mhogomchungu/media-downloader) or [Parabolic](https://github.com/NickvisionApps/Parabolic) - YT-DLP GUIs
|
||||
* [ezytdl](https://github.com/sylviiu/ezytdl), [Tartube](https://tartube.sourceforge.io/) or [youtube-dl-gui](https://github.com/oleksis/youtube-dl-gui), [2](https://github.com/StefanLobbenmeier/youtube-dl-gui) - Cross-platform YT-DLP GUIs
|
||||
* [Videomass](https://jeanslack.github.io/Videomass/) - Cross-platform YT-DL / FFmpeg GUI
|
||||
* [Cube YouTube Downloader](https://github.com/database64128/youtube-dl-wpf) - WPF YT-DL GUI
|
||||
|
|
@ -461,7 +462,8 @@
|
|||
* ⭐ **[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
|
||||
* [YT Not Interested Button on Hover](https://greasyfork.org/en/scripts/396936-yt-not-interested-in-one-click) - Easily Display Not Interested Button
|
||||
|
|
@ -482,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
|
||||
|
|
@ -502,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
|
||||
|
|
@ -538,15 +541,16 @@
|
|||
|
||||
## ▷ Twitch Players
|
||||
|
||||
* ⭐ **[Chatterino](https://chatterino.com/)**, [Chatterino Homies](https://chatterinohomies.com/) or [Chatty](https://chatty.github.io/) - Twitch Chat Clients
|
||||
* ⭐ **[Chatterino](https://chatterino.com/)** / [2](https://github.com/SevenTV/chatterino7), [Chatterino Homies](https://chatterinohomies.com/) or [Chatty](https://chatty.github.io/) - Twitch Chat Clients
|
||||
* [Orion](https://alamminsalo.github.io/orion/), [Twitch App](https://gitlab.com/twitch-application/application) or [Tress](https://gitlab.com/Ignamarte/tress) - Twitch Desktop Clients
|
||||
* [SpeechChat](https://speechchat.com/) - Twitch Text to Speech Client
|
||||
* [Twitch Lite](https://thavixt.github.io/twitch-lite/) - Lightweight Twitch Webplayer
|
||||
* [Twitch Lite](https://thavixt.github.io/twitch-lite/), [SafeTwitch](https://codeberg.org/SafeTwitch/safetwitch) or [Twineo](https://codeberg.org/CloudyyUw/twineo) - Twitch Frontends
|
||||
* [Walrus](https://joinwalrus.tv/) - Make Twitch Watch Parties
|
||||
* [MuliTwitch.tv](https://multitwitch.tv/), [MultiTwitch.co](https://multitwitch.co/), [Twitch3D](https://hjjg200.github.io/twitch3d/), [Twitch Replay](https://www.twitch-replay.com/), [Multi](https://multi.raredrop.co/), [MultiStre.am](https://multistre.am/), [MultiStreamer](https://multistreamer.lucidnet.app/) or [TwitchTheater](https://twitchtheater.tv/) - Twitch Multi-Stream
|
||||
* [MuliTwitch.tv](https://multitwitch.tv/), [MultiTwitch.co](https://multitwitch.co/), [Twitch3D](https://hjjg200.github.io/twitch3d/), [Multi](https://multi.raredrop.co/), [MultiStre.am](https://multistre.am/), [MultiStreamer](https://multistreamer.lucidnet.app/) or [TwitchTheater](https://twitchtheater.tv/) - Twitch Multi-Stream
|
||||
* [Twitchls](https://twitchls.com/) - HTML5 Twitch Stream Player
|
||||
* [nobody.live](https://nobody.live/) or [Twitch Roulette](https://twitchroulette.net/) - Random Stream Roulette
|
||||
* [Alternate Player for Twitch.tv](https://pastebin.com/Z7NWxSfA) - Alternative Twitch Player
|
||||
* [Twitch Replay](https://www.twitch-replay.com/) - Twitch Video Player
|
||||
* [Twitch Lurker](https://github.com/mikeyaworski/Twitch-Lurker) - Twitch Stream Auto-Open
|
||||
|
||||
***
|
||||
|
|
@ -555,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
|
||||
|
|
@ -578,6 +583,7 @@
|
|||
* ⭐ **[Trends24](https://trends24.in/)** or [GetDayTrends](https://getdaytrends.com/) - Trending Hashtags Trackers
|
||||
* ⭐ **[/r/Twitter](https://reddit.com/r/Twitter)** - Twitter Subreddit
|
||||
* [Typefully](https://typefully.com/) - Schedule Tweets
|
||||
* [twstalker](https://twstalker.com/), [X Cancelled](https://xcancel.com/) or [nitter](https://nitter.poast.org/) / [Instances](https://status.d420.de/), [2](https://github.com/zedeus/nitter/wiki/Instances) - Twitter Frontends
|
||||
* [Chirr App](https://getchirrapp.com/) - Turn Articles into Twitter Threads / [Firefox](https://addons.mozilla.org/en-US/firefox/addon/chirr-app/) / [Chrome](https://chromewebstore.google.com/detail/chirr-app/cmbconaimdngicdnbpjnjocbpkdpmfkg)
|
||||
* [Klear](https://klear.com/free-tools/find-twitter-influencers) - Find Influencers
|
||||
* [FollowerWonk](https://followerwonk.com/) - Find / Analyze / Optimize Followers
|
||||
|
|
@ -788,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
|
||||
|
|
|
|||
|
|
@ -15,8 +15,9 @@
|
|||
### CAD Engineering
|
||||
|
||||
* [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
|
||||
|
|
@ -63,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
|
||||
|
||||
|
|
@ -84,16 +85,6 @@
|
|||
|
||||
***
|
||||
|
||||
## Android Video Players
|
||||
|
||||
* ⭐ **[VLC](https://www.videolan.org/vlc/download-android.html)**
|
||||
* ⭐ **[mpvKt](https://github.com/abdallahmehiz/mpvKt/)** -
|
||||
* ⭐ **[Just Player](https://github.com/moneytoo/Player)**
|
||||
|
||||
[MX Player](https://rentry.co/FMHYBase64#mx-player) / [Codec](https://github.com/USBhost/MX_FFmpeg), [mpv-android](https://github.com/mpv-android/mpv-android), [Nova Video Player](https://github.com/nova-video-player), [Fermata Media Player](https://github.com/AndreyPavlenko/Fermata), [SPlayer](https://splayer.dev/), [Next Player](https://github.com/anilbeesetti/nextplayer), [M3UAndroid](https://github.com/realOxy/M3UAndroid) / [Telegram](https://t.me/m3u_android), [Audiofy](https://github.com/iZakirSheikh/Audiofy)
|
||||
|
||||
***
|
||||
|
||||
## App / Site Mockups
|
||||
|
||||
* [Mockoops](https://mockoops.mohitya.dev/) - Animated Mockups
|
||||
|
|
@ -121,7 +112,7 @@
|
|||
|
||||
* ⭐ **[Remove Background Web](https://huggingface.co/spaces/Xenova/remove-background-web)**
|
||||
|
||||
[remove.bg](https://www.remove.bg/), [RemoveBG-GIMP](https://github.com/manu12121999/RemoveBG-GIMP), [BGBye](https://fyrean.itch.io/bgbye-background-remover), [Rembg](https://github.com/danielgatis/rembg), [Adobe Express Background Remover](https://www.adobe.com/express/feature/image/remove-background), [magic-copy](https://github.com/kevmo314/magic-copy)
|
||||
[remove.bg](https://www.remove.bg/), [RemoveBG-GIMP](https://github.com/manu12121999/RemoveBG-GIMP), [BGBye](https://fyrean.itch.io/bgbye-background-remover), [Rembg](https://github.com/danielgatis/rembg), [Adobe Express Background Remover](https://www.adobe.com/express/feature/image/remove-background), [magic-copy](https://github.com/kevmo314/magic-copy), [ormbg](https://huggingface.co/spaces/schirrmacher/ormbg)
|
||||
|
||||
### Object Removers
|
||||
|
||||
|
|
@ -144,7 +135,7 @@
|
|||
* ⭐ **[WebOasis](https://weboasis.app/)**, [2](https://ndsamuelson.github.io/weboas-is/), [3](https://behu.io/) / [Source Code](https://pastebin.com/CczqreS4)
|
||||
* ⭐ **[MONKNOW](https://www.monknow.com/)**
|
||||
|
||||
[8bitdash](https://www.8bitdash.com/), [8 Bit Dashboard](https://8bitdashboard.com/), [Startpage Emporium](https://startpages.github.io/), [Awesome Startpage](https://github.com/jnmcfly/awesome-startpage), [Clippingmini](https://www.clippingmini.com/), [Draggo](https://draggo.com/), [Pearltrees](https://www.pearltrees.com/), [Nextcloud](https://apps.nextcloud.com/apps/bookmarks), [Cling](https://cling.com/), [Symbaloo](https://www.symbaloo.com/), [Tixio](https://tixio.io/), [Bento](https://github.com/migueravila/Bento), [ez.lol](https://ez.lol/), [nightly](https://github.com/damnitharshit/nightly), [Protopage](https://www.protopage.com/), [tilde](https://github.com/xvvvyz/tilde), [Fluidity](https://prettycoffee.github.io/fluidity/) / [GitHub](https://github.com/PrettyCoffee/fluidity), [AllMyFaves](https://allmyfaves.com/)
|
||||
[8bitdash](https://www.8bitdash.com/), [8 Bit Dashboard](https://8bitdashboard.com/), [Startpage Emporium](https://startpages.github.io/), [Awesome Startpage](https://github.com/jnmcfly/awesome-startpage), [Clippingmini](https://www.clippingmini.com/), [Draggo](https://draggo.com/), [Pearltrees](https://www.pearltrees.com/), [Nextcloud](https://apps.nextcloud.com/apps/bookmarks), [Cling](https://cling.com/), [Symbaloo](https://www.symbaloo.com/), [Tixio](https://tixio.io/), [Bento](https://github.com/migueravila/Bento), [ez.lol](https://ez.lol/), [nightly](https://github.com/damnitharshit/nightly), [Protopage](https://www.protopage.com/), [tilde](https://github.com/xvvvyz/tilde), [Fluidity](https://prettycoffee.github.io/fluidity/) / [GitHub](https://github.com/PrettyCoffee/fluidity), [AllMyFaves](https://allmyfaves.com/), [start.me](https://start.me/start/int/startpage)
|
||||
|
||||
### Customizable New Tab Page
|
||||
|
||||
|
|
@ -178,14 +169,14 @@
|
|||
|
||||
## Collaboration Platforms
|
||||
|
||||
[Doozy](https://doozy.live/), [Zulip](https://zulip.com/), [LucidSpark](https://lucidspark.com/), [Miro](https://miro.com/), [Mattermost](https://mattermost.com/), [Twake](https://twake.app/), [Asana](https://asana.com/), [Freedcamp](https://freedcamp.com/), [Lumeer](https://www.lumeer.io/), [Slab](https://slab.com/), [Focalboard](https://www.focalboard.com/), [WeKan](https://wekan.github.io/), [Kanboard](https://kanboard.org/), [Mural](https://www.mural.co/), [Dendron](https://www.dendron.so/), [Trello](https://trello.com/), [Planka](https://planka.app/), [Taskcafe](https://github.com/JordanKnott/taskcafe), [Room](https://room.sh/), [Atlassian](https://www.atlassian.com/), [linear](https://linear.app/), [ScreenRec](https://screenrec.com/), [nino](https://nino.app/), [Creately](https://creately.com/)
|
||||
[Doozy](https://doozy.live/), [Zulip](https://zulip.com/), [LucidSpark](https://lucidspark.com/), [Miro](https://miro.com/), [Mattermost](https://mattermost.com/), [Twake](https://twake.app/), [Asana](https://asana.com/), [Freedcamp](https://freedcamp.com/), [Lumeer](https://www.lumeer.io/), [Slab](https://slab.com/), [Focalboard](https://www.focalboard.com/), [WeKan](https://wekan.github.io/), [Kanboard](https://kanboard.org/), [Mural](https://www.mural.co/), [Dendron](https://www.dendron.so/), [Trello](https://trello.com/), [Planka](https://planka.app/), [Taskcafe](https://github.com/JordanKnott/taskcafe), [Room](https://room.sh/), [Atlassian](https://www.atlassian.com/), [linear](https://linear.app/), [ScreenRec](https://screenrec.com/), [nino](https://nino.app/), [Creately](https://creately.com/), [factsplat](https://factsplat.com/)
|
||||
|
||||
***
|
||||
|
||||
## Command Line Shells
|
||||
|
||||
* ⭐ **[zsh](https://www.zsh.org/)**
|
||||
* ⭐ **zsh Tools** - [Plugins](https://github.com/unixorn/awesome-zsh-plugins) / [Auto Suggest](https://github.com/zsh-users/zsh-autosuggestions) / [Customization](https://ohmyz.sh/) / [Theme](https://github.com/romkatv/powerlevel10k) / [Auto Setup](https://github.com/gustavohellwig/gh-zsh) / [Rich Framework](https://github.com/sorin-ionescu/prezto) / [Syntax Highlighting](https://github.com/zsh-users/zsh-syntax-highlighting)
|
||||
* ⭐ **zsh Tools** - [Plugins](https://github.com/unixorn/awesome-zsh-plugins) / [Customization](https://ohmyz.sh/) / [Theme](https://github.com/romkatv/powerlevel10k) / [Auto Setup](https://github.com/gustavohellwig/gh-zsh) / [Rich Framework](https://github.com/sorin-ionescu/prezto)
|
||||
* ⭐ **[bash](https://www.gnu.org/software/bash/)** - Pre-Installed on Most Distros
|
||||
|
||||
[fish](https://fishshell.com/), [Elvish](https://elv.sh/), [Es](https://wryun.github.io/es-shell/), [Ion](https://gitlab.redox-os.org/redox-os/ion), [Xonsh](https://xon.sh/), [Nushell](https://www.nushell.sh/)
|
||||
|
|
@ -276,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)
|
||||
|
||||
|
|
@ -310,7 +302,7 @@
|
|||
|
||||
* ⭐ **[Wikipedia](https://www.wikipedia.org/)** - Encyclopedia / [Content List](https://en.wikipedia.org/wiki/Wikipedia:Contents/Lists)
|
||||
* ⭐ **Wikipedia Frontends** - [WikiWand](https://www.wikiwand.com/) or [ModernWiki](https://www.modernwiki.app/)
|
||||
* ⭐ **[Wolfram Alpha](https://www.wolframalpha.com/)** - Searchable Knowledgebase / [API Access](https://wolfreealpha.gitlab.io)
|
||||
* ⭐ **[Wolfram Alpha](https://www.wolframalpha.com/)** - Searchable Knowledgebase
|
||||
* [EncycloReader](https://encycloreader.org/) - Encyclopedia Search
|
||||
* [Omniglot](https://www.omniglot.com/index.htm) - Writing Systems & Languages Encyclopedia
|
||||
* [Archivy](https://github.com/archivy/archivy/) - Self-Hosted Wiki
|
||||
|
|
@ -357,7 +349,6 @@
|
|||
* https://zilore.com/en/dns
|
||||
* https://docs.glauca.digital/hexdns/
|
||||
* https://www.zoneedit.com/free-dns/
|
||||
* https://www.dnsabr.com/
|
||||
* https://dns.sb/
|
||||
* https://www.bestdns.org/
|
||||
* https://public-dns.info/
|
||||
|
|
@ -382,7 +373,6 @@
|
|||
* https://sshkit.com/
|
||||
* https://www.jagoanssh.com/
|
||||
* https://dewassh.net/
|
||||
* https://www.speedssh.com/
|
||||
* https://www.fastssh.com/
|
||||
* https://www.mytunneling.com/
|
||||
* https://createssh.net/
|
||||
|
|
@ -447,6 +437,7 @@
|
|||
* [Script 8](https://script-8.github.io/)
|
||||
* [Tic80](https://tic80.com/)
|
||||
* [Byond](https://www.byond.com/)
|
||||
* [Rosebud AI](https://www.rosebud.ai/)
|
||||
|
||||
### 3D Game Engines
|
||||
|
||||
|
|
@ -559,7 +550,6 @@
|
|||
|
||||
## LibGen Mirrors
|
||||
|
||||
* https://libgen.rs/ - main
|
||||
* https://libgen.is/ - main
|
||||
* https://libgen.st/ - main
|
||||
* https://libgen.li/ - clone
|
||||
|
|
@ -584,7 +574,7 @@
|
|||
|
||||
## Live Webcams
|
||||
|
||||
[EarthCam](https://www.earthcam.com/), [Explore](https://explore.org/), [Opentopia](http://www.opentopia.com/), [WebcamGalore](https://www.webcamgalore.com/), [WebcamTaxi](https://www.webcamtaxi.com/en/), [WorldCams](https://worldcams.tv/), [WorldCam](https://worldcam.eu/), [BalticLiveCam](https://balticlivecam.com/), [SkylineWebcams](https://www.skylinewebcams.com/en.html), [CamStreaner](https://camstreamer.com/live), [/r/controllablewebcams](https://reddit.com/r/controllablewebcams) / [Discord](https://discord.gg/wdjtevG), [PicTimo](https://www.pictimo.com/), [WXYZWebcams](https://wxyzwebcams.com/) [snoweye](https://www.snoweye.com/), [camscape](https://www.camscape.com/), [whatsupcams](https://www.whatsupcams.com/), [worldcam](https://www.worldcam.pl/), [webcamhopper](https://www.webcamhopper.com/), [explore.org](https://explore.org/livecams), [Windy Webcams](https://www.windy.com/-Webcams/webcams), [Insecam](http://www.insecam.org/en/), [Airport Webcams](https://airportwebcams.net/) (Airports), [TFLJamCams](https://www.tfljamcams.net/), [seattlesouthside](https://www.seattlesouthside.com/plan-your-trip/webcams/), [portugal-live](https://www.portugal-live.net/en/webcams.html), [livecamcroatia](https://www.livecamcroatia.com/en), [myrtlebeach](https://www.myrtlebeach.com/webcams/), [sootoday](https://www.sootoday.com/webcams), [interlochen](https://www.interlochen.org/webcasts/live-webcams), [whitehouse cam](https://whitehouse.gov1.info/webcam/), [yellowstone cam](https://www.nps.gov/yell/learn/photosmultimedia/webcams.htm), [carowinds](https://www.carowinds.com/live-video), [zellamsee](https://www.zellamsee-kaprun.com/en/live/webcams), [wpri](https://www.wpri.com/live-cams/), [hdontap](https://hdontap.com/), [floridakeyswebcams](https://floridakeyswebcams.tv/), [earthtv](https://www.earthtv.com/en), [geocam](https://www.geocam.ru/en/), [livefromiceland](https://livefromiceland.is/), [world-cam](https://en.world-cam.ru/), [mangolinkworld](https://www.mangolinkworld.com/), [mylivestreams](https://www.mylivestreams.com/live-streaming-cams/), [spain-grancanaria](https://www.spain-grancanaria.com/en/images-videos/webcams.html), [visitlondon](https://www.visitlondon.com/things-to-do/sightseeing/london-attraction/webcams-of-london), [ctsfl](https://www.ctsfl.us/cams/), [aruba](https://www.aruba.com/us/live-webcams-and-channels), [fogcam](https://www.fogcam.org/), [bigrigtravels](https://bigrigtravels.com/), [lochness](https://www.lochness.co.uk/livecam/), [abbeyroad](https://www.abbeyroad.com/crossing), [camsecure](https://www.camsecure.co.uk/Camsecure_Live_Demo_Index.html), [worldlivecamera](https://www.worldlivecamera.com/)
|
||||
[EarthCam](https://www.earthcam.com/), [Explore](https://explore.org/), [Opentopia](http://www.opentopia.com/), [WebcamGalore](https://www.webcamgalore.com/), [WebcamTaxi](https://www.webcamtaxi.com/en/), [WorldCams](https://worldcams.tv/), [Worldviewstream](https://worldviewstream.com/), [WorldCam](https://worldcam.eu/), [BalticLiveCam](https://balticlivecam.com/), [SkylineWebcams](https://www.skylinewebcams.com/en.html), [CamStreaner](https://camstreamer.com/live), [/r/controllablewebcams](https://reddit.com/r/controllablewebcams) / [Discord](https://discord.gg/wdjtevG), [PicTimo](https://www.pictimo.com/), [WXYZWebcams](https://wxyzwebcams.com/) [snoweye](https://www.snoweye.com/), [camscape](https://www.camscape.com/), [whatsupcams](https://www.whatsupcams.com/), [worldcam](https://www.worldcam.pl/), [webcamhopper](https://www.webcamhopper.com/), [explore.org](https://explore.org/livecams), [Windy Webcams](https://www.windy.com/-Webcams/webcams), [Insecam](http://www.insecam.org/en/), [Airport Webcams](https://airportwebcams.net/) (Airports), [TFLJamCams](https://www.tfljamcams.net/), [seattlesouthside](https://www.seattlesouthside.com/plan-your-trip/webcams/), [portugal-live](https://www.portugal-live.net/en/webcams.html), [livecamcroatia](https://www.livecamcroatia.com/en), [myrtlebeach](https://www.myrtlebeach.com/webcams/), [sootoday](https://www.sootoday.com/webcams), [interlochen](https://www.interlochen.org/webcasts/live-webcams), [whitehouse cam](https://whitehouse.gov1.info/webcam/), [yellowstone cam](https://www.nps.gov/yell/learn/photosmultimedia/webcams.htm), [carowinds](https://www.carowinds.com/live-video), [zellamsee](https://www.zellamsee-kaprun.com/en/live/webcams), [wpri](https://www.wpri.com/live-cams/), [hdontap](https://hdontap.com/), [floridakeyswebcams](https://floridakeyswebcams.tv/), [earthtv](https://www.earthtv.com/en), [geocam](https://www.geocam.ru/en/), [livefromiceland](https://livefromiceland.is/), [world-cam](https://en.world-cam.ru/), [mangolinkworld](https://www.mangolinkworld.com/), [mylivestreams](https://www.mylivestreams.com/live-streaming-cams/), [spain-grancanaria](https://www.spain-grancanaria.com/en/images-videos/webcams.html), [visitlondon](https://www.visitlondon.com/things-to-do/sightseeing/london-attraction/webcams-of-london), [ctsfl](https://www.ctsfl.us/cams/), [aruba](https://www.aruba.com/us/live-webcams-and-channels), [fogcam](https://www.fogcam.org/), [bigrigtravels](https://bigrigtravels.com/), [lochness](https://www.lochness.co.uk/livecam/), [abbeyroad](https://www.abbeyroad.com/crossing), [camsecure](https://www.camsecure.co.uk/Camsecure_Live_Demo_Index.html), [worldlivecamera](https://www.worldlivecamera.com/)
|
||||
|
||||
### Animal Cams
|
||||
|
||||
|
|
@ -693,11 +683,12 @@
|
|||
|
||||
### Optimization Mods
|
||||
|
||||
* 🌐 **[NotEssential](https://notessential.blurry.gay/)** - List of Alternatives to Essential
|
||||
* 🌐 **[OptiFine Alternatives](https://optifine.alternatives.lambdaurora.dev/)** - OptiFine Alternatives for Fabric
|
||||
* ⭐ **[Fabulously Optimized](https://download.fo)** - Performance Modpack / [GitHub](https://github.com/Fabulously-Optimized/fabulously-optimized)
|
||||
* ⭐ **[Simply Optimized](https://modrinth.com/modpack/sop)** - Performance Modpack
|
||||
* ⭐ **[Sodium](https://modrinth.com/mod/sodium)** - Rendering Optimization / [Extra Features](https://modrinth.com/mod/sodium-extra) / [Reese's Options](https://modrinth.com/mod/reeses-sodium-options)
|
||||
* [Additive](https://modrinth.com/modpack/additive) - Performance Modpack
|
||||
* ⭐ **[Additive](https://modrinth.com/modpack/additive)** - Alt Optifine Modpack for Fabric
|
||||
* [Lithium](https://modrinth.com/mod/lithium) - Game Logic & Server Optimization
|
||||
* [FerriteCore](https://modrinth.com/mod/ferrite-core) - Memory Usage Optimizations
|
||||
* [Nvidium](https://modrinth.com/mod/nvidium) - Improved Rendering Capability (Nvidia GPUs Only) / [GitHub](https://github.com/MCRcortex/nvidium)
|
||||
|
|
@ -852,7 +843,7 @@
|
|||
|
||||
⭐ **[PROXY List](https://github.com/TheSpeedX/PROXY-List)**
|
||||
|
||||
[Free-Proxy-List](https://free-proxy-list.net/), [Proxy4Parsing](https://github.com/proxy4parsing) / [Telegram](https://t.me/proxy4parsing), [OpenProxyList](https://openproxylist.com/), [ProxyScrape](https://www.proxyscrape.com/free-proxy-list), [proxy-list](https://github.com/mmpx12/proxy-list), [hide.my proxy list](https://hidemy.name/en/proxy-list/), [FreeProxyLists](https://www.freeproxylists.net/), [ProxyNations](https://www.proxynations.com/), [spys.one](https://spys.one/en/free-proxy-list/), [cyber-gateway](https://cyber-gateway.net/get-proxy/free-proxy), [ree-proxy-list](https://free-proxy-list.net/web-proxy.html), [geonode](https://geonode.com/free-proxy-list/), [freeproxyupdate](https://freeproxyupdate.com/), [proxypedia](https://proxypedia.org), [proxydocker](https://www.proxydocker.com/en/proxylist/), [proxyhub](https://proxyhub.me/), [proxy-list](https://proxy-list.download/), [proxydb](https://proxydb.net/), [advanced.name](https://advanced.name/freeproxy), [monosans list](https://github.com/monosans/proxy-list), [jetkai list](https://github.com/jetkai/proxy-list), [freeproxy](https://freeproxy.world/)
|
||||
[Free-Proxy-List](https://free-proxy-list.net/), [Proxy4Parsing](https://github.com/proxy4parsing) / [Telegram](https://t.me/proxy4parsing), [OpenProxyList](https://openproxylist.com/), [ProxyScrape](https://www.proxyscrape.com/free-proxy-list), [proxy-list](https://github.com/mmpx12/proxy-list), [hide.my proxy list](https://hide.mn/en/proxy-list/), [ProxyNations](https://www.proxynations.com/), [spys.one](https://spys.one/en/free-proxy-list/), [cyber-gateway](https://cyber-gateway.net/get-proxy/free-proxy), [ree-proxy-list](https://free-proxy-list.net/web-proxy.html), [geonode](https://geonode.com/free-proxy-list/), [freeproxyupdate](https://freeproxyupdate.com/), [proxydocker](https://www.proxydocker.com/en/proxylist/), [proxyhub](https://proxyhub.me/), [proxy-list](https://proxy-list.download/), [proxydb](https://proxydb.net/), [advanced.name](https://advanced.name/freeproxy), [monosans list](https://github.com/monosans/proxy-list), [jetkai list](https://github.com/jetkai/proxy-list), [freeproxy](https://freeproxy.world/)
|
||||
|
||||
***
|
||||
|
||||
|
|
@ -864,21 +855,25 @@
|
|||
* ⭐ **[List of Internet Radio Stations](https://en.wikipedia.org/wiki/List_of_Internet_radio_stations)**
|
||||
* ⭐ **[Radio Browser](https://www.radio-browser.info/users)** - Radio App / Site Index
|
||||
|
||||
[iHeartRadio](https://www.iheart.com/), [BBC Radio](https://www.bbc.co.uk/sounds), [OnlineRadioBox](https://onlineradiobox.com/), [LiveOnlineRadio](https://liveonlineradio.net/), [WebSDR](http://www.websdr.org/), [System Bus Radio](https://fulldecent.github.io/system-bus-radio/), [myTuner](https://mytuner-radio.com/), [Radio Browser](https://www.radio-browser.info/), [Zeno](https://zeno.fm/), [TuneYou](https://tuneyou.com/), [Tvradiotuner](https://tvradiotuner.com/), [Instant.audio](https://instant.audio/), [Radiodeck](https://www.radiodeck.com/), [VRadio](https://www.akouradio.com/), [WorldRadioMap](https://worldradiomap.com/), [Streema](https://streema.com/), [vTuner](https://vtuner.com/setupapp/guide/asp/BrowseStations/startpage.asp), [Radio.net](https://www.radio.net/), [TheOneStopRadio](https://theonestopradio.com/), [Radio Guide](https://www.radioguide.fm/), [Xiph](https://dir.xiph.org/), [raddio](https://raddio.net/), [WProject](https://wproject.vercel.app/), [ilovemusic](https://ilovemusic.de/), [0nRadio](https://www.0nradio.com/), [1a Radio](https://www.1aradio.com/)
|
||||
[iHeartRadio](https://www.iheart.com/), [BBC Radio](https://www.bbc.co.uk/sounds), [OnlineRadioBox](https://onlineradiobox.com/), [LiveOnlineRadio](https://liveonlineradio.net/), [WebSDR](http://www.websdr.org/), [System Bus Radio](https://fulldecent.github.io/system-bus-radio/), [myTuner](https://mytuner-radio.com/), [Radio Browser](https://www.radio-browser.info/), [Zeno](https://zeno.fm/), [TuneYou](https://tuneyou.com/), [Tvradiotuner](https://tvradiotuner.com/), [Instant.audio](https://instant.audio/), [Radiodeck](https://www.radiodeck.com/), [VRadio](https://www.akouradio.com/), [WorldRadioMap](https://worldradiomap.com/), [Streema](https://streema.com/), [vTuner](https://vtuner.com/setupapp/guide/asp/BrowseStations/startpage.asp), [Radio.net](https://www.radio.net/), [TheOneStopRadio](https://theonestopradio.com/), [Radio Guide](https://www.radioguide.fm/), [Xiph](https://dir.xiph.org/), [raddio](https://raddio.net/), [WProject](https://wproject.vercel.app/), [ilovemusic](https://ilovemusic.de/), [0nRadio](https://www.0nradio.com/), [1a Radio](https://www.1aradio.com/), [radioline](https://www.radioline.co/)
|
||||
|
||||
### Internet Radio
|
||||
|
||||
[deep-cut.fm](https://deep-cut.fm/), [CoreRadio](https://coreradio.online/listen), [RadioParadise](https://radioparadise.com/), [IndieSHuffle](https://www.indieshuffle.com/), [You42](https://www.you42.com/), [Jango](https://www.jango.com/), [RadioTunes](https://www.radiotunes.com/), [Live365](https://live365.com/), [AccuraRadio](https://www.accuradio.com/), [Radio.dubbeh](https://radio.dubbeh.net/), [Tilderadio](https://tilderadio.org/), [AnonRadio](https://anonradio.net/), [UpBeat](https://upbeatradio.net/) / [Discord](https://upbeat.pw/discord), [Radios.yt](https://radios.yt/), [SomaFM](https://somafm.com/), [ShoutCast](https://directory.shoutcast.com/), [Internet-Radio](https://internet-radio.com/), [Radiolise](https://radiolise.gitlab.io/), [JetSetRadio](https://jetsetradio.live/) / [2](https://jetsetradiofuture.live/), [Chiru.no](https://chiru.no/), [radio.uwu](https://radio.uwu.network/), [radcap](http://radcap.ru/), [Audiophile](https://audiophile.fm/), [NTS Radio](https://www.nts.live/) / [SoundCloud](https://soundcloud.com/user-643553014)
|
||||
[deep-cut.fm](https://deep-cut.fm/), [CoreRadio](https://coreradio.online/listen), [RadioParadise](https://radioparadise.com/), [IndieSHuffle](https://www.indieshuffle.com/), [You42](https://www.you42.com/), [Jango](https://www.jango.com/), [RadioTunes](https://www.radiotunes.com/), [Live365](https://live365.com/), [AccuraRadio](https://www.accuradio.com/), [Radio.dubbeh](https://radio.dubbeh.net/), [Tilderadio](https://tilderadio.org/), [AnonRadio](https://anonradio.net/), [UpBeat](https://upbeatradio.net/) / [Discord](https://upbeat.pw/discord), [Radios.yt](https://radios.yt/), [SomaFM](https://somafm.com/), [ShoutCast](https://directory.shoutcast.com/), [Internet-Radio](https://internet-radio.com/), [Radiolise](https://radiolise.gitlab.io/), [JetSetRadio](https://jetsetradio.live/) / [2](https://jetsetradiofuture.live/), [Chiru.no](https://chiru.no/), [radio.uwu](https://radio.uwu.network/), [radcap](http://radcap.ru/), [Audiophile](https://audiophile.fm/), [NTS Radio](https://www.nts.live/) / [SoundCloud](https://soundcloud.com/user-643553014), [You Radio](https://play.you.radio/)
|
||||
|
||||
***
|
||||
|
||||
## Random Generators
|
||||
|
||||
[perchance](https://perchance.org/generators), [Cool Generator](https://www.coolgenerator.com/), [The One Generator](https://theonegenerator.com/), [Random-Ize](https://random-ize.com/), [RANDOM](https://www.random.org/), [BestRandoms](https://www.bestrandoms.com/), [Randommer](https://randommer.io/), [Springhole](https://www.springhole.net/writing_roleplaying_randomators/index.html), [Wiizard Generator](https://wiizard-generator.neocities.org/), [randomix](https://github.com/m-i-n-a-r/randomix), [NumberGenerator](https://numbergenerator.org/), [Random Lists](https://www.randomlists.com/), [Random User Generator](https://randomuser.me/)
|
||||
* ⭐ **[RANDOM](https://www.random.org/)**
|
||||
|
||||
[perchance](https://perchance.org/generators), [Cool Generator](https://www.coolgenerator.com/), [The One Generator](https://theonegenerator.com/), [Random-Ize](https://random-ize.com/), [BestRandoms](https://www.bestrandoms.com/), [Randommer](https://randommer.io/), [Springhole](https://www.springhole.net/writing_roleplaying_randomators/index.html), [Wiizard Generator](https://wiizard-generator.neocities.org/), [randomix](https://github.com/m-i-n-a-r/randomix), [NumberGenerator](https://numbergenerator.org/), [Random Lists](https://www.randomlists.com/), [Random User Generator](https://randomuser.me/)
|
||||
|
||||
### Random Image Sites
|
||||
|
||||
[r.sine.com](https://r.sine.com/index), [Pretty Flix](https://cvines528.github.io/Pretty-Flix/), [Cameron.Red](https://cameron.red/imgur/), [Funnyjunk](https://funnyjunk.com/), [f0ck](https://f0ck.me/), [ImgFlip](https://imgflip.com/), [9Gag](https://9gag.com/), [Thread-Puller](https://thread-puller.party/), [IWasteSoMuchTime](https://www.iwastesomuchtime.com/), [iFunny](https://ifunny.co/), [KongouCheats](https://kongoucheats.com/), [RandomWaffle](https://randomwaffle.gbs.fm/), [Wimp.com](https://www.wimp.com/), [Heahy](https://www.heahy.com/), [z0r](https://z0r.de/)
|
||||
* ⭐ **[iFunny](https://ifunny.co/)**
|
||||
|
||||
[r.sine.com](https://r.sine.com/index), [Pretty Flix](https://cvines528.github.io/Pretty-Flix/), [Cameron.Red](https://cameron.red/imgur/), [Funnyjunk](https://funnyjunk.com/), [f0ck](https://f0ck.me/), [ImgFlip](https://imgflip.com/), [9Gag](https://9gag.com/), [Thread-Puller](https://thread-puller.party/), [IWasteSoMuchTime](https://www.iwastesomuchtime.com/), [KongouCheats](https://kongoucheats.com/), [RandomWaffle](https://randomwaffle.gbs.fm/), [Wimp.com](https://www.wimp.com/), [Heahy](https://www.heahy.com/), [z0r](https://z0r.de/)
|
||||
|
||||
***
|
||||
|
||||
|
|
@ -886,7 +881,12 @@
|
|||
|
||||
* ⭐ **[MVSEP](https://mvsep.com/)** / [Decrease Queue Time](https://pastebin.com/U9kTDigG)
|
||||
|
||||
[MDX23](https://github.com/jarredou/MVSEP-MDX23-Colab_v2), [VocalRemover](https://vocalremover.org/), [ultimatevocalremovergui](https://github.com/Anjok07/ultimatevocalremovergui) / [2](https://github.com/Anjok07/ultimatevocalremovergui/tree/v5-beta-cml), [PhonicMind](https://phonicmind.com/), [Ultimate Vocal Remover](https://colab.research.google.com/github/NaJeongMo/Colaboratory-Notebook-for-Ultimate-Vocal-Remover/blob/main/Vocal%20Remover%205_arch.ipynb), [x-minus](https://x-minus.pro/ai), [online-vocal-remover](https://www.notta.ai/en/tools/online-vocal-remover), [Remove Vocals](https://www.remove-vocals.com/), [vocali](https://vocali.se/en), [voxremover](https://voxremover.com/), [mazmazika](https://www.mazmazika.com/), [demixor](https://demixor.com/), [Ilaria_UVR](https://huggingface.co/spaces/TheStinger/Ilaria_UVR)
|
||||
[MDX23](https://github.com/jarredou/MVSEP-MDX23-Colab_v2), [VocalRemover](https://vocalremover.org/), [ultimatevocalremovergui](https://github.com/Anjok07/ultimatevocalremovergui) / [2](https://github.com/Anjok07/ultimatevocalremovergui/tree/v5-beta-cml), [PhonicMind](https://phonicmind.com/), [Ultimate Vocal Remover](https://colab.research.google.com/github/NaJeongMo/Colaboratory-Notebook-for-Ultimate-Vocal-Remover/blob/main/Vocal%20Remover%205_arch.ipynb), [x-minus](https://x-minus.pro/ai), [online-vocal-remover](https://www.notta.ai/en/tools/online-vocal-remover), [Remove Vocals](https://www.remove-vocals.com/) / [2](https://www.acapella-extractor.com/), [vocali](https://vocali.se/en), [voxremover](https://voxremover.com/), [mazmazika](https://www.mazmazika.com/), [demixor](https://demixor.com/), [Ilaria_UVR](https://huggingface.co/spaces/TheStinger/Ilaria_UVR)
|
||||
|
||||
|
||||
### Separate Voice / Instrumentals
|
||||
|
||||
* [Demucs](https://github.com/adefossez/demucs) / [Colab](https://colab.research.google.com/drive/1dC9nVxk3V_VPjUADsnFu8EiT-xnU1tGH?usp=s), [Vocal Remover](https://separatemusic.com/), [splitmysong](https://www.splitmysong.com/), [free-music-demixer](https://freemusicdemixer.com/), [Mikrotakt](https://mikrotakt.app/), [ezstems](https://ezstems.com/), [melody ml](https://melody.ml/)
|
||||
|
||||
***
|
||||
|
||||
|
|
@ -895,7 +895,7 @@
|
|||
* ⭐ **[NCS](https://ncs.io/)**
|
||||
* ⭐ **[YouTube Audio Library](https://www.youtube.com/audiolibrary)**
|
||||
|
||||
[FreePB](https://freepd.com/), [Free Music Archive](https://freemusicarchive.org/), [joshwoodward](https://www.joshwoodward.com/), [wowsound](https://wowsound.com/), [Pixabay Music](https://pixabay.com/music/), [audiomicro](https://www.audiomicro.com/), [Starfrosch](https://starfrosch.com/), [Mubert](https://mubert.com/), [ccHound](https://cchound.com/), [MusicScreen](https://www.musicscreen.org/), [FilmMusic](https://filmmusic.io/), [Fugue](https://icons8.com/music), [EDMRF](https://edmroyaltyfree.net/), [chosic](https://www.chosic.com/free-music/all/), [Anttis Instrumentals](https://www.gamedev.net/news/2000-instrumental-pieces-released-by-anttis-instrumentals-r1135/) / [Torrent](https://drive.google.com/open?id=0ByvAPNATAYsBR0FUczYzWHk3NEU), [Sampld](https://open.sampld.app/), [BLueFoxMusic](https://bluefoxmusic.com/), [ScottBuckley](https://www.scottbuckley.com.au/library/), [Creative Commons Jazz](https://jazz.mixremix.cc/), [tunetank](https://tunetank.com/), [audiolibrary](https://www.audiolibrary.com.co/), [purple-planet](https://www.purple-planet.com/), [freemusicpublicdomain](https://www.freemusicpublicdomain.com/), [Incompetech Music](https://incompetech.com/music/royalty-free/music.html)
|
||||
[FreePD](https://freepd.com/), [Free Music Archive](https://freemusicarchive.org/), [joshwoodward](https://www.joshwoodward.com/), [wowsound](https://wowsound.com/), [Pixabay Music](https://pixabay.com/music/), [audiomicro](https://www.audiomicro.com/), [Starfrosch](https://starfrosch.com/), [Mubert](https://mubert.com/), [ccHound](https://cchound.com/), [MusicScreen](https://www.musicscreen.org/), [FilmMusic](https://filmmusic.io/), [Fugue](https://icons8.com/music), [EDMRF](https://edmroyaltyfree.net/), [chosic](https://www.chosic.com/free-music/all/), [Anttis Instrumentals](https://www.gamedev.net/news/2000-instrumental-pieces-released-by-anttis-instrumentals-r1135/) / [Torrent](https://drive.google.com/open?id=0ByvAPNATAYsBR0FUczYzWHk3NEU), [Sampld](https://open.sampld.app/), [BLueFoxMusic](https://bluefoxmusic.com/), [ScottBuckley](https://www.scottbuckley.com.au/library/), [Creative Commons Jazz](https://jazz.mixremix.cc/), [tunetank](https://tunetank.com/), [audiolibrary](https://www.audiolibrary.com.co/), [purple-planet](https://www.purple-planet.com/), [freemusicpublicdomain](https://www.freemusicpublicdomain.com/), [Incompetech Music](https://incompetech.com/music/royalty-free/music.html)
|
||||
|
||||
***
|
||||
|
||||
|
|
@ -913,8 +913,10 @@
|
|||
## Site Legitimacy Check
|
||||
|
||||
* ⭐ **[URL Void](https://www.urlvoid.com/)**
|
||||
* ⭐ **[urlscan.io](https://urlscan.io/)**
|
||||
* ⭐ **[Trend Micro](https://global.sitesafety.trendmicro.com/)**
|
||||
|
||||
[ThreatStop](https://www.threatstop.com/check-ioc), [urlscan.io](https://urlscan.io/), [Scamadviser](https://www.scamadviser.com/), [IsLegitSite](https://www.islegitsite.com/), [scanurl](https://scanurl.net/), [Google Safe Browsing](https://transparencyreport.google.com/safe-browsing/search), [ZScaler](https://zulu.zscaler.com/), [Talos](https://talosintelligence.com/), [Trend Micro](https://global.sitesafety.trendmicro.com/), [ScamRate](https://www.scamrate.com/)
|
||||
[ThreatStop](https://www.threatstop.com/check-ioc), [Scamadviser](https://www.scamadviser.com/), [IsLegitSite](https://www.islegitsite.com/), [Google Safe Browsing](https://transparencyreport.google.com/safe-browsing/search), [ZScaler](https://zulu.zscaler.com/), [Talos](https://talosintelligence.com/), [ScamRate](https://www.scamrate.com/)
|
||||
|
||||
***
|
||||
|
||||
|
|
@ -983,7 +985,6 @@
|
|||
* [9animetv](https://9animetv.to/)
|
||||
* [anicrush](https://anicrush.to/)
|
||||
* [aniwatchtv](https://aniwatchtv.to/)
|
||||
* [9anime.pe](https://9anime.pe/)
|
||||
|
||||
***
|
||||
|
||||
|
|
@ -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)
|
||||
|
||||
|
|
@ -1001,18 +1003,19 @@
|
|||
## SVG Icons
|
||||
|
||||
* 🌐 **[Awesome Icons](https://github.com/notlmn/awesome-icons)**, **[Awesome Stock Resources](https://github.com/neutraltone/awesome-stock-resources#icons)** or **[Free Icons](https://www.iconshock.com/freeicons/)** - Icon Indexes
|
||||
* ⭐ **[Iconify](https://iconify.design/)** / [Premium Unlock](https://github.com/Kyutefox/Iconify)
|
||||
* ⭐ **[icons8](https://icons8.com/icons)**
|
||||
* ⭐ **[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/), [Iconify](https://iconify.design/) / [Extension](https://github.com/Kyutefox/Iconify), [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/)
|
||||
[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/)
|
||||
|
||||
***
|
||||
|
||||
## Switch ROMs
|
||||
|
||||
* [RUTracker Switch](https://rutracker.org/forum/viewforum.php?f=1605) - Use VPN
|
||||
* ⭐ **[RUTracker Switch](https://rutracker.org/forum/viewforum.php?f=1605)** - Use VPN
|
||||
* [NXBrew](https://nxbrew.com/) / Scroll past Download Setup buttons
|
||||
* [Ziperto](https://ziperto.com/) / Avoid [Fake](https://ibb.co/wWJbkX6) Buttons / [Discord](https://discord.gg/VgZ66bM87u)
|
||||
* [nsw2u](https://nsw2u.com/), [2](https://nsw2u.net/)
|
||||
|
|
@ -1026,8 +1029,9 @@
|
|||
## Tab Managers
|
||||
|
||||
* ⭐ **[Sidebery](https://github.com/mbnuqw/sidebery)**
|
||||
* ⭐ **[Simple Tab Groups](https://github.com/drive4ik/simple-tab-groups)**
|
||||
|
||||
[OneTab](https://www.one-tab.com/), [Tab Center Reborn](https://framagit.org/ariasuni/tabcenter-reborn), [Simple Tab Groups](https://github.com/drive4ik/simple-tab-groups), [Tab Stash](https://josh-berry.github.io/tab-stash/), [Tab Butler](https://tabbutler.netlify.app/), [One Tab Group](https://www.onetab.group/), [TreeStyleTabs](https://github.com/piroor/treestyletab)
|
||||
[OneTab](https://www.one-tab.com/), [Tab Center Reborn](https://framagit.org/ariasuni/tabcenter-reborn), [Tab Stash](https://josh-berry.github.io/tab-stash/), [Tab Butler](https://tabbutler.netlify.app/), [One Tab Group](https://www.onetab.group/), [TreeStyleTabs](https://github.com/piroor/treestyletab)
|
||||
|
||||
***
|
||||
|
||||
|
|
@ -1111,10 +1115,11 @@
|
|||
* [udemy-downloader](https://github.com/Puyodead1/udemy-downloader) - Udemy Downloader
|
||||
* [Udemy Download Guide](https://docs.google.com/document/d/1W91OS9rj7h9DBp5UwR68lA2zMEtqNmxdGaNVmBktIaw/) - [Discord](https://discord.gg/tMzrSxQ)
|
||||
|
||||
[discudemy](https://www.discudemy.com/), [bestcouponhunter](https://bestcouponhunter.com/), [BARONIP COUPONS](https://baronip-coupons.blogspot.com/), [freebiesglobal](https://freebiesglobal.com/), [onlinecourses](https://www.onlinecourses.ooo/), [cursosdev](https://cursosdev.com/), [100offdeal](https://100offdeal.online/), [UdemyKing](https://t.me/udemyking1), [CourseArray](https://t.me/udemycoursesfree), [Giga Course](https://gigacourse.com/), [Udemy 24](https://udemy24.com/), [Download Online Tutorials Free](https://www.howtofree.org/), [UdemyFreeCourses](https://udemyfreecourses.org/), [Study Bullet](https://studybullet.com/) / [Telegram](https://telegram.me/joinchat/AAAAAFdxBDqPv7ZzVoUASw), [TutsNode](https://tutsnode.org/), [/r/udemyfreebies](https://reddit.com/r/udemyfreebies), [Online Courses Tracker](https://comidoc.net/), [Techlinks](https://www.techlinks.in/udemy-free-coupons), [Real.Discount](https://www.real.discount/), [OnlineTutorials](https://www.onlinetutorials.org/)
|
||||
[discudemy](https://www.discudemy.com/), [bestcouponhunter](https://bestcouponhunter.com/), [BARONIP COUPONS](https://baronip-coupons.blogspot.com/), [freebiesglobal](https://freebiesglobal.com/), [onlinecourses](https://www.onlinecourses.ooo/), [UdemyKing](https://t.me/udemyking1), [CourseArray](https://t.me/udemycoursesfree), [Giga Course](https://gigacourse.com/), [Udemy 24](https://udemy24.com/), [Download Online Tutorials Free](https://www.howtofree.org/), [UdemyFreeCourses](https://udemyfreecourses.org/), [Study Bullet](https://studybullet.com/) / [Telegram](https://telegram.me/joinchat/AAAAAFdxBDqPv7ZzVoUASw), [/r/udemyfreebies](https://reddit.com/r/udemyfreebies), [Online Courses Tracker](https://comidoc.net/), [Techlinks](https://www.techlinks.in/udemy-free-coupons), [Real.Discount](https://www.real.discount/), [OnlineTutorials](https://www.onlinetutorials.org/)
|
||||
|
||||
### 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)
|
||||
|
|
@ -1140,7 +1145,11 @@
|
|||
|
||||
### Simple Site Creators
|
||||
|
||||
[Straw.Page](https://straw.page/), [Own Free Website](https://www.own-free-website.com), [itty.bitty](https://itty.bitty.site/), [mmm](https://build.mmm.page/), [cargo](https://cargo.site/), [Jigsy](https://jigsy.com/), [Temper](https://temper.one/), [Neocities](https://neocities.org/), [Mobirise](https://mobirise.com/), [Silex](https://www.silex.me/), [Publii](https://getpublii.com/), [Eleventy](https://11ty.dev/), [nekoweb](https://nekoweb.org/), [Kinsta](https://kinsta.com/static-site-hosting/), [Pelican](https://getpelican.com/), [Lexi's Hosting](https://hosting.lexiqqq.com/), [Reocities](https://www.reocities.xyz/), [yay.boo](https://yay.boo/), [Web 1.0 Hosting](http://web1.0hosting.net/)
|
||||
* ⭐ **[Neocities](https://neocities.org/)**
|
||||
* ⭐ **[nekoweb](https://nekoweb.org/)**
|
||||
* ⭐ **[Eleventy](https://11ty.dev/)**
|
||||
|
||||
[Straw.Page](https://straw.page/), [Own Free Website](https://www.own-free-website.com), [itty.bitty](https://itty.bitty.site/), [mmm](https://build.mmm.page/), [cargo](https://cargo.site/), [Jigsy](https://jigsy.com/), [Temper](https://temper.one/), [Mobirise](https://mobirise.com/), [Silex](https://www.silex.me/), [Publii](https://getpublii.com/), [Kinsta](https://kinsta.com/static-site-hosting/), [Pelican](https://getpelican.com/), [Lexi's Hosting](https://hosting.lexiqqq.com/), [Reocities](https://www.reocities.xyz/), [yay.boo](https://yay.boo/), [Web 1.0 Hosting](http://web1.0hosting.net/)
|
||||
|
||||
***
|
||||
|
||||
|
|
@ -1148,13 +1157,13 @@
|
|||
|
||||
* [Boilerplate](https://html5boilerplate.com/) - Website Frontend Template HTML5
|
||||
|
||||
[Bootstrap](https://bootstrapmade.com/), [TheMeWagon](https://themewagon.com/), [nicepage](https://nicepage.com/website-templates), [Templatemo](https://www.templatemo.com/), [Tooplate](https://www.tooplate.com/), [CSS Bed](https://www.cssbed.com/), [Repth Themes](https://repth.neocities.org/theme), [beercss](https://www.beercss.com/) / [GitHub](https://github.com/beercss/beercss), [free-css-templates](https://www.free-css.com/free-css-templates), [zerotheme](https://www.zerotheme.com/), [html5up](https://html5up.net/), [templated](https://templated.co/), [html5xcss3](https://www.html5xcss3.com/)
|
||||
[Bootstrap](https://bootstrapmade.com/), [TheMeWagon](https://themewagon.com/), [nicepage](https://nicepage.com/website-templates), [Templatemo](https://www.templatemo.com/), [Tooplate](https://www.tooplate.com/), [CSS Bed](https://www.cssbed.com/), [Repth Themes](https://repth.neocities.org/theme), [beercss](https://www.beercss.com/) / [GitHub](https://github.com/beercss/beercss), [free-css-templates](https://www.free-css.com/free-css-templates), [html5up](https://html5up.net/), [templated](https://templated.co/), [html5xcss3](https://www.html5xcss3.com/)
|
||||
|
||||
***
|
||||
|
||||
## WordPress Themes
|
||||
|
||||
[gpldl](https://gpldl.com/), [wplocker](https://www.wplocker.com/), [Weadown](https://weadown.com/), [Mega Drive](https://rentry.co/FMHYBase64#wordpress-themes), [babiato](https://babia.to/), [newtemplate](https://newtemplate.net/), [justfreewpthemes](https://justfreewpthemes.com/), [themesplugins](https://themesplugins.club/), [wpthemesandplugins](https://t.me/wpthemesandplugins)
|
||||
[gpldl](https://gpldl.com/), [wplocker](https://www.wplocker.com/), [Weadown](https://weadown.com/), [Mega Drive](https://rentry.co/FMHYBase64#wordpress-themes), [babiato](https://babia.to/), [newtemplate](https://newtemplate.net/), [themesplugins](https://themesplugins.club/), [wpthemesandplugins](https://t.me/wpthemesandplugins)
|
||||
|
||||
***
|
||||
|
||||
|
|
|
|||
|
|
@ -14,7 +14,7 @@
|
|||
* 🌐 **[PC-Optimization-Hub](https://github.com/BoringBoredom/PC-Optimization-Hub)** - System Optimization Resources
|
||||
* ↪️ **[Gaming Optimization](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/game-tools#wiki_.25B7_optimization_tools)**
|
||||
* ⭐ **[PowerToys](https://learn.microsoft.com/en-us/windows/powertoys/)** / [Search](https://github.com/lin-ycv/EverythingPowerToys) or [Sysinternals](https://learn.microsoft.com/en-us/sysinternals/) / [Suite](https://apps.microsoft.com/store/detail/sysinternals-suite/9P7KNL5RWT25) - System Tools
|
||||
* ⭐ **[CPU-Z](https://www.cpuid.com/softwares/cpu-z.html)**, [winfetch](https://github.com/lptstr/winfetch), [CPU Fetch](https://github.com/Dr-Noob/cpufetch) or [GPU-Z](https://www.techpowerup.com/download/techpowerup-gpu-z/) - System Information Tools
|
||||
* ⭐ **[CPU-Z](https://www.cpuid.com/softwares/cpu-z.html)**, [winfetch](https://github.com/lptstr/winfetch), [CPU Fetch](https://github.com/Dr-Noob/cpufetch), [Glow](https://github.com/turkaysoftware/glow) or [GPU-Z](https://www.techpowerup.com/download/techpowerup-gpu-z/) - System Info Tools
|
||||
* ⭐ **[SuperF4](https://stefansundin.github.io/superf4/)** or [FKill](https://github.com/sindresorhus/fkill-cli) - Process Killers
|
||||
* ⭐ **[AutoHotkey](https://www.autohotkey.com/)** - Task Automation / [Discord](https://discord.com/invite/Aat7KHmG7v) / [Script Gen](https://www.ahkgen.com/) / [Resources](https://github.com/ahkscript/awesome-AutoHotkey)
|
||||
* [VCRedist](https://github.com/abbodi1406/vcredist) - AIO Repack for Microsoft Visual C++ Redists
|
||||
|
|
@ -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
|
||||
|
|
@ -81,7 +81,7 @@
|
|||
|
||||
## ▷ Package Managers
|
||||
|
||||
* ⭐ **[WinGet](https://github.com/microsoft/winget-cli)** CLI Package Manager
|
||||
* ⭐ **[WinGet](https://github.com/microsoft/winget-cli)** - CLI Package Manager
|
||||
* ⭐ **WinGet Tools** - [Repo Browser](https://winstall.app/) / [Automation](https://github.com/topgrade-rs/topgrade) / [Auto Updates](https://github.com/Romanitho/Winget-AutoUpdate)
|
||||
* ⭐ **[Scoop](https://scoop.sh/)** - CLI Package Manager
|
||||
* ⭐ **[UniGetUI](https://github.com/marticliment/WingetUI)** - GUI for Popular Package Managers
|
||||
|
|
@ -118,29 +118,26 @@
|
|||
|
||||
## ▷ Remote Desktop
|
||||
|
||||
* ⭐ **[RustDesk](https://rustdesk.com/)** - FOSS Remote Desktop / [GitHub](https://github.com/rustdesk/rustdesk)
|
||||
* ⭐ **[Parsec](https://parsec.app/)**
|
||||
* [RealVNC](https://www.realvnc.com/en/) - Max 3, Multi-OS Support
|
||||
* [FreeRDP](https://www.freerdp.com/)
|
||||
* [Remotly](https://remotly.com/)
|
||||
* [Aspia](https://aspia.org/)
|
||||
* [ChromeRemoteDesktop](https://remotedesktop.google.com/)
|
||||
* [TightVNC](https://www.tightvnc.com/)
|
||||
* [remoteutilities](https://www.remoteutilities.com/)
|
||||
* [p2p](https://github.com/miroslavpejic85/p2p)
|
||||
* [UVNC](https://uvnc.com/)
|
||||
* [ChimeraDesk](https://github.com/morrolinux/ChimeraDesk)
|
||||
* [PowerRemoteDesktop](https://github.com/PhrozenIO/PowerRemoteDesktop)
|
||||
* [Screego](https://app.screego.net/) / [GitHub](https://github.com/screego/server/)
|
||||
* [Screensy](https://screensy.marijn.it/) / [GitHub](https://github.com/screensy/screensy)
|
||||
* [HopToDesk](https://www.hoptodesk.com/)
|
||||
* [CoScreen](https://www.coscreen.co/)
|
||||
* [TigerVNC](https://tigervnc.org/) - VNC
|
||||
* [noVNC](https://novnc.com/info.html) - JavaScript VNC
|
||||
* [InputDirector](https://www.inputdirector.com/) - Multi-Computer
|
||||
* [Barrier](https://github.com/debauchee/barrier) - Multi-Computer
|
||||
* [Mouse Without Borders](https://www.microsoft.com/en-us/garage/wall-of-fame/mouse-without-borders/) - Multi-Computer
|
||||
* [Nebula](https://github.com/slackhq/nebula) - Multi-Computer
|
||||
* ⭐ **[Parsec](https://parsec.app/)** - Desktop Client
|
||||
* ⭐ **[RustDesk](https://rustdesk.com/)** - Desktop Client / [GitHub](https://github.com/rustdesk/rustdesk)
|
||||
* ⭐ **[Aspia](https://aspia.org/)** - Desktop Client / [GitHub](https://github.com/dchapyshev/aspia)
|
||||
* ⭐ **[Sunshine](https://app.lizardbyte.dev/Sunshine/)** or [Moonlight](https://moonlight-stream.org/) - Gaming Remote Desktop Client
|
||||
* [Arcane](https://github.com/PhrozenIO/Arcane) - Desktop Client
|
||||
* [ChimeraDesk](https://github.com/morrolinux/ChimeraDesk) - Desktop Client
|
||||
* [HopToDesk](https://www.hoptodesk.com/) - Desktop Client / [GitLab](https://gitlab.com/hoptodesk/hoptodesk)
|
||||
* [CoScreen](https://www.coscreen.co/) - Desktop Client
|
||||
* [Remotly](https://remotly.com/) - Desktop Client
|
||||
* [Screensy](https://screensy.marijn.it/) - Web-Based / [GitHub](https://github.com/screensy/screensy)
|
||||
* [ChromeRemoteDesktop](https://remotedesktop.google.com/) - Web-Based
|
||||
* [InputDirector](https://www.inputdirector.com/) - Multi-Computer Client
|
||||
* [Barrier](https://github.com/debauchee/barrier) - Multi-Computer Client
|
||||
* [Mouse Without Borders](https://www.microsoft.com/en-us/garage/wall-of-fame/mouse-without-borders/) - Multi-Computer Client
|
||||
* [Nebula](https://github.com/slackhq/nebula) - Multi-Computer Client
|
||||
* [p2p](https://github.com/miroslavpejic85/p2p) - Portable Client
|
||||
* [Screego](https://app.screego.net/) - Screen Sharing / [GitHub](https://github.com/screego/server/)
|
||||
* [TigerVNC](https://tigervnc.org/) - VNC Client
|
||||
* [TightVNC](https://www.tightvnc.com/) - VNC Client
|
||||
* [noVNC](https://novnc.com/info.html) - JavaScript VNC Client
|
||||
|
||||
***
|
||||
|
||||
|
|
@ -169,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/) / [AMD Guide](https://chefkissinc.github.io/guide) / [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
|
||||
|
|
@ -195,7 +197,7 @@
|
|||
* [NotCPUCores](https://github.com/rcmaehl/NotCPUCores), [ParkControl](https://bitsum.com/parkcontrol/), [QuickCPU](https://coderbag.com/product/quickcpu) or [Process Lasso](https://bitsum.com/) - CPU Optimizer
|
||||
* [Ozone3D](https://www.ozone3d.net/index_softwares.php) or [OCCT](https://www.ocbase.com/occt/personal ) - System Benchmarking
|
||||
* [Testmem5](https://www.overclock.net/threads/memory-testing-with-testmem5-tm5-with-custom-configs.1751608/) - Memory Benchmarking
|
||||
* [SDIO](https://glenn.delahoy.com/snappy-driver-installer-origin), [Drivers Collection](https://driverscollection.com/), [Driverscape](https://www.driverscape.com/) or [DriverStoreExplorer](https://github.com/lostindark/DriverStoreExplorer) - Update / Install Missing Drivers
|
||||
* [SDIO](https://glenn.delahoy.com/snappy-driver-installer-origin), [Drivers Collection](https://driverscollection.com/), [Driverscape](https://www.driverscape.com/) or [DriverStoreExplorer](https://github.com/lostindark/DriverStoreExplorer) - Update / Install Missing Drivers / [Note](https://pastebin.com/TE3CVHfN)
|
||||
* [VOGONS](https://www.vogons.org/) - Vintage Computer Hardware Forum
|
||||
|
||||
***
|
||||
|
|
@ -309,7 +311,7 @@
|
|||
|
||||
## ▷ System Audio
|
||||
|
||||
* ⭐ **[Equalizer APO](https://equalizerapo.com/)**, **[AutoEq](https://autoeq.app/)**, [PeaceEqualizer](https://sourceforge.net/projects/peace-equalizer-apo-extension/) or [FXSound](https://www.fxsound.com/) - Audio Equalizers
|
||||
* ⭐ **[Equalizer APO](https://equalizerapo.com/)**, **[AutoEq](https://autoeq.app/)**, [PeaceEqualizer](https://sourceforge.net/projects/peace-equalizer-apo-extension/), [Dolby Access](https://apps.microsoft.com/detail/9n0866fs04w8) / [Note](https://pastebin.com/itqerXx2) or [FXSound](https://www.fxsound.com/) - Audio Equalizers
|
||||
* [Wave Link](https://help.elgato.com/hc/en-us/articles/360044566172-Wave-Link-First-Time-Setup-for-Windows-10) or [VoiceMeeter](https://vb-audio.com/Voicemeeter/index.htm) / [Banana](https://vb-audio.com/Voicemeeter/banana.htm) - Audio Mixers / Multi-Device Playback
|
||||
* [SoundSwitch](https://soundswitch.aaflalo.me/) - Switch Audio Device with Hotkey / [GitHub](https://github.com/Belphemur/SoundSwitch)
|
||||
* [SonyHeadphonesClient](https://github.com/Plutoberth/SonyHeadphonesClient) - Sony Headphones Clone
|
||||
|
|
@ -338,6 +340,7 @@
|
|||
## ▷ USB / Bootloaders
|
||||
|
||||
* ⭐ **[Rufus](https://rufus.ie/)** - Create Bootable USB Drives
|
||||
* [YUMI](https://pendrivelinux.com/yumi-multiboot-usb-creator/) - Create Bootable USB Drives
|
||||
* [MediaCreationTool](https://github.com/AveYo/MediaCreationTool.bat) - Windows Deployment Automation
|
||||
* [balenaEtcher](https://etcher.balena.io/) - Flash OS Image SD / USB / Non-Windows OS
|
||||
* [CloverBootloader](https://github.com/CloverHackyColor/CloverBootloader/) or [EasyBCD](https://neosmart.net/EasyBCD/) - Bootloaders / [Config](https://mackie100projects.altervista.org/)
|
||||
|
|
@ -403,7 +406,7 @@
|
|||
* [TranslucentTB](https://github.com/TranslucentTB/TranslucentTB) - Translucent Windows Taskbar
|
||||
* [ExplorerBlurMica](https://github.com/Maplespe/ExplorerBlurMica) - Blur / Acrylic Effect for File Explorer
|
||||
* [RetroBar](https://github.com/dremin/RetroBar) - Retro Classic Taskbars
|
||||
* [StartIsBack](https://www.startisback.com/) or [StartAllBack](https://www.startallback.com/) - Restore Classic Start Menu in Win 10/11 / [Unlock](https://rentry.co/FMHYBase64#start-back)
|
||||
* [StartIsBack](https://www.startisback.com/) or [StartAllBack](https://www.startallback.com/) - Restore Classic Start Menu in Win 10/11 / [Extra Features](https://rentry.co/FMHYBase64#start-back)
|
||||
* [Modern Flyouts](https://apps.microsoft.com/store/detail/modernflyouts-preview/9MT60QV066RP) - Modern Context Menus / [GitHub](https://github.com/ModernFlyouts-Community/ModernFlyouts)
|
||||
|
||||
***
|
||||
|
|
@ -417,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
|
||||
|
|
@ -449,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
|
||||
|
|
|
|||
|
|
@ -48,7 +48,6 @@
|
|||
* [Paste.ee](https://paste.ee/) - Multi-Syntax / Markdown Support
|
||||
* [pst.moe](https://pst.moe/) - Multi-Syntax / Markdown Support / [Source](https://git.fuwafuwa.moe/lesderid/pastethingy)
|
||||
* [dpaste.com](https://dpaste.com/) - Multi-Syntax / Markdown Support
|
||||
* [pastebin.ai](https://pastebin.ai/) - Multi-Syntax / Markdown Support
|
||||
* [Pastebin.com](https://pastebin.com/) - Multi-Syntax
|
||||
* [pasteheaven.com](https://pasteheaven.com/) - Multi-Syntax
|
||||
* [paste.fo](https://paste.fo/) - Multi-Syntax
|
||||
|
|
@ -74,7 +73,7 @@
|
|||
***
|
||||
|
||||
* ⭐ **[DeepLX](https://github.com/OwO-Network/DeepLX)** or [DeepL](https://www.deepl.com/translator)
|
||||
* ⭐ **[Google Translate](https://translate.google.com/)** / [API](https://github.com/vitalets/google-translate-api) or [GTranslate](https://git.sr.ht/~yerinalexey/gtranslate)
|
||||
* ⭐ **[Google Translate](https://translate.google.com/)** / [API](https://github.com/vitalets/google-translate-api), [Lingva Translate](https://github.com/TheDavidDelta/lingva-translate) or [GTranslate](https://git.sr.ht/~yerinalexey/gtranslate)
|
||||
* ⭐ **[/r/Translator](https://www.reddit.com/r/translator/)** - Translation Request Community
|
||||
* ⭐ **[Translate Web Pages](https://github.com/FilipePS/Traduzir-paginas-web)** - Browser Extension
|
||||
* [Mozhi](https://translate.bus-hit.me/) - Multi Translator Frontend
|
||||
|
|
@ -120,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/) / [Opera](https://addons.opera.com/en/extensions/details/base64-encode-and-decode/)
|
||||
* ⭐ **[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/)
|
||||
|
||||
***
|
||||
|
||||
|
|
@ -150,8 +149,8 @@
|
|||
|
||||
## ▷ Text Rephrasing
|
||||
|
||||
* ⭐ **[QuillBot AI](https://quillbot.com/)** - AI-Enhanced Text Rephrasing
|
||||
* ⭐ **[Paraphrasetool](https://paraphrasetool.com/)** or [Rephrasely](https://rephrasely.com/) - AI Text Rephrasing /Generation
|
||||
* ⭐ **[QuillBot AI](https://quillbot.com/)** or [Rewritify](https://www.rewritify.com/) - AI-Enhanced Text Rephrasing
|
||||
* ⭐ **[Paraphrasetool](https://paraphrasetool.com/)** or [Rephrasely](https://rephrasely.com/) - AI Text Rephrasing / Generation
|
||||
* ⭐ **[Goblin.tools](https://goblin.tools/)** - Transform Text with Spiciness Levels
|
||||
* [Paraphraser](https://www.paraphraser.io/) - Multilingual Text Rephrasing
|
||||
* [Recast](https://www.letsrecast.ai/) or [SMMRY](https://smmry.com/) - Text Summaries
|
||||
|
|
@ -185,8 +184,7 @@
|
|||
* [FancySymbol](https://fancysymbol.com/)
|
||||
* [Unifoundry](https://unifoundry.com/)
|
||||
* [Cool Symbol](https://coolsymbol.com/)
|
||||
* [FastEmoji](https://www.fastemoji.com/), [Text Smileys](https://lenny-face-generator.textsmilies.com/) or [textfac.es](https://textfac.es/) - Unicode Emojis
|
||||
|
||||
* [FastEmoji](https://www.fastemoji.com/), [GetSymbol](https://www.getsymbol.net/) / [2](https://www.cute-kaomoji.com/), [Text Smileys](https://lenny-face-generator.textsmilies.com/) or [textfac.es](https://textfac.es/) - Unicode Emojis
|
||||
|
||||
***
|
||||
|
||||
|
|
@ -215,7 +213,7 @@
|
|||
* ↪️ **[Code Editors / IDEs](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/dev-tools#wiki_.25B7_ides_.2F_code_editors)**
|
||||
* ⭐ **[Notepad++](https://notepad-plus-plus.org/)** / [Markdown](https://nea.github.io/MarkdownViewerPlusPlus/) - Notepad & Code Editor
|
||||
* ⭐ **[Obsidian](https://obsidian.md/)** - Markdown Note-Taking
|
||||
* ⭐ **Obsidian Tools** - [Discord](https://discord.gg/obsidianmd) / [Resources](https://github.com/kmaasrud/awesome-obsidian) / [Share Notes](https://noteshare.space/) / [Publish Notes](https://github.com/oleeskild/obsidian-digital-garden) / [Live Sync](https://github.com/vrtmrz/obsidian-livesync) / [Gdrive Sync](https://github.com/stravo1/obsidian-gdrive-sync) / [Backup](https://github.com/denolehov/obsidian-git) / [ChatGPT Addon](https://github.com/logancyang/obsidian-copilot), [2](https://github.com/vasilecampeanu/obsidian-weaver)
|
||||
* ⭐ **Obsidian Tools** - [Discord](https://discord.gg/obsidianmd) / [Resources](https://github.com/kmaasrud/awesome-obsidian) / [Share Notes](https://noteshare.space/) / [Publish Notes](https://github.com/oleeskild/obsidian-digital-garden) / [Web Clipper](https://github.com/obsidianmd/obsidian-clipper) / [Live Sync](https://github.com/vrtmrz/obsidian-livesync) / [Gdrive Sync](https://github.com/stravo1/obsidian-gdrive-sync) / [Backup](https://github.com/denolehov/obsidian-git) / [ChatGPT Addon](https://github.com/logancyang/obsidian-copilot), [2](https://github.com/vasilecampeanu/obsidian-weaver)
|
||||
* ⭐ **[Notion](https://www.notion.so/)** - Note-Taking
|
||||
* ⭐ **Notion Tools** - [Themes](https://notionthemes.yudax.me/) / [Templates](https://notionpages.com/) / [Resources](https://www.notioneverything.com/notion-world), [2](https://chief-ease-8ab.notion.site/List-of-200-Notion-Resources-e1b46cd365094265bd47b8a2b25bb41e) / [Guide](https://easlo.notion.site/Notion-Beginner-to-Advanced-8a492960b049433289c4a8d362204d20) / [Markdown Extractor](https://github.com/souvikinator/notion-to-md)
|
||||
* ⭐ **[Notesnook](https://notesnook.com/)** - Note-Taking
|
||||
|
|
@ -229,7 +227,6 @@
|
|||
* [Simplenote](https://simplenote.com/) - Crossplatform Note-Taking
|
||||
* [Butterfly](https://docs.butterfly.linwood.dev/) - Handwritten Notes / [Discord](https://discord.com/invite/97zFtYN) / [GitHub](https://github.com/LinwoodDev/Butterfly)
|
||||
* [EncryptPad](https://evpo.net/encryptpad/) - Encrypted Text Editor
|
||||
* [NotebookLM](https://notebooklm.google/) or [Raven](https://www.ravenotes.com/) - AI Note-Taking
|
||||
* [Xournal++](https://xournalpp.github.io/) - Handwritten Notes / [GitHub](https://github.com/xournalpp/xournalpp)
|
||||
* [Notepads](https://www.notepadsapp.com/) - Text Editor
|
||||
* [Xed](https://github.com/linuxmint/xed) - GTK3 Text Editor
|
||||
|
|
@ -261,13 +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) / [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)
|
||||
* [Custom Office](https://gravesoft.dev/office_c2r_custom) - FOSS Office Suite
|
||||
* ⭐ **[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
|
||||
|
||||
***
|
||||
|
|
@ -373,7 +370,7 @@
|
|||
|
||||
* 🌐 **[Author Stash](https://authorstash.com/)** - Writing Tools / Resources
|
||||
* ↪️ **[AI Text Generators](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/ai#wiki_.25BA_text_generators)**
|
||||
* ⭐ **[Writer](https://www.gibney.org/writer)**, [FocusWriter](https://gottcode.org/focuswriter/), [Writemonkey](https://writemonkey.com/), [blank.page](https://blank.page/), [Telegra.ph](https://telegra.ph/) or [WriteNext](https://www.writenext.io/) - Distraction-Free Writing
|
||||
* ⭐ **[Writer](https://www.gibney.org/writer)**, [FocusWriter](https://gottcode.org/focuswriter/), [Writemonkey](https://writemonkey.com/), [blank.page](https://blank.page/), [Telegra.ph](https://telegra.ph/), [Write.as](https://write.as/) or [WriteNext](https://www.writenext.io/) - Distraction-Free Writing
|
||||
* ⭐ **[Manuskript](https://www.theologeek.ch/manuskript/)** - Writing Organizer / Planner
|
||||
* ⭐ **[NovelWriter](https://novelwriter.io/)** or [Bibisco](https://bibisco.com/) - Novel Editors
|
||||
* ⭐ **[Linked](https://uselinked.com/)**, [journaltxt](https://journaltxt.github.io/), [Gekri](https://gekri.com/), [Microsoft Journal](https://www.microsoft.com/en-us/garage/profiles/journal/), [Diarium](https://diariumapp.com/), [Gemlog](https://gemlog.blue/) or [jrnl.sh](https://jrnl.sh/) - Journal Apps / [Songs](https://deardiary.ai/)
|
||||
|
|
@ -571,8 +568,8 @@
|
|||
* [WhatIsIt](https://babelstone.co.uk/Unicode/whatisit.html) or [ShapeCatcher](https://shapecatcher.com/) - Unicode Identification
|
||||
* [coolfont](https://coolfont.org/)
|
||||
* [Font Meme](https://fontmeme.com/)
|
||||
* [FontMaker](https://fontmaker.io/)
|
||||
* [Font Generator Online](https://www.fontgeneratoronline.com/)
|
||||
* [Getfancy](https://getfancy.io/)
|
||||
* [DiscordFonts](https://lingojam.com/DiscordFonts)
|
||||
* [MessLetters](https://www.messletters.com/)
|
||||
* [Fancy Text](https://fancy-text.net/)
|
||||
|
|
|
|||
|
|
@ -101,8 +101,8 @@
|
|||
* ⭐ **[Deluge](https://www.deluge-torrent.org/)** - [Plugins](https://dev.deluge-torrent.org/wiki/Plugins) / [Config](https://github.com/ratanakvlun/deluge-ltconfig/releases) / [Telegram Plugin](https://github.com/noam09/deluge-telegramer)
|
||||
* ⭐ **[Transmission](https://transmissionbt.com/)**
|
||||
* [torrent-control](https://github.com/Mika-/torrent-control) or [Remote Torrent Adder](https://github.com/bogenpirat/remote-torrent-adder) - Easily Send Torrents to Client
|
||||
* [Tixati](https://tixati.com/)
|
||||
* [Motrix](https://motrix.app/) / [GitHub](https://github.com/agalwood/Motrix)
|
||||
* [Tixati](https://tixati.com/)
|
||||
* [WizTorrent](https://wiztorrent.com/) / Torrent Player / WebShare
|
||||
* [Picotorrent](https://picotorrent.org/)
|
||||
* [BiglyBT](https://www.biglybt.com/)
|
||||
|
|
@ -125,7 +125,8 @@
|
|||
* 🌐 **[QBT Plugins](https://github.com/qbittorrent/search-plugins?tab=readme-ov-file#search-plugins)** - Plugins Index
|
||||
* 🌐 **[QBT Themes](https://github.com/qbittorrent/qBittorrent/wiki/List-of-known-qBittorrent-themes)** - Themes Index
|
||||
* [qBitMF](https://github.com/qBitMF/qBitMF) - Multi-Connection Tool
|
||||
* [VueTorrent](https://github.com/WDaan/VueTorrent) - Web Clients
|
||||
* [VueTorrent](https://github.com/WDaan/VueTorrent) - Web Client
|
||||
* [rqBit](https://github.com/ikatson/rqbit/) - Rust Client
|
||||
* [qBitController](https://github.com/Bartuzen/qBitController) - Mobile Controllers
|
||||
* [Docker QBT](https://github.com/linuxserver/docker-qbittorrent) or [QBT VPN](https://github.com/binhex/arch-qbittorrentvpn) - Docker Builds
|
||||
* [QBT Mega](https://colab.research.google.com/github/Xavy-13/qbittorrent/blob/main/qBittorrent_MEGA.ipynb) - Mega Upload Script
|
||||
|
|
@ -157,7 +158,7 @@
|
|||
|
||||
* 🌐 **[Private Trackers General](https://rentry.co/private-trackers)** - Private Tracker Guides
|
||||
* 🌐 **[Scene Related](https://opentrackers.org/links/warez-scene/#scenerelated)** - Warez / Scene Site Index
|
||||
* ⭐ **[The Sheet](https://inviteroute.github.io/sheet/)** or [Graph](https://inviteroute.github.io/graph/) - Private Tracker Guides
|
||||
* ⭐ **[/r/TrackersInfo](https://www.reddit.com/r/TrackersInfo/wiki/official_recruitments/)**, [The Sheet](https://inviteroute.github.io/sheet/) or [Graph](https://inviteroute.github.io/graph/) - Private Tracker Recruitment Guides
|
||||
* ⭐ **[TrackerStatus](https://trackerstatus.info/)** - Tracker Status Updates
|
||||
* [/r/trackers](https://reddit.com/r/trackers) - Tracker Discussion
|
||||
* [/r/OpenSignups](https://www.reddit.com/r/OpenSignups/) or [/r/OpenedSignups](https://www.reddit.com/r/OpenedSignups/) - Open Tracker Signup Subs
|
||||
|
|
@ -175,7 +176,7 @@
|
|||
* 🌐 **[ngosang](https://ngosang.github.io/trackerslist/)** / [2](https://ngosang.github.io/trackerslist/trackers_all.txt) / [3](https://github.com/ngosang/trackerslist), [trackerslist](https://trackerslist.com/) / [GitHub](https://github.com/XIU2/TrackersListCollection) or [NewTrackOn](https://newtrackon.com/list) - Tracker Lists
|
||||
* 🌐 **[Auto Torrent Tools List](https://redd.it/hbwnb2)** / [2](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/video#wiki_.25BA_torrent_apps)
|
||||
* ⭐ **[Milkie](https://milkie.cc)** / [Discord](https://discord.com/invite/E4khNy5dz3), [Scnlog](https://scnlog.me) or [PreDB.me](https://predb.me) - Scene Release Download
|
||||
* ⭐ **[PreDataBA](https://predataba.se)**, [Xrel](https://www.xrel.to), [Archiv.pw](https://archiv.pw/), [PreDB.net](https://predb.de), [srrDB](https://www.srrdb.com) or [M2V](https://m2v.ru) - Scene Release Info
|
||||
* ⭐ **[PreDataBA](https://predataba.se)**, [Xrel](https://www.xrel.to), [Archiv.pw](https://archiv.pw/), [PreDB.net](https://predb.net/), [srrDB](https://www.srrdb.com) or [M2V](https://m2v.ru) - Scene Release Info
|
||||
* ⭐ **[T2M](https://nutbread.github.io/t2m/)** / [2](https://github.com/nutbread/t2m), [btsow](https://btsow.motorcycles/) or [Torrent Kitty](https://www.torrentkitty.tv/) / [2](https://www.torrentkitty.net/) / [3](https://www.torrentkitty.lol/) - Torrent to Magnet Converters
|
||||
* ⭐ **[Magnet2Torrent](https://magnet2torrent.com/)** - Magnet to Torrent Converter
|
||||
* ⭐ **[Torrent Legality](https://i.ibb.co/HHqC4V2/11e244ddbdfb.png)** - Torrenting Laws by Country
|
||||
|
|
@ -192,4 +193,4 @@
|
|||
* [Torrent-Creator](https://github.com/Kimbatt/torrent-creator) - Browser Torrent Creator
|
||||
* [Torrent Parts](https://torrent.parts/) or [Torrent File Editor](https://torrent-file-editor.github.io/) - Edit Torrents Files
|
||||
* [/r/torrents](https://reddit.com/r/torrents) or [r/VPNTorrents](https://reddit.com/r/vpntorrents) - Torrenting Discussion
|
||||
* [IKnowWhatYouDownload](https://iknowwhatyoudownload.com/) - View Torrents Downloaded by your IP (can be inaccurate)
|
||||
* [IKnowWhatYouDownload](https://iknowwhatyoudownload.com/) - View Torrents Downloaded by your IP (can be inaccurate)
|
||||
|
|
|
|||
|
|
@ -86,6 +86,8 @@
|
|||
|
||||
### [Fake Windows Activators](https://web.archive.org/web/20240529222658/https://pastebin.com/gCmWs2GR)
|
||||
|
||||
### [FMHY Adblock Filterlist](https://fmhy.github.io/FMHYFilterlist/site/index.html), [2](https://fmhy.github.io/FMHYFilterlist/)
|
||||
|
||||
### [Unsafe Wayback Machine Links](https://rentry.co/ue9qk)
|
||||
|
||||
***
|
||||
|
||||
You can add all of these sites to your adblocker using our **[Filterlist](https://fmhy.github.io/FMHYFilterlist/site/index.html)**, [2](https://fmhy.github.io/FMHYFilterlist/).
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
@ -51,7 +51,6 @@
|
|||
* [Streamable](https://streamable.com/) - 250MB / 2 Days (90 Days with Account)
|
||||
* [webmshare](https://webmshare.com/) - WebM & GIF Hosting / 20MB / Forever
|
||||
* [Videy](https://videy.co/) - MP4 Only
|
||||
* [minv](https://sr.ht/~thecashewtrader/minv/) - Self-Hosted
|
||||
|
||||
***
|
||||
|
||||
|
|
@ -85,7 +84,6 @@
|
|||
* ⭐ **[archived-things](https://sometimes-archives-things.github.io/archived-things/)**, [The Encoding Guide](https://encoding-guide.neocities.org/) or [Silentaperture](https://silentaperture.gitlab.io/mdbook-guide/) - Video Encoding Guides
|
||||
* ⭐ **[Disc Rip](https://nullish.cat/blog/disc-rip)** - Disc Ripping Guide / [Mirror](https://rentry.org/disc-rip)
|
||||
* ⭐ **[Basics to the Art of Remuxing](https://rentry.co/Remuxing)** - Learn How to Remux Videos
|
||||
* [Swivel](https://www.newgrounds.com/wiki/creator-resources/flash-resources/swivel) - SWF to Video Converter
|
||||
* [DDVT](https://forum.doom9.org/showthread.php?t=183479) - Dolby Vision RPU Demuxing / Injecting / Editing
|
||||
* [MKV Muxing Batch GUI](https://github.com/yaser01/mkv-muxing-batch-gui) - Mux Videos
|
||||
* [XMedia Recode](https://www.xmedia-recode.de/en/) - Video Conversion
|
||||
|
|
@ -97,7 +95,7 @@
|
|||
* [Winnydows](https://winnydows.com/en/) - Video Conversion Software
|
||||
* [sickbeard_mp4_automator](https://github.com/mdhiggins/sickbeard_mp4_automator) - Automate Video Processing
|
||||
* [Seven Converter](https://converter.sevenbytes.com/) - Video Conversion / [GitHub](https://github.com/SevenbytesSoftware/SevenConverter)
|
||||
* [Video Express Converter](https://vc.germanov.dev/), [VideoConverter](https://videoconverter.com/) or [Restream Tools](https://restream.io/tools) - Online Video Conversion
|
||||
* [Video Express Converter](https://vc.germanov.dev/), [VideoConverter](https://www.movavi.com/video-converter/) or [Restream Tools](https://restream.io/tools) - Online Video Conversion
|
||||
* [nmkoder](https://github.com/n00mkrad/nmkoder) - Media Encoding And Muxing
|
||||
* [selur](https://www.selur.de/) - Video Encoding
|
||||
* [vvenc](https://github.com/fraunhoferhhi/vvenc), [vvdec](https://github.com/fraunhoferhhi/vvdec) or [VVCEasy](https://github.com/MartinEesmaa/VVCEasy) - VVC Encode / Decode
|
||||
|
|
@ -108,7 +106,7 @@
|
|||
|
||||
* 🌐 **[Awesome Streaming](https://github.com/juancarlospaco/awesome-streaming-tools)** or [StreamerFreebies](https://streamerfreebies.com/) - Live Streaming Resources
|
||||
* ⭐ **[OBS](https://obsproject.com/)** - Live Stream Manager
|
||||
* ⭐ **OBS Tools** - [Virtual Cam](https://github.com/miaulightouch/obs-virtual-cam) / [Tweaks](https://discord.gg/CTT) / [Effects](https://github.com/exeldro/obs-shaderfilter/) / [Keyboard Visualiser](https://github.com/ThoNohT/NohBoard) / [Background Remover](https://github.com/occ-ai/obs-backgroundremoval) / [Phone Controller](https://github.com/Kounex/obs_blade) / [Dock Layouts](https://obsproject.com/forum/resources/jrdockie-save-and-load-window-and-dock-layouts.1955/) / [WebRTC Server](https://github.com/GRVYDEV/Project-Lightspeed) / [Plugin Updater](https://ko-fi.com/s/0b5bd4536d) / [Guide](https://www.nvidia.com/en-us/geforce/guides/broadcasting-guide/)
|
||||
* ⭐ **OBS Tools** - [Virtual Cam](https://github.com/miaulightouch/obs-virtual-cam) / [Tweaks](https://discord.gg/CTT) / [Effects](https://github.com/exeldro/obs-shaderfilter/) / [Keyboard Visualiser](https://github.com/ThoNohT/NohBoard) / [Background Remover](https://github.com/locaal-ai/obs-backgroundremoval) / [Phone Controller](https://github.com/Kounex/obs_blade) / [Dock Layouts](https://obsproject.com/forum/resources/jrdockie-save-and-load-window-and-dock-layouts.1955/) / [WebRTC Server](https://github.com/GRVYDEV/Project-Lightspeed) / [Plugin Updater](https://ko-fi.com/s/0b5bd4536d) / [Guide](https://www.nvidia.com/en-us/geforce/guides/broadcasting-guide/)
|
||||
* [Stream Elements](https://streamelements.com/) - Streaming Service Manager
|
||||
* [Streamlabs-OBS](https://github.com/stream-labs/desktop) - Live Stream Manager
|
||||
* [SteamLabs](https://streamlabs.com/) - Live Stream Manager
|
||||
|
|
@ -303,7 +301,7 @@
|
|||
* [Kodi Builds Chart](https://kodiapps.com/builds-chart)
|
||||
* [r/Addons4Kodi](https://www.reddit.com/r/Addons4Kodi/) / [Tracker](https://kinkeadtech.com/best-kodi-streaming-addons/) / [Trending](https://kodiapps.com/addons-chart) - Kodi Addons
|
||||
* [Synko](https://github.com/Skaytacium/synko) - Kodi Stream Sync
|
||||
* [Plex Kodi Connect](https://github.com/croneter/PlexKodiConnect) - Plex Connect
|
||||
* [Plex Kodi Connect](https://github.com/croneter/PlexKodiConnect) or [plex-for-kodi](https://github.com/pannal/plex-for-kodi) - Plex for Kodi
|
||||
* [quasar](https://quasar.surge.sh/) - Torrent Plugin
|
||||
* [IPTV Client](https://kodi.wiki/view/Add-on:PVR_IPTV_Simple_Client)
|
||||
* [Simkl](https://simkl.com/) - Media Tracker
|
||||
|
|
@ -340,7 +338,6 @@
|
|||
* 🌐 **[Paper2GUI](https://github.com/Baiyuetribe/paper2gui/blob/main/README_en.md)** - AI Video Tools Index
|
||||
* 🌐 **[Codecs and Containers](https://www.reddit.com/r/VideoEditing/wiki/codecsandcontainers)** or [Free-Codecs](https://www.free-codecs.com/) - Video Editing Codecs
|
||||
* ⭐ **[Eyecandy](https://eycndy.co/)** - Visual Technique Examples
|
||||
* [MotionFactory](https://www.motionfactory.io/) - Video Editing Workflow Manager
|
||||
* [VideoHelp Forum](https://forum.videohelp.com/forums/2-Video) - Video Editing Forums
|
||||
* [Blaine's Movie Maker Blog](https://movies.blainesville.com/p/wmm-60-on-windows-7.html) - Windows Movie Maker Tutorials
|
||||
|
||||
|
|
@ -348,7 +345,8 @@
|
|||
|
||||
## ▷ Video Editors
|
||||
|
||||
* ⭐ **[DaVinci Resolve](https://www.blackmagicdesign.com/products/davinciresolve)** - Video Editor
|
||||
* ⭐ **[kdenlive](https://kdenlive.org/en/)** - 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
|
||||
|
|
@ -358,11 +356,9 @@
|
|||
* [OpenRV](https://github.com/AcademySoftwareFoundation/OpenRV) or [xSTUDIO](https://www.dneg.com/xstudio/) - Image / Sequence Playback Review
|
||||
* [Remotion](https://www.remotion.dev/) - Video Editor
|
||||
* [Olive](https://www.olivevideoeditor.org/) - Video Editor
|
||||
* [VirtualDub2](https://sourceforge.net/projects/vdfiltermod/) - Video Editor
|
||||
* [LosslessCut](https://github.com/mifi/lossless-cut) - Video Editor
|
||||
* [EZVid](https://www.ezvid.com/) - Video Editor
|
||||
* [OpenShot](https://www.openshot.org/) - Video Editor
|
||||
* [kdenlive](https://kdenlive.org/en/) - Video Editor
|
||||
* [Lightworks](https://lwks.com/) - Video Editor
|
||||
* [VSDC](https://www.videosoftdev.com/) - Video Editor
|
||||
* [avidemux](https://avidemux.sourceforge.net/) - Video Editor
|
||||
|
|
@ -388,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/)
|
||||
|
|
@ -442,7 +438,7 @@
|
|||
* [PlanetSide](https://planetside.co.uk/) - CG Environment Generator
|
||||
* [cgplugdump](https://t.me/cgplugdump) - CG Software Plugins
|
||||
* [Physically Based](https://physicallybased.info/) - RGB Values of Elements
|
||||
* [AnimeEffects](https://github.com/AnimeEffectsDevs/AnimeEffects), [enve](https://maurycyliebner.github.io/), [Expressive](https://www.expressivesuite.com/), [Cavalry](https://cavalry.scenegroup.co/), [TupiTube](https://tupitube.com/) or [Synfig](https://www.synfig.org/) - 2D Animation Tools
|
||||
* [AnimeEffects](https://github.com/AnimeEffectsDevs/AnimeEffects), [enve](https://maurycyliebner.github.io/), [Cavalry](https://cavalry.scenegroup.co/), [TupiTube](https://tupitube.com/) or [Synfig](https://www.synfig.org/) - 2D Animation Tools
|
||||
* [ScribbleDiffusion](https://scribblediffusion.com/) - Turn Doodles into Artwork
|
||||
* [MonsterMash](https://monstermash.zone/) - Sketch-Based Modeling & Animation Tool
|
||||
* [Storyboarder](https://wonderunit.com/storyboarder/) - Quickly Visualize & Test Animations / [GitHub](https://github.com/wonderunit/storyboarder)
|
||||
|
|
|
|||
|
|
@ -8,42 +8,48 @@
|
|||
|
||||
## ▷ Multi Server
|
||||
|
||||
* ⭐ **[movie-web](https://erynith.github.io/movie-web-instances/)**, [2](https://docs.undi.rest/instances) - Movies / TV / Anime / 4K / 1080p / Ad-Free / [Add Sources](https://pastebin.com/vXzVCEda) / [Docs](https://docs.undi.rest/)
|
||||
* ⭐ **[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.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)
|
||||
* ⭐ **[KipFlix](https://kipflix.xyz/)** - Movies / TV / Anime / 1080p / [Discord](https://discord.gg/tDKYeh9eQn)
|
||||
* ⭐ **[Nunflix](https://nunflix.com/)**, [2](https://nunflix.live/) - Movies / TV / Anime / 4K / 1080p / [Discord](https://discord.gg/CXVyfhgn26)
|
||||
* ⭐ **[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)
|
||||
* ⭐ **[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)
|
||||
* ⭐ **[Braflix](https://www.braflix.st/)** - Movies / TV / Anime / 4K / 1080p / [Discord](https://discord.com/invite/dexBcDVdEk)
|
||||
* ⭐ **[PressPlay](https://www.pressplay.top/)** - Movies / TV / 1080p / [Discord](https://discord.gg/r4QrghF4B9)
|
||||
* ⭐ **[Smashystream](https://smashystream.xyz/)**, [2](https://flix.smashystream.xyz/), [3](https://smashystream.com/) or [smashy.stream](https://smashy.stream/) (ad-free) - Movies / TV / Anime / 1080p
|
||||
* ⭐ **[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)
|
||||
* ⭐ **[Novafork](https://novafork.com/)** - Movies / TV / 1080p / [Discord](https://discord.gg/XbDBBmh5FY) / [GitHub](https://github.com/fanlimgames/novafork)
|
||||
* ⭐ **[NetPlay](https://netplayz.ru/)** - Movies / TV / Anime / 1080 / [Discord](https://discord.gg/NCH4rzxJ36)
|
||||
* ⭐ **[PrimeFlix](https://primeflix-web.vercel.app/)**, [2](https://www.primeflix.lol/) - Movies / TV / Anime / 4K / 1080p / [Discord](https://discord.gg/GbW6gzAKgc)
|
||||
* ⭐ **[Heartive](https://heartive.pages.dev/)** - Movies / TV / Anime / 1080p
|
||||
* ⭐ **[PrimeWire](https://www.primewire.tf/)**, [2](https://www.primewire.li/) - Movies / TV / Anime / 1080p
|
||||
* ⭐ **[UpMovies](https://upmovies.net/)**, [2](https://flixwave.me/), [3](https://vumoo.mx/) - Movies / TV / Anime / 1080p / Use Adblock
|
||||
* [kipwatch](https://kipwatch.xyz/) - Movies / TV / Anime / 1080p / [Discord](https://discord.gg/tDKYeh9eQn)
|
||||
* [nKiri](https://nkiri.cc/), [2](https://soapertv.cc/), [3](https://popcorntimeonline.cc/) - Movies / TV / 1080p / Ad-Free
|
||||
* [PrimeWire](https://www.primewire.tf/), [2](https://www.primewire.li/) - Movies / TV / Anime / 1080p
|
||||
* [UpMovies](https://upmovies.net/), [2](https://flixwave.me/), [3](https://vumoo.mx/) - Movies / TV / Anime / 1080p / Use Adblock
|
||||
* [SFlix](https://sflix.to/), [2](https://vidstream.to/), [3](https://gostream.to/) - Movies / TV / 1080p / [Clones](https://rentry.co/sflix)
|
||||
* [YesMovies](https://yesmovies.ag/), [2](https://ww4.solarmovie.to/), [3](https://ww5.0123movie.net/), [4](https://ww1.putlocker.vip/) - Movies / TV / 1080p
|
||||
* [moviee](https://moviee.tv/), [2](https://fmovies247.net/) - Movies / TV / 1080p / Ad-Free / [API](https://moviee.tv/api)
|
||||
* [VidPlay](https://vidplay.org/) - Movies / TV / Anime / 1080p / [Note](https://pastebin.com/kXrVBceh)
|
||||
* [Streaming CSE](https://cse.google.com/cse?cx=006516753008110874046:cfdhwy9o57g##gsc.tab=0), [2](https://cse.google.com/cse?cx=006516753008110874046:o0mf6t-ugea##gsc.tab=0), [3](https://cse.google.com/cse?cx=98916addbaef8b4b6), [4](https://cse.google.com/cse?cx=0199ade0b25835f2e) - Multi-Site Search
|
||||
* [WatchWave](https://watchwave-v2.vercel.app/watch) - Movies / TV / 1080p
|
||||
* [BFlix](https://nitestv.co/) - Movies / TV / 1080p / [Mirrors](https://nitesgate.org/)
|
||||
* [GGMovies](https://ggmovies.net/) - Movies / TV / Anime / 1080p / [Telegram](https://t.me/ggmoviesnews)
|
||||
* [Autoembed](https://watch.autoembed.cc/) - Movies / TV / Anime / Drama / 4K / 1080p / [API Docs](https://autoembed.cc/#api/) / [Discord](https://discord.gg/BWDSXV9aX4)
|
||||
* [Free Cinema](https://freecinema.live/) - Movies / TV / Anime / 1080p
|
||||
* [Watchug](https://watchug.com/) - Movies / TV / Anime / 1080p / [Telegram](https://t.me/watchugofficial)
|
||||
* [MovieUwU TV](https://movieuwutv.top/) - Movies / TV / Anime / Drama / 1080p / [Discord](https://discord.com/invite/3B3X6JEB7P)
|
||||
* [VidCloud](https://vidcloud1.com/) - Movies / TV / 1080p
|
||||
* [WatchingZone](https://www.watching.zone/) - Movies / TV / Anime / 1080p
|
||||
* [moviee](https://moviee.tv/) - Movies / TV / 1080p / Ad-Free / [API](https://moviee.tv/api)
|
||||
* [watch.inzi](https://watch.inzi.dev/) - Movies / TV / Anime / 4K / 1080p / Ad-Free / [Note](https://pastebin.com/T9kHqc0v)
|
||||
* [Piracy App](https://www.piracy.su/) - Movies / TV / Anime / 1080p
|
||||
* [Nova](https://novastream.top/) - Movies / TV / 1080p / [GitHub](https://github.com/ambr0sial/nova/)
|
||||
* [Way2Movies](https://way2movies.vercel.app/) - Movies / TV / Anime / 4K
|
||||
* [Way2Movies](https://way2movies.vercel.app/) - Movies / TV / Anime / 4K / 1080p
|
||||
* [Movierr](https://movierr.online/) - Movies / TV / Anime / 1080p / [Discord](https://discord.gg/sxKN424ZYK)
|
||||
* [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
|
||||
* [Cinebook](https://www.cinebook.xyz/) - Movies / TV / Anime
|
||||
|
|
@ -56,12 +62,16 @@
|
|||
* [FlixHQ.lol](https://flixhq.lol/) - Movies / TV Anime / 1080p
|
||||
* [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
|
||||
* [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
|
||||
* [KaitoVault](https://www.kaitovault.com/watch/) - Movies / TV / Anime / 1080p
|
||||
* [123MoviesFree](https://ww2.123moviesfree.net/) - Movies / TV / Anime / 1080p
|
||||
* [r123movie](https://r123movie.com/) - Movies / TV / Anime / 1080p
|
||||
* [MyFlizerz](https://myflixerz.vip/) - Movies / TV / Anime / 1080p
|
||||
* [Daitign](https://daiflix.daitign.com/) - Movies / TV / Anime / 1080p / Signup Required
|
||||
* [ValhallaStream](https://valhallastream.us.kg/), [2](https://valhallastream.pages.dev/) - Movies / TV / Anime / 4K
|
||||
* [Cinema Deck](https://cinemadeck.com/) - Movies / TV / Anime / 4K / 1080p / [Discord](https://l.cinemadeck.com/discord)
|
||||
|
|
@ -70,14 +80,14 @@
|
|||
* [TVids](https://www.tvids.net/), [2](https://watch-tvseries.net/) - Movies / TV / Anime / 1080p
|
||||
* [HollyMovieHD](https://hollymoviehd.cc/), [2](https://yeshd.net/), [3](https://novamovie.net/) - Movies / TV / Anime / 1080p / [Clones](https://hollymoviehd-official.com/)
|
||||
* [ProjectFreeTV](https://projectfreetv.sx/) - Movies / TV / 1080p
|
||||
* [1HD](https://1hd.to/) - Movies / TV / 1080p
|
||||
* [YassFlix](https://yassflix.live/) - Movies / TV / Anime / 1080p
|
||||
* [EuroPixHD](https://europixhd.pro/) - Movies / TV / Anime / 1080p
|
||||
* [EMovies](https://emovies.si/), [2](https://xtv.to/) - Movies / TV / Anime / 1080p
|
||||
* [Downloads-Anymovies](https://www.downloads-anymovies.co/) - Movies / 1080p
|
||||
* [WatchHQ](https://watchhq.site/) - Movies / TV / Anime / 1080p
|
||||
* [YesMovies](https://yesmovies.ag/), [2](https://ww4.solarmovie.to/), [3](https://ww5.0123movie.net/), [4](https://ww1.putlocker.vip/) - Movies / TV / 720p
|
||||
* [MoviesLair](https://movielair.cc/) - Movies / TV / 720p / [Discord](https://discord.gg/ZvRTYqTWtZ)
|
||||
* [uFlix](https://uflix.cc/) - Movies / TV / Anime / 720p
|
||||
* [nKiri](https://nkiri.cc/), [2](https://soapertv.cc/), [3](https://popcorntimeonline.cc/) - Movies / TV / 1080p / Ad-Free
|
||||
* [VidSrc](https://rentry.org/vidsrc) - VidSrc Hosting Sites
|
||||
* [mov-cli](https://mov-cli.github.io/) - Streaming / Downloading CLI / [Plugins](https://github.com/topics/mov-cli-plugin) / [GitHub](https://github.com/mov-cli/mov-cli)
|
||||
* [TG-FileStreamBot](https://github.com/EverythingSuckz/TG-FileStreamBot) - Telegram File Streaming
|
||||
|
|
@ -87,12 +97,11 @@
|
|||
## ▷ Single Server
|
||||
|
||||
* ⭐ **[NEPU](https://nepu.to/)** - Movies / TV / Anime / 1080p / [Discord](https://discord.gg/nepu)
|
||||
* ⭐ **[Binged](https://binged.to/)** - Movies / TV / Anime / 1080p / [Discord](https://discord.gg/f2SvhcKCKS)
|
||||
* ⭐ **[EE3](https://ee3.me/)**, [2](https://rips.cc/) - Movies / 1080p / Invite Code: fmhy / Sign-Up Required
|
||||
* ⭐ **[SusFlix](https://susflix.tv/)**, [2](https://www.susmovies.lol/), [3](https://hbosus.com) - Movies / TV / Anime / 4K / 1080p / Ad-Free / Sign-Up Required / [Discord](https://discord.gg/BE7kTVezBN)
|
||||
* ⭐ **[Catflix](https://catflix.su/)** - Movies / TV / 1080p / Ad-Free
|
||||
* ⭐ **[Soaper.TV](https://soaper.tv/)**, [2](https://soaper.live/) - Movies / TV / Anime / 1080p
|
||||
* ⭐ **[EE3](https://ee3.me/)**, [2](https://rips.cc/) - Movies / 720p / Invite Code: fmhy / Sign-Up Required
|
||||
* ⭐ **[FshareTV](https://fsharetv.co/)** - Movies / 1080p
|
||||
* [Soaper.TV](https://soaper.tv/), [2](https://soaper.live/) - Movies / TV / Anime / 720p
|
||||
* [9PM](https://9pm.to/) - Movies / TV / 720p
|
||||
* [OnionPlay](https://onionplay.se/) - Movies / TV / 720p / [Clones](https://onionplay.network/)
|
||||
* [NetMirror](https://pcmirror.cc/home) - Movies / TV / 720p
|
||||
|
|
@ -123,7 +132,6 @@
|
|||
* [MP4Mania](https://mp4mania1.net/) - Movies / 360p / [How to Use](https://files.catbox.moe/53xfma.mp4)
|
||||
* [English Movies](https://m.vk.com/english_movies) - Movies / 1080p
|
||||
* [Flixtor](https://flixtor.to/) - Movies / TV / 720p / Movies Older Than 6 Months For Premium Only
|
||||
* [JustWatch](https://www.justwatch.com/) - Search Legal Streaming Hosts
|
||||
|
||||
***
|
||||
|
||||
|
|
@ -132,7 +140,7 @@
|
|||
* 🌐 **[Wotaku](https://wotaku.wiki/websites)** - Anime Streaming Index / [Discord](https://discord.gg/vShRGx8ZBC)
|
||||
* 🌐 **[The Index](https://theindex.moe/library/anime)** - Anime Streaming Index / [Wiki](https://thewiki.moe/) / [Discord](https://discord.gg/Snackbox)
|
||||
* 🌐 **[EverythingMoe](https://everythingmoe.com/)**, [2](https://everythingmoe.org/) - Anime Streaming Index / [Discord](https://discord.gg/GuueaDgKdS)
|
||||
* ⭐ **[Miruro](https://www.miruro.com/)** - Sub / Dub / 1080p / [Discord](https://discord.gg/miruro)
|
||||
* ⭐ **[Miruro](https://www.miruro.tv/)**, [2](https://www.miruro.online/) - Sub / Dub / 1080p / [Mirrors](https://www.miruro.com/) / [Discord](https://discord.gg/miruro) / [GitHub](https://github.com/Miruro-no-kuon/Miruro)
|
||||
* ⭐ **[HiAnime](https://hianime.to/)**, [2](https://hianime.nz/), [3](https://hianime.mn/), [4](https://hianime.sx/) - Sub / Dub / 1080p / [Discord](https://discord.gg/hianime)
|
||||
* ⭐ **HiAnime Resources** - [Official Mirrors](https://hianime.tv/) / [Unofficial Clones](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_hianime_clones) / [Enhancements](https://greasyfork.org/en/scripts/506340) / [Auto-Focus](https://greasyfork.org/en/scripts/506891) / [Aniwave-Style Subs](https://rentry.org/mmsot3n2)
|
||||
* ⭐ **[GoGoAnime](https://gogoanime3.co/)**, [2](https://anitaku.pe/), [3](https://daftanime.com/), [4](https://gogoanime2.org/) - Sub / Dub / 1080p / [Discord](https://discord.gg/kyVfcGuCCQ)
|
||||
|
|
@ -140,7 +148,7 @@
|
|||
* ⭐ **[AllManga](https://allmanga.to/)** - Sub / Dub / 1080p / [Discord](https://discord.gg/YbuYYUwhpP)
|
||||
* ⭐ **[AnimePahe](https://animepahe.ru/)** - Sub / 1080p / [Downloader](https://github.com/KevCui/animepahe-dl)
|
||||
* ⭐ **[KickAssAnime](https://kickassanime.mx/)** - Sub / Dub / 1080p / [Clones](https://watchanime.io/) / [Discord](https://discord.gg/qduzrvTG6p)
|
||||
* ⭐ **[Animetsu](https://animetsu.cc/)** - Sub / Dub / 1080p / [Discord](https://discord.com/invite/f2SvhcKCKS)
|
||||
* ⭐ **[Freek Anime](https://freek.to/explore/anime)** - Sub / Dub / 1080p
|
||||
* ⭐ **[Akuse](https://github.com/akuse-app/Akuse)**, [Layendimator](https://github.com/Layendan/Layendanimator), [Anikin](https://github.com/jerry08/Anikin), [Unyo](https://github.com/K3vinb5/Unyo) or [Miru Project](https://miru.js.org/en/) - Desktop Streaming Apps
|
||||
* ⭐ **[Japanese Animated Film Classics](https://animation.filmarchives.jp/index.html)** - Japanese Animated Film Archive
|
||||
* ⭐ **[Anime Streaming CSE](https://cse.google.com/cse?cx=006516753008110874046:vzcl7wcfhei)** / [CSE 2](https://cse.google.com/cse?cx=006516753008110874046:mrfarx7-dxu) or [Kuroiru](https://kuroiru.co/) - Multi-Site Anime Search
|
||||
|
|
@ -149,22 +157,25 @@
|
|||
* [123Anime](https://123animes.ru/) - Sub / Dub / 1080p
|
||||
* [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
|
||||
* [YugenAnime](https://yugenanime.tv/) - Sub / Dub / 1080p / [Discord](https://discord.gg/MQqwQREyCz)
|
||||
* [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)
|
||||
* [AnimeHeaven](https://animeheaven.me/) - Sub / 1080p / [Discord](https://discord.com/invite/QmgSMYD)
|
||||
* [AnimeNana](https://animenana.com/) - Sub / 1080p
|
||||
* [Enimoe](https://enimoe.live/) - Sub / 1080p
|
||||
* [Animegg](https://www.animegg.org/) - Sub / Dub / 1080p
|
||||
* [AnimeParadise](https://www.animeparadise.moe/) - Sub / Dub / 1080p / [Discord](https://discord.com/invite/q3N6eWMMNP)
|
||||
* [KissAnime](https://kissanime.com.ru/) - Sub / Dub / 1080p / [Discord](https://discord.com/invite/w5ghWQG8uM) / [Clones](https://kissanime.help/)
|
||||
* [Animetake](https://animetake.tv/) - Sub / 1080p
|
||||
* [Shinigamii](https://www.shinigamii.pw/) - Sub / 1080p
|
||||
* [BestDubbedAnime](https://bestdubbedanime.com/) - Dub / 1080p / [Discord](https://discord.com/invite/f2pHvauUPu)
|
||||
* [DubbedAnime](https://dubbedanime.biz/) - Sub / Dub / 1080p
|
||||
* [Animeow](https://animeow.me/) - Sub / Dub / 720p / [Discord](https://discord.com/invite/FT5MnbcDWz)
|
||||
* [AnimeOnsen](https://animeonsen.xyz/) - Sub / 720p / [Discord](https://discord.com/invite/U56ZMrD)
|
||||
* [Anime Edge](https://anime-edge.com/) - Sub / Dub / 1080p / [Discord](https://discord.gg/8HuVwPKJ) / [Telegram](https://t.me/Anime_Edge)
|
||||
* [AnimeXin](https://animexin.vip/) - Chinese Anime / Sub / 1080p
|
||||
* [Lucifer Donghua](https://luciferdonghua.in/) - Chinese Anime / Sub / 1080p / [Telegram](https://telegram.me/luciferdonghuaz)
|
||||
* [LMAnime](https://lmanime.com/) - Chinese Anime / Sub / 1080p
|
||||
|
|
@ -202,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
|
||||
|
|
@ -360,16 +371,17 @@
|
|||
## ▷ Live TV
|
||||
|
||||
* ↪️ **[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)
|
||||
* ⭐ **[EasyWebTV](https://zhangboheng.github.io/Easy-Web-TV-M3u8/routes/countries.html)** or [IPTV Web](https://iptv-web.app/) - TV / Sports / 1080p
|
||||
* ⭐ **[TheTVApp](https://thetvapp.to/)** - TV / Sports
|
||||
* ⭐ **[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
|
||||
* [Braflix](https://www.braflix.st/livestream/) - TV / Sports
|
||||
* ⭐ **[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)
|
||||
|
|
@ -386,12 +398,12 @@
|
|||
* [SquidTV](https://www.squidtv.net/) - TV
|
||||
* [s7-tv](https://s7-tv.blogspot.com/p/t.html) - TV
|
||||
* [PhotoCall](https://photocall.xyz/) - TV
|
||||
* [Puffer](https://puffer.stanford.edu/) - San Fran TV
|
||||
* [cytube](https://cytu.be/) - Random Streams
|
||||
* [VaughnLive](https://vaughn.live/browse/misc) - Random Streams
|
||||
* [Baked](https://baked.live/) - Random Streams
|
||||
* [fun.cube](https://funcube.space/) - Random Streams
|
||||
* [Channel 99](http://www.pracdev.org/channel99/) - Random Streams
|
||||
* [YTCH](https://ytch.xyz/) - Random TV Style YouTube
|
||||
* [YTCH](https://ytch.xyz/) or [FreeTVz](https://freetvz.com/) - Random TV Style YouTube
|
||||
* [TV.Jest](https://tv.jest.one/) - News
|
||||
* [SHOWROOM](https://showroom-live.com/) - Live Performance Broadcasts
|
||||
* [KCNA](https://kcnawatch.us/korea-central-tv-livestream) - North Korean Live TV
|
||||
|
|
@ -450,6 +462,7 @@
|
|||
* [Rojadirecta](http://www.rojadirecta.eu/) - Sports / [Forum](http://forum.rojadirecta.es/)
|
||||
* [NFLHunter](https://nflhunter.com/) - Football
|
||||
* [NFLBite](https://nflbite.tv/) - Football
|
||||
* [NFL Video](https://nfl-video.com/) - Football
|
||||
* [MLB66](https://mlb66.ir/) - Baseball
|
||||
* [MLBshows](https://mlbshow.com/) - Baseball
|
||||
* [BoxingStreams100](https://fight.boxingstreams100.com/) - Boxing
|
||||
|
|
@ -541,16 +554,17 @@
|
|||
* ↪️ **[Video Download Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/video-tools#wiki_.25BA_video_download)**
|
||||
* ⭐ **[Pahe](https://pahe.ink/)** - Movies / TV / Anime / 4K / [Discord](https://discord.gg/4AvaCsd2J4) / Use Adblocker
|
||||
* ⭐ **[PSARips](https://psa.wf/)** - Movies / TV / 4K
|
||||
* ⭐ **[OlaMovies](https://olamovies.hair/)** - Movies / TV / 4K / 1080p / [Telegram](https://t.me/olamovies_officialv6)
|
||||
* ⭐ **[LightDLMovies](https://lightdl.xyz/)**, [2](https://lightdlmovies.blogspot.com/) - Movies / TV / 1080p
|
||||
* ⭐ **[LightDLMovies](https://lightdl.xyz/)** - Movies / TV / 1080p
|
||||
* ⭐ **[VegaMovies](https://vegamovies.nz/)** - Movies / TV / Anime / 1080p / 4K / [Telegram](https://telegram.dog/VegamoviesTo_Official)
|
||||
* ⭐ **[MovieParadise](https://movieparadise.org/)** - Movies / TV / 1080p / [Get Code](https://rentry.org/he8fhzku) / Code unlocks faster file host (1fichier)
|
||||
* ⭐ **[Braflix](https://www.braflix.st/)** - Movies / TV / Anime / 4K / 1080p / Account Required
|
||||
* ⭐ **[Braflix](https://www.braflix.gd/)** - Movies / TV / Anime / 4K / 1080p / Account Required
|
||||
* ⭐ **[Drama Day](https://dramaday.me/)** - Asian Drama / 1080p
|
||||
* ⭐ **[MKVDrama](https://mkvdrama.org/)** - Asian Drama / 1080p
|
||||
* ⭐ **[Video Download CSE](https://cse.google.com/cse?cx=006516753008110874046:wevn3lkn9rr)** / [CSE 2](https://cse.google.com/cse?cx=89f2dfcea452fc451) / [CSE 3](https://cse.google.com/cse?cx=aab218d0aa53e3578)
|
||||
* [piracy.vip](https://piracy.vip/) - Movies / TV / Anime / 1080p / Signup Required / [Discord](https://discord.com/invite/FKT2rMCfUW) / [Telegram](https://t.me/+QV1PldJrE3gzYjk1)
|
||||
* [DDLBase](https://ddlbase.com/) - Movies / TV / 4K
|
||||
* [KatMovieHD](https://katmoviehd.boo/) - Movies / TV / Anime / 1080p / [Telegram](https://t.me/joinchat/TMuzf8VYH7M1YWVh)
|
||||
* [KatMovieHD](https://katmoviehd.fi/) - Movies / TV / Anime / 1080p / [Telegram](https://t.me/joinchat/TMuzf8VYH7M1YWVh)
|
||||
* [OlaMovies](https://olamovies.hair/) - Movies / TV / 4K / 1080p / [Telegram](https://t.me/olamovies_officialv6)
|
||||
* [StagaTV](https://www5.stagatv.com/) - Movies / TV / 1080p
|
||||
* [StarsDDL](https://starsddl.me/) - Movies / TV / 1080p
|
||||
* [Movies Ni Pipay](https://moviesnipipay.me/) - Movies / TV / 1080p
|
||||
|
|
@ -567,6 +581,7 @@
|
|||
* [SomosMovies](https://somosmovies.com/) - Movies / 1080p
|
||||
* [MovieSeriesTV](https://www.movieseriestv.net/) - Movies / TV / 1080p
|
||||
* [SeriesVault](https://seriesvault.win/) - TV / Anime / 1080p
|
||||
* [StarK ClouD](https://scloud.starkflix.cloud/) - Movies / 4K / 1080p
|
||||
* [FilmFans](https://filmfans.org/) - Movies / 4K
|
||||
* [WorldFree4u](https://worldfree4u.pm/) - Movies / 1080p
|
||||
* [SSR Movies](https://ssrmovies.meme/) - Movies / TV / 1080p
|
||||
|
|
@ -577,7 +592,7 @@
|
|||
* [ShareBB](https://sharebb.me/) - Movies / TV / 1080p
|
||||
* [TwitchDL](https://dl2.twitchdl.us/) - Movies / TV / Anime / 1080p
|
||||
* [SD Toons](https://sdtoons.in) - Movies / TV / Anime / 1080p
|
||||
* [PrivateMovieZ](https://privatemoviez.xyz/) - Movies / TV / 1080p
|
||||
* [PrivateMovieZ](https://privatemoviez.mom/) - Movies / TV / 1080p
|
||||
* [FilmDuty](https://filmduty.com/) - Movies / TV / Anime / 1080p
|
||||
* [FilmGo](https://www.filmgo.live/) - Movies / TV / 720p
|
||||
* [FZMovies](https://fzmovies.host/), [2](https://fzmovies.net/) - Movies / 720p
|
||||
|
|
@ -596,14 +611,14 @@
|
|||
* [DoraMax264](https://doramax264.com/) - Asian Drama / 480p
|
||||
* [Toku.fun](https://toku.fun/) - Japanese Superhero Movies / 360p
|
||||
* [Jackass Vault](https://discord.gg/ZH5MjcKmJJ) - Jackass Media Discord
|
||||
* [IMDb-Scout-Mod](https://github.com/Purfview/IMDb-Scout-Mod) - Add Download Site Results to IMDb
|
||||
* [IMDb-Scout-Mod](https://greasyfork.org/en/scripts/407284) - Add Download Site Results to IMDb
|
||||
|
||||
***
|
||||
|
||||
## ▷ Drives / Directories
|
||||
|
||||
* ⭐ **[Vadapav](https://rentry.co/FMHYBase64#vadapav)** - Movies / TV / Anime / [Enhancements](https://greasyfork.org/en/scripts/496099) / Do **[NOT](https://ibb.co/VvrZMXQ)** bulk download
|
||||
* ⭐ **[datadiff](https://rentry.co/FMHYBase64#datadiff)** - Movies / TV
|
||||
* ⭐ **[datadiff](https://rentry.co/FMHYBase64#datadiff)** - Movies / TV / [Discord](https://discord.gg/dMszNcTb) / [Request](https://www.reddit.com/r/reqworkers101/)
|
||||
* [188.165.227.112](https://rentry.co/FMHYBase64#188165227112) - Movies / TV
|
||||
* [ProSearch4Bot](https://t.me/ProSearch4Bot) - Movies
|
||||
* [Mobile movies request bot](https://t.me/cc_mmrequestbot) - Movies / 480p
|
||||
|
|
@ -679,7 +694,7 @@
|
|||
## ▷ Stremio Tools
|
||||
|
||||
* 🌐 **[Stremio Addons](https://stremio-addons.netlify.app/)** - Stremio Addons
|
||||
* ⭐ **[Viren070's Guides](https://guides.viren070.me/stremio)** - Stremio Guide
|
||||
* ⭐ **[Viren070's Guides](https://guides.viren070.me/stremio)** or [Bye Sudo](https://rentry.co/bye-sudo) - Stremio Guides
|
||||
* [Stremio Addon Manager](https://stremio-addon-manager.vercel.app/) - Addons Manager
|
||||
* [streamio-ffmpeg](https://github.com/streamio/streamio-ffmpeg) - ffmpeg Wrapper
|
||||
* [Stremio Simkl](https://simkl.com/apps/stremio/) - Stremio Simkl Addon
|
||||
|
|
@ -695,11 +710,10 @@
|
|||
* ⭐ **[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
|
||||
* [StarK ClouD](https://scloud.starkflix.cloud/) - Movies / 4K / 1080p
|
||||
* [TPB Movies](https://thepiratebay.org/search.php?q=top100:200) - Movies / TV / 4K / 1080p / **Avoid Software / Games**
|
||||
* [Youplex Torrents](https://torrents.youplex.site/) - Movies / TV / Anime / 4K / 1080p
|
||||
* [MSearch](https://msearch.vercel.app/) - Movies / TV
|
||||
|
|
@ -745,6 +759,7 @@
|
|||
## ▷ Database / Tracking
|
||||
|
||||
* ⭐ **[Trakt](https://trakt.tv/)** - TV / Anime / Movies / [Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_trakt_tools)
|
||||
* ⭐ **[Simkl](https://simkl.com/)** - TV / Anime / Movies / [Apps](https://simkl.com/apps/) / [Import Tools](https://simkl.com/apps/import/)
|
||||
* ⭐ **[Letterboxd](https://letterboxd.com/)** - Movies / [Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_letterboxd_tools)
|
||||
* ⭐ **[ICheckMovies](https://www.icheckmovies.com/)** - Movies / List Database / [Enhanced](https://greasyfork.org/en/scripts/11541-icheckmovies-enhanced)
|
||||
* ⭐ **[FlickMetrix](https://flickmetrix.com/)** - Combine IMDb, Rotten Tomatoes & Letterboxd Ratings
|
||||
|
|
@ -752,8 +767,7 @@
|
|||
* ⭐ **[MyAnimeList](https://myanimelist.net/)** - Anime / [Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_myanimelist_tools)
|
||||
* ⭐ **[AniList](https://anilist.co/)** - Anime / [Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_anilist_tools) / [Discord](https://discord.com/invite/TF428cr)
|
||||
* ⭐ **[serializd](https://www.serializd.com/)** - TV / Anime
|
||||
* ⭐ **[Simkl](https://simkl.com/)** - TV / Anime / Movies / [Apps](https://simkl.com/apps/) / [Import Tools](https://simkl.com/apps/import/)
|
||||
* [IMDb](https://www.imdb.com/) - Movies / TV / Anime / [Advanced Search](https://www.imdb.com/search/)
|
||||
* [IMDb](https://www.imdb.com/) - Movies / TV / Anime / [Advanced Search](https://www.imdb.com/search/) / [Frontend](https://libremdb.iket.me)
|
||||
* [Rotten Tomatoes](https://www.rottentomatoes.com/) - Movies / TV / [Add to Sites](https://greasyfork.org/en/scripts/35443) / [Add to IMDb](https://greasyfork.org/en/scripts/15222)
|
||||
* [TMDb](https://www.themoviedb.org/) - Movies / TV / Anime
|
||||
* [TVDb](https://www.thetvdb.com/) - TV / Anime
|
||||
|
|
@ -773,8 +787,10 @@
|
|||
* [FFCritic](https://foundfootagecritic.com/) - Found Footage
|
||||
* [Spaghetti Western Database](https://www.spaghetti-western.net/index.php/Main_Page) - Spaghetti Western
|
||||
* [HKMDB](https://hkmdb.com/db/index.php) - Hong Kong Movies
|
||||
* [IGMDB](https://igmdb.com/) - LGBT Movies
|
||||
* [MediaTracker](https://github.com/bonukai/MediaTracker) - Self-Hosted Tracker
|
||||
* [Taiga](https://taiga.moe/) - Anime Tracking Program
|
||||
* [JustWatch](https://www.justwatch.com/) - Search Legal Streaming Hosts
|
||||
|
||||
***
|
||||
|
||||
|
|
@ -789,6 +805,7 @@
|
|||
* [RelatedAnime](https://relatedanime.com/) - Related Anime Index
|
||||
* [AnimeStats](https://anime-stats.net/), [AnimeKarmaList](https://animekarmalist.com/), [Sprout](https://anime.ameo.dev/) or [AniBrain](https://anibrain.ai/) - Anime Recommendations
|
||||
* [Autum](https://autum.com/) - Movie / TV Recommendations
|
||||
* [SuggestStream](https://suggestream.com/) - Movie / TV Recommendations
|
||||
* [BestSimilar](https://bestsimilar.com/) - Movie Recommendations
|
||||
* [Taste.io](https://www.taste.io/) - Movie Recommendations
|
||||
* [Movie-Map](https://www.movie-map.com/) - Movie Recommendations
|
||||
|
|
@ -810,7 +827,7 @@
|
|||
* [CommonSenseMedia](https://www.commonsensemedia.org/) or [Kids in Mind](https://kids-in-mind.com/) - Age-Based Media Reviews
|
||||
* [What's on Netflix](https://www.whats-on-netflix.com/library/), [uNoGS](https://unogs.com/), [FlixWatch](https://www.flixwatch.co/) or [Flixable](https://flixable.com/) - Browse Netflix Library
|
||||
* [Netflix Top 10](https://top10.netflix.com/) - Netflix Most-Watched Chart
|
||||
* [TV Chart](https://tvchart.benmiz.com/), [SeriesGraph](https://seriesgraph.com) or [WhatToWatchOn.tv](https://whattowatchon.tv/) - TV Episode Rating Graphs
|
||||
* [TV Chart](https://tvchart.benmiz.com/), [Episode Hive](https://episodehive.com/), [TV Charts](https://tvcharts.co/), [SeriesGraph](https://seriesgraph.com) or [WhatToWatchOn.tv](https://whattowatchon.tv/) - TV Episode Rating Graphs
|
||||
|
||||
***
|
||||
|
||||
|
|
@ -830,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
|
||||
|
|
@ -862,6 +879,7 @@
|
|||
* [Podnapisi](https://www.podnapisi.net/) - Subtitles
|
||||
* [Subscene](https://subscene.best/) - Subtitles
|
||||
* [opensubtitles.com](https://www.opensubtitles.com/) - Subtitles
|
||||
* [Closed Caption Browser](https://cc.edatribe.com/ ) - Subtitles
|
||||
* [Subs4Free](https://www.subs4free.info/) - Subtitles
|
||||
* [English-Subtitles](https://english-subtitles.org/) - Subtitles
|
||||
* [My Subs](https://my-subs.co/) - Subtitles
|
||||
|
|
@ -924,14 +942,17 @@
|
|||
|
||||
* [VidSrc.rip](https://vidsrc.rip/) - Movies / TV / Anime / Drama / 1080p / API / [Discord](https://discord.com/invite/streamflix)
|
||||
* [AutoEmbed](https://autoembed.cc/), [2](https://autoembed.cc/anime/), [3](https://autoembed.cc/drama/) - Movies / TV / Anime / Drama / 1080p / API / [Telegram](https://t.me/auto_embed)
|
||||
* [Embed.su](https://embed.su/) - Movies / TV / Anime / API / 4K / 1080p
|
||||
* [GoMo](https://gomo.to/) - Movies / TV / Anime / API / 1080p
|
||||
* [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
|
||||
* [VidSrc.pro](https://vidsrc.pro/) - Movies / TV / Anime / API / 4K / 1080p
|
||||
* [moviee](https://moviee.tv/api) - Movies / TV / 1080p
|
||||
* [WHVX](https://whvx.net/) - Movies / TV / Anime / API / 4K / 1080p
|
||||
* [VidSrc.cc](https://vidsrc.cc/) - Movies / TV / Anime / API / 1080p
|
||||
* [VidSrc.nl](https://vidsrc.nl/) - Movies / TV / Anime / API / 1080p
|
||||
* [VidSrc.nl](https://vidsrc.nl/) - Movies / TV / Anime / API / 1080p
|
||||
* [VidSrc.dev](https://vidsrc.dev/) - Movies / TV / Anime / API / 1080p / 4K
|
||||
* [SmashyStream API](https://embed.smashystream.com/) - Movies / TV / Anime / API / 1080p
|
||||
* [MoviesAPI](https://moviesapi.club/) - Movies / TV / Anime / API / 1080p / [Telegram](https://t.me/moviesapi_club)
|
||||
* [moviee](https://moviee.tv/api) - Movies / TV / 1080p
|
||||
* [MoviesAPI](https://moviesapi.club/) - Movies / TV / Anime / API / 1080p / [Telegram](https://t.me/moviesapi_club)
|
||||
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