mirror of
https://github.com/fmhy/edit.git
synced 2025-08-06 11:12:15 +10:00
Merge branch 'fmhy:main' into main
This commit is contained in:
commit
36bb5a3ee2
99 changed files with 3385 additions and 3435 deletions
30
.github/CONTRIBUTING.md
vendored
30
.github/CONTRIBUTING.md
vendored
|
@ -18,13 +18,16 @@ Please only use the store link if there's neither a site nor a Git repository av
|
|||
|
||||
3. Always check to see if the site you'd like to submit has a Discord / Telegram server you can link with it.
|
||||
|
||||
4. Find a suitable category for the link and then submit it by making a **[Pull Request](https://github.com/fmhy/edit/pulls)**.
|
||||
4. Find a suitable category for the link and then submit it by making a **[Pull Request](https://github.com/fmhy/edit/pulls)**.
|
||||
|
||||
#### Don't Submit:
|
||||
|
||||
**🕹️ Emulators**:
|
||||
They're already on the **[Game Tech Wiki](https://emulation.gametechwiki.com/index.php/Main_Page)**.
|
||||
|
||||
**🌐 Normal Web Browsers**
|
||||
They're already on the **[Browser Index](https://github.com/nerdyslacker/desktop-web-browsers)**, though we accept privacy-based ones.
|
||||
|
||||
**🔻 Leeches**:
|
||||
They're already on the **[File Hosting Wiki](https://filehostlist.miraheze.org/wiki/Free_Premium_Leeches)**.
|
||||
|
||||
|
@ -47,9 +50,9 @@ We don't recommend people use these.
|
|||
|
||||
You can do one of the following:
|
||||
|
||||
- Open an **[Issue](https://github.com/fmhy/edit/issues)** or a **[Pull Request](https://github.com/fmhy/edit/pulls)** and don't forget to explain why you think the site(s) in question should be removed, unstarred, and/or changed.
|
||||
- Reach out via the feedback system on any page of our [Website](https://fmhy.net/), or on **[Discord](https://rentry.co/fmhy-invite)** if you'd like to discuss your report.
|
||||
|
||||
- Alternatively, you can reach out to us on **[Discord](https://rentry.co/fmhy-invite)** if you're unsure whether the site should be reported or if you'd like to discuss your report with more people.
|
||||
- Open an **[Issue](https://github.com/fmhy/edit/issues)** or a **[Pull Request](https://github.com/fmhy/edit/pulls)** and don't forget to explain why you think the site(s) in question should be removed, unstarred, and/or changed.
|
||||
|
||||
## Making changes
|
||||
|
||||
|
@ -99,7 +102,7 @@ Select edit button and make your changes.
|
|||
|
||||
### Manually setting up a development environment
|
||||
|
||||
#### Manually
|
||||
#### Manual
|
||||
|
||||
1. Fork the repository by clicking the "Fork" button in the top right corner.
|
||||
|
||||
|
@ -123,10 +126,27 @@ You can use [nix](https://nixos.org/) to set up a development environment, we ha
|
|||
|
||||
3. Run `nix develop` to enter the development environment.
|
||||
|
||||
4. Make changes.
|
||||
4. Make changes.
|
||||
|
||||
5. Exit the development environment by running `exit`.
|
||||
|
||||
6. Commit your changes and push them to your forked repository.
|
||||
|
||||
7. Create a pull request by clicking the "New Pull Request" button in your forked repository, and don't forget to explain why you think the site(s) in question should be removed, unstarred, and/or changed.
|
||||
|
||||
|
||||
#### Keeping Your Fork Updated
|
||||
|
||||
To keep your fork up to date with the main repository:
|
||||
|
||||
```bash
|
||||
# Add the upstream remote (only needed once)
|
||||
git remote add upstream https://github.com/fmhy/edit.git
|
||||
|
||||
# Fetch upstream changes
|
||||
git fetch upstream
|
||||
|
||||
# Merge upstream changes into your local main branch
|
||||
git checkout main
|
||||
git merge upstream/main
|
||||
```
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"**/*.ts": [
|
||||
"/**",
|
||||
"* Copyright (c) taskylizard. All rights reserved.",
|
||||
"* Copyright (c) 2025 taskylizard. Apache License 2.0.",
|
||||
"*",
|
||||
"* Licensed under the Apache License, Version 2.0 (the \"License\");",
|
||||
"* you may not use this file except in compliance with the License.",
|
||||
|
@ -16,6 +16,15 @@
|
|||
"* limitations under the License.",
|
||||
"*/"
|
||||
],
|
||||
"**/*.css": [
|
||||
"/**",
|
||||
"* Copyright (c) 2025 taskylizard. Apache License 2.0.",
|
||||
"* Licensed under the Apache License, Version 2.0 (the \"License\");",
|
||||
"* you may not use this file except in compliance with the License.",
|
||||
"* You may obtain a copy of the License at",
|
||||
"* http://www.apache.org/licenses/LICENSE-2.0",
|
||||
"*/"
|
||||
],
|
||||
"ignore": [
|
||||
"node_modules",
|
||||
"dist",
|
||||
|
|
|
@ -1,3 +0,0 @@
|
|||
{
|
||||
"extends": "stylelint-config-standard-scss"
|
||||
}
|
|
@ -1,6 +1,3 @@
|
|||
> [!NOTE]
|
||||
> The website is no longer receiving new features and is now in maintenance mode. Please refrain from opening issues or pull requests.
|
||||
|
||||
This is the API for the website and other related services.
|
||||
|
||||
Licensed under the Apache License v2.0, see [LICENSE](../docs/.vitepress/LICENSE) for more information.
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/**
|
||||
* Copyright (c) taskylizard. All rights reserved.
|
||||
* Copyright (c) 2025 taskylizard. Apache License 2.0.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
|
|
|
@ -1,3 +1,18 @@
|
|||
/**
|
||||
* Copyright (c) 2025 taskylizard. Apache License 2.0.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
export default defineEventHandler(async (event) => {
|
||||
const { cloudflare } = event.context
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/**
|
||||
* Copyright (c) taskylizard. All rights reserved.
|
||||
* Copyright (c) 2025 taskylizard. Apache License 2.0.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/**
|
||||
* Copyright (c) taskylizard. All rights reserved.
|
||||
* Copyright (c) 2025 taskylizard. Apache License 2.0.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/**
|
||||
* Copyright (c) taskylizard. All rights reserved.
|
||||
* Copyright (c) 2025 taskylizard. Apache License 2.0.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
|
|
|
@ -1,8 +1,6 @@
|
|||
{
|
||||
"extends": "../.nitro/types/tsconfig.json",
|
||||
"compilerOptions": {
|
||||
"types": [
|
||||
"@cloudflare/workers-types"
|
||||
]
|
||||
"types": ["@cloudflare/workers-types"]
|
||||
}
|
||||
}
|
||||
|
|
19
api/worker-configuration.d.ts
vendored
19
api/worker-configuration.d.ts
vendored
|
@ -1,6 +1,21 @@
|
|||
/**
|
||||
* Copyright (c) 2025 taskylizard. Apache License 2.0.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
// Generated by Wrangler by running `wrangler types api/worker-configuration.d.ts`
|
||||
|
||||
interface Env {
|
||||
STORAGE: KVNamespace;
|
||||
RATE_LIMITER: RateLimit;
|
||||
STORAGE: KVNamespace
|
||||
RATE_LIMITER: RateLimit
|
||||
}
|
||||
|
|
57
biome.json
57
biome.json
|
@ -1,57 +0,0 @@
|
|||
{
|
||||
"$schema": "https://biomejs.dev/schemas/1.8.3/schema.json",
|
||||
"extends": [
|
||||
"@taskylizard/biome-config",
|
||||
"./.cache/imports.json"
|
||||
],
|
||||
"files": {
|
||||
"ignore": [
|
||||
"docs/.vitepress/**/*.vue",
|
||||
"docs/.vitepress/vue-shim.d.ts",
|
||||
".cache/imports.d.ts"
|
||||
]
|
||||
},
|
||||
"formatter": {
|
||||
"enabled": false
|
||||
},
|
||||
"css": {
|
||||
"linter": {
|
||||
"enabled": false
|
||||
},
|
||||
"formatter": {
|
||||
"enabled": false
|
||||
}
|
||||
},
|
||||
"json": {
|
||||
"formatter": {
|
||||
"enabled": false
|
||||
},
|
||||
"linter": {
|
||||
"enabled": false
|
||||
}
|
||||
},
|
||||
"vcs": {
|
||||
"enabled": true,
|
||||
"clientKind": "git"
|
||||
},
|
||||
"javascript": {
|
||||
"globals": [
|
||||
"defineNitroConfig",
|
||||
"eventHandler",
|
||||
"useRuntimeConfig",
|
||||
"readValidatedBody",
|
||||
"defineEventHandler"
|
||||
]
|
||||
},
|
||||
"linter": {
|
||||
"rules": {
|
||||
"correctness": {
|
||||
"noUndeclaredVariables": "off"
|
||||
},
|
||||
"style": {
|
||||
"useFilenamingConvention": "off",
|
||||
"noDefaultExport": "off"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,6 +1,3 @@
|
|||
> [!NOTE]
|
||||
> The website is no longer receiving new features and is now in maintenance mode. Please refrain from opening issues or pull requests.
|
||||
|
||||
This is the website source code to be used with [VitePress](https://vitepress.dev/).
|
||||
|
||||
Licensed under the Apache License v2.0, see [LICENSE](./LICENSE) for more information.
|
||||
|
|
|
@ -18,7 +18,7 @@ import { generateFeed, generateImages, generateMeta } from './hooks'
|
|||
import { defs, emojiRender, movePlugin } from './markdown/emoji'
|
||||
import { headersPlugin } from './markdown/headers'
|
||||
import { toggleStarredPlugin } from './markdown/toggleStarred'
|
||||
import { transforms } from './transformer'
|
||||
import { transformsPlugin } from './transformer'
|
||||
|
||||
// @unocss-include
|
||||
|
||||
|
@ -116,7 +116,7 @@ export default defineConfig({
|
|||
filepath: './.cache/imports.json'
|
||||
}
|
||||
}),
|
||||
transforms(),
|
||||
transformsPlugin(),
|
||||
{
|
||||
name: 'custom:adjust-order',
|
||||
configResolved(c) {
|
||||
|
@ -145,7 +145,7 @@ export default defineConfig({
|
|||
config(md) {
|
||||
md.use(emojiRender)
|
||||
md.use(toggleStarredPlugin)
|
||||
md.use(headersPlugin)
|
||||
meta.build.api && md.use(headersPlugin)
|
||||
}
|
||||
},
|
||||
themeConfig: {
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/**
|
||||
* Copyright (c) taskylizard. All rights reserved.
|
||||
* Copyright (c) 2025 taskylizard. Apache License 2.0.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
|
@ -15,6 +15,7 @@
|
|||
*/
|
||||
|
||||
import type { DefaultTheme } from 'vitepress'
|
||||
import consola from 'consola'
|
||||
import { transform, transformGuide } from './transformer'
|
||||
|
||||
// @unocss-include
|
||||
|
@ -23,14 +24,31 @@ export const meta = {
|
|||
name: 'freemediaheckyeah',
|
||||
description: 'The largest collection of free stuff on the internet!',
|
||||
hostname: 'https://fmhy.net',
|
||||
keywords: ['stream', 'movies', 'gaming', 'reading', 'anime']
|
||||
keywords: ['stream', 'movies', 'gaming', 'reading', 'anime'],
|
||||
build: {
|
||||
api: true,
|
||||
nsfw: true
|
||||
}
|
||||
}
|
||||
|
||||
if (process.env.FMHY_BUILD_NSFW === 'false') {
|
||||
consola.info('FMHY_BUILD_NSFW is set to false, disabling NSFW content')
|
||||
meta.build.nsfw = false
|
||||
}
|
||||
if (process.env.FMHY_BUILD_API === 'false') {
|
||||
consola.info('FMHY_BUILD_API is set to false, disabling API component')
|
||||
meta.build.api = false
|
||||
}
|
||||
|
||||
const formatCommitRef = (commitRef: string) =>
|
||||
`<a href="https://github.com/fmhy/edit/commit/${commitRef}">${commitRef.slice(0, 8)}</a>`
|
||||
|
||||
export const commitRef =
|
||||
process.env.CF_PAGES && process.env.CF_PAGES_COMMIT_SHA
|
||||
? `<a href="https://github.com/fmhy/edit/commit/${process.env.CF_PAGES_COMMIT_SHA
|
||||
}">${process.env.CF_PAGES_COMMIT_SHA.slice(0, 8)}</a>`
|
||||
: 'dev'
|
||||
? formatCommitRef(process.env.CF_PAGES_COMMIT_SHA)
|
||||
: process.env.COMMIT_REF
|
||||
? formatCommitRef(process.env.COMMIT_REF)
|
||||
: 'dev'
|
||||
|
||||
export const feedback = `<a href="/feedback" class="feedback-footer">Made with ❤</a>`
|
||||
|
||||
|
@ -113,24 +131,17 @@ export const socialLinks: DefaultTheme.SocialLink[] = [
|
|||
{ icon: 'github', link: 'https://github.com/fmhy/edit' },
|
||||
{ icon: 'discord', link: 'https://rentry.co/fmhy-invite' },
|
||||
{
|
||||
ariaLabel: 'Reddit',
|
||||
icon: {
|
||||
svg: '<svg role="img" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><title>Reddit</title><path d="M12 0C5.373 0 0 5.373 0 12c0 3.314 1.343 6.314 3.515 8.485l-2.286 2.286C.775 23.225 1.097 24 1.738 24H12c6.627 0 12-5.373 12-12S18.627 0 12 0Zm4.388 3.199c1.104 0 1.999.895 1.999 1.999 0 1.105-.895 2-1.999 2-.946 0-1.739-.657-1.947-1.539v.002c-1.147.162-2.032 1.15-2.032 2.341v.007c1.776.067 3.4.567 4.686 1.363.473-.363 1.064-.58 1.707-.58 1.547 0 2.802 1.254 2.802 2.802 0 1.117-.655 2.081-1.601 2.531-.088 3.256-3.637 5.876-7.997 5.876-4.361 0-7.905-2.617-7.998-5.87-.954-.447-1.614-1.415-1.614-2.538 0-1.548 1.255-2.802 2.803-2.802.645 0 1.239.218 1.712.585 1.275-.79 2.881-1.291 4.64-1.365v-.01c0-1.663 1.263-3.034 2.88-3.207.188-.911.993-1.595 1.959-1.595Zm-8.085 8.376c-.784 0-1.459.78-1.506 1.797-.047 1.016.64 1.429 1.426 1.429.786 0 1.371-.369 1.418-1.385.047-1.017-.553-1.841-1.338-1.841Zm7.406 0c-.786 0-1.385.824-1.338 1.841.047 1.017.634 1.385 1.418 1.385.785 0 1.473-.413 1.426-1.429-.046-1.017-.721-1.797-1.506-1.797Zm-3.703 4.013c-.974 0-1.907.048-2.77.135-.147.015-.241.168-.183.305.483 1.154 1.622 1.964 2.953 1.964 1.33 0 2.47-.81 2.953-1.964.057-.137-.037-.29-.184-.305-.863-.087-1.795-.135-2.769-.135Z"/></svg>'
|
||||
},
|
||||
icon: 'reddit',
|
||||
link: 'https://reddit.com/r/FREEMEDIAHECKYEAH'
|
||||
},
|
||||
{
|
||||
ariaLabel: 'Bluesky',
|
||||
icon: {
|
||||
svg: '<svg role="img" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><title>Bluesky</title><path d="M12 10.8c-1.087-2.114-4.046-6.053-6.798-7.995C2.566.944 1.561 1.266.902 1.565.139 1.908 0 3.08 0 3.768c0 .69.378 5.65.624 6.479.815 2.736 3.713 3.66 6.383 3.364.136-.02.275-.039.415-.056-.138.022-.276.04-.415.056-3.912.58-7.387 2.005-2.83 7.078 5.013 5.19 6.87-1.113 7.823-4.308.953 3.195 2.05 9.271 7.733 4.308 4.267-4.308 1.172-6.498-2.74-7.078a8.741 8.741 0 0 1-.415-.056c.14.017.279.036.415.056 2.67.297 5.568-.628 6.383-3.364.246-.828.624-5.79.624-6.478 0-.69-.139-1.861-.902-2.206-.659-.298-1.664-.62-4.3 1.24C16.046 4.748 13.087 8.687 12 10.8Z"/></svg>'
|
||||
},
|
||||
icon: 'bluesky',
|
||||
link: 'https://bsky.app/profile/fmhy.net'
|
||||
}
|
||||
]
|
||||
|
||||
export const nav: DefaultTheme.NavItem[] = [
|
||||
{ text: '🔖 Glossary', link: 'https://rentry.org/The-Piracy-Glossary' },
|
||||
{ text: 'ℹ️ Guides', link: 'https://guides.fmhy.lol/' },
|
||||
{
|
||||
text: '💾 Backups',
|
||||
link: 'https://github.com/fmhy/FMHY/wiki/Backups'
|
||||
|
@ -142,14 +153,21 @@ export const nav: DefaultTheme.NavItem[] = [
|
|||
{ text: '🔗 Bookmarks', link: 'https://github.com/fmhy/bookmarks' },
|
||||
{ text: '✅ SafeGuard', link: 'https://github.com/fmhy/FMHY-SafeGuard' },
|
||||
{ text: '📋 snowbin', link: 'https://pastes.fmhy.net' },
|
||||
{ text: '💡 Site Hunting', link: 'https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/find-new-sites/' },
|
||||
{ text: '🏞 Wallpapers', link: '/other/wallpapers' },
|
||||
{ text: '💙 Feedback', link: '/feedback' },
|
||||
{
|
||||
text: '💡 Site Hunting',
|
||||
link: 'https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/find-new-sites/'
|
||||
},
|
||||
{ text: '❓ FAQs', link: 'https://redd.it/xrxen7' },
|
||||
{
|
||||
text: '😇 SFW FMHY',
|
||||
link: 'https://fmhy.xyz/'
|
||||
}
|
||||
},
|
||||
{
|
||||
text: '🏠 Selfhosting',
|
||||
link: '/other/selfhosting'
|
||||
},
|
||||
{ text: '🏞 Wallpapers', link: '/other/wallpapers' },
|
||||
{ text: '💙 Feedback', link: '/feedback' }
|
||||
]
|
||||
}
|
||||
]
|
||||
|
@ -167,8 +185,6 @@ export const sidebar: DefaultTheme.Sidebar | DefaultTheme.NavItemWithLink[] = [
|
|||
text: '<span class="i-twemoji:light-bulb"></span> Contribute',
|
||||
link: '/other/contributing'
|
||||
},
|
||||
|
||||
// TODO: genetate sidebar from posts
|
||||
{
|
||||
text: 'Wiki',
|
||||
collapsed: false,
|
||||
|
@ -281,10 +297,12 @@ export const sidebar: DefaultTheme.Sidebar | DefaultTheme.NavItemWithLink[] = [
|
|||
text: 'More',
|
||||
collapsed: true,
|
||||
items: [
|
||||
{
|
||||
text: '<span class="i-twemoji:no-one-under-eighteen"></span> NSFW',
|
||||
link: 'https://rentry.co/NSFW-Checkpoint'
|
||||
},
|
||||
meta.build.nsfw
|
||||
? {
|
||||
text: '<span class="i-twemoji:no-one-under-eighteen"></span> NSFW',
|
||||
link: 'https://rentry.co/NSFW-Checkpoint'
|
||||
}
|
||||
: {},
|
||||
{
|
||||
text: '<span class="i-twemoji:warning"></span> Unsafe Sites',
|
||||
link: '/unsafesites'
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/**
|
||||
* Copyright (c) taskylizard. All rights reserved.
|
||||
* Copyright (c) 2025 taskylizard. Apache License 2.0.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/**
|
||||
* Copyright (c) taskylizard. All rights reserved.
|
||||
* Copyright (c) 2025 taskylizard. Apache License 2.0.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
|
@ -21,6 +21,7 @@ export function generateMeta(context: TransformContext, hostname: string) {
|
|||
const { pageData } = context
|
||||
|
||||
if (pageData.isNotFound) return head
|
||||
if (Object.keys(pageData.frontmatter).length === 0) return head
|
||||
|
||||
const url = `${hostname}/${pageData.relativePath.replace(/((^|\/)index)?\.md$/, '$2')}`
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/**
|
||||
* Copyright (c) taskylizard. All rights reserved.
|
||||
* Copyright (c) 2025 taskylizard. Apache License 2.0.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
|
@ -88,14 +88,14 @@ async function generateImage({
|
|||
const _page = getPage(url)
|
||||
const title =
|
||||
frontmatter.layout === 'home'
|
||||
? frontmatter.hero.name ?? frontmatter.title
|
||||
? (frontmatter.hero.name ?? frontmatter.title)
|
||||
: frontmatter.title
|
||||
? frontmatter.title
|
||||
: _page?.title
|
||||
|
||||
const description =
|
||||
frontmatter.layout === 'home'
|
||||
? frontmatter.hero.tagline ?? frontmatter.description
|
||||
? (frontmatter.hero.tagline ?? frontmatter.description)
|
||||
: frontmatter.description
|
||||
? frontmatter.description
|
||||
: _page?.description
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/**
|
||||
* Copyright (c) taskylizard. All rights reserved.
|
||||
* Copyright (c) 2025 taskylizard. Apache License 2.0.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
|
@ -22,7 +22,7 @@ import { Feed } from 'feed'
|
|||
import { createContentLoader } from 'vitepress'
|
||||
import { meta } from '../constants'
|
||||
|
||||
export async function generateFeed(config: SiteConfig): Promise {
|
||||
export async function generateFeed(config: SiteConfig): Promise<void> {
|
||||
const feed: Feed = new Feed({
|
||||
id: meta.hostname,
|
||||
link: meta.hostname,
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/**
|
||||
* Copyright (c) taskylizard. All rights reserved.
|
||||
* Copyright (c) 2025 taskylizard. Apache License 2.0.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/**
|
||||
* Copyright (c) taskylizard. All rights reserved.
|
||||
* Copyright (c) 2025 taskylizard. Apache License 2.0.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
|
@ -30,7 +30,7 @@ export function base64DecodePlugin(md: MarkdownRenderer) {
|
|||
md.renderer.rules.code_inline = function (tokens, idx, options, env, self) {
|
||||
if (
|
||||
!env.frontmatter.title ||
|
||||
(env.frontmatter.title && !env.frontmatter.title === 'base64')
|
||||
(env.frontmatter.title && env.frontmatter.title !== 'base64')
|
||||
) {
|
||||
return defaultRender(tokens, idx, options, env, self)
|
||||
}
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/**
|
||||
* Copyright (c) taskylizard. All rights reserved.
|
||||
* Copyright (c) 2025 taskylizard. Apache License 2.0.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
|
|
|
@ -1,3 +1,18 @@
|
|||
/**
|
||||
* Copyright (c) 2025 taskylizard. Apache License 2.0.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
/**
|
||||
* Copyright (c) 2024 taskylizard
|
||||
*
|
||||
|
@ -53,10 +68,10 @@ export const headersPlugin = (md: MarkdownRenderer) => {
|
|||
return result
|
||||
}
|
||||
|
||||
let defaultRender = md.renderer.rules.link_open;
|
||||
const defaultRender = md.renderer.rules.link_open
|
||||
|
||||
md.renderer.rules.link_open = (tokens, idx, options, env, self) => {
|
||||
const result = defaultRender(tokens, idx, options, env, self);
|
||||
const result = defaultRender!!!!!!!!!!(tokens, idx, options, env, self)
|
||||
|
||||
const meta = tokens[idx].meta
|
||||
if (!meta || !meta.feedback) return result
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/**
|
||||
* Copyright (c) taskylizard. All rights reserved.
|
||||
* Copyright (c) 2025 taskylizard. Apache License 2.0.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
|
@ -13,6 +13,7 @@
|
|||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
import type { MarkdownRenderer } from 'vitepress'
|
||||
|
||||
const excluded = ['Beginners Guide']
|
||||
|
@ -25,12 +26,9 @@ export function toggleStarredPlugin(md: MarkdownRenderer) {
|
|||
if (contentToken) {
|
||||
const content = contentToken.content
|
||||
|
||||
// Log the content for debugging purposes
|
||||
console.log('Content Token:', content)
|
||||
|
||||
if (
|
||||
!excluded.includes(env.frontmatter.title) &&
|
||||
(content.includes(':star:') || content.includes(':glowing-star:')) // Directly check for emojis
|
||||
(content.includes(':star:') || content.includes(':glowing-star:'))
|
||||
) {
|
||||
return `<li class="starred">`
|
||||
}
|
||||
|
|
|
@ -29,8 +29,8 @@ onMounted(() => {
|
|||
>
|
||||
<ClientOnly>
|
||||
<Transition name="fade" mode="out-in">
|
||||
<VPIconSun v-if="!isDark" class="sun" />
|
||||
<VPIconMoon v-else class="moon" />
|
||||
<div v-if="!isDark" class="sun text-xl i-ph-sun-duotone" />
|
||||
<div v-else class="moon text-xl i-ph-moon-duotone" />
|
||||
</Transition>
|
||||
</ClientOnly>
|
||||
</button>
|
||||
|
|
88
docs/.vitepress/theme/components/ColorPicker.vue
Normal file
88
docs/.vitepress/theme/components/ColorPicker.vue
Normal file
|
@ -0,0 +1,88 @@
|
|||
<script setup lang="ts">
|
||||
import { colors } from '@fmhy/colors'
|
||||
import { useStorage, useStyleTag } from '@vueuse/core'
|
||||
import { watch } from 'vue'
|
||||
|
||||
const colorScales = [
|
||||
'50',
|
||||
'100',
|
||||
'200',
|
||||
'300',
|
||||
'400',
|
||||
'500',
|
||||
'600',
|
||||
'700',
|
||||
'800',
|
||||
'900',
|
||||
'950'
|
||||
] as const
|
||||
|
||||
type ColorNames = keyof typeof colors
|
||||
const selectedColor = useStorage<ColorNames>('preferred-color', 'swarm')
|
||||
|
||||
const colorOptions = Object.keys(colors).filter(
|
||||
(key) => typeof colors[key as keyof typeof colors] === 'object'
|
||||
) as Array<ColorNames>
|
||||
|
||||
const { css } = useStyleTag('', { id: 'brand-color' })
|
||||
|
||||
const updateThemeColor = (colorName: ColorNames) => {
|
||||
const colorSet = colors[colorName]
|
||||
|
||||
const cssVars = colorScales
|
||||
.map((scale) => `--vp-c-brand-${scale}: ${colorSet[scale]};`)
|
||||
.join('\n ')
|
||||
|
||||
css.value = `
|
||||
:root {
|
||||
${cssVars}
|
||||
--vp-c-brand-1: ${colorSet[500]};
|
||||
--vp-c-brand-2: ${colorSet[600]};
|
||||
--vp-c-brand-3: ${colorSet[800]};
|
||||
--vp-c-brand-soft: ${colorSet[400]};
|
||||
}
|
||||
|
||||
.dark {
|
||||
${cssVars}
|
||||
--vp-c-brand-1: ${colorSet[400]};
|
||||
--vp-c-brand-2: ${colorSet[500]};
|
||||
--vp-c-brand-3: ${colorSet[700]};
|
||||
--vp-c-brand-soft: ${colorSet[300]};
|
||||
}
|
||||
`
|
||||
}
|
||||
|
||||
// Initialize theme color
|
||||
updateThemeColor(selectedColor.value)
|
||||
|
||||
watch(selectedColor, updateThemeColor)
|
||||
|
||||
const normalizeColorName = (colorName: string) =>
|
||||
colorName.replaceAll(/-/g, ' ').charAt(0).toUpperCase() +
|
||||
colorName.slice(1).replaceAll(/-/g, ' ')
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<div>
|
||||
<div class="flex flex-wrap gap-2">
|
||||
<div v-for="color in colorOptions" :key="color">
|
||||
<button
|
||||
:class="[
|
||||
'inline-block w-6 h-6 rounded-full transition-all duration-200'
|
||||
]"
|
||||
@click="selectedColor = color"
|
||||
:title="normalizeColorName(color)"
|
||||
>
|
||||
<span
|
||||
class="inline-block w-6 h-6 rounded-full"
|
||||
:style="{ backgroundColor: colors[color][500] }"
|
||||
/>
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="mt-2 text-sm text-$vp-c-text-2">
|
||||
Selected: {{ normalizeColorName(selectedColor) }}
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
|
@ -35,10 +35,6 @@ function getPrompt() {
|
|||
}
|
||||
|
||||
const messages = {
|
||||
bug: [
|
||||
"We're sorry to hear that!",
|
||||
'Please try to be as specific as possible and provide us with the steps to reproduce the bug.'
|
||||
],
|
||||
suggestion: [
|
||||
"We're glad you want to share your ideas!",
|
||||
'Nix the fluff and just tell us what you think!',
|
||||
|
@ -73,10 +69,12 @@ const isDisabled = computed(() => {
|
|||
})
|
||||
|
||||
const router = useRouter()
|
||||
// prettier-ignore
|
||||
const feedback = reactive<
|
||||
Pick<FeedbackType, 'message' | 'page'> & Partial<Pick<FeedbackType, 'type'>>
|
||||
>({
|
||||
|
||||
const feedback = reactive<{
|
||||
message: string
|
||||
page: string
|
||||
type?: FeedbackType['type']
|
||||
}>({
|
||||
page: router.route.path,
|
||||
message: ''
|
||||
})
|
||||
|
@ -138,82 +136,86 @@ const toggleCard = () => (isCardShown.value = !isCardShown.value)
|
|||
<template v-if="props.heading">
|
||||
<button
|
||||
@click="toggleCard()"
|
||||
class="bg-$vp-c-default-soft hover:bg-$vp-c-default-soft/40 text-primary border-$vp-c-default-soft hover:border-primary ml-3 inline-flex h-7 items-center justify-center whitespace-nowrap rounded-md border-2 border-solid px-1.5 py-1.5 text-sm font-medium transition-all duration-300 sm:h-6"
|
||||
class="bg-$vp-c-default-soft text-primary border-$vp-c-default-soft hover:border-primary ml-3 inline-flex h-7 items-center justify-center whitespace-nowrap rounded-md border-2 border-solid px-1.5 py-3.5 text-sm font-medium transition-all duration-300 sm:h-6"
|
||||
>
|
||||
<span
|
||||
:class="
|
||||
isCardShown === false
|
||||
? `i-lucide:heart-handshake`
|
||||
: `i-lucide:circle-x`
|
||||
"
|
||||
:class="isCardShown === false ? `i-lucide:mail` : `i-lucide:mail-x`"
|
||||
/>
|
||||
</button>
|
||||
</template>
|
||||
<template v-else>
|
||||
<button
|
||||
class="bg-$vp-c-default-soft hover:bg-$vp-c-default-soft/40 text-primary px2 py1 border-$vp-c-default-soft hover:border-primary mt-2 select-none rounded border-2 border-solid font-bold transition-all duration-300"
|
||||
@click="toggleCard()"
|
||||
<div
|
||||
class="mt-2 p-4 border-2 border-solid bg-brand-50 border-brand-300 dark:bg-brand-950 dark:border-brand-800 rounded-xl col-span-3 transition-colors duration-250"
|
||||
>
|
||||
<span
|
||||
:class="
|
||||
isCardShown === false
|
||||
? `i-lucide:heart-handshake mr-2`
|
||||
: `i-lucide:circle-x mr-2`
|
||||
"
|
||||
/>
|
||||
<span>Send Feedback</span>
|
||||
</button>
|
||||
<div class="flex items-start md:items-center gap-3">
|
||||
<div class="pt-1 md:pt-0">
|
||||
<div
|
||||
class="w-10 h-10 rounded-full flex items-center justify-center bg-brand-500 dark:bg-brand-400"
|
||||
>
|
||||
<span
|
||||
:class="
|
||||
isCardShown === false
|
||||
? `i-lucide:mail w-6 h-6 text-white dark:text-brand-950`
|
||||
: `i-lucide:mail-x w-6 h-6 text-white dark:text-brand-950`
|
||||
"
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
<div
|
||||
class="flex-grow flex items-start md:items-center gap-3 flex-col md:flex-row"
|
||||
>
|
||||
<div class="flex-grow">
|
||||
<div class="font-semibold text-brand-950 dark:text-brand-50">
|
||||
Got feedback?
|
||||
</div>
|
||||
<div class="text-sm text-brand-800 dark:text-brand-100">
|
||||
We'd love to know what you think about this page.
|
||||
</div>
|
||||
</div>
|
||||
<div>
|
||||
<button
|
||||
class="inline-block text-center rounded-full px-4 py-2.5 text-sm font-medium border-2 border-solid text-brand-700 border-brand-300 dark:text-brand-100 dark:border-brand-800"
|
||||
@click="toggleCard()"
|
||||
>
|
||||
Share Feedback
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<Transition name="fade" mode="out-in">
|
||||
<div
|
||||
v-if="isCardShown"
|
||||
class="border-$vp-c-divider bg-$vp-c-bg-alt b-rd-4 m-[2rem 0] step mt-4 border-2 border-solid p-6"
|
||||
class="border-$vp-c-divider bg-$vp-c-bg-alt b-rd-4 m-[2rem 0] mt-4 border-2 border-solid p-6"
|
||||
>
|
||||
<Transition name="fade" mode="out-in">
|
||||
<div v-if="!feedback.type" class="step">
|
||||
<div>
|
||||
<div>
|
||||
<p class="desc">{{ prompt }}</p>
|
||||
<p class="heading">
|
||||
{{ helpfulText }}
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
<div v-if="!feedback.type">
|
||||
<p class="heading">
|
||||
{{ helpfulText }}
|
||||
</p>
|
||||
<div class="flex flex-wrap gap-2">
|
||||
<button
|
||||
v-for="item in feedbackOptions"
|
||||
:key="item.value"
|
||||
class="btn"
|
||||
class="bg-bg border-$vp-c-default-soft hover:border-primary mt-2 select-none rounded border-2 border-solid font-bold transition-all duration-250 rounded-lg text-[14px] font-500 leading-normal m-0 px-3 py-1.5 text-center align-middle whitespace-nowrap"
|
||||
@click="handleSubmit(item.value)"
|
||||
>
|
||||
<span>{{ item.label }}</span>
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
<div v-else-if="feedback.type && !success" class="step">
|
||||
<div v-else-if="feedback.type && !success">
|
||||
<div>
|
||||
<p class="desc">
|
||||
{{ helpfulDescription }}
|
||||
</p>
|
||||
<div>
|
||||
<span>{{ getFeedbackOption(feedback.type)?.label }}</span>
|
||||
<button
|
||||
style="margin-left: 0.5rem"
|
||||
class="btn"
|
||||
@click="feedback.type = undefined"
|
||||
>
|
||||
<span class="i-lucide:arrow-left-from-line">close</span>
|
||||
</button>
|
||||
</div>
|
||||
<p class="desc">{{ helpfulDescription }} - {{ prompt }}</p>
|
||||
<span>{{ getFeedbackOption(feedback.type)?.label }}</span>
|
||||
</div>
|
||||
<p class="heading">
|
||||
{{ message }}
|
||||
</p>
|
||||
<p class="heading" v-text="message"></p>
|
||||
<div v-if="feedback.type === 'suggestion'" class="mb-2 text-sm">
|
||||
<details>
|
||||
<summary>
|
||||
<span class="i-lucide:shield-alert bg-cerise-400 mb-1 ml-1" />
|
||||
<span class="ii-lucide-shield-x bg-cerise-400 mb-1 ml-1" />
|
||||
Do not submit any of the following:
|
||||
</summary>
|
||||
<strong>🕹️ Emulators</strong>
|
||||
|
@ -260,7 +262,7 @@ const toggleCard = () => (isCardShown.value = !isCardShown.value)
|
|||
<textarea
|
||||
v-model="feedback.message"
|
||||
autofocus
|
||||
class="input"
|
||||
class="bg-$vp-c-bg-alt text-$vp-c-text-2 w-full h-[100px] border border-$vp-c-divider rounded px-3 py-1.5 border-$vp-c-divider bg-$vp-c-bg-alt b-rd-4 border-2 border-solid"
|
||||
placeholder="What a lovely wiki!"
|
||||
/>
|
||||
<p class="desc mb-2">
|
||||
|
@ -273,16 +275,24 @@ const toggleCard = () => (isCardShown.value = !isCardShown.value)
|
|||
Discord.
|
||||
</a>
|
||||
</p>
|
||||
<button
|
||||
type="submit"
|
||||
class="btn btn-primary"
|
||||
:disabled="isDisabled"
|
||||
@click="handleSubmit()"
|
||||
>
|
||||
Send Feedback 📩
|
||||
</button>
|
||||
<div class="flex flex-row gap-2">
|
||||
<button
|
||||
class="bg-$vp-c-default-soft text-primary border-$vp-c-default-soft inline-flex h-7 items-center justify-center whitespace-nowrap rounded-md border-2 border-solid px-1.5 py-3.5 text-sm font-medium transition-all duration-300 sm:h-6"
|
||||
@click="feedback.type = undefined"
|
||||
>
|
||||
<span class="i-lucide:panel-left-close">close</span>
|
||||
</button>
|
||||
<button
|
||||
type="submit"
|
||||
class="border border-div rounded-lg transition-colors duration-250 inline-block text-14px font-500 leading-1.5 px-3 py-3 text-center align-middle whitespace-nowrap disabled:opacity-50 text-text-2 bg-brand-100 dark:bg-brand-700 border-brand-800 dark:border-brand-700 disabled:bg-brand-100 dark:disabled:bg-brand-900 hover:border-brand-900 dark:hover:border-brand-800 hover:bg-brand-200 dark:hover:bg-brand-800"
|
||||
:disabled="isDisabled"
|
||||
@click="handleSubmit()"
|
||||
>
|
||||
Send Feedback 📩
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
<div v-else class="step">
|
||||
<div v-else>
|
||||
<p class="heading">Thanks for your feedback!</p>
|
||||
</div>
|
||||
</Transition>
|
||||
|
@ -291,10 +301,6 @@ const toggleCard = () => (isCardShown.value = !isCardShown.value)
|
|||
</template>
|
||||
|
||||
<style scoped lang="css">
|
||||
.step > * + * {
|
||||
margin-top: 1rem;
|
||||
}
|
||||
|
||||
.btn {
|
||||
border: 1px solid var(--vp-c-divider);
|
||||
background-color: var(--vp-c-bg);
|
||||
|
@ -337,16 +343,6 @@ const toggleCard = () => (isCardShown.value = !isCardShown.value)
|
|||
font-weight: 700;
|
||||
}
|
||||
|
||||
.input {
|
||||
background-color: var(--vp-c-bg-alt);
|
||||
color: var(--vp-c-text-2);
|
||||
width: 100%;
|
||||
height: 100px;
|
||||
border: 1px solid var(--vp-c-divider);
|
||||
border-radius: 4px;
|
||||
padding: 0.375rem 0.75rem;
|
||||
}
|
||||
|
||||
.desc {
|
||||
display: block;
|
||||
line-height: 20px;
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
<script setup lang="ts">
|
||||
import Field from './CardField.vue'
|
||||
import ColorPicker from './ColorPicker.vue'
|
||||
import InputField from './InputField.vue'
|
||||
import ToggleStarred from './ToggleStarred.vue'
|
||||
</script>
|
||||
|
@ -16,7 +17,7 @@ import ToggleStarred from './ToggleStarred.vue'
|
|||
<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="align-center mb-4 flex justify-between">
|
||||
<div class="align-center mb-4 mt-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">
|
||||
|
@ -25,16 +26,6 @@ import ToggleStarred from './ToggleStarred.vue'
|
|||
</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>
|
||||
<ColorPicker />
|
||||
</div>
|
||||
</template>
|
||||
|
|
|
@ -3,7 +3,7 @@ import type { EnhanceAppContext } from 'vitepress'
|
|||
import nprogress from 'nprogress'
|
||||
|
||||
/**
|
||||
* Copyright (c) taskylizard. All rights reserved.
|
||||
* Copyright (c) 2025 taskylizard. Apache License 2.0.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/**
|
||||
* Copyright (c) taskylizard. All rights reserved.
|
||||
* Copyright (c) 2025 taskylizard. Apache License 2.0.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/**
|
||||
* Copyright (c) taskylizard. All rights reserved.
|
||||
* Copyright (c) 2025 taskylizard. Apache License 2.0.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
|
|
|
@ -257,6 +257,71 @@
|
|||
font-weight: bold;
|
||||
}
|
||||
|
||||
.info.custom-block a {
|
||||
color: var(--vp-custom-block-info-text);
|
||||
font-weight: 500;
|
||||
text-decoration: underline;
|
||||
text-underline-offset: 2px;
|
||||
transition: opacity 0.25s;
|
||||
}
|
||||
|
||||
.info.custom-block a:hover {
|
||||
opacity: 0.7;
|
||||
color: var(--vp-custom-block-info-text-deep);
|
||||
}
|
||||
|
||||
.note.custom-block a {
|
||||
color: var(--vp-custom-block-info-text);
|
||||
font-weight: 500;
|
||||
text-decoration: underline;
|
||||
text-underline-offset: 2px;
|
||||
transition: opacity 0.25s;
|
||||
}
|
||||
|
||||
.note.custom-block a:hover {
|
||||
opacity: 0.7;
|
||||
color: var(--vp-custom-block-note-text-deep);
|
||||
}
|
||||
|
||||
.tip.custom-block a {
|
||||
color: var(--vp-custom-block-tip-text);
|
||||
font-weight: 500;
|
||||
text-decoration: underline;
|
||||
text-underline-offset: 2px;
|
||||
transition: opacity 0.25s;
|
||||
}
|
||||
|
||||
.tip.custom-block a:hover {
|
||||
opacity: 0.7;
|
||||
color: var(--vp-custom-block-tip-text-deep);
|
||||
}
|
||||
|
||||
.warning.custom-block a {
|
||||
color: var(--vp-custom-block-warning-text);
|
||||
font-weight: 500;
|
||||
text-decoration: underline;
|
||||
text-underline-offset: 2px;
|
||||
transition: opacity 0.25s;
|
||||
}
|
||||
|
||||
.warning.custom-block a:hover {
|
||||
opacity: 0.7;
|
||||
color: var(--vp-custom-block-warning-text-deep);
|
||||
}
|
||||
|
||||
.danger.custom-block a {
|
||||
color: var(--vp-custom-block-danger-text);
|
||||
font-weight: 500;
|
||||
text-decoration: underline;
|
||||
text-underline-offset: 2px;
|
||||
transition: opacity 0.25s;
|
||||
}
|
||||
|
||||
.danger.custom-block a:hover {
|
||||
opacity: 0.7;
|
||||
color: var(--vp-custom-block-danger-text-deep);
|
||||
}
|
||||
|
||||
.info.custom-block {
|
||||
--icon: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiBzdHJva2U9ImN1cnJlbnRDb2xvciIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiIGNsYXNzPSJsdWNpZGUgbHVjaWRlLWluZm8iPjxjaXJjbGUgY3g9IjEyIiBjeT0iMTIiIHI9IjEwIi8+PHBhdGggZD0iTTEyIDE2di00Ii8+PHBhdGggZD0iTTEyIDhoLjAxIi8+PC9zdmc+');
|
||||
}
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/**
|
||||
* Copyright (c) taskylizard. All rights reserved.
|
||||
* Copyright (c) 2025 taskylizard. Apache License 2.0.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
|
@ -19,7 +19,7 @@ import { basename } from 'pathe'
|
|||
import { excluded, getHeader } from './transformer/constants'
|
||||
import { replaceUnderscore, transformer } from './transformer/core'
|
||||
|
||||
export function transforms(): Plugin {
|
||||
export function transformsPlugin(): Plugin {
|
||||
return {
|
||||
name: 'custom:transform-content',
|
||||
enforce: 'pre',
|
||||
|
|
|
@ -1,5 +1,7 @@
|
|||
import { meta } from '../constants'
|
||||
|
||||
/**
|
||||
* Copyright (c) taskylizard. All rights reserved.
|
||||
* Copyright (c) 2025 taskylizard. Apache License 2.0.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
|
@ -146,7 +148,7 @@ export function getHeader(id: string) {
|
|||
|
||||
const description = '<p class="text-black dark:text-text-2">'
|
||||
|
||||
const feedback = '<Feedback />'
|
||||
const feedback = meta.build.api ? '<Feedback />' : ''
|
||||
|
||||
const data = headers[id]
|
||||
let header = '---\n'
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/**
|
||||
* Copyright (c) taskylizard. All rights reserved.
|
||||
* Copyright (c) 2025 taskylizard. Apache License 2.0.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
|
@ -30,8 +30,8 @@ interface Replacer {
|
|||
}
|
||||
|
||||
export const transformer = (text: string) => {
|
||||
const handler: ProxyHandler = {
|
||||
get(target, prop) {
|
||||
const handler: ProxyHandler<{ text: string }> = {
|
||||
get(target: { text: string }, prop: string | symbol) {
|
||||
if (prop === 'transform') {
|
||||
return (name: string, transforms: Transform[]): Replacer => {
|
||||
consola.debug(`Starting transform ${name} with ${transforms}`)
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/**
|
||||
* Copyright (c) taskylizard. All rights reserved.
|
||||
* Copyright (c) 2025 taskylizard. Apache License 2.0.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
|
@ -18,7 +18,7 @@ import z from 'zod'
|
|||
|
||||
export const FeedbackSchema = z.object({
|
||||
message: z.string().min(5).max(1000),
|
||||
type: z.enum(['bug', 'suggestion', 'appreciation', 'other']),
|
||||
type: z.enum(['suggestion', 'appreciation', 'other']),
|
||||
page: z.string().min(3).max(20),
|
||||
// For heading based feedback
|
||||
heading: z.string().min(3).max(20).optional()
|
||||
|
@ -34,8 +34,6 @@ export const feedbackOptions: Option[] = [
|
|||
label: '💡 I have a suggestion',
|
||||
value: 'suggestion'
|
||||
},
|
||||
|
||||
{ label: '🐛 I want to report a website bug', value: 'bug' },
|
||||
{
|
||||
label: '👍 I appreciate the work',
|
||||
value: 'appreciation'
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/**
|
||||
* Copyright (c) taskylizard. All rights reserved.
|
||||
* Copyright (c) 2025 taskylizard. Apache License 2.0.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
|
|
2
docs/.vitepress/vue-shim.d.ts
vendored
2
docs/.vitepress/vue-shim.d.ts
vendored
|
@ -1,5 +1,5 @@
|
|||
/**
|
||||
* Copyright (c) taskylizard. All rights reserved.
|
||||
* Copyright (c) 2025 taskylizard. Apache License 2.0.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
|
|
|
@ -20,6 +20,7 @@
|
|||
* [Disblock Origin](https://codeberg.org/AllPurposeMat/Disblock-Origin) or [Discord Adblock](https://github.com/CroissantDuNord/discord-adblock) - Hide Discord Nitro / Boost Ads
|
||||
* [Popupblocker All](https://addons.mozilla.org/en-US/firefox/addon/popupblockerall/), [PopUpOFF](https://romanisthere.github.io/PopUpOFF-Website/index.html), [Popup Blocker (strict)](https://github.com/schomery/popup-blocker) or [PopupBlocker](https://github.com/AdguardTeam/PopupBlocker) - Popup / New Tab Blockers
|
||||
* [AdGuard](https://github.com/AdguardTeam/AdguardBrowserExtension) - Adblocker
|
||||
* [Zen](https://zenprivacy.net/) - System-Wide Adblocker / [Discord](https://discord.com/invite/jSzEwby7JY) / [GitHub](https://github.com/anfragment/zen)
|
||||
* [BehindTheOverlay](https://github.com/NicolaeNMV/BehindTheOverlay) - Hide Website Overlays
|
||||
|
||||
***
|
||||
|
@ -43,7 +44,7 @@
|
|||
* ↪️ **[DNS Filters / Blocklists](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_dns_filters)**
|
||||
* ↪️ **[Free DNS Resolvers](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_free_dns_resolvers)**
|
||||
* ⭐ **[Pi-Hole](https://pi-hole.net/)** - Self-Hosted DNS Adblocking / [Subreddit](https://reddit.com/r/pihole/) / [X](https://x.com/The_Pi_Hole)
|
||||
* ⭐ **Pi-Hole Tools** - [WSL1](https://github.com/DesktopECHO/Pi-Hole-for-WSL1) / [Filters](https://firebog.net/) / [Anti-Telemetry](https://github.com/MoralCode/pihole-antitelemetry) / [Tray App](https://github.com/PinchToDebug/Pihole-Tray/)
|
||||
* ⭐ **Pi-Hole Tools** - [Filters](https://firebog.net/) / [Anti-Telemetry](https://github.com/MoralCode/pihole-antitelemetry) / [Tray App](https://github.com/PinchToDebug/Pihole-Tray/)
|
||||
* ⭐ **[AdGuard Home](https://adguard.com/en/adguard-home/overview.html)** - Self-Hosted DNS Adblocking / [Balena-Adguard](https://github.com/klutchell/balena-adguard) / [GitHub](https://github.com/AdguardTeam/AdGuardHome) / [X](https://x.com/adguard) / [Telegram](https://t.me/adguarden) / [Subreddit](https://reddit.com/r/Adguard)
|
||||
* ⭐ **[Mullvad DNS](https://mullvad.net/en/help/dns-over-https-and-dns-over-tls/)** - DNS Adblocking / Filtering / [Extension](https://mullvad.net/en/download/browser/extension) / [GitHub](https://github.com/mullvad)
|
||||
* ⭐ **[YogaDNS](https://yogadns.com/)** - Custom DNS Client for Windows
|
||||
|
@ -89,7 +90,7 @@
|
|||
* ⭐ **[AdwCleaner](https://www.malwarebytes.com/adwcleaner/)** - Anti-Adware / [X](https://x.com/malwarebytes)
|
||||
* ⭐ **[Security / Antivirus Multireddit](https://www.reddit.com/user/goretsky/m/security/)** - Reddit Communities
|
||||
* ⭐ **[FMHY SafeGuard](https://github.com/fmhy/FMHY-SafeGuard)** - Detects if Current Site is Trusted / Untrusted
|
||||
* [FMHY LinkSafe Guard](https://greasyfork.org/en/scripts/528660-fmhy-safelink-guard) - Shows if Site is Trusted / Untrusted on Web Results
|
||||
* [FMHY LinkSafe Guard](https://greasyfork.org/en/scripts/528660-fmhy-safelink-guard) - Shows if Site is Trusted / Untrusted on Web Results
|
||||
* [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://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#malware-removal-forums)
|
||||
* [Sandboxie Plus](https://sandboxie-plus.com/) - Sandbox Environment / [Guide](https://rentry.co/sandboxie-guide) / [GitHub](https://github.com/sandboxie-plus/Sandboxie)
|
||||
* [Windows Sandbox](https://learn.microsoft.com/en-us/windows/security/application-security/application-isolation/windows-sandbox/windows-sandbox-overview) - Full Virtual Machine Sandbox Environment
|
||||
|
@ -132,6 +133,7 @@
|
|||
* [Disable Recall](https://rentry.co/b88ixo8f) - Disable Microsoft Recall on Windows 11
|
||||
* [Agent DVR](https://www.ispyconnect.com/) / [Subreddit](https://www.reddit.com/r/ispyconnect/), [Frigate](https://frigate.video/) / [GitHub](https://github.com/blakeblackshear/frigate), [Smart Sec Cam](https://github.com/scottbarnesg/smart-sec-cam) or [ZoneMinder](https://zoneminder.com/) / [Discord](https://discord.gg/tHYyP9k66q) / [GitHub](https://github.com/ZoneMinder/ZoneMinder/) - Security Camera Systems
|
||||
* [Team Elite](https://www.te-home.net/) or [Technet24](https://technet24.ir/) - Security Software / [Translator](https://github.com/FilipePS/Traduzir-paginas-web)
|
||||
* [YourDigitalRights](https://yourdigitalrights.org/) - Get Organizations to Delete Your Personal Data
|
||||
* [Big Ass Data Broker Opt-Out List](https://github.com/yaelwrites/Big-Ass-Data-Broker-Opt-Out-List) - List of Data Broker Opt-Out Resources
|
||||
* [Surfer Protocol](https://surferprotocol.org/) - Multi-platform User Data Exporter / [Discord](https://discord.gg/5KQkWApkYC) / [GitHub](https://github.com/Surfer-Org/Protocol)
|
||||
* [F-Secure Identity Theft Checker](https://www.f-secure.com/en/identity-theft-checker) - Identity Theft Check
|
||||
|
@ -166,9 +168,9 @@
|
|||
|
||||
## ▷ Network Security
|
||||
|
||||
* ⭐ **[nekoray](https://matsuridayo.github.io/)** - DIY Privacy Network / [Telegram](https://t.me/Matsuridayo) / [GitHub](https://github.com/MatsuriDayo/nekoray)
|
||||
* ⭐ **[v2rayN](https://github.com/2dust/v2rayN)** - DIY Privacy Network
|
||||
* ⭐ **[Safing Portmaster](https://safing.io/)** - Network Monitor / DNS Resolver / Firewall / [Discord](https://discord.com/invite/safing) / [GitHub](https://github.com/safing)
|
||||
* ⭐ **[DNSveil](https://msasanmh.github.io/DNSveil/)** - DNS Client / [Guide](https://rentry.co/SecureDNSClient) / [GitHub](https://github.com/msasanmh/DNSveil)
|
||||
* ⭐ **[DNSveil](https://msasanmh.github.io/DNSveil/)** - DNS Client / [Guide](https://rentry.org/DNSveil) / [GitHub](https://github.com/msasanmh/DNSveil)
|
||||
* [I2P](https://geti2p.net/en/) - Encrypted Private Network Layer / [Guide](https://rentry.co/CBGI2P) / [GitLab](https://i2pgit.org/)
|
||||
* [XrayUIGroup](https://github.com/MHSanaei/3x-ui) - DIY Privacy Network / [Telegram](https://t.me/XrayUI)
|
||||
* [Fort](https://github.com/tnodir/fort) - Firewall
|
||||
|
@ -200,10 +202,10 @@
|
|||
* ↪️ **[Encrypted XMPP Servers](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_encrypted_xmpp_servers)**
|
||||
* ↪️ **[Encode / Decode URLs](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/text-tools#wiki_.25B7_encode_.2F_decode)**
|
||||
* ⭐ **[PrivacySpy](https://privacyspy.org/)** / [GitHub](https://github.com/politiwatch/privacyspy) or [ToS;DR](https://tosdr.org/) / [Discord](https://discord.gg/tosdr) / [GitHub](https://github.com/tosdr) - Sites Privacy Policies
|
||||
* ⭐ **[JustDeleteMe](https://justdeleteme.xyz/)** - Find / Terminate Old Accounts / [GitHub](https://github.com/jdm-contrib/jdm)
|
||||
* ⭐ **[Cryptomator](https://cryptomator.org/)** / [GitHub](https://github.com/cryptomator/cryptomator) or [Tahoe-LAFS](https://tahoe-lafs.org/trac/tahoe-lafs) / [GitHub](https://github.com/tahoe-lafs/tahoe-lafs) - Cloud File Encryption
|
||||
* [FirefoxMonitor](https://monitor.mozilla.org/) - Data Breach Check / [GitHub](https://github.com/mozilla/blurts-server)
|
||||
* [BreachDirectory](https://breachdirectory.org), [Snusbase](https://snusbase.com/), [Leak Lookup](https://leak-lookup.com/), [Trufflehog](https://trufflesecurity.com/) / [Discord](https://discord.gg/8Hzbrnkr7E) / [GitHub](https://github.com/trufflesecurity/trufflehog) or [LeakPeek](https://leakpeek.com/) / [Discord](https://discord.com/invite/mNxhSRWKwq) - Data Breach Search Engines
|
||||
* [JustDeleteMe](https://justdeleteme.xyz/) - Find / Terminate Old Accounts / [GitHub](https://github.com/jdm-contrib/jdm)
|
||||
* [OpenPhish](https://openphish.com/), [Netcraft Report](https://report.netcraft.com/report), [isitPhishing](https://isitphishing.org/), [PhishStats](https://phishstats.info/) / [Telegram](https://t.me/joinchat/AAAAAElZRwd0aBrYTaHHcQ) / [GitHub](https://github.com/eschultze/phishstats-api-network) or [PhishTank](https://phishtank.org/) - Report Phishing Sites
|
||||
* [DNS Jumper](https://www.sordum.org/7952/dns-jumper-v2-3/) - DNS Switcher
|
||||
* [ssh-chat](https://github.com/shazow/ssh-chat) or [Devzat](https://github.com/quackduck/devzat) - SSH Chat
|
||||
|
@ -334,7 +336,6 @@
|
|||
* ⭐ **[AirVPN](https://airvpn.org/)** - Paid / [.onion](https://airvpn3epnw2fnsbx5x2ppzjs6vxtdarldas7wjyqvhscj7x43fxylqd.onion/) / [GitHub](https://github.com/AirVPN) / [GitLab](https://gitlab.com/AirVPN)
|
||||
* [Mullvad VPN](https://mullvad.net/) - Paid / [No-Logging](https://mullvad.net/en/blog/2023/4/20/mullvad-vpn-was-subject-to-a-search-warrant-customer-data-not-compromised/) / [Port Warning](https://mullvad.net/en/blog/2023/5/29/removing-the-support-for-forwarded-ports/) / [GitHub](https://github.com/mullvad)
|
||||
* [IVPN](https://www.ivpn.net/) - Paid / [No Logging](https://www.ivpn.net/knowledgebase/privacy/how-do-we-react-when-requested-by-an-authority-for-information-relating-to-a-customer/) / [Port Warning](https://www.ivpn.net/blog/gradual-removal-of-port-forwarding/) / [Subreddit](https://www.reddit.com/r/IVPN/) / [GitHub](https://github.com/ivpn)
|
||||
* [NYM](https://nym.com/) - Free / Make New Accounts for Access Codes / [GitHub](https://github.com/nymtech/nym)
|
||||
* [PrivadoVPN](https://privadovpn.com/) - Free / 10GB Monthly / Unlimited Accounts via [Temp Mail](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/internet-tools#wiki_.25B7_temp_mail)
|
||||
* [Bitmask](https://bitmask.net/) - Free / Unlimited / [GitLab](https://0xacab.org/leap/bitmask-vpn), [2](https://0xacab.org/leap/bitmask_android)
|
||||
|
||||
|
@ -381,7 +382,7 @@
|
|||
|
||||
## ▷ Proxy Sites
|
||||
|
||||
* **Note** - Keep in mind many proxy sites log info like IP address, sites visited etc. They're useful for unblocking sites, but not very useful for privacy.
|
||||
* **Note** - Keep in mind many proxy sites log info like IP address, sites visited, etc. They're useful for unblocking sites, but not very useful for privacy.
|
||||
|
||||
***
|
||||
|
||||
|
|
82
docs/ai.md
82
docs/ai.md
|
@ -10,15 +10,15 @@
|
|||
|
||||
* 🌐 **[Free LLM API Resources](https://github.com/cheahjs/free-llm-api-resources)** or [Awesome Free ChatGPT](https://github.com/LiLittleCat/awesome-free-chatgpt/blob/main/README_en.md) - Online LLM Indexes
|
||||
* ⭐ **[ChatGPT](https://chatgpt.com/)** - GPT-4o / o3-mini Chatbot / [/r/OpenAI](https://www.reddit.com/r/OpenAI/) / [Subreddit](https://www.reddit.com/r/ChatGPT/) / [Discord](https://discord.com/invite/openai)
|
||||
* ⭐ **[Qwen](https://chat.qwen.ai/)** - Alibaba's Chatbots / 2.5-Max / QwQ-32B
|
||||
* ⭐ **[DeepSeek](https://chat.deepseek.com/)** - R1 + Deepseek V3 / Unlimited / [Subreddit](https://www.reddit.com/r/DeepSeek/) / [Discord](https://discord.gg/Tc7c45Zzu5) / [GitHub](https://github.com/deepseek-ai)
|
||||
* ⭐ **[Gemini](https://gemini.google.com/)** or [AI Studio](https://aistudio.google.com/app/prompts/new_chat) - Google's Chatbot / [Subreddit](https://www.reddit.com/r/Bard/) / [Discord](https://discord.com/invite/gemini)
|
||||
* ⭐ **[Microsoft Copilot](https://copilot.microsoft.com)** - GPT-4o / OpenAI o1 / No Sign-Up / [SydneyQT Jailbreak](https://github.com/juzeon/SydneyQt)
|
||||
* ⭐ **[Grok](https://grok.com/)** - X.com Chatbot / Grok 2 (Unlimited) / Grok 3 (10 Hourly) / [Subreddit](https://www.reddit.com/r/grok/) / [Discord](https://discord.com/invite/kqCc86jM55)
|
||||
* ⭐ **[Gemini](https://gemini.google.com/)** or [AI Studio](https://aistudio.google.com/app/prompts/new_chat) - Gemini 2.5 Pro Experimental / AI Studio = 50 Daily / [Subreddit](https://www.reddit.com/r/Bard/) / [Discord](https://discord.com/invite/gemini)
|
||||
* ⭐ **[Microsoft Copilot](https://copilot.microsoft.com)** - GPT-4o / OpenAI o1 / No Sign-Up
|
||||
* ⭐ **[Chatbot Arena](https://lmarena.ai/)** - Multiple Chatbots / No Sign-Up / [Discord](https://discord.gg/6GXcFg3TH8) / [GitHub](https://github.com/lm-sys/FastChat)
|
||||
* ⭐ **[Mistral](https://chat.mistral.ai)** - Multiple Chatbots / [Discord](https://discord.gg/mistralai)
|
||||
* ⭐ **[Qwen](https://chat.qwen.ai/)** - Alibaba's Chatbots
|
||||
* [Claude](https://claude.ai/) - Anthropic's Chatbot / Phone # Required [Subreddit](https://www.reddit.com/r/ClaudeAI/) / [Discord](https://discord.com/invite/zkrBaqytPW)
|
||||
* ⭐ **[Mistral](https://chat.mistral.ai)** - Mistral Large 2411 / [Discord](https://discord.gg/mistralai)
|
||||
* [Claude](https://claude.ai/) - Claude 3.7 Sonnet / Phone # Required / [Usage Tracker](https://github.com/lugia19/Claude-Usage-Extension) / [Subreddit](https://www.reddit.com/r/ClaudeAI/) / [Discord](https://discord.com/invite/zkrBaqytPW)
|
||||
* [DuckDuckGo AI](https://duck.ai/) - Multiple Chatbots / o3-mini / No Sign-Up
|
||||
* [Grok](https://grok.com/) - X.com Chatbot / [Subreddit](https://www.reddit.com/r/grok/) / [Discord](https://discord.com/invite/kqCc86jM55)
|
||||
* [ChatK](https://chat.oaichat.cc/) or [LobeChat](https://lobechat.com/chat) / [Discord](https://discord.gg/AYFPHvv2jT) / [GitHub](https://github.com/lobehub/lobe-chat) - GPT-4o / Multiple Chatbots
|
||||
* [FFA Chat](https://ffa.chat/) - GPT-4o / Multiple Chatbots
|
||||
* [AI Assistant](https://aiassistantbot.pages.dev/) - Multiple Chatbots / No Sign-Up
|
||||
|
@ -28,26 +28,23 @@
|
|||
* [HelixMind](https://helixmind.online/) - Multiple Chatbots / [Discord](https://discord.gg/7CmPjK87n3)
|
||||
* [HuggingChat](https://huggingface.co/chat/) - Open-Source Chatbots / [GitHub](https://github.com/huggingface/chat-ui)
|
||||
* [Infermatic](https://infermatic.ai/) - Multiple Chatbots / [Discord](https://discord.gg/9GUXmDx9GF)
|
||||
* [LoLLMs Web UI](https://github.com/ParisNeo/lollms-webui) - Multiple Chatbots / [Discord](https://discord.gg/4rR282WJb6)
|
||||
* [Electron Hub](https://www.electronhub.top/) - Multiple Chatbots / [Discord](https://discord.com/invite/apUUqbxCBQ)
|
||||
* [NexusAI](https://www.nexusmind.tech/) - GPT-4o / o1-preview / o3-mini / [Discord](https://discord.com/invite/sk8eddGwmP)
|
||||
* [NextChat](https://nextchat.club/) - Multiple Chatbots / [Instances](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_nextchat_instances) / [GitHub](https://github.com/ChatGPTNextWeb/ChatGPT-Next-Web)
|
||||
* [NextChat](https://nextchat.club/) - Multiple Chatbots / [GitHub](https://github.com/ChatGPTNextWeb/ChatGPT-Next-Web)
|
||||
* [Tune Chat](https://tunehq.ai/tune-chat) - Multiple Chatbots / 24 Msgs per Chat / No Sign-Up / [Discord](https://discord.com/invite/KhF38hrAJ2)
|
||||
* [freegpt4](https://rentry.org/freegpt4) - Free GPT-4 Methods / No Sign-Up
|
||||
* [NVIDIA NIM](https://build.nvidia.com/) - Multiple Chatbots / No Sign-Up
|
||||
* [OIChat](https://oi.wr.do/) - Multiple Chatbots
|
||||
* [Kimi](https://kimi.ai/) - Kimi 1.5 Chatbot
|
||||
* [Groq](https://groq.com/) - Llama 3 and Mixtral Chatbots / [Discord](https://discord.gg/invite/groq)
|
||||
* [SambaNova](https://sambanova.ai/) - Llama 3.1 / Enter Fake Info
|
||||
* [Lambda Chat](https://lambda.chat/chatui/) - Llama 3.1 / Unlimited / No Sign-Up
|
||||
* [Maisa](https://maisa.ai/) - Vinci KPU Chatbot
|
||||
* [Meta AI](https://www.meta.ai/) - Llama 3 Chatbot
|
||||
* [NVIDIA NIM](https://build.nvidia.com/) - Llama 3 Chatbot / No Sign-Up
|
||||
* [MiniMax AI](https://chat.minimax.io/) - Chatbot w/ Large Token Context Window / [GitHub](https://github.com/MiniMax-AI/MiniMax-01)
|
||||
* [Pi](https://pi.ai/) - Inflection AI's Chatbot
|
||||
* [Reka](https://www.reka.ai/) - Reka's Chatbot / No Sign-Up / [Discord](https://discord.gg/jtjNSD52mf)
|
||||
* [Reka](https://www.reka.ai/) - Reka's Chatbot / [Discord](https://discord.gg/jtjNSD52mf)
|
||||
* [Poe](https://poe.com/) - Multiple Chatbots / 150 Daily / Phone # Required / [Discord](https://discord.com/invite/joinpoe)
|
||||
* [PrivateGPT](https://privategpt.dev/) / [Discord](https://discord.com/invite/bK6mRVpErU) / [GitHub](https://github.com/zylon-ai/private-gpt), [NotebookLM](https://notebooklm.google/), [Onyx](https://www.onyx.app/) / [Discord](https://discord.gg/VKwU6Wr2) / [GitHub](https://github.com/onyx-dot-app/onyx) or [DocsGPT](https://www.docsgpt.cloud/) / [Discord](https://discord.gg/VKwU6Wr2) / [GitHub](https://github.com/arc53/DocsGPT) - Document Chatbots / Note-Taking
|
||||
* [Leon](https://getleon.ai/) - AI Assistant / [Discord](https://discord.gg/MNQqqKg) / [GitHub](https://github.com/leon-ai/leon)
|
||||
* [Crossing the Uncanny Valley](https://www.sesame.com/research/crossing_the_uncanny_valley_of_voice#demo) - Realistic AI Voice Chat
|
||||
|
||||
***
|
||||
|
||||
|
@ -56,12 +53,13 @@
|
|||
* 🌐 **[Awesome AI Web Search](https://github.com/felladrin/awesome-ai-web-search)** - AI Search Engine Index
|
||||
* ⭐ **[Perplexity](https://www.perplexity.ai/)** - AI Search Engine / [Enhancements](https://www.cplx.app/) / [Open Source Models](https://labs.perplexity.ai/) / [Discord](https://discord.com/invite/perplexity-ai)
|
||||
* ⭐ **[WolframAlpha](https://www.wolframalpha.com/)** - Searchable Knowledge Base / No Sign-Up / [Mobile](https://rentry.co/FMHYBase64#wolfram-mobile)
|
||||
* ⭐ **[Scira](https://scira.app/)** - AI Search Engine / No Sign-Up / [GitHub](https://github.com/zaidmukaddam/scira)
|
||||
* ⭐ **[Scira](https://scira.ai/)** - AI Search Engine / No Sign-Up / [GitHub](https://github.com/zaidmukaddam/scira)
|
||||
* ⭐ **[You](https://you.com/)** - AI Search Engine / Sign-Up Required / [Discord](https://discord.com/invite/youdotcom) / [GitHub](https://github.com/You-OpenSource)
|
||||
* [Hyperspace](https://hyper.space/) - P2P AI Network / No Sign-Up / [Web App](https://play.hyper.space/), [2](https://compute.hyper.space/) / [GitHub](https://github.com/hyperspaceai)
|
||||
* [Phind](https://www.phind.com/) - Llama Search Engine / No Sign-Up / [Discord](https://discord.gg/S25yW8TebZ)
|
||||
* [Morphic](https://www.morphic.sh/) - AI Search Engine / No Sign-Up / [Discord](https://discord.gg/zRxaseCuGq)
|
||||
* [Komo](https://komo.ai/) - AI Search Engine / No Sign-Up
|
||||
* [Jina](https://search.jina.ai/) - AI Search Engine / No Sign-Up
|
||||
* [Felo](https://felo.ai/) - AI Search Engine / No Sign-Up
|
||||
* [searc.ai](https://searc.ai/) - AI Search Engine / No Sign-Up
|
||||
* [RabbitHoles](https://rabbitholes.dojoma.ai/) - Mind Map Style Search / [Discord](https://discord.gg/Y7pZUw36) / [GitHub](https://github.com/AsyncFuncAI/rabbitholes)
|
||||
|
@ -88,14 +86,15 @@
|
|||
* ⭐ **[oobabooga](https://github.com/oobabooga/text-generation-webui)** - Self-Host Models / [Colab](https://colab.research.google.com/github/pcrii/Philo-Colab-Collection/blob/main/4bit_TextGen_Gdrive.ipynb) / [Subreddit](https://www.reddit.com/r/Oobabooga/) / [Discord](https://discord.gg/jwZCF2dPQN)
|
||||
* ⭐ **[Aphrodite Engine](https://aphrodite.pygmalion.chat/)** - Serve LLMs at Scale with Kobold & OpenAI APIs / [Colab](https://colab.research.google.com/github/AlpinDale/misc-scripts/blob/main/Aphrodite.ipynb) / [GitHub](https://github.com/PygmalionAI/aphrodite-engine)
|
||||
* [Petals](https://petals.dev/) - Self-Hosted / [Discord](https://discord.gg/D9MwApKgWa) / [GitHub](https://github.com/bigscience-workshop/petals)
|
||||
* [Leon](https://getleon.ai/) - Self-Hosted / [Discord](https://discord.gg/MNQqqKg) / [GitHub](https://github.com/leon-ai/leon)
|
||||
* [Ollama](https://ollama.com/) - Self-Hosted / [Discord](https://discord.com/invite/ollama) / [GitHub](https://github.com/ollama/ollama)
|
||||
* [tgpt](https://github.com/aandrew-me/tgpt) - Self-Hosted
|
||||
* [LoLLMs Web UI](https://github.com/ParisNeo/lollms-webui) - Self-Hosted / [Discord](https://discord.gg/4rR282WJb6)
|
||||
* [LM Studio](https://lmstudio.ai/) - Self-Hosted / [Discord](https://discord.gg/aPQfnNkxGC) / [GitHub](https://github.com/lmstudio-ai)
|
||||
* [AnythingLLM](https://anythingllm.com/) - Self-Hosted
|
||||
* [LibreChat](https://librechat.ai/) - Self-Hosted / [Discord](https://discord.com/invite/CEe6vDg9Ky) / [GitHub](https://github.com/danny-avila/LibreChat)
|
||||
* [GPT4All](https://www.nomic.ai/gpt4all) - Self-Hosted / [GitHub](https://github.com/nomic-ai/gpt4all) / [Discord](https://discord.com/invite/myY5YDR8z8)
|
||||
* [llamafile](https://github.com/Mozilla-Ocho/llamafile) - Run LLM with Single Files / [Discord](https://discord.gg/YuMNeuKStr)
|
||||
* [Generative AI for Beginners](https://microsoft.github.io/generative-ai-for-beginners/) - Generative AI Guides
|
||||
|
||||
***
|
||||
|
||||
|
@ -104,7 +103,6 @@
|
|||
* 🌐 **[Sukino-Findings](https://rentry.org/Sukino-Findings)** - AI Roleplay Resources
|
||||
* 🌐 **[BestERP](https://besterp.ai/)** - Roleplaying LLM Lists
|
||||
* ⭐ **[PygmalionAI](https://pygmalion.chat/)** - Self-Hosted Roleplaying Models / [Resources](https://rentry.co/PygmalionLinks) / [Discord](https://discord.com/invite/pygmalionai) / [Subreddit](https://www.reddit.com/r/PygmalionAI/) / [GitHub](https://github.com/PygmalionAI)
|
||||
* ⭐ **[Call Annie](https://callannie.ai/)** - GPT-3.5 Chatbot with Real-Time Voice and Video / [Discord](https://discord.gg/Rfbzet5R3v)
|
||||
* ⭐ **[Character.AI](https://character.ai/)** - Roleplaying Chatbots / [Extract](https://rentry.org/reverseCAI) / [Discord](https://discord.com/invite/characterai) / [Subreddit](https://www.reddit.com/r/CharacterAI/)
|
||||
* ⭐ **[FlowGPT](https://flowgpt.com)** - Roleplaying Chatbots / Some NSFW / [Discord](https://discord.com/invite/tWZGzcpTkf)
|
||||
* ⭐ **[Bot Creation Guide](https://wikia.schneedc.com/bot-creation/intro)** - Character Creation Guide
|
||||
|
@ -112,12 +110,14 @@
|
|||
* [Llama + SillyTavern](https://rentry.org/llama_v2_sillytavern) - Llama + SillyTavern Roleplaying Setup Guide / No Sign-Up
|
||||
* [KoboldAI](https://koboldai.com/) - GUI for Roleplaying Chatbots / No Sign-Up / [Discord](https://discord.com/invite/XuQWadgU9k) / [GitHub](https://github.com/henk717/KoboldAI)
|
||||
* [4thWall AI](https://beta.4wall.ai/) - Roleplaying Chatbots / [Discord](https://discord.com/invite/4wallai) / [Subreddit](https://www.reddit.com/r/4WallAI/)
|
||||
* [WyvernChat](https://app.wyvern.chat/) - Roleplaying Chatbots
|
||||
* [JanitorAI](https://janitorai.com/) - Roleplaying Chatbots / Some NSFW
|
||||
* [FictionLab](https://fictionlab.ai/) - Roleplaying / Story Chatbot / [Discord](https://discord.com/invite/SKcb2C7HjH)
|
||||
* [TavernAI](https://tavernai.net/) - Roleplaying / Story Chatbot / [Colab](https://colab.research.google.com/github/vrihatgan/TavernAI/blob/main/colab/colab.ipynb) / [Discord](https://discord.gg/zmK2gmr45t) / [GitHub](https://github.com/TavernAI/TavernAI)
|
||||
* [AI Dungeon](https://aidungeon.com/) - Roleplaying / Story Chatbot / No Sign-Up / [Subreddit](https://www.reddit.com/r/AIDungeon/) / [Discord](https://discord.com/invite/HB2YBZYjyf)
|
||||
* [Spellbound](https://www.tryspellbound.com/) - Roleplaying / Story Chatbot / No Sign-Up / [Discord](https://discord.com/invite/spellbound)
|
||||
* [Kajiwoto](https://kajiwoto.ai/), [Miku](https://docs.miku.gg/) (No Sign-Up) / [Discord](https://discord.gg/3XPdpUdGgV) or [Agnai](https://agnai.chat/) / [Discord](https://discord.com/invite/DAn38sA8Qj) - Chatbot Builders
|
||||
* [Crossing the Uncanny Valley](https://www.sesame.com/research/crossing_the_uncanny_valley_of_voice#demo) - Realistic AI Voice Chat
|
||||
|
||||
***
|
||||
|
||||
|
@ -129,7 +129,7 @@
|
|||
* ⭐ **[Pieces](https://pieces.app/)** - Multi-LLM Coding AI / GPT-4 / 4o for Free / No Sign-Up / [Discord](https://discord.gg/getpieces)
|
||||
* [WDTCD?](https://whatdoesthiscodedo.com/) - Simple Code Explanations / No Sign-Up
|
||||
* [Sourcery](https://sourcery.ai/) - Auto-Pull Request Reviews / [GitHub](https://github.com/sourcery-ai/sourcery)
|
||||
* [Devv](https://devv.ai/) - Coding Search Engine / No Sign-Up / [GitHub](https://github.com/devv-ai/devv)
|
||||
* [Devv](https://devv.ai/) - Coding Search Engine / [GitHub](https://github.com/devv-ai/devv)
|
||||
* [Telosys](https://www.telosys.org/) - Code Generator / No Sign-Up / [Source Code](https://www.telosys.org/sources.html)
|
||||
* [Llama Coder](https://llamacoder.together.ai/) - Code Generator / No Sign-Up / [GitHub](https://github.com/Nutlope/llamacoder)
|
||||
* [imgcook](https://imgcook.com) - Coding AI / No Sign-Up / [GitHub](https://github.com/imgcook/imgcook)
|
||||
|
@ -159,6 +159,7 @@
|
|||
* 🌐 **[Every ChatGPT GUI](https://github.com/billmei/every-chatgpt-gui)** - ChatGPT GUI Index
|
||||
* 🌐 **[AI API Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/dev-tools/#wiki_.25B7_api_tools)**
|
||||
* ⭐ **[ChatPDF](https://www.chatpdf.com/)** (no Sign-Up) or [AskYourPDF](https://askyourpdf.com/) - Turn Books into Chatbots
|
||||
* [AI Piracy Resources](https://rentry.org/aipiracyresources) - AI / LLM Piracy Guides
|
||||
* [tldraw computer](https://computer.tldraw.com/) - Create Component Workflows to Generate or Transform Data / [Discord](https://discord.com/invite/SBBEVCA4PG) / [GitHub](https://github.com/tldraw/tldraw)
|
||||
* [ChatGPT Box](https://github.com/josStorer/chatGPTBox) or [KeepChatGPT](https://github.com/xcanwin/KeepChatGPT/blob/main/docs/README_EN.md) - Extensions
|
||||
* [LLM](https://llm.datasette.io/) - LLM CLI / [Discord](https://discord.com/invite/RKAH4b8TvE) / [GitHub](https://github.com/simonw/llm)
|
||||
|
@ -177,7 +178,7 @@
|
|||
* [screenpipe](https://screenpi.pe/) - AI Screen Recorder / No Sign-Up / [Discord](https://discord.gg/dU9EBuw7Uq) / [GitHub](https://github.com/mediar-ai/screenpipe)
|
||||
* [ChatGPT Exporter](https://greasyfork.org/en/scripts/456055) - Export Chats / [GitHub](https://github.com/pionxzh/chatgpt-exporter)
|
||||
* [GPThemes](https://github.com/itsmartashub/GPThemes) - ChatGPT Themes
|
||||
* [LLM Model VRAM Calculator](https://huggingface.co/spaces/NyxKrage/LLM-Model-VRAM-Calculator) - LLM VRAM Calculator
|
||||
* [CanIRunThisLLM](https://www.canirunthisllm.net/) or [LLM Model VRAM Calculator](https://huggingface.co/spaces/NyxKrage/LLM-Model-VRAM-Calculator) - LLM Requirement Calculators
|
||||
|
||||
***
|
||||
|
||||
|
@ -224,7 +225,6 @@
|
|||
## ▷ AI Benchmarks
|
||||
|
||||
* ⭐ **[Chatbot Arena](https://lmarena.ai/)** - Chatbot Leaderboards / Benchmarks / [Discord](https://discord.gg/6GXcFg3TH8) / [GitHub](https://github.com/lm-sys/FastChat)
|
||||
* ⭐ **[Open LLM Leaderboard](https://huggingface.co/spaces/open-llm-leaderboard/open_llm_leaderboard)** - Chatbot Leaderboards / Benchmarks
|
||||
* ⭐ **[LiveBench](https://livebench.ai/)** - Chatbot Leaderboards / Benchmarks / [GitHub](https://github.com/livebench/livebench)
|
||||
* [SEAL LLM Leaderboards](https://scale.com/leaderboard) - Chatbot Leaderboards
|
||||
* [WildBench](https://huggingface.co/spaces/allenai/WildBench) - Chatbot Benchmarks / [GitHub](https://github.com/allenai/WildBench)
|
||||
|
@ -235,6 +235,7 @@
|
|||
* [Artificial Analysis](https://artificialanalysis.ai/) - Chatbot Benchmarks
|
||||
* [The Fastest AI](https://thefastest.ai/) - Chatbot Latency Speeds / [GitHub](https://github.com/fixie-ai/thefastest.ai)
|
||||
* [OpenRouter](https://openrouter.ai/rankings) - Chatbot Popularity Rankings / [Discord](https://discord.gg/fVyRaUDgxW) / [GitHub](https://github.com/OpenRouterTeam)
|
||||
* [AI Elo](https://aielo.co/) - AI Game Competitions / Benchmarks
|
||||
|
||||
***
|
||||
***
|
||||
|
@ -246,7 +247,7 @@
|
|||
* [NovelAI](https://novelai.net/) - Story Writing AI / No Sign-Up / [Limit Bypass](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#novelai-bypass), [2](https://greasyfork.org/en/scripts/448926) / [Discord](https://discord.com/invite/novelai)
|
||||
* [Dreamily](https://dreamily.ai/) - Story Writing AI
|
||||
* [PerchanceStory](https://perchancestory.com/) - Story Writing AI
|
||||
* [Quarkle](https://quarkle.ai/) - AI Writing Assistant
|
||||
* [Quarkle](https://quarkle.ai/) - AI Writing Assistant
|
||||
|
||||
***
|
||||
|
||||
|
@ -260,12 +261,15 @@
|
|||
|
||||
# ► Video Generation
|
||||
|
||||
* 🌐 **[VBench](https://huggingface.co/spaces/Vchitect/VBench_Leaderboard)** - Video Generation Model Leaderboard
|
||||
* ⭐ **[VideoFX](https://labs.google/fx/tools/video-fx)** - US Only / [Discord](https://discord.com/invite/googlelabs)
|
||||
* ⭐ **[PixVerse](https://pixverse.ai/)** - 1 Daily / [Discord](https://discord.com/invite/MXHErdJHMg)
|
||||
* [Synthesis Colab](https://github.com/camenduru/text-to-video-synthesis-colab) - Unlimited / Colab / [Discord](https://discord.gg/k5BwmmvJJU)
|
||||
* [Stable Video](https://www.stablevideo.com/)
|
||||
* [Vidu](https://www.vidu.studio/) - 6 Monthly / [Discord](https://discord.gg/3pDU8fmQ8Y)
|
||||
* [Genmo](https://www.genmo.ai/) - 30 Monthly / [GitHub](https://github.com/genmoai/mochi)
|
||||
* [Stable Diffusion Videos](https://github.com/nateraw/stable-diffusion-videos) - Unlimited / [Colab](https://colab.research.google.com/github/nateraw/stable-diffusion-videos/blob/main/stable_diffusion_videos.ipynb)
|
||||
* [Wan AI](https://wan.video/) / 10 Daily
|
||||
* [Dream Machine](https://lumalabs.ai/dream-machine) - 5 per Account / [Discord](https://discord.gg/lumaai)
|
||||
* [LensGo](https://lensgo.ai/) - 5 Daily / [Discord](https://discord.com/invite/CHMhrByFJS)
|
||||
* [Kling AI](https://klingai.com/) - 8 Monthly / [Discord](https://discord.com/invite/8tj8YjSzKr)
|
||||
|
@ -273,8 +277,10 @@
|
|||
* [Dreamina](https://dreamina.capcut.com/ai-tool/home) - 150 Monthly
|
||||
* [Krea](https://www.krea.ai/) - 2 Daily / [Discord](https://discord.gg/rJurUAR8Kz)
|
||||
* [Hailuo Free](https://hailuoaifree.com/) - Unlimited
|
||||
* [Hailuo AI](https://hailuoai.video/) - 3 Daily / Use Translator / [Discord](https://discord.com/invite/hvvt8hAye6)
|
||||
* [Hailuo AI](https://hailuoai.video/) - 3 Daily / [Discord](https://discord.com/invite/hvvt8hAye6)
|
||||
* [Fusion Brain](https://fusionbrain.ai/en/) - Unlimited
|
||||
* [Vivago](https://vivago.ai/) - 1 Daily
|
||||
* [ChatGLM](https://chatglm.cn/) - Unlimited / Requires Signup & Phone # / SMS Generators Work
|
||||
* [Eggnog](https://www.eggnog.ai/) - AI Character Video Remixer + Editor
|
||||
|
||||
***
|
||||
|
@ -284,8 +290,8 @@
|
|||
* ⭐ **[NexusAI Image](https://image.nexusmind.tech/)** / 300 Daily Per Model / [Discord](https://discord.com/invite/sk8eddGwmP)
|
||||
* ⭐ **[FLUX.1 [Schnell]](https://huggingface.co/spaces/black-forest-labs/FLUX.1-schnell)** or [FLUX.1 [Dev]](https://huggingface.co/spaces/black-forest-labs/FLUX.1-dev) / Unlimited / No Sign-Up
|
||||
* ⭐ **[Mage](https://www.mage.space/)** / No Sign-Up / [Discord](https://discord.com/invite/GT9bPgxyFP)
|
||||
* ⭐ **[ImageFX](https://labs.google/fx/tools/image-fx)** - Google's Image Generator / Unlimited / Region Based / [Discord](https://discord.com/invite/googlelabs)
|
||||
* ⭐ **[ComfyUI Online](https://www.runcomfy.com/comfyui-web)** or [ComfyUI-Zluda](https://github.com/patientx/ComfyUI-Zluda) / Unlimited
|
||||
* ⭐ **[ImageFX](https://labs.google/fx/tools/image-fx)** or [Gemini](https://gemini.google.com/) - Google's Image Generators / Unlimited / Region Based / [Discord](https://discord.com/invite/googlelabs)
|
||||
* ⭐ **[ComfyUI Online](https://www.runcomfy.com/comfyui-web)** / Unlimited / No Sign-Up
|
||||
* ⭐ **[Grok](https://grok.com/)** / 25 Per 2 Hours / [Subreddit](https://www.reddit.com/r/grok/) / [Discord](https://discord.com/invite/kqCc86jM55)
|
||||
* [Dezgo](https://dezgo.com/) / Unlimited / No Sign-Up / [Discord](https://discord.com/invite/RQrGpUhPhx)
|
||||
* [PicLumen](https://piclumen.com/) / Unlimited / [Discord](https://discord.gg/bAycHJgbD8)
|
||||
|
@ -293,6 +299,7 @@
|
|||
* [Microsoft Designer](https://designer.microsoft.com/image-creator), [2](https://www.bing.com/images/create) / 12 Monthly
|
||||
* [Kling AI](https://klingai.com/) / 366 Monthly / [Characters](https://huggingface.co/spaces/Kwai-Kolors/Kolors-Character-With-Flux) / [Portraits](https://huggingface.co/spaces/Kwai-Kolors/Kolors-Portrait-with-Flux) / [Discord](https://discord.com/invite/8tj8YjSzKr)
|
||||
* [AI Gallery](https://aigallery.app/) / Unlimited / No Sign-Up
|
||||
* [Wan AI](https://wan.video/) / 100 Daily / No Sign-Up
|
||||
* [Recraft](https://www.recraft.ai/) / 50 Daily / [Discord](https://discord.gg/recraft)
|
||||
* [imgsys](https://imgsys.org/) / Unlimited / Compare Generators / No Sign-Up
|
||||
* [NVIDIA NIM](https://build.nvidia.com/models?filters=usecase%3Ausecase_image_gen) / 50 Daily / No Sign-Up
|
||||
|
@ -300,6 +307,9 @@
|
|||
* [Prodia](https://app.prodia.com/playground) / Unlimited / No Sign-Up / [Discord](https://discord.com/invite/495hz6vrFN)
|
||||
* [Pollinations](https://pollinations.ai/) / Unlimited / No Sign-Up / [Discord](https://discord.gg/k9F7SyTgqn) / [GitHub](https://www.github.com/pollinations/pollinations)
|
||||
* [PicSynth](https://www.picsynth.me/generation) / Unlimited
|
||||
* [Leonardo](https://leonardo.ai/) / 150 Daily
|
||||
* [Loras](https://www.loras.dev/) / Unlimited / [GitHub](https://github.com/Nutlope/loras-dev)
|
||||
* [ChatGLM](https://chatglm.cn/) / Unlimited
|
||||
* [Meta AI](https://www.meta.ai/icebreakers/imagine/) / Unlimited
|
||||
* [Playground](https://playground.com/) / 15 Per 3 Hours
|
||||
* [TensorArt](https://tensor.art/) / 40 Daily / [Subreddit](https://www.reddit.com/r/TensorArt_HUB/) / [Discord](https://discord.com/invite/qYjANGqBED)
|
||||
|
@ -309,10 +319,13 @@
|
|||
* [SeaArt](https://www.seaart.ai/) / 40 Daily / [Discord](https://discord.com/invite/gUHDU644vU)
|
||||
* [Art Genie](https://artgenie.pages.dev/) / Unlimited / No Sign-Up
|
||||
* [Raphael](https://raphael.app/) / Unlimited / No Sign-Up / Uses Flux.1
|
||||
* [CGDream](https://cgdream.ai/) / 770 SDXL / 450 Fast FLUX / 150 FLUX Dev Monthly
|
||||
* [Hailuo AI](https://hailuoai.video/) - 100 Daily / [Discord](https://discord.com/invite/hvvt8hAye6)
|
||||
* [PixNova AI](https://pixnova.ai/ai-body-generator/) / Unlimited
|
||||
* [ChatK](https://chat.oaichat.cc/) / Unlimited
|
||||
* [Reve Image](https://preview.reve.art/) / 20 Daily
|
||||
* [ImageLabs](https://editor.imagelabs.net/) / Unlimited / No Sign-Up
|
||||
* [Qwen](https://chat.qwen.ai/) / Unlimited
|
||||
* [Qwen](https://chat.qwen.ai/) / Unlimited
|
||||
* [PicFinder](https://picfinder.ai/) / Unlimited
|
||||
* [AIGazou](https://muryou-aigazou.com/) / Unlimited
|
||||
* [Dreamina](https://dreamina.capcut.com/ai-tool/home) / 50 Daily
|
||||
|
@ -322,12 +335,13 @@
|
|||
* [Aitubo](https://app.aitubo.ai/) / 25 Daily / [Discord](https://discord.gg/qTu6YsRn7F)
|
||||
* [Poe](https://poe.com/) / 2-15 Daily / Phone # Required / [Discord](https://discord.com/invite/joinpoe)
|
||||
* [Maze Guru](https://maze.guru/gallery) / 12 Daily / [Discord](https://discord.com/invite/maze-guru-ai-art-anime-social-1007166914801434634)
|
||||
* [DALL·E](https://openai.com/index/dall-e-3/) - 6 Daily / ChatGPTs Image Generator
|
||||
* [PixAI](https://pixai.art/) / 5 Daily / [Discord](https://discord.com/invite/pixai)
|
||||
* [FluxPro](https://fluxpro.art/) / 1 Daily / [Discord](https://discord.gg/YMmUAvtRva)
|
||||
* [Glif](https://glif.app/) / 20 Daily / No Sign-Up / [Discord](https://discord.gg/nuR9zZ2nsh)
|
||||
* [Vivago](https://vivago.ai/) / 15 Daily / No Sign-Up
|
||||
* [Krea](https://www.krea.ai/) / 10 Daily / No Sign-Up / [Discord](https://discord.gg/rJurUAR8Kz)
|
||||
* [Whisk](https://labs.google/fx/en/tools/whisk) - Use Images as Prompts
|
||||
* [MemeCam](https://www.memecam.io/) - AI Meme Generator
|
||||
* [Artoons](https://artoons.vercel.app/) - Cartoon Style Generator / [GitHub](https://github.com/sujjeee/artoons)
|
||||
* [Genie](https://lumalabs.ai/genie) / [Discord](https://discord.com/invite/ASbS3EykXm), [Shap-e](https://github.com/openai/shap-e), [Stable Dreamfusion](https://github.com/ashawkey/stable-dreamfusion) or [threestudio](https://github.com/threestudio-project/threestudio) / [Colab](https://colab.research.google.com/github/threestudio-project/threestudio/blob/main/threestudio.ipynb) / [Discord](https://discord.gg/ejer2MAB8N) - 3D Image Generators
|
||||
* [Interactive Scenes](https://lumalabs.ai/interactive-scenes) - Generate Interactive Scenes / [Discord](https://discord.com/invite/ASbS3EykXm)
|
||||
|
@ -345,12 +359,13 @@
|
|||
* ⭐ **[DiffusionBee](https://diffusionbee.com/)** - Stable Diffusion for Mac / [GitHub](https://github.com/divamgupta/diffusionbee-stable-diffusion-ui) / [Discord](https://discord.com/invite/t6rC5RaJQn)
|
||||
* ⭐ **[Automatic1111](https://github.com/AUTOMATIC1111/stable-diffusion-webui)** / [Fork](https://github.com/anapnoe/stable-diffusion-webui-ux), [2](https://github.com/vladmandic/sdnext) / [Colab](https://github.com/AUTOMATIC1111/stable-diffusion-webui/wiki/Online-Services#google-colab) / [Photoshop](https://github.com/AbdullahAlfaraj/Auto-Photoshop-StableDiffusion-Plugin) / [Templates](https://github.com/ThereforeGames/unprompted) / [Upscaling](https://github.com/Coyote-A/ultimate-upscale-for-automatic1111), [2](https://github.com/pkuliyi2015/multidiffusion-upscaler-for-automatic1111)
|
||||
* [StableStudio](https://github.com/Stability-AI/StableStudio)
|
||||
* [Easy Diffusion](https://easydiffusion.github.io/) / [Discord](https://discord.com/invite/u9yhsFmEkB) / [GitHub](https://github.com/easydiffusion/easydiffusion) / [GitHub](https://github.com/easydiffusion/easydiffusion)
|
||||
* [Easy Diffusion](https://easydiffusion.github.io/) / [Discord](https://discord.com/invite/u9yhsFmEkB) / [GitHub](https://github.com/easydiffusion/easydiffusion)
|
||||
* [Makeayo](https://makeayo.com) / [Discord](https://discord.gg/FbdSxdeV8m)
|
||||
* [biniou](https://github.com/Woolverine94/biniou)
|
||||
* [Sygil WebUI](https://sygil-dev.github.io/sygil-webui/) / [Colab](https://colab.research.google.com/github/Sygil-Dev/sygil-webui/blob/main/Web_based_UI_for_Stable_Diffusion_colab.ipynb) / [Discord](https://discord.com/invite/ttM8Tm6wge) / [GitHub](https://github.com/Sygil-Dev/sygil-webui)
|
||||
* [Radiata](https://ddpn08.github.io/Radiata/en/) / [GitHub](https://github.com/ddPn08/Radiata)
|
||||
* [SD WebUI Forge](https://github.com/lllyasviel/stable-diffusion-webui-forge)
|
||||
* [ComfyUI-Zluda](https://github.com/patientx/ComfyUI-Zluda)
|
||||
|
||||
***
|
||||
|
||||
|
@ -365,6 +380,7 @@
|
|||
* [AI 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/) / [Discord](https://discord.gg/3DxrhksKzn) / [GitHub](https://github.com/Haidra-Org/AI-Horde)
|
||||
* [IOPaint](https://www.iopaint.com/) - Image Fill / Item Removal / [Colab](https://colab.research.google.com/drive/1TKVlDZiE3MIZnAUMpv2t_S4hLr6TUY1d?usp=sharing) / [GitHub](https://github.com/Sanster/IOPaint)
|
||||
* [Unstable Diffusion](https://discord.com/invite/unstablediffusion) - AI Image Community
|
||||
* [Generative AI for Beginners](https://microsoft.github.io/generative-ai-for-beginners/) - Generative AI Guides
|
||||
|
||||
***
|
||||
|
||||
|
@ -402,16 +418,18 @@
|
|||
|
||||
## ▷ Text to Speech
|
||||
|
||||
* ⭐ **[Tortoise TTS](https://github.com/neonbjb/tortoise-tts)** / No Sign-Up
|
||||
* ⭐ **[Bark](https://huggingface.co/spaces/suno/bark)** / No Sign-Up / [Colab](https://colab.research.google.com/drive/1eJfA2XUa-mXwdMy7DoYKVYHI1iTd9Vkt?usp=sharing) / [GitHub](https://github.com/suno-ai/bark) / [Discord](https://discord.com/invite/J2B2vsjKuE)
|
||||
* [Uberduck](https://uberduck.ai/) / Sign-Up Required / [Discord](https://discord.gg/uberduck-768215836665446480)
|
||||
* ⭐ **[TTS Online](https://www.text-to-speech.online/)** / No Sign-Up
|
||||
* [Uberduck](https://uberduck.ai/) / [Discord](https://discord.gg/uberduck-768215836665446480)
|
||||
* [Google Illuminate](https://illuminate.google.com/) - Generate AI Conversations
|
||||
* [ElevenLabs](https://elevenlabs.io/) / No Sign-Up / [Discord](https://discord.gg/elevenlabs) / [GitHub](https://github.com/elevenlabs)
|
||||
* [ttsMP3](https://ttsmp3.com/) / No Sign-Up
|
||||
* [FakeYou](https://fakeyou.com/) / No Sign-Up / [Discord](https://discord.gg/fakeyou)
|
||||
* [Luvvoice](https://luvvoice.com/) / No Sign-Up
|
||||
* [TTSMaker](https://ttsmaker.com/) / No Sign-Up
|
||||
* [TTSOpenAI](https://ttsopenai.com/) / No Sign-Up
|
||||
* [Tortoise TTS](https://github.com/neonbjb/tortoise-tts) / No Sign-Up
|
||||
* [Bark](https://huggingface.co/spaces/suno/bark) / No Sign-Up / [Colab](https://colab.research.google.com/drive/1eJfA2XUa-mXwdMy7DoYKVYHI1iTd9Vkt?usp=sharing) / [GitHub](https://github.com/suno-ai/bark) / [Discord](https://discord.com/invite/J2B2vsjKuE)
|
||||
* [TTSOpenAI](https://ttsopenai.com/) or [OpenAI.fm](https://www.openai.fm/) / No Sign-Up / OpenAI's Bot
|
||||
* [AI Speaker](https://ai-speaker.net/) / No Sign-Up
|
||||
* [edge-tts](https://github.com/rany2/edge-tts) / No Sign-Up / Python Module
|
||||
* [Voices](https://www.hailuo.ai/audio/)
|
||||
* [TextToSpeech.io](https://texttospeech.io/)
|
||||
|
@ -420,7 +438,7 @@
|
|||
* [Ondoku](https://ondoku3.com/en/) / No Sign-Up
|
||||
* [VoiceCraft](https://github.com/jasonppy/VoiceCraft) / [Colab](https://colab.research.google.com/drive/1IOjpglQyMTO2C3Y94LD9FY0Ocn-RJRg6?usp=sharing)
|
||||
* [EmotiVoice](https://github.com/netease-youdao/EmotiVoice)
|
||||
* [Fish Audio](https://fish.audio/) / [Discord](https://discord.gg/6t7dUSPV) / [GitHub](https://github.com/fishaudio)
|
||||
* [Fish Audio](https://fish.audio/) / [v1.5 Demo](https://huggingface.co/spaces/fishaudio/fish-speech-1) / [Discord](https://discord.gg/6t7dUSPV) / [GitHub](https://github.com/fishaudio)
|
||||
* [Audio-WebUI](https://github.com/gitmylo/audio-webui) / No Sign-Up / [Colab](https://colab.research.google.com/github/gitmylo/audio-webui/blob/master/audio_webui_colab.ipynb) / [Discord](https://discord.gg/NB86C3Szkg)
|
||||
* [VanillaVoice](https://www.vanillavoice.com/) / No Sign-Up
|
||||
* [TTSFree](https://ttsfree.com/) / No Sign-Up
|
||||
|
@ -428,6 +446,7 @@
|
|||
* [LOVO](https://lovo.ai/) / [Discord](https://discord.gg/vWHw5ZKEmk)
|
||||
* [SoundofText](https://soundoftext.com/) / No Sign-Up
|
||||
* [FreeTTS](https://freetts.com/)
|
||||
* [Hume](https://www.hume.ai/) / No Sign-Up
|
||||
* [Voicemaker](https://voicemaker.in/) / No Sign-Up
|
||||
* [NaturalReaders](https://www.naturalreaders.com/online/) / No Sign-Up
|
||||
* [TTS](https://github.com/coqui-ai/tts) / [Discord](https://discord.gg/5eXr5seRrv)
|
||||
|
@ -446,6 +465,7 @@
|
|||
* [Replay](https://www.weights.com/replay) - RVC Desktop App / [Discord](https://discord.gg/A5rgNwDRd4)
|
||||
* [Bark Voice Cloning](https://huggingface.co/spaces/kevinwang676/Bark-with-Voice-Cloning) - Voice Cloning / No Sign-Up / [Colab](https://colab.research.google.com/github/KevinWang676/Bark-Voice-Cloning/blob/main/Bark_Voice_Cloning.ipynb) / [GitHub](https://github.com/KevinWang676/Bark-Voice-Cloning)
|
||||
* [RVC Inference HF](https://huggingface.co/spaces/r3gm/RVC_HFv2) - Voice Cloning / No Sign-Up
|
||||
* [AllVoiceLab](https://www.allvoicelab.com/) - Voice Cloning / No Sign-Up
|
||||
* [Xyphra](https://maia.zyphra.com/audio) - Voice Cloning / [GitHub](https://github.com/Zyphra/Zonos)
|
||||
|
||||
***
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
## ▷ Modded APKs
|
||||
|
||||
* ⭐ **[Mobilism](https://forum.mobilism.org/viewforum.php?f=398)** - Free Books / Signup Required / [App](https://forum.mobilism.org/app/) / [User Ranks](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#mobilism-ranks)
|
||||
* ⭐ **[4PDA](https://4pda.to/forum/)** - [App](https://github.com/slartus/4pdaClient-plus) / Use [translator](https://fmhy.net/text-tools#translators) / [Captcha Note](https://github.com/fmhy/FMHY/wiki/FMHY‐Notes.md#4pda-captcha), [2](https://doorsgeek.blogspot.com/2015/08/4pdaru-loginregister-captcha-tutorial.html)
|
||||
* ⭐ **[4PDA](https://4pda.to/forum/)** - [App](https://github.com/slartus/4pdaClient-plus) / Use [Translator](https://fmhy.net/text-tools#translators) / [Captcha Note](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#4pda-captcha), [2](https://doorsgeek.blogspot.com/2015/08/4pdaru-loginregister-captcha-tutorial.html)
|
||||
* ⭐ **[RockMods](https://www.rockmods.net/)** / [Telegram](https://t.me/RBMods)
|
||||
* ⭐ **[PlatinMods](https://platinmods.com/)**
|
||||
* [LiteAPKs](https://liteapks.com/) / [App](https://liteapks.com/app.html) / [Note](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#liteapk--modyolo-note) / [Telegram](https://t.me/liteapks)
|
||||
|
@ -40,8 +40,8 @@
|
|||
|
||||
***
|
||||
|
||||
* ⭐ [Youarefinished Mods](https://t.me/youarefinished_mods), [ANiK555_Mods](https://t.me/ANiK555_Mods), [alexstranniklite](https://t.me/alexstranniklite), [AMRTSOFFICIAL](https://t.me/AMRTSOFFICIAL), [Sam Mods](https://t.me/+RUVXlRhdsXR2yemD), [GetMod](https://t.me/Getmodpcs) or [MustHave](https://t.me/Alexey070315) - Modded Apps
|
||||
* ⭐ [Satriyaid](https://t.me/s/satriyaid) - Modded Editing Apps
|
||||
* ⭐ **[Youarefinished Mods](https://t.me/youarefinished_mods)**, [ANiK555_Mods](https://t.me/ANiK555_Mods), [alexstranniklite](https://t.me/alexstranniklite), [AMRTSOFFICIAL](https://t.me/AMRTSOFFICIAL), [Sam Mods](https://t.me/+RUVXlRhdsXR2yemD), [GetMod](https://t.me/Getmodpcs) or [MustHave](https://t.me/Alexey070315) - Modded Apps
|
||||
* ⭐ **[Satriyaid](https://t.me/s/satriyaid)** - Modded Editing Apps
|
||||
* [Tech Day](https://t.me/s/tech_d4y) - Modded Editing Apps
|
||||
* [Modules Repository](https://t.me/modulesrepo) - Mobile Customization Index
|
||||
* [EasyAPK](https://t.me/EasyAPK) - Modded Apps / Games
|
||||
|
@ -137,18 +137,19 @@
|
|||
* 🌐 **[ReVanced Mega](https://xdaforums.com/t/app-guides-unofficial-revanced-megathread.4523967/)** - ReVanced Resources / Megathread
|
||||
* 🌐 **[ReVanced-Patch-Bundles](https://github.com/Jman-Github/ReVanced-Patch-Bundles)** - ReVanced Patch Index
|
||||
* ⭐ **[ReVanced Manager](https://revanced.app/)** - Android App Patcher / [Discord](https://discord.com/invite/rF2YcEjcrT) / [GitHub](https://github.com/ReVanced/revanced-manager)
|
||||
* ⭐ **[ReVanced Auto-Update](https://rentry.co/revanced-auto-update)** - Update ReVanced Apps Automatically
|
||||
* ⭐ **[ReVanced MMT](https://kazimmt.github.io/)** / [Telegram](https://t.me/ReVanced_MMT/) or [ReVanced Troubleshooting Guide](https://sodawithoutsparkles.github.io/revanced-troubleshooting-guide/) - Unofficial ReVanced Docs, Guides, and Troubleshooting
|
||||
* [RVX Manager](https://github.com/inotia00/revanced-manager) - ReVanced Extended / [Subreddit](https://www.reddit.com/r/revancedextended/) / [Discord](https://discord.gg/yMnc3EywRZ)
|
||||
* [ReVanced APKs](https://revanced-apks.pages.dev/) / [GitHub](https://github.com/revanced-apks/build-apps), [ReVanced Non-Root](https://github.com/FiorenMas/Revanced-And-Revanced-Extended-Non-Root) or [ReVanced Magisk Module](https://github.com/j-hc/revanced-magisk-module) / [Telegram](https://t.me/rvc_magisk) - Pre-built ReVanced APKs
|
||||
* [revanced-magisk-module](https://github.com/j-hc/revanced-magisk-module) - Build APKs with Python / [Config Gen](https://j-hc.github.io/rvmm-config-gen/)
|
||||
* [ReVanced CLI](https://github.com/ReVanced/revanced-cli) - CLI Patcher / [Guide](https://rentry.org/Revanced_Guide)
|
||||
* [Revancify](https://github.com/decipher3114/Revancify) - Termux-Compatible CLI Patcher
|
||||
* ⭐ **[ReVanced Auto-Update](https://gist.github.com/VVispy/50172b4ab77940b2d1ec09d5af70c8a7)** - Update ReVanced Apps Automatically
|
||||
* ⭐ **[ReVanced MMT](https://kazimmt.github.io/)** / [Telegram](https://t.me/ReVanced_MMT/) or [ReVanced Troubleshooting Guide](https://sodawithoutsparkles.github.io/revanced-troubleshooting-guide/) - Unofficial ReVanced Docs, Guides, & Troubleshooting
|
||||
* [RVX Manager](https://github.com/inotia00/revanced-manager) - ReVanced Extended / [Subreddit](https://www.reddit.com/r/revancedextended/)
|
||||
* [ReVanced APKs](https://revanced-apks.pages.dev/), [2](https://revanced-apks.github.io/) - Pre-Built ReVanced APKs / [GitHub](https://github.com/revanced-apks/build-apps) / [Telegram](https://t.me/revanced_apks_web)
|
||||
* [ReVanced Non-Root](https://github.com/FiorenMas/Revanced-And-Revanced-Extended-Non-Root) - Pre-Built RV & RVX APKs / [Telegram](https://t.me/fiorenmas)
|
||||
* [ReVanced Magisk Module](https://github.com/j-hc/revanced-magisk-module) - ReVanced Builder / [Config Gen](https://j-hc.github.io/rvmm-config-gen/) / [Telegram](https://t.me/rvc_magisk)
|
||||
* [ReVanced CLI](https://github.com/ReVanced/revanced-cli) - CLI Patcher / [Guide](https://rentry.org/Revanced_Guide) / [TUI Wrapper](https://github.com/decipher3114/Revancify)
|
||||
|
||||
***
|
||||
|
||||
## ▷ Social Media Apps
|
||||
|
||||
* 🌐 **[/reddit clients/](https://rentry.co/redditclients)** - Android Reddit Client Comparisons
|
||||
* ↪️ **[Social Media Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/social-media/)**
|
||||
* ↪️ **[Telegram Clients](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_android_telegram_clients)**
|
||||
* ↪️ **[Twitch Adblockers](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/social-media#wiki_.25B7_twitch_adblockers)**
|
||||
|
@ -177,6 +178,7 @@
|
|||
* [WaEnhancer](https://github.com/Dev4Mod/WaEnhancer) (root) - WhatsApp Patcher
|
||||
* [Whatsapp Backup Reader](https://whatsappbr.netlify.app/) - Read Exported Whatsapp Chats
|
||||
* [FakeWhats](https://www.fakewhats.com/) or [FakeInfo](https://fakeinfo.net/fake-whatsapp-chat-generator) - Fake WhatsApp Messages
|
||||
* [WhatsAppCleaner](https://github.com/VishnuSanal/WhatsAppCleaner) - Clean Redundant WhatsApp Media Files
|
||||
* [FouadMODS](https://t.me/FouadMODS) or [SE Extended](https://github.com/bocajthomas/SE-Extended) / [Telegram](https://t.me/SE_Extended_CI) - Snapchat Clients
|
||||
|
||||
***
|
||||
|
@ -224,21 +226,14 @@
|
|||
* [PixelXpert](https://github.com/siavash79/PixelXpert) or [Dashbud](https://dashbud.dev/) / [Discord](https://discord.com/invite/78h7xgj) - Android Customization Apps
|
||||
* [DualWallpaper](https://github.com/Yanndroid/DualWallpaper) - Change Wallpaper Depending on System Theme
|
||||
* [Muzei](https://muzei.co/), [Doodle](https://patrickzedler.com/doodle/) or [Amoled Backgrounds](https://play.google.com/store/apps/details?id=com.droidheat.amoledbackgrounds) - Live Android Wallpapers
|
||||
* [Koncius](https://play.google.com/store/apps/details?id=com.koncius.video.wallpaper) - Android Video to Wallpaper
|
||||
* [/r/iWallpaper](https://www.reddit.com/r/iWallpaper/) or [/r/MobileWallpaper](https://www.reddit.com/r/MobileWallpaper/) - Mobile Wallpaper Subs
|
||||
* [AI Wallpapers](https://rentry.co/FMHYBase64#ai-wallpapers-14) - Google AI Wallpapers / Uploading to Playstore Required
|
||||
* [wallhaven.cc](https://wallhaven.cc/search?categories=110&purity=100&ratios=portrait) - Wallpapers
|
||||
* [WallFlow](https://github.com/ammargitham/WallFlow) - Wallpapers
|
||||
* [Wallpaper Engine](https://www.wallpaperengine.io/android/en) - Wallpapers
|
||||
* [wallman](https://gitlab.com/colorata/wallman) - Wallpapers
|
||||
* [WallYou](https://github.com/you-apps/WallYou) - Wallpapers
|
||||
* [WallpaperSelection](https://t.me/wallpaperselection) - Wallpapers
|
||||
* [PeakPX](https://www.peakpx.com/) - Wallpapers
|
||||
* [FreshWalls](https://play.google.com/store/apps/details?id=com.techburner.freshwalls) - Wallpapers
|
||||
* [Paperize](https://github.com/Anthonyy232/Paperize) - Wallpapers
|
||||
* [Backdrops](https://www.backdrops.io/) - Wallpapers
|
||||
* [Diffuse](https://diffuse.app/) - Live Audio Wallpapers
|
||||
* [Pix](https://rentry.co/FMHYBase64#pix), [Candybar](https://github.com/zixpo/candybar), [Arcticons](https://arcticons.com/) or [Alembicons](https://f-droid.org/packages/com.kaanelloed.iconeration/) - Custom Icon Packs
|
||||
* [Candybar](https://github.com/zixpo/candybar), [Arcticons](https://arcticons.com/) or [Alembicons](https://f-droid.org/packages/com.kaanelloed.iconeration/) - Custom Icon Packs
|
||||
|
||||
***
|
||||
|
||||
|
@ -262,7 +257,7 @@
|
|||
|
||||
* ⭐ **[Google Lens](https://lens.google/)** - Multiple Camera Tools
|
||||
* ⭐ **[Gallery](https://github.com/FossifyOrg/Gallery)**, **[Aves](https://github.com/deckerst/aves)**, [PhotosGo](https://play.google.com/store/apps/details?id=com.google.android.apps.photosgo), [Ente](https://ente.io/) / [GitHub](https://github.com/ente-io/ente), [Photok](https://github.com/leonlatsch/Photok), [Stingle](https://stingle.org/), [QuickPic](https://github.com/WSTxda/QP-Gallery-Releases), [UhuruPhotos](https://uhuru.photos) / [GitHub](https://github.com/savvasdalkitsis/uhuruphotos-android), [Google Photos](https://rentry.co/FMHYBase64#revanced-google-photos) 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
|
||||
* ⭐ **[Reincubate Camo](https://reincubate.com/camo/)**, [Iriun](https://iriun.com/) or [DroidCam](https://github.com/dev47apps/droidcam-linux-client) - Use Android as Webcam
|
||||
* [Sponge](https://play.google.com/store/apps/details?id=com.prismtree.sponge) - Image Gallery Cleaner
|
||||
* [googlecameraport](https://www.celsoazevedo.com/files/android/google-camera) - Google Cam Downloads / [Telegram](https://t.me/googlecameraport) / [XML Configs](https://t.me/xmlshamimmod)
|
||||
* [Libre Camera](https://github.com/iakdis/librecamera), [GrapheneOS Camera](https://github.com/GrapheneOS/Camera), [Blackmagic Camera](https://play.google.com/store/apps/details?id=com.blackmagicdesign.android.blackmagiccam), [ProofMode](https://gitlab.com/guardianproject/proofmode/proofmode-android) or [Open Camera](https://sourceforge.net/projects/opencamera/) - FOSS Camera Apps
|
||||
|
@ -294,8 +289,8 @@
|
|||
* ⭐ **[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
|
||||
* [Flickboard](https://github.com/nightkr/flickboard) - Keyboard
|
||||
* ⭐ **[HeliBoard](https://github.com/Helium314/HeliBoard)** - Customizable Privacy-Focused Keyboard / [Layouts Guide](https://github.com/Helium314/HeliBoard/wiki/Layouts)
|
||||
* [Flickboard](https://codeberg.org/natkr/flickboard) - Keyboard
|
||||
* [Unexpected Keyboard](https://github.com/Julow/Unexpected-Keyboard) - Keyboard
|
||||
* [AnySoftKeyboard](https://anysoftkeyboard.github.io/) - Privacy-Focused Keyboard
|
||||
* [KeyboardGPT](https://github.com/Mino260806/KeyboardGPT) - AI Keyboard
|
||||
|
@ -342,7 +337,7 @@
|
|||
## ▷ Root / Flash
|
||||
|
||||
* 🌐 **[Bootloader Unlock: Wall of Shame](https://github.com/melontini/bootloader-unlock-wall-of-shame)** - Bootlocker Limit Index
|
||||
* ⭐ **[Magisk](https://github.com/topjohnwu/Magisk)**, [KernelSU](https://kernelsu.org/), [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](https://github.com/topjohnwu/Magisk)**, [KernelSU](https://kernelsu.org/), [MagiskOnWSALocal](https://github.com/LSPosed/MagiskOnWSALocal), [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
|
||||
* [Rooting Guides](https://awesome-android-root.link/rooting-guides/) - Android Root Guides
|
||||
|
@ -358,6 +353,7 @@
|
|||
* [Albastuz3d](https://albastuz3d.net/) - Stock Phone ROMs
|
||||
* [ConnectBot](https://connectbot.org/) - SSH Client
|
||||
* [LSPosed](https://github.com/JingMatrix/LSPosed) - LSPosed Framework
|
||||
* [PixelFlasher](https://github.com/badabing2005/PixelFlasher) - Pixel Phone Flashing GUI
|
||||
|
||||
***
|
||||
|
||||
|
@ -396,15 +392,14 @@
|
|||
* [DeepSeek](https://download.deepseek.com/app/) - AI Chatbot
|
||||
* [ChatBox](https://github.com/Bin-Huang/chatbox), [Maid](https://github.com/Mobile-Artificial-Intelligence/maid), [ChatterUI](https://github.com/Vali-98/ChatterUI) or [PocketPal AI](https://github.com/a-ghorbani/pocketpal-ai) - Local AI Chatbots
|
||||
* [Chai](https://www.chai-research.com/) - Roleplaying Chatbots
|
||||
* [Audio-Recorder](https://gitlab.com/axet/android-audio-recorder/tree/HEAD) or [android-audio-recorder](https://gitlab.com/axet/android-audio-recorder) - Audio Recorders
|
||||
* [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
|
||||
* [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/SKRInternationals/TouchDroid), [Mousedroid](https://github.com/darusc/Mousedroid) or [USB HID Client](https://github.com/Arian04/android-hid-client) (root) - Use Device as PC Mouse / Keyboard
|
||||
* [Android Virtual Pen](https://github.com/androidvirtualpen/virtualpen) - Use Device as PC Virtual Pen
|
||||
* [Listy](https://listy.is/) - Create Lists of Anything
|
||||
* [Listy](https://listy.is/) or [HypeList](https://hypelist.com/) - Create Lists of Anything
|
||||
* [VoiceGPT](https://github.com/WSTxda/Plugin-VoiceGPT) or [Dicio](https://github.com/Stypox/dicio-android) - Voice Assistants
|
||||
* [PrivateBin](https://privatebin.info/) - Pastebin App
|
||||
* [Novelist](https://www.novelist.app/) - Writing App
|
||||
* [Tunity](https://tunity.com/) - Hear Muted TVs
|
||||
* [Trail Sense](https://kylecorry.com/Trail-Sense/) - Wilderness Survival App / [GitHub](https://github.com/kylecorry31/Trail-Sense)
|
||||
|
@ -492,14 +487,13 @@
|
|||
* [PassAndroid](https://github.com/ligi/PassAndroid) - Manage Virtual Tickets / Passes
|
||||
* [Blabber.im](https://blabber.im/) or [Conversations](https://f-droid.org/en/packages/eu.siacs.conversations/) - XMPP Apps
|
||||
* [IRCCloud](https://github.com/irccloud/android), [Goguma](https://codeberg.org/emersion/goguma) or [Revolution IRC](https://github.com/MCMrARM/revolution-irc) - IRC Clients
|
||||
* [Bridgefy](https://bridgefy.me/) - Offline Messaging App
|
||||
* [NFC Tools](https://play.google.com/store/apps/details?id=com.wakdev.wdnfc) - Read / Write NFC Tags
|
||||
* [Eruda](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#eruda) - Mobile Browser Console / [Userscript](https://greasyfork.org/en/scripts/400760-console-for-mobile-browsers-eruda) / [GitHub](https://github.com/liriliri/eruda)
|
||||
* [Andure](https://github.com/leohku/andure) - Android Chrome Dev Tools
|
||||
* [GMS-Flags](https://github.com/polodarb/GMS-Flags) - Turn Google Flags On/Off / Root
|
||||
* [MobiDevTools](https://addons.mozilla.org/en-US/firefox/addon/mobidevtools/) - Firefox Inspect Element
|
||||
* [SubX](https://play.google.com/store/apps/details?id=com.alkapps.subx) or [SubscriptionManager](https://play.google.com/store/apps/details?id=de.simolation.subscriptionmanager) - Track Subscription Services
|
||||
* [WiFiman](https://play.google.com/store/apps/details?id=com.ubnt.usurvey), [WiFiAnalyzer](https://vremsoftwaredevelopment.github.io/WiFiAnalyzer/) or [WLANScanner](https://github.com/bewue/WLANScanner) - Network Scanners
|
||||
* [WiFiman](https://play.google.com/store/apps/details?id=com.ubnt.usurvey), [WiFiAnalyzer](https://vremsoftwaredevelopment.github.io/WiFiAnalyzer/) / [GitHub](https://github.com/VREMSoftwareDevelopment/WiFiAnalyzer) or [WLANScanner](https://github.com/bewue/WLANScanner) - Network Scanners
|
||||
* [Fing](https://www.fing.com/fing-app/) - Network Toolkit
|
||||
|
||||
***
|
||||
|
@ -514,9 +508,9 @@
|
|||
* ⭐ **[SyncThing Fork](https://github.com/Catfriend1/syncthing-android)** - File Sync / Sharing
|
||||
* ⭐ **[LocalSend](https://localsend.org/)** - File Sharing / [Platforms](https://i.ibb.co/nsfMf04/8010dd28ed2d.png)
|
||||
* ⭐ **[Snapdrop Android](https://github.com/fm-sys/snapdrop-android)** or [pairdrop](https://pairdrop.net/) - File Sharing
|
||||
* ⭐ **[Aria2App](https://github.com/devgianlu/Aria2App)** - Download Manager Controller
|
||||
* ⭐ **[Cx File Explorer](https://play.google.com/store/apps/details?id=com.cxinventor.file.explorer)**, [Total Commander](https://www.ghisler.com/ce.htm), [FileNavigator](https://play.google.com/store/apps/details?id=com.w2sv.filenavigator) / [GitHub](https://github.com/w2sv/FileNavigator), [File Explorer Compose](https://github.com/Raival-e/File-Explorer-Compose), [Xplore](https://play.google.com/store/apps/details?id=com.lonelycatgames.Xplore) or [AmazeFileManager](https://github.com/TeamAmaze/AmazeFileManager) / [Utilities](https://github.com/TeamAmaze/AmazeFileUtilities) - File Managers / Explorers
|
||||
* [1DM](https://play.google.com/store/apps/details?id=idm.internet.download.manager) / [Extra Features](https://rentry.co/FMHYBase64#1dm) or [FDM](https://play.google.com/store/apps/details?id=org.freedownloadmanager.fdm) - Download Managers
|
||||
* [Total Commander](https://www.ghisler.com/ce.htm), [FileNavigator](https://play.google.com/store/apps/details?id=com.w2sv.filenavigator) / [GitHub](https://github.com/w2sv/FileNavigator), [Cx File Explorer](https://play.google.com/store/apps/details?id=com.cxinventor.file.explorer), [Xplore](https://play.google.com/store/apps/details?id=com.lonelycatgames.Xplore) or [AmazeFileManager](https://github.com/TeamAmaze/AmazeFileManager) / [Utilities](https://github.com/TeamAmaze/AmazeFileUtilities) - File Managers / Explorers
|
||||
* [Aria2App](https://github.com/devgianlu/Aria2App) - Download Manager Controller
|
||||
* [Round Sync](https://github.com/newhinton/Round-Sync) or [MetaCTRL](https://metactrl.com/) - Multi-Site Cloud Storage File Managers
|
||||
* [AdbFileManager](https://github.com/T0biasCZe/AdbFileManager) - Manage Android File via Windows
|
||||
* [dropbox](https://www.dropbox.com/) / [Sync](https://play.google.com/store/apps/details?id=com.ttxapps.dropsync) - Cloud Storage
|
||||
|
@ -535,46 +529,49 @@
|
|||
|
||||
***
|
||||
|
||||
## ▷ Productivity / Calendars
|
||||
## ▷ Notifications / Widgets
|
||||
|
||||
* ⭐ **[ntfy](https://ntfy.sh/)** / [Discord](https://discord.gg/cT7ECsZj9w), [AppRise](https://github.com/caronc/apprise) or [PingMe](https://pingme.lmno.pk/) - Custom Push Notifications
|
||||
* [Compass QS Tile](https://github.com/WSTxda/Compass-QS-Tile) or [QuickTiles](https://gitlab.com/flxholle/quick-tiles) - Quick Setting Tiles
|
||||
* [KWGT Widgets](https://rentry.co/FMHYBase64#kwgt) - Custom Android Widgets
|
||||
* [Smartspacer](https://github.com/KieronQuinn/Smartspacer) - Custom Android "At a Glance" Widget
|
||||
* [Notification Listener](https://github.com/Alfio010/notification-listener-android) - Save / Pin Notifications
|
||||
* [ClassicPowerMenu](https://github.com/KieronQuinn/ClassicPowerMenu) - Android Power Menu Replacement / Root
|
||||
|
||||
***
|
||||
|
||||
## ▷ Date & Time
|
||||
|
||||
* ⭐ **[Sleep as Android](https://rentry.co/FMHYBase64#sleep-as-android)** - Clock / Alarm
|
||||
* [JTX](https://jtx.techbee.at/), [Etar](https://github.com/Etar-Group/Etar-Calendar), [digical](https://digibites.nl/digical) or [TimeTreeApp](https://timetreeapp.com/intl/en/) - Calendars
|
||||
* [QRAlarm](https://github.com/sweakpl/qralarm-android) - Alarm / QR Code Control
|
||||
* [Calendar Notifications](https://play.google.com/store/apps/details?id=com.tuogol.calendar.notification) - Calendar in Notifications
|
||||
* [Birday](https://github.com/m-i-n-a-r/birday) - Birthday Calendar
|
||||
* [Sectograph](https://play.google.com/store/apps/details?id=prox.lab.calclock), [Journal it](https://play.google.com/store/apps/details?id=org.de_studio.diary) or [TimePlanner](https://github.com/v1tzor/TimePlanner) - Planner Apps
|
||||
* [FamilyWall](https://www.familywall.com/) - Family Organization Planner
|
||||
* [Sleep Cycle](https://rentry.co/FMHYBase64#sleep-cycle) - Clock / Alarm
|
||||
* [Clock](https://github.com/BlackyHawky/Clock) - Clock / Alarm
|
||||
* [Chrono](https://github.com/vicolo-dev/chrono) - Clock / Alarm
|
||||
|
||||
***
|
||||
|
||||
## ▷ Productivity Trackers
|
||||
|
||||
* ↪️ **[Text Editors / To-Do](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage/#wiki_android_text_editors)**
|
||||
* ⭐ **[Sleep as Android](https://rentry.co/FMHYBase64#sleep-as-android)** - Clock / Alarm
|
||||
* [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
|
||||
* [Birday](https://github.com/m-i-n-a-r/birday) - Birthday Reminders / Calendar
|
||||
* [Sectograph](https://play.google.com/store/apps/details?id=prox.lab.calclock), [Journal it](https://play.google.com/store/apps/details?id=org.de_studio.diary) or [TimePlanner](https://github.com/v1tzor/TimePlanner) - Planner Apps
|
||||
* [FamilyWall](https://www.familywall.com/) - Family Oriented Planner
|
||||
* [Ascent](https://play.google.com/store/apps/details?id=com.ascent) - App Blocker
|
||||
* [ScreenZen](https://play.google.com/store/apps/details?id=com.screenzen) - Website / App Blocker
|
||||
* [Folksable](https://folksable.com/) - Habit Tracker
|
||||
* [StayFree](https://stayfreeapps.com/) - Digital Productivity Tracker / App Blocker
|
||||
* [Folksable](https://folksable.com/) - Social Habit Tracker
|
||||
* [unhabits](https://github.com/iSoron/uhabits) - Habit Tracker
|
||||
* [HabitBuilder](https://github.com/ofalvai/HabitBuilder) - Habit Tracker
|
||||
* [MoreDays](https://gitlab.com/wuapps/moredays) - Habit Tracker
|
||||
* [TheFor](https://thefor.xyz/) - Habit Tracker
|
||||
* [Mindful](https://github.com/akaMrNagar/Mindful) - Productivity Tracker / App Blocker
|
||||
* [StayFree](https://stayfreeapps.com/) - Productivity Tracker / App Blocker
|
||||
* [Unlock Master](https://github.com/sweakpl/unlock-master) - Digital Habit Tracker
|
||||
* [Mindful](https://github.com/akaMrNagar/Mindful) - Digital Productivity Tracker / App Blocker
|
||||
* [Ascent](https://play.google.com/store/apps/details?id=com.ascent) - App Blocker
|
||||
* [ScreenZen](https://play.google.com/store/apps/details?id=com.screenzen) - Website / App Blocker
|
||||
* [MyBrain](https://github.com/mhss1/MyBrain) - Productivity Tracker
|
||||
* [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.me](https://timeto.me/) - Productivity Tracker / [GitHub](https://github.com/Medvedev91/timeto.me)
|
||||
* [Sleep Cycle](https://rentry.co/FMHYBase64#sleep-cycle) - Clock / Alarm
|
||||
* [Clock](https://github.com/BlackyHawky/Clock) - Clock / Alarm
|
||||
* [Clockology](https://rentry.co/FMHYBase64#clockology) - Clock / Alarm
|
||||
* [Chrono](https://github.com/vicolo-dev/chrono) - Clock / Alarm
|
||||
* [ClockYou](https://github.com/you-apps/ClockYou) - Clock / Alarm
|
||||
* [AlarmClock](https://github.com/yuriykulikov/AlarmClock) - Clock / Alarm
|
||||
|
||||
***
|
||||
|
||||
## ▷ Notifications / Widgets
|
||||
|
||||
* ⭐ **[ntfy](https://ntfy.sh/) / [Discord](https://discord.gg/cT7ECsZj9w) / [Matrix](https://matrix.to/#/#ntfy-space:matrix.org)**, [AppRise](https://github.com/caronc/apprise) or [PingMe](https://pingme.lmno.pk/) - Custom Push Notifications
|
||||
* [Compass QS Tile](https://github.com/WSTxda/Compass-QS-Tile) or [QuickTiles](https://gitlab.com/flxholle/quick-tiles) - Quick Setting Tiles
|
||||
* [Smartspacer](https://github.com/KieronQuinn/Smartspacer) - Custom Android "At a Glance" Widget
|
||||
* [Notification Listener](https://github.com/Alfio010/notification-listener-android) - Save / Pin Notifications
|
||||
* [ClassicPowerMenu](https://github.com/KieronQuinn/ClassicPowerMenu) - Android Power Menu Replacement / Root
|
||||
* [timeto.me](https://timeto.me/) - Time Management Tracker / [GitHub](https://github.com/Medvedev91/timeto.me)
|
||||
|
||||
***
|
||||
|
||||
|
@ -628,6 +625,7 @@
|
|||
* [FlashLite](https://flashlite.games/) - Flash Emulator / [Discord](https://discord.gg/F2dsGhTX6y)
|
||||
* [/r/EmulationOnAndroid](https://www.reddit.com/r/emulationonandroid) - Android Game Emulation Subreddit
|
||||
* [Dan's Palace](https://discord.gg/RqQeZwrP8k) - Android / PSVita PC Game Ports Discord / [Telegram](https://t.me/dansfiles)
|
||||
* [Visual Novels Android](https://t.me/visual_novels_android_eng) - Android Visual Novel Ports
|
||||
* [Source Engine 4 Android](https://discord.gg/source-engine-4-android-672055862608658432) - Source Engine Ports
|
||||
* [JoiPlay](https://joiplay.net/) - RPG Maker Game Interpreter
|
||||
* [AdrenoToolsDrivers](https://github.com/K11MCH1/AdrenoToolsDrivers) - Adreno Drivers for Android Emulators / [Systemwide](https://github.com/SEGAINDEED/Adreno-ToolsDriversMagisk)
|
||||
|
@ -649,7 +647,7 @@
|
|||
* [Nox](https://www.bignox.com/) - Android Emulator / [Debloat](https://gist.github.com/TameemS/72c4b92131977aced56e727d51599a48)
|
||||
* [BlueStacks](https://www.bluestacks.com/) - Android Emulator
|
||||
* [GameLoop](https://www.gameloop.com/) - Android Emulator
|
||||
* [MuMu](https://www.mumuplayer.com/) - Android Emulator
|
||||
* [MuMu](https://www.mumuplayer.com/) or [MuMu Nebula](https://www.mumuplayer.com/mumu-nebula.html) - Android Emulator
|
||||
* [MeMu](https://www.memuplay.com/) - Android Emulator / [Debloat](https://gist.github.com/TameemS/603686cec857ff1f91e68607e374b0d8)
|
||||
* [LDPlayer](https://www.ldplayer.net/) - Android Emulator / [Debloat](https://gist.github.com/TameemS/894cdb8adae1d6042a5f21c4e80bcd9e/)
|
||||
|
||||
|
@ -669,7 +667,7 @@
|
|||
|
||||
***
|
||||
|
||||
* ⭐ **[LibreTorrent](https://gitlab.com/proninyaroslav/libretorrent)** - Torrent Client
|
||||
* ⭐ **[LibreTorrent](https://gitlab.com/proninyaroslav/libretorrent)** - Torrent Client / [GitHub](https://github.com/proninyaroslav/libretorrent)
|
||||
* [Tixati](https://tixati.com/android) - Torrent Client / Allows Binding
|
||||
* [BiglyBT](https://android.biglybt.com/) - Torrent Client / Allows Binding
|
||||
* [tTorrent](https://ttorrent.org/) - Torrent Client
|
||||
|
@ -677,7 +675,6 @@
|
|||
* [Flud](https://play.google.com/store/apps/details?id=com.delphicoder.flud) - Torrent Client
|
||||
* [TorrServe](https://github.com/YouROK/TorrServe) - Torrent Client
|
||||
* [1DM](https://play.google.com/store/apps/details?id=idm.internet.download.manager) - Torrent Client / [Extra Features](https://rentry.co/FMHYBase64#1dm)
|
||||
* [FDM](https://play.google.com/store/apps/details?id=org.freedownloadmanager.fdm) - 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
|
||||
|
@ -736,14 +733,14 @@
|
|||
# ► Android Audio
|
||||
|
||||
* ↪️ **[Song Identification Apps](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/audio#wiki_.25B7_song_identification)**
|
||||
* ⭐ **[ReVanced Manager](https://revanced.app/)** / [Discord](https://discord.com/invite/rF2YcEjcrT) / [GitHub](https://github.com/ReVanced/revanced-manager), [xManager](https://www.xmanagerapp.com/) / [Discord](https://discord.com/invite/dnpKn5Wufm)or [Modded Spotify](https://rentry.co/FMHYBase64#modded-spotify-apk) - Ad-Free Spotify
|
||||
* ⭐ **Spotify Tools** - [Friend Activity](https://spotivity.me/) / [Mute Ads](https://play.google.com/store/apps/details?id=live.teekamsuthar.mutify), [2](https://github.com/aghontpi/ad-silence) / [Stats](https://stats.fm/)
|
||||
* ⭐ **[Seeker](https://github.com/jackBonadies/SeekerAndroid)** - Audio Downloader / Soulseek Frontend
|
||||
* ⭐ **[AutomaTag](http://automatag.com/)** or [AutoTagger](https://autotagger.ru/) - Metadata Organizers
|
||||
* ⭐ **[AutomaTag](http://automatag.com/)** - Metadata Organizer
|
||||
* ⭐ **[AudioRelay](https://audiorelay.net/)** or [Audio Share](https://github.com/mkckr0/audio-share) - Stream Audio Between Devices
|
||||
* ⭐ **[Pano Scrobbler](https://github.com/kawaiiDango/pano-scrobbler)** - Android Scrobbler
|
||||
* ⭐ **[CApod](https://github.com/d4rken-org/capod)**, [OpenPods](https://github.com/adolfintel/OpenPods) or [MaterialPods](https://play.google.com/store/apps/details?id=com.pryshedko.materialpods) - AirPod Monitors / Battery Trackers
|
||||
* [ListenBrainz](https://github.com/metabrainz/listenbrainz-android) or [MusicSearch](https://github.com/lydavid/MusicSearch) - Music Tracking / Rating
|
||||
* [Modded Spotify](https://rentry.co/FMHYBase64#modded-spotify-apk) - Ad-Free Spotify
|
||||
* Spotify Tools - [Friend Activity](https://spotivity.me/) / [Mute Ads](https://play.google.com/store/apps/details?id=live.teekamsuthar.mutify), [2](https://github.com/aghontpi/ad-silence) / [Stats](https://stats.fm/)
|
||||
* [YouTubeDL Android](https://github.com/yausername/youtubedl-android) - Multi-Site Audio Downloader
|
||||
* [ytdlnis](https://github.com/deniscerri/ytdlnis) - Multi-Site Audio Downloader
|
||||
* [Seal](https://github.com/JunkFood02/Seal) - Multi-Site Audio Downloader
|
||||
|
@ -803,6 +800,7 @@
|
|||
* [Music Player GO](https://github.com/enricocid/Music-Player-GO)
|
||||
* [Nyx Music Player](https://play.google.com/store/apps/details?id=com.awedea.nyx)
|
||||
* [mucke](https://github.com/moritz-weber/mucke)
|
||||
* [Lotus](https://github.com/dn0ne/lotus) / [2](https://f-droid.org/packages/com.dn0ne.lotus)
|
||||
* [Phonograph Plus](https://github.com/chr56/Phonograph_Plus)
|
||||
* [Pulse Music](https://play.google.com/store/apps/details?id=com.hardcodecoder.pulse)
|
||||
* [Zen Music Player](https://github.com/pakka-papad/Zen)
|
||||
|
@ -872,13 +870,12 @@
|
|||
|
||||
* ↪️ **[Android TV](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/video/#wiki_.25B7_android_tv)**
|
||||
* ⭐ **[Stremio](https://www.stremio.com/)** - Torrent Streaming / [Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/video/#wiki_.25B7_stremio_tools)
|
||||
* ⭐ **[CloudStream](https://cloudstream-on-fleek-co.ipns.dweb.link/)** - Movies / TV / Anime
|
||||
* ⭐ **CloudStream Resources** - [Plugins](https://discord.com/invite/wpX5Rfcx87), [2](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)
|
||||
* ⭐ **[CloudStream](https://github.com/recloudstream/cloudstream)** - Movies / TV / Anime
|
||||
* ⭐ **CloudStream Resources** - [Plugins](https://discord.com/invite/wpX5Rfcx87), [2](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)
|
||||
* ⭐ **[HDO Box](https://rentry.co/FMHYBase64#hdo-box)** - Movies / TV / [Discord](https://discord.gg/VPRJVExUVD) / [Telegram](https://t.me/+Ywz5HnhvFHA3Zjk1) / [Warning](https://i.ibb.co/ZBy93sr/image.png)
|
||||
* ⭐ **[Kodi](https://kodi.tv/)** - [/r/Addons4Kodi](https://www.reddit.com/r/Addons4Kodi/) / [Tracker](https://kinkeadtech.com/best-kodi-streaming-addons/) / [Trending](https://kodiapps.com/addons-chart)
|
||||
* ⭐ **[Syncler](https://syncler.net/)** - Movies / TV / [Providers](https://www.reddit.com/r/providers4syncler/)
|
||||
* ⭐ **[BubblesUPNP](https://play.google.com/store/apps/details?id=com.bubblesoft.android.bubbleupnp)**, [DMS](https://github.com/anacrolix/dms) or [Macast](https://xfangfang.github.io/Macast/) - Media Servers
|
||||
* [Flixquest](https://flixquest.beamlak.dev/) - Movies / TV / Anime
|
||||
* [Cinema HD](https://rentry.co/FMHYBase64#cinema-hd) - Movies / TV
|
||||
* [Movie HD](https://rentry.co/FMHYBase64#movie-hd) - Movies / TV / Requires AMPlayer
|
||||
* [VivaTV](https://rentry.co/FMHYBase64#vivatv) - Movies / TV / Requires TPlayer
|
||||
|
@ -887,6 +884,7 @@
|
|||
* [FilmPlus](https://rentry.co/FMHYBase64#filmplus) - Movies / TV / Requires BPlayer
|
||||
* [Flixclusive](https://github.com/flixclusiveorg/Flixclusive) - Movies / TV / [Discord / Plugins](https://discord.com/invite/7yPSPveReu)
|
||||
* [Vega App](https://github.com/Zenda-Cross/vega-app) - Movies / TV
|
||||
* [MovieBox](https://rentry.co/FMHYBase64#moviebox) - Movies / TV
|
||||
* [Flixoid](https://rentry.co/FMHYBase64#flixoid) - Movies / TV
|
||||
* [BeeTV](https://rentry.co/FMHYBase64#beetv) - Movies / TV
|
||||
* [TeaTV](https://rentry.co/FMHYBase64#teatv) - Movies / TV / Requires TPlayer
|
||||
|
@ -936,7 +934,7 @@
|
|||
* [animity](https://github.com/kl3jvi/animity) / [Discord](https://discord.com/invite/eNuX9U57SM)
|
||||
* [Shiru](https://github.com/RockinChaos/Shiru) - Torrent Streaming
|
||||
* [Meoko](https://play.google.com/store/apps/details?id=com.app.meoko) - Anime Torrent Search
|
||||
* [DailyAL](https://github.com/JICA98/DailyAL), [MALClient](https://github.com/Drutol/MALClient), [AL-chan](https://zend10.github.io/AL-chan/), [Nekome](https://github.com/Chesire/Nekome), [Moelist](https://moelist.net/), [Kitsune](https://github.com/Drumber/Kitsune), [AniTrend](https://anitrend.co/) / [GitHub](https://github.com/AniTrend/anitrend-app) or [AniLib](https://anilib.onrender.com/) - Anime Trackers
|
||||
* [DailyAL](https://github.com/JICA98/DailyAL), [MALClient](https://github.com/Drutol/MALClient), [AL-chan](https://zend10.github.io/AL-chan/), [Nekome](https://github.com/Chesire/Nekome), [Moelist](https://moelist.net/), [Kitsune](https://github.com/Drumber/Kitsune), [AnymeX](https://github.com/RyanYuuki/AnymeX), [AniTrend](https://anitrend.co/) / [GitHub](https://github.com/AniTrend/anitrend-app) or [AniLib](https://anilib.onrender.com/) - Anime Trackers
|
||||
|
||||
***
|
||||
|
||||
|
@ -959,7 +957,7 @@
|
|||
|
||||
## ▷ Android YouTube Apps
|
||||
|
||||
* ⭐ **[ReVanced Manager](https://revanced.app/)** - Ad-Free YouTube Patcher / [YT Guide](https://sodawithoutsparkles.github.io/revanced-troubleshooting-guide/step-by-step/00-preface/) / [Discord](https://discord.com/invite/rF2YcEjcrT)
|
||||
* ⭐ **[ReVanced Manager](https://revanced.app/)** - Ad-Free YouTube Patcher / [Guide](https://github.com/KobeW50/ReVanced-Documentation/blob/main/YT-ReVanced-Guide.md) / [Video](https://sodawithoutsparkles.github.io/revanced-troubleshooting-guide/step-by-step/00-preface/) / [Discord](https://discord.com/invite/rF2YcEjcrT)
|
||||
* ⭐ **[GrayJay](https://grayjay.app/)** - YouTube, Twitch, Rumble, etc. / [Guide](https://youtu.be/EnZrv37u66c) / [GitLab](https://gitlab.futo.org/videostreaming/grayjay) / [Plugins](https://gitlab.futo.org/videostreaming/plugins)
|
||||
* ⭐ **[LibreTube](https://libretube.dev/)** - Ad-Free YouTube
|
||||
* ⭐ **[NewPipe](https://newpipe.net/)** - Ad-Free YouTube
|
||||
|
@ -1112,7 +1110,7 @@
|
|||
## ▷ iOS Adblocking
|
||||
|
||||
* ↪️ **[DNS Adblocking](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/adblock-vpn-privacy/#wiki_.25B7_dns_adblocking)**
|
||||
* ⭐ **[Adguard](https://adguard.com/en/adguard-ios/overview.html)** - Adblocker / [Guide](https://avieshek.wordpress.com/2024/07/07/how-to-filter-ads-and-block-popups-on-iphone-and-macos/) / [Pro](https://t.me/blatants)
|
||||
* ⭐ **[Adguard](https://adguard.com/en/adguard-ios/overview.html)** - Adblocker / [Guide](https://avieshek.wordpress.com/2024/07/07/how-to-filter-ads-and-block-popups-on-iphone-and-macos/) / [Pro](https://t.me/blatants) (requires patch)
|
||||
* ⭐ **[Orion](https://kagi.com/orion/)** - Adblock Browser w/ Extensions / [Discord](https://discord.gg/Yk8Aj8AxGw)
|
||||
* [Brave](https://apps.apple.com/app/id1052879175) - Adblock Browser
|
||||
* [1Blocker](https://1blocker.com/) - Adblocker
|
||||
|
@ -1147,10 +1145,10 @@
|
|||
* 🌐 **[CyPwn](https://ipa.cypwn.xyz/)** - Tweaked App Library / [AltStore](https://ipa.cypwn.xyz/cypwn.json) / [Discord](https://discord.gg/cypwn)
|
||||
* 🌐 **[Open-Source iOS Apps](https://github.com/dkhamsing/open-source-ios-apps)** - Open-Source Apps
|
||||
* 🌐 **[Awesome TestFlight](https://github.com/pluwen/awesome-testflight-link)**, [TestFlightLinks](https://t.me/testflightlinks) or [TestFlight Spreadsheet](https://docs.google.com/spreadsheets/d/1Uej3AQPxRcLRXnmthUXR-7oGkNV_GsMFgCoNnuPtSwI/) - TestFlight App Indexes
|
||||
* 🌐 **[iOS Console Emulators](https://redd.it/1c5kxyo)** - Gaming Emulator Index
|
||||
* 🌐 **[iOS Console Emulators](https://www.reddit.com/r/EmulationOniOS/wiki/emulators)** - Gaming Emulator Index
|
||||
* ⭐ **PDALife** - [Games](https://pdalife.com/ios/games) / [Apps](https://pdalife.com/ios/programmy/) / [Telegram](https://t.me/pdalife_official)
|
||||
* ⭐ **[CodeVN](https://ios.codevn.net/)** / [Telegram](https://t.me/+1qK9KUZlfGs3ZDg1) or [IPALibrary](https://ipalibrary.me/) - Tweaked Apps / Use Orion to Translate
|
||||
* [4PDA](https://4pda.to/forum/) - Tweaked Apps / Use Orion to Translate / [Captcha Note](https://github.com/fmhy/FMHY/wiki/FMHY‐Notes.md#4pda-captcha), [2](https://doorsgeek.blogspot.com/2015/08/4pdaru-loginregister-captcha-tutorial.html)
|
||||
* [4PDA](https://4pda.to/forum/) - Tweaked Apps / Use Orion to Translate / [Captcha Note](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#4pda-captcha), [2](https://doorsgeek.blogspot.com/2015/08/4pdaru-loginregister-captcha-tutorial.html)
|
||||
* [AppDB](https://appdb.to) - App Library
|
||||
* [iOSVizor](https://iosvizor.com/) - Tweaked Apps / [Telegram](https://t.me/iosvizor)
|
||||
* [DriftyWinds](https://raw.githubusercontent.com/driftywinds/driftywinds.github.io/master/AltStore/apps.json) - AltStore App Source
|
||||
|
@ -1159,16 +1157,14 @@
|
|||
* [Mobilism iOS Apps](https://forum.mobilism.org/viewforum.php?f=312) - App Library / Signup Required / [User Ranks](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#mobilism-ranks)
|
||||
* [StarFiles](https://starfiles.co/) - App Library
|
||||
* [TrollStore-IPAs](https://github.com/Neoncat-OG/TrollStore-IPAs) - Tweaked Apps
|
||||
* [PlatinMods](https://platinmods.com/) - Tweaked Apps
|
||||
* [AppTesters](https://repository.apptesters.org/) - Tweaked Apps
|
||||
* [PlatinMods](https://platinmods.com/) - Tweaked Apps / Signup Required
|
||||
* [AppTesters](https://repository.apptesters.org/) - Tweaked Apps / [Telegram](https://t.me/AppleTesters)
|
||||
* [IPA Archive](https://stuffed18.github.io/ipa-archive-updated) - Search Engine
|
||||
* [iOSObscura](https://archive.org/details/iOSObscura) - Old App Archive / [Search Engine](https://iphoneosobscura.litten.ca/)
|
||||
* [AppleCensorship](https://applecensorship.com/) - Censored App Store Apps
|
||||
* [IPATool](https://github.com/majd/ipatool) - Search / Download App Packages
|
||||
* [DecryptedAppStore](https://armconverter.com/decryptedappstore) - Decrypted iOS Apps
|
||||
* [DecryptedAppStore](https://armconverter.com/decryptedappstore), [AnyIPA](https://anyipa.me/) / [Telegram](https://t.me/AnyIPAme) / [Discord](https://discord.gg/c233DYUzsw) or [decrypt.day](https://decrypt.day/) - Decrypted iOS Apps
|
||||
* [AppSnake](https://appsnake.cypwn.xyz/) - Check if Unlockers Work on App
|
||||
* [AnyIPA](https://anyipa.me/) - Decrypted iOS Apps / [Telegram](https://t.me/AnyIPAme) / [Discord](https://discord.gg/c233DYUzsw)
|
||||
* [decrypt.day](https://decrypt.day/) - Decrypted iOS Apps
|
||||
* [Calvink19](https://calvink19.uk/patches) - App Patches for iOS Legacy Devices
|
||||
|
||||
***
|
||||
|
@ -1189,13 +1185,14 @@
|
|||
|
||||
## ▷ Social Media Apps
|
||||
|
||||
* ⭐ **[BunnyTweak](https://github.com/bunny-mod/BunnyTweak)** - Discord Clients / [Extension](https://github.com/BillyCurtis/OpenDiscordSafariExtension)
|
||||
* ⭐ **[Acorn](https://acorn.blue/)** / [Discord](https://discord.gg/sWzw5GU5RV), [Reddit Deluxe](https://t.me/SultanModsiOS), [RedditFilter](https://github.com/level3tjg/RedditFilter) / [Note](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#redditfilter-note), [Winston](https://winston.cafe/), [Apollo](https://github.com/Balackburn/Apollo) / [Tweak](https://github.com/JeffreyCA/Apollo-ImprovedCustomApi), [Lurker](https://apps.apple.com/app/lurkur-for-reddit/id6470203216), [RDX](https://apps.apple.com/app/rdx-for-reddit/id6503479190) or [OpenArtemis](https://apps.apple.com/app/id6473462587) - Reddit Clients
|
||||
* ⭐ **[BunnyTweak](https://github.com/bunny-mod/BunnyTweak)** - Discord Clients / [Plugins](https://purple-eyez.github.io/Plugins-List/) / [Extension](https://github.com/BillyCurtis/OpenDiscordSafariExtension)
|
||||
* ⭐ **[Acorn](https://acorn.blue/)** / [Discord](https://discord.gg/sWzw5GU5RV), [Reddit Deluxe](https://t.me/ethMods), [RedditFilter](https://github.com/level3tjg/RedditFilter) / [Note](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#redditfilter-note), [Winston](https://winston.cafe/), [Apollo](https://github.com/Balackburn/Apollo) / [Tweak](https://github.com/JeffreyCA/Apollo-ImprovedCustomApi), [Lurker](https://apps.apple.com/app/lurkur-for-reddit/id6470203216), [RDX](https://apps.apple.com/app/rdx-for-reddit/id6503479190) or [OpenArtemis](https://apps.apple.com/app/id6473462587) - Reddit Clients
|
||||
* ⭐ **[Arctic](https://getarctic.app/)**, [Voyager](https://apps.apple.com/app/id6451429762) / [GitHub](https://github.com/aeharding/voyager), [Mlem](https://apps.apple.com/app/id6450543782) / [GitHub](https://github.com/mlemgroup/mlem) or [Thunder](https://thunderapp.dev/) / [GitHub](https://github.com/thunder-app/thunder) - Lemmy Clients
|
||||
* ⭐ **[Ice Cubes](https://apps.apple.com/us/app/ice-cubes-for-mastodon/id6444915884)**, [Gazzetta](https://apps.apple.com/app/id6738706671) or [Mastodon](https://apps.apple.com/app/id1571998974) - Mastodon Clients
|
||||
* ⭐ **[BHTwitter](https://github.com/BandarHL/BHTwitter)** or [Twitter Branding](https://github.com/ghl3m0n/FuckElon) - X.com Apps
|
||||
* ⭐ **[OpenInYT](https://apps.apple.com/app/id1591585819)** - Adds "Open In" Popup to iOS Social Media Apps
|
||||
* [Openvibe](https://openvibe.social/) - Combine Social Media Apps
|
||||
* [Sink It](https://apps.apple.com/us/app/sink-it-for-reddit/id6449873635) - Reddit Enhancement Extension
|
||||
* [SNMessenger](https://github.com/NguyenASang/SNMessenger) - Facebook Messenger Tweak
|
||||
* [Frosty](https://www.frostyapp.io/) - Twitch Client / [GitHub](https://github.com/tommyxchow/frosty)
|
||||
* [Chatsen](https://chatsen.app/) - Cross-Platform Twitch Chat / [GitHub](https://github.com/chatsen/chatsen) / [Discord](https://discord.com/invite/5G8hpgHkXB)
|
||||
|
@ -1203,7 +1200,6 @@
|
|||
* [Chan](https://github.com/moffatman/chan) - 4chan App
|
||||
* [SCInsta](https://github.com/SoCuul/SCInsta) or [BHInstagram](https://github.com/BandarHL/BHInstagram) - Instagram Tweaks / [Extension](https://github.com/BillyCurtis/OpenInstagramSafariExtension)
|
||||
* [Swiftgram](https://swiftgram.app/) / [GitHub](https://github.com/Swiftgram/Telegram-iOS) - Telegram Apps
|
||||
* [BHTikTok++](https://github.com/raulsaeed/TikTokPlusPlus) - TikTok Tweaks / [Extension](https://github.com/BillyCurtis/OpenTikTokSafariExtension) / [Telegram](https://t.me/BHTikTokPlusPlus)
|
||||
* [Watusi](https://watusi.fouadraheb.com/) / [GitHub](https://github.com/FouadRaheb/Watusi-for-WhatsApp) or [WaEnhancer](https://github.com/Dev4Mod/WaEnhancer) - WhatsApp Patchers
|
||||
* [Whatsapp Backup Reader](https://whatsappbr.netlify.app/) - Read Exported Whatsapp Chats
|
||||
* [FakeWhats](https://www.fakewhats.com/) or [FakeInfo](https://fakeinfo.net/fake-whatsapp-chat-generator) - Fake WhatsApp Messages
|
||||
|
@ -1263,6 +1259,7 @@
|
|||
* [Streamer](https://github.com/StreamerApp/Streamer) - Movies / TV
|
||||
* [Streamyfin](https://github.com/streamyfin/streamyfin) or [Swiftfin](https://apps.apple.com/app/id1604098728) - Jellyfin Client
|
||||
* [Tubi](https://apps.apple.com/app/id886445756) - Movies / TV
|
||||
* [Channels Pro](https://apps.apple.com/us/app/channels-pro-iptv-player/id1491605049) - Live Sports / Insert "veve.pro"
|
||||
* [Found TV](https://apps.foundtv.com/) - Found Footage Movies / Signup Required
|
||||
* [Viki](https://apps.apple.com/app/id445553058) - Asian Drama
|
||||
* [TVBAnywhere](https://apps.apple.com/app/id1191642382) - Chinese Drama
|
||||
|
@ -1273,7 +1270,7 @@
|
|||
|
||||
## ▷ iOS Anime
|
||||
|
||||
* ⭐ **[Sora](https://apps.apple.com/app/sulfur/id6742741043)** - Extension-Based / [TestFlight](https://testflight.apple.com/join/qMUCpNaS) / [Discord](https://discord.gg/XR3SrmUbpd) / [GitHub](https://github.com/cranci1/Sora/)
|
||||
* ⭐ **[Sulfur](https://apps.apple.com/app/sulfur/id6742741043)** - Extension-Based / [Modules](https://sora.jm26.net/library/) / [TestFlight](https://testflight.apple.com/join/qMUCpNaS) / [Discord](https://discord.gg/XR3SrmUbpd) / [GitHub](https://github.com/cranci1/Sora/)
|
||||
* [Ketsu](https://ketsu.app/download.html) / [Discord](https://discord.gg/gjcy6MQ)
|
||||
* [MyAnimeList Client](https://apps.apple.com/app/id1469330778) or [Kitsune](https://apps.apple.com/app/id6466716447) - MyAnimeList Clients
|
||||
* [Otraku](https://github.com/lotusprey/otraku), [MyAnilist](https://apps.apple.com/us/app/myanilist/id741257899), [Ryuusei](https://ryuusei.moe/), [AniHyou](https://apps.apple.com/app/id1635777325) or [AniHyou](https://axiel7.github.io/anihyou) / [GitHub](https://github.com/axiel7/AniHyou-android) - AniList Apps
|
||||
|
|
|
@ -13,20 +13,18 @@
|
|||
* ↪️ **[YouTube Music Mobile](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/android/#wiki_.25B7_youtube_music)**
|
||||
* ⭐ **[Custom YouTube Music](https://th-ch.github.io/youtube-music/)** - YouTube Music Client / [Themes](https://github.com/kerichdev/themes-for-ytmdesktop-player/)
|
||||
* ⭐ **[SpoTube](https://spotube.krtirtho.dev/)** - Spotify Client / [GitHub](https://github.com/KRTirtho/spotube)
|
||||
* [Deezer](https://www.deezer.com/) - Streaming / [HiFi Unlock](https://uhwotgit.fly.dev/uhwot/dzunlock)
|
||||
* [Deezer](https://www.deezer.com/) - Streaming / [Extra Features](https://rentry.co/FMHYBase64#dzunlock)
|
||||
* [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
|
||||
* [BetterSoundcloud](https://alirezakj.com/bsc/) - Soundcloud Client / Ad-Free / [GitHub](https://github.com/AlirezaKJ/BetterSoundCloud)
|
||||
* [nuclear](https://nuclearplayer.com/) - Streaming / [GitHub](https://github.com/nukeop/nuclear) / [Discord](https://discord.com/invite/JqPjKxE)
|
||||
* [FunkWhale](https://funkwhale.audio/) - Streaming
|
||||
* [DAB Music Player](https://dabplayer.vercel.app/download) - Streaming
|
||||
* [MP3Jam](https://www.mp3jam.org/) - Streaming
|
||||
* [MellowPlayer](https://colinduquesnoy.gitlab.io/MellowPlayer/) - Streaming
|
||||
* [Muffon](https://muffon.netlify.app/) - Streaming
|
||||
* [MusicBucket](https://musicbucket.net/) - Track / Share Music / Telegram
|
||||
* [Mixtape Garden](https://mixtapegarden.com/) - Create / Share Mixtapes
|
||||
* [JukeboxStar](https://jukeboxstar.com/) or [JukeboxToday](https://jukebox.today/) - Collaborative Streaming / Listening Parties
|
||||
* [M3Unator](https://github.com/hasanbeder/M3Unator) - Generate M3U Playlists from Open Directories
|
||||
|
||||
***
|
||||
|
||||
|
@ -38,6 +36,7 @@
|
|||
* ⭐ **[SoundCloud](https://soundcloud.com/)** - User Made Songs / [Spotify Theme](https://userstyles.world/style/16767/) / [Dark Theme](https://github.com/huds0nx/soundcloud-luna)
|
||||
* [Spotify Web Client](https://open.spotify.com/) - Browser Music
|
||||
* [ArtistGrid](https://artistgrid.netlify.app/) - Browser Music
|
||||
* [DAB Music Player](https://dab-music.vercel.app/) - Browser Music
|
||||
* [Groovesharks](https://groovesharks.org/) - Browser Music
|
||||
* [Last.fm](https://www.last.fm/) - Browser Music / [Tools](https://fmhy.net/audiopiracyguide#last-fm-tools)
|
||||
* [FreeListenOnline](https://freelistenonline.com/) - Browser Music
|
||||
|
@ -76,7 +75,7 @@
|
|||
* [Musico](https://www.musi-co.com/listen/) - AI Generated Songs
|
||||
* [BitMidi](https://bitmidi.com/) - Stream / Download MIDI Files
|
||||
* [Tasso Music](https://www.tassomusic.org/) - Early Modern Music
|
||||
* [i78s](https://i78s.org/), [Archeophone](https://www.archeophone.org/html/languages/en/index.en.html), [UCSB Cylinders](https://cylinders.library.ucsb.edu/index.php), [CLPGS](https://www.clpgs.org.uk/), [Tinfoil](http://www.tinfoil.com/) or [American Historical Recordings](https://adpprod2.library.ucsb.edu/) - Phonograph / Gramophone Recordings
|
||||
* [i78s](https://i78s.org/), [Archeophone](https://www.archeophone.org/html/languages/en/index.en.html), [UCSB Cylinders](https://cylinders.library.ucsb.edu/index.php), [CLPGS](https://www.clpgs.org.uk/), [Tinfoil](https://www.tinfoil.com/) or [American Historical Recordings](https://adpprod2.library.ucsb.edu/) - Phonograph / Gramophone Recordings
|
||||
* [FirstSounds](https://www.firstsounds.org/) - Oldest Music Recordings
|
||||
* [Russian Records](https://www.russian-records.com/) - Russian Record Recordings
|
||||
* [Measuring Polyphony](https://measuringpolyphony.org/) - Digital Encoding of Late Medieval Music
|
||||
|
@ -139,6 +138,7 @@
|
|||
* [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
|
||||
* [HollowEarthRadio](https://www.hollowearthradio.org/) - Pacific Northwest Artists
|
||||
* [Nectarine](https://www.scenestream.net/demovibes/streams/) - Demo Scene Music Radio
|
||||
* [Daft Punk Cafe](https://daftpunk.cafe/) - Daft Punk Radio
|
||||
* [Radiooooo](https://radiooooo.com/) - Radio / Time Machine
|
||||
|
@ -159,6 +159,7 @@
|
|||
* 🌐 **[Awesome Podcasts](https://github.com/rShetty/awesome-podcasts)** - Podcasts for Software Engineers
|
||||
* ↪️ **[Android](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/android#wiki_.25B7_android_podcasts_.2F_radio) / [iOS](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/android#wiki_.25B7_ios_podcasts_.2F_radio)** - Podcast / Radio Apps
|
||||
* ⭐ **[Spotify Podcasts](https://open.spotify.com/browse/podcasts)** - Podcasts / [Companion](https://sebschaef.bitbucket.io/podify/) / [RSS](https://github.com/Yetangitu/Spodcast) / [Video Download](https://rentry.co/spotifypodcast) / [Audio Download](https://rentry.co/dlspotifypodcast)
|
||||
* ⭐ **[Pocket Casts](https://play.pocketcasts.com/discover)** - Podcasts / [Desktop App](https://pocketcasts.com/downloads/windows/)
|
||||
* [Podchaser](https://podchaser.com/), [Rephonic](https://rephonic.com/graph) or [Listen Notes](https://www.listennotes.com/) - Podcast Databases / Trackers
|
||||
* [Apple Podcasts](https://podcasts.apple.com/us/home) - Podcasts
|
||||
* [PodParadise](https://www.podparadise.com/) - Podcasts
|
||||
|
@ -193,16 +194,20 @@
|
|||
* ⭐ **[HaloMe](https://halome.nu/)** - Halo Menu Screens
|
||||
* ⭐ **[Chillhop](https://chillhop.com/)** - Lofi Radio
|
||||
* ⭐ **[Rainy Mood](https://www.rainymood.com/)** - Ambient Rain
|
||||
* [Lofi and Games](https://lofiandgames.com/) - Lofi Radio + Simple Games
|
||||
* [FlowTunes](https://www.flowtunes.app/) - Lofi + Focus Radio / Ambient Sounds
|
||||
* [Petrichoir](https://petrichoir.app/) - Lofi Radio / Ambient Sounds
|
||||
* [Lofizen](https://www.lofizen.co/) - Lofi Radio / Ambient Sounds
|
||||
* [Rainbow Hunt](https://rainbowhunt.com/) - Ambient Rain
|
||||
* [Pluvior](https://pluvior.com/), [rainfor.me](https://rainfor.me/) - Ambient Rain
|
||||
* [Raining.fm](https://raining.fm/) - Ambient Rain
|
||||
* [Rainyscope](https://rainyscope.com/) - Ambient Rain
|
||||
* [Moon Phase Radio](https://www.moonphaseradio.com/) - Lofi Radio
|
||||
* [Ambient Sleeping Pill](https://ambientsleepingpill.com/) - Lofi Radio
|
||||
* [LofiCafe](https://www.loficafe.net/) - Lofi Radio
|
||||
* [Ambicular](https://ambicular.com/) - Lofi Radio
|
||||
* [Lofi Music](https://lofimusic.app/) - Lofi Radio
|
||||
* [FreeCodeCamp](https://coderadio.freecodecamp.org/) - Lofi Radio
|
||||
* [Loofi](https://loofi.netlify.app/) - Lofi Radio
|
||||
* [lofi.cafe](https://www.lofi.cafe/) - Lofi Radio
|
||||
* [Lofi Club](https://loficlub.vercel.app/) - Lofi Radio
|
||||
|
@ -247,7 +252,7 @@
|
|||
|
||||
* ↪️ **[Spotify Playlist Generators](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage/#wiki_spotify_playlist_generators)**
|
||||
* ⭐ **[exportify](https://exportify.app/)** / [GitHub](https://github.com/watsonbox/exportify) or [spotify-backup](https://github.com/caseychu/spotify-backup) - Playlist Backup
|
||||
* ⭐ **[playlists.cloud](https://playlists.cloud/)**, [SpotTransfer](https://spot-transfer.vercel.app/) or [Trikatuka](https://trikatuka.aknakn.eu/) - Playlist Transfer Tools
|
||||
* ⭐ **[playlists.cloud](https://playlists.cloud/)**, [SpotTransfer](https://spot-transfer.vercel.app/), [Trikatuka](https://trikatuka.aknakn.eu/) or [Spotify2YouTubeMusic](https://github.com/mahdi-y/Spotify2YoutubeMusic) - Playlist Transfer Tools
|
||||
* [Skiley](https://skiley.net/) or [Kotify](https://github.com/dzirbel/kotify) - Playlist Managers
|
||||
* [Playlist Sorter](https://www.playlistsorter.com/) or [SortYourMusic](http://sortyourmusic.playlistmachinery.com/) / [GitHub](https://github.com/plamere/SortYourMusic) - Sort Playlists
|
||||
* [Timelineify](https://www.timelineify.com/) - Sort Playlists by Release
|
||||
|
@ -291,10 +296,9 @@
|
|||
|
||||
## ▷ Audio Ripping Sites
|
||||
|
||||
* ⭐ **[lucida](https://lucida.to/)**, [2](https://lucida.su/) - Multi-Site / 320kb / MP3 / FLAC / [Auto-Retry](https://greasyfork.org/en/scripts/514514) / [Telegram](https://t.me/lucidahasmusic) / [Discord](https://discord.gg/5EEexMqVuE)
|
||||
* ⭐ **[lucida](https://lucida.to/)**, [2](https://lucida.su/) - Multi-Site / 320kb / MP3 / FLAC / ALAC / [Auto-Retry](https://greasyfork.org/en/scripts/514514) / [Telegram](https://t.me/lucidahasmusic) / [Discord](https://discord.gg/5EEexMqVuE)
|
||||
* ⭐ **[cobalt](https://cobalt.tools/)** - YouTube / SoundCloud / 320kb / MP3 / Ad-Free / [Instances](https://instances.cobalt.best/) / [Playlist Support](https://playlist.kwiatekmiki.pl/), [2](https://playlist.kwiatekmiki.com/)
|
||||
* ⭐ **[squid.wtf](https://squid.wtf/)** - Deezer / Qobuz / FLAC / [GitHub](https://github.com/QobuzDL/Qobuz-DL)
|
||||
* ⭐ **[yet another music server](https://yams.tf/)** - Deezer / Tidal / Qobuz / FLAC / [Discord](https://discord.com/invite/yjkdAc53rj)
|
||||
* [YTiz](https://ytiz.xyz/) - YouTube / SoundCloud / Bandcamp / 128kb / AAC / [GitHub](https://github.com/tizerk/ytiz)
|
||||
* [AMP3](https://amp3.cc/) - YouTube / 320kb
|
||||
* [Download Bandcamp](https://downloadmusicschool.com/bandcamp/) - Bandcamp / 128kb MP3
|
||||
|
@ -324,17 +328,18 @@
|
|||
* [GamDL](https://github.com/glomatico/gamdl) - Apple / FLAC / Use Firehawk52
|
||||
* [BandCamp-DL](https://github.com/iheanyi/bandcamp-dl) - Bandcamp / 128kb MP3 / [Discord](https://discord.com/invite/nwdT4MP) / Free Only
|
||||
* [Exact Audio Copy](https://www.exactaudiocopy.de/) / [Guide](https://docs.google.com/document/d/1b1JJsuZj2TdiXs--XDvuKdhFUdKCdB_1qrmOMGkyveg) or [Whipper](https://github.com/whipper-team/whipper) - CD / DVD Audio Ripper
|
||||
* [AccurateRip](http://www.accuraterip.com/) - Verify Ripped Tracks are Error-Free
|
||||
* [AccurateRip](https://www.accuraterip.com/) - Verify Ripped Tracks are Error-Free
|
||||
|
||||
***
|
||||
|
||||
## ▷ Telegram Bots
|
||||
|
||||
* ⭐ **[Glomatico Amazon](https://t.me/GlomaticoAmazonMusicBot)** and **[Glomatico Apple](https://t.me/GlomaticoAppleMusicBot)** - Amazon / Apple / FLAC
|
||||
* [BeatSpotBot](https://t.me/BeatSpotBot) - Deezer / Tidal / Yandex / VK / FLAC / 25 Daily
|
||||
* [BeatSpotBot](https://t.me/BeatSpotBot) - Spotify / Deezer / Tidal / Yandex / VK / FLAC / 25 Daily
|
||||
* [JioDLBot](https://t.me/JioDLBot) - JioSaavn / Gaana / FLAC
|
||||
* [Spotify_download_bot](https://t.me/Spotify_downloa_bot) - YouTube / JioSaavn / 320kb MP3
|
||||
* [Music_Downloader_Bot_Spotify](https://t.me/Music_Downloader_Bot_Spotify) - YouTube / M4A / ACC / 128kb MP3
|
||||
* [GlomaticoBlueMusicBot](https://t.me/GlomaticoBlueMusicBot) - Amazon Music Downloader / [Discord](https://discord.gg/aBjMEZ9tnq) / [Telegram](https://t.me/GlomaticoBotSupport)
|
||||
* [GlomaticoPinkMusicBot](https://t.me/GlomaticoPinkMusicBot) - Apple Music Downloader / [Discord](https://discord.gg/aBjMEZ9tnq) / [Telegram](https://t.me/GlomaticoBotSupport)
|
||||
* [DeezerMusicBot](https://t.me/DeezerMusicBot) - Deezer / 320kb MP3 / FLAC
|
||||
* [deezload2bot](https://t.me/deezload2bot) - Deezer / 320kb MP3
|
||||
* [Music_Hunters](https://t.me/MusicsHuntersbot) - Deezer / 320kb MP3
|
||||
|
@ -359,6 +364,7 @@
|
|||
* ↪️ **[Royalty Free Music](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_royalty_free_music)**
|
||||
* ⭐ **[TrackerHub](https://rentry.co/FMHYBase64#trackerhub)** - Artists Spreadsheet / [Frontend](https://artistgrid.netlify.app/) / [Discord](https://discord.gg/trackerhub)
|
||||
* ⭐ **[Audio Download CSE](https://cse.google.com/cse?cx=006516753008110874046:ibmyuhh72io)** / [CSE 2](https://cse.google.com/cse?cx=006516753008110874046:ohobg3wvr_w) / [CSE 3](https://cse.google.com/cse?cx=32d85b41e2feacd3f) - Multi-Site Search
|
||||
* ⭐ **[DAB Music Player](https://dab-music.vercel.app/)** - FLAC / [Desktop App](https://dabplayer.vercel.app/download)
|
||||
* [/r/xTrill](https://reddit.com/r/xTrill) - Download App / [Backup](https://reddit.com/r/xTrillBackup)
|
||||
* [VK::MP3](https://metacpan.org/pod/VK::MP3) - VK MP3 Search Tool
|
||||
* [musify](https://musify.club/) - 320kb / MP3
|
||||
|
@ -416,7 +422,6 @@
|
|||
|
||||
## ▷ Genre Specific
|
||||
|
||||
* [The Last Disaster](https://thelastdisaster.club/) - Metal / Hardcore / Rock / 320kb / MP3 / FLAC
|
||||
* [Take Metal](https://takemetal.org/) - Metal / MP3
|
||||
* [Me-4U](https://me-4u.com/index.php) - Metal / MP3
|
||||
* [Metalminos](https://metalminos.net/) - Metal / MP3
|
||||
|
@ -443,7 +448,7 @@
|
|||
* [GlobalDJMix](https://globaldjmix.com/) - DJ Mixes / MP3
|
||||
* [EDMLiveSet](https://www.edmliveset.com/) - DJ Mixes / Livesets
|
||||
* [oVPN DJ Mixes](https://rentry.co/FMHYBase64#ovpn-dj-mixes) - DJ Mixes
|
||||
* [loa2k](https://loa2k.neocities.org/), [nu guide](https://nuvaporwave.neocities.org/mirrors.html) or [Vaporware.ivan](https://vaporwave.ivan.moe/list/) - Vaporwave
|
||||
* [loa2k](https://loa2k.neocities.org/) or [nu guide](https://nuvaporwave.neocities.org/mirrors.html) - Vaporwave
|
||||
* [inconstant sol](https://inconstantsol.blogspot.com/), [David W. Niven Collection](https://archive.org/details/davidwnivenjazz) or [JazznBlues](https://jazznblues.club/) - Jazz / MP3
|
||||
* [EssentialHouse](https://essentialhouse.club/) - House / MP3
|
||||
* [Bluegrass Archive](https://rentry.co/FMHYBase64#bluegrass-archive) - Bluegrass / FLAC
|
||||
|
@ -453,7 +458,7 @@
|
|||
* [Classical Music Download](https://classical-music-download.com/) - Classical / FLAC
|
||||
* [FoggyNotion](https://foggynotion-flac.blogspot.com/) - Classic Music / MP3 / FLAC
|
||||
* [chucrute com quiabo](https://rabanetecomquiabo.blogspot.com/) or [MeetingInMusic](https://meetinginmusic.blogspot.com/) - Classical / MP3
|
||||
* [FlatbackAndClassical](http://www.flatblackandclassical.com/) - Classic Indian Music / FLAC
|
||||
* [FlatbackAndClassical](https://www.flatblackandclassical.com/) - Classic Indian Music / FLAC
|
||||
* [madrotter-treasure-hunt](https://madrotter-treasure-hunt.blogspot.com/) - Indonesian Music
|
||||
* [Kiddie Records](http://www.kiddierecords.com/) - Classic Children's Records
|
||||
* [HQ Hip Hop](https://94hiphop.com/) or [GoldHipHop](https://goldhiphop.pro/) - Hip Hop / MP3 / FLAC
|
||||
|
@ -462,6 +467,7 @@
|
|||
* [Dez Flight Underground](https://dezflight-underground.com/) - Underground Hip Hop
|
||||
* [The Noise-Arch Archive](https://archive.org/details/noise-arch) - Underground Cassette Tapes
|
||||
* [MusicRepublic](https://music-republic-world-traditional.blogspot.com/) - World / MP3 / FLAC
|
||||
* [KPopFLAC](https://www.kpopflac.xyz/) - K-Pop / FLAC
|
||||
* [KPopMusicDownload](https://kpopdownloadscmm.blogspot.com/) - K-Pop / MP3
|
||||
* [FondSound](https://www.fondsound.com/) - Experimental / MP3
|
||||
* [Hipstrumentals](https://hipstrumentals.com/) - Instrumentals / MP3
|
||||
|
@ -487,6 +493,7 @@
|
|||
* [BlackTorrent](https://blacktorrent.ru/) or [iPlayMetal](https://metal.iplay.ro/) - Metal / MP3 / FLAC
|
||||
* [the /kpg/ torrent](https://kpgtorrent.neocities.org/) - 900GB+ K-Pop Torrent File / MP3 320kb / FLAC
|
||||
* [MixtapeTorrent](http://www.mixtapetorrent.com/) - Mixtapes / MP3 / Various Bitrates
|
||||
* [TorrentTech](https://torrents.torrentech.org/) - Electronic / MP3 320kb / Signup Required / [Zip File](https://rentry.co/FMHYBase64#torrenttech-zip)
|
||||
* [TribalMixes](https://www.tribalmixes.com/) - Forum / DJ Mixes / MP3
|
||||
* [PandaCD](https://pandacd.io/) - User-Made Music / MP3 / FLAC
|
||||
* [NFO db](https://nfodb.ru/) - MP3 NFO Database
|
||||
|
@ -534,12 +541,13 @@
|
|||
|
||||
# ► Tracking / Discovery
|
||||
|
||||
* ⭐ **[RateYourMusic](https://rateyourmusic.com/)** - Ratings / Reviews / [Add Features](https://rateyourmusic.com/list/CaptainMocha/betterrym-browser-extension/) / [Last.fm Stats](https://github.com/dukhevych/rym-lastfm-stats)
|
||||
* ⭐ **[RateYourMusic](https://rateyourmusic.com/)** - Ratings / Reviews / [Add Features](https://rateyourmusic.com/list/CaptainMocha/betterrym-browser-extension/) / [Last.fm Stats](https://github.com/dukhevych/rym-lastfm-stats) / [Forum](https://rym.fm/)
|
||||
* ⭐ **[Last.fm](https://www.last.fm/home)** / [Tools](https://fmhy.net/audiopiracyguide#last-fm-tools), [ListenBrainz](https://listenbrainz.org/) or [Music Board](https://musicboard.app/) - Track Listening Habits / Songs
|
||||
* ⭐ **[Muspy](https://muspy.com/)**, [Drop Watch](https://drop-watch.ghost.io/), [MusicButler](https://www.musicbutler.io/) or [Brew.fm](https://www.brew.fm/) - Get Album Release Updates
|
||||
* ⭐ **[AnyDecentMusic](http://www.anydecentmusic.com/)** - Album Review Aggregator
|
||||
* ⭐ **[RYM Ultimate Box Set](https://rateyourmusic.com/list/TheScientist/rym-ultimate-box-set/)** - Artist Recommendations by Genre
|
||||
* ⭐ **[/r/ifyoulikeblank](https://www.reddit.com/r/ifyoulikeblank/)** - Artist Recommendations
|
||||
* ⭐ **[MixesDB](https://www.mixesdb.com/)** - DJ Set Database
|
||||
* ⭐ **[EveryNoise](https://everynoise.com/)** - Discover Music Genres / [New Music](https://www.furia.com/page.cgi?type=log#id492)
|
||||
* ⭐ **[Tunefind](https://www.tunefind.com/)** - Find Music from Movies / TV
|
||||
* [lazyrecords](https://lazyrecords.app/), [Discover Quickly](https://discoverquickly.com/), [Chosic](https://www.chosic.com/), [TapeFear](https://www.tapefear.com/), [SongsLikeX](https://songslikex.com/), [Dubolt](https://dubolt.com/) or [Maroofy](https://maroofy.com/) - Song Discovery Tools
|
||||
|
@ -551,18 +559,17 @@
|
|||
* [AllMusic](https://www.allmusic.com/) - Ratings / Reviews
|
||||
* [MusicBrainz](https://musicbrainz.org/) - Ratings / Reviews
|
||||
* [Odesli](https://odesli.co/) - Song / Podcast Platform Search / [Telegram Bot](https://t.me/odesli_bot)
|
||||
* [Kworb](https://kworb.net/) - Music Top Charts
|
||||
* [Kworb](https://kworb.net/) or [Spotify Charts](https://spotifycharts.com/) - Music Top Charts
|
||||
* [ClassicRockHistory](https://www.classicrockhistory.com/classic-rock-bands-list-and-directory/) - Classic Rock Band Archive
|
||||
* [TheIndieRockPlaylist](https://www.theindierockplaylist.com/) - Indie Rock Archive
|
||||
* [Metal Archives](https://www.metal-archives.com/) - Metal Band Archive
|
||||
* [DAHR](https://adp.library.ucsb.edu/index.php) - American Historical Recordings Database
|
||||
* [IDM Discovery](https://www.idmdiscovery.com/) - IDM Artist Archive
|
||||
* [MixesDB](https://www.mixesdb.com/) - DJ Set Database
|
||||
* [TrackID](https://trackid.net/) - Tracklist Database
|
||||
* [Rec Charts](https://pastebin.com/ayuqSpGR) - Music Recommendation Guides
|
||||
* [45Cat](https://www.45cat.com/) - Vinyl Ratings / Reviews
|
||||
* [Spoqify](https://spoqify.com/) - Anonymous Playlist Generator
|
||||
* [MusitcTo](https://www.musicto.com/) - Musician Curated Playlists
|
||||
* [MusicTo](https://www.musicto.com/) - Musician Curated Playlists
|
||||
* [BoilTheFrog](http://boilthefrog.playlistmachinery.com/) - Create Playlist from 2 Artists
|
||||
* [TuneMyMusic](https://www.tunemymusic.com/) - Transfer Playlists between Services
|
||||
* [Obscurify](https://obscurifymusic.com/) or [MusicTaste](https://musictaste.space/) - Compare Music Taste to Others
|
||||
|
@ -620,6 +627,7 @@
|
|||
* [X-Minus](https://x-minus.pro/) or [LRC Maker](https://lrcmaker.com/) - Create Karaoke Songs
|
||||
* [VB Cables](https://rentry.co/FMHYBase64#vb-cables) - Virtual Audio Cables
|
||||
* [Librescore Downloader](https://github.com/LibreScore/dl-librescore) - Librescore Downloader
|
||||
* [M3Unator](https://github.com/hasanbeder/M3Unator) - Generate M3U Playlists from Open Directories
|
||||
|
||||
***
|
||||
|
||||
|
@ -692,12 +700,11 @@
|
|||
|
||||
## ▷ Song Identification
|
||||
|
||||
* ⭐ **[Shazam](https://www.shazam.com/)** - Android / [Desktop App](https://github.com/BayernMuller/vibra)
|
||||
* ⭐ **[Shazam](https://www.shazam.com/)** - Android / [Unlock](https://rentry.co/FMHYBase64#shazam) / [Desktop App](https://github.com/BayernMuller/vibra)
|
||||
* ⭐ **[WhatAmIHearing](https://github.com/zemoto/WhatAmIHearing)** - Song Identification App
|
||||
* ⭐ **[WatZatSong](https://www.watzatsong.com/en)** - Song Identification Forum
|
||||
* [/r/NameThatSong](https://reddit.com/r/NameThatSong) - Song Identification Subreddit
|
||||
* [FlairMax](https://apps.microsoft.com/detail/9pdzvj34ztxg)
|
||||
* [SoundHound](https://www.soundhound.com/soundhound)
|
||||
* [Aha Music](https://www.aha-music.com/identify-songs-music-recognition-online)
|
||||
* [AudioTag](https://audiotag.info/)
|
||||
* [SampleSeek](https://www.sampleseek.co.uk/) - Find Sample Origins
|
||||
|
@ -829,6 +836,7 @@
|
|||
* [NoiseCraft](https://noisecraft.app/) - Modular Synth Builder
|
||||
* [StarrynetsPiano](https://piano.starrynets.com/) or [VirtualPiano](https://virtualpiano.net/) - Browser Pianos
|
||||
* [MK-1](https://ericrosenbaum.github.io/MK-1/) - Online Sampling Keyboard
|
||||
* [VO Pads](https://vo.odgn.net/) - Video Sample Sequencer
|
||||
* [React Guitar](https://react-guitar.com/) - Virtual Guitar
|
||||
* [Theremin](https://femurdesign.com/theremin/) - Virtual Theremin
|
||||
* [Pantam Playground](https://www.yishama.com/virtual-pantam-playground/) - Virtual Pantam
|
||||
|
|
|
@ -14,7 +14,7 @@ Piracy sites usually contain ads, some of which can be harmful, often leading to
|
|||
|
||||
For browsers we recommend **[uBO](https://github.com/gorhill/uBlock)**, and you can also use a **[Redirect Skipper](https://fmhy.net/internet-tools#redirect-bypass)** to skip annoying countdowns.
|
||||
|
||||
For mobile **[AdGuard Premium](https://rentry.co/FMHYBase64#adguard-premium)** / [iOS](https://adguard.com/en/adguard-ios/overview.html) / [Guide](https://ios.cfw.guide/sideloading-apps/) or **[Rethink DNS](https://rethinkdns.com/app)**, and you can block YouTube, Reddit, and X.com ads with **[ReVanced Manager](https://github.com/revanced/revanced-manager)** / [Easy Setup](https://rentry.co/revanced-auto-update).
|
||||
For mobile **[AdGuard Premium](https://fmhy.net/android-iosguide#android-adblocking)** / [iOS](https://adguard.com/en/adguard-ios/overview.html) / [Guide](https://ios.cfw.guide/sideloading-apps/) or **[Rethink DNS](https://rethinkdns.com/app)**, and you can block YouTube, Reddit, and X.com ads with **[ReVanced Manager](https://github.com/revanced/revanced-manager)** / [Easy Setup](https://rentry.co/revanced-auto-update).
|
||||
|
||||
!!!note Using several ad blockers, like uBO and Adguard at the same time can [mess things up](https://x.com/gorhill/status/1033706103782170625). This only happens with regular ad blockers, so it's perfectly okay to use uBO alongside something like SponsorBlock.
|
||||
|
||||
|
@ -26,7 +26,7 @@ For mobile **[AdGuard Premium](https://rentry.co/FMHYBase64#adguard-premium)** /
|
|||
|
||||
We recommend **[Firefox](https://www.mozilla.org/en-US/firefox/new/)**, but you can also try **[Privacy-Focused Browsers](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/adblock-vpn-privacy/#wiki_.25B7_browser_privacy)**, or **[Brave](https://brave.com/)** if you prefer Chromium.
|
||||
|
||||
For mobile we recommend **[Firefox](https://www.mozilla.org/en-US/firefox/browsers/mobile/android/)**, **[Cromite](https://github.com/uazo/cromite)** for privacy or **[Orion](https://kagi.com/orion/)** for iOS.
|
||||
For mobile we recommend **[Brave](https://brave.com/)**, **[Firefox](https://www.mozilla.org/en-US/firefox/browsers/mobile/android/)**, **[Cromite](https://github.com/uazo/cromite)** or **[Orion](https://kagi.com/orion/)** for iOS.
|
||||
|
||||
!!!note We recommend looking through our [Extension](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/internet-tools#wiki_.25B7_browser_extensions) / [Userscript](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/internet-tools#wiki_.25B7_userscripts) sections to find ways to enhance your browser.
|
||||
|
||||
|
@ -34,8 +34,7 @@ For mobile we recommend **[Firefox](https://www.mozilla.org/en-US/firefox/browse
|
|||
|
||||
### Movies / Shows
|
||||
|
||||
* **Streaming: [Cineby](https://www.cineby.app/) / [Freek](https://freek.to/) / [movie-web Instances](https://erynith.github.io/movie-web-instances/) + [Setup Guide + 4K](https://vimeo.com/1059834885/c3ab398d42) / [Note](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#movie-web-extension)**
|
||||
* **Downloading: [Pahe](https://pahe.ink/) + [Ad-Bypass](https://greasyfork.org/en/scripts/443277) / [PSARips](https://psa.wf/)**
|
||||
* **Streaming: [XPrime](https://xprime.tv/) / [Hexa](https://hexa.watch/) / [Rive](https://rivestream.org/)**
|
||||
* **Torrenting: [1337x](https://1337x.to/movie-library/1/)**
|
||||
* **Sports Streaming: [Streamed](https://streamed.su/) / [Sportsurge](https://v2.sportsurge.net/home4/)**
|
||||
* **Drama Streaming: [KissAsian](https://kissasian.video/)**
|
||||
|
@ -56,7 +55,7 @@ For mobile we recommend **[Firefox](https://www.mozilla.org/en-US/firefox/browse
|
|||
|
||||
* **Streaming: [SpotX](https://github.com/SpotX-Official/SpotX) / [Custom YouTube Music](https://th-ch.github.io/youtube-music/)**
|
||||
* **Downloading: [lucida](https://lucida.to/) / [Soulseek](https://slsknet.org/)**
|
||||
* **Mobile: [OuterTune](https://github.com/OuterTune/OuterTune) / [EeveeSpotify](https://github.com/whoeevee/EeveeSpotify) (iOS)**
|
||||
* **Mobile: [ReVanced Manager](https://revanced.app/) (Android) / [OuterTune](https://github.com/OuterTune/OuterTune) (Android) / [EeveeSpotify](https://github.com/whoeevee/EeveeSpotify) (iOS)**
|
||||
* **Track / Discover: [Last.fm](https://www.last.fm/home) / [RateYourMusic](https://rateyourmusic.com/)**
|
||||
|
||||
***
|
||||
|
@ -72,7 +71,7 @@ For mobile we recommend **[Firefox](https://www.mozilla.org/en-US/firefox/browse
|
|||
|
||||
### Reading
|
||||
|
||||
* **Downloading: [Anna's Archive](https://annas-archive.org/) / [Bookracy](https://bookracy.ru) / [Library Genesis](https://libgen.is) / [Z-Library](https://z-lib.gs/) / [Mobilism](https://forum.mobilism.org)**
|
||||
* **Downloading: [Anna's Archive](https://annas-archive.org/) / [Bookracy](https://bookracy.ru) / [Library Genesis](https://libgen.rs/) / [Z-Library](https://z-lib.gs/) / [Mobilism](https://forum.mobilism.org)**
|
||||
* **Audiobooks: [AudiobookBay](https://audiobookbay.lu/) / [Mobilism Audiobooks](https://forum.mobilism.org/viewforum.php?f=124) / [Tokybook](https://tokybook.com/)**
|
||||
* **Manga: [ComicK](https://comick.io/) / [Weeb Central](https://weebcentral.com/) / [MangaDex](https://mangadex.org/)**
|
||||
* **Comics: [ReadComicsOnline](https://readcomiconline.li/) / [GetComics](https://getcomics.org/)**
|
||||
|
@ -149,12 +148,12 @@ Downloading files through torrenting can cause issues with your ISP, so using a
|
|||
|
||||
***
|
||||
|
||||
### Useful Links
|
||||
### Important Links
|
||||
|
||||
* **[Piracy Glossary](https://rentry.org/the-piracy-glossary)** - Common piracy term definitions
|
||||
* **[Unsafe Sites / Software](https://fmhy.net/unsafesites)** / [2](https://redd.it/10bh0h9) - Things we recommend avoiding
|
||||
* **[Base64 Decoders](https://fmhy.net/text-tools#encode-decode) / [Auto Decode](https://greasyfork.org/en/scripts/485772)** - Tools to decode base64 links
|
||||
* **[FMHY Website](https://fmhy.net/)** - Our website with many more sites / tools
|
||||
* **[Base64 Decoders](https://fmhy.net/text-tools#encode-decode) / [Auto Decode](https://greasyfork.org/en/scripts/485772)** - Tools to decode encrypted base64 links
|
||||
* [FMHY.net](https://fmhy.net/) - Our website with many more sites / tools
|
||||
|
||||
***
|
||||
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
* [IndieHackers](https://www.indiehackers.com/) - Developer Forum
|
||||
* [CyberArsenal](https://cyberarsenal.org/) - Cybersecurity Forums
|
||||
* [TheSecMaster](https://x.com/TheSecMaster1) - Cybersecurity Blog
|
||||
* [Tech-Blogs](https://tech-blogs.dev/) - Blogs for Developers
|
||||
* [Tech-Blogs](https://tech-blogs.dev/) or [HN Popularity](https://refactoringenglish.com/tools/hn-popularity/) - 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
|
||||
|
@ -54,7 +54,7 @@
|
|||
* ↪️ **[Data Visualization Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage/#wiki_data_visualization_tools)**
|
||||
* ⭐ **[DevDocs](https://devdocs.io/)** / [GitHub](https://github.com/freeCodeCamp/devdocs) or [ZealDocs](https://zealdocs.org/) - Dev Documentation
|
||||
* ⭐ **[DevToys](https://devtoys.app/)** - Dev Multi-Tool App / [GitHub](https://github.com/DevToys-app/DevToys)
|
||||
* [Slidev](https://github.com/slidevjs/slidev) - Developer Presentation Slides
|
||||
* [Slidev](https://sli.dev/) - Developer Presentation Slides / [GitHub](https://github.com/slidevjs/slidev)
|
||||
* [Devhints](https://devhints.io/) - Developer Cheat Sheets
|
||||
* [Dev Emoji List](https://gist.github.com/oliveratgithub/0bf11a9aff0d6da7b46f1490f86a71eb) - Emoji-List with Names, Shortcodes, Unicode & HTML Entities
|
||||
* [Student Developer Pack](https://education.github.com/pack) - Free Developer Tools for Students
|
||||
|
@ -109,18 +109,13 @@
|
|||
* [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
|
||||
* [Open Source Guides](https://opensource.guide/) - Open Source Software Tips / [GitHub](https://github.com/github/opensource.guide)
|
||||
* [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) or [Waypoint](https://www.waypointproject.io) - App Deployment
|
||||
* [Dotnet Content Creators](https://www.wearedotnet.io/) - .NET Content Creators Index
|
||||
* [Dokploy](https://github.com/dokploy/dokploy) - App Deployment
|
||||
* [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
|
||||
* [Crontab Generator](https://crontab-generator.org/) - Generate Crontab Syntax
|
||||
* [Fluent Svelte](https://fluent-svelte.vercel.app/) - Microsoft's Fluent Design System in Svelte
|
||||
* [Slint](https://slint.dev) / [GitHub](https://github.com/slint-ui/slint) or [QT Designer](https://build-system.fman.io/qt-designer-download) - GUI Development Tools
|
||||
* [Slint](https://slint.dev) - GUI Development Tools / [GitHub](https://github.com/slint-ui/slint)
|
||||
* [Inno Setup](https://jrsoftware.org/isinfo.php) or [InstallForge](https://www.installforge.net/) - Create Installation Programs
|
||||
* [smenu](https://github.com/p-gen/smenu) - Create CLI Menus
|
||||
* [Etebase](https://www.etebase.com/) - Encrypted App Backend
|
||||
* [tl;drLegal](https://www.tldrlegal.com/) - Software License Summaries
|
||||
* [minisign](https://jedisct1.github.io/minisign/) - Sign Files / Verify Digital Signatures / [GitHub](https://github.com/jedisct1/minisign)
|
||||
|
@ -133,8 +128,7 @@
|
|||
|
||||
* 🌐 **[AndroidRepo](https://androidrepo.com/)** - Android Development Resources
|
||||
* 🌐 **[Awesome iOS](https://github.com/vsouza/awesome-ios)** - iOS Development Resources
|
||||
* 🌐 **[Mobile Design Resources](https://github.com/josephgoksu/mobile-design-resources)** - App Design Learning Resources
|
||||
* 🌐 **[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
|
||||
* 🌐 **[UXArchive](https://uxarchive.com/)**, [Mobbin](https://mobbin.com/) or [UISources](https://www.uisources.com/) - Mobile UI Resources
|
||||
* 🌐 **[Heroku-Alt](https://rentry.co/Heroku-Alt)** or [heroku-free-alternatives](https://github.com/meanands/heroku-free-alternatives) - Heroku Alternatives
|
||||
* ↪️ **[App Mockups](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_app_.2F_site_mockups)**
|
||||
* ⭐ **[Android Developer Roadmap](https://github.com/skydoves/android-developer-roadmap)**
|
||||
|
@ -197,27 +191,19 @@
|
|||
* [up-for-grabs](https://up-for-grabs.net/) - Curated List of Tasks for New Contributes
|
||||
* [GitKraken](https://www.gitkraken.com/), [RelaGit](https://rela.dev/), [Sourcetree](https://www.sourcetreeapp.com/), [lazygit](https://github.com/jesseduffield/lazygit) or [gitui](https://github.com/gitui-org/gitui) - Git GUIs
|
||||
* [Gut](https://gut-cli.dev/), [Jujutsu](https://github.com/jj-vcs/jj), [GitHub Cli](https://cli.github.com/) or [gitu](https://github.com/altsem/gitu) - Git CLI / TUI
|
||||
* [Lab+](https://github.com/thelooter/labplus_for_gitlab) - GitLab Android App
|
||||
* [SparkleShare](https://sparkleshare.org) or [git-pr](https://github.com/picosh/git-pr) - Git Collab Tools
|
||||
* [git-pr](https://github.com/picosh/git-pr) - Git Collab Tools
|
||||
* [Git-notify](https://github.com/jevakallio/git-notify) - Embed Announcements into Git Commit Messages
|
||||
* [Allstar](https://github.com/ossf/allstar) - Git Repository Security App
|
||||
* [git-bug](https://github.com/git-bug/git-bug) - Git Embedded Bug Tracker
|
||||
* [Mercurial](https://www.mercurial-scm.org/), [Plane](https://github.com/makeplane/plane) / [Discord](https://discord.com/invite/A92xrEGCge), [Git Extensions](https://gitextensions.github.io/) or [Thermal](https://thermal.codecarrot.net/) - Git Project / Repo Managers
|
||||
* [Plane](https://github.com/makeplane/plane) / [Discord](https://discord.com/invite/A92xrEGCge), [Git Extensions](https://gitextensions.github.io/) or [Thermal](https://thermal.codecarrot.net/) - Git Project / Repo Managers
|
||||
* [git-annex](https://git-annex.branchable.com/) - Manage Large Git Files (without Git)
|
||||
* [GitList](https://gitlist.org/) - Elegant Git Repository Viewer / [GitHub](https://github.com/klaussilveira/gitlist)
|
||||
* [Gittyup](https://murmele.github.io/Gittyup/) - Git Source Code History / [GitHub](https://github.com/Murmele/Gittyup)
|
||||
* [Gource](https://gource.io/) - Git Project Visualizer
|
||||
* [git](https://git-scm.com/), [SCM](https://sapling-scm.com/) or [darcs](https://darcs.net/) - Version Control Systems
|
||||
* [multi-gitter](https://github.com/lindell/multi-gitter) - Bulk Repository Updater
|
||||
* [Delta](https://github.com/dandavison/delta) or [Git-Split-Diffs](https://github.com/banga/git-split-diffs) - Syntax Highlighting / Comparison
|
||||
* [Ugit](https://bhupesh.me/undo-your-last-git-mistake-with-ugit/) - Undo Git Commands
|
||||
* [Onefetch](https://onefetch.dev) - Command-line Git information tool / [GitHub](https://github.com/o2sh/onefetch)
|
||||
* [Sourcegraph](https://sourcegraph.com/) - Git Repository Sourcegraph Editor
|
||||
* [commitlint](https://commitlint.js.org/) - Lint Commit Messages / [GitHub](https://github.com/conventional-changelog/commitlint)
|
||||
* [Conventional Commits](https://www.conventionalcommits.org/) - Commit Message Specification
|
||||
* [AICommits](https://github.com/Nutlope/aicommits) - Auto Commit Messages
|
||||
* [Serie](https://github.com/lusingander/serie) - Commit Graph
|
||||
* [lastversion](https://lastversion.getpagespeed.com) or [ghrel](https://github.com/jreisinger/ghrel) - Download / View Latest Stable Repos
|
||||
* [Git Cliff](https://git-cliff.org) - Changelog Generator
|
||||
* [github-readme-terminal](https://github.com/x0rzavi/github-readme-terminal) - Terminal Style Readme
|
||||
* [GIT Quick Stats](https://git-quick-stats.sh/) - View Git Statistics / [GitHub](https://github.com/git-quick-stats/git-quick-stats)
|
||||
|
@ -264,7 +250,7 @@
|
|||
* [SemanticDiff](https://app.semanticdiff.com/) - Review Pull Requests using Language Aware Diff
|
||||
* [StarGrab](https://github.com/zekroTJA/stargrab) - Mirror GitHub Repositories
|
||||
* [Repo2Txt](https://github.com/abinthomasonline/repo2txt) - Convert Repos to Text Formatted Files
|
||||
* [Gitingest](https://gitingest.com/) - Convert Repos to Prompt-Friendly Text
|
||||
* [Gitingest](https://gitingest.com/) or [Repomix](https://repomix.com/) / [GitHub](https://github.com/yamadashy/repomix) - Convert Repos to Prompt-Friendly Text
|
||||
* [OctoLinker](https://octolinker.vercel.app/) - Make GitHub Code References Clickable
|
||||
* [Octotree](https://www.octotree.io/) - GitHub Repo File Tree View
|
||||
* [Nightly.link](https://nightly.link/) - GitHub Sharable Nightly Links
|
||||
|
@ -379,22 +365,11 @@
|
|||
* ⭐ **[LLM Visualization](https://bbycroft.net/llm)** - Learn how LLMs Work
|
||||
* [Awesome Generative AI Guide](https://github.com/aishwaryanr/awesome-generative-ai-guide) - LLM Research Resources
|
||||
* [Machine Learning Roadmap](https://rentry.org/machine-learning-roadmap), [SAAYN](https://spreadsheets-are-all-you-need.ai/), [machine-learning-zoomcamp](https://github.com/DataTalksClub/machine-learning-zoomcamp), [ML Engineering](https://github.com/stas00/ml-engineering) or [LLM Course](https://github.com/mlabonne/llm-course) - Learn Machine Learning
|
||||
* [LLM Training](https://rentry.org/llm-training) - LLM Training Guide
|
||||
* [LLM Text Complation](https://github.com/molbal/llm-text-completion-finetune) - LLM Finetuning / Text Complation
|
||||
* [TeachableMachine](https://teachablemachine.withgoogle.com/) or [TensorFlow](https://www.tensorflow.org/) - Create Machine Learning Models
|
||||
* [Google AI Studio](https://aistudio.google.com/) - Generative Model Prototyping
|
||||
* [DVC](https://dvc.org/) - Machine Learning Version Control
|
||||
* [DeepSpeed](https://www.deepspeed.ai/) - Deep Learning Optimization Library
|
||||
* [FlowiseAI](https://flowiseai.com/) - LLM Flow Visualization
|
||||
* [Netron](https://github.com/lutzroeder/netron) - Visualizer for Neural Network, Deep Learning, and Machine Learning Models
|
||||
* [Scikit Learn](https://scikit-learn.org/) - Machine Learning Library for Python
|
||||
* [PyTorch](https://pytorch.org) - Tensor library for deep learning using GPUs and CPUs
|
||||
* [MMDeploy](https://mmdeploy.readthedocs.io/en/latest/) - Deep Learning Model Deployment Toolset / [GitHub](https://github.com/open-mmlab/mmdeploy)
|
||||
* [MLC LLM](https://llm.mlc.ai/) - Native Language Model Deployment
|
||||
* [Langchain](https://python.langchain.com) - Build Apps via LLM / [Extract](https://github.com/langchain-ai/langchain-extract)
|
||||
* [ChatGPT-Next-Web](https://github.com/ChatGPTNextWeb/ChatGPT-Next-Web) - Cross-Platform ChatGPT / Gemini UI
|
||||
* [RunBear](https://runbear.io/) - Connect LLMs to Apps
|
||||
* [GPTCache](https://gptcache.readthedocs.io) - LLM Response Cache
|
||||
* [Code2Prompt](https://github.com/mufeedvh/code2prompt) - Convert Codebase to LLM Prompt
|
||||
* [Nixified](https://nixified.ai/) - Nix Flake for AI Projects
|
||||
* [Cyberbotics](https://cyberbotics.com/) - Robot Simulator
|
||||
|
@ -520,6 +495,7 @@
|
|||
* [CodePen](https://codepen.io/), [Web Maker](https://webmaker.app/) or [Liveweave](https://liveweave.com/) - Code Sandbox
|
||||
* [Platform.uno](https://platform.uno/) or [Enact](https://enactjs.com/) - App Frameworks
|
||||
* [InstantDB](https://www.instantdb.com/) - Collaborative App Framework
|
||||
* [Codeface](https://github.com/chrissimpkins/codeface), [Monaspace](https://monaspace.githubnext.com/), [Programming Fonts](https://www.programmingfonts.org/) or [Dev Fonts](https://devfonts.gafi.dev/) - Fonts for Coding / [Comparison](https://www.codingfont.com/)
|
||||
|
||||
***
|
||||
|
||||
|
@ -543,21 +519,15 @@
|
|||
|
||||
* 🌐 **[Awesome Creative Coding](https://github.com/terkelg/awesome-creative-coding)** - Creative Coding Resources
|
||||
* [Prettier](https://prettier.io/) or [codebeautify](https://codebeautify.org/) - Code Formatting Tools
|
||||
* [Package Control](https://packagecontrol.io/) - Sublime Text Package Manager
|
||||
* [pylyzer](https://github.com/mtshiba/pylyzer) - Static Code Analyzer
|
||||
* [Trigger](https://trigger.dev/) - Run Background Jobs
|
||||
* [Bacon](https://github.com/Canop/bacon) - Background Rust Code Check
|
||||
* [editorcornfig](https://editorconfig.org/) - Maintain Code Styles Across Editors
|
||||
* [ThemesElection](https://themeselection.com/), [NordTheme](https://www.nordtheme.com/) or [Dracula](https://draculatheme.com/) - Code Editor Themes
|
||||
* [ThemesElection](https://themeselection.com/) or [Dracula](https://draculatheme.com/) - Code Editor Themes
|
||||
* [Freeze](https://github.com/charmbracelet/freeze) - Generate Images of Code / Terminal Output
|
||||
* [myCompiler](https://www.mycompiler.io/), [Compiler Explorer](https://compiler-explorer.com/), [OneCompiler](https://onecompiler.com/), [GodBolt](https://godbolt.org/), [ryugod](https://www.ryugod.com/) or [Wandbox](https://wandbox.org/) - Online Compilers / Explorers
|
||||
* [DogBolt](https://dogbolt.org/) or [Decompiler Explorer](https://github.com/decompiler-explorer/decompiler-explorer) - Decompiler Explorers
|
||||
* [mingrammer](https://diagrams.mingrammer.com) - Diagram as Code / Prototyping
|
||||
* [Node-RED](https://nodered.org/) - Low-Code Programming for Event-Driven Apps
|
||||
* [DogBolt](https://dogbolt.org/) - Decompiler Explorers / [GitHub](https://github.com/decompiler-explorer/decompiler-explorer)
|
||||
* [Code2Flow](https://app.code2flow.com/) or [Flowchart.js](https://flowchart.js.org/) - Code to Flowchart Converter
|
||||
* [tuc](https://github.com/riquito/tuc) - Improved Code Cut
|
||||
* [massCode](https://masscode.io/), [Lepton](https://hackjutsu.com/Lepton/), [Snipit](https://snipit.io/) or [Snipp.in](https://snipp.in/) - Code Snippet Managers
|
||||
* [Meld](https://meldmerge.org/), [Beyond Compare](https://www.scootersoftware.com/) / [Pro](https://rentry.co/FMHYBase64#beyond-compare-crack) or [WinMerge](https://winmerge.org/) - File / Directory Comparison Tools
|
||||
* [massCode](https://masscode.io/) - Code Snippet Manager
|
||||
* [Meld](https://meld.app/) / [2](https://meldmerge.org/), [Beyond Compare](https://www.scootersoftware.com/) / [Pro](https://rentry.co/FMHYBase64#beyond-compare-crack) or [WinMerge](https://winmerge.org/) - File / Directory Comparison Tools
|
||||
* [0xacab](https://about.0xacab.org/) - Code Host
|
||||
* [OctoLinker](https://octolinker.vercel.app/) - Turn Code Statements into Links / [GitHub](https://github.com/OctoLinker/OctoLinker)
|
||||
* [RTutor](https://rtutor.ai/) - Translate Natural Language to R code / No Signup
|
||||
|
@ -571,8 +541,6 @@
|
|||
* [Adrenaline](https://useadrenaline.com/) or [Console Ninja](https://console-ninja.com/) - Code Debugging
|
||||
* [JBin](https://jsbin.com/) or [Replay](https://www.replay.io/) - Collaborative Code Debugging
|
||||
* [Winddown](https://github.com/schneefux/vscode-winddown) or [Sandman](https://alexanderepstein.github.io/Sandman/) - Coding Break Reminders
|
||||
* [Monaspace](https://monaspace.githubnext.com/), [ProgrammingFonts](https://www.programmingfonts.org/) or [Dev Fonts](https://devfonts.gafi.dev/) - Coding Fonts
|
||||
* [CodingFont](https://www.codingfont.com/) - Compare Coding Fonts
|
||||
* [Decompiler](https://www.decompiler.com/) - Online Decompiler
|
||||
|
||||
***
|
||||
|
@ -581,7 +549,7 @@
|
|||
|
||||
* 🌐 **[Awesome Neovim](https://github.com/rockerBOO/awesome-neovim)** or [NeoVimCraft](https://neovimcraft.com/) - NeoVim Plugins Collections
|
||||
* ⭐ **[Vim Bootstrap](https://vim-bootstrap.com/)** - Bootstrap Config for Vim
|
||||
* ⭐ **[NvChad](https://nvchad.com/)**, [SpaceVim](https://spacevim.org/), [NeoVim Kickstart](https://github.com/nvim-lua/kickstart.nvim), [AstroNvim](https://astronvim.com), [LazyVim](https://github.com/LazyVim/LazyVim) or [LunarVim](https://www.lunarvim.org/) - Neovim Configs
|
||||
* [SpaceVim](https://spacevim.org/), [NeoVim Kickstart](https://github.com/nvim-lua/kickstart.nvim), [AstroNvim](https://astronvim.com), [LazyVim](https://github.com/LazyVim/LazyVim), [NvChad](https://nvchad.com/) or [LunarVim](https://www.lunarvim.org/) - Neovim Configs
|
||||
* [DotFyle](https://dotfyle.com/) - Neovim Config Search
|
||||
* [Lazy.nvim](https://github.com/folke/lazy.nvim) or [packer.nvim](https://github.com/wbthomason/packer.nvim) - Neovim Plugin Managers
|
||||
* [FireNVim](https://github.com/glacambre/firenvim) - Neovim in Browser
|
||||
|
@ -649,6 +617,7 @@
|
|||
* [RustPython](https://rustpython.github.io/) - Python Interpreter
|
||||
* [uv](https://github.com/astral-sh/uv) - Python Package / Project Manager
|
||||
* [Thonny](https://thonny.org/) - Python IDE
|
||||
* [pylyzer](https://github.com/mtshiba/pylyzer) - Static Code Analyzer
|
||||
* [Online Python Compiler](https://www.onlinegdb.com/online_python_compiler) - Online Python Editor & Tester
|
||||
* [ClipRun](https://cliprun.com/) - Run Python Code in Browser / Chrome Extension
|
||||
|
||||
|
@ -656,6 +625,7 @@
|
|||
|
||||
## ▷ C Languages
|
||||
|
||||
* 🌐 **[Awesome C++](https://github.com/fffaraz/awesome-cpp)** - C++ Resources
|
||||
* [RoslynPad](https://roslynpad.net/) - C# Editor
|
||||
* [RoslynQuoter](https://roslynquoter.azurewebsites.net/) - C# Syntax Tree API Viewer
|
||||
* [The Algorithms - C++](https://thealgorithms.github.io/C-Plus-Plus) - C++ Algorithms
|
||||
|
@ -720,7 +690,6 @@
|
|||
|
||||
* 🌐 **[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)**
|
||||
* [Vanilla List](https://vanillalist.top/) - Vanilla JavaScript Repository
|
||||
* [RunKit](https://runkit.com/) - Browser JavaScript Sandbox
|
||||
* [Component Party](https://component-party.dev/) - Web Component JS Frameworks Overview / [GitHub](https://github.com/matschik/component-party.dev)
|
||||
|
@ -737,7 +706,7 @@
|
|||
|
||||
* ⭐ **[React](https://react.dev/)** - JS Library
|
||||
* [OpenChakra](https://openchakra.app/) or [Plate](https://platejs.org/) - React Code Editors
|
||||
* [React Suite](https://rsuitejs.com/) / [GitHub](https://github.com/rsuite/rsuite), [21st](https://21st.dev/) / [GitHub](https://github.com/serafimcloud/21st) or [Radix UI](https://www.radix-ui.com/) / [GitHub](https://github.com/radix-ui) - React Components
|
||||
* [ReactBits](https://www.reactbits.dev/), React Suite](https://rsuitejs.com/) / [GitHub](https://github.com/rsuite/rsuite), [21st](https://21st.dev/) / [GitHub](https://github.com/serafimcloud/21st) or [Radix UI](https://www.radix-ui.com/) / [GitHub](https://github.com/radix-ui) - React Components
|
||||
* [Mantine](https://mantine.dev/) - Components and Templates / [GitHub](https://github.com/lucianomlima/react-ui-kits)
|
||||
* [Bulletproof React](https://github.com/alan2207/bulletproof-react) - React App Architecture
|
||||
* [React Native Apps](https://github.com/ReactNativeNews/React-Native-Apps/) - React App Examples
|
||||
|
@ -845,7 +814,7 @@
|
|||
* ⭐ **[ColorHexa](https://www.colorhexa.com/)** - Color Hex Encyclopedia
|
||||
* ⭐ **[Realtime Colors](https://realtimecolors.com/)** - Preview Color Palettes
|
||||
* ⭐ **[Color & Contrast](https://colorandcontrast.com/)** - Color / Contrast Guide
|
||||
* [ColorsAndFonts](https://www.colorsandfonts.com/) - Quickly Copy Colors & Typography Combinations
|
||||
* [Colors & Fonts](https://www.colorsandfonts.com/) - Quickly Copy Colors
|
||||
* [Paletton](https://paletton.com/) - Color Scheme Designer
|
||||
* [Palettte](https://palettte.app/) - Color Palette Editor
|
||||
* [Colouris](https://colouris.surge.sh/) - Color Model Conversions
|
||||
|
@ -873,12 +842,12 @@
|
|||
* [Contentdrips](https://contentdrips.com/) or [CreatorKit](https://creatorkit.com/) - Brand Design Tools
|
||||
* [SuperNova](https://www.supernova.io/) - Design System Manager
|
||||
* [Interplay](https://interplayapp.com/) - Product Design Tool
|
||||
* [CollectUI](https://collectui.com/), [Hoverstat](https://www.hoverstat.es/), [httpster](https://httpster.net/), [Wave Guide](https://www.waveguide.io/), [Godly Website](https://godly.website/), [ReallyGoodUX](https://goodux.appcues.com/) or [Pageflows](https://pageflows.com/) - UI Design Ideas
|
||||
* [CollectUI](https://collectui.com/), [Hoverstat](https://www.hoverstat.es/), [httpster](https://httpster.net/), [Wave Guide](https://www.waveguide.io/), [Godly Website](https://godly.website/), [ReallyGoodUX](https://goodux.appcues.com/) or [Pageflows](https://pageflows.com/) - UI / Site Design Ideas
|
||||
* [StoryBook](https://storybook.js.org/), [Akira](https://github.com/akiraux/Akira) or [Mockend](https://mockend.com/) - UI Development Tools
|
||||
* [UI Design Daily](https://www.uidesigndaily.com/) or [UIVerse](https://uiverse.io/) - Free UI Design Resources
|
||||
* [Open UI](https://open-ui.org/) - Open Standard UI
|
||||
* [Same.dev](https://same.dev/) - Copy Sites User-Interface Code
|
||||
* [CodeMyUI](https://codemyui.com/) or [Semantic UI](https://semantic-ui.com/) - User Interface Code Snippets
|
||||
* [Bunny Fonts](https://fonts.bunny.net/) - Open-Source Google Fonts Alternative
|
||||
* [Icon Shelf](https://icon-shelf.github.io/) - Icon Manager
|
||||
* [Favicon Maker](https://formito.com/tools/favicon) or [Favicon Generator](https://www.favicon-generator.org/) - Create Favicons
|
||||
* [Icon Horse](https://icon.horse/), [favicon-hash](https://favicon-hash.kmsec.uk/) or [Favicone](https://favicone.com/) - Download a Sites Favicon / [Note](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#site-favicon-dl)
|
||||
|
@ -905,7 +874,6 @@
|
|||
* [Visiwig](https://www.visiwig.com/) - Copy / Paste Site Graphics
|
||||
* [WebDesigner](https://webdesigner.withgoogle.com/), [T3](https://github.com/tooll3/t3), [Theatre.js](https://www.theatrejs.com/) / [GitHub](https://github.com/theatre-js/theatre), [GSAP](https://gsap.com/), [Stylie](https://jeremyckahn.github.io/stylie/), [RenderForest](https://www.renderforest.com), [Mantra](https://jeremyckahn.github.io/mantra/) or [Lottielab](https://www.lottielab.com/) - Create Motion Graphics
|
||||
* [useAnimations](https://useanimations.com/index.html) or [LordIcon](https://lordicon.com/) - Animated Icons
|
||||
* [Cursor Effects](https://tholman.com/cursor-effects/) - 90s Style Cursors
|
||||
* [NakerApp](https://app.naker.io/back/) - Interactive Background Maker
|
||||
* [Error404](https://error404.fun/) - Free 404 Pages
|
||||
* [HTTP Cats](https://http.cat/) - Put Cat Pictures in Your Status Codes
|
||||
|
@ -1000,14 +968,14 @@
|
|||
## ▷ 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/), [Mossaik](https://mossaik.app/) or [SVG Viewer](https://www.svgviewer.dev/) - SVG Editors / Viewers
|
||||
* [Method](https://editor.method.ac/), [SVG.wtf](https://svg.wtf/), [Boxy SVG](https://boxy-svg.com/), [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/)
|
||||
* [SVG Tutorial](https://svg-tutorial.com/) - Learn How to Code SVG Images
|
||||
* [SVGX](https://svgx.app/) - SVG Assets Manager
|
||||
* [Vector Express](https://vector.express/) or [Vector Magic](https://vectormagic.com/) - Vector Converters
|
||||
* [svgco](https://svgco.de/) - Image to SVG Converter
|
||||
* [svgco](https://svgco.de/) or [IMG to SVG](https://img-to-svg.com/) - Image to SVG Converter
|
||||
* [SVG2JSX](https://svg2jsx.com/) - SVG to JSX Converter
|
||||
* [Pattern Monster](https://pattern.monster/) - SVG Pattern Generator
|
||||
* [Blobs](https://lokesh-coder.github.io/blobs.app/) - SVG Shape Generator
|
||||
|
@ -1058,7 +1026,7 @@
|
|||
* [ThreatMap](https://threatmap.checkpoint.com/) or [CyberMap](https://cybermap.kaspersky.com/) - Live Malware Distribution Maps
|
||||
* [The Void](https://www.thevoid.community/) - Software Incident Reports
|
||||
* [Rawsec's CyberSecurity Inventory](https://inventory.raw.pm/) - Cybersecurity Resources
|
||||
* [CybersecResources](https://github.com/bst04/cybersources) - Cybersecurity Resources
|
||||
* [CybersecResources](https://www.cybersources.site/) - Cybersecurity Resources / [GitHub](https://github.com/bst04/cybersources)
|
||||
* [Awesome List](https://github.com/0xor0ne/awesome-list) - Cybersecurity Resources
|
||||
* [Cybersecurity-Resources](https://github.com/Nickyie/Cybersecurity-Resources) - Cybersecurity Resources
|
||||
* [Infosec Resources](https://github.com/stong/infosec-resources) - Cybersecurity Resources
|
||||
|
|
|
@ -92,7 +92,7 @@
|
|||
* [Linktury](https://www.ddlspot.com/)
|
||||
* [MediafireTrend](https://mediafiretrend.com/) - Mediafire Search
|
||||
* [WarezOmen](https://warezomen.com/) - Indexer / Search Engine
|
||||
* [SunXDCC](https://sunxdcc.com/) or [XDCC.EU](https://www.xdcc.eu/) - XDCC / Search Engine
|
||||
* [SkullXDCC](https://skullxdcc.com/) / [2](https://sunxdcc.com/) or [XDCC.EU](https://www.xdcc.eu/) - XDCC / Search Engine
|
||||
* [Find Rare Files Online](https://forums.lostmediawiki.com/thread/10861/find-rare-files-online) - How-to Find Rare Files
|
||||
|
||||
***
|
||||
|
@ -128,19 +128,19 @@
|
|||
* ⭐ **[CRACKSurl](https://cracksurl.com/)** / [Telegram](https://t.me/cracksurldotcom)
|
||||
* ⭐ **[LRepacks](https://lrepacks.net/)**
|
||||
* ⭐ **[Mobilism](https://forum.mobilism.org/)** - [Mobile App](https://forum.mobilism.org/app/)
|
||||
* ⭐ **[soft98](https://soft98.ir/)** - Use [Translator](https://addons.mozilla.org/en-US/firefox/addon/traduzir-paginas-web/) / [Anti-Adblock Fix](https://github.com/uBlockOrigin/uAssets/issues/14480#issuecomment-1907310059)
|
||||
* ⭐ **[soft98](https://soft98.ir/)** - Use [Translator](https://addons.mozilla.org/en-US/firefox/addon/traduzir-paginas-web/) / [Anti-Adblock Fix](https://github.com/AdguardTeam/AdGuardExtra)
|
||||
* ⭐ **[Nsane Forums](https://www.nsaneforums.com/)** - Signup Required
|
||||
* ⭐ **[Software CSE](https://cse.google.com/cse?cx=ae17d0c72fa6cbcd4)** - Multi-Site Software Search
|
||||
* ⭐ **[AlternativeTo](https://alternativeto.net/)** or [European Alternatives](https://european-alternatives.eu/) - Crowdsourced Recommendations
|
||||
* [AIOWares](https://www.aiowares.com/)
|
||||
* [DownloadHa](https://www.downloadha.com/) - Use [translator](https://addons.mozilla.org/en-US/firefox/addon/traduzir-paginas-web/)
|
||||
* [DownloadHa](https://www.downloadha.com/) - Use [Translator](https://addons.mozilla.org/en-US/firefox/addon/traduzir-paginas-web/)
|
||||
* [Heidoc](https://www.heidoc.net/joomla/)
|
||||
* [Softlay](https://www.softlay.com/downloads/)
|
||||
* [RetroSystemRevival](https://retrosystemsrevival.blogspot.com/)
|
||||
* [Libreware](https://t.me/Libreware) or [Xetrin RePacks](https://t.me/repacks_by_xetrin) - Telegram Channels
|
||||
* [Rarewares](https://www.rarewares.org/) - Rare Software
|
||||
* [Software Heritage](https://www.softwareheritage.org/) - Software Source Code Archive
|
||||
* [GenP](https://www.reddit.com/r/GenP/wiki/index), [2](https://genpguides.github.io/) - Adobe Software Patcher / [Guide](https://youtu.be/TM6q1F45boQ) / [Discord](https://discord.gg/BVBh2XVn9s)
|
||||
* [GenP](https://www.reddit.com/r/GenP/wiki/index) - Adobe Software Patcher / [Discord](https://discord.gg/BVBh2XVn9s)
|
||||
* [ZXPInstaller](https://zxpinstaller.com/) - Adobe Extension Installer
|
||||
|
||||
***
|
||||
|
@ -238,7 +238,7 @@
|
|||
* [GingaDaddy](https://www.gingadaddy.com/)
|
||||
* [NZBFinder](https://nzbfinder.ws/)
|
||||
* [NZBKing](https://nzbking.com/)
|
||||
* [g4u](https://g4u.to/) - Download Games via Usenet / pw: 404
|
||||
* [g4u](https://g4u.to/) - Download Games via Usenet / PW: `404`
|
||||
* [OldUSe](https://article.olduse.net/) - Search Usenet Articles
|
||||
* [althub](https://althub.co.za) - Unlimited Free Trials
|
||||
* [Spotweb](https://github.com/spotweb/spotweb) - Spotnet Client
|
||||
|
@ -270,6 +270,7 @@
|
|||
# ► Leeches / Debrid
|
||||
|
||||
* 🌐 **[LeechListing](https://www.leechlisting.com/)** or [Free Premium Leech Wiki](https://filehostlist.miraheze.org/wiki/Free_Premium_Leeches) - Leech Lists
|
||||
* 🌐 **[Debrid Services Comparison](https://debrid-services-comparison.netlify.app/)** / [GitHub](https://github.com/fynks/debrid-services-comparison)
|
||||
* ⭐ **[Real-Debrid](https://real-debrid.com/)** - Paid Debrid Service / [Android Client](https://github.com/LivingWithHippos/unchained-android) / [Torrent Client](https://github.com/rogerfar/rdt-client) / [DDL Client](https://github.com/ItsYeBoi20/TorrentDownloaderRD)
|
||||
* ⭐ **[HDEncode](https://hdencode.org/)**, [DDLBase](https://ddlbase.com/) / [.net](https://ddlbase.net/) or [rlsDB](https://rlsdb.com/) - Movie & TV DDL Forums / Requires Debrid
|
||||
* [Multi-OCH Helper](https://greasyfork.org/en/scripts/13884-multi-och-helper) - Quickly Send DDL Links to Premiumize & NoPremium
|
||||
|
|
|
@ -53,7 +53,6 @@
|
|||
* [DigitalGarage](https://grow.google/intl/uk/courses-and-tools/) - Google Courses
|
||||
* [Hillsdale College](https://online.hillsdale.edu/) - Courses
|
||||
* [OpenHPI](https://open.hpi.de/) - Courses
|
||||
* [TutsPlus](https://tutsplus.com/) - Courses
|
||||
* [OLI](https://oli.cmu.edu/independent-learner-courses/) - Courses
|
||||
* [LearnOutLoud](https://www.learnoutloud.com/) - Documentaries / Courses
|
||||
* [Video Lectures](https://videolectures.net/) - Lectures
|
||||
|
@ -199,6 +198,7 @@
|
|||
* [ChinesePosters](https://chineseposters.net/) - Chinese Propaganda Poster History
|
||||
* [Historical Fashion](https://docs.google.com/document/d/1R8eulTsb9Zlc7h2H917dNJZS9s0rIq9OAu7LpSS9F2k/) - Historical Fashion History
|
||||
* [PessimistsArchive](https://pessimistsarchive.org/) - Historical Technological Pessimism Archive
|
||||
* [Time Portal](https://www.eggnog.ai/entertimeportal) - History Clip Guessing
|
||||
|
||||
***
|
||||
|
||||
|
@ -228,8 +228,9 @@
|
|||
* 🌐 **[Music Education Masterlist](https://rentry.co/FMHYBase64#music-education-masterlist)**
|
||||
* 🌐 **[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/storage#wiki_music_sheet_collections)**
|
||||
* ↪️ **[Sheet Music / Notation](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/audio#wiki_.25B7_sheet_music_.2F_notation)**
|
||||
* ⭐ **[Muted](https://muted.io/)**, **[Open Music Theory](https://viva.pressbooks.pub/openmusictheory/)** / [2](https://openmusictheory.github.io/), [Chromatone](https://chromatone.center/), [Teoria](https://www.teoria.com/index.php), [SimplifyingTheory](https://www.simplifyingtheory.com/), [LightNote](https://www.lightnote.co/) or [Music Theory](https://www.musictheory.net/) - Music Theory
|
||||
* [AudioZ](https://audioz.download/tutorials/) - Audio Courses / [Forum](https://audiosex.pro/)
|
||||
* [Helio](https://helio.fm/) or [NoteHeads](https://noteheads.net/) - Music Composition Tools
|
||||
* [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
|
||||
|
@ -243,7 +244,7 @@
|
|||
* [Piano Trainer](https://zaneh.itch.io/piano-trainer), [Chord Nebula](https://chords.yottanami.com/), [sightread](https://sightread.dev/) or [PianoCheetah](https://pianocheetah.app) - Piano Practice
|
||||
* [Keyboard Connect](https://keyboardconnect.com/) - Keyboard Tutoring App
|
||||
* [TrueToneGuitar](https://www.truetoneguitar.co.uk/tools/guitar-practice-routine-generator), [Songsterr](https://www.songsterr.com/) / [Premium](https://rentry.co/FMHYBase64#songsterr), [FAChords](https://www.fachords.com/) or [ChordBook](https://chordbook.com/) - Guitar Tools
|
||||
* [FretFlip](https://fretflip.com/guitar-scales), [Oolimo](https://www.oolimo.com/en/index.php), [StringScales](https://stringscales.com/), [My Fretboard Trainer](https://myfretboardtrainer.com/home/) or [GuitarScale](https://www.guitarscale.org/) - Learn Guitar Scales / Chords
|
||||
* [FretFlip](https://fretflip.com/guitar-scales), [Oolimo](https://www.oolimo.com/en/index.php), [StringScales](https://stringscales.com/), [My Fretboard Trainer](https://myfretboardtrainer.com/home/) or [GuitarScale](https://www.guitarscale.org/) - Learn Guitar Scales / Chords
|
||||
* [JamStart](https://jamstart.app/) - Spotify Chord Charts
|
||||
* [#fretflip](https://fretflip.com/) - Create / Print Guitar Scales & Chord Charts
|
||||
* [JustinGuitar](https://www.justinguitar.com/) or [Guitarsix](https://guitarsix.com/) - Guitar Lessons
|
||||
|
@ -273,6 +274,7 @@
|
|||
* ⭐ **[Proko](https://www.youtube.com/user/ProkoTV/videos)** - Humanoid Figure Drawing Lesson
|
||||
* ⭐ **[PaintingTube](https://painting.tube)**, [MarcoBucci](https://www.youtube.com/@marcobucci), [Alphonso Dunn](https://www.youtube.com/c/ALPHONSODUNN/videos?view=0&sort=p&flow=grid), [Feng Zhu FZD](https://www.youtube.com/user/FZDSCHOOL/videos), [Art Fundamentals](https://www.youtube.com/playlist?list=PLVgLT-e3jXPDgeED0pD0BPq8kY1VAZAGa) or [Circle Line Art](https://www.youtube.com/user/circlelinemedia/videos) - Art Video Tutorials
|
||||
* [online-courses](https://online-courses.club/) - Art / Design Courses
|
||||
* [TutsPlus](https://tutsplus.com/) - Creative Courses
|
||||
* [Curriculum for the Solo Artists](https://alexhuneycutt.gumroad.com/l/free_curriculum) - Self-Taught Artist Curriculum / [PDF Version](https://mega.nz/file/sU0AxThb#m96_xISlS-5wtpSrauWFdh8mjhed7EitknQn_XIBaQc) / [Gallery Version](https://i.redd.it/7ns7su264gp31.png), [2](https://imgur.com/a/EZPc28m)
|
||||
* [DoArtDaily](https://dad.gallery) - Daily Art Challenges
|
||||
* [Character Design References](https://characterdesignreferences.com/visual-library) - Character Design Visual Library
|
||||
|
@ -305,7 +307,7 @@
|
|||
|
||||
***
|
||||
|
||||
## ▷ Geography / Datasets
|
||||
## ▷ Geography / Sociology
|
||||
|
||||
* 🌐 **[Awesome Datasets](https://github.com/awesomedata/awesome-public-datasets)** - Public Datasets
|
||||
* 🌐 **[Country Infographics](https://rentry.org/o4gq6cq5)** - Country Infographic Images
|
||||
|
@ -315,7 +317,7 @@
|
|||
* ⭐ **[The Atlas of Economic Complexity](https://atlas.cid.harvard.edu/)** - Global Economic Growth Data
|
||||
* ⭐ **[Soar](https://soar.earth/)** - Digital Atlas
|
||||
* [Maps.com](https://www.maps.com/) - Interesting / Educational Maps
|
||||
* [LizardPoint](https://lizardpoint.com/) or [Teuteuf](https://teuteuf.fr/) - Geography Games / Quizzes
|
||||
* [LizardPoint](https://lizardpoint.com/), [Learn World Map](https://map.koljapluemer.com/), [Seterra](https://www.seterra.com/#quizzes) or [Teuteuf](https://teuteuf.fr/) - Geography Guessing / Quizzes
|
||||
* [AntipodesMap](https://www.antipodesmap.com/) - Find Antipodes
|
||||
* [The True Size](https://thetruesize.com/) or [True Size of Countries](https://truesizeofcountries.com/) - Compare Country Size
|
||||
* [NationsEncyclopedia](https://www.nationsencyclopedia.com/) - Location / Population Data
|
||||
|
@ -369,6 +371,7 @@
|
|||
* [Chessercise](https://www.chessercise.xyz/) - Chess Game / Move Analysis
|
||||
* [Game Report](https://chess.wintrcat.uk/) - Chess Game / Move Analysis
|
||||
* [Decode Chess](https://app.decodechess.com/) - Chess Game / Move Analysis
|
||||
* [FreeChess](https://freechess.web.app/) - Chess Game / Move Analysis
|
||||
* [YottaChess](https://www.yottachess.com/) - Chess Game / Move Analysis
|
||||
* [En Croissant](https://encroissant.org/) - Chess Game / Move Analysis
|
||||
* [Chess Vision](https://chessvision.ai/) - Chess Game / Move Analysis
|
||||
|
@ -421,7 +424,7 @@
|
|||
* ↪️ **[Math and Physics Books](https://rentry.co/FMHYBase64#math-and-physics-books)**
|
||||
* ⭐ **[phys](https://phys.org/)** - Latest / News / Article / Physics
|
||||
* ⭐ **[The Feynman Lectures](https://www.feynmanlectures.caltech.edu/)** - Physics Lectures
|
||||
* ⭐ **[Bartosz Ciechanowski](https://ciechanow.ski/)**, [Isaac Physics](https://isaacphysics.org/) [PhysicsClassroom](https://www.physicsclassroom.com/), [HyperPhysics](http://hyperphysics.phy-astr.gsu.edu/hbase/), [MotionMountain](https://www.motionmountain.net/index.html) or [Splung](https://www.splung.com/) - Physics Lessons / Learning
|
||||
* ⭐ **[Bartosz Ciechanowski](https://ciechanow.ski/)**, [Isaac Physics](https://isaacphysics.org/), [PhysicsClassroom](https://www.physicsclassroom.com/), [HyperPhysics](http://hyperphysics.phy-astr.gsu.edu/hbase/), [MotionMountain](https://www.motionmountain.net/index.html) or [Splung](https://www.splung.com/) - Physics Lessons / Learning
|
||||
* ⭐ **[Physics Simulations](https://www.csun.edu/science/software/simulations/physics.html)**, [Mujoco](https://github.com/google-deepmind/mujoco), [Physics Animations](https://www.animations.physics.unsw.edu.au/), [oPhysics](https://ophysics.com/index.html) or [MyPhysicsLab](https://www.myphysicslab.com/index-en.html) - Physics Simulations / Animations
|
||||
* [TIB AV-Portal](https://av.tib.eu/) - Science Videos
|
||||
* [PhysicsTravelGuide](https://physicstravelguide.com/) - Physics Explanations
|
||||
|
@ -481,7 +484,7 @@
|
|||
* [Earth and Moon Viewer](https://www.fourmilab.ch/cgi-bin/Earth) - Earth / Moon Latitude and Longitude Viewer
|
||||
* [SDO Dashboard](https://sdo.gsfc.nasa.gov/data/dashboard/) - Live Sun Feed
|
||||
* [CelesTrack](https://celestrak.org/) - Earth Orbit Visualization
|
||||
* [TheSkyLive](https://theskylive.com/) - Solar System Simulators / Information
|
||||
* [TheSkyLive](https://theskylive.com/) or [Atlas of Space](https://atlasof.space/) - Solar System Simulators / Information
|
||||
* [1 Pixel moon](https://www.joshworth.com/dev/pixelspace/pixelspace_solarsystem.html), [LightYear](https://www.lightyear.fm/) or [OMG SPACE](https://omgspace.net/) - Solar System Scale Model
|
||||
* [Marspedia](https://marspedia.org/) - Mars Wiki
|
||||
* [ExoplanetExplore](https://exoplanetexplore.vercel.app) - Interactive Exoplanet Visualization
|
||||
|
@ -532,7 +535,7 @@
|
|||
* [CalculusMadeEasy](https://calculusmadeeasy.org) - Learn Calculus
|
||||
* [CLP](https://personal.math.ubc.ca/~CLP/) - Calculus Textbooks
|
||||
* [Mathematics Roadmap](https://github.com/TalalAlrawajfeh/mathematics-roadmap) - Mathematics Book Recommendations
|
||||
* [Converter Pro](https://f-droid.org/packages/com.ferrarid.converterpro/), [OneConverter](https://oneconverter.com/) or [ConvertAll](https://convertall.bellz.org/) - Unit Converters
|
||||
* [Converter Pro](https://f-droid.org/packages/com.ferrarid.converterpro/), [Rink](https://rinkcalc.app/), [Frink](https://frinklang.org/fsp/frink.fsp), [OneConverter](https://oneconverter.com/) or [ConvertAll](https://convertall.bellz.org/) - Unit Converters / Calculators
|
||||
* [MathJax](https://www.mathjax.org/) - JavaScript Math Display
|
||||
* [ISciDAVis](https://sourceforge.net/projects/scidavis/) - Scientific Data Plotter
|
||||
* [Approach0](https://approach0.xyz/search/) - Math Formula Search
|
||||
|
@ -570,7 +573,7 @@
|
|||
* [Formulia](https://play.google.com/store/apps/details?id=m4.enginary) - Engineering Formulas / Tools
|
||||
* [MatWeb](https://www.matweb.com/) - Materials Info Databse
|
||||
* [Sanfoundry](https://www.sanfoundry.com/) - Engineering Questions & Answers
|
||||
* [Lavteam](https://lavteam.org/) or [CESDB](https://www.cesdb.com/) - Engineering Software
|
||||
* [Lavteam](https://lavteam.org/) or [CESDB](https://www.cesdb.com/) - Engineering Software
|
||||
* [How a Car Works](https://www.howacarworks.com/) - Car Mechanics / Automotive Engineering Guides
|
||||
* [Robot Shop](https://community.robotshop.com/) - Robotics Forum
|
||||
* [VisRo Robotics](https://vis-ro.web.app) - Robotics Learning / [Discord](https://discord.com/invite/TfwZ3hH2D2)
|
||||
|
@ -578,10 +581,11 @@
|
|||
* [Diode](https://www.withdiode.com/) - 3D Hardware Simulator
|
||||
* [Wokwi](https://wokwi.com/) - Arduino / ESP32 Board Simulators
|
||||
* [HDLBits](https://hdlbits.01xz.net/) - Learn Circuit Design
|
||||
* [EasyEDA](https://easyeda.com/editor) or [LibrePCB](https://librepcb.org/) - Electronic Circuit Design Tools
|
||||
* [Circuit Steps](https://circuitsteps.com/) - Circuit Analysis Tool
|
||||
* [BatteryUniversity](https://batteryuniversity.com/articles) - Learn About Batteries
|
||||
* [Electronics Tutorials](https://www.electronics-tutorials.ws/) or [Instrumentacion](http://instrumentacion.qi.fcen.uba.ar/libro.html) - Electronic Guides
|
||||
* [KiCad](https://kicad.github.io/) - Schematics Editor / PCB Creator / SPICE Integration
|
||||
* [EasyEDA](https://easyeda.com/editor) or [LibrePCB](https://librepcb.org/) - Electronic Circuit Design Tools
|
||||
* [/m/engineering](https://www.reddit.com/user/nbatman/m/engineering/) - Engineering Multireddit
|
||||
|
||||
***
|
||||
|
@ -621,7 +625,8 @@
|
|||
|
||||
## ▷ Biology
|
||||
|
||||
* ⭐ **[Wikispecies](https://species.wikimedia.org/)**, [A-Z Animal](https://a-z-animals.com/) or [The Catalogue of Life](https://www.catalogueoflife.org/) - Species Databases
|
||||
* ⭐ **[Wikispecies](https://species.wikimedia.org/)** or [The Catalogue of Life](https://www.catalogueoflife.org/) - Species Databases
|
||||
* ⭐ **[Animalia](https://animalia.bio/)** or [A-Z Animal](https://a-z-animals.com/) - Animal Encyclopedia
|
||||
* ⭐ **[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](https://github.com/ossu/bioinformatics)** - Bioinformatics Roadmap / [Discord](https://discord.gg/wuytwK5s9h)
|
||||
|
@ -714,7 +719,7 @@
|
|||
* 🌐 **[LexiLogos](https://www.lexilogos.com/english/index.htm)** - Multi-Language Dictionary Index
|
||||
* ↪️ **[Translation Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/text-tools#wiki_.25B7_translators)**
|
||||
* ⭐ **[Language Transfer](https://www.languagetransfer.org/)** - Language Learning Lectures
|
||||
* ⭐ **[Language Reactor](https://www.languagereactor.com/)**, [LLPlayer](https://github.com/umlx5h/LLPlayer), [Trancy](https://www.trancy.org/) or [Easysubs](https://easysubs.cc/) - Learn Languages via Videos
|
||||
* ⭐ **[Language Reactor](https://www.languagereactor.com/)**, [LLPlayer](https://github.com/umlx5h/LLPlayer), [Trancy](https://www.trancy.org/) or [Easysubs](https://easysubs.cc/) - Learn Languages via Videos
|
||||
* ⭐ **[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
|
||||
* [Language Learners](https://forum.language-learners.org/) - Language Learning Forum / Community
|
||||
|
@ -736,7 +741,7 @@
|
|||
* [MORT](https://github.com/killkimno/MORT) or [Textractor](https://github.com/Artikash/Textractor) - Learn Languages via Games
|
||||
* [Language Roadmap](https://languageroadmap.com/) - Foreign Language Media Difficulty Guide
|
||||
* [Hey! Lingo](https://www.okydoky.app/) or [LearnWithOliver](https://www.learnwitholiver.com/) - Language Learning Flashcards
|
||||
* [MyLanguages](https://mylanguages.org/) or [50Languages](https://www.50languages.com/) - Grammar / Vocabulary Language Learning
|
||||
* [MyLanguages](https://mylanguages.org/), [My Little Word Land](https://mylittlewordland.com/) or [50Languages](https://www.50languages.com/) - Grammar / Vocabulary Language Learning
|
||||
* [Vocatra](https://esite.ch/vocatra/) or [QuizFlow](https://apt.izzysoft.de/fdroid/index/apk/jdm.apps.quizflow/) - Vocabulary Trainers
|
||||
* [Verbix](https://www.verbix.com/) - Verb Conjugator
|
||||
* [ListLang](https://www.listlang.com/) - Most Used Words in Any Language
|
||||
|
@ -769,7 +774,7 @@
|
|||
* [Spellcheck](https://spellcheck.xyz) - English Spelling Game
|
||||
* [Learn English Online](https://www.learn-english-online.org/), [ESLFast](https://www.eslfast.com/), [AntiMoon](https://www.antimoon.com/), [Oxford Online](https://www.oxfordonlineenglish.com/free-english-lessons) or [Cambridge Online](https://www.cambridgeenglish.org/learning-english/) - English Lessons
|
||||
* [EnglishCentral](https://www.englishcentral.com/), [EngVid](https://www.engvid.com/) or [Voscreen](https://voscreen.com/) - English Video Lessons
|
||||
* [Frenglish](https://frenglish.ru/) - English Learning Books
|
||||
* [Frenglish](https://frenglish.ru/) or [English E-Reader](https://english-e-reader.net/) - English Learning Books
|
||||
* [elllo](https://www.elllo.org/) or [Listening Lab](https://www.esl-lab.com/) - English Listening Lessons / Practice
|
||||
* [TalkEnglish](https://www.talkenglish.com/) or [Stimuler IELTS Speaking Buddy](https://play.google.com/store/apps/details?id=com.stimuler) - Improve Spoken English
|
||||
* [WriteAndImprove](https://writeandimprove.com/) - Improve English Writing
|
||||
|
@ -785,29 +790,23 @@
|
|||
|
||||
## ▷ Japanese
|
||||
|
||||
* 🌐 **[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
|
||||
* 🌐 **[yame dame](https://yameda.me/)**, [GaijinRyman](https://github.com/GaijinRyman/LearningJapaneseResources), [Nihongo](https://nihongo-e-na.com/eng/), [Japanese Resources](https://forum.wordreference.com/threads/japanese-resources-%E2%80%94-constantly-updated.787986/) or [AnimeCards](https://animecards.site/) - Learning Resources
|
||||
* 🌐 **[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
|
||||
* ↪️ **[Japanese Learning Sites](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_japanese_learning_sites)** / [YouTube Channels](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_youtube_channels)
|
||||
* ↪️ **[Dictionaries / Translation](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_dictionaries_.2F_translation)**
|
||||
* ↪️ **[Kanji Learning Resources](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_kanji_learning)**
|
||||
* ⭐ **[Animelon](https://animelon.com/)**, [JapaneseWithAnime](https://www.japanesewithanime.com/) or [Immersion Kit](https://www.immersionkit.com/) - Learn Japanese via Anime / Manga
|
||||
* [Nihongo con Teppei](https://nihongoconteppei.com/) - Japanese Beginners Podcast
|
||||
* [JapaneseTab](https://github.com/Anupya/JapaneseTab) - Japanese Learning Extension
|
||||
* [Minato](https://minato-jf.jp/) - Japanese Courses
|
||||
* [Memento](https://ripose-jp.github.io/Memento/) - Japanese Learning Video Player
|
||||
* [Supernative](https://supernative.tv/) or [LearnNatively](https://learnnatively.com/) - Learn Japanese via Media
|
||||
* [jidoujisho](https://github.com/arianneorpilla/jidoujisho) or [Manabi](https://reader.manabi.io/) - Learn Japanese via Books
|
||||
* [Japanese Ammo with Misa](https://www.youtube.com/@JapaneseAmmowithMisa), [Comprehensible Japanese](https://www.youtube.com/@cijapanese) or [JapanesePod101](https://www.youtube.com/@JapanesePod101) - Japanese Learning YouTube Channels
|
||||
* [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
|
||||
* [Nihongo con Teppei](https://nihongoconteppei.com/) - Japanese Beginners Podcast
|
||||
* [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
|
||||
* [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
|
||||
* [Jlpt N3](https://dethitiengnhat.com/en/) or [JapaneseTest4You](https://japanesetest4you.com/) - Jlpt Exam Questions / [Grammar](https://jlptgrammarlist.neocities.org/)
|
||||
* [GetKanda](https://getkana.com/app/), [Nihonoari](https://github.com/aeri/Nihonoari-App) or [RealKana](https://realkana.com/) - Learn Kana
|
||||
* [WaniKani](https://www.wanikani.com/), [KanjiDamage](https://www.kanjidamage.com/) / [KanjiDamagePlus](https://kanjidamageplus.neocities.org/), [Kanji-Dojo](https://github.com/syt0r/Kanji-Dojo), [Koohii](https://kanji.koohii.com/) / [Deck](https://ankiweb.net/shared/info/748570187), or [Manji](https://github.com/Livinglist/Manji) - Learn / Practice Kanji
|
||||
* [KanjiTomo](https://kanjitomo.net/) - Kanji Character Identifier
|
||||
* [Nippon Colors](https://nipponcolors.com/) - Traditional Japanese Color Meanings
|
||||
|
||||
***
|
||||
|
||||
|
@ -856,6 +855,7 @@
|
|||
* ⭐ **[StudySpanish](https://studyspanish.com/)** or [LibreLingo](https://librelingo.app/) - Learn Spanish
|
||||
* [SpanishDict](https://www.spanishdict.com/) - Spanish Translation Dictionary
|
||||
* [SpanishChecker](https://spanishchecker.com/) - Spanish Grammar Check
|
||||
* [DreamingSpanish](https://www.dreamingspanish.com/) - Spanish Learning Videos
|
||||
* [The French Tutorial](http://www.frenchtutorial.com/) - French Learning Tutorials
|
||||
* [LCSpeakFrench](https://t.me/LCSpeakFrench) - Live French Lessons
|
||||
* [Uusi Kielemme](https://uusikielemme.fi/) - Finnish Learning
|
||||
|
@ -909,7 +909,7 @@
|
|||
* 🌐 **[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)**, [/r/LearnProgramming Wiki](https://www.reddit.com/r/learnprogramming/wiki/faq#wiki_getting_started) or [A-to-Z-Resources-for-Students](https://github.com/dipakkr/A-to-Z-Resources-for-Students) - Programming Learning Resources
|
||||
* 🌐 **[ProgrammingLearningResources](https://rentry.co/ProgrammingLearningResources)**, [/r/LearnProgramming Wiki](https://www.reddit.com/r/learnprogramming/wiki/faq#wiki_getting_started), [Programming Learning Index](https://github.com/bobeff/programming-math-science) or [A-to-Z-Resources-for-Students](https://github.com/dipakkr/A-to-Z-Resources-for-Students) - Programming Learning Resources
|
||||
* 🌐 **[Python Discord](https://pythondiscord.com/resources/)**, [Python Programming Hub](https://github.com/Tanu-N-Prabhu/Python) or [Python Reference](https://github.com/rasbt/python_reference) - Python Learning Resources
|
||||
* 🌐 **[Path to Senior Engineer](https://github.com/jordan-cutler/path-to-senior-engineer-handbook)** or [Professional Programming](https://github.com/charlax/professional-programming) - Software Engineer Resources
|
||||
* ↪️ **[Programming Books](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/reading#wiki_.25B7_programming_books)** - Read / Download Programming Books
|
||||
|
@ -942,6 +942,7 @@
|
|||
* [CloudSkillsBoost](https://www.cloudskillsboost.google/paths) - Programming Courses
|
||||
* [Hyperskill](https://hyperskill.org/) - Programming Courses
|
||||
* [EggHead](https://egghead.io/) - Programming Courses
|
||||
* [InfiniteCourses](https://www.infinitecourses.org/) - Programming Courses
|
||||
* [TechSchool](https://techschool.dev/en) - Programming Courses / [Discord](https://discord.com/invite/C4abRX5skH)
|
||||
* [Refactoring.Guru](https://refactoring.guru/) - Interactive Code Refactoring Guide
|
||||
* [USACO Guide](https://usaco.guide/) - Competitive Programming Lessons
|
||||
|
@ -1054,7 +1055,6 @@
|
|||
* [DefensiveCSS](https://defensivecss.dev/) - CSS Tips
|
||||
* [LearnCSSGrid](https://learncssgrid.com/) or [GridByExample](https://gridbyexample.com/) - CSS Grid Guides
|
||||
* [ReactStudyKit](https://reactstudykit.com/) - React Study Tools / Flashcards
|
||||
* [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
|
||||
|
@ -1091,7 +1091,6 @@
|
|||
* [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
|
||||
* [OSDev Wiki](https://wiki.osdev.org/) - Operating System Dev Wiki
|
||||
* [OSTEP](https://pages.cs.wisc.edu/~remzi/OSTEP/) - Operating Systems Book
|
||||
* [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)
|
||||
|
@ -1249,7 +1248,7 @@
|
|||
* ⭐ **[Wolfram Alpha](https://www.wolframalpha.com/)** - Searchable Knowledge Base / [Mobile](https://rentry.co/FMHYBase64#wolfram-mobile)
|
||||
* ⭐ **[StudyLion](https://lionbot.org)** - Study Tracker / Productivity Discord Bot / [GitHub](https://github.com/StudyLions/StudyLion)
|
||||
* ⭐ **[StudyKit](https://studykit.app/)** [StuDoc](https://www.studocu.com/) / [Downloader](https://github.com/danieltyukov/studocuhack) / [2](https://dlstudocu.com/), [Gizmo](https://gizmo.ai/), [Knowt](https://knowt.com/), [Quizlet](https://quizlet.com/), [Shmoop](https://www.shmoop.com/) or [SparkNotes](https://www.sparknotes.com/) - Quizzes / Study Material / [Show Hidden](https://greasyfork.org/en/scripts/423872)
|
||||
* ⭐ **[Anki](https://apps.ankiweb.net/)** / [Discord](https://discord.gg/jUvBM2sEs4) / [Subreddit](https://www.reddit.com/r/Anki/) / [GitHub](https://github.com/ankidroid/Anki-Android), [StudyLib](https://www.studylib.net/), [RemNote](https://www.remnote.com/), [Flippity](https://www.flippity.net/), [Flashcard Machine](https://www.flashcardmachine.com/), [revisiondojo](https://www.revisiondojo.com/), [Flashka](https://www.flashka.ai/) or [NoteKnight](https://www.noteknight.com) - Flashcard Tools
|
||||
* ⭐ **[Anki](https://apps.ankiweb.net/)** / [Discord](https://discord.gg/jUvBM2sEs4) / [Subreddit](https://www.reddit.com/r/Anki/) / [GitHub](https://github.com/ankidroid/Anki-Android), [StudyLib](https://www.studylib.net/), [RemNote](https://www.remnote.com/), [Flippity](https://www.flippity.net/), [Flashcard Machine](https://www.flashcardmachine.com/), [MemoAnki](https://memoanki.com/), [revisiondojo](https://www.revisiondojo.com/), [Flashka](https://www.flashka.ai/) or [NoteKnight](https://www.noteknight.com) - Flashcard Tools
|
||||
* ⭐ **Anki Tools** - [Add-ons](https://ankiweb.net/shared/addons) / [Decks](https://ankiweb.net/shared/decks) / [Resources](https://github.com/tianshanghong/awesome-anki)
|
||||
* ⭐ **[Coursicle](https://www.coursicle.com/)** - Class Schedule Tracker / Android
|
||||
* ⭐ **[OpenSyllabus](https://opensyllabus.org/)** - Syllabus Search / Info
|
||||
|
@ -1274,13 +1273,12 @@
|
|||
* [Graded](https://nightdreamgames.com/#graded) - Grades Tracker / Android / [GitHub](https://github.com/NightDreamGames/Graded)
|
||||
* [GradesCalculator](https://calculatecgpa.com) - Calculate CGPA & GPA
|
||||
* [CalculateCGPA](https://cgpacalcs.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
|
||||
* [ForgetMeNot](https://github.com/tema6120/ForgetMeNot) - Flashcard Mobile App
|
||||
* [Get Unstuck](https://socratic.org/) or [Brainly](https://brainly.com/) / [Limit Bypass](https://greasyfork.org/en/scripts/430355) - Homework Help Bots / Communities
|
||||
* [Toppr](https://www.toppr.com/), [FreeOnlineTest](https://www.freeonlinetest.in/), [Alloprof](https://www.alloprof.qc.ca/en/) or [AE Old (Discord)](https://discord.gg/VCXGudY) - Test Practice & Homework Help
|
||||
* [DoubtNut](https://www.doubtnut.com/) - Exam / Solutions / Help / [Ad Bypass](https://redd.it/16da7s9)
|
||||
* [DoubtNut](https://www.doubtnut.com/) - Exam / Solutions / Help
|
||||
* [MammothMemory](https://mammothmemory.net/index.html) - Visual Memory-Based Solutions
|
||||
* [StudyStream](https://www.studystream.live/) or [StudyTogether](https://www.studytogether.com/) - Online Study Groups
|
||||
* [Space Finder](https://spacefinder.lib.cam.ac.uk/) - UK Study Space Search
|
||||
|
@ -1331,7 +1329,7 @@
|
|||
* ⭐ **[Omni Calculator](https://www.omnicalculator.com/)** - Calculators
|
||||
* ⭐ **[OpenCalc](https://github.com/Darkempire78/OpenCalc)**, [yetCalc](https://github.com/Yet-Zio/yetCalc), [microMathematics](https://github.com/mkulesh/microMathematics), [Calculator++](https://play.google.com/store/apps/details?id=org.solovyev.android.calculator), [Calc 991](https://play.google.com/store/apps/details?id=advanced.scientific.calculator.calc991.plus) or [Graph89](https://github.com/eanema/graph89) - Android Calculators
|
||||
* ⭐ **[Microsoft Math Solver](https://math.microsoft.com/)**, [SpeedCrunch](https://speedcrunch.org/) or [MathPapa](https://www.mathpapa.com/algebra-calculator.html) - Advanced Calculator
|
||||
* ⭐ **[SageCalc](https://sagecalc.com/)**, **[ti84calc.online](https://ti84calc.online/)**, [CEmu](https://github.com/CE-Programming/CEmu), [ti-84calculatoronline](https://ti-84calculatoronline.com), [TI 84 Calculator](https://ti84calculator.co/en-US), [TI-84 Plus](https://ti84.pages.dev/) or [ti84calc](https://ti84calc.com/) - TI-84 Calculators
|
||||
* ⭐ **[SageCalc](https://sagecalc.com/)**, **[ti84calc.online](https://ti84calc.online/)**, [CEmu](https://github.com/CE-Programming/CEmu), [ti-84calculatoronline](https://ti-84calculatoronline.com), [TI 84 Calculator](https://ti84calculator.co/en-US), [TI-84 Plus](https://ti84.pages.dev/) / [Shell](https://github.com/RoccoLoxPrograms/CEaShell) or [ti84calc](https://ti84calc.com/) - TI-84 Calculators
|
||||
* ⭐ **[GeoGebra](https://www.geogebra.org/)**, [Grapes](https://www.criced.tsukuba.ac.jp/grapes/) or [Desmos](https://www.desmos.com/) - Graphing Calculators
|
||||
* ⭐ **[Cymath](https://www.cymath.com/)**, [PhotoMath](https://rentry.co/FMHYBase64#photomath), [Mathway](https://www.mathway.com/), [MathDF](https://mathdf.com/), [Math Solver](https://mathsolver.microsoft.com/en), [Tiger Algebra](https://www.tiger-algebra.com/) or [Symbolab](https://www.symbolab.com/) - Math Problem Solvers
|
||||
* [Omnimaga](https://www.omnimaga.org/index.php) - Calculator Community / Forums
|
||||
|
@ -1384,12 +1382,12 @@
|
|||
## ▷ Dictionaries
|
||||
|
||||
* 🌐 **[Dictionary Index](https://onelook.com/?d=all_gen)** - List of Online Dictionaries
|
||||
* ⭐ **[The Piracy Glossary](https://rentry.org/The-Piracy-Glossary)** - Piracy Dictionary
|
||||
* ⭐ **[OneLook](https://onelook.com/)** - Multi Dictionary / Thesaurus Search
|
||||
* ⭐ **[Merriam-Webster](https://www.merriam-webster.com/)** - Dictionary / Thesaurus
|
||||
* ⭐ **[GoldenDict](https://xiaoyifang.github.io/goldendict-ng/)** / [2](https://sourceforge.net/projects/goldendict/) - Dictionary / [Files](https://rentry.co/FMHYBase64#goldendict-files)
|
||||
* ⭐ **[TheSage](https://www.sequencepublishing.com/)** - Dictionary / Thesaurus
|
||||
* ⭐ **[The Piracy Glossary](https://rentry.org/The-Piracy-Glossary)** - Piracy Dictionary
|
||||
* ⭐ **[UrbanDictionary](https://www.urbandictionary.com/)** / [Frontends](https://codeberg.org/zortazert/rural-dictionary/) or [Slangit](https://slang.net/) - Slang Word / Phrase Dictionaries
|
||||
* ⭐ **[OneLook](https://onelook.com/)** - Multi Dictionary Search
|
||||
* [NinjaWords](https://ninjawords.com/) - Dictionary
|
||||
* [Wordnik](https://www.wordnik.com/) - Dictionary
|
||||
* [Oxford English Dictionary](https://oed.com/) - Dictionary / [Bypass](https://rentry.co/freeoed)
|
||||
|
@ -1446,7 +1444,7 @@
|
|||
|
||||
* 🌐 **[Wiki Portals](https://rentry.co/wikiportals)** - Wiki Portals Navigation
|
||||
* [HatNote](https://top.hatnote.com/) - Top Pages
|
||||
* [HyperLeak](https://hyperleap.com/), [2](https://reversepedia.org/) - Page Connections
|
||||
* [Reversepedia](https://reversepedia.org/) - Page Connections
|
||||
* [Wiki Dark Mode](https://en.wikipedia.org/wiki/Wikipedia:Dark_mode) - Dark Mode
|
||||
* [wik](https://github.com/yashsinghcodes/wik) - Wiki TUI
|
||||
* [CDPedia](http://cdpedia.python.org.ar/index.en.es.html) - Offline View
|
||||
|
|
|
@ -34,7 +34,7 @@
|
|||
|
||||
* ⭐ **[JDownloader](https://jdownloader.org/jdownloader2)** - Download Manager / [Debloat](https://rentry.org/jdownloader2) / [Dark Theme](https://redd.it/q3xrgj), [2](https://github.com/moktavizen/material-darker-jdownloader/) / [Dracula Theme](https://draculatheme.com/jdownloader2) / [Apps](https://my.jdownloader.org/apps/)
|
||||
* ⭐ **[IDM](https://rentry.co/FMHYBase64#idm)** - Download Manager
|
||||
* ⭐ **[AB Download Manager](https://abdownloadmanager.com/)** - Download Manager / [GitHub](https://github.com/amir1376/ab-download-manager) / [Telegram](https://t.me/abdownloadmanager_discussion)
|
||||
* [AB Download Manager](https://abdownloadmanager.com/) - Download Manager / [GitHub](https://github.com/amir1376/ab-download-manager) / [Telegram](https://t.me/abdownloadmanager_discussion)
|
||||
* [Go Speed](https://gopeed.com/) - Download Manager / [Extension](https://github.com/GopeedLab/browser-extension) / [Plugins](https://github.com/search?q=topic%3Agopeed-extension&type=repositories) / [GitHub](https://github.com/GopeedLab/gopeed)
|
||||
* [imFile](https://imfile.io/) - Download Manager / Updated Motrix Fork / [GitHub](https://github.com/imfile-io/imfile-desktop)
|
||||
* [aria2](https://aria2.github.io/) or [Persepolis](https://persepolisdm.github.io/) - Terminal Download Manager / [GitHub](https://github.com/aria2/aria2) / [Download Bot](https://github.com/gaowanliang/DownloadBot) / [WebUI](https://github.com/ziahamza/webui-aria2), [2](https://ariang.mayswind.net/)
|
||||
|
@ -52,8 +52,7 @@
|
|||
## ▷ Archiving / Compression
|
||||
|
||||
* 🌐 **[SuperCompression](https://supercompression.org/)** - File Compression Resources
|
||||
* ⭐ **[NanaZip](https://github.com/M2Team/NanaZip)** - File Archiver
|
||||
* ⭐ **[7-Zip](https://www.7-zip.org/)** - File Archiver
|
||||
* ⭐ **[NanaZip](https://github.com/M2Team/NanaZip)** or **[7-Zip](https://www.7-zip.org/)** - File Archiver
|
||||
* ⭐ **[PeaZip](https://peazip.github.io/)** - Cross Platform File Archiver
|
||||
* ⭐ **[CompactGUI](https://github.com/IridiumIO/CompactGUI)** or [Compactor](https://github.com/Freaky/Compactor) - Transparent Compression
|
||||
* [Fileforums](https://fileforums.com/) or [Encode](https://encode.su/) - Data Compression Forums
|
||||
|
@ -294,11 +293,10 @@
|
|||
* ⭐ **[Gofile](https://gofile.io/)** - Unlimited / Unlimited / 10 Days after last download
|
||||
* ⭐ **[Pixeldrain](https://pixeldrain.com/)** - Unlimited / 20GB per file / 120 Days after last pageview / [Discord](https://discord.gg/TWKGvYAFvX) / [Speedtest](https://pixeldrain.com/speedtest) / [Limit Bypass](https://pixeldrain-bypass.cybar.xyz/) / [Bypass Script](https://greasyfork.org/en/scripts/491326)
|
||||
* ⭐ **[Files.vc](https://files.vc/)** - Unlimited / 10GB / Forever
|
||||
* ⭐ **[Buzzheavier](https://buzzheavier.com/)**, [2](https://fuckingfast.co/), [3](https://flashbang.sh/), [4](https://fuckingfast.net/), [5](https://trashbytes.net/), [6](https://bzzhr.co/) - Unlimited / 15 Days, Can Extend to Forever / [File Expiry](https://buzzheavier.com/help) / **[Use Adblocker](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#buzzheavier-warning)** / [Discord](https://discord.gg/ttQjgC28WP)
|
||||
* ⭐ **[Buzzheavier](https://buzzheavier.com/)**, [2](https://fuckingfast.co/), [3](https://fuckingfast.net/), [4](https://bzzhr.co/) - Unlimited / 15 Days, Can Extend to Forever / [File Expiry](https://buzzheavier.com/help) / **[Use Adblocker](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#buzzheavier-warning)** / [Discord](https://discord.gg/ttQjgC28WP)
|
||||
* ⭐ **[Catbox](https://catbox.moe/)** - Unlimited / 200MB / Forever
|
||||
* ⭐ **[Pillowcase](https://pillowcase.su/)** - Audio File Host / 200MB (500MB with Account) / Forever
|
||||
* [HIDAN](https://hidan.sh/) - Unlimited / 10+ Days (from upload)
|
||||
* [AnonDrop](https://anondrop.net/) - Unlimited / Remote Upload / Embed Support
|
||||
* [Send.now](https://send.now/) - 100GB / 100GB per file / 30 Days after last download
|
||||
* [DesiUpload](https://desiupload.co/) - Unlimited / 15 Days (15GB / 30 Days with Account)
|
||||
* [MixDrop](https://mixdrop.ag/) - Unlimited / 60 Days / Account Required
|
||||
|
@ -340,7 +338,7 @@
|
|||
* [JUMBOmail](https://www.jumbomail.me/) - 2GB / 7 Days / Email Required
|
||||
* [DropMB](https://dropmb.com/) - 512MB / 5 Years
|
||||
* [FireLoad](https://www.fireload.com/) - 2GB / 60 Days / Account Required
|
||||
* [FileGo](https://filego.app/) - / 30 Days / Account Required
|
||||
* [FileGo](https://filego.app/) - 2GB / 30 Days / Account Required
|
||||
* [Lufi](https://upload.disroot.org/) - 2GB / 30 Days
|
||||
* [FilesPayouts](https://filespayouts.com/) - 10GB / Forever / Account Required
|
||||
* [DooDrive](https://doodrive.com/) - 2GB / 30 Days / Account Required
|
||||
|
|
|
@ -173,6 +173,7 @@
|
|||
* ⭐ **[ModDB](https://moddb.com/)** - Game Mods
|
||||
* ⭐ **[Nexus Mods](https://www.nexusmods.com/)** - Game Mods / [Bulk Downloader](https://greasyfork.org/en/scripts/483337) / [Redirect Skip](https://greasyfork.org/en/scripts/394039) / [Download Hidden](https://rentry.org/downloadingdeletednexusmods) / [Discord](https://discord.com/invite/nexusmods)
|
||||
* ⭐ **[ModdingLinked](https://moddinglinked.com/)** - Bethesda Game Modding Guides / [Discord](https://discord.com/invite/S99Ary5eba)
|
||||
* [WeMod](https://www.wemod.com/) - Cheats / Trainer Manager / Single Player Only / [Unlocker](https://rentry.co/FMHYBase64#wemod-unlock) / [Discord](https://discord.com/invite/wemod)
|
||||
* [ModOrganizer](https://github.com/ModOrganizer2/modorganizer) - Mod Manager
|
||||
* [Otis_Inf Camera Mods](https://kemono.su/patreon/user/37343853) or [CinematicTools Archive](https://rentry.co/FMHYBase64#cinematictools-archive) - Game Camera Mods
|
||||
* [Mod.io](https://www.mod.io/) - Cross Platform Game Mods Support / [Discord](https://discord.com/invite/modio)
|
||||
|
@ -194,13 +195,16 @@
|
|||
|
||||
## ▷ Game Saves
|
||||
|
||||
|
||||
* ↪️ **[File Backup](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/file-tools/#wiki_.25B7_file_backup) / [Sync](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/file-tools/#wiki_.25B7_file_sync)**
|
||||
* ⭐ **[Ludusavi](https://github.com/mtkennerly/ludusavi)** or [GameSave Manager](https://www.gamesave-manager.com/) - Game Save Managers / Backup
|
||||
* [PCGamingWiki](https://www.pcgamingwiki.com/) - Save Locations Listed Under "Game Data"
|
||||
* [Save Game World](https://www.savegameworld.com/) - PC / PlayStation / Switch / Xbox / Wii
|
||||
* [SavegameDownload.com](https://www.savegamedownload.com/) - PC / PlayStation / Switch / Xbox / Android
|
||||
* [YourSaveGames](https://www.yoursavegames.com/) - PC / PSP
|
||||
* [SaveGame.Pro](https://savegame.pro/) - PC
|
||||
* [Saves For Games](https://savesforgames.com/) - PC
|
||||
* [GC Saves](https://gc-saves.com/) - Gamecube / [Discord](https://discord.gg/yb5DFx5)
|
||||
* [Save Editor Online](https://www.saveeditonline.com/) - Game Save Editor
|
||||
|
||||
***
|
||||
|
@ -235,7 +239,7 @@
|
|||
* ⭐ **[Aim400kg](https://aim400kg.com/)**, [3D Aim Trainer](https://www.3daimtrainer.com/), [Aimlabs](https://aimlabs.com/), [Aiming.Pro](https://aiming.pro/) or [AimTrainer](https://aimtrainer.io/) - Aim Training
|
||||
* ⭐ **[Speedrun](https://www.speedrun.com/)** - Speedrunning Streams, Leaderboards, Resources, etc.
|
||||
* [GameGuides](https://www.gamerguides.com/), [DotGG](https://dotgg.gg/), [Retro Guides](https://rentry.co/FMHYBase64#retro-game-strategy-guides), [Game8](https://game8.co/), [StrategyWiki](https://strategywiki.org/), [Samurai Gamers](https://samurai-gamers.com/), [UHS Hints](https://www.uhs-hints.com/) or [Kirklands](https://archive.org/details/kirklands-manual-labor-sony-playstation-2-usa-4k-version) - Game Guides
|
||||
* [Maxroll](https://maxroll.gg/) - Game Build Guides
|
||||
* [Maxroll](https://maxroll.gg/) - aRPG Build Guides
|
||||
* [Voltaic](https://voltaic.gg/) - Aim Benchmark & Guides
|
||||
* [Piper](https://github.com/libratbag/piper) - Gaming Mouse Config Tool
|
||||
* [LiveSplit](https://livesplit.org/) - Customizable Speedrun Timer
|
||||
|
@ -350,6 +354,7 @@
|
|||
* [Overwatch-Server-Selector](https://github.com/foryVERX/Overwatch-Server-Selector) - Overwatch Server Selector
|
||||
* [Northstar](https://thunderstore.io/c/northstar/), [2](https://northstar.tf/) - Titanfall 2 Server Hosting & Modding / [GitHub](https://github.com/R2Northstar/Northstar/releases) / [Guide](https://rentry.org/northstar-guide) / [Discord](https://discord.gg/CEszSguY3A)
|
||||
* [ET: Legacy](https://www.etlegacy.com/) - Wolfenstein Enemy Territory Servers / [Discord](https://discord.com/invite/UBAZFys)
|
||||
* [Arctic Combat](https://warfareterritory.net/) - Arctic Combat Server Revival / [Discord](https://discord.gg/JEPt8DFe)
|
||||
* [Factorio.zone](https://factorio.zone/) - Free Factorio Servers
|
||||
* [Clash of Magic](https://www.clashofmagic.io/) / [Discord](https://discord.gg/eSbkhDF) or [Atrasis](https://atrasisclash.net/) / [Discord](https://discord.gg/wmSjaTJ) - Clash of Clans Private Servers
|
||||
* [Rusticaland](https://rusticaland.net/) - Free Rust Servers / [Discord](https://discord.com/invite/MD9RgdYhpf)
|
||||
|
@ -388,9 +393,8 @@
|
|||
|
||||
## ▷ Switch Homebrew
|
||||
|
||||
* ↪️ **[Switch Homebrew Guides](https://rentry.co/FMHYBase64#switch-homebrew-guides)**
|
||||
* ⭐ **[Homebrew App Store](https://hb-app.store/)** - Switch / Wii U Homebrew App Store
|
||||
* [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
|
||||
* [FlagBrew](https://flagbrew.org/) - Switch Homebrew / [Discord](https://discord.com/invite/4Rv8DTzGFa)
|
||||
|
@ -479,9 +483,10 @@
|
|||
|
||||
# ► Minecraft Tools
|
||||
|
||||
* 🌐 **[MCDOC](https://openm.tech/)** - Minecraft Tools & Unlockers / [Discord](https://dc.openm.tech/)
|
||||
* 🌐 **[Awesome Minecraft](https://github.com/bs-community/awesome-minecraft)** - Minecraft Resources
|
||||
* ⭐ **[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) or [Image Cheatsheet](https://minecraft.wiki/images/Trading_and_Bartering_Guide_for_Minecraft_Java_Edition_1.17%2B.png)
|
||||
* ⭐ **[Villager Trading Cheatsheet](https://i.ibb.co/sKBjbzg/e9f8d80e2376.png) or [Image Cheatsheet](https://minecraft.wiki/images/Trading_and_Bartering_Guide_for_Minecraft_Java_Edition_1.17%2B.png)
|
||||
* ⭐ **[Minecraft Brewing Cheatsheet](https://minecraft.wiki/images/Minecraft_brewing_en.png)**
|
||||
* [MC Utils](https://mcutils.com/) - Minecraft Web Tools
|
||||
* [MCPEDL](https://mcpedl.com/) - Bedrock Resources
|
||||
|
@ -490,6 +495,7 @@
|
|||
* [SkyClient](https://skyclient.co/) - Hypixel Asset Installer / [Discord](https://discord.com/invite/QUGZgxb7CM) / [GitHub](https://github.com/SkyblockClient)
|
||||
* [SkyCrypt](https://sky.shiiyu.moe/) - SkyBlock Stats
|
||||
* [MC Icons](https://mcicons.ccleaf.com/) - Minecraft Icon Search
|
||||
* [Textcraft](https://textcraft.net/) - Minecraft Text & Logo Generator
|
||||
* [Pixelart Builder](https://play.google.com/store/apps/details?id=com.electricfoal.photocrafter&hl=en&gl=US) or [PixelStacker](https://taylorlove.info/pixelstacker/) - Turn Photos into Minecraft Art
|
||||
* [Block Palettes](https://www.blockpalettes.com/) or [Block Colors](https://blockcolors.app/) - Block Color Palettes
|
||||
* [The Minecraft Archive Project](https://map.crummy.com/) - Minecraft Archive
|
||||
|
@ -502,7 +508,7 @@
|
|||
|
||||
## ▷ Hosting Tools
|
||||
|
||||
* 🌐 **[FMHL](https://fmhl.devloo.xyz/)** - Free Minecraft Hosts List
|
||||
* 🌐 **[FMHL](https://fmhl.berserk.sbs/)** - Free Minecraft Hosts List / [Mirror](https://github.com/Myuui/Free-Minecraft-Hosts)
|
||||
* ⭐ **[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
|
||||
|
@ -532,17 +538,16 @@
|
|||
* ⭐ **[ATLauncher](https://atlauncher.com/)** or [Technic Launcher](https://www.technicpack.net/) - Modpack Launchers
|
||||
* ⭐ **[PojavLauncher](https://pojavlauncher.app/)** / [Discord](https://discord.com/invite/aenk3EUvER) / [GitHub](https://github.com/PojavLauncherTeam/PojavLauncher) or [FoldCraftLauncher](https://github.com/FCL-Team/FoldCraftLauncher) / [Discord](https://discord.gg/ffhvuXTwyV) - Java Edition for Android & iOS
|
||||
* ⭐ **[Bedrock Launcher](https://bedrocklauncher.github.io/)** or [MCLauncher](https://github.com/MCMrARM/mc-w10-version-launcher) - Launcher for Bedrock Edition
|
||||
* [AstralRinth](https://github.com/DIDIRUS4/AstralRinth) - Modrinth Launcher Fork (Offline Auth/No Ads)
|
||||
* [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)
|
||||
* [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
|
||||
* [GDLauncher](https://gdlauncher.com/) - Launcher
|
||||
* [X Minecraft Launcher](https://xmcl.app/) - Launcher
|
||||
* [Quantum Launcher](https://mrmayman.github.io/quantumlauncher/) - Lightweight Launcher / [Discord](https://discord.com/invite/XN9sW77H) / [GitHub](https://github.com/Mrmayman/quantum-launcher/)
|
||||
* [Ares](https://www.aresclient.com/) - Client
|
||||
* [Codex-Ipsa Launcher](https://codex-ipsa.cz/) - Launcher for Older Versions
|
||||
* [Omniarchive](https://omniarchive.uk/) - Download Old Minecraft Versions
|
||||
|
@ -559,7 +564,7 @@
|
|||
* [WorldEdit](https://enginehub.org/worldedit) or [Axiom](https://modrinth.com/mod/axiom) - Building Tools
|
||||
* Worldedit Tools - [Docs](https://worldedit.enginehub.org/en/latest/) / [CUI](https://modrinth.com/mod/worldedit-cui) / [Discord](https://discord.gg/enginehub) / [GitHub](https://github.com/EngineHub/WorldEdit)
|
||||
* [quark](https://quarkmod.net/) - Add Vanilla-like / QoL Features
|
||||
* [Voxy](https://modrinth.com/mod/voxy). [DistantHorizons](https://modrinth.com/mod/distanthorizons) or [Bobby](https://modrinth.com/mod/bobby) - Lightweight Distance Rendering Mods
|
||||
* [Voxy](https://modrinth.com/mod/voxy), [DistantHorizons](https://modrinth.com/mod/distanthorizons) or [Bobby](https://modrinth.com/mod/bobby) - Lightweight Distance Rendering Mods
|
||||
* [VulkanMod](https://modrinth.com/mod/vulkanmod) - Vulkan Renderer Mod / [Discord](https://discord.gg/FVXg7AYR2Q)
|
||||
* [Forge](https://files.minecraftforge.net/), [NeoForged](https://neoforged.net/), [Quilt](https://quiltmc.org/) or [Fabric](https://fabricmc.net/) / [Discord](https://discord.gg/VDGnGsFeuy) - Mod Loaders
|
||||
* [PAX](https://github.com/maradotwebp/pax), [ModMenu](https://modrinth.com/mod/modmenu) (fabric) or [Mod Manager](https://github.com/kaniol-lck/modmanager) - Minecraft Mod Managers
|
||||
|
@ -638,7 +643,7 @@
|
|||
* [Custom-MC-Render-Cweeper](https://rentry.co/custom-mc-render-cweeper) - Import Custom 3D Models into Minecraft
|
||||
* [ObjToSchematic](https://objtoschematic.com/) - Converts 3D Models into MC Formats / [Discord](https://discord.com/invite/McS2VrBZPD)
|
||||
* [NBT2Components](https://misode.github.io/nbt2components/) - NBT to Component Converter
|
||||
* [VoxelSphereGenerator](https://oranj.io/blog/VoxelSphereGenerator), [Layoutit](https://voxels.layoutit.com/), [BDStudio](https://eszesbalint.github.io/bdstudio/editor) or [Minecraft Shapes](https://minecraftshapes.com/) - Minecraft Shape Tools / Voxel Editors
|
||||
* [Layoutit](https://voxels.layoutit.com/), [VoxelSphereGenerator](https://oranj.io/blog/VoxelSphereGenerator), [BDStudio](https://eszesbalint.github.io/bdstudio/editor) or [Minecraft Shapes](https://minecraftshapes.com/) - Minecraft Shape Tools / Voxel Editors
|
||||
|
||||
***
|
||||
|
||||
|
@ -663,6 +668,7 @@
|
|||
* [Minesweepergame.com](https://minesweepergame.com/) and [Minesweeper.online Wiki](https://minesweeper.online/help/gameplay) - All about Minesweeper
|
||||
* [WRCsetups](https://wrcsetups.com/) - WRC Setups
|
||||
* [Peacock](https://github.com/thepeacockproject/Peacock) - Hitman World of Assassination Server Replacement
|
||||
* [Murlok](https://murlok.io/) - WoW PvP / PvE Guides / [Discord](https://discord.gg/daFKqeZxfD)
|
||||
* [WoWProgress](https://www.wowprogress.com) or [CheckPVP](https://www.check-pvp.fr/) - WoW Rankings
|
||||
* [RaidPlan](https://raidplan.io/) - WoW Raid Planner / [Discord](https://discord.com/invite/mTuHsfb)
|
||||
* [Useful Osu](https://github.com/CarbonUwU/Useful-osu) - Osu! Resources
|
||||
|
@ -698,13 +704,13 @@
|
|||
|
||||
## ▷ Pokemon Tools
|
||||
|
||||
* 🌐 **[Awesome Pokémon](https://github.com/tobiasbueschel/awesome-pokemon)** - Curated List of Pokémon Resources
|
||||
* 🌐 **[Awesome Pokémon](https://github.com/tobiasbueschel/awesome-pokemon)** - Pokémon Resources
|
||||
* 🌐 **[/r/PTCGP Resource Guide](https://redd.it/1gf94ey)** - Pokémon TCG Pocket Resources
|
||||
* ⭐ **[Bulbapedia](https://bulbapedia.bulbagarden.net/wiki/Main_Page)** - Pokémon Wiki
|
||||
* ⭐ **[Serebii.net](https://www.serebii.net/)**, [Pokémon Database](https://pokemondb.net/) or [PocketMonsters.net](https://pocketmonsters.net/) - Pokémon Databases
|
||||
* ⭐ **[Serebii.net](https://www.serebii.net/)**, [Pokémon Awesome](https://pokemon-awesome.vercel.app/), [Pokémon Database](https://pokemondb.net/) or [PocketMonsters.net](https://pocketmonsters.net/) - Pokémon Databases
|
||||
* ⭐ **[PokeList](https://pokemonlist.netlify.app/)** or [PokeAPI](https://pokeapi.co/) - Pokédexes
|
||||
* ⭐ **[Pokémon Typechart](https://pokemondb.net/type)** or [Type Calculator](https://www.pkmn.help/) - Pokémon Type Charts / [Image](https://img.pokemondb.net/images/typechart.png)
|
||||
* ⭐ **[PokeMMO](https://pokemmo.com/en/)**, [DelugeRPG](https://www.delugerpg.com/) or [Pokémon Revolution Online](https://pokemonrevolution.net/) - Pokémon MMOs
|
||||
* ⭐ **[PokeMMO](https://pokemmo.com/en/)**, [DelugeRPG](https://www.delugerpg.com/), [Pokemon Blaze Online](https://pokemonblazeonline.com/) / [Discord](https://discord.com/invite/b3ZnXuf5fk) or [Pokémon Revolution Online](https://pokemonrevolution.net/) - Pokémon MMOs
|
||||
* ⭐ **[PokéRogue](https://pokerogue.net/)** - Pokémon Dungeon Crawler / [Wiki](https://wiki.pokerogue.net/start) / [Subreddit](https://reddit.com/r/pokerogue/) / [Mobile](https://github.com/Admiral-Billy/Pokerogue-App) / [Discord](https://discord.com/invite/uWpTfdKG49)
|
||||
* ⭐ **[Pokémon Showdown](https://pokemonshowdown.com/)** - Online Pokémon Battles
|
||||
* [PokeCommunity](https://www.pokecommunity.com/) - Pokémon Community
|
||||
|
@ -719,7 +725,7 @@
|
|||
* [pkNX](https://github.com/kwsch/pkNX) - Switch Pokémon ROM Editor / Randomizer
|
||||
* [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/) or [Limitless](https://limitlesstcg.com/) - Pokémon Card Databases / Resources
|
||||
* [PkmnCards](https://pkmncards.com/), [Pokéllector](https://www.pokellector.com/) or [Limitless](https://limitlesstcg.com/) - Pokémon Card Databases / Resources
|
||||
* [TCG ONE](https://tcgone.net/) - Online Pokémon Card Game / [Discord](https://discord.gg/MTBGxVE)
|
||||
* [unite-db](https://unite-db.com/) - Pokémon Unite Database
|
||||
* [HelixChamber](https://helixchamber.com/) - Unused Pokémon Material
|
||||
|
@ -843,7 +849,7 @@
|
|||
|
||||
## ▷ Terraria Tools
|
||||
|
||||
* ⭐ [Terraria Wiki](https://terraria.wiki.gg/) or [Terranion](https://yal.cc/r/terranion/) - Terraria Wikis
|
||||
* ⭐ **[Terraria Wiki](https://terraria.wiki.gg/)** or [Terranion](https://yal.cc/r/terranion/) - Terraria Wikis
|
||||
* [Terraria Forum](https://forums.terraria.org/) - Terraria Community, Mods Help and More
|
||||
* [TEdit](https://www.binaryconstruct.com/tedit), [terramap](https://terramap.github.io/), [TerraFirma](https://github.com/mrkite/TerraFirma/releases/) or [terraria-map-editor](https://tedit.github.io/terraria-map-editor-web/) - Map Viewers / Editors
|
||||
* [Terrasavr](https://yal.cc/r/terrasavr/) - Terraria Character Editor
|
||||
|
|
|
@ -13,7 +13,7 @@
|
|||
* 🌐 **[/r/PiratedGames Mega](https://rentry.org/pgames)** / [Discord](https://discord.gg/dZWwhUy), **[CS.RIN Mega](https://cs.rin.ru/forum/viewtopic.php?f=10&t=95461)** or **[privateersclub](https://megathread.pages.dev/)** / [Discord](https://discord.gg/jz8dUnnD6Q) - Game Piracy Indexes
|
||||
* 🌐 **[Wotaku](https://wotaku.wiki/games)** / [Discord](https://discord.gg/vShRGx8ZBC) or **[EverythingMoe](https://everythingmoe.com/?section=game)** / [Discord](https://discord.gg/GuueaDgKdS) - Otaku Games Indexes
|
||||
* ↪️ **[Scene Release Trackers](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_scene_release_trackers)**
|
||||
* ⭐ **[CS.RIN.RU](https://cs.rin.ru/forum)** - Download / Forum / Account Required / [Status](https://csrinstaff.writeas.com/) / [Enhancement Mod](https://github.com/SubZeroPL/cs-rin-ru-enhanced-mod) / [Steam Buttons](https://github.com/Altansar69/CS.RIN.RU-Enhanced-external) / [.onion](http://csrinrutkb3tshptdctl5lyei4et35itl22qvk5ktdcat6aeavy6nhid.onion/forum)
|
||||
* ⭐ **[CS.RIN.RU](https://cs.rin.ru/forum)**, [2](https://csrin.org/) - Download / Forum / Account Required / [Status](https://csrinstaff.writeas.com/) / [Enhancement Mod](https://github.com/SubZeroPL/cs-rin-ru-enhanced-mod) / [Steam Buttons](https://github.com/Altansar69/CS.RIN.RU-Enhanced-external) / [.onion](http://csrinrutkb3tshptdctl5lyei4et35itl22qvk5ktdcat6aeavy6nhid.onion/forum)
|
||||
* ⭐ **[GOG Games](https://gog-games.to/)** - Download / [.onion](http://goggamespyi7b6ybpnpnlwhb4md6owgbijfsuj6z5hesqt3yfyz42rad.onion/)
|
||||
* ⭐ **[SteamRIP](https://steamrip.com/)** - Download / Torrent / Pre-Installs / [Discord](https://discord.gg/WkyjpA3Ua9) / PW: `1234` or `steamrip.com`
|
||||
* ⭐ **[AnkerGames](https://ankergames.net/)** - Download / Pre-Installs / [Discord](https://discord.gg/nnMnGzDbwg)
|
||||
|
@ -55,7 +55,7 @@
|
|||
|
||||
* ⭐ **[KaOsKrew](https://www.kaoskrew.org/)**, [Masquerade Repacks](https://discord.com/invite/HP5sQ6c) or [ScOOt3r Repacks](https://discord.gg/xe3Fys8Upy) - Download / Torrent / [Discord](https://discord.com/invite/WF2pqPTFBs)
|
||||
* ⭐ **[FitGirl Repacks](https://fitgirl-repacks.site/)** - Download / Torrent / ROM Repacks / [Desktop Launcher](https://github.com/CarrotRub/Fit-Launcher/) / [Unofficial Discord](https://discord.gg/Up3YARe4RW)
|
||||
* ⭐ **[DODI Repacks](https://rentry.co/FMHYBase64#dodi)** - Torrent / [Lootlink Bypass](https://rentry.co/lootlink) / [Warning](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#dodi-warning) / [Discord](https://discord.gg/D9WU7C9FSE)
|
||||
* ⭐ **[DODI Repacks](https://rentry.co/FMHYBase64#dodi)** - Torrent / [Lootlink Bypass](https://rentry.co/lootlink) / **[Site Warning](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#dodi-warning)** / [Discord](https://discord.gg/D9WU7C9FSE)
|
||||
* ⭐ **[M4CKD0GE Repacks](https://m4ckd0ge-repacks.site/)** - Download / [Discord](https://discord.gg/693hNBdymb)
|
||||
* ⭐ **[ARMGDDN Browser](https://github.com/KaladinDMP/AGBrowser)**, [2](https://cs.rin.ru/forum/viewtopic.php?f=14&t=140593) - Download / [Telegram](https://t.me/ARMGDDNGames)
|
||||
* ⭐ **[Gnarly Repacks](https://rentry.co/FMHYBase64#gnarly_repacks)** - Download / PW: `gnarly`
|
||||
|
@ -71,7 +71,7 @@
|
|||
|
||||
## ▷ Virtual Reality
|
||||
|
||||
* ⭐ **[VRPirates](https://vrpirates.wiki/)** - VR Piracy Wiki / [Telegram](https://t.me/VRPirates) / [Discord](https://discord.com/invite/DcfEpwVa4a)
|
||||
* ⭐ **[VRPirates](https://vrpirates.wiki/)**, [2](https://vrpirates.club/) - VR Piracy Wiki / [Telegram](https://t.me/VRPirates) / [Discord](https://discord.gg/tBKMZy7QDA)
|
||||
* ⭐ **[ARMGDDN Browser](https://cs.rin.ru/forum/viewtopic.php?f=14&t=140593)** - VR Games / [Telegram](https://t.me/ARMGDDNGames)
|
||||
* [/r/QuestPiracy](https://www.reddit.com/r/QuestPiracy/) - Oculus Quest Piracy
|
||||
* [SideQuest](https://sidequestvr.com/) - VR Sideloading Platform
|
||||
|
@ -108,7 +108,7 @@
|
|||
* 🌐 **[Awesome Game Remakes](https://github.com/radek-sprta/awesome-game-remakes)** or [Game Clones](https://osgameclones.com/) - Open-Source Remakes
|
||||
* 🌐 **[Awesome Terminal Games](https://ligurio.github.io/awesome-ttygames/)** - ASCII Terminal Games
|
||||
* 🌐 **[Kliktopia](https://kliktopia.org/)** - Klik Games
|
||||
* ⭐ **[OpenRCT2](https://openrct2.io/)**, [2](https://openrct2.io/) - Open-Source RollerCoaster Tycoon 2
|
||||
* ⭐ **[OpenRCT2](https://openrct2.io/)** - Open-Source RollerCoaster Tycoon 2
|
||||
* [Luanti](https://www.luanti.org/) / [GitHub](https://github.com/luanti-org) or [Classicube](https://www.classicube.net/) - Open-Source Minecraft Alternatives
|
||||
* [Locomalito](https://locomalito.com/) or [RetroSpec](https://retrospec.sgn.net/) - Classic Game Remakes
|
||||
* [OpenFortress](https://openfortress.fun/) - Team Fortress 2 Mod
|
||||
|
@ -141,6 +141,7 @@
|
|||
* [Unciv](https://github.com/yairm210/Unciv) - Civilization V Remake
|
||||
* [FreeCiv](https://www.freeciv.org/) - Civilization Remake / [GitHub](https://github.com/freeciv)
|
||||
* [OpenTTD](https://www.openttd.org/) - Transport Tycoon Remake
|
||||
* [FlightGear](https://www.flightgear.org/) - Open-Source Flight Simulator / [GitLab](https://gitlab.com/flightgear/flightgear)
|
||||
* [CannonBall](https://github.com/djyt/cannonball) - OutRun Remake / [Video](https://youtu.be/t-93kDC8Vac)
|
||||
* [EDOPro](https://projectignis.github.io/) - Yu-Gi-Oh! TCG Fangame
|
||||
* [OpenNox](https://github.com/noxworld-dev/opennox) - Nox Revival Project
|
||||
|
@ -177,9 +178,11 @@
|
|||
* [SAGE](https://sagexpo.org/) - Sonic Fan Games / [Discord](https://discord.sonicfangameshq.com/)
|
||||
* [DoujinStyle](https://doujinstyle.com) - Doujin Games / [Discord](https://discord.com/invite/z2QDFdA)
|
||||
* [MoriyaShrine](https://moriyashrine.org/) - Touhou Games
|
||||
* [Kahvibreak](https://bluemaxima.org/kahvibreak/) - Java 2 Micro Mobile Games
|
||||
* [Planet Casio](https://www.planet-casio.com/Fr/programmes/jeux-casio.php) or [Cemetech](https://cemetech.net/) - Calculator Games
|
||||
* [UnorthodoxFun](https://github.com/rarelygoeshere/UnorthodoxFun) - Games on Unorthodox Platforms
|
||||
* [GamesOnPDF](https://github.com/rarelygoeshere/GamesOnPDF) - PDF Games
|
||||
* [PyGames](https://www.pygame.org/) - Python 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)
|
||||
|
@ -271,8 +274,6 @@
|
|||
* [Emuparadise](https://www.emuparadise.me/) - Emulators / ROMs / [Forum](https://www.epforums.org/) / [Workaround Script](https://web.archive.org/web/20230115181306/https://gist.github.com/byzantium225/484101c7846ce18e514b7b10bf4815c2)
|
||||
* [ROMsPURE](https://ROMspure.cc/) - Emulators / ROMs
|
||||
* [Romspedia](https://www.romspedia.com/) - Emulators / ROMs
|
||||
* [ROMs DL](https://romsdl.com/) - Emulators / ROMs
|
||||
* [HappyROMs](https://happyroms.com/) - Emulators / ROMs
|
||||
* [TechToROMs](https://techtoroms.com/) - Emulators / ROMs
|
||||
* [RPGOnly](https://rpgonly.com) - ROMs
|
||||
* [GLoad](https://gload.to/) - ROMs
|
||||
|
@ -315,7 +316,7 @@
|
|||
* [Super Mario Bros Crossover](https://archive.org/details/SuperMarioCrossoverOffline) - Play SMB with Alternative Characters
|
||||
* [perfect_dark](https://github.com/fgsfdsfgs/perfect_dark), [2](https://github.com/n64decomp/perfect_dark) - Perfect Dark Decompilation
|
||||
* [Mega Man Maker](https://megamanmaker.com/) - Create Mega Man Levels
|
||||
* [Dan's Palace](https://discord.gg/RqQeZwrP8k) - Android / PSVita PC Game Ports Discord / [Telegram](https://t.me/danspalace)
|
||||
* [Dan's Palace](https://discord.gg/RqQeZwrP8k) - Android / PSVita PC Game Ports Discord / [Telegram](https://t.me/dansfiles)
|
||||
* [wide-snes](https://github.com/VitorVilela7/wide-snes) - Widescreen Super Mario World
|
||||
* [Dats.site](https://dats.site/) or [No Intro](https://no-intro.org/) - ROM .dat Files
|
||||
* [Dat-O-Matic](https://datomatic.no-intro.org/index.php) - ROM Datasets
|
||||
|
@ -375,7 +376,7 @@
|
|||
# ► Browser Games
|
||||
|
||||
* ↪️ **[Interactive Text Adventures](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_text_adventures)**
|
||||
* ⭐ **[Flashpoint](https://flashpointarchive.org/)** / [Discord](https://discord.gg/Z4gGtJvvn8), [Flash by Night](http://www.flashbynight.com/) or [Flash Library](https://rentry.co/FMHYBase64#software-library-flash) - Flash Game Archives
|
||||
* ⭐ **[Flashpoint](https://flashpointarchive.org/)**, [2](https://bluemaxima.org/) / [Search](https://flashpointproject.github.io/flashpoint-database/) / [Play Online](https://ooooooooo.ooo/) / [Discord](https://discord.gg/Z4gGtJvvn8), [Flash by Night](http://www.flashbynight.com/) or [Flash Library](https://rentry.co/FMHYBase64#software-library-flash) - Flash Game Archives
|
||||
* ⭐ **[Marble Blast Gold Web](https://marbleblast.vaniverse.io/)** or [Marble Blast Ultra](https://marbleblastultra.randomityguy.me/) - Marble Blast in Browser
|
||||
* ⭐ **[Allchemy](https://allchemy.io/)** or [Infinite Craft](https://neal.fun/infinite-craft/) / [Wiki](https://expitau.com/InfiniteCraftWiki/) / [Search](https://infinibrowser.wiki/) - Infinite Item Crafting Games
|
||||
* ⭐ **[QWOP](https://www.foddy.net/Athletics.html)** - Ragdoll Running Game
|
||||
|
@ -431,6 +432,7 @@
|
|||
* [watabou](https://watabou.itch.io/) - Browser Games
|
||||
* [DAN-BALL](https://dan-ball.jp/en/) - Browser Games
|
||||
* [Miniplay](https://www.miniplay.com/) - Browser Games
|
||||
* [GTube](https://gtube.net/), [2](https://gtube.lat/), [3](https://gtube.buzz/), [4](https://gtube.pics/), [5](https://gtube.autos/) - Browser Games
|
||||
* [Yandex Games](https://yandex.com/games/) - Browser Games
|
||||
* [Arkadium](https://www.arkadium.com/) - Browser Games
|
||||
* [classroom-6x](https://www.classroom-6-x.games/) - Browser Games
|
||||
|
@ -482,6 +484,7 @@
|
|||
* [fsh.zone](https://fsh.zone/) - Multiplayer Fishing Game / [Discord](https://discord.com/invite/FKEzJSf)
|
||||
* [Moo Moo](https://moomoo.io/) - Multiplayer Survival Game
|
||||
* [Game Of Bombs](https://gameofbombs.com/) - Multiplayer Bomberman Style MMO
|
||||
* [Really Boring Website](https://really.boring.website/) - Online Scattergories
|
||||
* [Gpop.io](https://gpop.io/) - Rhythm Game
|
||||
* [Betrayal](https://betrayal.io/) - Among Us Clone
|
||||
* [Death by AI](https://deathbyai.gg/) - Survival Plan Game
|
||||
|
@ -576,6 +579,7 @@
|
|||
* [FunNode](https://www.funnode.com/) - Online Board Games
|
||||
* [Screentop](https://screentop.gg/) - Online Board Games / [Discord](https://discord.gg/wva8ebh)
|
||||
* [PartyProject](https://char64.itch.io/partyproject) - Mario Party Style Multiplayer Game
|
||||
* [gTOONS](https://gtoons.app/) - Cartoon Network Strategy Card Game Revival / [Discord](https://discord.gg/KM2ggJtkMr)
|
||||
* [BlackReds](https://blacksreds.com/) - Multiplayer Card Games
|
||||
* [FlyOrDie](https://www.flyordie.com/) - Multiplayer Card Games
|
||||
* [Playok](https://www.playok.com/) - Multiplayer Card Games
|
||||
|
@ -623,11 +627,12 @@
|
|||
|
||||
## ▷ Puzzle Games
|
||||
|
||||
* ⭐ **[Rubik's Cube Explorer](https://iamthecu.be/)**, [Grubiks](https://www.grubiks.com/), [pCubes](https://twistypuzzles.com/forum/viewtopic.php?f=1&t=27054) or [The Cube](https://bsehovac.github.io/the-cube/) - Rubix Cubes / [Guide](https://easiestsolve.com/) / [Solver](https://rubiksolve.com/), [2](https://rubiks-cube-solver.com/) / [Timer](https://cstimer.net/)
|
||||
* ⭐ **[Rubik's Cube Explorer](https://iamthecu.be/)**, [Grubiks](https://www.grubiks.com/), [pCubes](https://twistypuzzles.com/forum/viewtopic.php?f=1&t=27054) or [The Cube](https://bsehovac.github.io/the-cube/) - Rubik's Cubes / [Guide](https://easiestsolve.com/) / [Solver](https://rubiksolve.com/), [2](https://rubiks-cube-solver.com/) / [Timer](https://cstimer.net/)
|
||||
* ⭐ **[Minesweeper.online](https://minesweeper.online/)** - Minesweeper
|
||||
* [Simon Tatham's Puzzles](https://www.chiark.greenend.org.uk/~sgtatham/puzzles/) - Multiple Puzzle Games / [Mobile](https://github.com/chrisboyle/sgtpuzzles)
|
||||
* [Puzzle Party](https://artsandculture.google.com/experiment/puzzle-party/EwGBPZlIzv0KRw) - Multiplayer Jigsaws
|
||||
* [PuzzlePrime](https://www.puzzleprime.com/) - Problems / Puzzles
|
||||
* [Crosshare](https://crosshare.org/) - Play / Create Crosswords
|
||||
* [Regex Crossword](https://regexcrossword.com/) - Regex Crosswords
|
||||
* [Web Paint-by-Number](https://webpbn.com/) or [Nonograms](https://www.nonograms.org/) - Graphic Crosswords
|
||||
* [Game for the Brain](https://www.gamesforthebrain.com/) - Puzzles / Quizzes
|
||||
|
@ -638,8 +643,8 @@
|
|||
* [Sokoban](https://suppilulemur.neocities.org/) - Zelda-Themed Sokoban Puzzles
|
||||
* [All The 2048](https://true65536.github.io/allthe2048/), [DuckDuckgo 2048](https://duckduckgo.com/?q=play+2048&ia=answer) or [2048](https://play2048.co/) - 2048 Puzzles
|
||||
* [JetHolt](https://jetholt.com/hacking/), [RebelWithoutACause](https://rebelwithoutarootcause.com/demos/terminal/) or [Aramor](http://aramor.epizy.com/fallout-terminal/main) - Fallout Terminal Hacking Game
|
||||
* [mmmines!](https://mmmines.fly.dev/), [MineJD](https://minesjd.com/) or [m3o](https://play.m3o.xyz/) - Multiplayer Minesweeper
|
||||
* [Minesweeper Infinity](https://www.minesweeperinfinity.com/) - Infinte Minesweeper
|
||||
* [mmmines!](https://mmmines.fly.dev/), [MinesweeperPro](https://www.minesweeperpro.com/), [MineJD](https://minesjd.com/) or [m3o](https://play.m3o.xyz/) - Multiplayer Minesweeper
|
||||
* [Minesweeper Infinity](https://www.minesweeperinfinity.com/) - Infinite Minesweeper
|
||||
* [Minesweeper Twist](https://polyreplay.com/minesweepertwist) - Irregular Grid Minesweeper
|
||||
* [PROXX](https://proxx.app/) - Space Minesweeper
|
||||
* [Rockbasher](https://www.rockbasher.com/) - Retro Style Puzzle Game
|
||||
|
@ -676,7 +681,7 @@
|
|||
* [FactoryIdle](https://factoryidle.com/) - Factory Idle Simulator
|
||||
* [Idlescape](https://www.play.idlescape.com/) - Idle MMORPG
|
||||
* [ProgressQuest](http://progressquest.com/) - Idle RPG
|
||||
* [Anti Matter Dimesions](https://ivark.github.io/) - Anti Matter Idle Game
|
||||
* [Anti Matter Dimensions](https://ivark.github.io/) - Anti Matter Idle Game
|
||||
* [Theory of Magic](https://mathiashjelm.gitlab.io/arcanum/) - Magic Idle Game
|
||||
* [Succubox](https://www.glaielgames.com/succubox/) - Loot Box Idle Game
|
||||
* [Swarm Simulator](https://www.swarmsim.com/) - Idle Bug Swarm Game
|
||||
|
@ -693,7 +698,7 @@
|
|||
* [Akinator](https://en.akinator.com/) - 20 Questions
|
||||
* [Buzzinga](https://buzzinga.io/) - Jeopardy Creator
|
||||
* [Bestiefy](https://bestiefy.com/) - Friend Quizzes
|
||||
* [WTM](https://whatthemovie.com/), [Moviedle](https://moviedle.xyz/), [Actorle](https://actorle.com/), [Kino.wtf](https://www.kino.wtf/), [Likewise](https://likewise.com/), [Flickle](https://flickle.app/) or [Framed](https://framed.wtf/) - Movie Guessing Games
|
||||
* [WTM](https://whatthemovie.com/), [Moviedle](https://moviedle.xyz/), [Actorle](https://actorle.com/), [Kino.wtf](https://www.kino.wtf/), [Likewise](https://likewise.com/games), [Flickle](https://flickle.app/) 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
|
||||
* [Scenewise](https://scenewise.io/) - Movie Scene Order Puzzle
|
||||
|
@ -711,7 +716,7 @@
|
|||
* [Poeltl](https://poeltl.nbpa.com/) - NBA Guessing Game
|
||||
* [The Higher Lower Game](https://www.higherlowergame.com/) or [Google Feud](https://googlefeud.com/) - Guess What's Googled More
|
||||
* [Graphs](https://www.graphs.world/) - Graph Guessing Game
|
||||
* [English Sandwhich](https://englishsandwich.github.io/) - Guess Where Dishes are From
|
||||
* [English Sandwich](https://englishsandwich.github.io/) - Guess Where Dishes are From
|
||||
* [Guess The Price](https://guesstheprice.net/) - Price Guessing Game
|
||||
* [Apparle](https://www.apparle.com/) - Apparel Price Guessing Game
|
||||
* [Metazooa](https://metazooa.com/) - Animal Guessing Game
|
||||
|
@ -723,7 +728,6 @@
|
|||
* [PkmnQuiz](https://pkmnquiz.com/), [Gearoid Pokémon](https://gearoid.me/pokemon/), [Pokedle](https://pokedle.net/) or [Squirdle](https://squirdle.fireblend.com/) - Pokémon Guessing Games
|
||||
* [LoLdle](https://loldle.net/) - League of Legends Guessing Games
|
||||
* [Owdle](https://owdle.guessing.day/) - Overwatch Guessing Games
|
||||
* [Teuteuf](https://teuteuf.fr/) - Geography Guessing Games
|
||||
* [Guess The Year](https://guess-the-year.davjhan.com/) or [ChronoPhoto](https://www.chronophoto.app/) - Year Guessing Game
|
||||
* [Wikitrivia](https://wikitrivia.tomjwatson.com/) - Guess Which Event Came First
|
||||
* [Human or Not?](https://www.humanornot.ai/) - Guess Human vs. AI
|
||||
|
@ -732,10 +736,10 @@
|
|||
|
||||
## ▷ GeoGuessr Games
|
||||
|
||||
* 🌐 **[Regionguessing](https://docs.google.com/spreadsheets/d/1UNvkoY-LaktF75nU_cP7-wVRAEvH3fSqVZet20HqxXA)**, [GeoTips](https://geotips.net/) / [Discord](https://discord.gg/svhWzU7FMa), [GeoHints](https://geohints.com/) / [Discord](https://discord.gg/bCZ8Bg2vUd), [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 / Tips
|
||||
* ⭐ **[Geotastic](https://geotastic.net/)** - Multiplayer GeoGuessr / Account Required
|
||||
* ⭐ **[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), [GeoHints](https://geohints.com/) / [Discord](https://discord.gg/bCZ8Bg2vUd), [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 / Tips
|
||||
* [Geohub](https://www.geohub.gg/) - Free GeoGuessr Alt / Requires Google API
|
||||
* [GuessWhereYouAre](https://guesswhereyouare.com/) - Free GeoGuessr Alt w/ Multiplayer
|
||||
* [OpenGuessr](https://openguessr.com/) - Free GeoGuessr Alt w/ Multiplayer
|
||||
|
@ -745,7 +749,7 @@
|
|||
* [Tradle](https://games.oec.world/en/tradle/) - Guess Countries by their Exports
|
||||
* [Back Of Your Hand](https://backofyourhand.com/) - Local GeoGuessr
|
||||
* [LostGamer](https://lostgamer.io/) - Video Game GeoGuessr
|
||||
* [GTA V GeoGuesser](https://gta-geoguesser.com/) - GTA V GeoGuessr
|
||||
* [GTA V GeoGuessr](https://gta-geoguesser.com/) - GTA V GeoGuessr
|
||||
* [TimeGuessr](https://timeguessr.com/) - Historical Time-period GeoGuessr
|
||||
* [LanguageGuessr](https://languageguessr.io/) - Language GeoGuessr
|
||||
* [Artifact Guesser](https://artifactguesser.com/) or [GeoArtwork](https://artsandculture.google.com/experiment/geo-artwork/wgEPVBAUiRVlEQ) - Guess Origins of Cultural Artifacts
|
||||
|
|
|
@ -20,7 +20,7 @@
|
|||
## ▷ Editing Software
|
||||
|
||||
* ⭐ **[m0nkrus](https://w16.monkrus.ws/)** / [2](https://vk.com/monkrus) - Adobe Software Archive / Use VPN / [Block Adobe](https://rentry.co/FMHYBase64#a-dove-is-dumb) / [Search](https://monkrus.dvuzu.com/) / [Telegram](https://t.me/real_monkrus)
|
||||
* ⭐ **[GIMP](https://www.gimp.org/)**
|
||||
* ⭐ **[GIMP](https://www.gimp.org/)** / [Discord](https://discord.gg/kHBNw2B) / [Subreddit](https://www.reddit.com/r/GIMP/)
|
||||
* ⭐ **GIMP Tools** - [Photoshop UI](https://github.com/Diolinux/PhotoGIMP) / [Texture Synthesizer](https://github.com/bootchk/resynthesizer) / [Batch Editor](https://github.com/alessandrofrancesconi/gimp-plugin-bimp) / [Text Effects](https://github.com/LinuxBeaver?tab=repositories)
|
||||
* ⭐ **[Pinta Project](https://www.pinta-project.com/)**
|
||||
* [darktable](https://www.darktable.org/) - Virtual Lighttable & Darkroom
|
||||
|
@ -113,7 +113,7 @@
|
|||
* [distort-grid](https://github.com/snorpey/distort-grid) - Grid-Based Image Distortion
|
||||
* [Change Image Hue](https://www.imageonlinetools.com/change-image-hue) or [Tinter](https://tinter.uxie.io/) - Hue Editor
|
||||
* [ordered-dither-maker](https://seleb.github.io/ordered-dither-maker/), [Ditherista](https://github.com/robertkist/ditherista/) or [Dither Me This](https://doodad.dev/dither-me-this/) - Image Dithering
|
||||
* [Fotosketcher](https://fotosketcher.com/) or [PhotoMaker](https://huggingface.co/spaces/TencentARC/PhotoMaker) [Stylized](https://huggingface.co/spaces/TencentARC/PhotoMaker-Style) - Turn Photos into Artwork
|
||||
* [Fotosketcher](https://fotosketcher.com/) or [PhotoMaker](https://huggingface.co/spaces/TencentARC/PhotoMaker), [Stylized](https://huggingface.co/spaces/TencentARC/PhotoMaker-Style) - Turn Photos into Artwork
|
||||
* [AnimeGAN](https://github.com/TachibanaYoshino/AnimeGANv3) - Turn Photos into Anime
|
||||
* [AIDraw](https://ai-draw.tokyo/en/) - Turn Photos into Line Art
|
||||
* [Rutt-Etra-Izer](https://airtightinteractive.com/demos/js/ruttetra/) - Scanned-line Images
|
||||
|
@ -138,7 +138,6 @@
|
|||
* [FlipAnim](https://flipanim.com/) - Animated Flipbook Creator
|
||||
* [CharacterCreator](https://charactercreator.org/) - Character Generator
|
||||
* [Picrew](https://picrew.me/) - Animated Character Maker
|
||||
* [FontSVG](https://fontsvg.com/) - Convert Font, Icon, Glyph to SVG
|
||||
* [Mimi](https://mimi-panda.com/) - Create Coloring Pages from Photos
|
||||
* [Text-Image](https://www.text-image.com/) - Text Image Generator
|
||||
* [Photovisi](https://www.photovisi.com/) or [PhotoJoiner](https://www.photojoiner.com/) - Collage Generators
|
||||
|
@ -172,7 +171,7 @@
|
|||
## ▷ Drawing
|
||||
|
||||
* ⭐ **[Excalidraw](https://excalidraw.com/)** - Drawing / Sketching / [Sharing](https://excalihub.dev/)
|
||||
* ⭐ **[AutoDraw](https://www.autodraw.com/)** or [Magic Sketchpad](https://magic-sketchpad.glitch.me/) - AI Drawing Tools
|
||||
* ⭐ **[AutoDraw](https://www.autodraw.com/)**, [Co-Drawing](https://huggingface.co/spaces/Trudy/gemini-codrawing) or [Magic Sketchpad](https://magic-sketchpad.glitch.me/) - AI Drawing Tools
|
||||
* [Inscribed](https://inscribed.app/) / [GitHub](https://github.com/chunrapeepat/inscribed) - Sketch-Based Slides
|
||||
* [inkscape](https://inkscape.org/) - Drawing / Sketching
|
||||
* [Inkdo](https://www.microsoft.com/en-us/p/inkodo/9nblggh4s50q) - Drawing / Sketching
|
||||
|
@ -227,7 +226,7 @@
|
|||
* [PixelMe](https://pixel-me.tokyo/en/), [Pixel It](https://giventofly.github.io/pixelit/), [Pixelator](https://ronenness.itch.io/pixelator), [Img8Bit](https://img8bit.com/) or [Pixelart Converter](https://app.monopro.org/pixel/?lang=en) - Image to Pixelart Converters
|
||||
* [Pixelorama](https://orama-interactive.itch.io/pixelorama) - 2D Sprite Editor
|
||||
* [pixeldudesmaker](https://0x72.itch.io/pixeldudesmaker), [Pixel Sprite](https://deep-fold.itch.io/pixel-sprite-generator) or [Creature Mixer](https://kenney.itch.io/creature-mixer) - Sprite Generator
|
||||
* [Pixelicious](https://www.scenario.com/features/pixelate) - Image to Pixel Art Converter
|
||||
* [Pixelicious](https://www.scenario.com/features/pixelate) or [PixelartVillage](https://pixelartvillage.com/) - Image to Pixel Art Converter
|
||||
* [Nasu](https://hundredrabbits.itch.io/nasu) - Spritesheet Editor
|
||||
* [Pixel Art Scaler](https://lospec.com/pixel-art-scaler/) - Scale Pixel Art without Quality Loss
|
||||
|
||||
|
@ -260,6 +259,7 @@
|
|||
* [MemeAtlas](https://www.memeatlas.com/) or [Templates](https://drive.google.com/drive/folders/1Z4PSi2XmZ6x8I891xZSg5Cl4oNEOIRhh) - Meme Templates
|
||||
* [GreenScreenMemes](https://greenscreenmemes.com/) - Green Screen Memes
|
||||
* [iFake](https://ifaketextmessage.com/) - Fake Text Conversation Creator
|
||||
* [Pokémon Battle Creator](http://www.pokemonbattlecreator.com/) - Pokémon Battle Scene Meme Generator
|
||||
* [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
|
||||
|
@ -279,7 +279,7 @@
|
|||
|
||||
* 🌐 **[Awesome Design](https://github.com/goabstract/Awesome-Design-Tools)**, [Design Resources](https://github.com/MohamedYoussouf/Design-Resources) or [pilssken](https://pilssken.neocities.org/gainz/) - Design Resources
|
||||
* 🌐 **[archives.design](https://archives.design/)** - Graphic Design Books
|
||||
* [calltoidea](https://www.calltoidea.com/), [onepagelove](https://onepagelove.com/), [awwwards](https://www.awwwards.com/websites), [thedesigninspiration](https://thedesigninspiration.com/), [theinspirationgrid](https://theinspirationgrid.com/) or [inspirationde](https://www.inspirationde.com/) - Graphic Design Inspirations
|
||||
* [calltoidea](https://www.calltoidea.com/), [onepagelove](https://onepagelove.com/), [awwwards](https://www.awwwards.com/websites), [thedesigninspiration](https://thedesigninspiration.com/), [SMPoster](https://www.smposter.com/), [AnotherGraphic](https://anothergraphic.org/), [theinspirationgrid](https://theinspirationgrid.com/) or [inspirationde](https://www.inspirationde.com/) - Graphic Design Examples / Inspiration
|
||||
* [PSDcovers](https://www.psdcovers.com/), [mockups-design](https://mockups-design.com/), [zippypixels](https://zippypixels.com/), [Mockups](https://mockups.pixeltrue.com/), [medialoot](https://medialoot.com/free-mockups/) or [MockupsForFree](https://mockupsforfree.com/) - Product Mockups
|
||||
|
||||
***
|
||||
|
@ -361,6 +361,7 @@
|
|||
* [Freeject](https://www.freeject.net/)
|
||||
* [Cg_peers](https://t.me/Cg_peers)
|
||||
* [PNGTree](https://pngtree.com/)
|
||||
* [Dassets Design](https://t.me/dassets_design)
|
||||
* [TianUI](https://www.titanui.com/)
|
||||
* [Designer Candies](https://designercandies.net/category/freebies/)
|
||||
* [GraphixTree](https://graphixtree.com/)
|
||||
|
@ -379,9 +380,13 @@
|
|||
* [all_psd](https://vk.com/all_psd)
|
||||
* [designbloody](https://vk.com/designbloody)
|
||||
* [designarchiv](https://t.me/designarchiv)
|
||||
* [outsideotf](https://t.me/s/outsideotf)
|
||||
* [desgang](https://t.me/desgang)
|
||||
* [grphc dsgn](https://t.me/+xx1YjI6DC4RiZjJk)
|
||||
* [creativemrkt](https://t.me/creativemrkt)
|
||||
* [freepsdvn](https://freepsdvn.com/)
|
||||
* [PrivateDesigner](https://t.me/privatedesigner)
|
||||
* [Solutioonn](https://t.me/solutioonn)
|
||||
* [ae-project](https://ae-project.su/)
|
||||
* [godownloads](https://www.godownloads.org/)
|
||||
|
||||
|
@ -415,7 +420,6 @@
|
|||
* [Skybox](https://skybox.blockadelabs.com/) - AI Generated 3D Environments
|
||||
* [Assemblr](https://www.assemblrworld.com/) - Augmented Reality Image Creator
|
||||
* [MeshLab](https://www.meshlab.net/) - 3D Mesh Processing / [GitHub](https://github.com/cnr-isti-vclab/meshlab)
|
||||
* [ImageToSTL](https://imagetostl.com/) - Convert 2D PNG/JPG Images to 3D STL Mesh Files
|
||||
* [MakeHuman](http://www.makehumancommunity.org/) - 3D Humanoid Modeler
|
||||
* [PoseMy.art](https://app.posemy.art/), [SetPose](https://setpose.com/), [DesignDoll](https://terawell.net/en/index.php), [Magic Poser](https://magicposer.com/), [Quickposes](https://quickposes.com/en) or [JustSketchMe](https://app.justsketch.me/) - Posing Tools
|
||||
* [PoseManiacs](https://www.posemaniacs.com/), [Anatomy Doc](https://photos.google.com/share/AF1QipMbaSTp0BlK1kBCKVvfZzyDhcgCZQuaDBbp8v8Lj6hxnBaNh7YWoKwCPCYr-10--A?pli=1&key=cU5OaV9TVWhoMWlVZERnaEc2YVFKQTJHbnVDeWR3), [Adorkastock](https://www.adorkastock.com/) or [Anatomy360](https://anatomy360.info/anatomy-scan-reference-dump/) - Pose References
|
||||
|
@ -453,7 +457,7 @@
|
|||
* [Artvee](https://artvee.com/) - Public Domain Artwork
|
||||
* [Behance](https://behance.net/) - Design Projects
|
||||
* [Placeit](https://placeit.net/) - Image Templates
|
||||
* [Worldvectorlogo](https://worldvectorlogo.com/), [Logos & Badges Bundle](https://rentry.co/FMHYBase64#logos-badges-bundle), [Brands of the World](https://www.brandsoftheworld.com/), [Logos Download](https://logos-download.com/), [Logodust](https://logodust.com/), [Logowik](https://logowik.com/), [Logo Wine](https://www.logo.wine/), [seeklogo](https://seeklogo.com/), [logospire](https://logospire.com/), [LogoSearch](https://logosear.ch/), [logopond](https://logopond.com/), [SuperTinyIcons](https://edent.github.io/SuperTinyIcons/), [logotouse](https://www.logotouse.com/), [brandeps](https://brandeps.com/), [logolounge](https://www.logolounge.com/), [logomoose](https://www.logomoose.com/) - Logo Designs
|
||||
* [Worldvectorlogo](https://worldvectorlogo.com/), [Logo Source](https://www.logosource.app/), [Logos & Badges Bundle](https://rentry.co/FMHYBase64#logos-badges-bundle), [Brands of the World](https://www.brandsoftheworld.com/), [Logos Download](https://logos-download.com/), [Logodust](https://logodust.com/), [Logowik](https://logowik.com/), [Logo Wine](https://www.logo.wine/), [seeklogo](https://seeklogo.com/), [logospire](https://logospire.com/), [LogoSearch](https://logosear.ch/), [logopond](https://logopond.com/), [SuperTinyIcons](https://edent.github.io/SuperTinyIcons/), [logotouse](https://www.logotouse.com/), [brandeps](https://brandeps.com/), [logolounge](https://www.logolounge.com/), [logomoose](https://www.logomoose.com/) - Logo Search / Designs
|
||||
* [MariaLetta](https://github.com/MariaLetta/mega-doodles-pack) - Free Doodles
|
||||
* [Watercolor Collection](https://rentry.co/FMHYBase64#watercolor-collection) - Download Watercolor Pictures
|
||||
* [googleimagerestored](https://git.sr.ht/~fanfare/googleimagesrestored) - Old Google Image Search
|
||||
|
@ -538,8 +542,8 @@
|
|||
* [Artfol](https://www.artfol.co/) - User-Made Art / Fanart
|
||||
* [Cara](https://cara.app/) - User-Made Art / Fanart
|
||||
* [InkBlot](https://inkblot.art/) - User-Made Art / Fanart
|
||||
* [Gelbooru](https://gelbooru.com/), [Safebooru](https://safebooru.org/) or [TBIB](https://tbib.org/) - Image Boorus
|
||||
* [icons8](https://icons8.com/illustrations), [3D Illustrations](https://3d.khagwal.com/) or [NS-illustration-pack](https://github.com/nsobolewart/NS-illustration-pack) - 3D Illustrations
|
||||
* [Safebooru](https://safebooru.org/) or [TBIB](https://tbib.org/) - Image Boorus
|
||||
* [icons8](https://icons8.com/illustrations), [LostGeometry](https://lostgeometry.craftwork.design/), [3D Illustrations](https://3d.khagwal.com/) or [NS-illustration-pack](https://github.com/nsobolewart/NS-illustration-pack) - 3D Illustrations
|
||||
* [StorySet](https://storyset.com/), [unDraw](https://undraw.co/illustrations), [blush](https://blush.design/) or [Humaaans](https://www.humaaans.com/) - Customizable Illustrations
|
||||
* [Pastel](https://usepastel.com/marker-illustrations) - Marker Illustrations
|
||||
* [Fresh Folk](https://fresh-folk.com/) or [lukaszadam](https://lukaszadam.com/illustrations) - Illustrations of People
|
||||
|
@ -596,7 +600,6 @@
|
|||
* [Adobe Bridge](https://adobe.com/products/bridge.html) - Adobe Assets Manager
|
||||
* [behind!](https://github.com/kubuzetto/behind) - View Background Images
|
||||
* [Visual Center](https://javier.xyz/visual-center/) - Find the Visual Center of an Image
|
||||
* [WhatTheFont](https://www.myfonts.com/) - Find Font from Image
|
||||
* [Watermarkly](https://watermarkly.com/), [BatchWatermark](https://batchwatermark.com/) or [Watermarkup](https://watermarkup.com/watermark.html) - Image Watermarking
|
||||
* [Watermark Remover](https://www.watermarkremover.io/), [Unwatermark](https://unwatermark.ai/) or [DeWatermark](https://dewatermark.ai/) - Watermark Removal
|
||||
* [Glaze](https://glaze.cs.uchicago.edu/index.html) or [Nightshade](https://nightshade.cs.uchicago.edu/downloads.html) - Protect Digital Art from AI Copies
|
||||
|
@ -722,7 +725,7 @@
|
|||
|
||||
* ⭐ **[Postimages](https://postimages.org/)** - 32MB / Forever
|
||||
* [Imgur](https://imgur.com/) - 20MB Image / 200MB Animated / Forever / [Upload Limits](https://help.imgur.com/hc/en-us/articles/26511665959579-What-files-can-I-upload-Is-there-a-size-limit)
|
||||
* Imgur Tools - [Frontends](https://git.voidnet.tech/kev/imgin), [2](https://codeberg.org/rimgo/rimgo), [3](https://codeberg.org/3np/rimgu)
|
||||
* Imgur Tools - [Frontends](https://codeberg.org/rimgo/rimgo), [2](https://codeberg.org/3np/rimgu)
|
||||
* [tixte](https://tixte.com/) - 15GB Storage Total / Forever / Sign-Up Required
|
||||
* [lookimg](https://lookimg.com/) - 20MB / Forever / Sign-Up Required
|
||||
* [Horizon](https://horizon.pics/) - 75MB (500MB Storage) / Forever / Sign-Up Required
|
||||
|
|
|
@ -96,7 +96,7 @@ 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
|
||||
Download all your favourite software, movies, TV shows, music, games and
|
||||
more!
|
||||
|
||||
- title: Torrenting
|
||||
|
|
|
@ -30,7 +30,7 @@
|
|||
* [Arcai](https://arcai.com/) - WiFi Speed Control
|
||||
* [NeverSSL](http://neverssl.com/) - Fix Public Wi-Fi Login Pages
|
||||
* [WiFi-Password](https://github.com/sdushantha/wifi-password) - Fetch WiFi Password / Generate QR Code
|
||||
* [Hosts File Editor](https://hostsfileeditor.com/) or [HostsDock](https://eshengsky.github.io/HostsDock/) - Windows Hosts File Editors
|
||||
* [SwitchHosts](https://github.com/oldj/SwitchHosts) - Windows Hosts File Editor
|
||||
* [MAC Address](https://macaddress.io/) - MAC Address Lookup
|
||||
* [masscan](https://github.com/robertdavidgraham/masscan) - Port Scanner
|
||||
* [PortChecker](https://portchecker.co/), [ping.pe](https://ping.pe/), [PortCheckers](https://www.portcheckers.com/), [RustCat](https://github.com/robiot/rustcat) or [CanYouSeeMe](https://canyouseeme.org/) - Port Checkers
|
||||
|
@ -89,11 +89,9 @@
|
|||
* [Campsite.bio](https://campsite.bio/) - Unlimited
|
||||
* [Taplink](https://taplink.at/) - Unlimited
|
||||
* [milkshake](https://milkshake.app/) - Unlimited
|
||||
* [LinkSpace.Bio](https://linkspace.bio/) - 250 Limit / Custom URLs
|
||||
* [LinkMix](https://linkmix.co/) - 20 Limit
|
||||
* [pronouns.cc](https://pronouns.cc/) - Share Preferred Pronouns
|
||||
* [LinkSpace.Bio](https://linkspace.bio/) - 250 Limit / Custom URLs
|
||||
* [seemless](https://www.linkinbio.website/) - Link in Bio for TikTok & Instagram
|
||||
* [itsmy.fyi](https://itsmy.fyi/) - Create Homepage via GitHub Issues / [GitHub](https://github.com/rishi-raj-jain/itsmy.fyi)
|
||||
* [AnyImage](https://anyimage.io/) - Create Social Card Links
|
||||
|
||||
***
|
||||
|
@ -103,8 +101,8 @@
|
|||
* ⭐ **[Buster](https://github.com/dessant/buster)** - Auto Captcha Solver
|
||||
* [NopeCHA](https://nopecha.com/) - Auto Captcha Solver / [Required Tokens](https://nopecha.com/manage) / [Discord](https://discord.com/invite/yj7cTYBQaw)
|
||||
* [Privacy Pass](https://github.com/cloudflare/pp-browser-extension) - Save Captcha Tokens
|
||||
* [Democaptcha](https://democaptcha.com/demo-form-eng/hcaptcha.html) - hCaptcha Demo
|
||||
* [ReCAPTCHA Demo](https://www.google.com/recaptcha/api2/demo) or [reCAPTCHA test](https://patrickhlauke.github.io/recaptcha/) - reCAPTCHA Demos
|
||||
* [Democaptcha](https://democaptcha.com/demo-form-eng/hcaptcha.html) - hCaptcha Demo / Get Captcha Tokens
|
||||
* [ReCAPTCHA Demo](https://www.google.com/recaptcha/api2/demo) or [reCAPTCHA test](https://patrickhlauke.github.io/recaptcha/) - reCAPTCHA Demos / Get Captcha Tokens
|
||||
|
||||
***
|
||||
|
||||
|
@ -114,20 +112,17 @@
|
|||
* ↪️ **[IRC Clients / Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/download#wiki_.25B7_irc_tools)**
|
||||
* ⭐ **[Mumble](https://www.mumble.info/)**, [Jam](https://jam.systems/), [TeaSpeak](https://teaspeak.de/gb/) or [TeamSpeak](https://www.teamspeak.com/) / [Warning](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#teamspeak-warning) - Voice Chat
|
||||
* ⭐ **[Hack.chat](https://hack.chat/)**, [Shick](https://shick.me/), [LeapChat](https://www.leapchat.org/), [LittlePlanets](https://littleplanets.us/), [Convene](https://letsconvene.im/), [Stinto](https://stinto.chat/en) or [tik.io](https://tlk.io/) - Minimal Account Free Chats
|
||||
* ⭐ **[Gajim](https://gajim.org/)** or [xabber](https://www.xabber.com/) - XMPP Clients
|
||||
* ⭐ **[Gajim](https://gajim.org/)**, [Profanity](https://profanity-im.github.io/) / [GitHub](https://github.com/profanity-im/profanity) or [xabber](https://www.xabber.com/) - XMPP Clients
|
||||
* [Pidgin](https://www.pidgin.im/) or [Ferdium](https://ferdium.org/) / [GitHub](https://github.com/ferdium/ferdium-app) - Combine Web Apps / Chat Services
|
||||
* [MatterBridge](https://github.com/42wim/matterbridge) - Bridge for Multiple Chat Apps
|
||||
* [Miranda NG](https://www.miranda-ng.org/en/), [Escargot](https://escargot.chat/) or [WeeChat](https://weechat.org/) - Chat Apps
|
||||
* [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://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
|
||||
* [Guildbit](https://guildbit.com/) - Voice Chat Servers
|
||||
* [DJ3D](https://dj3d.io/) - Virtual World Server
|
||||
* [Mini Video Me](https://github.com/maykbrito/mini-video-me) - Webcam Managers
|
||||
* [MiroTalk](https://p2p.mirotalk.com/) / [2](https://mirotalk.up.railway.app/) or [MiroTalk SFU](https://sfu.mirotalk.com/) - Video Chat / [GitHub](https://github.com/miroslavpejic85/mirotalk)
|
||||
* [Videolink2me](https://videolink2me.com/) - Video Chat
|
||||
* [Hello](https://hello.vasanthv.me/) - Video Chat / [GitHub](https://github.com/vasanthv/hello)
|
||||
|
@ -141,9 +136,8 @@
|
|||
|
||||
# ► RSS Tools
|
||||
|
||||
* 🌐 **[All about RSS](https://github.com/AboutRSS/ALL-about-RSS)** / [Telegram](https://t.me/s/aboutrss), [RSSTango](https://rentry.org/rrstango), [Awesome RSS Feeds](https://github.com/plenaryapp/awesome-rss-feeds) or [RSS](https://gist.github.com/thefranke/63853a6f8c499dc97bc17838f6cedcc2) - RSS Feed / Tool Indexes
|
||||
* [hacker-feeds-cli](https://github.com/Mayandev/hacker-feeds-cli) - GitHub, Reddit, Hacker News & other Feeds
|
||||
* [rssmail](https://git.panda-roux.dev/rssmail/about/) or [FeedButler](https://feedbutler.app/en) - RSS to Email
|
||||
* 🌐 **[All about RSS](https://github.com/AboutRSS/ALL-about-RSS)** / [Telegram](https://t.me/s/aboutrss), [RSSTango](https://rentry.org/rrstango) or [RSS](https://gist.github.com/thefranke/63853a6f8c499dc97bc17838f6cedcc2) - RSS Feed / Tool Indexes
|
||||
* [FeedButler](https://feedbutler.app/en) - RSS to Email
|
||||
* [siftrss](https://siftrss.com/) - RSS Feed Filters
|
||||
* [Want My RSS](https://github.com/Reeywhaar/want-my-rss) - Restores Firefox RSS Features
|
||||
* [RSS.app](https://rss.app/) or [Feedle](https://feedle.world/) - RSS Feed Search
|
||||
|
@ -153,6 +147,7 @@
|
|||
|
||||
## ▷ RSS Readers
|
||||
|
||||
* 🌐 **[RSS Feed Reader Index](https://openrss.org/rss-feed-readers)**
|
||||
* ⭐ **[Feedly](https://feedly.com/)** - RSS Reader / [Notifier](https://olsh.me/Feedly-Notifier/)
|
||||
* ⭐ **[RSS Guard](https://github.com/martinrotter/rssguard)** - RSS Reader / [Scraper](https://github.com/Owyn/CSS2RSS) / [Discord](https://discord.com/invite/7xbVMPPNqH)
|
||||
* ⭐ **[Inoreader](https://www.inoreader.com/)** - RSS Reader
|
||||
|
@ -163,6 +158,7 @@
|
|||
* [NewsFlash](https://gitlab.com/news-flash/news_flash_gtk) - RSS Reader
|
||||
* [Miniflux](https://miniflux.app/) - RSS Reader
|
||||
* [Photon](https://git.sr.ht/~ghost08/photon) - RSS Reader
|
||||
* [Feed Flow](https://www.feedflow.dev/) - RSS Reader / [GitHub](https://github.com/prof18/feed-flow)
|
||||
* [selfoss](https://selfoss.aditu.de/) - RSS Reader
|
||||
* [gorss](https://github.com/Lallassu/gorss) - RSS Reader
|
||||
* [NewsPipe](https://github.com/cedricbonhomme/newspipe) - RSS Reader
|
||||
|
@ -178,12 +174,11 @@
|
|||
## ▷ RSS Feed Generators
|
||||
|
||||
* ⭐ **[RSS Bridge](https://rss-bridge.org/bridge01/)** / [GitHub](https://github.com/RSS-Bridge/rss-bridge)
|
||||
* ⭐ **[Feedless](https://feedless.org/)**
|
||||
* ⭐ **[Feedless](https://feedless.org/)** / [GitHub](https://github.com/damoeb/feedless)
|
||||
* [MoRSS](https://morss.it/)
|
||||
* [RSSHub](https://github.com/DIYgod/RSSHub)
|
||||
* [Open RSS](https://openrss.org/)
|
||||
* [RSS Please](https://rsspls.7bit.org/)
|
||||
* [RSS Finder](https://rss-finder.rook1e.com/)
|
||||
* [RSS Finder](https://rss-finder.rook1e.com/) / [GitHub](https://github.com/0x2E/rss-finder)
|
||||
* [FetchRSS](https://fetchrss.com/)
|
||||
* [RSS Diffbot](https://rss.diffbot.com/)
|
||||
* [RuSShdown](https://chaiaeran.github.io/RuSShdown/)
|
||||
|
@ -253,8 +248,8 @@
|
|||
* [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)
|
||||
* [Presearch](https://presearch.com/) / [GitHub](https://github.com/presearchofficial)
|
||||
* [ZincSearch](https://zincsearch-docs.zinc.dev/) / [GitHub](https://github.com/zincsearch/zincsearch)
|
||||
* [Whoogle Search](https://github.com/benbusby/whoogle-search)
|
||||
* [ZincSearch](https://zincsearch-docs.zinc.dev/) / [GitHub](https://github.com/zincsearch/zincsearch) - Self-Hosted
|
||||
* [Whoogle Search](https://github.com/benbusby/whoogle-search) - Self-Hosted
|
||||
* [Bing](https://www.bing.com/)
|
||||
* [Google](https://google.com/)
|
||||
* [Lycos](https://www.lycos.com/)
|
||||
|
@ -335,10 +330,8 @@
|
|||
* [Link Lock](https://rekulous.github.io/link-lock/) - Encrypt & Decrypt Links with Passwords
|
||||
* [scrt.link](https://scrt.link/), [Br3f](https://www.br3f.com/) or [Temporary URL](https://www.temporary-url.com/) - Temporary Single-Use Links
|
||||
* [W.A.R. Links Checker Premium](https://greasyfork.org/en/scripts/2024) - File Host Link Auto-Check
|
||||
* [AmputatorBot](https://www.amputatorbot.com/) - Remove AMP from URLs
|
||||
* [Hovercode](https://hovercode.com/), [QRcodly](https://www.qrcodly.de/), [QR Code Generator](https://www.qr-code-generator.com/), [QRCode Monkey](https://www.qrcode-monkey.com/), [2QR](https://2qr.info/) or [Link to QR](https://link-to-qr.com/) - QR Code Generator For URLs / Text
|
||||
* [Hovercode](https://hovercode.com/), [QRcodly](https://www.qrcodly.de/), [QR Code Generator](https://www.qr-code-generator.com/), [QRCode Monkey](https://www.qrcode-monkey.com/), [2QR](https://2qr.info/) or [Link to QR](https://link-to-qr.com/) - QR Code Generator for URLs / Text
|
||||
* [XML-Sitemaps](https://www.xml-sitemaps.com/) - Sitemap Creator
|
||||
* [pyFuzz](https://github.com/AyoobAli/pyfuzz) - URL Fuzzing Tool
|
||||
* [Backlink Tool](https://backlinktool.io/) or [IndexKings](http://www.indexkings.com/) - URL Indexer
|
||||
|
||||
***
|
||||
|
@ -347,6 +340,8 @@
|
|||
|
||||
* ⭐ **[Bypass All Shortlinks](https://codeberg.org/Amm0ni4/bypass-all-shortlinks-debloated/)** - Bypass Link Shorteners
|
||||
* ⭐ **[Bypass.vip](https://bypass.vip/)** - Ad Links Bypasser / [Userscript](https://github.com/bypass-vip/userscript/raw/refs/heads/main/bypass-vip.user.js) / [Discord](https://bypass.vip/discord)
|
||||
* [bypass.link](https://bypass.link/) - Bypass Link Shorteners
|
||||
* [TimerHooker](https://greasyfork.org/en/scripts/372673) - Skip Timers on File Hosts
|
||||
* [bypass.city](https://bypass.city/), [2](https://adbypass.org/) - Bypass Link Shorteners / [Discord](https://discord.gg/bypass-city)
|
||||
* [BypassUnlock](https://bypassunlock.com/) - Bypass Link Shorteners
|
||||
* [Adsbypasser](https://adsbypasser.github.io/) - Bypass Link Shorteners
|
||||
|
@ -380,7 +375,7 @@
|
|||
* [TinyURL](https://tinyurl.com/) - `tinyurl.com/twgf2ks` / [Reveal URL](https://i.ibb.co/Wv90gT4/0d2992342fc7.png)
|
||||
* [s.id](https://home.s.id/) - `s.id/EQBsg`
|
||||
* [1kb.link](https://1kb.link/) - `1kb.link/acc0a`
|
||||
* [X.gd](https://x.gd/) `x.gd/rcg0Z`
|
||||
* [X.gd](https://x.gd/) - `x.gd/rcg0Z`
|
||||
* [Bom.so](https://bom.so/) - `bom.so/VevMJv`
|
||||
* [Linkify](https://creator.linkify.cz/) - `linkify.cz/1a0O`
|
||||
* [By.com.vn](https://by.com.vn/) - `by.com.vn/tKYeSo`
|
||||
|
@ -395,9 +390,6 @@
|
|||
* [Goo.su](https://goo.su/) - `goo.su/7pNRjy7` / [Chrome Extension](https://chromewebstore.google.com/detail/free-link-shortener-goosu/clcoifeibkncgnegebeehkodandleohn)
|
||||
* [AI6](https://ai6.net/) - `ai6.net/nm3tyz`
|
||||
* [SmartLnks](https://smartlnks.com/) - `smartlnks.com/Vjr0m`
|
||||
* [Bitly](https://bitly.com/) - `bit.ly/3cmqPIu` / Account Required / [Reveal URL](https://i.ibb.co/tQVKYRq/3a97e5dd64b2.png)
|
||||
* [Sum.vn](https://sum.vn/) - `sum.vn/DTrXk` / Account Required
|
||||
* [S.EE](https://s.ee/) - `u.nu/5nhzi` / Account Required
|
||||
* [Anon.to](https://anon.to/) - Anonymous URLs / `anon.to/7SWqpG`
|
||||
* [Thinfi](https://thinfi.com/) - Password Protected Short Links / `thinfi.com/q8aw`
|
||||
* [emojied](https://emojied.net/) - Emoji URL Shortener
|
||||
|
@ -490,7 +482,7 @@
|
|||
* [Bloody Vikings!](https://addons.mozilla.org/en-US/firefox/addon/bloody-vikings/) - Temp Email Extension
|
||||
* [Tmail.io](https://tmail.io/) - Gmail / Forever / 1 Day / 4 Domains
|
||||
* [22.Do](https://22.do/) - Gmail / 1 Day / 1 Day / 3 Domains
|
||||
* [MailTickingl](https://www.mailticking.com/) - Gmail / 2 Domains
|
||||
* [MailTicking](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
|
||||
|
@ -526,12 +518,11 @@
|
|||
## ▷ Email Aliasing
|
||||
|
||||
* ⭐ **[SimpleLogin](https://simplelogin.io/)** - Email Aliasing / [Subreddit](https://www.reddit.com/r/Simplelogin/) / [X](https://x.com/SimpleLogin) / [GitHub](https://github.com/simple-login/app)
|
||||
* ⭐ **[addy.io](https://addy.io/)** - Email Aliasing / [GitHub](https://github.com/anonaddy/anonaddy)
|
||||
* ⭐ **[DuckDuckGo Email Protection](https://duckduckgo.com/email/)** - Email Aliasing
|
||||
* ⭐ **[addy.io](https://addy.io/)** - Email Aliasing / [GitHub](https://github.com/anonaddy/anonaddy)
|
||||
* [Mailgw](https://mailgw.com/) - Email Aliasing
|
||||
* [erine.email](https://erine.email/) - Email Aliasing
|
||||
* [33mail](https://33mail.com/) - Email Aliasing
|
||||
* [forwardemail](https://github.com/forwardemail/forwardemail.net) - Email Aliasing
|
||||
* [TrashMail](https://trashmail.com/) - Email Aliasing
|
||||
* [Adguard Mail](https://adguard-mail.com/) - Email Aliasing
|
||||
|
||||
|
@ -547,7 +538,6 @@
|
|||
* [linkhut](https://ln.ht/), [Linkhorse](https://link.horse/) or [TinyGem](https://tinygem.org/) - Social Bookmarking
|
||||
* [SuperMemory](https://supermemory.ai/) - AI Bookmark App / [GitHub](https://github.com/supermemoryai/supermemory)
|
||||
* [Bookmarks Organizer](https://github.com/cadeyrn/bookmarks-organizer), [Keep or Delete](https://www.soeren-hentzschel.at/firefox-webextensions/keep-or-delete-bookmarks/) or [Bookmarks Cleanup](https://chromewebstore.google.com/detail/bookmarks-clean-up/oncbjlgldmiagjophlhobkogeladjijl) - Bookmark Cleanup Extensions
|
||||
* [Bookmark Dupes](https://chromewebstore.google.com/detail/bookmark-dupes/ombpkjoelcapenbepmgifadkgpokfgfd) - Remove Duplicate Bookmarks (Chrome)
|
||||
* [Auto-Sort Bookmarks](https://github.com/eric-bixby/auto-sort-bookmarks-webext) - Bookmark Sorting Extension
|
||||
* [Default Bookmark Folder](https://github.com/teddy-gustiaux/default-bookmark-folder) - Change Default Firefox Bookmark Folder
|
||||
* [Bookmark Search Plus 2](https://github.com/aaFn/Bookmark-search-plus-2) - Search Firefox Bookmarks
|
||||
|
@ -623,7 +613,7 @@
|
|||
* ↪️ **[Bookmark Managers](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/internet-tools#wiki_.25B7_bookmark_managers)**
|
||||
* ↪️ **[Tab Managers](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_tab_managers)**
|
||||
* ↪️ **[Browser Startpages](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_browser_startpages)**
|
||||
* ⭐ **[Stylus](https://add0n.com/stylus.html)** - Custom Website Color Schemes / [User Styles](https://userstyles.world/), [2](https://uso.kkx.one/) / [Oldschool Styles](https://forum.spacehey.com/topic?id=90895) / [Catppuccin](https://github.com/catppuccin/userstyles)
|
||||
* ⭐ **[Stylus](https://add0n.com/stylus.html)** - Custom Website Color Schemes / [User Styles](https://userstyles.world/), [2](https://uso.kkx.one/) / [OLED](https://github.com/zettaexa/userstyles) / [Oldschool](https://forum.spacehey.com/topic?id=90895) / [Catppuccin](https://github.com/catppuccin/userstyles)
|
||||
* ⭐ **[Dark Reader](https://darkreader.org/)**, [Midnight Lizard](https://midnight-lizard.org/) or [Custom Dark Mode](https://mybrowseraddon.com/custom-dark-mode.html) - Dark Mode
|
||||
* ⭐ **[Zoom WE](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#zoom-page-addons)** or [Custom Page Zoom](https://mybrowseraddon.com/custom-page-zoom.html) - Improves Zoom Functionality
|
||||
* ⭐ **[ScrollAnywhere](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#scrollanywhere-addons)** - Improves Scrolling Functionality
|
||||
|
@ -675,7 +665,7 @@
|
|||
* [Distil](https://distill.io/) or [Update Scanner](https://sneakypete81.github.io/updatescanner/) - Page Change Detection / Notification
|
||||
* [Offline Mode](https://mybrowseraddon.com/offline-mode.html) - Disconnect Browser from the Internet
|
||||
* [Page Edit](https://mybrowseraddon.com/page-edit.html) - Turn Webpages into Editable Documents
|
||||
* [Save Page WE](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#savepagewe) or [SingleFile](https://github.com/gildas-lormeau/SingleFile) - Save Webpages as HTML
|
||||
* [SingleFile](https://github.com/gildas-lormeau/SingleFile) - Save Webpages as HTML
|
||||
* [Listly](https://www.listly.io/) - Webpage to Spreadsheet Converter
|
||||
* [Favicon Detector](https://github.com/BlackGlory/favicon-detector) - Detect Website Favicons
|
||||
* [Betterviewer](https://github.com/Ademking/Betterviewer) - Image View Mode
|
||||
|
@ -701,7 +691,7 @@
|
|||
|
||||
* 🌐 **[Firefox Addons](https://addons.mozilla.org/en-US/firefox/extensions/)** - Firefox Addon Store
|
||||
* ⭐ **[FoxyTab](https://addons.mozilla.org/en-US/firefox/addon/foxytab/)** - Tab Tools
|
||||
* ⭐ **[Context Search](https://addons.mozilla.org/en-US/firefox/addon/contextsearch-web-ext/)** - Search Selected Text / Multi Site Search
|
||||
* ⭐ **[Context Search](https://addons.mozilla.org/en-US/firefox/addon/contextsearch/)** or [Context Search Web](https://addons.mozilla.org/en-US/firefox/addon/contextsearch-web-ext/) - Search Selected Text / Multi Site Search
|
||||
* [Firefox Containers](https://addons.mozilla.org/en-US/firefox/addon/multi-account-containers/), [Container Tab Groups](https://addons.mozilla.org/en-US/firefox/addon/container-tab-groups/) or [Temporary Containers](https://addons.mozilla.org/en-US/firefox/addon/temporary-containers/) - Separate Firefox Sessions / [Guide](https://www.thechiefmeat.com/guides/containers.html)
|
||||
* [FoxyLink](https://addons.mozilla.org/en-US/firefox/addon/foxylink/) - Link Tools
|
||||
* [Multithreaded Download Manager](https://addons.mozilla.org/en-US/firefox/addon/multithreaded-download-manager/) - Download Manager
|
||||
|
@ -709,11 +699,11 @@
|
|||
* [FX Cast](https://hensm.github.io/fx_cast/) - Enable Chromecast in Firefox
|
||||
* [Firefox Scripts](https://github.com/xiaoxiaoflood/firefox-scripts) - Chrome Extensions in Firefox
|
||||
* [Dark Background and Light Text](https://github.com/m-khvoinitsky/dark-background-light-text-extension) - Dark Mode
|
||||
* [New Tab Override](https://www.soeren-hentzschel.at/firefox-webextensions/new-tab-override/) - Pick Site that Opens in New Tabs
|
||||
* [New Tab Override](https://www.soeren-hentzschel.at/firefox-webextensions/new-tab-override/) - Pick Site that Opens in New Tabs / [GitHub](https://github.com/cadeyrn/newtaboverride)
|
||||
* [Multi Tabs](https://addons.mozilla.org/en-US/firefox/addon/search-multi-tabs/) - Multi Tab Word Search
|
||||
* [Search Site WE](https://addons.mozilla.org/en-US/firefox/addon/search-site-we/) - Search Current Domain
|
||||
* [Firefox Color](https://color.firefox.com/) or [SwiftTheme](https://addons.mozilla.org/en-US/firefox/addon/swifttheme/) - Custom Firefox Theme Creation
|
||||
* [Simple Gesture](https://github.com/utubo/firefox-simple_gesture) or [Gesturefy](https://github.com/Robbendebiene/Gesturefy) - Mouse Gestures
|
||||
* [Gesturefy](https://github.com/Robbendebiene/Gesturefy) - Mouse Gestures
|
||||
* [User-Agent String Switcher](https://addons.mozilla.org/en-US/firefox/addon/user-agent-string-switcher/) - Switch Your User-Agent
|
||||
* [Chrome Mask](https://addons.mozilla.org/en-US/firefox/addon/chrome-mask/) - Use Chrome-Only Sites on Firefox / [GitHub](https://github.com/denschub/chrome-mask)
|
||||
* [Always Visible](https://addons.mozilla.org/en-US/firefox/addon/always-visible/) - Always Active / On-Top Window
|
||||
|
@ -773,7 +763,7 @@
|
|||
|
||||
* 🌐 **[Awesome Userscripts](https://github.com/awesome-scripts/awesome-userscripts)**, [XIU2](https://github.com/XIU2/UserScript) or [Userscript.zone](https://www.userscript.zone/) - Userscript Indexes
|
||||
* ↪️ **[Google Search Userscripts](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/internet-tools#wiki_.25B7_google_search_tools)**
|
||||
* ⭐ **[Violentmonkey](https://violentmonkey.github.io/)**, **[Tampermonkey](https://www.tampermonkey.net/)** or [Firemonkey](https://addons.mozilla.org/en-US/firefox/addon/firemonkey/) - Userscript Managers
|
||||
* ⭐ **[Violentmonkey](https://violentmonkey.github.io/)** / [Discord](https://discord.gg/XHtUNSm6Xc), **[Tampermonkey](https://www.tampermonkey.net/)** or [Firemonkey](https://addons.mozilla.org/en-US/firefox/addon/firemonkey/) - Userscript Managers
|
||||
* ⭐ **[Greasy Fork](https://greasyfork.org/)**, [OpenUserJS](https://openuserjs.org/) or [Userscripts](https://userscripts-mirror.org/) - Install Userscripts
|
||||
* ⭐ **Greasy Fork Tools** - [Enhancements](https://greasyfork.org/en/scripts/473830) / [Helper](https://greasyfork.org/en/scripts/393396) / [Tweaks](https://greasyfork.org/en/scripts/368183) / [Cleanup Script](https://greasyfork.org/en/scripts/12179) / [Themes](https://greasyfork.org/en/scripts/4336) / [Dark Theme](https://greasyfork.org/en/scripts/404443)
|
||||
* ⭐ **[Picviewer CE+](https://greasyfork.org/en/scripts/24204)** - Image Viewing Tool
|
||||
|
@ -842,7 +832,6 @@
|
|||
## ▷ Web Scraping / Crawling
|
||||
|
||||
* 🌐 **[Awesome Web Scraping](https://github.com/lorien/awesome-web-scraping)** or **[Web Scraping FYI](https://webscraping.fyi/)** - Web Scraping Tools / Resources
|
||||
* 🌐 **[Awesome-crawler](https://github.com/BruceDone/awesome-crawler)** - Crawling Resources
|
||||
* ⭐ **[Instant Data Scraper](https://chromewebstore.google.com/detail/instant-data-scraper/ofaokhiedipichpaobibbnahnkdoiiah)** - Browser Extension
|
||||
* [SpiderSuite](https://spidersuite.github.io/SSuite/) - Advanced Web Crawler / [GitHub](https://github.com/3nock/SpiderSuite)
|
||||
* [Heritrix](https://heritrix.readthedocs.io/) - Internet Archive's Web Crawler / [GitHub](https://github.com/internetarchive/heritrix3)
|
||||
|
@ -897,4 +886,4 @@
|
|||
* [OSINTgeek](https://osintgeek.de/tools) - General Index
|
||||
* [OSINT for Countries](https://github.com/wddadk/OSINT-for-countries) / [V2](https://github.com/paulpogoda/OSINT-for-countries-V2.0) - Indexes Organized by Country
|
||||
* [DiscordOSINT](https://github.com/husseinmuhaisen/DiscordOSINT) - Discord OSINT Index
|
||||
* [Awesome Telegram OSINT](https://github.com/ItIsMeCall911/Awesome-Telegram-OSINT) or [The OSINT Toolbox](https://github.com/The-Osint-Toolbox/Telegram-OSINT) - Telegram OSINT Indexes
|
||||
* [Awesome Telegram OSINT](https://github.com/ItIsMeCall911/Awesome-Telegram-OSINT) or [The OSINT Toolbox](https://github.com/The-Osint-Toolbox/Telegram-OSINT) - Telegram OSINT Indexes
|
|
@ -48,9 +48,9 @@
|
|||
* [LinuxJourney](https://linuxjourney.com/) - Interactive Linux Guides
|
||||
* [HowToLinux](https://howtolinux.vercel.app) - Linux Desktop Guides
|
||||
* [Self Managed Life](https://wiki.futo.org/) - FOSS / Self-Hosting Guide / [Video](https://youtu.be/Et5PPMYuOc8), [2](https://youtu.be/3fW9TV1WQi8)
|
||||
* [Server World](https://www.server-world.info/en/) - Network Server Guides
|
||||
* [Server World](https://www.server-world.info/en/) - Network Server Guides
|
||||
* [HowtoForge](https://www.howtoforge.com/) or [Comfy.Guide](https://comfy.guide/) - Linux Server Software Guides
|
||||
* [Sindresorhus Guides](https://github.com/sindresorhus/guides) - Linux Guides For Node.js Developers
|
||||
* [Sindresorhus Guides](https://github.com/sindresorhus/guides) - Linux Guides for Node.js Developers
|
||||
* [Erik Dubois](https://www.youtube.com/c/ErikDubois) - Arch-centric Linux Video Tutorials
|
||||
* [Linuxtopia](https://www.linuxtopia.org/) - Linux Guides
|
||||
* [Vim Tutorials](https://www.youtube.com/playlist?list=PL3cu45aM3C2DJVGfCjSBB1yD9YkC7q27-) - Vim Tutorial Playlist by Mental Outlaw
|
||||
|
@ -116,7 +116,7 @@
|
|||
* [PiVPN](https://pivpn.io/) - Raspberry Pi VPN / [GitHub](https://github.com/pivpn/pivpn)
|
||||
* [raspberrypiwireguard](https://github.com/adrianmihalko/raspberrypiwireguard) - Install WireGuard on Raspberry Pi
|
||||
* [CaribouLite](https://github.com/cariboulabs/cariboulite) - Raspberry Pi Tx/Rx 6GHz SDR
|
||||
* [Piper](https://github.com/rhasspy/piper) - Raspberry Pi Text-To-Speech
|
||||
* [Piper](https://github.com/rhasspy/piper) - Raspberry Pi Text-To-Speech
|
||||
|
||||
***
|
||||
|
||||
|
@ -144,8 +144,8 @@
|
|||
* ⭐ **[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
|
||||
* [Darling](https://www.darlinghq.org/) - Run macOS Apps on Linux / [GitHub](https://github.com/darlinghq/darling) / [Discord](https://discord.com/invite/XRD3mQA)
|
||||
* [innoextract](https://constexpr.org/innoextract/) - Windows Installer Unpacker / [GitHub](https://github.com/dscharrer/innoextract)
|
||||
* [nativefier_tauri](https://github.com/hamza72x/web2app) - Turn Webpages into Desktop Apps
|
||||
* [Autokey](https://autokey.github.io/index.html) - Linux Automation Utility / [GitHub](https://github.com/autokey/autokey)
|
||||
* [Touchégg](https://github.com/JoseExposito/touchegg) - Multi-Touch Gesture Recognizer
|
||||
|
@ -160,7 +160,7 @@
|
|||
* [GammaStep](https://gitlab.com/chinstrap/gammastep) - Adjust Screen Temperature
|
||||
* [Weylus](https://github.com/H-M-H/Weylus) - Use Mobile Device as Trackpad
|
||||
* [AudioSource](https://github.com/gdzx/audiosource) - Use Mobile Device as Microphone
|
||||
* [Ollama](https://ollama.com/) / [Discord](https://discord.gg/ollama) or [Alpaca](https://jeffser.com/alpaca/) - Run LLMs on Linux
|
||||
* [Ollama](https://ollama.com/) / [GitHub](https://github.com/ollama/ollama) / [Discord](https://discord.gg/ollama) or [Alpaca](https://jeffser.com/alpaca/) - Run LLMs on Linux
|
||||
* [nyrna](https://nyrna.merritt.codes) - Suspend Apps / Games
|
||||
* [Solaar](https://github.com/pwr-Solaar/Solaar) - Logitech Device Manager
|
||||
* [bluetuith](https://github.com/darkhz/bluetuith) - Bluetooth Manager
|
||||
|
@ -302,7 +302,6 @@
|
|||
* ⭐ **[Kapital Sin](https://www.kapitalsin.com/forum/index.php?board=4.0)** - Linux Games / Use [Translator](https://github.com/FilipePS/Traduzir-paginas-web#install)
|
||||
* ⭐ **[Torrminatorr](https://forum.torrminatorr.com/)** - Linux Games
|
||||
* ⭐ **[johncena141](https://1337x.to/user/johncena141/)** - Linux Games / [Search](https://games.melroy.org/) / [Support](https://gitlab.com/jc141x/portal)
|
||||
* [linuxgames](https://rentry.co/FMHYBase64#linux-games) - Linux Games
|
||||
* [GameHub](https://tkashkin.github.io/projects/gamehub/), [Gnome Games](https://wiki.gnome.org/Apps/Games), [UnderTaker141](https://github.com/AbdelrhmanNile/UnderTaker141) or [Steal](https://github.com/AbdelrhmanNile/steal) - Game Libraries / Launchers
|
||||
* [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/winesapOS/winesapOS) - Play Games on Storage Devices
|
||||
|
@ -398,7 +397,7 @@
|
|||
* [easy-google-drive-downloader](https://github.com/mzramna/easy-google-drive-downloader) or [GDown](https://github.com/wkentaro/gdown) - Google Drive Downloader
|
||||
* [google-drive-ocamlfuse](https://github.com/astrada/google-drive-ocamlfuse) - Mount Google Drive
|
||||
* [maestral](https://maestral.app/) - Dropbox Client
|
||||
* [openmediavault](https://www.openmediavault.org/) / [Github](https://github.com/openmediavault/openmediavault/) or [SeaFile](https://github.com/ZizzyDizzyMC/linx-server/) - Self-Hosted Cloud Storage
|
||||
* [openmediavault](https://www.openmediavault.org/) / [GitHub](https://github.com/openmediavault/openmediavault/) or [SeaFile](https://github.com/ZizzyDizzyMC/linx-server/) - Self-Hosted Cloud Storage
|
||||
* [apt-fast](https://github.com/ilikenwf/apt-fast) - APT Download Accelerator
|
||||
* [Nala](https://gitlab.com/volian/nala) - APT Frontend
|
||||
* [aMule](https://www.amule.org/) - eMule-like P2P Client
|
||||
|
@ -476,7 +475,7 @@
|
|||
## ▷ Terminal / Shell
|
||||
|
||||
* 🌐 **[Awesome Shell](https://github.com/alebcay/awesome-shell)**, [tldr](https://github.com/tldr-pages/tldr/) or [AltBox](https://altbox.dev/) - Linux Shell Resources
|
||||
* 🌐 **[Awesome TUIs](https://github.com/rothgar/awesome-tuis)** or [TerminalTrove](https://terminaltrove.com/) - List of TUIs
|
||||
* 🌐 **[Awesome TUIs](https://github.com/rothgar/awesome-tuis)**, [The Terminal Directory](https://termui.sh/) or [TerminalTrove](https://terminaltrove.com/) - List of TUIs
|
||||
* ↪️ **[Linux Shell Index](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_command_line_shells)** or [Modern Unix](https://github.com/ibraheemdev/modern-unix)
|
||||
* ⭐ **[Alacritty](https://alacritty.org)**, **[Kitty](https://sw.kovidgoyal.net/kitty/overview/)**, [Simple Terminal](https://st.suckless.org/), [Wave](https://www.waveterm.dev/), [Ghostty](https://ghostty.org/), [yakuake](https://apps.kde.org/yakuake/), [emacs-eat](https://codeberg.org/akib/emacs-eat) or [tabby](https://tabby.sh/) - Linux Terminals Emulators
|
||||
* ⭐ **[Shell GPT](https://github.com/TheR1D/shell_gpt)**, [2](https://github.com/jiacai2050/shellgpt) - AI Terminal Chatbot / GPT
|
||||
|
@ -511,6 +510,7 @@
|
|||
|
||||
## ▷ Ricing / Customization
|
||||
|
||||
* 🌐 **[Awesome Ricing](https://github.com/fosslife/awesome-ricing)** - Linux Ricing Resources
|
||||
* ↪️ **[Linux Themes](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_linux_themes)** - Themes for Linux
|
||||
* ⭐ **[Elkowar's Wacky Widgets](https://elkowar.github.io/eww)** or **[Aylur's GTK Shell](https://github.com/Aylur/ags)** - Widgeting Systems
|
||||
* [wpgtk](https://deviantfero.github.io/wpgtk) - Fully Customizable Unix Color Schemer
|
||||
|
@ -525,13 +525,13 @@
|
|||
* [Burn My Windows](https://github.com/Schneegans/Burn-My-Windows) - Window Closing Effects
|
||||
* [theme.sh](https://github.com/lemnos/theme.sh), [NotCurses](https://github.com/dankamongmen/notcurses) / [Wiki](https://nick-black.com/dankwiki/index.php/Notcurses) or [Shell Color Scripts](https://gitlab.com/dwt1/shell-color-scripts) / [2](https://github.com/stark/Color-Scripts) - Custom Terminal Themes
|
||||
* [Gorgeous GRUB](https://github.com/Jacksaur/Gorgeous-GRUB) - GRUB Themes
|
||||
* [font-manager](https://github.com/FontManager/font-manager) - Font Manager
|
||||
* [Iconic](https://github.com/youpie/Iconic) - Add Folder Icons
|
||||
|
||||
***
|
||||
|
||||
# ► Mac Apps
|
||||
|
||||
* 🌐 **[The Terminal Directory](https://termui.sh/)** - List of Terminal Emulators
|
||||
* ↪️ **[Multi-Platform Readers](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/reading/#wiki_.25B7_ebook_readers)** - Ebook Reader Index
|
||||
* ⭐ **[gibMacOS](https://github.com/corpnewt/gibMacOS)** or [Mist](https://github.com/ninxsoft/Mist) - Download macOS
|
||||
* ⭐ **[Readdle](https://readdle.com/documents)** - Multipurpose File Tool
|
||||
|
@ -554,8 +554,8 @@
|
|||
* [Docker OSX](https://github.com/sickcodes/Docker-OSX) - Mac VM in Docker
|
||||
* [SwiftUI Win11](https://jinxiansen.github.io/Windows11/) - Windows 11 Desktop Client for macOS
|
||||
* [OrbStack](https://orbstack.dev/) - Docker Client
|
||||
* [foobar2000](https://www.foobar2000.org/mac), [Cider](https://cider.sh/) or [VOX Mac Music Player](https://vox.rocks/mac-music-player) - Audio Players
|
||||
* [Silicio](https://apps.apple.com/us/app/silicio-mini-player/id933627574) - Audio Mini Player
|
||||
* [foobar2000](https://www.foobar2000.org/mac) or [VOX Mac Music Player](https://vox.rocks/mac-music-player) - Audio Players
|
||||
* [Silicio](https://apps.apple.com/us/app/silicio-mini-player/id933627574) - Audio Mini Player
|
||||
* [Alfred Spotify Mini Player](https://alfred-spotify-mini-player.com/) - Spotify Mini Player
|
||||
* [SoundSeer](https://github.com/jonathangarelick/SoundSeer) - Spotify in Menu Bar
|
||||
* [Nuage](https://github.com/lbrndnr/nuage-macos) - Soundcloud Client
|
||||
|
@ -579,7 +579,7 @@
|
|||
* [JDOwnloader2](https://jdownloader.org/jdownloader2) - File Download Manager / [Debloat](https://rentry.org/jdownloader2) / [Dark Theme](https://redd.it/q3xrgj), [2](https://github.com/moktavizen/material-darker-jdownloader/) / [Dracula Theme](https://draculatheme.com/jdownloader2)
|
||||
* [Go Speed](https://gopeed.com/) - File Download Manager / [GitHub](https://github.com/GopeedLab/gopeed) / [Extension](https://github.com/GopeedLab/browser-extension) / [Plugins](https://github.com/search?q=topic%3Agopeed-extension&type=repositories)
|
||||
* [Progressive Downloader](https://macpsd.net/) - File Download Manager
|
||||
* [Transnomino](https://www.transnomino.com/) or [Riffo](https://riffo.ai/rename) - Bulk File / Folder Renaming
|
||||
* [Transnomino](https://www.transnomino.com/) or [Riffo](https://riffo.ai/rename) - Bulk File / Folder Renaming
|
||||
* [FlyingCarpet](https://github.com/spieglt/FlyingCarpet) - Cross-Platform AirDrop / [Guide](https://redd.it/vthltc)
|
||||
* [Adobe Downloader](https://github.com/X1a0He/Adobe-Downloader/blob/main/readme-en.md) - Adobe Product Downloader
|
||||
* [Adobe Creative Cloud](https://rentry.co/FMHYBase64#mac-adobe-cc) - Adobe CC Guides
|
||||
|
@ -594,11 +594,9 @@
|
|||
* [ViennaRSS](https://www.vienna-rss.com/) - RSS Feed Reader
|
||||
* [Tachimanga](https://tachimanga.app/) / [Extensions](https://keiyoushi.github.io/extensions/), [2](https://discord.gg/3FbCpdKbdY), [3](https://wotaku.wiki/guides/tech/repo) - Manga Reader / [Discord](https://discord.gg/8aMcdYdaBz)
|
||||
* [Dialect](https://github.com/dialect-app/dialect) - Translator
|
||||
* [Flow](https://wisprflow.ai/) - Audio Transcription Tools
|
||||
* [Drafts](https://getdrafts.com/), [CotEditor](https://coteditor.com/), [TextMate](https://macromates.com/), [Nebo](https://apps.apple.com/us/app/nebo-notes-pdf-annotations/id1119601770), [Strflow](https://strflow.app/), [Kyun](https://github.com/lennart-finke/kyun), [Notenik](https://notenik.app/) or [Voodoopad](https://www.voodoopad.com/) - Text Editors / Notes
|
||||
* [Agenda](https://agenda.com/) - Mac Notes Organizer / [Forum](https://agenda.community/)
|
||||
* [Taskpaper](https://www.taskpaper.com/) - To-Do Apps
|
||||
* [Stroke](https://stroke.lllllllllllllllll.com/) - Text (You Can't Delete) Editor
|
||||
* [BibDesk](https://bibdesk.sourceforge.io/) - Bibliography Manager
|
||||
* [ElectronMail](https://github.com/vladimiry/ElectronMail) - Email Clients
|
||||
* [Microsoft-Office-For-MacOS](https://github.com/alsyundawy/Microsoft-Office-For-MacOS) - Office Suites
|
||||
|
@ -637,11 +635,10 @@
|
|||
* [Tart](https://tart.run/) - Virtual Machine Manager . [GitHub](https://github.com/cirruslabs/tart)
|
||||
* [USBMap](https://github.com/corpnewt/USBMap) - Map macOS USB Ports
|
||||
* [MacVim](https://macvim.org/), [CodeEdit](https://www.codeedit.app/) or [AuroraEditor](https://auroraeditor.com/) - Code Editors
|
||||
* [iTerm2](https://iterm2.com/) - Replacements for Terminal
|
||||
* [BetterDisplay](https://github.com/waydabber/BetterDisplay) - Display Controller
|
||||
* [DisplayPlacer](https://github.com/jakehilborn/displayplacer) - Dual Monitor Manager
|
||||
* [Pictogram](https://pictogramapp.com/), [IconSet](https://github.com/tale/iconset) or [IconChamp](https://www.macenhance.com/iconchamp.html) - Custom App Icons
|
||||
* [Manila](https://github.com/neilsardesai/Manila) - Change Folder Colors
|
||||
* [Tintd](https://www.tintd.app/) or [Manila](https://github.com/neilsardesai/Manila) - Change Folder Colors
|
||||
* [Dynamic Wallpaper Club](https://dynamicwallpaper.club/) - Dynamic Wallpaper App
|
||||
* [wallpapper](https://github.com/mczachurski/wallpapper) or [Equinox](https://equinoxmac.com/) - Dynamic Wallpaper Creators
|
||||
* [Plash](https://sindresorhus.com/plash) - Use Website as Wallpaper
|
||||
|
@ -680,6 +677,7 @@
|
|||
* [SelfControlApp](https://selfcontrolapp.com/) - Website Blocker
|
||||
* [Typist](https://apps.apple.com/us/app/typist/id415166115?ign-mpt=uo%3D4&mt=12) - Typing Practice
|
||||
* [Comet](https://apps.apple.com/us/app/comet-for-reddit/id1146204813) or [OpenArtemis](https://apps.apple.com/app/id6473462587) - Reddit Clients
|
||||
* [Sink It](https://apps.apple.com/us/app/sink-it-for-reddit/id6449873635) - Reddit Enhancement Extension
|
||||
* [Grayscale Mode](https://github.com/rkbhochalya/grayscale-mode) - Grayscale Control
|
||||
* [macOSicons](https://macosicons.com/) - Icons
|
||||
* [equinux](https://equinux.github.io/) - OS X Certificate Fix
|
||||
|
@ -737,7 +735,7 @@
|
|||
* [Gas Mask](https://github.com/2ndalpha/gasmask) - Block Ads via Host Files
|
||||
* [1Blocker](https://1blocker.com/) - DNS Adblocker
|
||||
* [AdGuard Safari](https://adguard.com/en/adguard-safari/overview.html) - AdGuard for Safari
|
||||
* [wBlock](https://github.com/0xCUB3/wBlock) or [Stay](https://apps.apple.com/app/stay-for-safari/id1591620171) - Safari Adblockers
|
||||
* [wBlock](https://github.com/0xCUB3/wBlock) or [Stay](https://apps.apple.com/app/stay-for-safari/id1591620171) - Safari Adblockers
|
||||
* [Lockdown Privacy](https://lockdownprivacy.com/) - Block Trackers / Ads
|
||||
* [LuLu](https://objective-see.org/products/lulu.html) - Mac Firewall
|
||||
* [Streisand](https://streisand.pages.dev/) - Mac Proxy Client
|
||||
|
|
|
@ -8,7 +8,6 @@
|
|||
|
||||
* 🌐 **[Awesome List Index](https://github.com/sindresorhus/awesome), [2](https://github.com/topics/awesome)** or [awesome-list](https://github.com/topics/awesome-list) - All Awesome Lists
|
||||
* 🌐 **[lists](https://github.com/jnv/lists)** - List Index
|
||||
* 🌐 **[FMHY Guides](https://guides.fmhy.lol/)** - All Guides in One Place
|
||||
* ↪️ **[AI Indexes](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/ai#wiki_.25BA_ai_indexes)**
|
||||
* ↪️ **[Piracy Site Proxies](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_piracy_site_proxies)**
|
||||
* ⭐ **[FMHY Search](https://www.reddit.com/r/FREEMEDIAHECKYEAH/comments/105xraz/howto_search_fmhy/)** - Search the Wiki
|
||||
|
@ -18,7 +17,7 @@
|
|||
* [Track Awesome List](https://www.trackawesomelist.com/) - Daily Awesome List Updates
|
||||
* [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/), [Start.me Stats](https://start.me/sites/int), [HypeStat](https://hypestat.com/) or [CuteStat](https://www.cutestat.com/) - Site Rankings & Stats
|
||||
* [StatsCrop](https://www.statscrop.com/websites/top-sites/), [xRanks](https://xranks.com/), [Start.me Stats](https://start.me/sites/int), [HypeStat](https://hypestat.com/) or [CuteStat](https://www.cutestat.com/) - Site Rankings & Stats
|
||||
* [findPWA](https://findpwa.com/), [Store.app](https://store.app/), [SaaS Discovery](https://saasdiscovery.com/) or [Electron](https://www.electronjs.org/apps) - Web App Indexes
|
||||
* [SmartLinks](https://smartlinks.org/index.html) - Website Directory
|
||||
* [OneMillionScreenshots](https://onemillionscreenshots.com/) - Website Snapshot Map
|
||||
|
@ -30,7 +29,7 @@
|
|||
* [DeletedCity](http://deletedcity.net/) or [Restorativland](https://geocities.restorativland.org/) - Geocities Site Indexes
|
||||
* [National Archives](https://www.nationalarchives.gov.uk/webarchive/) - UK Government Site Archive
|
||||
* [The Hive Index](https://thehiveindex.com/) - Online Communities Index
|
||||
* [Gazetteer of Wikis](https://meta.miraheze.org/wiki/Gazetteer_of_wikis) or [WikiDiscover](https://meta.miraheze.org/wiki/Special:WikiDiscover) - Miraheze Wiki Indexes
|
||||
* [Gazetteer of Wikis](https://meta.miraheze.org/wiki/Gazetteer_of_wikis), [Wiki Stats](https://wikistats.wmcloud.org/display.php?t=mh) or [WikiDiscover](https://meta.miraheze.org/wiki/Special:WikiDiscover) - Miraheze Wiki Indexes
|
||||
* [NetSplit](https://netsplit.de/) - IRC Channel Index
|
||||
* [Creative Commons](https://github.com/fmhy/FMHYedit/issues/1386#issuecomment-1906854653) - Creative Commons Content Sites
|
||||
* [Cyberlife](https://cyberpunk-life.neocities.org/) - Cyberpunk-Related Content / Sites Index
|
||||
|
@ -45,7 +44,7 @@
|
|||
* ⭐ **[Ripped](https://ripped.guide/)** - Piracy Index / [Discord](https://discord.ripped.guide/)
|
||||
* ⭐ **[Awesome Piracy](https://shakil-shahadat.github.io/awesome-piracy/)** - Piracy Index / [GitHub](https://github.com/Shakil-Shahadat/awesome-piracy)
|
||||
* ⭐ **[/r/PiratedGames Megathread](https://rentry.org/pgames)** - Game Piracy Index / [Discord](https://discord.gg/dZWwhUy)
|
||||
* ⭐ **[CS.RIN Mega](https://cs.rin.ru/forum/viewtopic.php?f=10&t=95461)** - Game Piracy Index
|
||||
* ⭐ **[CS.RIN Mega](https://cs.rin.ru/forum/viewtopic.php?f=10&t=95461)**, [2](https://csrin.org/) - Game Piracy Index
|
||||
* ⭐ **[privateersclub](https://megathread.pages.dev/)** - Game Piracy Index / [Discord](https://discord.gg/jz8dUnnD6Q)
|
||||
* ⭐ **[The Index](https://theindex.moe)** - Japanese Piracy Index / [Discord](https://discord.gg/Snackbox) / [Wiki](https://thewiki.moe/)
|
||||
* ⭐ **[Wotaku](https://wotaku.wiki/)** - Otaku Index / [Discord](https://discord.gg/vShRGx8ZBC)
|
||||
|
@ -175,7 +174,7 @@
|
|||
* [Nahbucks!](https://nahbucks.com/) - Find Local Non-Starbucks Coffee Shops (US)
|
||||
* [Drinkable](https://github.com/MOIMOB/drinkable) - Create Cocktails from Home Ingredients
|
||||
* [Drinknation](https://www.drinknation.com/bar) or [Make Me a Cocktail](https://makemeacocktail.com/mybar/) - Cocktail Builders
|
||||
* [BoozeTube](https://boozetube.netlify.app/) - Turn Videos into Drinking Games
|
||||
* [Modern Meadmaking](https://meadmaking.wiki/) - Homebrewing Wiki
|
||||
|
||||
***
|
||||
|
||||
|
@ -256,6 +255,7 @@
|
|||
|
||||
## ▷ Flights
|
||||
|
||||
* ⭐ **[ADS-B Exchange](https://globe.adsbexchange.com/)**, [FlightRadar24](https://www.flightradar24.com/), [FlightStats](https://www.flightstats.com/), [PlaneFinder](https://planefinder.net/), [Airplanes.live](https://globe.airplanes.live/), [Radarbox](https://www.airnavradar.com/) or [FlightAware](https://www.flightaware.com/) - Live Flight Trackers
|
||||
* ⭐ **[Passport Index](https://www.passportindex.org/)** - Passport Ratings
|
||||
* ⭐ **[Visa Guide](https://visaguide.world/)** or [VisaIndex](https://visaindex.com/) - Worldwide Travel Visa Guides
|
||||
* [Travel Safe Abroad](https://www.travelsafe-abroad.com/) - Travel Destination Safety Ratings
|
||||
|
@ -264,7 +264,6 @@
|
|||
* [Matrix](https://matrix.itasoftware.com/) - Airfare Search
|
||||
* [FlightConnections](https://www.flightconnections.com/) - Interactive Flight Routes
|
||||
* [SkyVector](https://skyvector.com/) - Flight Planner
|
||||
* [FlightRadar24](https://www.flightradar24.com/), [FlightStats](https://www.flightstats.com/), [PlaneFinder](https://planefinder.net/), [ADS-B Exchange](https://globe.adsbexchange.com/), [Radarbox](https://www.airnavradar.com/) or [FlightAware](https://www.flightaware.com/) - Live Flight Trackers
|
||||
|
||||
***
|
||||
|
||||
|
@ -342,6 +341,8 @@
|
|||
* [tornado.live](https://tornado.live/) - Real-Time US Severe Weather Alerts Map
|
||||
* [Tropical Tidbits](https://www.tropicaltidbits.com/) - Hurricane Forecast Models
|
||||
* [FloodMap](https://www.floodmap.net/) - Sea Level / Flood Map
|
||||
* [Snow Forcast](https://www.snow-forecast.com/maps) - Snow Forcast Maps
|
||||
* [AtticRadar](https://atticradar.steepatticstairs.net/) - Advanced Weather Radar / NOAA Stations
|
||||
* [Tornado Archive](https://tornadoarchive.com/) - Tornado Archive Data Explorer
|
||||
* [Find Your Tornado Shelter](https://findyourtornadoshelter.com/) - Tornado Shelter Map
|
||||
* [Blitzortung.org](https://www.blitzortung.org/en/live_lightning_maps.php) or [Lightning Maps](https://www.lightningmaps.org/) - Lightning / Thunderstorms Maps
|
||||
|
@ -367,6 +368,7 @@
|
|||
* [Aporee](https://aporee.org/maps/) - World Map of Sounds
|
||||
* [Cost of Living](https://www.numbeo.com/cost-of-living/) - Cost of Living Map
|
||||
* [MoveMap](https://www.movemap.io/) - North America Property Costs Map
|
||||
* [ExoRoad](https://www.exoroad.com/) - Find Places to Live via Description
|
||||
* [Beacon](https://beacon.schneidercorp.com/) - Property Info / Map Search
|
||||
* [World Population Density](https://luminocity3d.org/WorldPopDen/) - Population Density Map
|
||||
* [FIRMS](https://firms.modaps.eosdis.nasa.gov/map/) - Fire / Thermal Anomalies Map
|
||||
|
@ -394,7 +396,7 @@
|
|||
|
||||
## ▷ Historic Maps
|
||||
|
||||
* ⭐ **[David Rumsey Map Collection](https://www.davidrumsey.com/)** - Historical Map Collection
|
||||
* 🌐 **[Map History](https://www.maphistory.info/)** or [David Rumsey Map Collection](https://www.davidrumsey.com/) - Historical Map Indexes
|
||||
* ⭐ **[Running Reality](https://www.runningreality.org/)**, [Chronas](https://www.chronas.org/) or [OldMapsOnline](https://www.oldmapsonline.org/) - Interactive Historical Maps
|
||||
* [Harvard WorldMap](https://worldmap.maps.arcgis.com/home/index.html) - ArcGIS Map Archive
|
||||
* [Cronobook](https://cronobook.com/) - Historic Street View
|
||||
|
@ -404,6 +406,7 @@
|
|||
* [Library of Congress](https://www.loc.gov/collections/?fa=partof:geography+and+map+division) - LOC Historic Maps Archive
|
||||
* [Historic Borders](https://historicborders.app/) - Borders History Map
|
||||
* [American Panorama](https://dsl.richmond.edu/panorama/) - Interactive US History Maps
|
||||
* [NLS Maps](https://maps.nls.uk/) - Historical Maps of Scotland
|
||||
* [Imperium](https://imperium.ahlfeldt.se/) - Digital Atlas of the Roman Empire
|
||||
* [Ancient Earth](https://dinosaurpictures.org/ancient-earth) - Globe of Ancient Earth
|
||||
* [1940s NYC](https://1940s.nyc/) - Explore 1940's New York
|
||||
|
@ -469,7 +472,7 @@
|
|||
* [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)
|
||||
* [POTUS Tracker](https://potustracker.us/) or [WikiPolitica](https://wikipolitica.org/) - Track Presidential Executive Orders, Location & more
|
||||
* [POTUS Tracker](https://potustracker.us/), [GovData](https://www.govactionlist.com/) or [WikiPolitica](https://wikipolitica.org/) - Government Executive Orders, Location & more
|
||||
* [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
|
||||
|
@ -485,7 +488,7 @@
|
|||
* ⭐ **[Upstract](https://upstract.com/)**
|
||||
* ⭐ **[QotNews](https://news.t0.vc/)** - Hacker News / Reddit / Lobsters / Tildes
|
||||
* ⭐ **[Anime Blog Tracker](https://aniblogtracker.com/)** - Anime News Blogs
|
||||
* [Littleberg](https://mozberg.com/) - News Search
|
||||
* [Mozberg](https://mozberg.com/) - News Search
|
||||
* [NewsMinimalist](https://www.newsminimalist.com/) or [Brief](https://www.brief.news/) - AI News Aggregators
|
||||
* [devo](https://github.com/karakanb/devo) - New Tab Page News Extension
|
||||
* [RealClearPolitics](https://www.realclearpolitics.com/), [Ground News](https://ground.news/), [AllSides](https://www.allsides.com/), [SPIDR](https://spidr.today/) or [LegibleNews](https://legiblenews.com/) - Political News / World Events
|
||||
|
@ -542,7 +545,7 @@
|
|||
* ↪️ **[Relaxation / Ambient](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/audio/#wiki_.25B7_ambient_.2F_relaxation)**
|
||||
* ⭐ **[The Integral Guide to Well-Being](https://integralguide.com/)** - Mental Health Guide
|
||||
* [Health Assessment Tools](https://www.nhs.uk/health-assessment-tools/) - General Health Tools
|
||||
* [How We Feel](https://play.google.com/store/apps/details?id=org.howwefeel.moodmeter&hl=en-US) / [iOS](https://apps.apple.com/app/id1562706384) [Nomie](https://v5.nomie.app/), [Koduko](https://github.com/Mazahir26/koduko) or [Respawn](https://respawn.pro/) - Wellbeing Apps / Journals
|
||||
* [How We Feel](https://play.google.com/store/apps/details?id=org.howwefeel.moodmeter&hl=en-US) / [iOS](https://apps.apple.com/app/id1562706384), [Nomie](https://v5.nomie.app/), [Koduko](https://github.com/Mazahir26/koduko) or [Respawn](https://respawn.pro/) - Wellbeing Apps / Journals
|
||||
* [You feel like shit.](https://philome.la/jace_harr/you-feel-like-shit-an-interactive-self-care-guide/play/index.html), [2](https://youfeellikeshit.com/) - Interactive Self-Care Guide
|
||||
* [deskspace](https://npckc.itch.io/deskspace) - Self-Care App
|
||||
* [Mindfulness Coach](https://mobile.va.gov/app/mindfulness-coach) - Mindfulness / Stress Reduction App
|
||||
|
@ -551,6 +554,7 @@
|
|||
* [HG Search](https://hgsearch.ridhom.dev/) - HealthyGamerGG Keyword Search
|
||||
* [Medito](https://github.com/meditohq/medito-app) or [Heartfulness](https://www.heartfulnessapp.org/) - Meditation App
|
||||
* [Meditation Infographic](https://i.ibb.co/BNWDCbS/2552-IIB-Meditation.png) - Meditation Techniques
|
||||
* [Conversations](https://conversations.movember.com/en/conversations/) - Mental Health Conversation Practice
|
||||
* [Balance](https://balance.dvy.io/) - Challenge Anxious Thoughts with AI
|
||||
* [Plees Tracker](https://vmiklos.hu/plees-tracker/) - Sleep Tracker
|
||||
* [TripSit](https://tripsit.me/) / [Discord](https://discord.gg/tripsit), [Drugs.com](https://www.drugs.com/) or [DrugBank](https://go.drugbank.com/) - Drug Information / Side Effects
|
||||
|
@ -747,6 +751,7 @@
|
|||
* [ChatProfolio](https://chatprofolio.vercel.app/) or [PeerList](https://peerlist.io/) - Portfolio Builders
|
||||
* [Dopefolio](https://github.com/rammcodes/Dopefolio) - Developer Portfolio Template
|
||||
* [CoFolios](https://cofolios.com/) - Portfolio Sharing
|
||||
* [Resume Builder](https://resume.haveloc.com/)
|
||||
* [ResumeMatcher](https://www.resumematcher.fyi/)
|
||||
* [resumonk](https://www.resumonk.com/)
|
||||
* [Resuminator](https://www.resuminator.in/)
|
||||
|
@ -784,6 +789,8 @@
|
|||
* [Remote Jobs](https://remotejobs.com/) - Remote Jobs
|
||||
* [himalayas](https://himalayas.app/) - Remote Jobs
|
||||
* [We Work Remotely](https://weworkremotely.com/) - Remote Jobs
|
||||
* [TangerineFeed](https://tangerinefeed.net/) - Remote Jobs
|
||||
* [FlexHired](https://flexhired.com/) - Remote Jobs
|
||||
* [CareerVault](https://careervault.io/) - Remote Jobs
|
||||
* [NoDesk](https://nodesk.co/) - Remote Jobs
|
||||
* [Remote OK](https://remoteok.com/) - Remote Jobs
|
||||
|
@ -936,6 +943,7 @@
|
|||
* [Consumer Action Taskforce](https://wiki.rossmanngroup.com/) - Documents Practices That Impact Consumer Rights
|
||||
* [Kit.co](https://kit.co/), [Looria](https://www.looria.com/) or [ProductHunt](https://producthunt.com/) - Product / Service Reviews
|
||||
* [Pepper](https://www.pepper.com/) or [SlickDeals](https://slickdeals.net/) - Shopping Deal Communities
|
||||
* [Hagglezon](https://www.hagglezon.com/) - Price Comparisons for Amazon Stores across Europe
|
||||
* [Slant](https://www.slant.co/) - "What are the best..." Product Rankings
|
||||
* [PicClick](https://picclick.com/) - Ebay Quick Search
|
||||
* [Typo Hound](https://typohound.com/) or [FatFingers](https://fatfingers.com/) - Ebay Typo Search
|
||||
|
@ -953,7 +961,7 @@
|
|||
|
||||
* ⭐ **[PCPartPicker](https://pcpartpicker.com/)**, [Newegg PC Builder](https://www.newegg.com/tools/custom-pc-builder) or [CGDirector](https://www.cgdirector.com/pc-builder/) - PC Building Sites
|
||||
* ⭐ **[/r/PCMasterrace Wiki](https://www.reddit.com/r/pcmasterrace/wiki/builds/)**, [/r/BuildaPC Wiki](https://www.reddit.com/r/buildapc/wiki/index), [PC Tiers](https://pctiers.com/) or [Logical Increments](https://www.logicalincrements.com/) - PC Building Guides / **[Video](https://youtu.be/s1fxZ-VWs2U)**
|
||||
* ⭐ **[NanoReview](https://nanoreview.net/en)**, [Octoparts](https://octopart.com/), [Technical City](https://technical.city/), [TechPowerup](https://www.techpowerup.com/) or [Techspecs](https://techspecs.io/) - Hardware Comparisons
|
||||
* ⭐ **[NanoReview](https://nanoreview.net/)**, [Octoparts](https://octopart.com/), [Technical City](https://technical.city/), [TechPowerup](https://www.techpowerup.com/) or [Techspecs](https://techspecs.io/) - Hardware Comparisons
|
||||
* ⭐ **[rtings](https://www.rtings.com/)** - Hardware Reviews / Clear Cookies Reset Limit
|
||||
* ⭐ **[Open Benchmarking](https://openbenchmarking.org/)** - Hardware Benchmarks
|
||||
* ⭐ **[GSMArena](https://www.gsmarena.com/)**, [Prepaid Compare](https://prepaidcompare.net/), [PhoneDB](https://phonedb.net/), [GSMChoice](https://www.gsmchoice.com/en/) or [Kimovil](https://www.kimovil.com/en/) - Compare Phones / Prices
|
||||
|
@ -969,6 +977,7 @@
|
|||
* [Disk Prices](https://diskprices.com/) - Disk Price Tracker
|
||||
* [Jarrod's Tech](https://jarrods.tech/resources/) or [SuggestALaptop](https://discord.gg/pes68JM) (discord) - Laptop Suggestions
|
||||
* [Laptop Wiki](https://laptopwiki.eu/) - Laptop Info Database
|
||||
* [HackersBoard](https://hackerboards.com/) - Single Board Computer Database
|
||||
* [EveryMac](https://everymac.com/) - Mac Info Database
|
||||
* [Mouse Ratings](https://www.rtings.com/mouse/reviews/best), [EloShapes](https://www.eloshapes.com/), [Sensor.fyi](https://sensor.fyi/info/), [RocketJumpNinja](https://www.rocketjumpninja.com/) or [/r/MouseReview](https://www.reddit.com/r/MouseReview/) / [Discord](https://discord.gg/mousereview) - Mouse Buying Guides
|
||||
* [MechGroupBuys](https://www.mechgroupbuys.com/) - Group Mechanical Keyboard Buying / [Discord](https://discord.com/invite/mechgroupbuys) / [Subreddit](https://www.reddit.com/r/MechGroupBuys/)
|
||||
|
@ -1004,15 +1013,15 @@
|
|||
* [PSPrices](https://psprices.com/)
|
||||
* [EpicGamesDC](https://epicgamesdb.info/) - Epic Store Price Tracker
|
||||
* [PriceCharting](https://www.pricecharting.com/) - Game, Comic & Trading Card Price Tracker
|
||||
* [DekuDeals](https://www.dekudeals.com/) or [NTDeals](https://ntdeals.net/) - Switch Game Price Trackers
|
||||
* [DekuDeals](https://www.dekudeals.com/), [NTDeals](https://ntdeals.net/) or [AppGG](https://appagg.com/) - Switch Game Price Trackers
|
||||
* [PS Deals](https://psdeals.net/) or [XB Deals](https://xbdeals.net/) - Game Price Trackers
|
||||
|
||||
***
|
||||
|
||||
## ▷ Toys / Figures
|
||||
## ▷ Toys / Collectibles
|
||||
|
||||
* [MyFigureCollection](https://myfigurecollection.net/) - Japanese Pop-Culture Merch Database
|
||||
* [Pokechange](https://en.pokechange.net/) - Buy / Sell Pokémon Cards
|
||||
* [Pokechange](https://en.pokechange.net/) or [Misprint](https://www.misprint.com/) - Buy / Sell Pokémon Cards
|
||||
* [Dinosaur Toy Blog](https://dinotoyblog.com/) or [Animal Toy Blog](https://animaltoyforum.com/blog/) - Animal Toy Reviews
|
||||
* [Ty Collector](https://tycollector.com/) or [Beaniepedia](https://beaniepedia.com/) - Ty Collectibles Databases
|
||||
* [Matchbox University](http://mbx-u.com/) - Matchbox Car Database
|
||||
|
@ -1098,7 +1107,7 @@
|
|||
## ▷ Multi Tool Sites
|
||||
|
||||
* 🌐 **[Mr Free Tools](https://mrfreetools.com/)** - Find Free Tools
|
||||
* ⭐ **[LibreOps](https://libreops.cc/)** or [Luigi Auriemma](https://aluigi.altervista.org/) - Open-Source Tools
|
||||
* ⭐ **[LibreOps](https://libreops.cc/)** - Open-Source Tools
|
||||
* ⭐ **[TinyWow](https://tinywow.com/)** - Text / Image / PDF / File
|
||||
* ⭐ **[PineTools](https://pinetools.com/)** - Text / Multimedia / Colors / Code
|
||||
* [goonlinetools](https://goonlinetools.com/) - Text / Encode-Decode / Code / Random / Image
|
||||
|
@ -1147,7 +1156,7 @@
|
|||
* [BreakMessage](https://breakmessage.com/) - Online Break Reminders
|
||||
* [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://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#forest-extensions) - Site Blocking Extensions
|
||||
* [UnDistracted](https://www.undistracted.app/) or [Focus-ToDo](https://chromewebstore.google.com/detail/ngceodoilcgpmkijopinlkmohnfifjfb) - Chrome Productivity Managers
|
||||
* [Comicsflow](https://comicsflow.com/) - Comic / Manga Project Manager
|
||||
* [Comicsflow](https://comicsflow.com/) - Comic / Manga Project Manager
|
||||
|
||||
***
|
||||
|
||||
|
@ -1211,6 +1220,7 @@
|
|||
* ↪️ **[4chan Archives](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/social-media#wiki_.25B7_4chan_archives)**
|
||||
* ⭐ **[SakugaBooru](https://www.sakugabooru.com/)** - Anime Animation Booru / [Enhancements](https://chromewebstore.google.com/detail/sakuga-extended/khmnmdaghmhkcbooicndamlhkcmpklmc)
|
||||
* [loc.alize](https://loc.alize.us/) - Explore Earth via Images
|
||||
* [Newgrounds Auditorium](https://bluemaxima.org/auditorium/) - Newground Flash Animation Archive
|
||||
* [MSPFA](https://mspfa.com/) - MS Paint Fan Adventures
|
||||
* [GigaMacro](https://viewer.gigamacro.com/) or [Gigapan](https://www.gigapan.com/) - Panoramic Photography
|
||||
* [stringers.live](https://stringers.live/) - Live Freelance Journalist Streams
|
||||
|
@ -1293,6 +1303,7 @@
|
|||
* ⭐ **[2020 Game](https://2020game.io/)** - Play Through 2020
|
||||
* [Little Alchemy](https://littlealchemy.com/) or [Little Alchemy 2](https://littlealchemy2.com/) - Alchemy Game
|
||||
* [Impersona](https://impersona.chat/) - In-Character Public Chats / [Discord](https://discord.gg/DX74sGX)
|
||||
* [DJ3D](https://dj3d.io/) - Watch YouTube in Virtual World
|
||||
* [JUST SCREAM!](https://justscream.baby/) - Scream into the Universe
|
||||
* [VentScape](https://www.ventscape.life/) or [PostSecretVoicemail](https://www.postsecretvoicemail.com/) - Speak into a Void
|
||||
* [AfterTheBeep](https://afterthebeep.tel/) - Public Voicemail
|
||||
|
@ -1304,7 +1315,7 @@
|
|||
* [Are You You?](https://www.areyouyou.eu/) - Try to Fool Face Recognition Software
|
||||
* [Word Blanks](https://www.wordblanks.com/) or [Plot Generator](https://www.plot-generator.org.uk/) - Online Mad Libs
|
||||
* [MagicKeyboard](http://magickeyboard.io/) - Try "feross", "hexbin", "rain", or "semi"
|
||||
* [Just Type Stuff](https://web.archive.org/web/20191229101209/https://justtypestuff.com/) - Type Things into Existence
|
||||
* [Just Type Stuff](https://justtypestuff.com/) - Type Things into Existence
|
||||
* [Cafe and Diner](https://www.cafeanddiner.com/) - Browser Mystery Game
|
||||
* [New Campaign Trail](https://www.newcampaigntrail.com/) - Presidential Campaign Game / [Discord](https://discord.gg/CfS6yTtjZj)
|
||||
* [There Is No Website](https://www.thereisnoweb.site/) - Browser Website Game
|
||||
|
@ -1324,6 +1335,7 @@
|
|||
* [Ballooning](https://alexanderperrin.com.au/triangles/ballooning/) - Procedurally Generated Balloon Simulator
|
||||
* [Tamajoji](https://aericode.itch.io/tamajoji) - Browser Tamagotchi
|
||||
* [Koi Pond](https://koipond.fish/) - Feed Koi
|
||||
* [Our World of Text](https://ourworldoftext.com/) or [TextWall](https://tw.2s4.me/) - Infinite Community Text Grid
|
||||
* [This Is Sand](https://thisissand.com/) - Make Sand Art
|
||||
* [Orb.Farm](https://orb.farm/) - Virtual Aquatic Ecosystem
|
||||
* [Generativeplanets](https://zehfernandes.com/generativeplanets/builder) or [Planet](https://oskarstalberg.com/game/planet/planet.html) - Planet Generators
|
||||
|
@ -1426,6 +1438,7 @@
|
|||
* [Aesthetics Wiki](https://aesthetics.fandom.com/wiki/Aesthetics_Wiki) - Aesthetics Wiki / [Discord](https://discord.gg/mEWddNCAqv) / [Subreddit](https://www.reddit.com/r/aesthetic/)
|
||||
* [Pushing Pixels](https://www.pushing-pixels.org/fui/) - Imaginary UI from Movies
|
||||
* [Nestflix](https://nestflix.fun/) - Fictional Media in Media Database
|
||||
* [List of Aesthetics](https://aesthetics.fandom.com/wiki/List_of_Aesthetics)
|
||||
* [BogLeech](https://bogleech.com/) - Monster Design Reviews
|
||||
* [BrickLink Studio](https://www.bricklink.com/v3/studio/download.page) - Lego Building Software
|
||||
* [Instructables](https://www.instructables.com/) or [CreativePark](https://creativepark.canon/en/index.html) - Free Projects / Crafts
|
||||
|
@ -1480,6 +1493,8 @@
|
|||
* [OpenBulkURL](https://openbulkurl.com/random/) - Find Random Sites
|
||||
* [ViralWalk](https://www.viralwalk.com/) - Find Random Sites
|
||||
* [The Forest](https://theforest.link/) - Find Random Sites
|
||||
* [PortalPioneer](https://www.portalpioneer.com/) - Find Random Sites
|
||||
* [TheSillyWeb](https://thesillyweb.com/) - Find Random Sites
|
||||
* [WhatsMYIP](http://random.whatsmyip.org/) - Find Random Sites
|
||||
* [Random-Website](https://random-website.com/) - Find Random Sites
|
||||
* [Wilderness Land](https://wilderness.land/) - Find Random Sites
|
||||
|
|
|
@ -17,6 +17,7 @@
|
|||
|
||||
## ▷ Downloading / تحميل
|
||||
|
||||
* [Stardiima](https://e.stardiima.top/) - Movies / TV / [Telegram](https://t.me/stardima_vip)
|
||||
* [arteenz](https://www.arteenz.com/) - Cartoons / Anime / Dub / 720p
|
||||
* [ArabicFonts](https://arabicfonts.net/) or [ARFonts](https://www.arfonts.net/) - Fonts
|
||||
* [Eternal Dream Arabization](https://www.etrdream.com/) - Modern / Official / Retro Games Arabic Localization
|
||||
|
@ -48,6 +49,7 @@
|
|||
* [arabic-toons](https://www.arabic-toons.com/) - Cartoons
|
||||
* [Flowind](https://flowind.net/) - Cartoons
|
||||
* [Animerco](https://animerco.org/) - Anime / Sub / 1080p
|
||||
* [maycima](https://maycima.com/) - Anime
|
||||
* [shahiid](https://shahiid-anime.net/) - Anime / Sub / 720p
|
||||
* [anime3rb](https://anime3rb.com/) - Anime / Sub
|
||||
* [jotorrent](https://www.jotorrent.com/) - Anime / Signups Open Every Month
|
||||
|
@ -78,9 +80,6 @@
|
|||
|
||||
# ► Bangla / বাংলা
|
||||
|
||||
* ↪️ **[Bangla English Course](https://rentry.co/FMHYBase64#bangla-english-course)**
|
||||
* ↪️ **[Bangla Freelancing Course](https://rentry.co/FMHYBase64#bangla-freelancing)**
|
||||
* ↪️ **[Bangla Excel Course](https://rentry.co/FMHYBase64#bangla-excel)**
|
||||
* ⭐ **[Avro Keyboard](https://www.omicronlab.com/avro-keyboard.html)** - Bangla Typing Tool / Spellcheck / [WebUI](https://avro.im/)
|
||||
* [aapathshala](https://aapathshala.com/library/) - Test Practice
|
||||
* [Python Maateen](https://python.maateen.me/) - Python Guide
|
||||
|
@ -101,6 +100,7 @@
|
|||
|
||||
## ▷ Downloading / ডাউনলোডিং
|
||||
|
||||
* [MLSDB](https://mlsbd.shop/) - Movie / TV
|
||||
* [Bangla Song](https://www.music.com.bd/) - Bangla Song / Music / Radio / MP3
|
||||
|
||||
***
|
||||
|
@ -189,7 +189,7 @@
|
|||
* [VmoMusic](https://t.me/VmoMusic) - Audio / FLAC
|
||||
* [ZAYU_music](https://t.me/ZAYU_music) - Audio / FLAC
|
||||
|
||||
## ▷ Torrenting
|
||||
## ▷ Torrenting / 下载种子
|
||||
|
||||
* [Csze BT](https://bt.orzx.im/) - Video / Audio / Books
|
||||
* [acgnx](https://www.acgnx.se/) - Video / Audio / Books / NSFW
|
||||
|
@ -211,9 +211,9 @@
|
|||
|
||||
## ▷ Streaming / 流媒体
|
||||
|
||||
* 🌐 **[Tvlist-awesome-m3u-m3u8](https://github.com/imDazui/Tvlist-awesome-m3u-m3u8)** - IPTV Resources
|
||||
* 🌐 **[Chinese Drama Site Index](https://www.reddit.com/r/CDrama/wiki/streaming)** - Chinese Drama Sites Index
|
||||
* 🌐 **[Movie Forest](https://549.tv/)** or **[klyingshi](https://klyingshi.com/)** - Chinese Streaming Sites Index
|
||||
* ⭐ **[555dy](https://555u.store/)** - Movies / TV / Anime / NSFW / Sub / 1080p
|
||||
* ⭐ **[BiliBili](https://www.bilibili.com/)** / [.tv](https://www.bilibili.tv/) / [Multi-Platform Client](https://xfangfang.github.io/wiliwili/) / [Signup Block](https://greasyfork.org/en/scripts/467474)
|
||||
* [ddrk](https://ddys.pro/), [2](https://ddys.info/) - Movies / TV / Anime / Sub / 1080p
|
||||
* [Tencent Video](https://v.qq.com/) - Movies / TV / Anime / Cartoons / Sub / Dub / 1080p / [Downloader](https://weibomiaopai.com/online-video-downloader/tencent)
|
||||
|
@ -221,7 +221,6 @@
|
|||
* [VidHub](https://vidhub.me/) - Movies / TV / Anime / Sub / 1080p
|
||||
* [ztv.tw](https://ztv.tw) - Streaming / Movies / TV / Anime
|
||||
* [chinaq.app](https://chinaq.app/) - Movies / TV / Anime
|
||||
* [555dy](https://555u.store/) - Movies / TV / Anime / NSFW / Sub / 1080p
|
||||
* [Imaple](https://imaple8.co/) - Movies / TV / Sub / 1080p
|
||||
* [imjw](https://www.ttkmj.cc/) - Movies / TV / 1080p
|
||||
* [xiaoyakankan](https://xiaoyakankan.com/) - Movies / TV / 720p
|
||||
|
@ -230,7 +229,6 @@
|
|||
* [KokoTV](https://kokotv.me/) - Drama / Sub / Dub / 1080p
|
||||
* [Duboku](https://www.duboku.tv/) - TV / Cartoons / Sub / 1080p
|
||||
* [HKanime](https://www.hkanime.com/) - Anime / Sub / Dub / 1080p / [Telegram](https://t.me/+mQ5fWi_trVY2MmQ9) / Registration and VPN Required
|
||||
* [暮薇影视](https://muweimv.com/) - Movies / NSFW / TV / Anime / Sub / 1080p
|
||||
* [CC動漫](https://ccdm.cc/) - Anime / Sub / 1080p
|
||||
* [AGE Animation](https://www.agedm.org/) - Anime / Sub / 1080p
|
||||
* [xgcartoon](https://www.xgcartoon.com/) - Anime / Sub / Dub / 1080p
|
||||
|
@ -246,6 +244,7 @@
|
|||
* [MissEvan](https://www.missevan.com/) - Music / Podcasts / Audio Comics
|
||||
* [Kilamanbo](https://kilakila.cn/) - Audio Comic Drama
|
||||
* [Huya](https://www.huya.com/) - Live Streaming
|
||||
* [IPTV807](https://iptv807.com/) - Live TV
|
||||
* [數學老師張旭](https://space.bilibili.com/521685904) - Math Lessons
|
||||
* [free-project-course](https://github.com/resumejob/free-project-course) - Programming Courses
|
||||
* [Baidu SkyDrive Video Player](https://greasyfork.org/en/scripts/426952-%E7%99%BE%E5%BA%A6%E7%BD%91%E7%9B%98%E8%A7%86%E9%A2%91%E6%92%AD%E6%94%BE%E5%B0%8A%E4%BA%AB-vip-%E8%A7%A3%E9%94%81%E8%A7%86%E9%A2%91%E5%80%8D%E6%95%B0-%E8%A7%A3%E9%94%81%E5%85%A8%E9%83%A8%E6%B8%85%E6%99%B0%E5%BA%A6) - Baidu VIP Video Player
|
||||
|
@ -365,7 +364,7 @@
|
|||
## ▷ Streaming / Nanonood
|
||||
|
||||
* [Movies Ni Pipay](https://moviesnipipay.me/) - Movies / TV / NSFW / Sub / Dub / 1080p
|
||||
* [Pinoy Movies Hub](https://pinoymovieshub.mx/) - Movies / TV / NSFW / Sub / Dub / 720p
|
||||
* [Pinoy Movies Hub](https://pinoymovieshub.tv/) - Movies / TV / NSFW / Sub / Dub / 720p
|
||||
* [Pinoymoviepedia](https://pinoymoviepedia.ru/) - Movies / TV / NSFW / Sub / Dub / 720p
|
||||
* [Pinoy Albums](https://pinoyalbums.com/) - Music
|
||||
|
||||
|
@ -415,6 +414,7 @@
|
|||
|
||||
## ▷ Downloading
|
||||
|
||||
* [WawaCity](https://www.wawacity.tips/) - Movies / TV / [Telegram](https://t.me/Wawacity_officiel)
|
||||
* [MuaDib](https://muaddib-sci-fi.blogspot.com/) - Sci-Fi Movies
|
||||
* [PiratePunk](https://www.pirate-punk.net/) - Punk Music / Radio / Concerts Dates / Forum
|
||||
* [Emurom](https://www.emurom.net/) - Retro ROMs
|
||||
|
@ -433,8 +433,9 @@
|
|||
* ⭐ **[VF-Stream](https://films.vfstream.eu/)** - Movies / TV / Anime
|
||||
* ⭐ **[RgShows](https://www.rgshows.me/)** - Movies / TV / Anime / 4K / [API](https://embed.rgshows.me/) / [Guide](https://www.rgshows.me/guide.html) / [Discord](https://discord.gg/bosskingdom-comeback-1090560322760347649)
|
||||
* ⭐ **[Frembed](https://frembed.live/)** - Movies / TV / Anime / API
|
||||
* [Deksov](https://deksov.com/) - Movies / TV / Anime
|
||||
* [VoirAnime](https://v6.voiranime.com/) - Anime / Sub / 1080p
|
||||
* [Darkiworld](https://darkiworld1.com/) - Movies / TV / Anime
|
||||
* [Darkiworld](https://darkiworld7.com/) - Movies / TV / Anime
|
||||
* [Sadisflix](https://sadisflix.ing/), [2](https://sadisflix.vip/) - Movies / TV / Anime / Dub / 1080p / Use Adblocker / [Mirrors](https://sadisflix.wiki/) / [Telegram](https://t.me/sadisflix)
|
||||
* [Wiflix](https://wiflix-hd.kim/) - Movies / Series / Anime / Dub / [Telegram](https://t.me/wiflix2023)
|
||||
* [Kordoz](https://www.kordoz.com/) - Movies / TV / Anime
|
||||
|
@ -460,6 +461,7 @@
|
|||
* [WITV](https://witv.space/) - Live TV / Sports
|
||||
* [LeFoot](https://lefoot.ru/) - Live Sports
|
||||
* [JokerTV](https://jokertv.ru/) - Live Football
|
||||
* [remontadatv](https://remontadatv.ru/), [2](https://linktr.ee/streamonsport) - Live Football
|
||||
* [Doc4U](https://doc4u.top/) - Documentaries
|
||||
* [VoirCartoon](https://voircartoon.com/) - Cartoons / Dub / 720p
|
||||
* [CatoonHub](https://catoonhub.com/) - Cartoons / Dub / 720p / [Discord](https://discord.com/invite/M7gRTuXc6d)
|
||||
|
@ -507,7 +509,6 @@
|
|||
* [Nima4k](https://nima4k.org/) - Video / Audio
|
||||
* [FilmFans](https://filmfans.org/) - Video
|
||||
* [hd-source](https://hd-source.to/) or [DDL-Warez](https://ddl-warez.cc/) - Video / NSFW
|
||||
* [serienjunkies](https://serienjunkies.org/) - TV
|
||||
* [MLCBoard](https://mlcboard.com/) - Movies
|
||||
* [Data Load](https://www.data-load.in/) - Movies / Signup Required
|
||||
* [Anime-Loads](https://www.anime-loads.org/) - Anime
|
||||
|
@ -557,6 +558,7 @@
|
|||
* [MyComics](https://www.mycomics.de/) - Comics
|
||||
* [Kanjiku](https://kanjiku.net/) - Manga
|
||||
* [Hoerbuch](https://hoerbuch.us/) - Audiobooks
|
||||
* [Projekt Gutenberg.](https://www.projekt-gutenberg.org/) - Classic German Books
|
||||
* [Sagen](https://www.sagen.at/) - European Ethnology / Folklore
|
||||
|
||||
***
|
||||
|
@ -589,19 +591,19 @@
|
|||
* [tainiesonline](https://tainiesonline.top/) - Movies / TV
|
||||
* [gamatomovies](https://gamatomovies.info/) - Movies / TV
|
||||
* [ertflix](https://www.ertflix.gr/en/) - Movies / TV
|
||||
* [An1me](https://an1me.to/) - Anime / Sub / Dub / 1080p
|
||||
* [An1me](https://an1me.to/) - Anime / Sub / Dub / 1080p / [Discord](https://discord.com/invite/qPcUxRH)
|
||||
* [GRecoTM Builds](https://grecotm.club/) - Kodi Builds / [Guide](<https://web.archive.org/web/20210925022803/https://en.iguru.gr/odigos-egkatastasis-ellinikou-build-sto-kodi/>) / [Discord](https://discord.com/invite/zVVfbDY)
|
||||
* [GreekTV](https://greektv.app/) - IPTV
|
||||
* [NetNix](https://netnix.tv/) - Live TV
|
||||
* [stokourbeti](https://www.stokourbeti.art/) - Live Sports
|
||||
* [stokourbeti](https://stokourbeti.online/) - Live Sports
|
||||
* [GreekSport](https://greeksport.pages.dev/) - Live Sports
|
||||
* [Foothubhd](https://foothubhd.org/) - Live Football / [Discord](https://discord.com/invite/KGgsRmKZPC)
|
||||
* [Foothubhd](https://foothubhd.online/) - Live Football / [Discord](https://discord.com/invite/KGgsRmKZPC)
|
||||
* [Live24](https://live24.gr/) or [e-Radio](https://www.e-radio.gr/) - Radio
|
||||
* [Subs4series](https://www.subs4series.com/), [xsubs](http://xsubs.tv), [greeksubs](https://greeksubs.net) or [subs4free](https://www.subs4free.club/) - Greek Subtitles
|
||||
|
||||
## ▷ Torrenting
|
||||
|
||||
* [AnimEclipse](http://www.animeclipse.com/) - Anime Torrents
|
||||
* [AnimEclipse](http://www.animeclipse.com/) - Anime Torrents / [Discord](https://discord.com/invite/VU6UScPPCU)
|
||||
|
||||
***
|
||||
|
||||
|
@ -635,6 +637,7 @@
|
|||
* [OnlineFilmeKingyen](https://www.onlinefilmekingyen.com/) - Movies / Sub / Dub / 1080p
|
||||
* [filmezz](https://filmezz.club/) - Movies / TV / Dub / 720p
|
||||
* [mozicsillag](https://mozicsillag1.me/) - Movies / TV / Sub / Dub / 720p
|
||||
* [animedrive](https://animedrive.hu/) - Anime / [Discord](https://discord.com/invite/xcgeYp3)
|
||||
|
||||
***
|
||||
|
||||
|
@ -652,6 +655,7 @@
|
|||
* ⭐ **[OlaMovies](http://app2.olamovies.download/)** - Movies / TV / Sub / Dub / 1080p / 4K / Use Adblocker / [Telegram](https://telegram.me/olamovies_officialv69)
|
||||
* ⭐ **[VegaMovies](https://m.vegamovies.ms/)** - Movies / TV / Anime / 1080p / 4K / [Telegram](https://telegram.dog/vega_officials)
|
||||
* ⭐ **[MoviesMod](https://modlist.in/?type=hollywood)** - Movies / TV / Sub / Dub / 1080p / [Telegram](https://modlist.in/?type=telegram) / [Bypass](https://greasyfork.org/en/scripts/474747)
|
||||
* ⭐ **[ToonWorld4All](https://toonworld4all.me/)** - Anime / Cartoon / Geoblocked
|
||||
* ⭐ **[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)
|
||||
|
@ -659,7 +663,8 @@
|
|||
* ⭐ **[TamilBlasters](https://www.1tamilblasters.net/)** - Movies / TV / Sub / Dub / 1080p / 4K / Anime / Indian Langauges
|
||||
* ⭐ **[TamilMV](https://www.1tamilmv.com/)** - Movies / TV / Sub / Dub / 1080p / 4K / Anime / Indian Langauges
|
||||
* [SkyMovies](https://skymovieshd.li/) - Movies / TV / Anime / Some NSFW
|
||||
* [OOMoye](https://oomoye.guru/) - Movies / TV / Anime / Some NSFW
|
||||
* [OOMoye](https://www.oomoye.me/) - Movies / TV / Anime / Some NSFW
|
||||
* [Bollyflix](https://bollyflix.phd/) - Movies / TV / Anime
|
||||
* [Mallumv](https://mallumv.guru/) - Movies / Sub / Dub / 1080p / [Telegram](https://t.me/MalluMvoff)
|
||||
* [SSR Movies](https://ssrmovies.com/) - Movies / TV / Sub / Dub / 1080p / [Telegram](https://telegram.dog/+MF2EXeitLjMxY2Ux)
|
||||
* [MkvMoviesPoint](https://mkvmoviespoint.cool/) - Movies / TV / Sub / Dub / 1080p / [Telegram](https://telegram.me/mkvpoint1)
|
||||
|
@ -679,7 +684,9 @@
|
|||
* [DesireMovies](https://desiremovies.my/) - Movies / TV / Sub / Dub / 1080p
|
||||
* [UncutHD](https://www.jadoocinema.com/) - Movies / TV / Sub / Dub / 1080p
|
||||
* [9xflix](https://9xflix.com/m/) - Movies / TV / NSFW / Sub / Dub / 720p
|
||||
* [KatDrama](https://katdrama.com/) - Korean Drama
|
||||
* [AnimeAcademy](https://animeacademy.in/) - Anime / Sub / Dub / 1080p
|
||||
* [PikaHD](https://pikahd.com/) - Anime / Dub / 1080p
|
||||
* [Anilot.in](https://anilot.in/) - Anime / 1080p / [Telegram](https://t.me/Anilot_Anime)
|
||||
* [Toonsouthindia](https://toonsouthindia.com/) - Anime / Cartoon / 1080p / [Telegram](https://telegram.me/+VQNviznAktwAxUv8)
|
||||
* [Toonhub4u](https://toonhub4u.me/) - Anime / Cartoon / Dub / 1080p / [Telegram](https://telegram.me/joinchat/oHRgJ6SMZ6c3OTI1)
|
||||
|
@ -698,7 +705,7 @@
|
|||
* ⭐ **[Cineby](https://www.cineby.app/)** - Movies / TV / Anime / 1080p / Auto-Next / [Discord](https://discord.gg/C2zGTdUbHE) (unofficial)
|
||||
* ⭐ **[RgShows](https://www.rgshows.me/)** - Movies / TV / Anime / 4K / [API](https://embed.rgshows.me/) / [Guide](https://www.rgshows.me/guide.html) / [Discord](https://discord.gg/bosskingdom-comeback-1090560322760347649)
|
||||
* ⭐ **[ToonStream](https://toonstream.co/)** - Cartoons / 1080p / [Telegram](https://telegram.me/toonstream)
|
||||
* ⭐ **[AnPlay](https://anplay.in/)** - Anime / Dub / 1080p
|
||||
* ⭐ **[AniSAGA](https://anisaga.org/)** - Anime / Dub / 1080p
|
||||
* ⭐ **[FireFlix](https://fireflixhd1.netlify.app/)** - Movies / TV / Anime
|
||||
* ⭐ **[HDDMovies](https://hhdmovies.baby/)** - Movies / TV / Anime
|
||||
* ⭐ **[MultiMovies](https://multimovies.today)** - Movies / TV
|
||||
|
@ -773,7 +780,6 @@
|
|||
|
||||
## ▷ Reading / Membaca
|
||||
|
||||
* [YuuManga](https://yuumanga.blogspot.com/) - Manga
|
||||
* [ManhwaIndo](https://manhwaindo.net/) - Manga
|
||||
* [Komiku](https://komiku.id/) - Manga
|
||||
* [Komikcast](https://komikcast.bz/) - Manga
|
||||
|
@ -814,6 +820,7 @@
|
|||
* [CB01](https://cb01new.win/) - Movies / TV
|
||||
* [SerieHD](https://www.seriehd.sbs/) - TV / Dub / 1080p
|
||||
* [toonitalia](https://toonitalia.xyz/) - TV / Anime
|
||||
* [AnimeUnity](https://www.animeunity.so/) - Anime
|
||||
* [Arcoiris TV](https://www.arcoiris.tv/) - Italian TV / 720p
|
||||
* [Kodi On Demand](https://guruhitech.com/kodi-on-demand-kod-kodi-add-on-tutte-le-info/) - Streaming Kodi Addon
|
||||
* [AnimeWorld](https://www.animeworld.so/) - Anime / Sub / 1080p
|
||||
|
@ -916,6 +923,7 @@
|
|||
# ► Korean / 한국어
|
||||
|
||||
* ⭐ **[Lutton](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) / No Signup
|
||||
* [Arca](https://arca.live/) - Forum
|
||||
* [dic.daum](https://dic.daum.net/) - Korean Translator / Spellchecker
|
||||
* [TadakTadak](https://tadaktadak.co.kr/) - Korean Practice / English Learning
|
||||
* [EBS](https://www.ebs.co.kr/) - Korean Courses for the Visually / Hearing Impaired
|
||||
|
@ -986,7 +994,7 @@
|
|||
|
||||
* 🌐 **[Persian Telegram Courses](https://rentry.co/sn66v)** - Persian Courses Index
|
||||
* [git_ir](https://t.me/git_ir) - Programming Courses
|
||||
* [soft98](https://soft98.ir/) - Courses / Software / Games / [Anti-Adblock Fix](https://github.com/uBlockOrigin/uAssets/issues/14480#issuecomment-1907310059)
|
||||
* [soft98](https://soft98.ir/) - Courses / Software / Games / [Anti-Adblock Fix](https://github.com/AdguardTeam/AdGuardExtra)
|
||||
* [Old Persian Games](https://oldpersiangames.org/) - Iranian Games
|
||||
* [Download.ir](https://download.ir/) - Video / Software / ROMs / Books
|
||||
* [DigiMovie](https://digimoviez.com/) - Movies / TV / Sub / Dub / 1080p
|
||||
|
@ -1112,6 +1120,7 @@
|
|||
## ▷ Downloading / Baixar
|
||||
|
||||
* ⭐ **[WR Educacional](https://www.wreducacional.com.br)** - Courses
|
||||
* ⭐ **[Curso_vip](https://t.me/Curso_vip)** - Courses / Books
|
||||
* [Rei dos Torrents](https://reidostorrents.com) - Video / Audio / Books / Sub / Dub / 1080p
|
||||
* [Os Reformados](https://osreformados.com) - Video / Audio / Magazines / Sub / Dub / 1080p
|
||||
* [Online Cursos Gratuitos](https://onlinecursosgratuitos.com) - Courses
|
||||
|
@ -1136,6 +1145,7 @@
|
|||
* [Vizer](https://vizertv.in/) - Movies / TV / Anime / Sub / Dub / 1080p
|
||||
* [GoFilmes](https://gofilmes.me/m/) - Movies / TV / Sub / Dub / 1080p
|
||||
* [tugaflix](https://tugaflix.best) - Movies / TV / Sub / 1080p
|
||||
* [megafilmeshd50](https://megafilmeshd50.zip/) - Movies / TV
|
||||
* [Filmes Online HD](https://www.filmesonlinehdgratis.com.br) - Movies / TV / Sub / 720p
|
||||
* [99](https://www.99.media/pt/) - Documentaries / Sub / 1080p
|
||||
* [Libreflix](https://libreflix.org) - Portuguese TV / Documentaries / 720p
|
||||
|
@ -1152,6 +1162,7 @@
|
|||
* [TV Gazeta](https://www.tvgazeta.com.br/aovivo/) - Live TV
|
||||
* [TV Cultura](https://cultura.uol.com.br/aovivo/) - Live TV
|
||||
* [Futebol Agora](https://futebolagora.gratis/) - Live Sports
|
||||
* [futemax](https://futemax.mn/) - Live Football / [Telegram](https://t.me/OfcFuteMAX)
|
||||
* [IPTV Brasil](https://iptvbrasilapk.com) - IPTV Player
|
||||
* [Kultivi](https://app.kultivi.com) - Courses
|
||||
* [Prime Cursos](https://www.primecursos.com.br) - Courses
|
||||
|
@ -1306,7 +1317,7 @@
|
|||
|
||||
## ▷ Downloading / Скачивание
|
||||
|
||||
* ⭐ **[4PDA](https://4pda.to/forum/)** - Android / iOS / [App](https://github.com/slartus/4pdaClient-plus) / [Captcha Note](https://github.com/fmhy/FMHY/wiki/FMHY‐Notes.md#4pda-captcha), [2](https://doorsgeek.blogspot.com/2015/08/4pdaru-loginregister-captcha-tutorial.html)
|
||||
* ⭐ **[4PDA](https://4pda.to/forum/)** - Android / iOS / [App](https://github.com/slartus/4pdaClient-plus) / [Captcha Note](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#4pda-captcha), [2](https://doorsgeek.blogspot.com/2015/08/4pdaru-loginregister-captcha-tutorial.html)
|
||||
* [Androeed](https://androeed.store/), [2](https://androeed.ru/) - Android
|
||||
* [CWER](http://cwer.ru/), [2](http://cwer.ws/) - Video / Audio / Games / Books
|
||||
* [2BakSa](http://2baksa.ws/) - Video / Audio / Books
|
||||
|
@ -1384,7 +1395,7 @@
|
|||
* [AniLabX](https://anilabx.xyz/) - Android Anime / Cartoons / Drama App
|
||||
* [RUkino](https://rukino.org/) - Russian Movies / TV / 1080p
|
||||
* [CCCP Film](https://cccp-film.ru/) - Soviet Movies / TV
|
||||
* [Soviet Movies Online](https://sovietmoviesonline.com/cartoons) - Soviet Cartoons / Sub
|
||||
* [Soviet Movies Online](https://sovietmoviesonline.com/) - Soviet Movies / Sub
|
||||
* [VseDoramy](https://vsedoramy.net/) - Asian Drama / Dub / 720p
|
||||
* [TurkishTV](https://turkishtv.co/) - Turkish / Indian TV / Dub / 720p
|
||||
* [KinoTurk](https://kinoturk.net/) - Turkish Movies / TV / Dub / 720p
|
||||
|
@ -1392,6 +1403,7 @@
|
|||
* [MovieCorn](https://moviecorn.one/) - Torrent Streaming
|
||||
* [Dokonlin](https://www.dokonlin.online/) - Documentaries / Dub / 1080p
|
||||
* [mult-fan](https://mult-fan.tv/) - Cartoons
|
||||
* [animatsiya](https://animatsiya.net/) - Russian Animation Archive
|
||||
* [TVRF](https://tvrf.online/) - Live TV
|
||||
* [Viks](http://ip.viks.tv/) - Live TV
|
||||
* [Telik](https://telik.top/) - Live TV
|
||||
|
@ -1406,6 +1418,7 @@
|
|||
* [MDCORE](https://vk.com/mdcore) - Metal
|
||||
* [Russian Records](https://www.russian-records.com/) - Russian Record Recordings
|
||||
* [Top Radio](https://top-radio.ru/) - Radio
|
||||
* [recradio](https://t.me/recradio) - Radio
|
||||
* [OpenEDU](https://openedu.ru/) - Courses
|
||||
* [Teach.in](https://teach-in.ru/) - Lectures
|
||||
* [videotuts](https://videotuts.ru/) - Design Video Tutorials
|
||||
|
@ -1428,6 +1441,9 @@
|
|||
* [Maxima Library](https://maxima-library.com/) - Books
|
||||
* [rulit](https://www.rulit.me/) - Books
|
||||
* [bookscafe](https://bookscafe.net/) - Books / NSFW
|
||||
* [bookscafe](https://bookscafe.net/) - Books
|
||||
* [Litgu.ru](https://litgu.ru/) - Books
|
||||
* [Bookree](https://bookree.org/) - Books
|
||||
* [MirKnig.sur](https://mirknig.su/) - Books / Fiction / Nonfiction
|
||||
* [saitknigi](https://ru.sait-knigi.ru/) - Books / Audiobooks
|
||||
* [Litgu.ru](https://litgu.ru/) - Books / Audiobooks
|
||||
|
@ -1479,6 +1495,7 @@
|
|||
|
||||
* ⭐ **[DescargasDD](https://descargasdd.org/)** - Video / Audio / Castilian / Latino / [Telegram](https://t.me/joinchat/VAWOu0TNfOXfnauA)
|
||||
* ⭐ **[eMule](https://www.emule-project.com/home/perl/help.cgi?l=17&rm=show_topic&topic_id=586)** - Video / Audio / Reading / NSFW / Castilian
|
||||
* ⭐ **[Curso_vip](https://t.me/Curso_vip)** - Courses / Books
|
||||
* [identi](https://identi.io/) - Video / Audio / Reading / Latino / Castilian
|
||||
* [ExVagos](https://www.exvagos.org/) - Video / Audio / Reading / Castilian
|
||||
* [Gun's Cave](https://lacuevadeguns.com/forum/index.php?action=forum) - Video / Audio / Reading / Castilian
|
||||
|
@ -1498,6 +1515,7 @@
|
|||
* [mirandopeliculas](https://www.mirandopeliculas.com/) - Movies / TV / Latino
|
||||
* [Cine24h](https://cine24h.online/) - Movies / TV / Sub / Dub / 720p
|
||||
* [Peliculas 1k](https://www.peliculasmega1k.com/) - Movies / 720p
|
||||
* [relampagomovies](https://relampagomovies.com/) - Movies / TV
|
||||
* [subtituladas.com](https://subtituladas.com/) - Movies / Sub / 720p
|
||||
* [Bajalo Gratis](https://bajalogratis.com/) - Movies / Latino
|
||||
* [Mega DVDRip](https://peliculas-dvdrip.com/) - Movies / TV / Latino / Castilian / [Bypass](https://greasyfork.org/en/scripts/477591)
|
||||
|
@ -1531,6 +1549,7 @@
|
|||
* ⭐ **[DonTorrent](https://dontorrent.business/)**, [2](https://donproxies.com/) - Movies / TV / Documentaries / Castilian / [Telegram](https://t.me/s/DonTorrent) / [.onion](https://dontorufwmbqhnoe2wvko5ynis6axf7bqod6wkmdvxmjyek64tantlqd.onion/)
|
||||
* ⭐ **[MejorTorrent](https://www15.mejortorrent.rip/)** - Movies / TV / Documentaries / Castilian
|
||||
* ⭐ **[Grantorrent.wtf](https://grantorrent.wtf/)** - Movies / TV / Documentaries / Castilian
|
||||
* [EliteTorrent](https://www.elitetorrent.wf/) - Movies / TV
|
||||
* [Wolfmax4k](https://wolfmax4k.com/) - Movies / TV / 4K / 1080p
|
||||
* [Torrenflix](https://www.torrenflix.com/) - Movies / TV
|
||||
* [EsmeraldaTorrent](https://esmeraldatorrent.com/) - Movies / TV / Castilian
|
||||
|
@ -1560,7 +1579,6 @@
|
|||
* [TVRetro](https://tvretro.top/) - Classic Movies / TV
|
||||
* [poseidonhd2](https://www.poseidonhd2.co/) - Movies / TV
|
||||
* [PelisPedia](https://pelispedia.mov/) - Movies / TV / Latino
|
||||
* [Streamdz4](https://streamdz4.lat/) - Live TV / Sports
|
||||
* [futbollibrehd](https://futbol-libre.org/) / [2](https://futbollibrehd.cl/) - Live Sports
|
||||
* [la12hd](https://la12hd.com/) - Live Sports
|
||||
* [Zanex](https://zanex.lat/) - Live Sports
|
||||
|
@ -1700,7 +1718,7 @@
|
|||
|
||||
* [Türkçe Altyazı](https://turkcealtyazi.org/) - Subtitles
|
||||
* [Playstation Haber](https://playstationhaber.com/) / [MCpsp](https://www.mcpsp.com) - PlayStation Piracy Forums
|
||||
* [Turkish Audio Center](https://www.turkishaudiocenter.com), [Türkçe Ses İndir](https://www.turkcesesindir.com/), [Dw Force](http://dwa-audio.blogspot.com/) or [Tr Sound Track](https://trsoundtrack.blogspot.com/) - Turkish Dubs
|
||||
* [Turkish Audio Center](https://www.turkishaudiocenter.com), [Shareses](https://shareses.com), [Türkçe Ses İndir](https://www.turkcesesindir.com/), [Turkce Ses Dosyası](https://turkce-sesdosyasi.blogspot.com/) or [Turkish Sound Track](https://trsoundtrack.blogspot.com/) - Turkish Dubs
|
||||
* [Sinner Clown](https://sinnerclownceviri.net) / [Discord](https://discord.com/invite/nApvcT6Tt6), [Hangar](https://www.hangarceviri.com) - Game Localizations
|
||||
|
||||
## ▷ Streaming / İzleme
|
||||
|
@ -1715,7 +1733,8 @@
|
|||
* [Ddizi](https://www.ddizi.vip/) - TV
|
||||
* [Dizilab](https://dizilab.com/) - TV
|
||||
* [Diziizle](https://www.diziizle.tel/) - TV
|
||||
* [Jet Film izle](https://jetfilmizle.de/), [4kFilmizlesene](https://www.4kfilmizlesene.org/) or [Film İzlesene](https://www.filmizlesene.pro) - Movies
|
||||
* [Dizilla](https://dizilla.club) - Movies / TV
|
||||
* [Filmmodu](https://www.filmmodu.tv/), [Jet Film izle](https://jetfilmizle.de/), [4kFilmizlesene](https://www.4kfilmizlesene.org/) or [Film İzlesene](https://www.filmizlesene.pro) - Movies
|
||||
* [Turkish123](https://turkish123.com/) or [Yoturkish](https://www.yoturkish.com) - Turkish TV series with English subtitles
|
||||
* [Türk Anime](https://www.turkanime.co/) / [Downloader](https://github.com/KebabLord/turkanime-indirici), [Anizm](https://anizm.net/), [Anime Who](https://animewho.com), [TR Anime İzle](https://www.tranimeizle.co), [OpenAnime](https://openani.me/) - Anime
|
||||
|
||||
|
@ -1723,9 +1742,8 @@
|
|||
|
||||
* ⭐ **[Kitap Botu](https://t.me/Kitap777bot)** - The largest Turkish PDF/EPUB/MOBI archive in the world
|
||||
* 🌐 **[Turkish PDF Channels](https://new2.telemetr.io/en/catalog/turkey/books?page=1&sort=participants_growth_7_days)** - Most popular Turkish PDF channels in Telegram
|
||||
* [Telegram Groups](https://t.me/addlist/rRuHcDN9G-QzMTk8), [Whatsapp Groups](https://www.whatsapp.com/channel/0029VaAUDreDTkK0uDGbP21z) - Books
|
||||
* [Telegram Groups](https://t.me/addlist/ioGiM9KIZvhjOTZk), [Whatsapp Groups](https://www.whatsapp.com/channel/0029VaAUDreDTkK0uDGbP21z) - Books
|
||||
* [Manga Denizi](https://www.mangadenizi.net/) - Manga / [Discord](https://discord.com/invite/8zBMSGZ)
|
||||
* [Manga TR](https://manga-tr.com/) - Manga
|
||||
* [Mavi Manga](https://mavimanga.com/) - Manga
|
||||
* [Trwebtoon](https://trwebtoon.com/) - Manga
|
||||
* [Nirvana Manga](https://nirvanamanga.com/) - Manga
|
||||
|
@ -1920,8 +1938,10 @@
|
|||
* [DR.DK](https://www.dr.dk/) - Danish / Movies / TV / Live
|
||||
* [CyberSkills](https://discord.com/invite/2tTwMvbSXu) - Danish Cybersecurity Discord
|
||||
* [Lesics](https://youtube.com/@LesicsDE) - Danish / Sabins Civil Engineering
|
||||
* [TorrentHeaven](https://www.torrentheaven.org/) - Dutch Torrents / Video / Audio / Books / NSFW
|
||||
* [NPO](https://npo.nl/) - Dutch / TV Streaming
|
||||
* [Oorboekje](https://oorboekje.nl/) - Dutch Radio Stations
|
||||
* [Eboek.info](https://eboek.info/) - Dutch / Download / Comics
|
||||
* [Deildu](https://deildu.net/) - Icelandic / Torrents
|
||||
* [Shafilm](https://shafilm.vip/) - Kurdish / Streaming / Movies / TV / Anime / Cartoons
|
||||
* [kzkitap](https://t.me/kzkitap) - Kazakh Books
|
||||
|
|
107
docs/other/selfhosting.md
Normal file
107
docs/other/selfhosting.md
Normal file
|
@ -0,0 +1,107 @@
|
|||
---
|
||||
title: Selfhosting FMHY
|
||||
description: This guide will help you set up and run your own instance of FMHY locally.
|
||||
---
|
||||
|
||||
# Selfhosting
|
||||
|
||||
This guide will help you set up and run your own instance of FMHY locally.
|
||||
|
||||
:::warning
|
||||
Do note that you **must** differentiate your instance from the official site (fmhy.net) to avoid confusion. Steps to do so are given below.
|
||||
:::
|
||||
|
||||
#### Prerequisites
|
||||
|
||||
- [Git](https://git-scm.com/downloads)
|
||||
- [Node.js](https://nodejs.org/en/download/) - Use the latest available LTS, doesn't matter much
|
||||
- [pnpm 9.12.2 or newer](https://pnpm.io/installation)
|
||||
|
||||
#### Step 1: Clone the Repository
|
||||
|
||||
```bash
|
||||
git clone https://github.com/fmhy/edit.git
|
||||
cd edit
|
||||
```
|
||||
|
||||
#### Step 2: Install Dependencies
|
||||
|
||||
Install project dependencies using pnpm:
|
||||
|
||||
```bash
|
||||
pnpm install
|
||||
```
|
||||
|
||||
#### Step 3: Development Mode
|
||||
|
||||
To run the project in development mode:
|
||||
|
||||
```bash
|
||||
# Start the documentation site in dev mode
|
||||
pnpm docs:dev
|
||||
|
||||
# Start the API in dev mode (if needed)
|
||||
pnpm api:dev
|
||||
```
|
||||
|
||||
The development server will start at `http://localhost:5173` by default.
|
||||
|
||||
#### Step 4: Building for Production
|
||||
|
||||
You will need to update:
|
||||
- the `meta` constant in `docs/.vitepress/constants.ts`
|
||||
- `name`: Name of your instance
|
||||
- `hostname`: Your domain
|
||||
- `description`: Description of your instance
|
||||
- `tags`: Opengraph tags
|
||||
- `build`: Build options (can be configured with [Environment Variables](/other/selfhosting#environment-variables))
|
||||
- `docs/index.md`
|
||||
- `title`
|
||||
- `description`
|
||||
- `hero.name`
|
||||
- `hero.tagline`
|
||||
|
||||
|
||||
To build the project for production:
|
||||
|
||||
```bash
|
||||
# Build the documentation site
|
||||
pnpm docs:build
|
||||
|
||||
# Build the API (if needed) using the Node.js preset
|
||||
NITRO_PRESET=node pnpm api:build
|
||||
```
|
||||
|
||||
#### Step 5: Preview Production Build
|
||||
|
||||
To preview the production build locally:
|
||||
|
||||
```bash
|
||||
# Preview the documentation site
|
||||
pnpm docs:preview
|
||||
|
||||
# Preview the API (if needed)
|
||||
pnpm api:preview
|
||||
```
|
||||
|
||||
#### Step 6: Deploy
|
||||
|
||||
See the [VitePress deployment guide](https://vitepress.dev/guide/deploy) for more information.
|
||||
|
||||
#### Environment Variables
|
||||
|
||||
You may want to disable NSFW content (sidebar entry, page contents) and/or the API component for Feedback:
|
||||
|
||||
- `FMHY_BUILD_NSFW` - Disables NSFW content (experimental)
|
||||
- `FMHY_BUILD_API` - Disables the API component
|
||||
|
||||
#### Troubleshooting
|
||||
|
||||
1. If you encounter Node.js version issues, ensure you're using Node.js 21+
|
||||
2. For pnpm-related issues, make sure you're using pnpm 9+
|
||||
3. Clear the cache if you encounter build issues:
|
||||
```bash
|
||||
rm -rf docs/.vitepress/cache
|
||||
rm -rf docs/.vitepress/dist
|
||||
pnpm install
|
||||
```
|
|
@ -3,7 +3,7 @@ title: Internet Archive Breach
|
|||
description: Internet Archive was hacked
|
||||
date: 2024-10-09
|
||||
next: false
|
||||
aside: right
|
||||
|
||||
prev: false
|
||||
|
||||
footer: true
|
||||
|
|
|
@ -3,7 +3,7 @@ title: Monthly Updates [April]
|
|||
description: April 2023 updates.
|
||||
date: 2023-04-01
|
||||
next: false
|
||||
aside: right
|
||||
|
||||
prev: false
|
||||
|
||||
footer: true
|
||||
|
|
|
@ -3,7 +3,7 @@ title: Monthly Updates [April]
|
|||
description: April 2024 updates
|
||||
date: 2024-04-01
|
||||
next: false
|
||||
aside: right
|
||||
|
||||
prev: false
|
||||
|
||||
footer: true
|
||||
|
|
|
@ -3,7 +3,7 @@ title: Monthly Updates [August]
|
|||
description: September 2023 updates.
|
||||
date: 2023-08-01
|
||||
next: false
|
||||
aside: right
|
||||
|
||||
prev: false
|
||||
|
||||
footer: true
|
||||
|
|
|
@ -3,7 +3,7 @@ title: Monthly Updates [August]
|
|||
description: August 2024 updates
|
||||
date: 2024-08-01
|
||||
next: false
|
||||
aside: right
|
||||
|
||||
prev: false
|
||||
|
||||
footer: true
|
||||
|
|
|
@ -3,7 +3,7 @@ title: Monthly Updates [December] 250k members!!
|
|||
description: Thank you all for 250K members! ♡
|
||||
date: 2023-12-01
|
||||
next: false
|
||||
aside: right
|
||||
|
||||
prev: false
|
||||
|
||||
footer: true
|
||||
|
|
|
@ -3,7 +3,7 @@ title: Monthly Updates [December]
|
|||
description: December 2024 updates.
|
||||
date: 2024-12-01
|
||||
next: false
|
||||
aside: right
|
||||
|
||||
prev: false
|
||||
|
||||
footer: true
|
||||
|
|
|
@ -3,7 +3,7 @@ title: Public Discord Server
|
|||
description: Our new space to chat in.
|
||||
date: 2023-10-24
|
||||
next: false
|
||||
aside: right
|
||||
|
||||
prev: false
|
||||
|
||||
footer: true
|
||||
|
|
|
@ -3,7 +3,7 @@ title: Monthly Updates [Feb]
|
|||
description: Febuary 2024 updates.
|
||||
date: 2024-02-01
|
||||
next: false
|
||||
aside: right
|
||||
|
||||
prev: false
|
||||
|
||||
footer: true
|
||||
|
|
|
@ -3,7 +3,7 @@ title: Monthly Updates [Feb]
|
|||
description: February 2025 updates.
|
||||
date: 2025-02-01
|
||||
next: false
|
||||
aside: right
|
||||
|
||||
prev: false
|
||||
|
||||
footer: true
|
||||
|
|
|
@ -3,7 +3,7 @@ title: We Removed FileCR as we Found Malware
|
|||
description: Update on FileCR
|
||||
date: 2023-08-14
|
||||
next: false
|
||||
aside: right
|
||||
|
||||
prev: false
|
||||
|
||||
footer: true
|
||||
|
|
|
@ -3,7 +3,7 @@ title: Monthly Updates [Jan] & Happy New Year!
|
|||
description: Happy New Year everyone! We've made a lot of progress this year.
|
||||
date: 2024-01-01
|
||||
next: false
|
||||
aside: right
|
||||
|
||||
prev: false
|
||||
|
||||
footer: true
|
||||
|
|
|
@ -3,7 +3,7 @@ title: Monthly Updates [January]
|
|||
description: January 2025 updates.
|
||||
date: 2025-01-01
|
||||
next: false
|
||||
aside: right
|
||||
|
||||
prev: false
|
||||
|
||||
footer: true
|
||||
|
|
|
@ -3,7 +3,7 @@ title: Monthly Updates [July]
|
|||
description: July 2023 updates.
|
||||
date: 2023-07-01
|
||||
next: false
|
||||
aside: right
|
||||
|
||||
prev: false
|
||||
|
||||
footer: true
|
||||
|
|
|
@ -3,7 +3,7 @@ title: Monthly Updates [July]
|
|||
description: July 2024 updates.
|
||||
date: 2024-07-01
|
||||
next: false
|
||||
aside: right
|
||||
|
||||
prev: false
|
||||
|
||||
footer: true
|
||||
|
|
|
@ -3,7 +3,7 @@ title: Monthly Updates [June]
|
|||
description: June 2023 updates.
|
||||
date: 2023-06-01
|
||||
next: false
|
||||
aside: right
|
||||
|
||||
prev: false
|
||||
footer: true
|
||||
---
|
||||
|
|
|
@ -3,7 +3,7 @@ title: Monthly Updates [June]
|
|||
description: June 2024 updates
|
||||
date: 2024-06-01
|
||||
next: false
|
||||
aside: right
|
||||
|
||||
prev: false
|
||||
|
||||
footer: true
|
||||
|
|
|
@ -3,7 +3,7 @@ title: Monthly Updates [March 2025]
|
|||
description: March 2025 updates
|
||||
date: 2025-03-01
|
||||
next: false
|
||||
aside: right
|
||||
|
||||
prev: false
|
||||
|
||||
footer: true
|
||||
|
|
|
@ -3,7 +3,7 @@ title: Monthly Updates [March]
|
|||
description: March 2024 Updates
|
||||
date: 2024-03-01
|
||||
next: false
|
||||
aside: right
|
||||
|
||||
prev: false
|
||||
|
||||
footer: true
|
||||
|
|
|
@ -3,7 +3,7 @@ title: Monthly Updates [May]
|
|||
description: May 2023 updates.
|
||||
date: 2023-05-01
|
||||
next: false
|
||||
aside: right
|
||||
|
||||
prev: false
|
||||
|
||||
footer: true
|
||||
|
|
|
@ -3,7 +3,7 @@ title: Monthly Updates [May]
|
|||
description: May 2024 updates
|
||||
date: 2024-05-01
|
||||
next: false
|
||||
aside: right
|
||||
|
||||
prev: false
|
||||
|
||||
footer: true
|
||||
|
|
|
@ -3,7 +3,7 @@ title: New Website
|
|||
description: Our brand new site (which you're on currently)
|
||||
date: 2023-11-12
|
||||
next: false
|
||||
aside: right
|
||||
|
||||
prev: false
|
||||
|
||||
footer: true
|
||||
|
|
|
@ -3,7 +3,7 @@ title: Monthly Updates [November]
|
|||
description: October 2023 updates.
|
||||
date: 2023-11-01
|
||||
next: false
|
||||
aside: right
|
||||
|
||||
prev: false
|
||||
|
||||
footer: true
|
||||
|
|
|
@ -3,7 +3,7 @@ title: Monthly Updates [November]
|
|||
description: Nov 2024 updates
|
||||
date: 2024-11-01
|
||||
next: false
|
||||
aside: right
|
||||
|
||||
prev: false
|
||||
|
||||
footer: true
|
||||
|
|
|
@ -3,7 +3,7 @@ title: Monthly Updates [October]
|
|||
description: October 2023 updates.
|
||||
date: 2023-10-01
|
||||
next: false
|
||||
aside: right
|
||||
|
||||
prev: false
|
||||
|
||||
footer: true
|
||||
|
|
|
@ -3,7 +3,7 @@ title: Monthly Updates [Oct 2024]
|
|||
description: October 2024 updates
|
||||
date: 2024-10-01
|
||||
next: false
|
||||
aside: right
|
||||
|
||||
prev: false
|
||||
|
||||
footer: true
|
||||
|
|
|
@ -3,7 +3,7 @@ title: How-to Search FMHY
|
|||
description: Various tools to help you query FMHY.
|
||||
date: 2023-01-07
|
||||
next: false
|
||||
aside: right
|
||||
|
||||
prev: false
|
||||
|
||||
footer: true
|
||||
|
|
|
@ -3,7 +3,7 @@ title: Monthly Updates [September]
|
|||
description: September 2023 updates.
|
||||
date: 2023-09-01
|
||||
next: false
|
||||
aside: right
|
||||
|
||||
prev: false
|
||||
|
||||
footer: true
|
||||
|
|
|
@ -3,7 +3,7 @@ title: Monthly Updates [Sept]
|
|||
description: September 2024 updates
|
||||
date: 2024-09-01
|
||||
next: false
|
||||
aside: right
|
||||
|
||||
prev: false
|
||||
|
||||
footer: true
|
||||
|
|
|
@ -11,47 +11,39 @@
|
|||
* ⭐ **[Library Genesis](https://libgen.rs/)** - 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-lib.gs/)**, [2](https://articles.sk/), [3](https://z-lib.gd/), [4](https://1lib.sk/), [5](https://z-library.sk/) - Books / Comics / Educational / [Apps / Extensions](https://go-to-library.sk/) / [.onion](http://loginzlib2vrak5zzpcocc3ouizykn6k5qecgj2tzlnab5wcbqhembyd.onion/), [2](http://bookszlibb74ugqojhzhg2a63w5i2atv5bqarulgczawnbmsb6s6qead.onion/) / [Subreddit](https://www.reddit.com/r/zlibrary/)
|
||||
* ⭐ **[Mobilism](https://forum.mobilism.org)**, [2](https://forum.mobilism.me/) - Books / Audiobooks / Magazines / Newspapers / Comics / Signup Required / [User Ranks](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#mobilism-ranks)
|
||||
* ⭐ **[Bookracy](https://bookracy.ru/)**, [2](https://bookracy.org/), [3](https://lite.bookracy.org/) - Books / [Download Buttons](https://greasyfork.org/en/scripts/514877) / [Subreddit](https://reddit.com/r/bookracy) / [Discord](https://discord.com/invite/bookracy)
|
||||
* ⭐ **[MyAnonaMouse](https://www.myanonamouse.net/)** - [Invites](https://www.myanonamouse.net/inviteapp.php)
|
||||
* ⭐ **[MyAnonaMouse](https://www.myanonamouse.net/)** / [Invites](https://www.myanonamouse.net/inviteapp.php)
|
||||
* [Archive.org](https://archive.org/details/texts) - Books / Audiobooks / Magazines / Newspapers / [Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage/#wiki_internet_archive_tools)
|
||||
* [Liber3](https://liber3.eth.limo/) - Books
|
||||
* [Bookracy](https://bookracy.ru/), [2](https://bookracy.org/), [3](https://lite.bookracy.org/) / [Download Buttons](https://greasyfork.org/en/scripts/514877) / [Subreddit](https://reddit.com/r/bookracy) / [Discord](https://discord.com/invite/bookracy)
|
||||
* [Liber3](https://liber3.eth.limo/)
|
||||
* [The Library](https://discord.gg/mSyFJz9) - Book Discord Server
|
||||
* [eBookHunter](https://ebook-hunter.org/) - Books / Comics / Use Adblocker
|
||||
* [FreeBannedBooks](https://freebannedbooks.org/) - Books Banned in Schools by Politicians
|
||||
* [FreeBannedBooks](https://freebannedbooks.org/) - US Banned Books
|
||||
* [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
|
||||
* [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.irchighway.net/ebooks / [Request Guide](https://i.ibb.co/3WcCF56/3574e36b1bb2.png)
|
||||
* IRC Book Tools - [Guide](https://www.reddit.com/r/Piracy/comments/2oftbu/guide_the_idiot_proof_guide_to_downloading_ebooks/) / [mIRC](https://redd.it/znprct) / [Downloader](https://evan-buss.github.io/openbooks/)
|
||||
* [BookSee](https://en.booksee.org/), [2](https://bookree.org/) - Books
|
||||
* [Bookstagram](https://vk.com/bookstagram_eng) - Books / Magazines
|
||||
* [Docutr](https://www.docutr.com/) - Books / Magazines / Newspapers
|
||||
* [dpgroup](https://www.dpgroup.org/) - Books / Magazines
|
||||
* [eBookBB](https://ebookbb.in/) or [iBookPile](https://ibookpile.in/) - Books
|
||||
* [AllBooksWorld](https://allbooksworld.com/) - Books
|
||||
* [Novel12](https://novel12.com/) - Books
|
||||
* [IsIDore](https://rentry.co/FMHYBase64#isidore) - Books
|
||||
* [Various Books](https://rentry.co/FMHYBase64#various-books-manuals) - Books
|
||||
* [ibookscafe](https://bookscafe.net/) - Books / NSFW
|
||||
* [English E-Reader](https://english-e-reader.net/) - Books
|
||||
* [Avalon Library](https://avalonlibrary.net/) - Books
|
||||
* [Library Land](https://library.land/) - Books
|
||||
* [Litgu.ru](https://litgu.ru/) - Books
|
||||
* [Elegant Solutions](http://esspc-ebooks.com/) - Books
|
||||
* [BookFrom.net](https://www.bookfrom.net/) - Books
|
||||
* [FreeEditorial](https://www.freeditorial.com/) - Books
|
||||
* [Zoboko](https://zoboko.com/) - Books
|
||||
* [TG Books](https://torrentgalaxy.to/) - Torrents / 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
|
||||
* [BookSee](https://en.booksee.org/)
|
||||
* [Bookstagram](https://vk.com/bookstagram_eng) - Books / Magazines / VK
|
||||
* [dpgroup](https://www.dpgroup.org/) - Books / Magazines / Signup Required
|
||||
* [eBookBB](https://ebookbb.in/) or [iBookPile](https://ibookpile.in/)
|
||||
* [AllBooksWorld](https://allbooksworld.com/) - [Telegram](https://t.me/allbooksworlddotcom)
|
||||
* [Novel12](https://novel12.com/) - Read Online
|
||||
* [IsIDore](https://rentry.co/FMHYBase64#isidore)
|
||||
* [Various Books](https://rentry.co/FMHYBase64#various-books-manuals) - Educational Books and Manuals
|
||||
* [Avalon Library](https://avalonlibrary.net/) - Conspirology Books
|
||||
* [Library Land](https://library.land/) or [BookFrom.net](https://www.bookfrom.net/) - Read Online
|
||||
* [FreeEditorial](https://www.freeditorial.com/en/) - Read Online / [Spanish](https://www.freeditorial.com)
|
||||
* [NovelsArchive](https://t.me/NovelsArchive) - Telegram
|
||||
* [BooksMania](https://t.me/booksmania) - Telegram
|
||||
* [FreeReadFeed](https://www.freereadfeed.com/) - Free Kindle Releases
|
||||
* [Flibusta](https://flibusta.is/) / [.i2p](https://flibusta.i2p/), [2](http://zmw2cyw2vj7f6obx3msmdvdepdhnw2ctc4okza2zjxlukkdfckhq.b32.i2p/) - Signup Required
|
||||
* [ExClassics](https://www.exclassics.com/) - Public Domain Obscure Books / Read Online
|
||||
* [Hoopla](https://www.hoopladigital.com/) - Library Card Required
|
||||
* [The Free Book Library](https://ebooks.i2p/) - I2P Required
|
||||
* [Find Books](https://www.findbooks.info/) - IPFS Required
|
||||
* [Antilibrary](http://127.0.0.1:43110/Antilibrary.bit/), [2](https://proxy.zeronet.dev/Antilibrary.bit/) - ZeroNet Required
|
||||
* [IBHaven](https://ibhaven.st/) - Books / Tor + P2P Client Required
|
||||
* [IBHaven](https://ibhaven.st/) - Tor + P2P Client Required
|
||||
* [/r/FreeEBOOKS](https://reddit.com/r/FreeEBOOKS)
|
||||
|
||||
***
|
||||
|
@ -129,6 +121,7 @@
|
|||
* [Inkitt](https://www.inkitt.com/fanfiction) - Fanfiction
|
||||
* [Wattpad](https://wattpad.com/) - Fanfiction
|
||||
* [Royal Road](https://royalroad.com/) - Fanfiction
|
||||
* [FictionPress](https://www.fictionpress.com/) - Fanfiction
|
||||
* [Quotev](https://www.quotev.com/stories/c/Fanfiction) - Fanfiction
|
||||
* [fiction.live](https://fiction.live/) - Fanfiction
|
||||
* [Booksie](https://www.booksie.com/) - Short Stories
|
||||
|
@ -299,10 +292,10 @@
|
|||
|
||||
# ► Audiobooks
|
||||
|
||||
* ⭐ **[Text Reader](https://elevenreader.io/)** or [Ebook2Audiobook](https://hub.docker.com/r/athomasson2/ebook2audiobook) - Ebook to Audiobook Converters
|
||||
* ⭐ **[Text Reader](https://elevenreader.io/)**, [Audiblez](https://github.com/santinic/audiblez) or [Ebook2Audiobook](https://hub.docker.com/r/athomasson2/ebook2audiobook) - Ebook to Audiobook Converters
|
||||
* [AudioBookConverter](https://github.com/yermak/AudioBookConverter) - Audiobook Format Converter
|
||||
* [Audible Tools](https://audible-tools.kamsker.at/), [AaxAudioConverter](https://github.com/audiamus/AaxAudioConverter) or [Libation](https://getlibation.com/) - Remove DRM from Audible Audiobooks
|
||||
* [AudiobookShelf](https://www.audiobookshelf.org/) or [BookSonic](https://booksonic.org/) - Self-Hosted Audiobook Servers
|
||||
* [AudiobookShelf](https://www.audiobookshelf.org/) / [GitHub](https://github.com/advplyr/audiobookshelf-app) or [BookSonic](https://booksonic.org/) - Self-Hosted Audiobook Servers
|
||||
|
||||
***
|
||||
|
||||
|
@ -406,7 +399,6 @@
|
|||
* ⭐ **[MangaDex](https://mangadex.org/)** / [Downloader](https://mangadex-dl.mansuf.link/) / [Script](https://github.com/frozenpandaman/mangadex-dl)
|
||||
* ⭐ **[ComicK](https://comick.io/)** / [Discord](https://discord.gg/comick)
|
||||
* ⭐ **[Weeb Central](https://weebcentral.com/)**
|
||||
* ⭐ **[MangaPark](https://mangapark.net/)** / [Discord](https://discord.gg/jctSzUBWyQ) / [Proxies](https://rentry.co/mangapark)
|
||||
* ⭐ **[Nyaa Manga / LNs](https://nyaa.si/?f=0&c=3_0&q=)** - Torrents
|
||||
* ⭐ **[MangaPiracy](https://discord.gg/ZgMtAyxFSU)** - Manga Piracy Server / [Subreddit](https://reddit.com/r/MangaPiracy)
|
||||
* ⭐ **[Manga CSE](https://cse.google.com/cse?cx=006516753008110874046:4im0fkhej3z)** / [CSE 2](https://cse.google.com/cse?cx=006516753008110874046:a5mavctjnsc#gsc.tab=0) - Multi-Site Manga Search
|
||||
|
@ -417,6 +409,8 @@
|
|||
* [The Manga Library](https://rentry.co/FMHYBase64#the-manga-library)
|
||||
* [MangaFire](https://mangafire.to/) / [Discord](https://discord.com/invite/KRQQKzQ6CS)
|
||||
* [BATO.TO](https://bato.to/), [2](https://fto.to/) / [Proxies](https://rentry.co/batoto) / [Discord](https://discord.com/invite/batoto)
|
||||
* [MangaPark](https://mangapark.net/) / [Discord](https://discord.gg/jctSzUBWyQ) / [Proxies](https://rentry.co/mangapark)
|
||||
* [MangaHaven](https://mangahaven.net/)
|
||||
* [Rive Manga](https://rivestream.org/manga)
|
||||
* [Freek](https://freek.to/explore/manga)
|
||||
* [MangaReader](https://mangareader.to/) / [Discord](https://discord.com/invite/Bvc5mVcUqE) / [Subreddit](https://www.reddit.com/r/MangaReaderOfficial/)
|
||||
|
@ -431,6 +425,7 @@
|
|||
* [Webtoon](https://www.webtoons.com/)
|
||||
* [Toonily](https://toonily.com/)
|
||||
* [Like Manga](https://likemanga.in/)
|
||||
* [Bingeflex Manga](https://bingeflex.vercel.app/manga)
|
||||
* [Wuxia World](https://wuxiaworld.site/)
|
||||
* [Zero Scans](https://zscans.com/)
|
||||
* [AsuraScansFree](https://asurascansfree.com/)
|
||||
|
@ -459,7 +454,8 @@
|
|||
* 🌐 **[The Index](https://theindex.moe/library/novels)** - Light Novel Site Index / [Discord](https://discord.gg/Snackbox) / [Wiki](https://thewiki.moe/)
|
||||
* ⭐ **[Novel Updates](https://www.novelupdates.com/)**
|
||||
* ⭐ **[jnovels](https://jnovels.com/)** or [MP4DIRECTS](https://mp4directs.com/) / Allows Downloads
|
||||
* ⭐ **[Just Light Novels](https://www.justlightnovels.com/)** / Allows Downloads
|
||||
* [Visual Novels Android](https://t.me/visual_novels_android_eng) - Android Visual Novel Ports
|
||||
* [Just Light Novels](https://www.justlightnovels.com/) / Allows Downloads
|
||||
* [Web Novel Pub](https://www.webnovelpub.pro/)
|
||||
* [LightNovelHeaven](https://lightnovelheaven.com), [AllNovel](https://allnovel.org), [NovelFull](https://novelfull.com/) or [NOVGO](https://novgo.net/)
|
||||
* [Vynovel](https://vynovel.com/)
|
||||
|
@ -720,18 +716,18 @@
|
|||
* ⭐ **[ResearchGate](https://www.researchgate.net/)** - Research Papers / Publications
|
||||
* ⭐ **[SciLit](https://www.scilit.com/)** - Research Papers / Publications
|
||||
* ⭐ **[Mendeley](https://www.mendeley.com/)** - Research Papers / [Data](https://data.mendeley.com/) / [Reference Manager](https://www.mendeley.com/download-reference-manager/)
|
||||
* ⭐ **[PapersWithCode](https://paperswithcode.com/)**, [Catalyzex](https://www.catalyzex.com/), [AI Reading List](https://docs.google.com/document/d/1bEQM1W-1fzSVWNbS4ne5PopB2b7j8zD4Jc3nm4rbK-U/), [AI RND](https://www.ai-rnd.com/) or [Daily Papers](https://huggingface.co/papers) - AI Research Papers
|
||||
* [Lumina](https://www.lumina.sh/) - AI Research Paper Search / [Discord](https://discord.com/invite/YSsSK2g3rY)
|
||||
* [BulletPapers](https://www.bulletpapers.ai/) - Paper Summaries
|
||||
* [Springer](https://link.springer.com/) - Research Papers / Publications
|
||||
* [ScienceDirect](https://www.sciencedirect.com/) - Research Papers
|
||||
* [base-search](https://www.base-search.net/) - Academic Papers Search Engine
|
||||
* [BASE](https://www.base-search.net/) - Academic Papers Search Engine
|
||||
* [Share OSF](https://share.osf.io/) - Academic Papers Search Engine
|
||||
* [Scinapse](https://scinapse.io/) - Academic Papers Search Engine / [Pro Script](https://rentry.co/scinapsebypass)
|
||||
* [Semantic Scholar](https://www.semanticscholar.org/) - Academic Papers Search Engine
|
||||
* [Consensus](https://consensus.app/) - Academic Papers Search Engine
|
||||
* [Crossref](https://search.crossref.org/) - Articles Papers Search Engine
|
||||
* [lens](https://www.lens.org/) - Research Papers / Patents Database
|
||||
* [dimensions](https://app.dimensions.ai/discover/publication) - Research Papers / Patents Database
|
||||
* [Lens](https://www.lens.org/) - Research Papers / Patents Database
|
||||
* [Dimensions](https://app.dimensions.ai/discover/publication) - Research Papers / Patents Database
|
||||
* [Academia](https://www.academia.edu/) - Academic Papers / [Downloader](https://github.com/ryanfb/academia-dl)
|
||||
* [FreeFullPDF](https://freefullpdf.com/) - Academic Papers
|
||||
* [Zooniverse](https://www.zooniverse.org/) - Crowdsourced Research
|
||||
|
@ -762,11 +758,12 @@
|
|||
* [PubMed](https://pubmed.ncbi.nlm.nih.gov/) - Medical Journals / [Search](https://www.pubmedisearch.com/)
|
||||
* [OpenMD](https://openmd.com/) - Medical Journals
|
||||
* [Free Medical Journals](http://www.freemedicaljournals.com/) - Medical Journals
|
||||
* [medrxiv](https://www.medrxiv.org/) - Medicine Preprints
|
||||
* [biorxiv](https://www.biorxiv.org/) - Biology Preprints
|
||||
* [Medrxiv](https://www.medrxiv.org/) - Medicine Preprints
|
||||
* [Biorxiv](https://www.biorxiv.org/) - Biology Preprints
|
||||
* [Bioline](https://www.bioline.org.br/) - Bioscience Journals
|
||||
* [SSRN](https://www.ssrn.com/) - Early Stage Research Papers
|
||||
* [CensorBib](https://censorbib.nymity.ch/) or [censoredplanet.org](https://censoredplanet.org/) - Internet Censorship Research Papers
|
||||
* [PapersWithCode](https://paperswithcode.com/), [Catalyzex](https://www.catalyzex.com/), [AI Reading List](https://docs.google.com/document/d/1bEQM1W-1fzSVWNbS4ne5PopB2b7j8zD4Jc3nm4rbK-U/), [AI RND](https://www.ai-rnd.com/) or [Daily Papers](https://huggingface.co/papers) - AI Research Papers
|
||||
* [CensorBib](https://censorbib.nymity.ch/) or [Censored Planet](https://censoredplanet.org/) - Internet Censorship Research Papers
|
||||
* [Connected Papers](https://www.connectedpapers.com/) or [LitMaps](https://app.litmaps.com/) - Find Connected Academic Papers
|
||||
|
||||
***
|
||||
|
@ -859,7 +856,7 @@
|
|||
|
||||
* ⭐ **[GoodReads](https://www.goodreads.com/)** / [Frontend](https://github.com/nesaku/BiblioReads) - Tracking / Reviews / Recommendations / [Ratings Filter](https://www.book-filter.com/)
|
||||
* ⭐ **[The Greatest Books](https://www.thegreatestbooks.org/)** - Curated Books List / [Downloader](https://greasyfork.org/en/scripts/514877)
|
||||
* ⭐ **[TasteDive](https://tastedive.com/)** - Discovery and Recommendations
|
||||
* ⭐ **[TasteDive](https://tastedive.com/books)** - Discovery and Recommendations
|
||||
* ⭐ **[StoryGraph](https://www.thestorygraph.com/)** - Tracking / Recommendations
|
||||
* ⭐ **[MyAnimeList](https://myanimelist.net/)** - Manga / Light Novels / [Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_myanimelist_tools)
|
||||
* ⭐ **[Anilist](https://anilist.co/)** - Manga / Light Novels / Manhwa / Manhua / [Wrapper](https://github.com/AurelicButter/AniList-Node) / [Extras](https://greasyfork.org/en/scripts/370473-automail)
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
|
||||
# ► Social Media Tools
|
||||
|
||||
* 🌐 **[alternative-frontends](https://github.com/digitalblossom/alternative-frontends)** or [Farside](https://farside.link/), [2](https://cf.farside.link/) - Frontend Indexes
|
||||
* 🌐 **[alternative-frontends](https://github.com/digitalblossom/alternative-frontends)**, [Farside](https://farside.link/), [2](https://cf.farside.link/) or [PrivacyRedirect](https://privacyredirect.com/) - Frontend Indexes
|
||||
* ↪️ **[Android Social Media Apps](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/android/#wiki_.25B7_social_media_apps)** / **[iOS](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/android/#wiki_.25B7_social_media_apps2)**
|
||||
* ⭐ **[GrayJay](https://grayjay.app/desktop/)** - Combines YouTube, Twitch, Rumble, etc. / [Guide](https://youtu.be/EnZrv37u66c)
|
||||
* ⭐ **[SocialBlade](https://socialblade.com/)** - Social Media Stats
|
||||
|
@ -41,7 +41,6 @@
|
|||
* [Discord Downloader Go](https://github.com/get-got/discord-downloader-go) - Discord File Downloader
|
||||
* [Toolscord](https://toolscord.com/), [discord.id](https://discord.id/) or [Discord Avatar](https://discord-avatar.com/) - Avatar Downloaders
|
||||
* [Disbox](https://disboxapp.github.io/web/) - Discord Cloud Storage
|
||||
* [Restorio](https://restorio.net/), [Xenon](https://xenon.bot/) or [Restorecord](https://restorecord.com/) - Backup Discord Servers
|
||||
* [Discrub](https://github.com/prathercc/discrub-ext) - Message Manipulation / Export Tool
|
||||
* [Discord Chat Exporter](https://github.com/Tyrrrz/DiscordChatExporter) / [Python](https://github.com/mahtoid/DiscordChatExporterPy) or [Discord History Tracker](https://dht.chylex.com/) / [GitHub](https://github.com/chylex/Discord-History-Tracker) - Archive / Export Discord Chats
|
||||
* [Wumpus Central](https://discord.gg/wumpus-central-1087801778365546556) - Discord Experimental Server Hub
|
||||
|
@ -87,7 +86,7 @@
|
|||
* [Discordo](https://github.com/ayn2op/discordo) - Discord Terminal Client
|
||||
* [Vesktop](https://github.com/Vencord/Vesktop) - Web Client w/ Vencord Preinstalled
|
||||
* [Spacebar](https://github.com/spacebarchat/spacebarchat) - Self-hostable Discord Compatible Client
|
||||
* [Dorion](https://github.com/SpikeHD/Dorion) - Lightweight Discord Client
|
||||
* [Dorion](https://spikehd.github.io/projects/dorion/) - Lightweight Discord Client / [GitHub](https://github.com/SpikeHD/Dorion)
|
||||
* [Dissent](https://github.com/diamondburned/dissent) - GTK4 Discord Client
|
||||
* [Discord Portable](https://portapps.io/app/discord-portable/) / [PTB PortApps](https://portapps.io/app/discord-ptb-portable/) - Portable Discord Stable
|
||||
|
||||
|
@ -96,7 +95,7 @@
|
|||
## ▷ Client Customization
|
||||
|
||||
* 🌐 **[Client Themes](https://betterdiscord.app/themes)** or [Discord Themes](https://github.com/topics/discord-theme) - Client Theme Index
|
||||
* ⭐ **[Discohook](https://discohook.org/)**, [2](https://discohook.app/) / [Discohook Utils](https://dutils.shay.cat/), [Embed Creator](https://embed.dan.onl/), [blankdvth](https://embed.blankdvth.com/) or [Embed Generator](https://message.style/) - Embed Generators
|
||||
* ⭐ **[Discohook](https://discohook.org/)**, [2](https://discohook.app/) / [Discohook Utils](https://dutils.shay.cat/), [Embed Creator](https://embed.dan.onl/), [blankdvth](https://embed.blankdvth.com/), [x266](https://x266.mov/discord-embed/) or [Embed Generator](https://message.style/) - Embed Generators
|
||||
* ⭐ **[CustomRP](https://www.customrp.xyz/)** - Customizable Rich Presence
|
||||
* [BD Editor](https://bdeditor.dev/) - Client Theme Editor
|
||||
* [ChromaDiscordApp](https://github.com/tgraupmann/ChromaDiscordApp) - Chroma Light for Discord
|
||||
|
@ -140,7 +139,7 @@
|
|||
* [Steambase Bot](https://steambase.io/tools/steam-discord-bot) - Steam Insights Bot
|
||||
* [Red Discordbot](https://github.com/Cog-Creators/Red-DiscordBot), [Discord-Bot](https://github.com/CorwinDev/Discord-Bot) or [Loritta](https://github.com/LorittaBot/Loritta) - Self-Hostable Discord Moderation Bots
|
||||
* [Wickbot](https://wickbot.com/) - Discord Security Bot
|
||||
* [anti-phishing-bot](https://github.com/Benricheson101/anti-phishing-bot) - Discord Anti Phishing Bot
|
||||
* [anti-phishing-bot](https://github.com/Benricheson101/anti-phishing-bot) - Discord Anti-Phishing Bot
|
||||
* [Automod Config](https://docs.google.com/spreadsheets/d/1pUGVAARMBadmNqQW6cPKhSaT-uYDgQlRBnlQ9TMDXTI/edit#gid=730346323) - Automod Bot Config
|
||||
* [Modmail](https://github.com/modmail-dev/modmail) - Discord Modmail Bot
|
||||
* [Discord-Linux](https://discord-linux.com/) - Linux Container Bot
|
||||
|
@ -178,11 +177,11 @@
|
|||
# ► Reddit Tools
|
||||
|
||||
* ⭐ **[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
|
||||
* ⭐ **[Reddit Enhancement Suite](https://redditenhancementsuite.com/)**, [Reddit++](https://greasyfork.org/en/scripts/490046), [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
|
||||
* [Libreddit](https://github.com/libreddit/libreddit-instances/blob/master/instances.md), [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) / [GitHub](https://github.com/redlib-org/redlib) - Reddit Frontends
|
||||
* [Redditp](https://redditp.com/) or [Reddit Viewer](https://reddit-viewer.com/) - Reddit TikTok Style Viewers
|
||||
* [Beleave](https://beleave.virock.org/) - Bulk Subreddit Unsub Tool
|
||||
* [Beleave](https://beleave.virock.org/) or [SubCleaner](https://www.subcleaner.com/) - Subreddit Cleaners / Managers
|
||||
* [Reddit Comber](https://redditcomber.com/) or [Sub Notification](https://redd.it/5mz9z5) - Reddit Keyword Notifications
|
||||
* [Reddit Preview](https://redditpreview.com/) - Preview Reddit Posts
|
||||
* [RedditRaffler](https://www.redditraffler.com/) - Reddit Raffle System
|
||||
|
@ -295,7 +294,8 @@
|
|||
|
||||
## ▷ Telegram File Tools
|
||||
|
||||
* ⭐ **[teldrive](https://github.com/tgdrive/teldrive)**, [File-Sharing-Bot](https://github.com/CodeXBotz/File-Sharing-Bot) / [Telegram](https://t.me/CodeXBotz), [TelegramCloud](https://github.com/iw4p/telegram-cloud), [easy_share_bot](https://t.me/easy_share_bot) or [UploadBot](https://t.me/uploadbot) - Upload Files to Telegram
|
||||
* ⭐ **[Teldrive](https://github.com/tgdrive/teldrive)** - File Manager / Uploader
|
||||
* [File-Sharing-Bot](https://github.com/CodeXBotz/File-Sharing-Bot) / [Telegram](https://t.me/CodeXBotz), [TelegramCloud](https://github.com/iw4p/telegram-cloud), [easy_share_bot](https://t.me/easy_share_bot) or [UploadBot](https://t.me/uploadbot) - Upload Files to Telegram
|
||||
* [MediaDownBot](https://t.me/mediadownbot), [WZML-X](https://github.com/SilentDemonSD/WZML-X), [Telegram Media Downloader](https://greasyfork.org/en/scripts/446342), [TopSaverBot](https://t.me/TopSaverBot), [CatdlBot](https://t.me/CatdlBot) or [DownloadsMasterBot](https://t.me/DownloadsMasterBot) - Media Downloaders
|
||||
* [GdriveXbot](https://t.me/TheGdriveXBot), [google-drive-telegram-bot](https://github.com/viperadnan-git/) or [Python Aria Mirror Bot](https://github.com/lzzy12/python-aria-mirror-bot) - Google Drive Upload Bots
|
||||
* [SearchX](https://github.com/iamLiquidX/SearchX) - Google Drive Search Bot
|
||||
|
@ -332,7 +332,6 @@
|
|||
|
||||
# ► YouTube Tools
|
||||
|
||||
* 🌐 **[YTLarge](https://ytlarge.com/)** - YouTube Tools Index
|
||||
* ⭐ **[PocketTube](https://pockettube.io/)** or [Kadium](https://kadium.kasper.space/) - Subscription Managers
|
||||
* [Youtube-shorts block](https://github.com/doma-itachi/Youtube-shorts-block) or [Shorts Deflector](https://evenevan.github.io/shorts-deflector/) / [GitHub](https://github.com/evenevan/shorts-deflector) - Play Shorts In The Normal Desktop Interface
|
||||
* [Remove YouTube Shorts](https://addons.mozilla.org/en-US/firefox/addon/remove-youtube-shorts/) or [Hide YT Shorts Filter List](https://github.com/gijsdev/ublock-hide-yt-shorts) - Hide YouTube Shorts
|
||||
|
@ -408,7 +407,6 @@
|
|||
* ⭐ **[SponsorBlock](https://sponsor.ajay.app/)** - Skip Sponsored Video Segments / [Chromecast](https://github.com/gabe565/CastSponsorSkip) / [Script](https://github.com/mchangrh/sb.js), [2](https://greasyfork.org/en/scripts/453320)
|
||||
* ⭐ **[polsy.org.uk](https://polsy.org.uk/stuff/ytrestrict.cgi)** - Video Region Restriction Checker
|
||||
* [Jump Cutter](https://github.com/WofWca/jumpcutter) - Skip Silent Parts of Videos
|
||||
* [Video Resumer](https://addons.mozilla.org/en-US/firefox/addon/video-resumer/) - Resume Videos Where You Left Off / [Note](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#video-resumer-note)
|
||||
* [Rotate YouTube Video](https://addons.mozilla.org/en-US/firefox/addon/rotate-youtube-video/) - Rotate, Zoom, & Mirror Videos
|
||||
* [YouTube Upload Time](https://chromewebstore.google.com/detail/youtube-upload-time/nenoecmaibjcahoahnmeinahlapheblg) - Check Exact Upload Time/Date of Videos
|
||||
* [Annotations Data Archive](https://archive.org/details/youtubeannotations) - Restore Video Annotations
|
||||
|
@ -443,12 +441,12 @@
|
|||
* ⭐ **[AMP4](https://amp4.cc/)** - YouTube Downloader / Online
|
||||
* [Videomass](https://jeanslack.github.io/Videomass/) / [GitHub](https://github.com/jeanslack/Videomass) or [ezytdl](https://github.com/sylviiu/ezytdl), [Tartube](https://tartube.sourceforge.io/), [Media Downloader](https://github.com/mhogomchungu/media-downloader) or [Parabolic](https://github.com/NickvisionApps/Parabolic) - Cross-Platform YT-DLP 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), [GDownloader](https://github.com/hstr0100/GDownloader), [dsymbol yt-dlp](https://github.com/dsymbol/yt-dlp-gui) or [Vividl](https://github.com/Bluegrams/Vividl) - YT-DLP GUIs
|
||||
* [MeTube](https://github.com/alexta69/metube) or [yt-dlp Web UI](https://github.com/marcopiovanello/yt-dlp-web-ui) - Self-Hosted YT-DLP WebUIs
|
||||
* [MeTube](https://github.com/alexta69/metube), [YoutubeDL-Material](https://github.com/Tzahi12345/YoutubeDL-Material) or [yt-dlp Web UI](https://github.com/marcopiovanello/yt-dlp-web-ui) - Self-Hosted YT-DLP
|
||||
* [Cube YouTube Downloader](https://github.com/database64128/youtube-dl-wpf) - YouTube-DL GUI
|
||||
* [YoutubeDL-Material](https://github.com/Tzahi12345/YoutubeDL-Material) - Self-Hosted youtube-dl WebUI
|
||||
* [YTDL-PATCHED](https://github.com/ytdl-patched/ytdl-patched) - YouTube CLI Downloader / yt-dlp fork
|
||||
* [YoutubeDownloader](https://github.com/Tyrrrz/YoutubeDownloader) - YouTube Downloader App
|
||||
* [EZMP3](https://ezmp3.cc/) - YouTube Downloader / Online
|
||||
* [CNVMP3](https://cnvmp3.com/) - YouTube Downloader / Online
|
||||
* [ytarchive](https://github.com/Kethsar/ytarchive) - YouTube Livestream Downloader
|
||||
* [Get Thumbs](https://boingboing.net/features/getthumbs), [YTI](https://youtubethumbnailimage.com/), [thumbnailsave](https://thumbnailsave.com/), [YouTube Thumbnail Grabber](https://youtube-thumbnail-grabber.com/) or [thumbnail-download](https://thumbnail-download.com/) - Download Video Thumbnails
|
||||
* [youtube-comment-downloader](https://github.com/egbertbouman/youtube-comment-downloader) - Download YouTube Comments
|
||||
|
@ -546,7 +544,6 @@
|
|||
* [TTV LOL PRO](https://github.com/younesaassila/ttv-lol-pro) - Twitch Adblocker / [Proxies](https://wiki.cdn-perfprod.com/v/v1/must-read/proxies)
|
||||
* [PurpleAdblock](https://addons.mozilla.org/en-US/firefox/addon/purpleadblock/) - Twitch Adblocker
|
||||
* [luminous-ttv](https://github.com/AlyoshaVasilieva/luminous-ttv) - Twitch Adblocker
|
||||
* [Adblocker for Twitch](https://microsoftedge.microsoft.com/addons/detail/adblocker-for-twitch%E2%84%A2/glgpmlmjlaljaddimbgekaepkgbojjdn) - Edge Twitch Adblocker
|
||||
* [PurpleTV](https://purpletv.aeong.win/) / [Alpha](https://t.me/pubTwAlpha) / [Telegram](https://t.me/pubTw) or [TwitchAdBlock](https://github.com/level3tjg/TwitchAdBlock) - Ad-Free Twitch APKs
|
||||
|
||||
***
|
||||
|
@ -637,6 +634,7 @@
|
|||
* [Image Counter](https://openuserjs.org/scripts/darkred/Instagram_-_visible_images_counter) - Count Page Images
|
||||
* [InstaAddict](https://github.com/Androz2091/instaddict) - Instagram Addiction Test
|
||||
* [Unfollow-Everyone](https://github.com/tlorien/Unfollow-Everyone-on-Instagram) - Bulk Instagram Unfollow
|
||||
* [InstagramUnfollowers](https://davidarroyo1234.github.io/InstagramUnfollowers/) - Check Who Follows Back / [GitHub](https://github.com/davidarroyo1234/InstagramUnfollowers)
|
||||
* [Instagram Experiments Guide](https://github.com/daniiii5/Public-Guide)
|
||||
|
||||
***
|
||||
|
@ -769,11 +767,11 @@
|
|||
|
||||
# ► Blogging Tools
|
||||
|
||||
* ⭐ **[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
|
||||
* [Telescope](https://telescope.ac/) - Publishing Platform
|
||||
* [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
|
||||
* [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
|
||||
* [twtxt](https://github.com/buckket/twtxt) - Decentralized Minimalist Microblogging Service
|
||||
|
|
154
docs/storage.md
154
docs/storage.md
|
@ -44,11 +44,12 @@
|
|||
|
||||
## Android Browsers
|
||||
|
||||
* ⭐ **[Cromite](https://github.com/uazo/cromite)** - Adblocking Browsers / [Filter](https://github.com/xarantolus/filtrite) / [Adblock Scripts](https://userscripts.010.one/)
|
||||
* ⭐ **[Brave](https://brave.com/)** - Adblocking Browser
|
||||
* ⭐ **[Cromite](https://github.com/uazo/cromite)** - Adblocking Browser / [Filter](https://github.com/xarantolus/filtrite) / [Adblock Scripts](https://userscripts.010.one/)
|
||||
* ⭐ **[Firefox](https://www.mozilla.org/)** - [Focus](https://www.mozilla.org/en-US/firefox/browsers/mobile/focus/) / [Nightly](https://www.mozilla.org/en-US/firefox/channel/android/#nightly)
|
||||
* ⭐ **[FFUpdater](https://github.com/Tobi823/ffupdater)** - Multi-Browser Updater
|
||||
|
||||
[Stargon Browser](https://play.google.com/store/apps/details?id=net.onecook.browser), [Ecosia](https://play.google.com/store/apps/details?id=com.ecosia.android), [Via Browser](https://play.google.com/store/apps/details?id=mark.via.gp), [Iceraven Browser](https://github.com/fork-maintainers/iceraven-browser), [Fennec](https://f-droid.org/packages/org.mozilla.fennec_fdroid/)
|
||||
[Stargon Browser](https://play.google.com/store/apps/details?id=net.onecook.browser), [Ecosia](https://play.google.com/store/apps/details?id=com.ecosia.android), [Via Browser](https://play.google.com/store/apps/details?id=mark.via.gp), [Iceraven Browser](https://github.com/fork-maintainers/iceraven-browser), [Fennec](https://f-droid.org/packages/org.mozilla.fennec_fdroid/)
|
||||
|
||||
### Privacy Based
|
||||
|
||||
|
@ -69,31 +70,27 @@
|
|||
|
||||
### Note-Taking
|
||||
|
||||
* ⭐ **[Obsidian](https://obsidian.md/mobile)** - Note-Taking
|
||||
* ⭐ **[Easy Notes](https://github.com/Kin69/EasyNotes)** - Note-Taking
|
||||
* [OpenNote](https://github.com/YangDai2003/OpenNote-Compose) - Markdown Note-Taking
|
||||
* [neutriNote](https://github.com/appml/neutrinote) - Markdown Note-Taking
|
||||
* [Notesnook](https://play.google.com/store/apps/details?id=com.streetwriters.notesnook) - Note-Taking
|
||||
* [Safe Notes](https://safenotes.dev/) - Note-Taking / [GitHub](https://github.com/keshav-space/safenotes)
|
||||
* [Quillpad](https://quillpad.github.io/) - Note-Taking
|
||||
* [sNotz](https://sunilpaulmathew.github.io/sNotz/) - Note-Taking
|
||||
* [Notion](https://www.notion.com/) - Note-Taking
|
||||
* [Joplin](https://joplinapp.org/) - Note-Taking
|
||||
* [Notebook](https://www.zoho.com/notebook/) - Note-Taking
|
||||
* [UpNote](https://play.google.com/store/apps/details?id=com.getupnote.android) - Note-Taking
|
||||
* [OneNote](https://support.microsoft.com/en-us/office/microsoft-onenote-for-android-46b4b49d-2bef-4746-9c30-6abb5e20b688) - Note-Taking
|
||||
* [NotePad](https://github.com/mshdabiola/NotePad) - Note-Taking
|
||||
* [ColorNote](https://play.google.com/store/apps/details?id=com.socialnmobile.dictapps.notepad.color.note) - Note-Taking
|
||||
* [Notally](https://github.com/OmGodse/Notally) - Note-Taking
|
||||
* [Omni Notes](https://omninotes.app/) - Note-Taking
|
||||
* [Walling](https://play.google.com/store/apps/details?id=app.walling.mandroid) - Note-Taking
|
||||
* [DailyNote](https://play.google.com/store/apps/details?id=com.akapps.dailynote) - Note-Taking
|
||||
* [Workflowy](https://play.google.com/store/apps/details?id=com.workflowy.android) - Note-Taking
|
||||
* [Kardi Notes](https://f-droid.org/packages/github.rikodot.kardi_notes/) - Note-Taking
|
||||
* [Moe Memos](https://memos.moe/) - Note-Taking
|
||||
* ⭐ **[Obsidian](https://obsidian.md/mobile)**
|
||||
* ⭐ **[Easy Notes](https://github.com/Kin69/EasyNotes)**
|
||||
* [OpenNote](https://github.com/YangDai2003/OpenNote-Compose) - Markdown Support
|
||||
* [neutriNote](https://github.com/appml/neutrinote) - Markdown / Math Support
|
||||
* [Notesnook](https://github.com/streetwriters/notesnook/tree/master/apps/mobile) - Encrypted Note-Taking
|
||||
* [Safe Notes](https://safenotes.dev/) - Encrypted Note-Taking / [GitHub](https://github.com/keshav-space/safenotes)
|
||||
* [Quillpad](https://quillpad.github.io/) - Markdown Support / [GitHub](https://github.com/quillpad/quillpad)
|
||||
* [Joplin](https://joplinapp.org/) - Markdown Support / [GitHub](https://github.com/laurent22/joplin/)
|
||||
* [Notebook](https://www.zoho.com/notebook/mobile-app.html)
|
||||
* [OneNote](https://play.google.com/store/apps/details?id=com.microsoft.office.onenote&hl=en-us)
|
||||
* [NotePad](https://github.com/mshdabiola/NotePad) - Customizable Note-Taking
|
||||
* [ColorNote](https://www.colornote.com/)
|
||||
* [Notally](https://github.com/OmGodse/Notally)
|
||||
* [Walling](https://walling.app/)
|
||||
* [Google Keep](https://keep.google.com/)
|
||||
* [DarkNote](https://github.com/dozy-programmer/Dark-Note)
|
||||
* [Workflowy](https://play.google.com/store/apps/details?id=com.workflowy.android)
|
||||
* [Kardi Notes](https://github.com/rikodot/kardi_notes_app)
|
||||
* [Moe Memos](https://memos.moe/)
|
||||
* [Writer Plus](https://play.google.com/store/apps/details?id=co.easy4u.writer) - Note-Taking / Writing
|
||||
* [Orgzly](https://github.com/orgzly-revived/orgzly-android-revived) - Note-Taking
|
||||
* [Saber](https://github.com/saber-notes/saber) or [Orion](https://play.google.com/store/apps/details?id=com.orion.notein.global) - Handwritten Notes for Tablets
|
||||
* [Saber](https://github.com/saber-notes/saber) or [Notein](https://www.notein.ai/) - Handwritten Notes
|
||||
|
||||
### To-Do Apps
|
||||
|
||||
|
@ -129,7 +126,7 @@
|
|||
* [Really Good Emails](https://reallygoodemails.com/) - Product Email Mobile Designs and Templates
|
||||
* [Screen from Traction](https://screen.traction.one/) - Create App Screenshots
|
||||
|
||||
[Previewed](https://previewed.app/), [Mockup World](https://www.mockupworld.co/), [DeviceShots](https://deviceshots.com/), [DeviceFrames](https://deviceframes.com/), [shots.so](https://shots.so/), [medialoot](https://medialoot.com/free-mockups/), [MockMagic](https://www.mockmagic.com/), [MockupsForFree](https://mockupsforfree.com/), [zippypixels](https://zippypixels.com/), [Mockuphone](https://mockuphone.com/), [TheMockupClub](https://themockup.club/), [RiseShot](https://www.riseshot.com/), [Upmock](https://www.upmock.io/), [LS Graphics](https://www.ls.graphics/), [Picasso](https://getpicasso.com/), [minimalmockups](https://www.minimalmockups.com/), [mrmockup](https://mrmockup.com/free-mockups/), [mockupnest](https://mockupnest.com/), [Jam Mockup](http://t.me/+Hp5DjFnpWXdhMTBi)
|
||||
[PostSpark](https://postspark.app/), [Previewed](https://previewed.app/), [Mockup World](https://www.mockupworld.co/), [DeviceShots](https://deviceshots.com/), [DeviceFrames](https://deviceframes.com/), [shots.so](https://shots.so/), [medialoot](https://medialoot.com/free-mockups/), [MockMagic](https://www.mockmagic.com/), [MockupsForFree](https://mockupsforfree.com/), [zippypixels](https://zippypixels.com/), [Mockuphone](https://mockuphone.com/), [TheMockupClub](https://themockup.club/), [RiseShot](https://www.riseshot.com/), [Upmock](https://www.upmock.io/), [LS Graphics](https://www.ls.graphics/), [Picasso](https://getpicasso.com/), [minimalmockups](https://www.minimalmockups.com/), [mrmockup](https://mrmockup.com/free-mockups/), [mockupnest](https://mockupnest.com/), [Jam Mockup](http://t.me/+Hp5DjFnpWXdhMTBi)
|
||||
|
||||
***
|
||||
|
||||
|
@ -150,7 +147,7 @@
|
|||
|
||||
* ⭐ **[Remove Background Web](https://huggingface.co/spaces/Xenova/remove-background-web)**
|
||||
|
||||
[RemoveBG-GIMP](https://github.com/manu12121999/RemoveBG-GIMP), [BGBye](https://bgbye.fyrean.com/), [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), [pixelcut](https://www.pixelcut.ai/), [BRIA-RMBG](https://huggingface.co/spaces/briaai/BRIA-RMBG-1.4), [remove.bg](https://www.remove.bg/)
|
||||
[RemoveBG-GIMP](https://github.com/manu12121999/RemoveBG-GIMP), [BGBye](https://bgbye.fyrean.com/), [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), [pixelcut](https://www.pixelcut.ai/), [BRIA-RMBG](https://huggingface.co/spaces/briaai/BRIA-RMBG-1.4), [remove.bg](https://www.remove.bg/), [BRIAAI](https://briaai-bria-rmbg-2-0.hf.space/)
|
||||
|
||||
### Object Removers
|
||||
|
||||
|
@ -266,6 +263,8 @@
|
|||
* [Pie Chart Maker](https://piechartmaker.co/), [2](https://www.piechartmaker.me/) - Create Pie Charts
|
||||
* [Bar Graph Maker](https://www.bargraphmaker.net/) - Create Bar Graphs
|
||||
* [Vinnslu](https://maltsev.github.io/vinnslu/) - Tabular Data Parser
|
||||
* [Cascii](https://cascii.app/) / [GitHub](https://github.com/casparwylie/cascii-core), [ASCII Flow](https://asciiflow.com/) or [tree](https://tree.nathanfriend.com/) - Create ASCII Diagrams
|
||||
* [SVGBob Editor](https://ivanceras.github.io/svgbob-editor/) - Convert ASCII Diagrams to SVG Images
|
||||
|
||||
[DGM](https://dgm.sh/), [DrawDB](https://www.drawdb.app/) / [Discord](https://discord.gg/BrjZgNrmR6), [Data GIF Maker](https://datagifmaker.withgoogle.com/), [Flourish](https://flourish.studio/), [Datawrapper](https://www.datawrapper.de/), [chartd](https://www.chartd.co/), [Chart.xkcd](https://timqian.com/chart.xkcd/), [QuickChart](https://quickchart.io/), [Percival](https://percival.ink/), [amCharts](https://live.amcharts.com/), [ACME Chartmaker](https://acme.com/chartmaker/), [ParaView](https://www.paraview.org/), [Dia](http://dia-installer.de/), [yEd Live](https://www.yworks.com/yed-live/), [Mermaid](https://mermaid.live/), [LineGraphMaker](https://linegraphmaker.co/), [SwimLanes](https://swimlanes.io/), [Quiver](https://q.uiver.app/), [Gephi](https://gephi.org/), [Graphviz](https://graphviz.org/) / [Editor](https://edotor.net/), [Graphonline](https://graphonline.top/en/), [Diagramify](https://diagramify.agiliq.com/), [Charts Builder](https://charts.hohli.com/), [diagramgpt](https://www.eraser.io/diagramgpt), [Diagram.codes](https://www.diagram.codes/), [text2diagram](https://text2diagram.com/), [SankeyMATIC](https://sankeymatic.com/), [app.diagrams](https://app.diagrams.net/), [histogrammaker](https://histogrammaker.net/), [flowgorithm](http://flowgorithm.org/), [Chart Builder](https://textquery.app/tools/chart-builder/)
|
||||
|
||||
|
@ -436,6 +435,7 @@
|
|||
* [Leprd](https://leprd.space/) - 1GB Storage / 10GB Bandwidth / Unlimited DB / Limited Registration
|
||||
* [x10hosting](https://x10hosting.com/) - 500MB Storage / Unlimited Bandwidth / 2 DB
|
||||
* [Profreehost](https://profreehost.com/) - 5GB Storage / Unlimited Bandwidth / Unlimited DB
|
||||
* [Render](https://render.com/)
|
||||
* [pythonanywhere](https://www.pythonanywhere.com/)
|
||||
* [IBM Cloud](https://www.ibm.com/cloud/free)
|
||||
* [Fleek](https://fleek.xyz/)
|
||||
|
@ -459,7 +459,6 @@
|
|||
* [DropPages](https://droppages.com/)
|
||||
* [W3Schools Spaces](https://www.w3schools.com/spaces/)
|
||||
* [BitBucket](https://support.atlassian.com/bitbucket-cloud/docs/publishing-a-website-on-bitbucket-cloud/)
|
||||
* [Render](https://render.com/)
|
||||
* [Straw.Page](https://straw.page/)
|
||||
* [Own Free Website](https://www.own-free-website.com)
|
||||
* [itty.bitty](https://itty.bitty.site/)
|
||||
|
@ -548,7 +547,6 @@
|
|||
* [Xiaomi-Pro-Hackintosh](https://github.com/daliansky/XiaoMi-Pro-Hackintosh) - Hackintosh for Xiaomi
|
||||
* [unplugged-macos](https://rentry.org/unplugged-macos) - Unplugged Hackintosh
|
||||
* [EFI-Agent](https://github.com/benbaker76/EFI-Agent) - GUI App to Mount EFI Partitions
|
||||
* [VMware Unlocker](https://github.com/paolo-projects/unlocker) - Patch VMware Workstation / Player to Run macOS
|
||||
* [Vmware Tools](https://packages.vmware.com/tools/frozen/darwin/) - VMware Tools ISO for macOS VM / [Unlocker](https://github.com/BDisp/unlocker/)
|
||||
* [Emaculation](https://www.emaculation.com/) or [felixrieseberg](https://github.com/felixrieseberg/macintosh.js/) - Virtual macOS
|
||||
* [macOS for all computers](https://github.com/yusufklncc/Hackintosh-for-All-Computers) - Contains Prebuilt EFI for Systems
|
||||
|
@ -584,19 +582,44 @@
|
|||
* [IG Helper](https://greasyfork.org/en/scripts/404535) or [IG Download Button](https://greasyfork.org/en/scripts/406535-instagram-download-button) - Userscripts
|
||||
* [ESUIT](https://chromewebstore.google.com/detail/esuit-photos-downloader-f/adighedbfmnpjcjlloooichmbjdefane) or [Mass Downloader](https://chromewebstore.google.com/detail/mass-downloader-for-insta/ldoldiahbhnbfdihknppjbhgjngibdbe) - Chrome Extensions
|
||||
|
||||
[Pixwox](https://www.pixwox.com/) / [2](https://www.piokok.com/) / [3](https://www.picnob.com/), [instasaved](https://instasaved.net/en), [insta-stories-viewer](https://insta-stories-viewer.com/), [Instagram PHP Scraper](https://github.com/postaddictme/instagram-php-scraper), [FastDL](https://fastdl.app/en), [SaveFromWeb](https://www.savefromweb.com/), [Picuki](https://www.picuki.com/), [Downloadgram](https://downloadgram.org/), [Dumpor](https://dumpor.io/), [GreatFon](https://greatfon.io/), [ThumbTube](https://thumbtube.com/download-instagram-photos-videos), [scraper-instagram-gui-desktop](https://git.kaki87.net/KaKi87/scraper-instagram-gui-desktop), [Instaloader](https://github.com/instaloader/instaloader), [InstaLoader](https://instaloader.github.io/), [Weynstag](https://www.google.com/amp/s/weynstag.com/amp.php/), [anonyig](https://anonyig.com/), [mollygram](https://mollygram.com/)
|
||||
[Pixwox](https://www.pixwox.com/) / [2](https://www.piokok.com/) / [3](https://www.picnob.com/), [instasaved](https://instasaved.net/en), [insta-stories-viewer](https://insta-stories-viewer.com/), [Instagram PHP Scraper](https://github.com/postaddictme/instagram-php-scraper), [FastDL](https://fastdl.app/en), [SaveFromWeb](https://www.savefromweb.com/), [Downloadgram](https://downloadgram.org/), [Dumpor](https://dumpor.io/), [GreatFon](https://greatfon.io/), [ThumbTube](https://thumbtube.com/download-instagram-photos-videos), [scraper-instagram-gui-desktop](https://git.kaki87.net/KaKi87/scraper-instagram-gui-desktop), [Instaloader](https://github.com/instaloader/instaloader), [InstaLoader](https://instaloader.github.io/), [Weynstag](https://www.google.com/amp/s/weynstag.com/amp.php/), [anonyig](https://anonyig.com/), [mollygram](https://mollygram.com/)
|
||||
|
||||
***
|
||||
|
||||
## Internet Archive Tools
|
||||
|
||||
* [arch1ve](https://rentry.org/arch1ve) - IA Book Ripping Guide
|
||||
* [Archive.org-Downloader](https://github.com/MiniGlome/Archive.org-Downloader) - Download Books to PDF
|
||||
* [IA Book Ripper](https://bookripper.neocities.org/) or [IA Downloader](https://github.com/elementdavv/internet_archive_downloader) - Download Borrowed Books
|
||||
* [internetarchive](https://github.com/jjjake/internetarchive) - CLI Tool
|
||||
|
||||
***
|
||||
|
||||
## Japanese Learning Sites
|
||||
|
||||
* ⭐ **[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/), [Tofugu](https://www.tofugu.com/)
|
||||
|
||||
### YouTube Channels
|
||||
|
||||
[Japanese Ammo with Misa](https://www.youtube.com/@JapaneseAmmowithMisa), [Comprehensible Japanese](https://www.youtube.com/@cijapanese), [JapanesePod101](https://www.youtube.com/@JapanesePod101)
|
||||
|
||||
### Dictionaries / Translation
|
||||
|
||||
* [japReader](https://github.com/marisukukise/japReader) - Japanese Text Translator
|
||||
* [ichi.moe](https://ichi.moe/) - Japanese to English Phrase Translation
|
||||
* [Nippon Colors](https://nipponcolors.com/) - Traditional Japanese Color Meanings
|
||||
|
||||
[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), [rtk-search](https://hochanh.github.io/rtk/)
|
||||
|
||||
### Kanji Learning
|
||||
|
||||
* [KanjiTomo](https://kanjitomo.net/) - Kanji Character Identifier
|
||||
|
||||
[WaniKani](https://www.wanikani.com/), [KanjiDamage](https://www.kanjidamage.com/) / [KanjiDamagePlus](https://kanjidamageplus.neocities.org/), [Kanji-Dojo](https://github.com/syt0r/Kanji-Dojo), [Koohii](https://kanji.koohii.com/) / [Deck](https://ankiweb.net/shared/info/748570187), [Manji](https://github.com/Livinglist/Manji)
|
||||
|
||||
***
|
||||
|
||||
## LaTeX Tools
|
||||
|
||||
* [Learn LaTeX](https://www.learnlatex.org/) - LaTeX Guide
|
||||
|
@ -640,7 +663,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/), [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/), [liveworldwebcams](https://liveworldwebcams.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/), [liveworldwebcams](https://liveworldwebcams.com/)
|
||||
|
||||
### Animal Cams
|
||||
|
||||
|
@ -724,7 +747,7 @@
|
|||
* ⭐ **[Console Living Room](https://archive.org/details/consolelivingroom)**
|
||||
* ⭐ **[My Abandonware](https://www.myabandonware.com/)**
|
||||
|
||||
[The Retro Saga](https://weplayretro.games/), [CrocDB](https://crocdb.net/), [WebRCade](https://www.webrcade.com/), [RetroGames](https://www.retrogames.cz/), [retrogames.cc](https://www.retrogames.cc/), [ClassicReload](https://classicreload.com/), [Retro Games Bot](https://retrogamesbot.com/), [Vizzed](https://www.vizzed.com/), [Free80sArcade](https://www.free80sarcade.com/), [Retro Uprising](https://www.retrouprising.com/), [Retro Games](https://www.retrogames.onl/), [Play Classic Games](https://playclassic.games/), [ClassicGames](https://www.classicgames.me/), [Emulator.Games](https://www.emugames.net/), [GamulatoR](https://www.gamulator.com/roms), [AfterPlay](https://afterplay.io/), [Aurora](https://skitty.xyz/aurora/). [Emulator.online](http://emulator.online/), [Online.OldGames](https://online.oldgames.sk/), [Retro Games Online](https://www.playretrogames.com/), [PlayEmulator](https://playemulator.online/), [Emulator Games Online](https://gamesfrog.com/), [Virtual Consoles](https://virtualconsoles.com/), [OldGameShelf](https://oldgameshelf.com/), [Emulator Online](https://emulatoronline.com/), [PlayRetroGames](https://playretrogames.net/), [Retro Games Free](https://retrogamesfree.com/), [PlayRetroGames](https://playretrogames.com/), [Tiny8bit](https://floooh.github.io/tiny8bit/), [ClassicGame](https://www.classicgame.com/), [ClassicGamesArcade](https://classicgamesarcade.com/), [Radyolojinet](https://www.radyolojinet.com/retro/), [WePlayOld](https://www.weplayold.com/)
|
||||
[The Retro Saga](https://weplayretro.games/), [CrocDB](https://crocdb.net/), [WebRCade](https://www.webrcade.com/), [RetroGames](https://www.retrogames.cz/), [retrogames.cc](https://www.retrogames.cc/), [ClassicReload](https://classicreload.com/), [Retro Games Bot](https://retrogamesbot.com/), [Vizzed](https://www.vizzed.com/), [Free80sArcade](https://www.free80sarcade.com/), [Retro Uprising](https://www.retrouprising.com/), [Retro Games](https://www.retrogames.onl/), [Play Classic Games](https://playclassic.games/), [ClassicGames](https://www.classicgames.me/), [Emulator.Games](https://www.emugames.net/), [GamulatoR](https://www.gamulator.com/roms), [AfterPlay](https://afterplay.io/), [Aurora](https://skitty.xyz/aurora/), [Emulator.online](http://emulator.online/), [Online.OldGames](https://online.oldgames.sk/), [Retro Games Online](https://www.playretrogames.com/), [PlayEmulator](https://playemulator.online/), [Emulator Games Online](https://gamesfrog.com/), [Virtual Consoles](https://virtualconsoles.com/), [OldGameShelf](https://oldgameshelf.com/), [Emulator Online](https://emulatoronline.com/), [PlayRetroGames](https://playretrogames.net/), [Retro Games Free](https://retrogamesfree.com/), [PlayRetroGames](https://playretrogames.com/), [Tiny8bit](https://floooh.github.io/tiny8bit/), [ClassicGame](https://www.classicgame.com/), [ClassicGamesArcade](https://classicgamesarcade.com/), [Radyolojinet](https://www.radyolojinet.com/retro/), [WePlayOld](https://www.weplayold.com/)
|
||||
|
||||
***
|
||||
|
||||
|
@ -812,26 +835,6 @@
|
|||
|
||||
***
|
||||
|
||||
## NextChat Instances
|
||||
|
||||
* https://restless-dew-17e3.safineymah.workers.dev/ - o1-Preview/4o/Gemini 1.5
|
||||
* https://ai.yyr1201.fun/ - GPT-3.5 Turbo
|
||||
* https://aii.tzwlxh.com/ - GPT-3.5 Turbo / GPT-4o
|
||||
* https://b.smallmoon.net/ - GPT-3.5 turbo / Gemini 1.5 Pro / Gemini 1.5 Flash
|
||||
* https://free1.fdmgpt.top/ - GPT-4o-mini
|
||||
* https://gpt35.chenjinshui.top/ - DeepSeek v2.5 / GPT-4o / GPT-4o-mini / Claude 3 Haiku
|
||||
* https://free.xiercloud.top/
|
||||
* https://chatgpt.thzstudent.top/
|
||||
* https://chat.typegpt.net/
|
||||
* https://gpt.tiptopuni.com/
|
||||
* https://gpt.aifree.club/
|
||||
* https://chat.pandatalk.fun/
|
||||
* https://chat.286726.xyz/
|
||||
* https://gpt.xuhao.tech/
|
||||
* https://gpt.ultra-x.top/
|
||||
|
||||
***
|
||||
|
||||
## Open Directory Search String Builder
|
||||
|
||||
[strixx](https://strixx.vercel.app/), [lendx](http://lendx.org/), [eyeofjustice](https://www.eyeofjustice.com/od/), [lumpysoft](https://lumpysoft.com/), [opendirsearch](https://opendirsearch.abifog.com/), [Ewasion](https://ewasion.github.io/opendirectory-finder/), [doyouneedmorehdd](https://doyou.needmorehdd.space/#), [odfinder](https://odfinder.github.io/), [thuvien](https://thuvien.com/)
|
||||
|
@ -901,7 +904,7 @@
|
|||
|
||||
* ⭐ **[SomaFM](https://somafm.com/)**
|
||||
|
||||
[deepcut.fm](https://deepcut.live/), [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/), [AccuRadio](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/), [ShoutCast](https://directory.shoutcast.com/), [Internet-Radio](https://internet-radio.com/), [Radiolise](https://radiolise.gitlab.io/), [JetSetRadio](https://jetsetradio.live/) / [2](https://jetsetradiofuture.live/), [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/), [rivestream](https://rivestream.org/radio)
|
||||
[deepcut.fm](https://deepcut.live/), [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/), [AccuRadio](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/), [ShoutCast](https://directory.shoutcast.com/), [Internet-Radio](https://internet-radio.com/), [Radiolise](https://radiolise.gitlab.io/), [JetSetRadio](https://jetsetradio.live/) / [2](https://jetsetradiofuture.live/), [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/), [rivestream](https://rivestream.org/radio), [SEDR](https://www.sedr.space/)
|
||||
|
||||
### Random Image Sites
|
||||
|
||||
|
@ -994,7 +997,7 @@
|
|||
|
||||
## Spotify Playlist Generators
|
||||
|
||||
[Spotalike](https://spotalike.com/), [playlist-generator](https://www.playlist-generator.com/), [Chat Jams](https://www.chatjams.ai/), [MagicPlaylist](https://magicplaylist.co/), [Vibesition](https://vibesition.jordantwells.com/), [Groovifi](https://groovifi.com/), [spotgen](https://epsil.github.io/spotgen), [Highlights2SPotify](https://highlights2spotify.com/), [RadioNewify](https://radionewify.com/)
|
||||
[Spotalike](https://spotalike.com/), [playlist-generator](https://www.playlist-generator.com/), [Chat Jams](https://www.chatjams.ai/), [MagicPlaylist](https://magicplaylist.co/), [Vibesition](https://vibesition.jordantwells.com/), [Groovifi](https://groovifi.com/), [spotgen](https://epsil.github.io/spotgen), [Highlights2SPotify](https://highlights2spotify.com/), [RadioNewify](https://radionewify.com/), [Predominantly](https://predominant.ly/)
|
||||
|
||||
***
|
||||
|
||||
|
@ -1028,7 +1031,7 @@
|
|||
* [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.com/), [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/), [Teenyicons](https://teenyicons.com/), [awsicons](https://awsicons.dev/), [iconoir](https://iconoir.com/), [heroicons](https://heroicons.dev/), [composeicons](https://composeicons.com/), [iconmonstr](https://iconmonstr.com/), [Nerd Fonts](https://www.nerdfonts.com/)
|
||||
[Icofont](https://icofont.com/icons), [Google Icons](https://fonts.google.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.com/), [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/), [Teenyicons](https://teenyicons.com/), [awsicons](https://awsicons.dev/), [iconoir](https://iconoir.com/), [heroicons](https://heroicons.dev/), [composeicons](https://composeicons.com/), [iconmonstr](https://iconmonstr.com/), [Nerd Fonts](https://www.nerdfonts.com/), [websvg](https://websvg.com/)
|
||||
|
||||
***
|
||||
|
||||
|
@ -1081,9 +1084,10 @@
|
|||
|
||||
## Text Adventures
|
||||
|
||||
* [IFWiki](https://www.ifwiki.org/) - Interactive Fiction Encyclopedia / Resources
|
||||
* 🌐 **[IFDB](https://ifdb.org/)** or [IFArchive](https://www.ifarchive.org/) - Game Indexes
|
||||
* 🌐 **[IFWiki](https://www.ifwiki.org/)** - Interactive Fiction Encyclopedia / Resources
|
||||
|
||||
[IFDB](https://ifdb.org/) (Index), [Seedship](https://philome.la/johnayliff/seedship/play/index.html), [TextAventures](http://textadventures.co.uk/), [Web Adventures](https://www.web-adventures.org/), [WrittenRealms](https://writtenrealms.com/), [Genesis](https://www.genesismud.org/), [Fateful Quest](https://fateful.quest/), [Level 13](https://nroutasuo.github.io/level13/)
|
||||
[Seedship](https://philome.la/johnayliff/seedship/play/index.html), [TextAventures](http://textadventures.co.uk/), [Web Adventures](https://www.web-adventures.org/), [WrittenRealms](https://writtenrealms.com/), [Genesis](https://www.genesismud.org/), [Fateful Quest](https://fateful.quest/), [Level 13](https://nroutasuo.github.io/level13/)
|
||||
|
||||
***
|
||||
|
||||
|
@ -1124,7 +1128,7 @@
|
|||
* [Udemy-Course-Enroller](https://github.com/techtanic/Discounted-Udemy-Course-Enroller) - Auto Course Enrollment
|
||||
* [UdemyBot](https://github.com/gautamajay52/UdemyBot) or [UdemyPy](https://github.com/dylannalex/UdemyPy) - Udemy Course Bots
|
||||
* [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)
|
||||
* [Udemy Download Guide](https://docs.google.com/document/d/1W91OS9rj7h9DBp5UwR68lA2zMEtqNmxdGaNVmBktIaw/) / [Discord](https://discord.gg/tMzrSxQ)
|
||||
|
||||
[discudemy](https://www.discudemy.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), [Udemy 24](https://coursesbag.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/), [Scroll Coupons](https://scrollcoupons.com/) / [Telegram](https://t.me/scroll_coupons), [UdemyXpert](https://udemyxpert.com/) / [Telegram](https://t.me/UdemyXpert)
|
||||
|
||||
|
@ -1140,27 +1144,17 @@
|
|||
## Unicode Text Generators
|
||||
|
||||
* ⭐ **[YayText](https://yaytext.com/)**
|
||||
* ⭐ **[MessLetters](https://www.messletters.com/)**
|
||||
* ⭐ **[fSymbols](https://fsymbols.com/generators/)**
|
||||
* ⭐ **[Messletters](https://www.messletters.com/)**
|
||||
* ⭐ **[FSymbols](https://fsymbols.com/generators/)**
|
||||
* ⭐ **[Fancy Text](https://fancy-text.net/)**
|
||||
* [coolfont](https://coolfont.org/)
|
||||
* [FontMaker](https://fontmaker.io/)
|
||||
* [Tesms](https://www.tesms.net/)
|
||||
* [Cool Fonts Online](https://coolfont.org/)
|
||||
* [FontMaker.io](https://fontmaker.io/)
|
||||
* [Aesthetic Font Generator](https://www.tesms.net/)
|
||||
* [Font Generator Online](https://www.fontgeneratoronline.com/)
|
||||
* [FontGenerator](https://fontgenerator.cc/)
|
||||
* [FontGeneratorCool](https://fontgenerator.cool/)
|
||||
* [fontchangerguru](https://fontchangerguru.com/)
|
||||
* [fancytextdecorator](https://fancytextdecorator.com/)
|
||||
|
||||
***
|
||||
|
||||
## Vue Tools
|
||||
|
||||
* ⭐ **[Vue.js](https://vuejs.org/)** - JS Framework
|
||||
* [NuxtJS](https://nuxt.com/) - Vue Framework / [Dev Tools](https://github.com/nuxt/devtools)
|
||||
* [Arco Design](https://arco.design/vue/en-US/docs/start) or [Naive-UI](https://www.naiveui.com/) / [GitHub](https://github.com/tusen-ai/naive-ui) - Vue 3 UI Components Library
|
||||
* [Vuejs Dev Tools](https://vuejs.org/) - Add Vue 3 Debugging to Browser
|
||||
* [Vue Vben Admin](https://github.com/vbenjs/vue-vben-admin) - Vue Admin
|
||||
* [FontGenerator.cc](https://fontgenerator.cc/)
|
||||
* [FontGenerator.cool](https://fontgenerator.cool/)
|
||||
* [Font Changer Guru](https://fontchangerguru.com/)
|
||||
* [Fancy Text Decorator](https://fancytextdecorator.com/)
|
||||
|
||||
***
|
||||
|
||||
|
@ -1183,7 +1177,7 @@
|
|||
|
||||
## 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/), [themesplugins](https://themesplugins.club/), [wpthemesandplugins](https://t.me/wpthemesandplugins)
|
||||
[gpldl](https://gpldl.com/), [wplocker](https://www.wplocker.com/), [Weadown](https://weadown.com/), [babiato](https://babia.to/), [newtemplate](https://newtemplate.net/), [themesplugins](https://themesplugins.club/), [wpthemesandplugins](https://t.me/wpthemesandplugins)
|
||||
|
||||
***
|
||||
|
||||
|
|
|
@ -13,7 +13,7 @@
|
|||
* 🌐 **[Awesome Windows 11](https://github.com/awesome-windows11/windows11)** - Windows 11 Resources
|
||||
* 🌐 **[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/) / [Plugins](https://github.com/hlaueriksson/awesome-powertoys-run-plugins) / [Suite](https://apps.microsoft.com/store/detail/sysinternals-suite/9P7KNL5RWT25) - System Tools
|
||||
* ⭐ **[PowerToys](https://learn.microsoft.com/en-us/windows/powertoys/)** / [Search](https://github.com/lin-ycv/EverythingPowerToys) / [GitHub](https://github.com/microsoft/PowerToys/) or [Sysinternals](https://learn.microsoft.com/en-us/sysinternals/) / [Plugins](https://github.com/hlaueriksson/awesome-powertoys-run-plugins) / [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), [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)
|
||||
|
@ -79,7 +79,8 @@
|
|||
|
||||
* ⭐ **[WinGet](https://github.com/microsoft/winget-cli)** - CLI Package Manager / [Repos](https://winstall.app/) / [Automation](https://github.com/topgrade-rs/topgrade) / [Auto Update](https://github.com/Romanitho/Winget-AutoUpdate)
|
||||
* ⭐ **[UniGetUI](https://www.marticliment.com/unigetui/)** - GUI for Popular Package Managers
|
||||
* ⭐ [hok](https://github.com/chawyehsu/hok) or [Scoop](https://scoop.sh/) / [Faster Commands](https://github.com/winpax/sfsu/) - CLI Package Managers
|
||||
* ⭐ **[Scoop](https://scoop.sh/)** - Portable Package Manager
|
||||
* ⭐ **[sfsu](https://github.com/winpax/sfsu/)** or [hok](https://github.com/chawyehsu/hok) - Fast Scoop Utilities
|
||||
* [Spinel](https://spinel.ovh/) - Multi-Program Install Script Generator
|
||||
* [Chocolatey](https://github.com/chocolatey/choco) / [GUI](https://github.com/chocolatey/ChocolateyGUI), [Patch My PC](https://patchmypc.com/home-updater) or [RuckZuck](https://ruckzuck.tools/) - Package Managers
|
||||
* [Silent Install](https://www.silentinstall.org/) - Build Multi-Program Installers
|
||||
|
@ -161,7 +162,7 @@
|
|||
|
||||
* 🌐 **[Awesome Web Desktops](https://github.com/syxanash/awesome-web-desktops)** or [Simone's Computer](https://simone.computer/#/webdesktops) - OS Emulators / VMs
|
||||
* ↪️ **[Android Emulators](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/android#wiki_.25BA_android_emulators)**
|
||||
* ↪️ **[Hackintosh Resources](https://old.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_hackintosh)**
|
||||
* ↪️ **[Hackintosh Resources](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_hackintosh)**
|
||||
* ⭐ **[VMware Workstation](https://rentry.co/FMHYBase64#vmware), [2](https://softwareupdate.vmware.com/cds/vmw-desktop/ws/), [3](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#vmware-workstation-note) or [VirtualBox](https://www.virtualbox.org/)** / [Portable](https://www.vbox.me/) - Virtual Machines
|
||||
* ⭐ **[Virt-Manager](https://virt-manager.org/)** / [GitHub](https://github.com/virt-manager/virt-manager), [MultiPass](https://canonical.com/multipass) / [GitHub](https://github.com/canonical/multipass) or [Vagrantup](https://www.vagrantup.com/) / [GitHub](https://github.com/hashicorp/vagrant) - Virtual Machine Managers
|
||||
* [Looking Glass](https://looking-glass.io/) - App for Using Kernel-Based Virtual Machine Configured for VGA PCI Pass-Through / [GitHub](https://github.com/gnif/LookingGlass)
|
||||
|
@ -183,7 +184,7 @@
|
|||
# ► Hardware Tools
|
||||
|
||||
* ↪️ **[PC Building / Shopping](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/misc#wiki_.25B7_electronics)**
|
||||
* ⭐ **[PSU Calculator](https://www.newegg.com/tools/power-supply-calculator/)** or [Power Supply Calculator](https://outervision.com/power-supply-calculator) - Find Compatible Power Supplies
|
||||
* ⭐ **[PSU Calculator](https://www.newegg.com/tools/power-supply-calculator/)** - Find Compatible Power Supplies
|
||||
* [DeviceTests](https://devicetests.com/) - Multiple Device Tests
|
||||
* [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), [UNIGINE Benchmarks](https://benchmark.unigine.com/) or [OCCT](https://www.ocbase.com/occt/personal) - System Benchmarking
|
||||
|
@ -232,7 +233,7 @@
|
|||
* 🌐 **[Awesome DataHoarding](https://github.com/simon987/awesome-datahoarding)** - Data Hoarding Resources
|
||||
* ⭐ **[WizTree](https://www.diskanalyzer.com/)** - Disk Usage Analyzer
|
||||
* ⭐ **[CrystalDiskMark](https://crystalmark.info/en/software/crystaldiskmark/)** or [CCISOBench](https://ccsiobench.com/) - Disk Benchmarking Tools
|
||||
* ⭐ **[GParted](https://gparted.org/)** / [GitLab](https://gitlab.gnome.org/GNOME/gparted/), [MiniTool Partition Wizard](https://www.partitionwizard.com/) or [AOMEI Partition Assistant](https://www.diskpart.com/) - Partition Managers
|
||||
* ⭐ **[GParted](https://gparted.org/)** / [GitLab](https://gitlab.gnome.org/GNOME/gparted/), [MiniTool Partition Wizard](https://www.partitionwizard.com/) or [AOMEI Partition Assistant](https://www.diskpart.com/) / [Unlocker](https://rentry.co/FMHYBase64#aomei-partition) - Partition Managers
|
||||
* ⭐ **[Validrive](https://www.grc.com/validrive.htm)** - Check True Storage Size of USB Devices
|
||||
* [WinDirStat](https://windirstat.net/) - Disk Usage Analyzer / Cleanup Tool / [GitHub](https://github.com/windirstat/windirstat/)
|
||||
* [TrueNAS](https://www.truenas.com/) - Storage System
|
||||
|
@ -275,7 +276,7 @@
|
|||
|
||||
* ⭐ **[/r/MechanicalKeyboards Wiki](https://www.reddit.com/r/MechanicalKeyboards/wiki/index)** - Mechanical Keyboard Resources
|
||||
* ⭐ **[Hotkey Cheatsheet](https://hotkeycheatsheet.com/)**, [Use The Keyboard](https://usethekeyboard.com/), [HotkeyP](https://sourceforge.net/projects/hotkeyp/), [Clavier++](https://gryder.org/software/clavier-plus/), [Kinto](https://github.com/rbreaves/kinto) or [CheatKeys](https://cheatkeys.com/cheatsheet) - Keyboard Shortcuts / [Image](https://i.ibb.co/yNHRPfm/2147ec86baff.png), [2](https://i.ibb.co/XyWn2qc/075be8840d12.png) / [Course](https://keycombiner.com/)
|
||||
* ⭐ **[VIA](https://usevia.app/)** / [GitHub](https://github.com/the-via/app), [SharpKeys](https://github.com/randyrants/sharpkeys/), [Kanata](https://github.com/jtroo/kanata), [keymapper](https://github.com/houmain/keymapper), [Ergogen](https://ergogen.xyz/) [Mahou](https://gitea.com/BladeMight/Mahou) - Custom Keyboard Layouts / Remapping
|
||||
* ⭐ **[VIA](https://usevia.app/)** / [GitHub](https://github.com/the-via/app), [SharpKeys](https://github.com/randyrants/sharpkeys/), [Kanata](https://github.com/jtroo/kanata), [keymapper](https://github.com/houmain/keymapper), [Ergogen](https://ergogen.xyz/), [Mahou](https://gitea.com/BladeMight/Mahou) - Custom Keyboard Layouts / Remapping
|
||||
* ⭐ **[geekhack](https://geekhack.org/)** or [KeebTalk](https://www.keebtalk.com/) - Keyboard Forums
|
||||
* [X-Mouse Button Control](https://www.highrez.co.uk/downloads/XMouseButtonControl.htm) - Re-Map Mouse Buttons / Scroll Wheel
|
||||
* [MoveMouse](https://github.com/sw3103/movemouse/) or [MouseJiggler](https://github.com/arkane-systems/mousejiggler) - Simulate User Activity
|
||||
|
@ -338,10 +339,9 @@
|
|||
|
||||
## ▷ Windows Activation
|
||||
|
||||
* ⭐ **[MAS](https://massgrave.dev/#Method_1_-_PowerShell)** / [GitHub](https://github.com/massgravel/Microsoft-Activation-Scripts/) / [Discord](https://discord.gg/gjJEfq7ux8) - Windows Activation Scripts
|
||||
* ⭐ **[KMS_VL_ALL_AIO](https://github.com/abbodi1406/KMS_VL_ALL_AIO)** - Offline Activator
|
||||
* [EzWindSLIC](https://github.com/Dir3ctr1x/EzWindSLIC) - Vista / 7 / Server 2008
|
||||
* [OfficeRTool](https://rentry.co/FMHYBase64#officertool-project) - Office 2016 Activator
|
||||
* ⭐ **[MAS](https://rentry.co/FMHYBase64#mas)** - Activation Scripts / Windows / Office / [Discord](https://discord.gg/gjJEfq7ux8)
|
||||
* ⭐ **[KMS_VL_ALL_AIO](https://rentry.co/FMHYBase64#kms-vl)** - Offline Activator / Windows / Office
|
||||
* [OfficeRTool](https://rentry.co/FMHYBase64#officertool-project) - Offline Activator / Office
|
||||
|
||||
***
|
||||
|
||||
|
@ -373,96 +373,84 @@
|
|||
|
||||
# ► Customization
|
||||
|
||||
* 🌐 **[Windows-Ricing](https://github.com/winthemers/wiki)**, or [Heliohost Guide](https://ninjasr.varesia.com/w/lb/windows) - Windows Ricing Resources
|
||||
* ⭐ **[Rainmeter](https://www.rainmeter.net/)** - Desktop Customization / [Discord](https://discord.com/invite/rainmeter)
|
||||
* ⭐ **Rainmeter Tools** - [Skins](https://discord.com/invite/rainmeter) / [Menu Bar / App Launcher](https://www.droptopfour.com/)
|
||||
* ⭐ **[OpenRGB](https://openrgb.org/)** / [Beta](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#openrbg-beta), **[WLED](https://kno.wled.ge/)**, [Aurora](https://www.project-aurora.com/), [LiquidCTL](https://github.com/liquidctl/liquidctl), [Artemis](https://artemis-rgb.com/), [RBGSync](https://rgbsync.com/), [SignalRGB](https://www.signalrgb.com/) or [FireLight](https://github.com/nicolasdeory/firelight) - Lighting Control
|
||||
* ⭐ **[OpenRGB](https://openrgb.org/)** / [Beta](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#openrbg-beta), **[WLED](https://kno.wled.ge/)**, [Aurora](https://www.project-aurora.com/), [LiquidCTL](https://github.com/liquidctl/liquidctl), [Artemis](https://artemis-rgb.com/), [RGBSync](https://rgbsync.com/), [SignalRGB](https://www.signalrgb.com/) or [FireLight](https://github.com/nicolasdeory/firelight) - RGB Lighting Control
|
||||
* ⭐ **[VSThemes](https://vsthemes.org/en/)**, [WindowsCustomization](https://windowscustomization.com/) or [7Themes](https://7themes.su/) - Theme Indexes
|
||||
* Styled Themes - [Anime](https://winmoes.com/) / [Modern Style](https://www.vinstartheme.com/) / [MacOS Style](https://redd.it/pd5ha6), [2](https://github.com/Runixe786/Macified-Windows) / [Old School Style](https://winclassic.boards.net/), [2](https://forum.spacehey.com/topic?id=94545)
|
||||
* [VirtualCustoms](https://virtualcustoms.net/) or [winthemers](https://discord.com/invite/8FFWAqdtc4) - Customization Communities
|
||||
* [Desktops](https://deskto.ps/) - Customization Showcases
|
||||
* [XDesktopSoft](https://www.xwidget.com/) - Desktop Customization
|
||||
* [Taskbar Tweaker](https://tweaker.ramensoftware.com/) or [NiceTaskbar](https://www.microsoft.com/en-us/p/nicetaskbar/9pkl2s93xwb5) - Taskbar Customization Tools
|
||||
* [msstyleEditor](https://github.com/nptr/msstyleEditor) or [WinPaletter](https://github.com/Abdelrhman-AK/WinPaletter) - Windows Visual Style Editors
|
||||
* [BeautySearch](https://github.com/krlvm/BeautySearch) - Windows 10 Search Appearance Tweaker
|
||||
* [Mechvibes](https://mechvibes.com/) or [MechaKeys](https://mechakeys.robolab.io/) - Keyboard Sound Effects
|
||||
* [Aerial Screen Saver](https://github.com/OrangeJedi/Aerial) - Apple TV Style Screensavers
|
||||
* [ElectricSheep](https://electricsheep.org/) - Collaborative Usergenerated Screensaver
|
||||
* [After Dark CSS](https://www.bryanbraun.com/after-dark-css/) - Browser Screensavers
|
||||
* [HackBGRT](https://github.com/Metabolix/HackBGRT) - Change Windows Boot Logo
|
||||
* [Cursor Mania Archive](https://archive.org/details/cursormania), [Bibata Cursor](https://github.com/ful1e5/Bibata_Cursor) or [rw-designer](http://rw-designer.com/cursor-library) - Cursors
|
||||
* [macOS-cursors-for-Windows](https://github.com/antiden/macOS-cursors-for-Windows) or [CursorOS](https://cursor.design/) - macOS Cursors for Windows
|
||||
* [FolderMarker](https://foldermarker.com/) or [CustomFolder](https://www.gdzsoft.com/) - Custom Folders & Markers
|
||||
* [SecureUxTheme](https://github.com/namazso/SecureUxTheme) or [UltraUXThemePatcher](https://mhoefs.eu/software_uxtheme.php?ref=syssel&lang=en) - UX Patcher
|
||||
* [Windhawk](https://windhawk.net/) / [GitHub](https://github.com/ramensoftware/windhawk) or [WinAero](https://winaero.com) - Windows Mods
|
||||
* [Cursormania Archive](https://archive.org/details/cursormania) - Cursors
|
||||
* [macOS-cursors-for-Windows](https://github.com/antiden/macOS-cursors-for-Windows) or [CursorOS](https://cursor.design/) - MacOS Style Cursors
|
||||
* [Mechvibes](https://mechvibes.com/) / [GitHub](https://github.com/hainguyents13/mechvibes) or [MechaKeys](https://mechakeys.robolab.io/) - Keyboard Sound Effects
|
||||
* [ElectricSheep](https://electricsheep.org/) or [After Dark CSS](https://www.bryanbraun.com/after-dark-css/) - Screensavers
|
||||
* [FolderMarker](https://foldermarker.com/), [Flaired Folder](https://flaired-folders.vercel.app/), [CustomFolder](https://www.gdzsoft.com/) - Custom Folder Icons
|
||||
* [Recycle Bin Themes](https://github.com/sdushantha/recycle-bin-themes) - Custom Recycle Bin Icons
|
||||
* [ElevenClock](https://www.marticliment.com/elevenclock/) - Customize Windows 11 Clock
|
||||
* [TranslucentFlyouts](https://github.com/ALTaleX531/TranslucentFlyouts) - Translucent Context Menus / [GUI](https://github.com/Satanarious/TranslucentFlyoutsConfig)
|
||||
* [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 / [Extra Features](https://rentry.co/FMHYBase64#start-back)
|
||||
* [ModernFlyouts](https://apps.microsoft.com/store/detail/modernflyouts-preview/9MT60QV066RP) - Modern Audio Flyouts / [GitHub](https://github.com/ModernFlyouts-Community/ModernFlyouts)
|
||||
* [msstyleEditor](https://github.com/nptr/msstyleEditor) - Visual Style Editor
|
||||
* [StartIsBack](https://www.startisback.com/) or [StartAllBack](https://www.startallback.com/) - Start Menu Customization
|
||||
* [Taskbar Tweaker](https://tweaker.ramensoftware.com/), [TranslucentTB](https://github.com/TranslucentTB/TranslucentTB), [NiceTaskbar](https://www.microsoft.com/en-us/p/nicetaskbar/9pkl2s93xwb5) - Taskbar Customization / [Old School Style](https://github.com/dremin/RetroBar)
|
||||
* [AccentColorizer](https://github.com/krlvm/AccentColorizer) - Accent Color Customization
|
||||
* [BeautySearch](https://github.com/krlvm/BeautySearch) - Search Customization
|
||||
* [ElevenClock](https://www.marticliment.com/elevenclock/) - Clock Customization
|
||||
* [HackBGRT](https://github.com/Metabolix/HackBGRT) - Boot Logo Changer
|
||||
* [WinDynamicDesktop](https://github.com/t1m0thyj/WinDynamicDesktop) or [Dynamic Theme](https://apps.microsoft.com/detail/9nblggh1zbkw) - Auto Change Wallpaper
|
||||
* [ExplorerBlurMica](https://github.com/Maplespe/ExplorerBlurMica) - File Explorer Effects
|
||||
* [MicaForEveryone](https://github.com/MicaForEveryone/MicaForEveryone) - Title Bar Effects
|
||||
* [Cute Borders](https://github.com/keifufu/cute-borders) - Border Color Changer (Win11 Only)
|
||||
* [ModernFlyouts](https://modernflyouts-community.github.io) - Modern Flyouts / [GitHub](https://github.com/ModernFlyouts-Community/ModernFlyouts)
|
||||
* [Alternative Windows Shells Wiki](https://en.wikipedia.org/wiki/List_of_alternative_shells_for_Windows) - Alt Windows Shells
|
||||
* [Aerial](https://github.com/OrangeJedi/Aerial) - Apple TV Screensaver
|
||||
* [ExcelDarkThemeFix](https://github.com/matafokka/ExcelDarkThemeFix) - Fix Excel on Themed Windows
|
||||
* [MacType](https://www.mactype.net/) - Use Mac Fonts on Windows / [GitHub](https://github.com/snowie2000/mactype)
|
||||
|
||||
***
|
||||
|
||||
## ▷ Custom Themes
|
||||
## ▷ App Themes
|
||||
|
||||
* 🌐 **[Awesome Ricing](https://github.com/fosslife/awesome-ricing)** or [Windows-Ricing](https://github.com/winthemers/wiki) - Windows Ricing Resources
|
||||
* ⭐ **[Dracula](https://draculatheme.com/)** / [Discord](https://discord.com/invite/yDcFsrYuq9) or **[Catppuccin](https://catppuccin.com/)** / [Discord](https://discord.gg/r6Mdz5dpFc) - Custom App Themes
|
||||
* ⭐ **[terminal.sexy](https://terminal.sexy/)**, [TerminalSplash](https://terminalsplash.com/), [Solarized](https://ethanschoonover.com/solarized) or [WindowsTerminalThemes](https://windowsterminalthemes.dev/) - Terminal Themes
|
||||
* [VSThemes](https://vsthemes.org/en/) - Custom Windows Themes
|
||||
* [Heliohost Guide](https://ninjasr.varesia.com/w/lb/windows) - Windows Customization Guides
|
||||
* [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/), [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
|
||||
* [Winmoes](https://winmoes.com/) - Anime Windows Themes / Wallpapers
|
||||
* [Desktops](https://deskto.ps/) - OS Theme Examples
|
||||
* [Macdows11](https://redd.it/pd5ha6) or [Macified Windows](https://github.com/Runixe786/Macified-Windows) - Win 11 Mac Theme Guides
|
||||
* [Rosé Pine](https://rosepinetheme.com/) / [Discord](https://discord.gg/r6wf35KVJW), [Aura Theme](https://github.com/daltonmenezes/aura-theme), [Windhawk](https://windhawk.net/) or [theme.park](https://theme-park.dev/) - Custom App Themes
|
||||
* [Totally Awesome List](https://forum.spacehey.com/topic?id=94545) - Oldschool App Themes
|
||||
* [AccentColorizer](https://github.com/krlvm/AccentColorizer) - Custom Windows Accent Color
|
||||
* [Cute Borders](https://github.com/keifufu/cute-borders) - Change Border Color / Win 11 Only
|
||||
* [MicaForEveryone](https://github.com/MicaForEveryone/MicaForEveryone) - System Backdrop Customization
|
||||
* [Traffic Monitor](https://github.com/zhongyang219/TrafficMonitor/) - Network & Hardware Monitor Themes
|
||||
* [Rosé Pine](https://rosepinetheme.com/) / [Discord](https://discord.gg/r6wf35KVJW), [Aura Theme](https://github.com/daltonmenezes/aura-theme), or [theme.park](https://theme-park.dev/) - Custom App Themes
|
||||
* [Totally Awesome List](https://forum.spacehey.com/topic?id=94545) - Old School App Themes
|
||||
* [Pokemon Terminal](https://github.com/LazoCoder/Pokemon-Terminal) - Pokémon Terminal Themes
|
||||
* [ExcelDarkThemeFix](https://github.com/matafokka/ExcelDarkThemeFix) - Fix Excel on Themed Windows
|
||||
* [Traffic Monitor](https://github.com/zhongyang219/TrafficMonitor/) - System Monitor Themes
|
||||
|
||||
***
|
||||
|
||||
## ▷ Wallpapers
|
||||
|
||||
* ⭐ **[wallhaven.cc](https://wallhaven.cc/)** - Search Wallpapers / [Downloader](https://github.com/eramdam/WallbaseDirectDownloader) / [Client](https://github.com/luisflorido/wallhaven-desktop)
|
||||
* ⭐ **[Wallpaper Abyss](https://wall.alphacoders.com/)** - Search Wallpapers
|
||||
* ⭐ **[Rev Wallpaper](https://we-img-search.ordinall.me/)** - Reverse Wallpaper Search
|
||||
* ⭐ **[Wallpaper Abyss](https://wall.alphacoders.com/)**, [WallpaperCave](https://wallpapercave.com/), [WallpapersCraft](https://wallpaperscraft.com/), [VSThemes](https://vsthemes.org/en/) - Search Wallpapers
|
||||
* ⭐ **[Rev Wallpaper](https://we-img-search.ordinall.me/)** or [r/WallpaperRequests](https://www.reddit.com/r/WallpaperRequests/) - Reverse Wallpaper Search
|
||||
* ⭐ **[Studio Ghibli Wallpapers](https://www.ghibli.jp/info/013772)** or [Ghibli Upscaled](https://rentry.co/FMHYBase64#ghibli-upscaled) - Studio Ghibli Wallpapers
|
||||
* ⭐ **[Windows Wall Packs](https://rentry.co/fmhybase64#windows-wallpapers)**, [WallpaperHub](https://www.wallpaperhub.app/), [Windows 10 Spotlight](https://windows10spotlight.com/), [Win7Walls](https://windowswallpaper.miraheze.org/wiki/Windows_7) or [WindowsWallpaper](https://windowswallpaper.miraheze.org/wiki/Main_Page) - Windows Wallpapers
|
||||
* ⭐ **[LWP](https://github.com/jszczerbinsky/lwp)** - Move Wallpapers with Cursor
|
||||
* [WallpaperCave](https://wallpapercave.com/) - Search Wallpapers
|
||||
* [WallpapersCraft](https://wallpaperscraft.com/) - Search Wallpapers
|
||||
* ⭐ **[Ultimate Windows Wallpack](https://rentry.co/fmhybase64#windows-wallpapers)** / [Wiki](https://windowswallpaper.miraheze.org/wiki/Main_Page), [Spotlight](https://windows10spotlight.com/) - Windows Wallpapers
|
||||
* ⭐ **[LWP](https://github.com/jszczerbinsky/lwp)**, [/r/LivingBackgrounds](https://reddit.com/r/LivingBackgrounds), [WALLegend](https://wallegend.net/en/) or [MoeWalls](https://moewalls.com/) - Live Wallpapers
|
||||
* [/r/Wallpaper](https://www.reddit.com/r/wallpaper/) - Wallpapers Community
|
||||
* [Faerber](https://farbenfroh.io/) - Edit Wallpapers to Match Color Scheme
|
||||
* [DualMonitorBackgrounds](https://www.dualmonitorbackgrounds.com/) - Dual Monitor Wallpapers
|
||||
* [Scenic Illustrations](https://www.pixeltrue.com/scenic-illustrations) - Landscape Wallpapers
|
||||
* [CoolBackgrounds](https://coolbackgrounds.io/) or [wallup](https://wallup.net/) - Customizable Wallpapers
|
||||
* [CoolBackgrounds](https://coolbackgrounds.io/) - Customizable Wallpapers
|
||||
* [Simple Desktops](https://simpledesktops.com/), [Minimalistic Wallpaper](https://minimalistic-wallpaper.demolab.com/), [Positron Dream](https://www.positrondream.com/) or [SetAsWall](https://www.setaswall.com/) - Minimalist Wallpapers
|
||||
* [Aesthetic Wallpapers](https://github.com/D3Ext/aesthetic-wallpapers) - Aesthetic Wallpapers
|
||||
* [/r/LivingBackgrounds](https://reddit.com/r/LivingBackgrounds), [VSThemes Live Walls](https://vsthemes.org/en/wallpapers/), [WALLegend](https://wallegend.net/en/) or [MoeWalls](https://moewalls.com/) - Animated / Live Wallpapers
|
||||
* [AutoWall](https://github.com/SegoCode/AutoWall) - Turn Videos / GIFs to Live Wallpapers
|
||||
* [Screencaps](https://screencaps.us/) or [shot.cafe](https://shot.cafe/) - Movie / TV Wallpapers
|
||||
* [Anime Pictures](https://anime-pictures.net/), [WallpaperWaifu](https://wallpaperwaifu.com/), [TheOtaku](https://theotaku.com/) or [MyLiveWallpapers](https://mylivewallpapers.com/) - Anime Wallpapers
|
||||
* [Dracula Wallpapers](https://draculatheme.com/wallpaper) - Dracula Wallpapers
|
||||
* [Mac Walls](https://goo.gl/photos/HjY1hmo6p3jfFz8a7), [2](https://photos.google.com/share/AF1QipNNQyeVrqxBdNmBkq9ILswizuj-RYJFNt5GlxJZ90Y6hx0okrVSLKSnmFFbX7j5Mg?key=RV8tSXVJVGdfS1RIQUI0Q3RZZVhlTmw0WmhFZ2V3) - Apple Wallpapers
|
||||
* [BasicAppleBlog](https://basicappleguy.com/basicappleblog/category/Wallpaper) - Custom Apple Wallpapers
|
||||
* [Mac Walls](https://goo.gl/photos/HjY1hmo6p3jfFz8a7) or [BasicAppleBlog](https://basicappleguy.com/basicappleblog/category/Wallpaper) - Apple Wallpapers
|
||||
* [ChromecastBG](https://chromecastbg.alexmeub.com/) - Chromecast Wallpapers
|
||||
* [Bing Wallpaper Archive](https://bingwallpaper.anerg.com/) - Bing Wallpapers
|
||||
* [Xbox Wallpapers](https://www.xbox.com/en-us/wallpapers/) - Xbox Wallpapers
|
||||
* [Screencaps](https://screencaps.us/) or [shot.cafe](https://shot.cafe/) - Movie / TV Wallpapers
|
||||
* [Anime Pictures](https://anime-pictures.net/), [WallpaperWaifu](https://wallpaperwaifu.com/), [TheOtaku](https://theotaku.com/) or [MyLiveWallpapers](https://mylivewallpapers.com/) - Anime Wallpapers
|
||||
* [WallsPic](https://wallspic.com/), [WallpaperFlare](https://www.wallpaperflare.com/), [HDQwalls](https://hdqwalls.com/) or [UHD Wallpaper](https://www.uhdpaper.com/) - Misc Wallpapers
|
||||
* [G_Walls](https://t.me/G_Walls) - Telegram Wallpaper Channels
|
||||
|
||||
***
|
||||
|
||||
## ▷ Wallpaper Managers
|
||||
## ▷ Wallpaper Tools
|
||||
|
||||
* ⭐ **[Wallpaper Engine](https://rentry.co/FMHYBase64#wallpaper-engine)** / [PKG to Zip](https://github.com/TheRioMiner/Wallpaper-Engine-Pkg-to-Zip) / [Collections](https://www.wallpaperengine.space/collections), [2](https://steamcommunity.com/sharedfiles/filedetails/?id=2801058904) / [Workshop DL](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_steam_workshop_downloaders) - Wallpaper Manager
|
||||
* ⭐ **[Lively](https://www.rocksdanister.com/lively/)** or [ScreenPlay](https://screen-play.app/) - Live Wallpaper Manager
|
||||
* [backiee](https://apps.microsoft.com/store/detail/backiee-wallpaper-studio-10/9WZDNCRFHZCD) - Wallpaper Manager
|
||||
* [SuperPaper](https://github.com/hhannine/superpaper) - Cross-Platform Multi-Monitor Wallpaper Manager
|
||||
* [Background Switcher](https://johnsad.ventures/software/backgroundswitcher/) - Multi-Host Wallpaper Switcher
|
||||
* [Awesome Wallpaper](https://awesome-wallpaper.com/) - Show System Information on Wallpaper
|
||||
* [Faerber](https://farbenfroh.io/) - Edit Wallpapers to Match Color Scheme
|
||||
* [AutoWall](https://github.com/SegoCode/AutoWall) - Turn Videos / GIFs to Live Wallpapers
|
||||
* [Awesome Wallpaper](https://awesome-wallpaper.com/) - Show System Information on Wallpaper
|
|
@ -36,12 +36,11 @@
|
|||
* ⭐ **[GitHub Gists](https://gist.github.com/)** - Multi-Syntax / Account Needed
|
||||
* ⭐ **[Stellular](https://stellular.net/)**, [2](https://bundlrs.cc/), [3](https://www.sentrytwo.com/) - Markdown Support
|
||||
* ⭐ **[pastes.dev](https://pastes.dev/)** - Multi-Syntax / Markdown Support / [GitHub](https://github.com/lucko/paste)
|
||||
* ⭐ **[PrivateBin](https://privatebin.net/)** - Markdown Support / Syntax Highlighting / [GitHub](https://github.com/PrivateBin/PrivateBin)
|
||||
* ⭐ **[PrivateBin](https://privatebin.net/)**, [2](https://notebin.de/) - Markdown Support / Syntax Highlighting / [GitHub](https://github.com/PrivateBin/PrivateBin)
|
||||
* ⭐ **[Katbin](https://katb.in/)** - Plain Text / [GitHub](https://github.com/sphericalkat/katbin)
|
||||
* [snowbin](https://pastes.fmhy.net/), [2](https://paste.fmhy.net/) - Markdown Support / [GitHub](https://github.com/fmhy/snowbin)
|
||||
* [Text.is](https://text.is/) - Markdown Support / Rentry Clone
|
||||
* [bpa.st](https://bpa.st/) - Multi-Syntax / Markdown Support
|
||||
* [Mozilla Community Pastebin](https://paste.mozilla.org/) - Multi-Syntax / Markdown Support
|
||||
* [dpaste](https://dpaste.org/) - Multi-Syntax / Markdown Support / [GitHub](https://github.com/DarrenOfficial/dpaste)
|
||||
* [cryptgeon](https://cryptgeon.org/) - Single View / Plain Text / [GitHub](https://github.com/cupcakearmy/cryptgeon)
|
||||
* [Paste.ee](https://paste.ee/) - Multi-Syntax / Markdown Support
|
||||
|
@ -104,10 +103,10 @@
|
|||
|
||||
## ▷ Audio Transcription
|
||||
|
||||
* [Whisper](https://github.com/openai/whisper) - Audio Transcription / [WebUI](https://whisper.ggerganov.com/)
|
||||
* [Whisper](https://github.com/openai/whisper) - Audio Transcription / [WebUI](https://huggingface.co/spaces/hf-audio/whisper-large-v3), [2](https://whisper.ggerganov.com/)
|
||||
* [mp4grep](https://github.com/o-oconnell/mp4grep) - MP4 File Transcription Tool
|
||||
* [SpeechTexter](https://www.speechtexter.com/), [VoiceToText](https://voicetotext.org/), [Dictation](https://dictation.io/speech), [oTranscribe](https://otranscribe.com/) or [TalkTyper](https://talktyper.com/) - Browser-Based Speech-To-Text Tools
|
||||
* [Revoldiv](https://revoldiv.com/) or [Turboscribe](https://turboscribe.ai/) - AI-Based Transcription Services
|
||||
* [Revoldiv](https://revoldiv.com/) or [Turboscribe](https://turboscribe.ai/) - AI-Based Transcriptions
|
||||
* [Vibe](https://thewh1teagle.github.io/vibe/) - Audio Transcription Software
|
||||
* [SpeechNotes](https://speechnotes.co/) - Speech Recognition Notes App
|
||||
* [LilySpeech](https://lilyspeech.com/) - Fast Voice-To-Text Software
|
||||
|
@ -175,13 +174,8 @@
|
|||
* ⭐ **[Amp What](https://www.amp-what.com/)**
|
||||
* [CopyChar](https://copychar.cc/)
|
||||
* [Unicode Table](https://symbl.cc/)
|
||||
* [Copy Paste Dump](https://c.r74n.com/)
|
||||
* [Unicode Explorer](https://unicode-explorer.com/)
|
||||
* [HotSymbol](https://www.hotsymbol.com/)
|
||||
* [Snskey](https://snskeyboard.com/)
|
||||
* [Unilist](https://unilist.raphaelbastide.com/)
|
||||
* [Character Map](https://github.com/character-map-uwp/Character-Map-UWP)
|
||||
* [Alt Codes](https://alt-codes.net/)
|
||||
* [Unifoundry](https://unifoundry.com/)
|
||||
* [Cool Symbol](https://coolsymbol.com/)
|
||||
* [FastEmoji](https://www.fastemoji.com/), [CuteSymbols](https://www.cutesymbols.net/), [GetSymbol](https://www.getsymbol.net/) / [2](https://www.cute-kaomoji.com/), [EmoticonHub](https://emoticonhub.com/), [Text Smileys](https://lenny-face-generator.textsmilies.com/) or [textfac.es](https://textfac.es/) - Unicode Emojis
|
||||
|
@ -191,7 +185,6 @@
|
|||
## ▷ Typing Lessons
|
||||
|
||||
* ⭐ **[Monkey Type](https://monkeytype.com/)** - Customizable Typing Tests
|
||||
* ⭐ **[Smassh](https://github.com/kraanzu/smassh)** or [Ttyper](https://github.com/max-niederman/ttyper) - Terminal Typing Tests
|
||||
* [Typing Guide](https://docs.google.com/document/d/1W0jhfqJI2ueJ2FNseR4YAFpNfsUM-_FlREHbpNGmC2o) - In-Depth Typing Guide
|
||||
* [Typing.io](https://typing.io/) - Typing Practice for Programming / Sign-up Required
|
||||
* [keybr](https://www.keybr.com/) - Typing Practice
|
||||
|
@ -204,7 +197,7 @@
|
|||
* [NGram Type](https://ranelpadon.github.io/ngram-type/), [KeyZen MAB](https://adamgradzki.com/keyzen-mab/) or [Keyzen Colmak](https://ranelpadon.github.io/keyzen-colemak-dh/) - Touch Typing Tests
|
||||
* [TypeLit.io](https://www.typelit.io/) or [Entertrained](https://entertrained.app/) - Book Typing Tests
|
||||
* [Colemak Academy](https://www.colemak.academy/) - Alt / Custom Keyboard Tests
|
||||
* [klavaro](https://klavaro.sourceforge.io/), [TypingStudy](https://www.typingstudy.com/) or [TypeFast](https://typefast.io/) - Multilingual Typing Tests
|
||||
* [TypingStudy](https://www.typingstudy.com/) or [TypeFast](https://typefast.io/) - Multilingual Typing Tests
|
||||
* [10fastfingers](https://10fastfingers.com/) - Typing Competitions
|
||||
|
||||
***
|
||||
|
@ -215,12 +208,12 @@
|
|||
* ↪️ **[Android Text Editor](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_android_text_editors)**
|
||||
* ↪️ **[Code Editors / IDEs](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/dev-tools#wiki_.25B7_ides_.2F_code_editors)**
|
||||
* ↪️ **[Markdown Editors](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/dev-tools/#wiki_.25B7_markdown_editors)**
|
||||
* ⭐ **[Notepad++](https://notepad-plus-plus.org/)** or [NotepadNext](https://github.com/dail8859/NotepadNext) - Notepad / Code Editor / [Markdown](https://nea.github.io/MarkdownViewerPlusPlus/)
|
||||
* ⭐ **[Notepad++](https://notepad-plus-plus.org/)** or [NotepadNext](https://github.com/dail8859/NotepadNext) - Notepad & Code Editor / [Markdown](https://nea.github.io/MarkdownViewerPlusPlus/)
|
||||
* [EncryptPad](https://evpo.net/encryptpad/) - Encrypted Text Editor
|
||||
* [Notepads](https://www.notepadsapp.com/) - Text Editor
|
||||
* [FastNotes](https://fastedit.frozenassassine.de/) - Text Editor
|
||||
* [Kompad](https://kompad.vercel.app/) - Text Editor
|
||||
* [Sublime Text](https://www.sublimetext.com/) - Text Editor / [Patcher](https://rentry.co/FMHYBase64#sublime-text)
|
||||
* [Sublime Text](https://www.sublimetext.com/) - Text Editor / [Patcher](https://rentry.co/FMHYBase64#sublime-text) / [Package Manager](https://packagecontrol.io/)
|
||||
* [Xed](https://github.com/linuxmint/xed) - GTK3 Text Editor
|
||||
* [Zim Wiki](https://zim-wiki.org/) - Wiki Text Editor
|
||||
* [tomboy-ng](https://github.com/tomboy-notes/tomboy-ng) - TomBoy-Based Text Editor
|
||||
|
@ -281,6 +274,7 @@
|
|||
* ⭐ **[Proton Docs](https://proton.me/drive/docs)** - Local / Cloud Saves
|
||||
* ⭐ **[takenote](https://takenote.dev/)** - Local Saves
|
||||
* ⭐ **[Zen](https://zen.unit.ms/)** - Local Saves
|
||||
* [Leaflet](https://leaflet.pub/) - Cloud Saves / Customizable / [Examples](https://leaflet.pub/bfed2569-f9c0-4c2a-a281-9f57bc372082)
|
||||
* [Browserpad](https://browserpad.org/) - Local Saves
|
||||
* [Notepad](https://notepad.js.org/) - Local Saves
|
||||
* [onlinenotepad](https://onlinenotepad.org/) - Local Saves
|
||||
|
@ -369,7 +363,7 @@
|
|||
* [SubjectiveSort](https://wiesenthal.github.io/SubjectiveSort/) - Create Ranked List from CSV
|
||||
* [VisiData](https://www.visidata.org/) - Spreadsheet CLI Editor
|
||||
* [Structifi](https://structifi.com/) - Convert Files to Structured Data
|
||||
* [TadViewer](https://www.tadviewer.com/) - View and Analyze Tabular Data
|
||||
* [TadViewer](https://www.tadviewer.com/) - View / Analyze Tabular Data
|
||||
|
||||
***
|
||||
|
||||
|
@ -429,14 +423,12 @@
|
|||
|
||||
## ▷ ASCII Art
|
||||
|
||||
* ⭐ **[TAAG](https://patorjk.com/software/taag/)**, [DeepAA](https://github.com/OsciiArt/DeepAA), [Kammerl](https://www.kammerl.de/ascii/AsciiSignature.php) or [ASCII Today](https://ascii.today/) - ASCII Art / Text Generators
|
||||
* ⭐ **[TAAG](https://patorjk.com/software/taag/)**, [DeepAA](https://github.com/OsciiArt/DeepAA), [Kammerl](https://www.kammerl.de/ascii/AsciiSignature.php), [ASCII Art Studio](https://www.majorgeeks.com/files/details/ascii_art_studio.html) or [ASCII Today](https://ascii.today/) - ASCII Art / Text Generators
|
||||
* [REXPaint](https://www.gridsagegames.com/rexpaint/), [Playscii](https://jp.itch.io/playscii) or [PabloDraw](https://picoe.ca/products/pablodraw/) - ASCII Editors
|
||||
* [ASCII Paint](https://ascii.alienmelon.com/) - ASCII Paint Tool
|
||||
* [ascii-art-generator](https://www.ascii-art-generator.org/), [asciiart](https://asciiart.club/), [ascii-image-converter](https://github.com/TheZoraiz/ascii-image-converter), [Monospace](https://codepen.io/Mikhail-Bespalov/pen/JoPqYrz), [ITOA](https://itoa.hex.dance/) or [ASCII-art-creator](https://github.com/CherryPill/ASCII-art-creator) - Image to ASCII Art
|
||||
* [Love ASCII](http://loveascii.com/), [asciiart.eu](https://www.asciiart.eu/), [EmojiCombos](https://emojicombos.com/), [16colors](https://16colo.rs/), [ascii.co](https://ascii.co.uk/art) or [RoySAC](http://www.roysac.com/sitemap.html) - Browse / Copy ASCII Art
|
||||
* [ASCII Flow](https://asciiflow.com/) or [tree](https://tree.nathanfriend.com/) - Create ASCII Diagrams
|
||||
* [Image to Braille](https://505e06b2.github.io/Image-to-Braille/) - Convert Images to Braille
|
||||
* [SVGBob Editor](https://ivanceras.github.io/svgbob-editor/) - Convert ASCII Diagrams to SVG Images
|
||||
* [AnsiLove](https://www.ansilove.org/downloads.html) or [convert-ascii-to-image](https://onlinetools.com/ascii/convert-ascii-to-image) - ANSI / ASCII Art to PNG Converters
|
||||
* [lvllvl](https://lvllvl.com/) or [Petmate](https://nurpax.github.io/petmate/) - C64 PETSCII Image Editor
|
||||
|
||||
|
@ -444,12 +436,11 @@
|
|||
|
||||
# ► Fonts
|
||||
|
||||
* ⭐ **[Nerd Fonts](https://www.nerdfonts.com/)** - Icon-Rich Developer/Terminal Fonts
|
||||
* ⭐ **[Nerd Fonts](https://www.nerdfonts.com/)** - Icon-Rich Developer / Terminal Fonts
|
||||
* [OpenDyslexic](https://opendyslexic.org/) - Typeface for Dyslexia
|
||||
* [Typewolf](https://www.typewolf.com/) or [Typ.io](https://typ.io/) - Trending Website Fonts
|
||||
* [Cava's Pixel Resources](https://caveras.net/) - Pixel Fonts
|
||||
* [Oldschool PC Fonts](https://int10h.org/oldschool-pc-fonts/) - Oldschool PC Fonts
|
||||
* [Codeface](https://github.com/chrissimpkins/codeface) - Fonts for Coding
|
||||
* [FiraCode](https://github.com/tonsky/FiraCode), [Cascadia Code](https://github.com/microsoft/cascadia-code) or [Maple Font](https://github.com/subframe7536/Maple-font) - Monospace Fonts
|
||||
|
||||
***
|
||||
|
@ -465,7 +456,8 @@
|
|||
* [uncut.wtf](https://uncut.wtf/) - Open Source
|
||||
* [Beautiful Web Type](https://beautifulwebtype.com/) - Open Source
|
||||
* [FontRepo](https://www.fontrepo.com/) - Open Source
|
||||
* [Google Fonts](https://fonts.google.com/) - Commercial Use / [Tagged Fonts](https://goofonts.com/) / [Privacy-Friendly API](https://fonts.coollabs.io/)
|
||||
* [Bunny Fonts](https://fonts.bunny.net/) - Open Source
|
||||
* [Google Fonts](https://fonts.google.com/) - Commercial Use / [Tags](https://goofonts.com/) / [Privacy-Friendly API](https://fonts.coollabs.io/)
|
||||
* [FontShare](https://fontshare.com/) - Commercial Use
|
||||
* [Fontlot](https://fontlot.com/) - Freeware
|
||||
* [Fontsly](https://fontsly.com/) - Freeware
|
||||
|
@ -474,6 +466,7 @@
|
|||
* [Online Fonts](https://online-fonts.com/) - Freeware
|
||||
* [CDNFonts](https://www.cdnfonts.com/) - Freeware
|
||||
* [Fontesk](https://fontesk.com/) - Freeware
|
||||
* [FontStruct](https://fontstruct.com/) - Freeware
|
||||
* [iFonts](https://ifonts.xyz/) - Freeware
|
||||
* [DownloadFonts](https://www.downloadfonts.io/) - Freeware
|
||||
* [AbstractFonts](https://www.abstractfonts.com/) - Freeware
|
||||
|
@ -497,6 +490,7 @@
|
|||
* [Cufon Fonts](https://www.cufonfonts.com/)
|
||||
* [FontsFree](https://fontsfree.net)
|
||||
* [DFonts](https://www.dfonts.org/)
|
||||
* [Font Spring](https://www.fontspring.com/free)
|
||||
* [FFonts](https://www.ffonts.net/)
|
||||
* [FontsHub](https://fontshub.pro/)
|
||||
* [Font Meme](https://fontmeme.com/)
|
||||
|
@ -512,15 +506,17 @@
|
|||
|
||||
* ⭐ **[Font Interceptor](https://fontinterceptor.mschfmag.com/)** - Download Fonts from Websites
|
||||
* ⭐ **[FontDrop](https://fontdrop.info/)** - Analyze Font Files
|
||||
* [WhatTheFont](https://www.myfonts.com/pages/whatthefont), [Identifont](http://www.identifont.com/), [WhatFont](https://whatfonttool.com/) or [Font Finder](https://www.whatfontis.com/) - Font Identification Tools
|
||||
* ⭐ **[Adobe Fonts](https://fonts.adobe.com/fonts/vs/upload)**, [Font Finder](https://www.whatfontis.com/), [WhatTheFont](https://www.myfonts.com/pages/whatthefont), [Identifont](http://www.identifont.com/), [WhatFont](https://whatfonttool.com/) - Font Identification Tools
|
||||
* [Fonts Ninja](https://fonts.ninja/tools) - Font Identification Extension
|
||||
* [Unicode Explorer](https://unicode-explorer.com/) or [Compart](https://www.compart.com/en/unicode) - Unicode Character Identification
|
||||
* [Transfonter](https://transfonter.org/) - Create CSS @font-face Kits
|
||||
* [TypeRip](https://badnoise.net/TypeRip/) - Adobe Font Ripper / [GitHub](https://github.com/CodeZombie/TypeRip)
|
||||
* [FontBase](https://fontba.se/) or [NexusFont](https://www.xiles.app/) - Font Managers
|
||||
* [FontBase](https://fontba.se/), [NexusFont](https://www.xiles.app/) or [Font Manager](https://github.com/FontManager/font-manager) (Linux) - Font Managers
|
||||
* [Colors & Fonts](https://www.colorsandfonts.com/) - Typography Tools
|
||||
* [DS-Fusion](https://ds-fusion.github.io/) - AI Typography Generator
|
||||
* [Formito](https://formito.com/tools/logo) - Typography Logo Maker
|
||||
* [Type Terms](https://avark.agency/typeterms/) - Typography Cheat Sheet
|
||||
* [The Good Line-Height](https://thegoodlineheight.com/) - Typography Scaling Editor
|
||||
* [MacType](https://www.mactype.net/) - Use Mac fonts on Windows
|
||||
* [Font List](https://wavian.com/font-list.html) or [So You Need A Typeface 2.0](https://ianli.github.io/so-you-need-a-typeface/) - Examples of Font Styles
|
||||
* [Type Design Resources](https://typedesignresources.com/) or [Free Faces](https://www.freefaces.gallery/) - Typeface Resources
|
||||
|
||||
|
@ -533,7 +529,6 @@
|
|||
* ⭐ **[Make WordArt](https://www.makewordart.com/)**, [FlameText](https://www.flamingtext.com/), [MakeText](https://maketext.io/), [TextGiraffe](https://www.textgiraffe.com/), [Text Pro](https://textpro.me/) or [CoolText](https://cooltext.com/) - WordArt Generators
|
||||
* [Polona Typo](https://typo.polona.pl/en/) - Generate WordArt from Book, Poster, & Map Letters
|
||||
* [Text Color Fader](https://patorjk.com/text-color-fader/) - Rainbow Text Generator
|
||||
* [Textcraft](https://textcraft.net/) - Minecraft Text Generator
|
||||
* [TextDrom](https://en.textdrom.com/), [3DText2GIF](https://3dtext2gif.com/) or [TextStudio](https://www.textstudio.com/) - 3D / Animated Text Generators
|
||||
* [Textanim](https://textanim.com/) or [Space Type Generator](https://spacetypegenerator.com/) - Animated Text Generators
|
||||
* [Batname](https://batname.vercel.app/) - Batman (2022) Text Generator
|
||||
|
@ -546,9 +541,8 @@
|
|||
|
||||
* ⭐ **[TypeTrials](https://typetrials.com/)** - Variable Font Playground
|
||||
* [V-Fonts](https://v-fonts.com/) or [Phase](https://www.eliashanzer.com/phase/) - Variable Fonts Testers
|
||||
* [enFont](https://enfont.javierarce.com/), [Calligraphr](https://www.calligraphr.com/en/) or [FontStruct](https://fontstruct.com/) - Custom Font Creators
|
||||
* [enFont](https://enfont.javierarce.com/) or [Calligraphr](https://www.calligraphr.com/en/) - Custom Font Creators
|
||||
* [Fontjoy](https://fontjoy.com/) - Generate Font Combinations
|
||||
* [FontSprite](https://adamstrange.itch.io/fontsprite) - FontSprite Editor
|
||||
* [BitFontMaker2](https://pentacom.jp/pentacom/bitfontmaker2/) - BitMap Font Editor
|
||||
* [FontEdit](https://github.com/ayoy/fontedit), [metaflop](https://www.metaflop.com/), [MFEKglif](https://github.com/MFEK/glif), [Glyphr Studio](https://www.glyphrstudio.com/), [Birdfont](https://birdfont.org/), [Universal Sans](https://universalsans.com/) or [FontForge](https://fontforge.org/en-US/) - Font / Typeface Editors
|
||||
* [Transfonter](https://transfonter.org/) - Font Converter
|
||||
|
|
|
@ -15,7 +15,7 @@
|
|||
* ⭐ **[m0nkrus](https://w16.monkrus.ws/)** / [2](https://vk.com/monkrus) - Adobe Software Archive / [Block Adobe](https://rentry.co/FMHYBase64#a-dove-is-dumb) / [Search](https://monkrus.dvuzu.com/) / [Telegram](https://t.me/real_monkrus)
|
||||
* ⭐ **[Torrent CSE](https://cse.google.com/cse?cx=006516753008110874046:0led5tukccj)** / [CSE 2](https://cse.google.com/cse?cx=006516753008110874046:kh3piqxus6n) - Multi Site Search
|
||||
* [1337x](https://1337x.to/) - Video / Audio / NSFW
|
||||
* 1337x Tools - [Mirrors](https://1337x-status.org/), [2](https://1337x.to/about), [3](https://ibb.co/py0RCz9) / [User Ranks](https://i.ibb.co/WfNhvtB/ebc2def26433.png) / [Telegram Bot](https://t.me/search_content_bot), [2](https://github.com/xbIm/1337x-torrent-telegram-bot) / [IMDb Ratings](https://github.com/kotylo/1337imdb) / [Proxy](https://redd.it/tz7nyx), [2](https://pastebin.com/3n5K0QrP) [.onion](http://l337xdarkkaqfwzntnfk5bmoaroivtl6xsbatabvlb52umg6v3ch44yd.onion/) / [Magnets](https://greasyfork.org/en/scripts/373230) / [Timezone Fix](https://greasyfork.org/en/scripts/421635)
|
||||
* 1337x Tools - [Mirrors](https://1337x-status.org/), [2](https://1337x.to/about), [3](https://ibb.co/py0RCz9) / [User Ranks](https://i.ibb.co/WfNhvtB/ebc2def26433.png) / [Telegram Bot](https://t.me/search_content_bot), [2](https://github.com/xbIm/1337x-torrent-telegram-bot) / [IMDb Ratings](https://github.com/kotylo/1337imdb) / [Proxy](https://redd.it/tz7nyx), [2](https://pastebin.com/3n5K0QrP) / [.onion](http://l337xdarkkaqfwzntnfk5bmoaroivtl6xsbatabvlb52umg6v3ch44yd.onion/) / [Magnets](https://greasyfork.org/en/scripts/373230) / [Timezone Fix](https://greasyfork.org/en/scripts/421635)
|
||||
* [RARBG Dump](https://rarbgdump.com/) - Video / Audio / Games / Books / NSFW / Continuation Project
|
||||
* [LimeTorrents](https://www.limetorrents.lol/) - Video / Audio / Books
|
||||
* [IsoHunt](https://isohunts.to/) - Video / Audio / Books
|
||||
|
@ -36,7 +36,6 @@
|
|||
***
|
||||
|
||||
* ⭐ **[BTDigg](https://btdig.com/)** - DHT-Based / [.onion](http://btdigggink2pdqzqrik3blmqemsbntpzwxottujilcdjfz56jumzfsyd.onion/) / [.i2p](http://btdigg.i2p/)
|
||||
* ⭐ **[BitSearch](https://bitsearch.to/)**, [2](https://solidtorrents.to) - DHT-Based
|
||||
* ⭐ **[Knaben](https://knaben.org/)**
|
||||
* [ExT](https://ext.to/), [2](https://search.extto.com/) / [Proxy](https://extranet.torrentbay.st/)
|
||||
* [TorrentProject](https://torrentproject.cc/), [2](https://torrentproject2.net/) - DHT-Based
|
||||
|
@ -92,7 +91,7 @@
|
|||
* ⭐ **[Deluge](https://www.deluge-torrent.org/)** - [Plugins](https://deluge-torrent.org/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
|
||||
* [Motrix](https://motrix.app/) / [GitHub](https://github.com/agalwood/Motrix)
|
||||
* [imFile](https://imfile.io/) / Updated Motrix fork / [GitHub](https://github.com/imfile-io/imfile-desktop)
|
||||
* [Tixati](https://tixati.com/)
|
||||
* [WizTorrent](https://wiztorrent.com/) / Torrent Player / WebShare
|
||||
* [BiglyBT](https://www.biglybt.com/)
|
||||
|
|
|
@ -99,6 +99,4 @@ To easily see which sites are trusted, and which are unsafe, try the **[FMHY Saf
|
|||
|
||||
### [Fake Z-Lib Sites](https://www.reddit.com/r/zlibrary/wiki/index/scamsites/) / [2](https://i.imgur.com/lSMHLlL.png) / [3](https://i.ibb.co/KGDLZRp/image.png)
|
||||
|
||||
### [Fake Windows Activators](https://pastebin.com/gCmWs2GR)
|
||||
|
||||
### [Unsafe Wayback Machine Links](https://rentry.co/ue9qk)
|
||||
### [Fake Windows Activators](https://pastebin.com/gCmWs2GR)
|
|
@ -32,7 +32,7 @@
|
|||
***
|
||||
|
||||
* ⭐ **[DoodStream](https://doodstream.com/)** - 5GB / 60 Days / Account Required
|
||||
* ⭐ **[Litterbox](https://litterbox.catbox.moe/)** - 1GB / Temporary
|
||||
* ⭐ **[Litterbox](https://litterbox.catbox.moe/)** - 1GB / 3 Days
|
||||
* ⭐ **[Catbox](https://catbox.moe/)** - 200MB / Forever / Allows Hotlinking
|
||||
* ⭐ **[Gofile](https://gofile.io/)** - Unlimited / 10 Days
|
||||
* ⭐ **[Send.now](https://send.now/)** - Unlimited / 30 Days
|
||||
|
@ -102,7 +102,7 @@
|
|||
* [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)
|
||||
* [VERT](https://vert.sh/) / [Discord](https://discord.gg/8XXZ7TFFrK) / [GitHub](https://github.com/VERT-sh/VERT), [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
|
||||
* [nmkoder](https://github.com/n00mkrad/nmkoder) - Media Encoding / 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
|
||||
* [Ingex](https://ingex.sourceforge.net/) - Tapeless (Uncompressed) Recording / Digital Tape Converter
|
||||
|
@ -252,7 +252,6 @@
|
|||
|
||||
* 🌐 **[Auto Download Tool Index](https://redd.it/hbwnb2)**
|
||||
* ⭐ **[Jellyfin](https://jellyfin.org/)** - Media Server
|
||||
* ⭐ **[Plex](https://www.plex.tv/)** - Media Server
|
||||
* ⭐ **[Kodi](https://kodi.tv/)** - Media Server
|
||||
* [TRaSH Guides](https://trash-guides.info/) / [Discord](https://discord.com/invite/4K2kdvwzFh) or [The Complete Guide](https://redd.it/pqsomd) - Server Setup Guides
|
||||
* [Self-hosted Anime](https://github.com/shyonae/selfhosted-anime/wiki) - Anime Server Setup Guides
|
||||
|
@ -261,6 +260,7 @@
|
|||
* [Fixarr](https://github.com/sachinsenal0x64/fixarr) - Media Server File Renamer
|
||||
* [HTPC Download Box](https://github.com/sebgl/htpc-download-box) - Media Server Automation
|
||||
* [Emby](https://emby.media/) - Media Server
|
||||
* [Plex](https://www.plex.tv/) - Media Server
|
||||
* [Universal Media Server](https://www.universalmediaserver.com/) - Media Server
|
||||
* [OSMC](https://osmc.tv/) - Media Server
|
||||
* [Kawaii-Player](https://github.com/kanishka-linux/kawaii-player) - Media Server
|
||||
|
@ -287,7 +287,7 @@
|
|||
|
||||
## ▷ Plex Tools
|
||||
|
||||
* [Plxplainers](https://www.plxplainers.xyz/) or [Reddit Guide](https://redd.it/ma1hlm) - Plex Setup Guides
|
||||
* [Reddit Guide](https://redd.it/ma1hlm) - Plex Setup Guides
|
||||
* [Tautulli](https://tautulli.com/) - Server Monitor / [Note](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#tautulli-note)
|
||||
* [SuperPlex](https://normantheidiot.neocities.org/superplex/) - Plex Plugins
|
||||
* [Kitana](https://github.com/pannal/Kitana) - Plugin Frontend
|
||||
|
@ -304,7 +304,7 @@
|
|||
## ▷ Jellyfin Tools
|
||||
|
||||
* 🌐 **[Awesome Jellyfin](https://github.com/awesome-jellyfin/awesome-jellyfin)** - Jellyfin Resources
|
||||
* ⭐ **[Blink](https://github.com/prayag17/Blink)** or [jellyfin-media-player](https://github.com/jellyfin/jellyfin-media-player) - Desktop Clients
|
||||
* ⭐ **[Blink](https://github.com/prayag17/Blink)**, [Fladder](https://github.com/DonutWare/Fladder/) or [jellyfin-media-player](https://github.com/jellyfin/jellyfin-media-player) - Desktop Clients
|
||||
* [/r/JellyfinShare](https://www.reddit.com/r/JellyfinShare/) - Jellyfin Server Sharing
|
||||
* [Jellyfin Forum](https://forum.jellyfin.org/) - Official Jellyfin Forum
|
||||
* [Jellyfin Vue](https://github.com/jellyfin/jellyfin-vue) - Jellyfin Web Client
|
||||
|
@ -408,7 +408,7 @@
|
|||
## ▷ Online Editors
|
||||
|
||||
* ⭐ **[wide.video](https://wide.video/)** / [Discord](https://discord.gg/Q54kW97yj5)
|
||||
* ⭐ **[Pikimov](https://pikimov.com/)** / Requires Chromium
|
||||
* ⭐ **[Pikimov](https://pikimov.com/)** / Use Edge or Chrome
|
||||
* ⭐ **[Mastershot](https://mastershot.app/)** / Signup Required
|
||||
* [VideoInu](https://videoinu.com/)
|
||||
* [Clideo](https://clideo.com/)
|
||||
|
@ -425,7 +425,7 @@
|
|||
* [Video2Edit](https://www.video2edit.com/)
|
||||
* [Crop Video](https://crop-video.com/) - Crop Videos
|
||||
* [LoopVid](https://loopvid.kastden.org/) - Loop Videos
|
||||
* [Crossfade](https://crossfade.io/) - Video and Audio Crossfading
|
||||
* [Crossfade](https://crossfade.io/) - Video / Audio Crossfading
|
||||
* [VidLouder](https://www.videolouder.com/) - Increase Video Volume
|
||||
|
||||
***
|
||||
|
@ -436,10 +436,10 @@
|
|||
* [FreeVideoEffect](https://freevideoeffect.com/)
|
||||
* [VideoCoPilot](https://www.videocopilot.net/)
|
||||
* [VFXmed](https://www.vfxmed.com/)
|
||||
* [Team V.R releases](https://rentry.co/FMHYBase64#team-vr)
|
||||
* [flex_cg_vfx](https://t.me/flex_cg_vfx)
|
||||
* [VFXLoot](https://vfxloot.com/)
|
||||
* [Download Pirate](https://www.downloadpirate.com/) - **Use Adblock / Avoid Fake Download Buttons** / [Discord](https://discord.gg/ucTvVtBz9Z)
|
||||
* [Team V.R](https://codec.kyiv.ua/ad0be.html) - After Effects
|
||||
* [ShareAE](https://www.shareae.com/) - After Effects
|
||||
* [HunterAE](https://hunterae.com/) - After Effects
|
||||
* [Visual Effects Pack](https://t.me/visual_effects_pack) - After Effects
|
||||
|
|
|
@ -6,102 +6,94 @@
|
|||
|
||||
# ► Streaming Sites
|
||||
|
||||
* **Note** - Check our [site grading system](https://github.com/fmhy/FMHY/wiki/Stream-Site-Grading) to see scores for each site, and their respective pros & cons.
|
||||
* **Note** - Check our [site grading system](https://github.com/fmhy/FMHY/wiki/Stream-Site-Grading) to see scores for each site, as well as their respective pros & cons. Remember to always use throwaway emails when signing up for streaming sites.
|
||||
|
||||
***
|
||||
|
||||
* 🌟 **[Cineby](https://www.cineby.app/)** or [Bitcine](https://www.bitcine.app/) - Movies / TV / Anime / 4K / Auto-Next / [Discord](https://discord.gg/C2zGTdUbHE) (unofficial)
|
||||
* 🌟 **[XPrime](https://xprime.tv/)** - Movies / TV / Anime / 4K / Auto-Next / [Discord](https://discord.gg/ZKcN9KNdn6)
|
||||
* 🌟 **[movie-web instances](https://erynith.github.io/movie-web-instances/)**, [2](https://github.com/erynith/movie-web-instances/blob/main/page.md) - Movies / TV / Anime / Auto-Next / [Setup Guide + 4K](https://vimeo.com/1059834885/c3ab398d42) / [Note](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#movie-web-extension) / [Docs](https://docs.undi.rest/) / [GitHub](https://github.com/erynith/movie-web-instances)
|
||||
* 🌟 **[Freek](https://freek.to/)**, [2](https://freeky.to/) - Movies / TV / Anime / Auto-Next / [Discord](https://discord.com/invite/q8Y9FmYFPR)
|
||||
* 🌟 **[HydraHD](https://hydrahd.me/)** - Movies / TV / Anime / Auto-Next / [Telegram](https://t.me/+BUrW9XlfiW1lNDQ0)
|
||||
* 🌟 **[movie-web](https://erynith.github.io/movie-web-instances/)**, [2](https://github.com/erynith/movie-web-instances/blob/main/page.md) - Movies / TV / Anime / Auto-Next / [Setup / 4K](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#movie-web) / [GitHub](https://github.com/erynith/movie-web-instances)
|
||||
* 🌟 **[XPrime](https://xprime.tv/)** - Movies / TV / Anime / Auto-Next / [Discord](https://discord.gg/ZKcN9KNdn6)
|
||||
* 🌟 **[Hexa](https://hexa.watch/)** - Movies / TV / Anime / Auto-Next / [Discord](https://discord.com/invite/yvwWjqvzjE)
|
||||
* 🌟 **[Rive](https://rivestream.org/)**, [2](https://rivestream.xyz/), [3](https://cinemaos-v2.vercel.app/) - Movies / TV / Anime / Auto-Next / [Status](https://rentry.co/rivestream) / [Discord](https://discord.gg/6xJmJja8fV)
|
||||
* 🌟 **[456movie](https://456movie.com/)**, [2](https://www.345movies.com/), [3](https://345movie.net/), [4](https://456movie.net/) - Movies / TV / Anime / Auto-Next / [Discord](https://discord.gg/456movies)
|
||||
* 🌟 **[Nunflix](https://nunflix.org/)**, [2](https://nunflix-firebase.web.app/), [3](https://nunflix-ey9.pages.dev/), [4](https://nunflix-firebase.firebaseapp.com/) - Movies / TV / Anime / Auto-Next / [Docs](https://nunflix-doc.pages.dev/) / [Discord](https://discord.gg/CXVyfhgn26)
|
||||
* ⭐ **[Broflix](https://broflix.ci/)** - Movies / TV / Anime / Auto-Next
|
||||
* ⭐ **[PopcornMovies](https://popcornmovies.to/)** - Movies / TV / Anime / Auto-Next / [Discord](https://discord.com/invite/JAxTMkmcpd)
|
||||
* ⭐ **[RgShows](https://www.rgshows.me/)** or [1Shows](https://www.1shows.com/) - Movies / TV / Anime / [Auto Next Note](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#rgshows-autoplay) / [Guide](https://www.rgshows.me/guide.html) / [Discord](https://discord.com/invite/K4RFYFspG4)
|
||||
* ⭐ **[AlienFlix](https://alienflix.net/)** - Movies / TV / Anime / Auto-Next
|
||||
* ⭐ **[Hexa](https://hexa.watch/)** - Movies / TV / Anime / Auto-Next / [Discord](https://discord.com/invite/yvwWjqvzjE)
|
||||
* ⭐ **[Watch2Day](https://watch2day.site/)** - Movies / TV / Anime / Auto-Next / [Telegram](https://t.me/watch2dayonline)
|
||||
* ⭐ **[uira.live](https://uira.live/)** - Movies / TV / Anime / Auto-Next / [Discord](https://discord.com/invite/5ACWhK4Dzf)
|
||||
* ⭐ **[Bingeflex](https://bingeflex.vercel.app/)**- Movies / TV / Auto-Next / [Discord](https://discord.gg/ajRY6Bn3rr)
|
||||
* ⭐ **[Vidbox](https://vidbox.to/)** - Movies / TV / Anime / Auto-Next / [Discord](https://discord.gg/VGQKGPM9Ej)
|
||||
* ⭐ **[Cineby](https://www.cineby.app/)** or [Bitcine](https://www.bitcine.app/) - Movies / TV / Anime / Auto-Next / [Discord](https://discord.gg/C2zGTdUbHE) (unofficial)
|
||||
* ⭐ **[Nunflix](https://nunflix.org/)**, [2](https://nunflix-firebase.web.app/), [3](https://nunflix-ey9.pages.dev/), [4](https://nunflix-firebase.firebaseapp.com/) - Movies / TV / Anime / Auto-Next / [Docs](https://nunflix-doc.pages.dev/) / [Discord](https://discord.gg/CXVyfhgn26)
|
||||
* ⭐ **[1Shows](https://www.1shows.live/)** or [RgShows](https://www.rgshows.me/) - Movies / TV / Anime / [Auto Next Note](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#rgshows-autoplay) / [Guide](https://www.rgshows.me/guide.html) / [Discord](https://discord.com/invite/K4RFYFspG4)
|
||||
* ⭐ **[PopcornMovies](https://popcornmovies.to/)** - Movies / TV / Anime / Auto-Next / [Discord](https://discord.com/invite/JAxTMkmcpd)
|
||||
* ⭐ **[FlickyStream](https://flickystream.com/)** - Movies / TV / Anime / Auto-Next / [Telegram](https://t.me/FlickyStream)
|
||||
* ⭐ **[Freek](https://freek.to/)**, [2](https://freeky.to/) - Movies / TV / Anime / Auto-Next / [Discord](https://discord.com/invite/q8Y9FmYFPR)
|
||||
* ⭐ **[7Xtream](https://movies.7xtream.com/)**, [2](https://cinema.7xtream.com/) - Movies / TV / Anime / [Auto Next Note](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#7xtream-autoplay) / [Discord](https://discord.gg/TXqWTKeAAu)
|
||||
* ⭐ **[FlickyStream](https://flickystream.com/)** - Movies / TV / Anime / [Telegram](https://t.me/FlickyStream)
|
||||
* [Ronny Flix](https://ronnyflix.xyz/) or [RonnyStream](https://ronnystream.ronnyflix.xyz/) - Movies / TV / Anime / [Telegram](https://t.me/ronnyflix) / [Discord](https://discord.gg/ygsNU4Ac)
|
||||
* [Vidbox](https://vidbox.to/) - Movies / TV / Anime / [Discord](https://discord.gg/VGQKGPM9Ej)
|
||||
* [StreamFlix](https://watch.streamflix.one/) - Movies / TV / Anime / [4K Guide](https://youtu.be/cj5gRXBnWDA), [2](https://i.ibb.co/PDnw1nh/image.png) / [Discord](https://discord.gg/streamflix)
|
||||
* [Arabflix](https://www.arabiflix.com/) - Movies / TV / Anime / [Discord](https://discord.gg/AMQdQehThg)
|
||||
* [Flicker](https://flickermini.netlify.app/), [2](https://flickermini.pages.dev/), [3](https://flickeraddon.pages.dev/) - Movies / TV / Anime / [Subreddit](https://www.reddit.com/r/flickermini/)
|
||||
* [Nova](https://novastream.top/) - Movies / TV / [Discord](https://discord.gg/s9kUZw7CqP) / [GitHub](https://github.com/ambr0sial/nova/)
|
||||
* [Noxe](https://noxe.live/) - Movies / TV / Anime / Auto-Next
|
||||
* [ZILLAXR](https://zilla-xr.xyz/) - Movies / TV / [Telegram](https://t.me/+MQUUqEx2WXA0ZmZk)
|
||||
* [AbleFlix](https://ableflix.xyz/), [2](https://ableflix.cc/) - Movies / TV / Anime / [Discord](https://discord.gg/tDKYeh9eQn)
|
||||
* [Mokmobi](https://mokmobi.ovh/), [2](https://mokmobi.site/) - Movies / TV / Anime
|
||||
* ⭐ **[SpenFlix](https://watch.spencerdevs.xyz/)** - Movies / TV / [Discord](https://discord.gg/RF8vMBRtTs)
|
||||
* ⭐ **[Bingeflex](https://bingeflex.vercel.app/)** - Movies / TV / Auto-Next / [Discord](https://discord.gg/ajRY6Bn3rr)
|
||||
* ⭐ **[HydraHD](https://hydrahd.ac/)** - Movies / TV / Anime / Auto-Next / [Status](https://hydrahd.info/)
|
||||
* ⭐ **[456movie](https://456movie.net/)**, [3](https://345movie.net/), [4](https://456movie.net/) - Movies / TV / Anime / Auto-Next / [Discord](https://discord.gg/456movies)
|
||||
* ⭐ **[AlienFlix](https://alienflix.net/)** - Movies / TV / Anime / Auto-Next
|
||||
* ⭐ **[Ronny Flix](https://ronnyflix.xyz/)** - Movies / TV / Anime / Auto-Next / [Telegram](https://t.me/ronnyflix) / [Discord](https://discord.gg/ygsNU4Ac)
|
||||
* [Broflix](https://broflix.ci/) - Movies / TV / Anime / Auto-Next
|
||||
* [Mapple.tv](https://mapple.tv/) - Movies / TV / Anime / Auto-Next / [Discord](https://discord.gg/V8XUhQb2MZ)
|
||||
* [NetPlay](https://netplayz.ru/) - Movies / TV / Anime / Auto-Next / [Discord](https://discord.gg/NCH4rzxJ36)
|
||||
* [Arabflix](https://www.arabiflix.com/) - Movies / TV / Anime / [Discord](https://discord.gg/AMQdQehThg)
|
||||
* [Cinemull](https://cinemull.space/) - Movies / TV / Anime / Auto-Next / [Telegram](https://t.me/watch2dayonline)
|
||||
* [catflix](https://catflix.su/) - Movies / TV
|
||||
* [StreamFlix](https://watch.streamflix.one/) - Movies / TV / Anime / [4K Guide](https://youtu.be/cj5gRXBnWDA), [2](https://i.ibb.co/PDnw1nh/image.png) / [Discord](https://discord.gg/streamflix)
|
||||
* [Flicker](https://flickermini.netlify.app/), [2](https://flickermini.pages.dev/), [3](https://flickeraddon.pages.dev/) - Movies / TV / Anime / [Subreddit](https://www.reddit.com/r/flickermini/)
|
||||
* [Lekuluent](https://lekuluent.et/) - Movies / TV / Anime
|
||||
* [StigStream](https://stigstream.com/), [2](https://stigstream.xyz), [3](https://stigstream.co.uk) - Movies / TV / Anime / [Discord](https://discord.gg/xxefFT8uEY)
|
||||
* [Soaper.TV](https://soaper.top/), [2](https://soaper.vip/), [3](https://soaper.cc/), [4](https://soaper.live/) - Movies / TV / Anime / Auto-Next / [Mirrors](https://www.soaperpage.com/)
|
||||
* [ValhallaStream](https://valhallastream.com/), [2](https://valhallastream.pages.dev/) - Movies / TV / Anime
|
||||
* [EE3](https://ee3.me/), [2](https://rips.cc/) - Movies / Invite Code: fmhy / Sign-Up Required
|
||||
* [AbleFlix](https://ableflix.xyz/), [2](https://ableflix.cc/) - Movies / TV / Anime / [Discord](https://discord.gg/tDKYeh9eQn)
|
||||
* [Vidjoy](https://vidjoy.pro/) - Movies / TV / Anime / [Telegram](https://t.me/vidjoy) / [Discord](https://discord.gg/4cq9vkerA3)
|
||||
* [Nova](https://novastream.top/) - Movies / TV / [Discord](https://discord.gg/s9kUZw7CqP) / [GitHub](https://github.com/ambr0sial/nova/)
|
||||
* [Smashystream](https://smashystream.xyz/), [2](https://flix.smashystream.xyz/), [3](https://smashystream.com/) or [Smashy](https://smashy.stream/) - Movies / TV / Anime / [Telegram](https://telegram.me/+vekZX4KtMPtiYmRl) / [Discord](https://discord.com/invite/tcdcxrbDkE)
|
||||
* [Noxe](https://noxe.live/) - Movies / TV / Anime / Auto-Next
|
||||
* [Nkiri](https://nkiri.cc/), [2](https://soapertv.cc/), [3](https://popcorntimeonline.cc/), [4](https://streammovies.to/) - Movies / TV
|
||||
* [LookMovie](https://lookmovie2.to/) - Movies / TV / Auto-Next / 480p / [Clones](https://proxymirrorlookmovie.github.io/)
|
||||
* [Autoembed](https://watch.autoembed.cc/) - Movies / TV / Anime / Drama / [Discord](https://discord.gg/BWDSXV9aX4)
|
||||
* [Cinema Deck](https://cinemadeck.com/), [2](https://cinemadeck.st/) - Movies / TV / Anime / [Discord](https://l.cinemadeck.com/discord)
|
||||
* [ViewVault](https://viewvault.org/) - Movies / TV / Anime
|
||||
* [CorsFlix](https://corsflix.net/) - Movies / TV / Anime
|
||||
* [Mapple.tv](https://mapple.tv/) - Movies / TV / Anime / [Discord](https://discord.gg/V8XUhQb2MZ)
|
||||
* [MyFlixed](https://www.myflixed.fun/) - Movies / TV / Anime
|
||||
* [Let's Stream](https://www.letstream.site/) - Movies / TV / Anime
|
||||
* [Smashystream](https://smashystream.xyz/), [2](https://flix.smashystream.xyz/), [3](https://smashystream.com/) or [Smashy](https://smashy.stream/) - Movies / TV / Anime / [Telegram](https://telegram.me/+vekZX4KtMPtiYmRl) / [Discord](https://discord.com/invite/tcdcxrbDkE)
|
||||
* [Soaper.TV](https://soaper.top/), [2](https://soaper.vip/), [3](https://soaper.cc/), [4](https://soaper.live/) - Movies / TV / Anime / Auto-Next / [Mirrors](https://www.soaperpage.com/)
|
||||
* [PressPlay](https://www.pressplay.top/), [2](https://pressplay.cam/) - Movies / TV / [Discord](https://discord.gg/r4QrghF4B9)
|
||||
* [Nkiri](https://nkiri.cc/), [2](https://soapertv.cc/), [3](https://popcorntimeonline.cc/), [4](https://streammovies.to/) - Movies / TV
|
||||
* [watch.inzi](https://watch.inzi.dev/) - Movies / TV / Anime
|
||||
* [zmov](https://zmov.vercel.app/), [2](https://watch.coen.ovh/), [3](https://plexmovies.online/) - Movies / TV / Anime / [GitHub](https://github.com/coen-h/zmov)
|
||||
* [Qstream](https://qstream.pages.dev/) - Movies / TV / Anime
|
||||
* [KaitoVault](https://www.kaitovault.com/) - Movies / TV / Anime
|
||||
* [catflix](https://catflix.su/) - Movies / TV
|
||||
* [ValhallaStream](https://valhallastream.com/), [2](https://valhallastream.pages.dev/) - Movies / TV / Anime
|
||||
* [Vidjoy](https://vidjoy.pro/) - Movies / TV / Anime / [Telegram](https://t.me/vidjoy) / [Discord](https://discord.gg/4cq9vkerA3)
|
||||
* [NEPU](https://nepu.to/) - Movies / TV / Anime / 4K / Auto-Next / **Use Adblock** / [Discord](https://discord.gg/nepu)
|
||||
* [Novafork](https://novafork.cc/) - Movies / TV / [Discord](https://discord.gg/XbDBBmh5FY) / [GitHub](https://github.com/noname25495/novafork)
|
||||
* [Mokmobi](https://mokmobi.ovh/), [2](https://mokmobi.site/) - Movies / TV / Anime
|
||||
* [NET3LIX](https://net3lix.world/) - Movies / TV / Anime / [Discord](https://discord.gg/bstJfQT3AZ)
|
||||
* [uFlix](https://uflix.cc/), [2](https://uflix.to/) - Movies / TV / Anime
|
||||
* [FilmeX](https://filmex.to/) - Movies / TV / Anime / [Discord](https://discord.gg/6r5KTZgqXV)
|
||||
* [FlixWatch](https://flixwatch.site/) - Movies / TV / Anime / [Discord](https://discord.com/invite/5MJhpjzv)
|
||||
* [ViewVault](https://viewvault.org/) - Movies / TV / Anime
|
||||
* [KaitoVault](https://www.kaitovault.com/) - Movies / TV / Anime
|
||||
* [Willow](https://willow.arlen.icu/), [2](https://salix.pages.dev/) - Movies / TV / Anime / 720p
|
||||
* [NEPU](https://nepu.to/) - Movies / TV / Anime / Auto-Next / [Discord](https://discord.gg/nepu)
|
||||
* [Novafork](https://novafork.cc/) - Movies / TV / [Discord](https://discord.gg/XbDBBmh5FY) / [GitHub](https://github.com/noname25495/novafork)
|
||||
* [FshareTV](https://fsharetv.co/) - Movies
|
||||
* [Mp4Hydra](https://mp4hydra.org/), [2](https://mp4hydra.top/) - Movies / [Mirrors](https://mp4hydra.org/about#domains)
|
||||
* [PressPlay](https://www.pressplay.top/), [2](https://pressplay.cam/) - Movies / TV / [Discord](https://discord.gg/r4QrghF4B9)
|
||||
* [CorsFlix](https://corsflix.net/) - Movies / TV / Anime
|
||||
* [YoYoMovies](https://yoyomovies.net/), [2](https://fmovies-hd.to/) - Movies / TV / Anime
|
||||
* [SlideMovies](https://slidemovies.org/) - Movies / TV / Anime / [Discord](https://discord.gg/mh2Bte8Kfj)
|
||||
* [EE3](https://ee3.me/), [2](https://rips.cc/) - Movies / Invite Code: fmhy / Sign-Up Required
|
||||
* [SoaPy](https://soapy.to/) - Movies / TV / Anime
|
||||
* [RidoMovies](https://ridomovies.tv/) - Movies / TV
|
||||
* [ShowBox](https://www.showbox.media/) - Movies / TV / Anime / Use Throwaway Gmail / [4K Guide](https://rentry.co/febbox), [2](https://pastebin.com/raw/jtwMfCcq)
|
||||
* [Heartive](https://heartive.pages.dev/) - Movies / TV / Anime
|
||||
* [zmov](https://zmov.vercel.app/), [2](https://watch.coen.ovh/), [3](https://plexmovies.online/) - Movies / TV / Anime / [GitHub](https://github.com/coen-h/zmov)
|
||||
* [M4uFree](https://m4ufree.se/) - Movies / TV / Anime / [Clones](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_m4ufree_clones)
|
||||
* [Wovie](https://wovie.vercel.app/) - Movies / TV / Anime / [GitHub](https://github.com/iswilljr/wovie)
|
||||
* [EnjoyTown](https://enjoytown.pro/) - Movies / TV / Anime / [GitHub](https://github.com/avalynndev/enjoytown)
|
||||
* [Cinebook](https://www.cinebook.xyz/) - Movies / TV / Anime / [Discord](https://discord.com/invite/dDKP5Hk7Bp)
|
||||
* [Qstream](https://qstream.pages.dev/) - Movies / TV / Anime
|
||||
* [Hopcorn+](https://c.hopmarks.com/), [2](https://p.hopmarks.com/) - Movies / TV / Anime
|
||||
* [Wovie](https://watchstream.site/), [2](https://wovie.vercel.app/) - Movies / TV / Anime / [GitHub](https://github.com/iswilljr/wovie)
|
||||
* [PrimeWire](https://www.primewire.tf/) - Movies / TV / Anime
|
||||
* [BrocoFlix](https://brocoflix.com/) - Movies / TV / Anime
|
||||
* [Heartive](https://heartive.pages.dev/) - Movies / TV / Anime
|
||||
* [SFlix](https://sflix.to/) - Movies / TV / [Clones](https://rentry.co/sflix) / Use Adblocker
|
||||
* [RidoMovies](https://ridomovies.tv/) - Movies / TV
|
||||
* [EnjoyTown](https://enjoytown.pro/) - Movies / TV / Anime / [GitHub](https://github.com/avalynndev/enjoytown)
|
||||
* [SFlix](https://sflix2.to/) - Movies / TV / [Clones](https://rentry.co/sflix)
|
||||
* [Levidia](https://www.levidia.ch/), [2](https://supernova.to/), [3](https://ww1.goojara.to/) - Movies / TV / Anime
|
||||
* [FlixWatch](https://flixwatch.site/) - Movies / TV / Anime / [Discord](https://discord.com/invite/5MJhpjzv)
|
||||
* [YassFlix](https://yassflix.net/) - Movies / TV / Anime
|
||||
* [VidPlay](https://vidplay.tv/) - Movies / TV / Anime / [Note](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#vidplay-note)
|
||||
* [Way2Movies](https://way2movies.fun/), [2](https://way2movies.vercel.app/) - Movies / TV / Anime / [Subreddit](https://www.reddit.com/r/way2movies/) / [Telegram](https://t.me/Way2MoviesFun) / [Discord](https://discord.gg/mH4zsaAmv7)
|
||||
* [SoaPy](https://soapy.to/) - Movies / TV / Anime
|
||||
* [Mp4Hydra](https://mp4hydra.org/), [2](https://mp4hydra.top/) - Movies / [Mirrors](https://mp4hydra.org/about#domains)
|
||||
* [ShowBox](https://www.showbox.media/) - Movies / TV / Anime / 4K / Use Throwaway Gmail / [Guide](https://rentry.co/febbox), [2](https://pastebin.com/raw/jtwMfCcq)
|
||||
* [LookMovie](https://lookmovie2.to/) - Movies / TV / 480p / Auto-Next / [Clones](https://proxymirrorlookmovie.github.io/)
|
||||
* [UniqueStream](https://uniquestream.net/) - Movies / TV / Anime / 720p
|
||||
* [YesMovie](https://yesmovies.ag/), [2](https://solarmovieru.com/home.html) - Movies / TV / 720p
|
||||
* [FireFlix](https://fireflixhd1.netlify.app/) - Movies / TV / Anime / [Discord](https://discord.gg/aMEGepsr5A)
|
||||
* [FshareTV](https://fsharetv.co/) - Movies
|
||||
* [SpenFlix](https://watch.spencerdevs.xyz/) - Movies / TV / [Discord](https://discord.gg/RF8vMBRtTs)
|
||||
* [ReelZone](https://reelzone.vercel.app/) - Movies / TV / Anime / [Discord](https://discord.gg/zArgTukX3Z)
|
||||
* [PrimeFlix](https://primeflix-web.vercel.app/), [2](https://www.primeflix.lol/), [3](https://primeflix-web.me/) - Movies / TV / Anime / [Discord](https://discord.gg/GbW6gzAKgc)
|
||||
* [TVids](https://www.tvids.net/), [2](https://watch-tvseries.net/) - Movies / TV / Anime
|
||||
* [Levidia](https://www.levidia.ch/), [2](https://supernova.to/), [3](https://ww1.goojara.to/) - Movies / TV / Anime
|
||||
* [HollyMovieHD](https://hollymoviehd.cc/), [2](https://yeshd.net/), [3](https://novamovie.net/) - Movies / TV / Anime / [Clones](https://hollymoviehd-official.com/)
|
||||
* [Cataz](https://cataz.ru/), [2](https://projectfreetv.sx/) - Movies / TV / Anime
|
||||
* [BitSearch](https://bitsearch.to/), [2](https://solidtorrents.to) - Movies / TV / Anime
|
||||
* [NetMirror](https://netfree.cc/home) - Movies / TV / 720p
|
||||
* [AZMovies](https://azmovies.ag/) - Movies
|
||||
* [TVids](https://www.tvids.net/), [2](https://watch-tvseries.net/) - Movies / TV / Anime
|
||||
* [HollyMovieHD](https://hollymoviehd.cc/), [2](https://yeshd.net/), [3](https://novamovie.net/) - Movies / TV / Anime / [Clones](https://hollymoviehd-official.com/)
|
||||
* [FireFlix](https://fireflix.fun/) - Movies / TV / Anime / [Discord](https://discord.gg/aMEGepsr5A)
|
||||
* [Cataz](https://cataz.ru/), [2](https://projectfreetv.sx/) - Movies / TV / Anime
|
||||
* [NetMirror](https://netfree.cc/home) - Movies / TV / 720p
|
||||
* [Zoechip](https://zoechip.org/) - Movies / TV
|
||||
* [downloads-anymovies](https://www.downloads-anymovies.co/) - Movies
|
||||
* [SkyMovies](https://skymovieshd.li/) - Movies / TV / Anime / Some NSFW
|
||||
* [Flixy](https://4k.flixy.watch/) - 4K Movies Only / [Discord](https://discord.gg/fF7TwrjR6T) / [GitHub](https://github.com/hexatv/Flixy-4K)
|
||||
* [Gir Society](https://discord.gg/WHxeZ3aTtb) - Movies / TV / Anime / Plex Required
|
||||
* [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
|
||||
* [VidSrc](https://rentry.org/vidsrc) - VidSrc Hosting Sites
|
||||
|
@ -111,24 +103,26 @@
|
|||
## ▷ Free w/ Ads
|
||||
|
||||
* ↪️ **[YouTube Movie Hosts](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_youtube_movies)**
|
||||
* ⭐ **[Tubi](https://tubitv.com)** - Movies / TV / 720p / [Downloader](https://github.com/warren-bank/node-hls-downloader-tubitv)
|
||||
* ⭐ **[Tubi](https://tubitv.com)** - Movies / TV / 720p / [Downloader](https://github.com/warren-bank/node-hls-downloader-tubitv) / [Countries](https://corporate.tubitv.com/)
|
||||
* ⭐ **[Plex](https://watch.plex.tv/)** - Movies / TV / 720p
|
||||
* ⭐ **[Pluto](https://pluto.tv/)** - Movies / TV / 720p
|
||||
* [Crackle](https://www.crackle.com/) - Movies / TV / US Only
|
||||
* [Freevee](https://www.amazon.com/gp/video/storefront/?ie=UTF8&contentId=freetv) - Movies / TV / US Only
|
||||
* [Roku](https://therokuchannel.roku.com/) - Movies / TV / US Only
|
||||
* [DarkRoom](https://www.darkroom.film/) - Movies / TV / US Only / Requires Signup
|
||||
* [DarkRoom](https://www.darkroom.film/) - Movies / TV / US Only / Requires Sign-Up
|
||||
* [Vudu](https://www.vudu.com/content/movies/uxpage/View-All-Free-Movies-TV/207) - Movies / TV / US Only
|
||||
* [Fandango](https://athome.fandango.com/content/browse/free) - Movies / TV / US Only
|
||||
* [Shout! TV](https://shout-tv.com/) - Movies / TV / US + CA Only / Auto-Next
|
||||
* [Kanopy](https://kanopy.com/) or [hoopla](https://www.hoopladigital.com/) - Movies / TV / US Only / Library Card Required
|
||||
* [Found TV](https://watch.foundtv.com/) - Found Footage Movies / Requires Signup
|
||||
* [Found TV](https://watch.foundtv.com/) - Found Footage Movies / Requires Sign-Up
|
||||
* [7+](https://7plus.com.au/) - Movies / TV / US + AU Only
|
||||
* [Playary](https://www.playary.com/) - Movies / TV
|
||||
* [Filmzie](https://filmzie.com/) - Movies / TV
|
||||
* [Fawesome](https://fawesome.tv/) - Movies / TV
|
||||
* [ARTE](https://www.arte.tv/en) - Movies / TV / Auto-Next
|
||||
* [BBC iPlayer](https://www.bbc.co.uk/iplayer) - Movies / TV / [Downloader](https://github.com/get-iplayer/get_iplayer) / UK VPN Required / Windscribe has UK free
|
||||
* [MovieXFilm](https://moviexfilm.com/) - Movies / 720p
|
||||
* [FlixHouse](https://flixhouse.com/) - Indie Movies
|
||||
|
||||
***
|
||||
|
||||
|
@ -145,14 +139,14 @@
|
|||
* ⭐ **[AnimeZ](https://animez.org/)** - Sub / Dub
|
||||
* ⭐ **[Anime Streaming CSE](https://cse.google.com/cse?cx=006516753008110874046:vzcl7wcfhei)** or **[Kuroiru](https://kuroiru.co/)** - Multi-Site Anime Search
|
||||
* [Layendimator](https://github.com/Layendan/Layendanimator), [Anikin](https://github.com/jerry08/Anikin) / [Discord](https://discord.com/invite/U7XweVubJN), [Unyo](https://github.com/K3vinb5/Unyo), [Seanime](https://seanime.rahim.app/) / [Discord](https://discord.gg/3AuhRGqUqh) / [GitHub](https://github.com/5rahim/seanime), [Miru](https://miru.js.org/en/) / [Telegram](https://t.me/MiruChat) / [GitHub](https://github.com/miru-project/miru-app) or [Migu](https://miguapp.pages.dev/) / [GitHub](https://github.com/NoCrypt/migu) Desktop Streaming Apps
|
||||
* [Rivekun](https://rivekun.rivestream.org/) - Sub / Dub
|
||||
* [AnimeKai](https://animekai.to/home) - Sub / Dub
|
||||
* [Rivekun](https://rivekun.rivestream.org/) - Sub / Dub / [Discord](https://discord.com/invite/6xJmJja8fV)
|
||||
* [AnimeKai](https://animekai.to/home), [2](https://animekai.bz/) - Sub / Dub
|
||||
* [Anify](https://anify.to/) - Sub / Dub / [Discord](https://discord.com/invite/79GgUXYwey)
|
||||
* [123anime](https://123animes.ru/) - Sub / Dub / Auto-Next
|
||||
* [Vumeto](https://vumeto.com/) - Sub / Dub / Auto-Next / [Discord](https://discord.gg/se4NzzY5R7)
|
||||
* [Hikari](https://watch.hikaritv.xyz/), [2](https://watch.hikaritv.xyz/) - Sub / Dub / [Discord](https://discord.com/invite/UAPNesVmQ3)
|
||||
* [AnimeOwl](https://animeowl.me/) - Sub / Dub / Auto-Next / [Discord](https://discord.gg/rFHXVGZ)
|
||||
* [AnimeNoSub](https://animenosub.to/) - Sub / Dub [Discord](https://discord.gg/kyVfcGuCCQ)
|
||||
* [AnimeNoSub](https://animenosub.to/) - Sub / Dub / [Discord](https://discord.gg/kyVfcGuCCQ)
|
||||
* [Gojo](https://gojo.wtf/) - Sub / Dub / [Discord](https://discord.gg/azKUgz2rsE)
|
||||
* [Anime Realms](https://www.animerealms.org/) - Sub / Dub / Auto-Next / [Discord](https://discord.gg/FPM57Eugmj)
|
||||
* [AnimeHub](https://animehub.ac/) - Sub / Dub / Auto-Next
|
||||
|
@ -164,10 +158,10 @@
|
|||
* [AnimeXin](https://animexin.dev/) - Chinese Anime / Sub / [Discord](https://discord.com/invite/XrkPwBda)
|
||||
* [Lucifer Donghua](https://luciferdonghua.in/) - Chinese Anime / Sub / [Telegram](https://telegram.me/luciferdonghuaz)
|
||||
* [LMANIME](https://lmanime.com/) - Chinese Anime / Sub
|
||||
* [CKSub](https://cksub.org/) - Chinese Anime / Sub
|
||||
* [CKSub](https://cksub.org/) - Chinese Anime / Sub / [Telegram](https://t.me/CKSubORG)
|
||||
* [MyAnime](https://myanime.live/) - Chinese Anime / Sub
|
||||
* [AnimeKhor](https://animekhor.org/) - Chinese Anime / Sub / [Telegram](https://t.me/AnimeKhorOfficial)
|
||||
* [Crimson Subs](https://crimsonfansubs.com/) - Chinese Anime / Sub / Sub / [Discord](https://discord.gg/PmYn97vtue)
|
||||
* [Crimson Subs](https://crimsonfansubs.com/) - Chinese Anime / Sub / [Discord](https://discord.gg/PmYn97vtue)
|
||||
* [Crunchyroll](https://www.crunchyroll.com/videos/anime) - Sub / Dub / Auto-Next / [US Proxy](https://addons.mozilla.org/en-US/firefox/addon/crunchy-unblocker/) / [Intro Skip](https://github.com/aniskip/aniskip-extension)
|
||||
* [Miu](https://discord.gg/pwkuanXBJh) or [AnimeThemes](https://animethemes.moe/) / [Discord](https://discord.com/invite/m9zbVyQ) / [GitHub](https://github.com/AnimeThemes) - Anime Themes
|
||||
* [AnimeMusicVideos](https://www.animemusicvideos.org/) - Fan-Made Anime Music Videos
|
||||
|
@ -178,6 +172,7 @@
|
|||
|
||||
* ⭐ **[WCO](https://www.wco.tv/)**, [2](https://www.wcofun.net/), [3](https://www.wcostream.tv/)
|
||||
* [KimCartoon](https://kimcartoon.si/)
|
||||
* [HiCartoon](https://hicartoon.to/)
|
||||
* [KissCartoon](https://kisscartoon.nz/) / [Discord](https://discord.gg/YwpgPrWVSH)
|
||||
* [Watch Cartoon Online](https://www.watchcartoononline.com/)
|
||||
* [TopCartoons](https://www.topcartoons.tv/)
|
||||
|
@ -194,7 +189,6 @@
|
|||
* ⭐ **[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
|
||||
* ⭐ **[NOXX](https://noxx.to/)** - TV
|
||||
* [GDrivePlayer](https://databasegdriveplayer.co/series.php) - TV / Anime / 720p
|
||||
* [TVSeries](https://www.tvseries.in/) - TV / Anime / 720p
|
||||
* [AZ Series](https://azseries.org/) - TV
|
||||
* [Owen Davies](https://www.youtube.com/@ODavies/playlists) - 4K Shows
|
||||
|
@ -217,36 +211,23 @@
|
|||
|
||||
* 🌐 **[Chinese Drama Sites](https://www.reddit.com/r/CDrama/wiki/streaming)** - Chinese Drama Site Index
|
||||
* 🌐 **[EverythingMoe](https://everythingmoe.com/#section-drama)**, [2](https://everythingmoe.org/#section-drama) - Asian Drama Index / [Discord](https://discord.gg/GuueaDgKdS)
|
||||
* [KissAsian](https://kissasian.video/) - TV / Movies
|
||||
* [AsiaFlix](https://asiaflix.net/) - TV / Movies
|
||||
* ⭐ **[DramaGo](https://dramago.in/)** - TV / Movies
|
||||
* ⭐ **[DramaCool](https://dramacool.com.tr/)**, [2](https://dramacool.tools/) - TV / Movies
|
||||
* ⭐ **[ViewAsian](https://www.viewasian.org/)** - TV / Movies
|
||||
* [Einthusan](https://einthusan.tv/intro/) - Movies
|
||||
* [Google Drive KDrama](https://databasegdriveplayer.co/drama.php) - TV / Movies
|
||||
* [AsianCrush](https://www.asiancrush.com/) - TV / Movies
|
||||
* [DramaFire](https://dramafire.com.pl/) - TV / Movies
|
||||
* [KissKH](https://kisskh.co/) - TV
|
||||
* [DramaCool.bg](https://dramacool.bg/) - TV / Movies
|
||||
* [DramaCool.com](https://dramacool.com.tr/), [2](https://dramacool.tools/) - TV / Movies
|
||||
* [dramacool](https://dramacool.com.cv/) - TV / Movies
|
||||
* [DramaGo](https://dramago.in/) - TV / Movies
|
||||
* [onedrama](https://onedrama.me/) - TV / Movies
|
||||
* [DramaFull](https://dramafull.net/) - TV / Movies / Auto-Next
|
||||
* [RiveStream](https://rivestream.org/kdrama) - TV / Movies
|
||||
* [Viki](https://www.viki.com/) - TV / Movies / Auto-Next
|
||||
* [KDramaHood](https://kdramahood.com/home2/) - TV / Movies
|
||||
* [KDramaCool](https://kdramacool.site/) - TV / Movies
|
||||
* [AsianC](https://asianc.org.es/) - TV / Movies
|
||||
* [Dramacool.org](https://dramacooll.com.de/) - TV / Movies
|
||||
* [KissAsianTV](https://kissasiantv.blog/) - TV / Movies
|
||||
* [KissTVShow](https://kisstvshow.pro/) - TV
|
||||
* [KissKH](https://kisskh.co/) - TV / Movies
|
||||
* [DramaHood](https://dramahood.top/), [2](https://kshow123.mom/) - TV / Movies
|
||||
* [FastDrama](https://fastdramacool.cam/) - TV / Movies
|
||||
* [KissKH.org](https://kisskh.org.es/) - TV
|
||||
* [OFWShow](https://dulichsaigon.site/list/engsub/) - TV / Movies
|
||||
* [ViewAsian](https://www.viewasian.org/) - TV / Movies
|
||||
* [iFlix](https://www.iflix.com/) - TV / Movies / Auto-Next
|
||||
* [WeTV](https://wetv.vip/) - TV / Movies / Auto-Next
|
||||
* [Viu](https://www.viu.com/) - TV / Movies
|
||||
* [IQ](https://www.iq.com/) - TV / Movies / Auto-Next
|
||||
* [KissKH.org](https://kisskh.run/), [2](https://kisskh.net.pl/) - TV
|
||||
* [KDramaHood](https://kdramahood.com/home2/) - TV / Movies
|
||||
* [RiveStream](https://rivestream.org/kdrama) - TV / Movies
|
||||
* [DramaFire](https://dramafire.com.pl/) - TV / Movies
|
||||
* [AsianCrush](https://www.asiancrush.com/) - TV / Movies
|
||||
* [KissAsian](https://kissasian.video/) - TV / Movies
|
||||
* [KissAsianTV](https://kissasiantv.blog/) - TV / Movies
|
||||
* [AsiaFlix](https://asiaflix.net/) - TV / Movies
|
||||
* [Dramacool.org](https://dramacooll.com.de/) - TV / Movies
|
||||
* [DramaCool.bg](https://dramacool.bg/) - TV / Movies
|
||||
* [dramacool](https://dramacool.com.cv/), [2](https://asianc.org.es/) - TV / Movies
|
||||
* [OnDemandChina](https://www.ondemandchina.com/) - TV / Movies
|
||||
|
||||
***
|
||||
|
@ -260,7 +241,7 @@
|
|||
* ⭐ **[GizmoPlex](https://www.gizmoplex.com/mst3k)** - MST3K Movies
|
||||
* ⭐ **[RiffTrax Twitch](https://www.twitch.tv/rifftrax)** or [RiffTrax Pluto](https://pluto.tv/live-tv/rifftrax) - RiffTrax Live Streams
|
||||
* ⭐ **[Ubu](https://ubu.com/film/)** - Short Films / Avant-Garde
|
||||
* [Classic Cinema Online](https://classiccinemaonline.com/), [ClassixApp](https://www.classixapp.com/), [BnWMovies](https://bnwmovies.com/), [The Classic Movies](https://www.the-classic-movies.com/), [WikiFlix](https://wikiflix.toolforge.org/), [FilmsByTheYear](https://www.youtube.com/@FilmsbytheYear/playlists), [RetroFlix](https://retroflix.org/) or [Dumb Classic Movies](https://www.dumb.com/movies/) - Classic Films
|
||||
* [Classic Cinema Online](https://classiccinemaonline.com/), [ClassixApp](https://www.classixapp.com/), [BnWMovies](https://bnwmovies.com/), [The Classic Movies](https://www.the-classic-movies.com/), [WikiFlix](https://wikiflix.toolforge.org/), [FilmsByTheYear](https://www.youtube.com/@FilmsbytheYear/playlists) or [RetroFlix](https://retroflix.org/) - Classic Films
|
||||
* [RetroStrange](https://live.retrostrange.com/) - Live Retro Streams
|
||||
* [Silent Hall of Fame](https://silent-hall-of-fame.org/) - Silent Films
|
||||
* [Wu Tang Collection](https://www.thewutangcollection.com/) - Martial Arts Films
|
||||
|
@ -272,7 +253,7 @@
|
|||
* [USNationalArchives](https://www.youtube.com/@USNationalArchives) - Movies / Short Films
|
||||
* [Viddsee](https://www.viddsee.com/), [Shortverse](https://www.shortverse.com/explore), [MAFF](https://www.maff.tv/), [Short of the Week](https://www.shortoftheweek.com/), [Argo](https://web.watchargo.com/), [Shortly](https://watch.shortly.film/) or [Audpop](https://audpop.com/) - Short Films
|
||||
* [HuntleyArchives](https://www.huntleyarchives.com/) - Rare / Forgotten Short Films
|
||||
* [0xDB](https://0xdb.org/) - Rare Movies / [How-To](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/find-rare-movies#wiki_method_2_-_streaming)
|
||||
* [0xDB](https://0xdb.org/) - Rare Movies / Use Video Sources
|
||||
* [FootageFarm](https://footagefarm.com/) - Public Domain Films
|
||||
* [Cinetimes](https://cinetimes.org/en/) - Public Domain Films
|
||||
* [The Travel Film Archive](https://travelfilmarchive.com/) - Public Domain Stock Footage
|
||||
|
@ -333,7 +314,7 @@
|
|||
* ⭐ **[YouTube](https://www.youtube.com/)** / [Advanced Search](https://playlists.at/youtube/search/) / [Download Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/social-media#wiki_.25B7_youtube_downloaders)
|
||||
* ⭐ **[Archive](https://archive.org/)** - Movies & TV Categories
|
||||
* ⭐ **[Dailymotion](https://www.dailymotion.com/us)**
|
||||
* ⭐ **[BiliBili](https://www.bilibili.com/)** / [.tv](https://www.bilibili.tv/) / [Multi-Platform Client](https://xfangfang.github.io/wiliwili/) / [Signup Block](https://greasyfork.org/en/scripts/467474)
|
||||
* ⭐ **[BiliBili](https://www.bilibili.com/)** / [.tv](https://www.bilibili.tv/) / [Multi-Platform Client](https://xfangfang.github.io/wiliwili/) / [Sign-Up Block](https://greasyfork.org/en/scripts/467474)
|
||||
* ⭐ **[Niconico](https://www.nicovideo.jp/)**
|
||||
* ⭐ **[Video Search CSE](https://cse.google.com/cse?cx=006516753008110874046:6v9mqdaai6q#gsc.tab=0)** or [Moviez.space](https://moviez.space/) - Multi-Site Video Search
|
||||
* [MotionBox](https://omega.gg/MotionBox/) - Online Video Aggregation App
|
||||
|
@ -361,7 +342,6 @@
|
|||
## ▷ Live TV
|
||||
|
||||
* ⭐ **[TheTVApp](https://thetvapp.to/)**, [2](https://tvpass.org/) - TV / Sports / US Only
|
||||
* ⭐ **[TOTV](http://totv.org/channels)** - TV / Sports
|
||||
* ⭐ **[tv.garden](https://tv.garden/)** - TV / Sports
|
||||
* ⭐ **[DaddyLive](https://thedaddy.to/)** or [miztv](https://miztv.shop/) - TV / Sport / [Telegram](https://t.me/dlhdlive)
|
||||
* ⭐ **[EasyWebTV](https://zhangboheng.github.io/Easy-Web-TV-M3u8/routes/countries.html)** or [IPTV Web](https://iptv-web.app/) - TV / Sports
|
||||
|
@ -370,7 +350,7 @@
|
|||
* [Pluto](https://pluto.tv/live-tv), [2](https://app-lgwebos.pluto.tv/live-tv) - TV / Sports / US Only
|
||||
* [time4tv.top](https://time4tv.top/) - TV / Sports
|
||||
* [LiveHDTV](https://www.livehdtv.com/) - TV
|
||||
* [IPTV Play](https://iptvplay.stream/en/live-tv) - TV / Sports
|
||||
* [IPTV Play](https://iptvplay.stream/live-tv) - TV / Sports
|
||||
* [CXtv](https://www.cxtvlive.com/) - TV / Sports
|
||||
* [uira.live](https://uira.live/livetv) - TV / Sports / [Discord](https://discord.com/invite/5ACWhK4Dzf)
|
||||
* [lmao.love](https://lmao.love/channels/) - TV / Sports
|
||||
|
@ -394,6 +374,7 @@
|
|||
* [VaughnLive](https://vaughn.live/browse/misc) - Random Streams
|
||||
* [Baked](https://baked.live/) - Random Streams
|
||||
* [Channel 99](http://www.pracdev.org/channel99/) - Random Streams
|
||||
* [EXP TV](https://exptv.org/) - Rare / Vintage / Obscure Media Stream
|
||||
* [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
|
||||
|
@ -405,60 +386,65 @@
|
|||
## ▷ Live Sports
|
||||
|
||||
* 🌐 **[/sport calendars/](https://rentry.co/sportcalendars)** - Importable Sports Calendars
|
||||
* ⭐ **[Streamed](https://streamed.su/)** - Sports / [Discord](https://discord.gg/streamed)
|
||||
* ⭐ **[PPV.land](https://ppv.land/)** - Sports / Live Events / [Discord](https://discord.gg/cSDJu4juQx)
|
||||
* ⭐ **[SportyHunter](https://sportyhunter.com/)** - Sports / Stream Aggregator / [Discord](https://discord.gg/zbxWcejadm)
|
||||
* ⭐ **[WatchSports](https://watchsports.to/)** - Sports / Stream Aggregator
|
||||
* ⭐ **[Sports Plus](https://en12.sportplus.live/)** - Sports
|
||||
* ⭐ **[VIP Box Sports](https://www.viprow.nu/)**, [2](https://vipleague.im/), [3](https://www.vipbox.lc/), [4](https://www.vipleague.pm/) - Sports / [More Links](https://rentry.org/894dq2c9)
|
||||
* ⭐ **[RBTV77](https://www.rbtv77.work/)** - Sports
|
||||
* ⭐ **[SportsHub](https://sportshub.stream/)**, [2](https://soccer9.sportshub.stream/) - Sports
|
||||
* ⭐ **[TotalSportek.to](https://www.totalsportek.to/)**, [2](https://totalsportek.me/) - Sports / Stream Aggregator
|
||||
* ⭐ **[OlympicStreams](https://olympicstreams.co/)** - Sports
|
||||
* ⭐ **[Sportsurge](https://v2.sportsurge.net/home5/)** - Sports / Stream Aggregator
|
||||
* ⭐ **[Streamed](https://streamed.su/)** / [Discord](https://discord.gg/streamed)
|
||||
* ⭐ **[PPV.land](https://ppv.land/)** - Live Events / [Discord](https://discord.gg/cSDJu4juQx)
|
||||
* ⭐ **[SportyHunter](https://sportyhunter.com/)** - Stream Aggregator / [Discord](https://discord.gg/zbxWcejadm)
|
||||
* ⭐ **[WatchSports](https://watchsports.to/)** - Stream Aggregator
|
||||
* ⭐ **[Sports Plus](https://en12.sportplus.live/)**
|
||||
* ⭐ **[VIP Box Sports](https://www.viprow.nu/)**, [2](https://vipleague.im/), [3](https://www.vipbox.lc/), [4](https://www.vipleague.pm/) / [More Links](https://rentry.org/894dq2c9)
|
||||
* ⭐ **[RBTV77](https://www.rbtv77.work/)**
|
||||
* ⭐ **[TotalSportek.to](https://www.totalsportek.to/)**, [2](https://totalsportek.me/) - Stream Aggregator
|
||||
* ⭐ **[SportsHub](https://sportshub.stream/)**, [2](https://soccer9.sportshub.stream/)
|
||||
* ⭐ **[OlympicStreams](https://olympicstreams.co/)**
|
||||
* ⭐ **[Sportsurge](https://v2.sportsurge.net/home5/)** - Stream Aggregator
|
||||
* ⭐ **[WeAreChecking](https://wearechecking.live/)** - Motorsports / Football / [Discord](https://discord.com/invite/wearechecking)
|
||||
* [StreamEast](https://www.streameast.sk/v8/) - Sports / [Mirrors](https://gostreameast.link/)
|
||||
* [TotalSportek](https://totalsportek.at/), [2](https://streameast.cz/) - Sports
|
||||
* [MutStreams](https://mutstreams.com) - Sports
|
||||
* [HydraHD Sports](https://hydrahd.me/livesports) - Sports
|
||||
* [RiveStream](https://rivestream.org/livesports) - Sports
|
||||
* [AlienFlix Sports](https://alienflix.net/live/matches) -
|
||||
* [Bingeflex Sports](https://bingeflex.vercel.app/livesports) - Sports
|
||||
* [Sportsurge.club](https://sportsurge.club/) - Sports / Stream Aggregator
|
||||
* [TFLIX](https://tv.tflix.app/) - Sports
|
||||
* [Sportea](https://s1.sportea.link/) - Sports
|
||||
* [SportOnTV](https://sportontv.xyz/) - Sports / [Discord](https://discord.gg/YhQPSSMps2)
|
||||
* [Cineby Live](https://www.cineby.app/livestream) - Sports / [Discord](https://discord.gg/C2zGTdUbHE) (unofficial)
|
||||
* [1Stream](https://1stream.eu/) - Sports
|
||||
* [FSL](https://freestreams-live.mp/) - Sports / [Discord](https://discord.gg/eXXJzDPchU)
|
||||
* [KobeStreams](http://watchkobestreams.info/) - Sports / [Discord](https://discord.com/invite/SEmFE8bdtR)
|
||||
* [720pStream](https://720pstream.nu/) - Sports
|
||||
* [BuffStream](https://app.buffstream.io/) - Sports
|
||||
* [GiveMeRedditStreams](https://givemeredditstreams.xyz/) - Sports
|
||||
* [LiveTV](https://livetv.sx/enx/) - Sports
|
||||
* [Strims](https://strimsy.top/) - Sports
|
||||
* [Sport365](https://sport365.stream/) - Sports / Stream Aggregator
|
||||
* [RedditSport](https://redditsport.cc/) - Sports
|
||||
* [Raket TV](https://rakettvv.blogspot.com/), [2](https://www.rakettv.win/) - Sports
|
||||
* [CrackStreams](https://crackstreams.blog/) - Sports
|
||||
* [BuffStreams](https://buffstreams.app/) - Sports
|
||||
* [SportHD](https://sporthd.live/) - Sports
|
||||
* [NET3LIX](https://net3lix.world/live) - Sports / [Discord](https://discord.gg/bstJfQT3AZ)
|
||||
* [SportsOnline](https://sportsonline.gl/) - Sports
|
||||
* [WorldStreams](https://worldstreams.net/) - Sports
|
||||
* [StreamLiveTV](https://streamlivetv.site/) - Sports
|
||||
* [StrikeOut](https://strikeout.im/) - Sports
|
||||
* [HesGoal](https://www.hesgoal.watch/) - Sports
|
||||
* [SportsFee24](https://sportsfeed24.com/) - Sports
|
||||
* [Sport-TV](https://sport-tv.live/) - Sports
|
||||
* [SportsBay](https://www.sportsbay.dk/) - Sports
|
||||
* [DudeStream](https://www.dudestream.com/) - Sports
|
||||
* [DaddyLiveHD](https://daddylivehd1.click/) - Sports
|
||||
* [BuffSports](https://buffsports.me/) - Sports
|
||||
* [CricHD.com](https://crichd.com.ua/), [2](https://crichd.com.co/) - Sports
|
||||
* [CricHDPlayer](https://new.crichd.tv/) - Sports
|
||||
* [StreamEast](https://www.streameast.sk/v8/) / [Mirrors](https://gostreameast.link/)
|
||||
* [TotalSportek](https://totalsportek.at/), [2](https://streameast.cz/)
|
||||
* [MrGamingStreams](https://mrgamingstreams.app/) / [Discord](https://discord.gg/BCtqVn5JKR)
|
||||
* [MutStreams](https://mutstreams.com)
|
||||
* [HydraHD Sports](https://hydrahd.ac/livesports)
|
||||
* [RiveStream](https://rivestream.org/livesports)
|
||||
* [AlienFlix Sports](https://alienflix.net/live/matches)
|
||||
* [NunFlix Sports](https://nunflix.org/sports)
|
||||
* [VidBox Sports](https://vidbox.to/sports)
|
||||
* [Bingeflex Sports](https://bingeflex.vercel.app/livesports)
|
||||
* [Broflix Sports](https://broflix.ci/live/sports)
|
||||
* [Sportsurge.club](https://sportsurge.club/) - Stream Aggregator
|
||||
* [TFLIX](https://tv.tflix.app/)
|
||||
* [Sportea](https://s1.sportea.link/)
|
||||
* [SportOnTV](https://sportontv.xyz/) / [Discord](https://discord.gg/YhQPSSMps2)
|
||||
* [Cineby Live](https://www.cineby.app/livestream) / [Discord](https://discord.gg/C2zGTdUbHE) (unofficial)
|
||||
* [1Stream](https://1stream.eu/)
|
||||
* [FSL](https://freestreams-live.mp/) / [Discord](https://discord.gg/eXXJzDPchU)
|
||||
* [KobeStreams](http://watchkobestreams.info/) / [Discord](https://discord.com/invite/SEmFE8bdtR)
|
||||
* [720pStream](https://720pstream.nu/)
|
||||
* [BuffStream](https://app.buffstream.io/)
|
||||
* [GiveMeRedditStreams](https://givemeredditstreams.xyz/)
|
||||
* [LiveTV](https://livetv.sx/enx/)
|
||||
* [Strims](https://strimsy.top/)
|
||||
* [SportsLive](https://sportslive.me/)
|
||||
* [Sport365](https://sport365.stream/) - Stream Aggregator
|
||||
* [RedditSport](https://redditsport.cc/)
|
||||
* [Raket TV](https://rakettvv.blogspot.com/), [2](https://www.rakettv.win/)
|
||||
* [CrackStreams](https://crackstreams.blog/)
|
||||
* [BuffStreams](https://buffstreams.app/)
|
||||
* [SportHD](https://sporthd.live/)
|
||||
* [NET3LIX](https://net3lix.world/live) / [Discord](https://discord.gg/bstJfQT3AZ)
|
||||
* [SportsOnline](https://sportsonline.gl/)
|
||||
* [WorldStreams](https://worldstreams.net/)
|
||||
* [StreamLiveTV](https://streamlivetv.site/)
|
||||
* [StrikeOut](https://strikeout.im/)
|
||||
* [HesGoal](https://www.hesgoal.watch/)
|
||||
* [SportsFee24](https://sportsfeed24.com/)
|
||||
* [Sport-TV](https://sport-tv.live/)
|
||||
* [SportsBay](https://www.sportsbay.dk/)
|
||||
* [DudeStream](https://www.dudestream.com/)
|
||||
* [DaddyLiveHD](https://daddylivehd1.click/)
|
||||
* [BuffSports](https://buffsports.me/)
|
||||
* [CricHD.com](https://crichd.com.ua/), [2](https://crichd.com.co/)
|
||||
* [CricHDPlayer](https://new.crichd.tv/)
|
||||
* [AntenaCentral](https://antenacentral.store/) - Direct Live Sports Links
|
||||
* [Rojadirecta](http://www.rojadirecta.eu/) - Sports / Stream Aggregator / [Forum](http://forum.rojadirecta.es/)
|
||||
* [Rojadirecta](http://www.rojadirecta.eu/) - Stream Aggregator / [Forum](http://forum.rojadirecta.es/)
|
||||
* [NBAMonster](https://nbamonster.com/) - Basketball
|
||||
* [NBABite](https://index.nbabite.com/) - Basketball
|
||||
* [NFLHunter](https://nflhunter.com/) - American Football
|
||||
|
@ -471,6 +457,7 @@
|
|||
* [MMA Streams](https://tonight.mmastreams.cc/) - MMA / Stream Aggregator
|
||||
* [StarLive](https://starlive.click/) - Rare MMA Events
|
||||
* [FootyBite](https://www1.footybite.cc/) - Football
|
||||
* [footybite.bz](https://footybite.bz/) - Football
|
||||
* [SoccerOnline](https://socceronline.me/) - Football
|
||||
* [Streamtonfoot](https://streamtonfoot.vercel.app/) - Football
|
||||
* [FlickSoccer](https://flicksoccer.com/) - Football
|
||||
|
@ -507,6 +494,7 @@
|
|||
* [AllReplays](https://allreplays.com/) - Sports Replays
|
||||
* [Classic Sports Fanatic](https://www.youtube.com/@classicsportsfanatic7183/playlists) - Full Classic Sports Replays
|
||||
* [NFL Video](https://nfl-video.com/), [2](https://nfl-replays.com/) - American Football
|
||||
* [BasketballReplays](https://basketballreplays.net/) - Basketball Replays
|
||||
* [MLBLive](https://mlblive.net/) - Baseball Replays
|
||||
* [Steves Classic Baseball](https://www.youtube.com/playlist?list=PLbbmEcFXHSnOHeJdpQr0K808cPVzP0t_B) - Baseball Replays
|
||||
* [FootballOrigin](https://www.footballorgin.com/) - Football Replays
|
||||
|
@ -574,6 +562,7 @@
|
|||
* [smart-tv-telegram](https://github.com/andrew-ld/smart-tv-telegram) - Stream Media from iOS to Smart TV
|
||||
* [ChanSort](https://github.com/PredatH0r/ChanSort) - TV Channel List Editor for Samsung, LG, etc.
|
||||
* [Samsung Smart TV Adblock](https://redd.it/gn7fw5) - Block Samsung Smart TV Ads
|
||||
* [tvQuickActions](https://rentry.co/FMHYBase64#tvquickactions) - Remote Button Remapper
|
||||
|
||||
***
|
||||
|
||||
|
@ -587,8 +576,9 @@
|
|||
* [PStoreTV](https://rentry.co/PStoreTV) - How to Open Google Play on Android TV
|
||||
* [TCL Browser](https://play.google.com/store/apps/details?id=com.tcl.browser) - Ad-Free Android TV Browsers
|
||||
* [Serenity Android](https://github.com/NineWorlds/serenity-android) - Plex / Emby Android TV App
|
||||
* [Send Files to TV](https://sendfilestotv.app/) - Send Files to Android TV
|
||||
* [atvTools](https://rentry.co/FMHYBase64#atvtools) - Install Apps, Run ADB, Shell Commands, etc.
|
||||
* [Leanback on Fire](https://github.com/tsynik/LeanbackLauncher) or [Projectivy Launcher](https://play.google.com/store/apps/details?id=com.spocky.projengmenu) - Android TV Launchers
|
||||
* [Launcher Manager](https://xdaforums.com/t/app-firetv-noroot-launcher-manager-change-launcher-without-root.4176349/) - Change Default Launcher
|
||||
|
||||
***
|
||||
|
||||
|
@ -608,25 +598,23 @@
|
|||
|
||||
* ↪️ **[General DDL Sites](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/download)**
|
||||
* ↪️ **[Video Download Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/video-tools#wiki_.25BA_video_download)**
|
||||
* ⭐ **[OOMoye](https://oomoye.guru/)** - Movies / TV / Anime / Some NSFW
|
||||
* ⭐ **[OOMoye](https://www.oomoye.me/)** - Movies / TV / Anime / Some NSFW
|
||||
* ⭐ **[VegaMovies](https://vegamovies.rs/)** - Movies / TV / Anime / 4K / [Telegram](https://telegram.dog/vega_officials)
|
||||
* ⭐ **[RgShows](https://www.rgshows.me/)** - Movies / TV / Anime / [Guide](https://www.rgshows.me/guide.html) / [Discord](https://discord.com/invite/rgshows)
|
||||
* ⭐ **[RgShows](https://www.rgshows.me/)** - Movies / TV / Anime / 4K / [Guide](https://www.rgshows.me/guide.html) / [Discord](https://discord.com/invite/rgshows)
|
||||
* ⭐ **[Rive](https://rivestream.org/)**, [2](https://rivestream.xyz/), [3](https://cinemaos-v2.vercel.app/) - Movies / TV / Anime / 4K / [Status](https://rentry.co/rivestream) / [Discord](https://discord.gg/6xJmJja8fV)
|
||||
* ⭐ **[MovieParadise](https://movieparadise.org/)** - Movies / TV / [Signup Code (Important)](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#movieparadise-code) / [Leech](https://fastdebrid.com/)
|
||||
* ⭐ **[Pahe](https://pahe.ink/)** - Movies / TV / Anime / 4K / [Ad-Bypass (Must Have)](https://greasyfork.org/en/scripts/443277) / [Discord](https://discord.gg/4AvaCsd2J4)
|
||||
* ⭐ **[MovieParadise](https://movieparadise.org/)** - Movies / TV / [Sign-Up Code (Important)](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#movieparadise-code) / [Leech](https://fastdebrid.com/)
|
||||
* ⭐ **[Drama Day](https://dramaday.me/)** - Asian Drama
|
||||
* ⭐ **[MKVDrama](https://mkvdrama.org/)** - Asian Drama
|
||||
* ⭐ **[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 / Signup Required / [Discord](https://discord.com/invite/FKT2rMCfUW)
|
||||
* [KatMovieHD](https://katworld.net/?type=KatmovieHD) - Movies / TV / Anime
|
||||
* [KatMovie4k](https://katworld.net/?type=Katmovie4k) - Movies / TV / 4K
|
||||
* [PSARips](https://psa.wf/) - Movies / TV / 4K / Enable `AdGuard – Ads` in uBO
|
||||
* [Pahe](https://pahe.ink/) - Movies / TV / Anime / 4K / [Ad-Bypass](https://greasyfork.org/en/scripts/443277) / [Discord](https://discord.gg/4AvaCsd2J4)
|
||||
* [DDLBase](https://ddlbase.com/) - Movies / TV / 4K
|
||||
* [StagaTV](https://www.stagatv.com/) - Movies / TV
|
||||
* [LightDLMovies](https://lightdl.xyz/) - Movies / TV / **[Use Adblocker](https://github.com/fmhy/FMHY/wiki/FMHY%E2%80%90Notes.md#lightdlmovies-note)**
|
||||
* [OlaMovies](http://app2.olamovies.download/) - Movies / TV / 4K / Use Adblocker / [Telegram](https://telegram.me/olamovies_officialv69)
|
||||
* [Cineby](https://www.cineby.app/), [2](https://www.bitcine.app/) - Movies / TV / Anime / 4K / Auto-Next / [Discord](https://discord.gg/C2zGTdUbHE) (unofficial)
|
||||
* [SkyMovies](https://skymovieshd.li/) - Movies / TV / Anime / Some NSFW
|
||||
* [Movies Ni Pipay](https://moviesnipipay.me/) - Movies / TV
|
||||
* [HDRush](https://hdrush.cc/) - Movie / TV / [Telegram](https://t.me/hdrushxyz)
|
||||
* [RLSXTVT](https://rlsxtvt.icu/) - Movies / TV
|
||||
|
@ -651,7 +639,6 @@
|
|||
* [Best-MovieZ](https://www.best-moviez.ws/) - Movies / TV
|
||||
* [SeriezLoaded NG](https://www.seriezloaded.com.ng/) - Movies / TV
|
||||
* [ShareMania](https://sharemania.us/) - Movies / TV / 4K
|
||||
* [Google Drive Movies](https://databasegdriveplayer.co/movie.php), [TV](https://databasegdriveplayer.co/series.php), [Anime](https://databasegdriveplayer.co/anime.php), [KDrama](https://databasegdriveplayer.co/drama.php) - Movies / TV / Anime / 720p
|
||||
* [ShareBB](https://sharebb.me/) - Movies / TV
|
||||
* [SD Toons](https://sdtoons.in) - Movies / TV / Anime
|
||||
* [PrivateMovieZ](https://privatemoviez.help/) - Movies / TV
|
||||
|
@ -681,11 +668,10 @@
|
|||
|
||||
* ⭐ **[StarK ClouD](https://rentry.co/FMHYBase64#stark-cloud)** - Movies / TV / 4K / [Telegram](https://t.me/starkmediahub)
|
||||
* ⭐ **[PK Movies](https://rentry.co/FMHYBase64#pk-movies)** - Movies / TV / Anime
|
||||
* ⭐ **[datadiff](https://rentry.co/FMHYBase64#datadiff)** - Movies / TV / Anime
|
||||
* [Vadapav](https://rentry.co/FMHYBase64#vadapav) - Movies / TV
|
||||
* [One Eighty Eight](https://rentry.co/FMHYBase64#one-eighty-eight) - Movies / TV
|
||||
* [GDex](https://rentry.co/FMHYBase64#gdex) - Movies / TV
|
||||
* [ProSearch4Bot](https://t.me/ProSearch4Bot) - Movies / DDL Telegram
|
||||
* [ProSearch4Bot](https://t.me/ProSearch4Bot) - Movies / Telegram
|
||||
* [SeriesBayX](https://t.me/SeriesBayX) - TV / Telegram
|
||||
* [SolidarityCinema](https://www.solidaritycinema.com/) - Movies
|
||||
* [Sinflix](https://rentry.co/FMHYBase64#sinflix) - Asian Drama
|
||||
|
||||
|
@ -701,7 +687,7 @@
|
|||
* 🌐 **[EverythingMoe](https://everythingmoe.com/#section-download)**, [2](https://everythingmoe.org/#section-download) - Anime DDL Index / [Subreddit](https://www.reddit.com/r/everythingmoe/) / [Discord](https://discord.gg/GuueaDgKdS)
|
||||
* 🌐 **[The Index DDL](https://theindex.moe/collection/ddl-communities)** - Anime DDL Sites / [Discord](https://discord.gg/snackbox) / [Wiki](https://thewiki.moe/)
|
||||
* ↪️ **[Telegram Anime Downloads](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_telegram_anime_downloads)**
|
||||
* ⭐ **[Tokyo Insider](https://www.tokyoinsider.com/)** - Sub / Dub
|
||||
* ⭐ **[Tokyo Insider](https://www.tokyoinsider.com/)** - Sub / Dub / [Bulk Downloader](https://github.com/MaJoRX0/Tokyo-Downloader)
|
||||
* ⭐ **[hi10anime](https://hi10anime.com/)** - Sub / [Discord](https://discord.gg/uZ85cbAg4T)
|
||||
* ⭐ **[Flugel Anime](https://rentry.co/FMHYBase64#flugel-anime)** - Sub
|
||||
* ⭐ **[Kayoanime](https://kayoanime.com/)** - Sub / Dub / [Telegram](https://t.me/AnimeKayo)
|
||||
|
@ -734,7 +720,7 @@
|
|||
|
||||
* 🌐 **[Autodownload Tools](https://redd.it/hbwnb2)** - List of Torrent Autodownload Tools / [Multi Installer](https://github.com/LordZeuss/arr-installer) / [Automation Scripts](https://github.com/RandomNinjaAtk/arr-scripts/)
|
||||
* ↪️ **[Remote Torrenting Services](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/torrent#wiki_.25B7_remote_torrenting)** - Torrent Remotely Without Needing VPN
|
||||
* ⭐ **[Stremio](https://www.stremio.com/)** - Torrent Streaming App / [Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/video/#wiki_.25B7_stremio_tools)
|
||||
* ⭐ **[Stremio](https://www.stremio.com/)** - Torrent Streaming App / [Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/video/#wiki_.25B7_stremio_tools) / [Subreddit](https://www.reddit.com/r/Stremio/)
|
||||
* ⭐ **[Prowlarr](https://github.com/Prowlarr/Prowlarr)**, **[Jackett](https://github.com/Jackett/Jackett)**, [nefarious](https://lardbit.github.io/nefarious/), [Traktarr](https://github.com/l3uddz/traktarr), [FlexGet](https://flexget.com/), [/r/softwarr](https://reddit.com/r/softwarr) or [Watcher](https://nosmokingbandit.github.io/) - Autodownload Torrents
|
||||
* ⭐ **[Radarr](https://radarr.video/)** - Autodownload Movie Torrents / [Auto-Subtitles](https://www.bazarr.media/) / [GitHub](https://github.com/Radarr/Radarr)
|
||||
* ⭐ **[Sonarr](https://sonarr.tv/)** / [GitHub](https://github.com/Sonarr/Sonarr), [SickGear](https://github.com/SickGear/SickGear), [SiCKRAGE](https://github.com/SiCKRAGE/SiCKRAGE), [DuckieTV](https://schizoduckie.github.io/DuckieTV/) or [Medusa](https://pymedusa.com/) - Autodownload TV Torrents / [Guide](https://wiki.servarr.com/) / [Auto-Subtitles](https://www.bazarr.media/)
|
||||
|
@ -747,7 +733,7 @@
|
|||
* [NotFlix](https://github.com/Bugswriter/notflix) - Torrent Streaming Script
|
||||
* [Magnet Player](https://ferrolho.github.io/magnet-player/) - Stream Torrents in Browser
|
||||
* [Bobarr](https://github.com/iam4x/bobarr) or [Nefarious](https://github.com/lardbit/nefarious) - Movie / TV Autodownload / [Discord](https://discord.gg/PFwM4zk)
|
||||
* [SickChill](https://sickchill.github.io/) / [GitHub](https://github.com/SickChill/SickChill) or [CouchPotato](https://couchpota.to/) - Automatic Torrent / NZB Searching, Downloading & Processing
|
||||
* [SickChill](https://sickchill.github.io/) - Automatic Torrent / NZB Searching, Downloading & Processing / [GitHub](https://github.com/SickChill/SickChill)
|
||||
* [GMDB](https://github.com/Dentrax/GMDB), [PeerFlix](https://github.com/mafintosh/peerflix) / [Server](https://github.com/asapach/peerflix-server) - Torrent Streaming CLIs
|
||||
* [Autosearch Extension](https://github.com/trossr32/sonarr-radarr-lidarr-autosearch-browser-extension) - Sonarr/Radarr/Lidarr Autosearch Extension
|
||||
* [Unpackerr](https://unpackerr.zip/) - Automated Archive Extraction
|
||||
|
@ -777,7 +763,7 @@
|
|||
* ⭐ **[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)
|
||||
* ⭐ **[Rive](https://rivestream.org/)**, [2](https://rivestream.xyz/), [3](https://cinemaos-v2.vercel.app/) - Movies / TV / Anime 4K / [Status](https://rentry.co/rivestream) / [Discord](https://discord.gg/6xJmJja8fV)
|
||||
* ⭐ **[Heartive](https://heartive.pages.dev/)** - Movies / TV / Anime / Magnets on Files
|
||||
* ⭐ **[Kinozal](https://kinozal.tv/)** - Movies / TV / 4K / Signup Required
|
||||
* ⭐ **[Kinozal](https://kinozal.tv/)** - Movies / TV / 4K / Sign-Up Required
|
||||
* ⭐ **[EZTV](https://eztvx.to/)** - TV / Anime
|
||||
* ⭐ **[Video Torrent CSE](https://cse.google.com/cse?cx=006516753008110874046:gaoebxgop7j)**
|
||||
* [RGShows](https://www.rgshows.me/torrent/) or [Broflix](https://broflix.ci/) - Multi-Site Search
|
||||
|
@ -798,9 +784,9 @@
|
|||
|
||||
## ▷ Anime Torrenting
|
||||
|
||||
* ⭐ **[Nyaa](https://nyaa.si/)**, [2](https://nyaa.iss.one/) [3](https://nyaa.iss.ink/) - Sub / Dub
|
||||
* ⭐ **[Nyaa](https://nyaa.si/)**, [2](https://nyaa.iss.one/), [3](https://nyaa.iss.ink/) - Sub / Dub
|
||||
* ⭐ **Nyaa Tools** - [TUI](https://github.com/Beastwick18/nyaa) / [CLI](https://github.com/johnvictorfs/nyaa-cli) / [Telegram Bot](https://github.com/ejnshtein/nyaasi-bot), [2](https://t.me/meow_in_japanese_bot), [2](https://t.me/NyaaTorrents) / [Python Wrapper](https://github.com/JuanjoSalvador/NyaaPy) / [Torrent Fetch](https://github.com/daynum/nyaabag), [2](https://nyaaapi.onrender.com/docs) / [Downloader](https://github.com/marcpinet/nyaadownloader) / [Quality Tags](https://greasyfork.org/en/scripts/441017-nyaablue)
|
||||
* ⭐ **[Miru](https://miru.watch/)** or [Migu](https://miguapp.pages.dev/) - Stream Anime Torrents
|
||||
* ⭐ **[Miru](https://miru.watch/)** / [Discord](https://discord.com/invite/Z87Nh7c4Ac) or [Migu](https://miguapp.pages.dev/) - Stream Anime Torrents
|
||||
* [AnimeTosho](https://animetosho.org/) - Sub / Dub
|
||||
* [TokyoTosho](https://www.tokyotosho.info/) - Sub
|
||||
* [ShanaProject](https://www.shanaproject.com/) - Sub
|
||||
|
@ -810,7 +796,7 @@
|
|||
* [Seanime](https://seanime.rahim.app/) - Anime Torrent App
|
||||
* [Anime Torrent CSE](https://cse.google.com/cse?cx=006516753008110874046:lamzt6ls4iz)
|
||||
* [SneeDex](https://sneedex.moe/) or [SeaDex](https://releases.moe/) / [Discord](https://discord.com/invite/jPeeZewWRn) - Anime Video Quality Guides
|
||||
* [Fansub Cartel](https://index.fansubcar.tel/) - Fansubbers Index
|
||||
* [Fansub Cartel](https://index.fansubcar.tel/), [2](https://docs.google.com/spreadsheets/d/1PJYwhjzLNPXV2X1np-S4rdZE4fb7pxp-QbHY1O0jH6Q/htmlview) - Fansubbers Index
|
||||
* [Play Anime](http://127.0.0.1:43110/1AnimePihDhcbVdK1nvnbSEtH4oKU8RAYG/), [2](https://proxy.zeronet.dev/1AnimePihDhcbVdK1nvnbSEtH4oKU8RAYG/) - Sub / [ZeroNet Required](https://zeronet.io/)
|
||||
|
||||
***
|
||||
|
@ -829,9 +815,9 @@
|
|||
* ⭐ **[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
|
||||
* ⭐ **[RatS](https://github.com/StegSchreck/RatS)** - Transfer Ratings between Services
|
||||
* ⭐ **[MyAnimeList](https://myanimelist.net/)** - Anime / [Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_myanimelist_tools)
|
||||
* ⭐ **[MyAnimeList](https://myanimelist.net/)** - Anime / [Tools](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/storage#wiki_myanimelist_tools) / [Discord](https://discord.com/invite/myanimelist)
|
||||
* ⭐ **[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
|
||||
* ⭐ **[serializd](https://www.serializd.com/)** - TV / Anime / [Discord](https://discord.com/invite/xNt4CNG7jK)
|
||||
* [Blu-ray.com](https://www.blu-ray.com/) or [High Def Digest](https://www.highdefdigest.com/) - DVD / Blu-ray Databases
|
||||
* [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)
|
||||
|
@ -885,7 +871,6 @@
|
|||
* [agoodmovietowatch](https://agoodmovietowatch.com/) - Movie Recommendations
|
||||
* [/r/MovieSuggestions](https://www.reddit.com/r/MovieSuggestions/) - Movie Recommendations
|
||||
* [MovieSync](https://movie-sync-app.web.app/) - Movie Recommendations
|
||||
* [CouchMoney](https://couchmoney.tv/) - Movie Recommendations for Trakt
|
||||
* [Cinetrii](https://cinetrii.com/) - Discover Movies with Similar Themes
|
||||
* [DateNightMovies](https://datenightmovies.com/) - Get Recommendations Based on 2 Movies
|
||||
* [Match-a-Movie](https://match-a-movie.com/) - Pick Movies with Friends
|
||||
|
@ -925,7 +910,7 @@
|
|||
* [Adjust Subs Like a Pro](https://graph.org/Adjust-subtitles-in-seconds-like-a-pro-07-17) - Subtitle Syncing Guide
|
||||
* [Subshifter](https://subshifter.bitsnbites.eu/), [subsync](https://github.com/sc0ty/subsync), [ffsubsync](https://github.com/smacke/ffsubsync), [autosubsync-mpv](https://github.com/joaquintorres/autosubsync-mpv) or [autosubsync](https://github.com/oseiskar/autosubsync) - Sync Subtitles
|
||||
* [asstosrt-wasm](https://sorz.github.io/asstosrt-wasm/) - ASS / SSA to SRT Subtitles Converter
|
||||
* [Revoldiv](https://revoldiv.com/), [pyTranscriber](https://pytranscriber.github.io/), [Auto-Subtitle](https://www.veed.io/tools/auto-subtitle-generator-online), [FreeSubtitlesAI](https://freesubtitles.ai/), [Whisper](https://huggingface.co/spaces/BatuhanYilmaz/Whisper-Auto-Subtitled-Video-Generator), [Vibe](https://thewh1teagle.github.io/vibe/) or [Turboscribe](https://turboscribe.ai/) - Video Transcribers
|
||||
* [WithSubtitles](https://withsubtitles.com/), [Revoldiv](https://revoldiv.com/), [pyTranscriber](https://pytranscriber.github.io/), [Auto-Subtitle](https://www.veed.io/tools/auto-subtitle-generator-online), [FreeSubtitlesAI](https://freesubtitles.ai/), [Whisper](https://huggingface.co/spaces/BatuhanYilmaz/Whisper-Auto-Subtitled-Video-Generator), [Vibe](https://thewh1teagle.github.io/vibe/) or [Turboscribe](https://turboscribe.ai/) - Video Transcribers
|
||||
* [TranslatesSubtitles](https://translatesubtitles.com/) or [GPTSubtitler](https://gptsubtitler.com/) - Translate Subtitles
|
||||
* [Auto Synced & Translated Dubs](https://github.com/ThioJoe/Auto-Synced-Translated-Dubs) - Create Translated Dubs
|
||||
* [SoniTranslate](https://github.com/R3gm/SoniTranslate) - Video Translator
|
||||
|
@ -973,7 +958,6 @@
|
|||
* ↪️ **[Media Soundtracks](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/audio#wiki_.25BA_media_soundtracks)**
|
||||
* ↪️ **[File Data Automation](https://www.reddit.com/r/FREEMEDIAHECKYEAH/wiki/file-tools#wiki_.25B7_data_automation)**
|
||||
* ⭐ **[FastStream](https://faststream.online/)** - Fragmentation Streaming Extension / [GitHub](https://github.com/Andrews54757/FastStream/)
|
||||
* ⭐ **[DeepSearch](https://deepsearch.mycelebs.com/movie)**, [WhatsatMovie](https://whatsatmovie.com/) or [What is My Movie?](https://www.whatismymovie.com/) - Find Movies via Descriptions
|
||||
* ⭐ **[OpenVideo](https://openvideofs.github.io)** or [Stream-Bypass](https://github.com/ByteDream/stream-bypass) - Use Streaming Sites in Ad-Free Player with Subs, Speed Control & More
|
||||
* ⭐ **[WhereYouWatch](https://whereyouwatch.com/latest-reports/)** or [/r/movieleaks](https://reddit.com/r/movieleaks) - Movie Leak Notifications
|
||||
* ⭐ **[BingeClock](https://www.bingeclock.com/)**, [Can I Binge?](https://canibinge.com/) or [tiii.me](https://tiii.me/) - TV Show Length Calculators
|
||||
|
@ -1002,6 +986,7 @@
|
|||
* [ProductPlacementBlog](https://productplacementblog.com/) - Product Placement Database
|
||||
* [WheresTheJump?](https://wheresthejump.com/) - Find Movie Jump Scares
|
||||
* [DMT](https://dmtalkies.com/) - Movies / TV Ending Explanations and Recaps
|
||||
* [WhatsatMovie](https://whatsatmovie.com/) or [What is My Movie?](https://www.whatismymovie.com/) - Find Movies via Descriptions
|
||||
* [Anime Skip](https://anime-skip.com/) - Auto Skip Anime Intros
|
||||
* [trace.moe](https://trace.moe/) - Anime Scene Reverse Image Search
|
||||
* [Anilinks](https://anilinks.neocities.org/) - Anime Related Site Index
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/**
|
||||
* Copyright (c) taskylizard. All rights reserved.
|
||||
* Copyright (c) 2025 taskylizard. Apache License 2.0.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
|
|
36
package.json
36
package.json
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
"name": "fmhy",
|
||||
"name": "@fmhy/website",
|
||||
"packageManager": "pnpm@9.12.2",
|
||||
"type": "module",
|
||||
"engines": {
|
||||
|
@ -16,9 +16,7 @@
|
|||
"docs:dev": "vitepress dev docs/",
|
||||
"docs:preview": "vitepress preview docs/",
|
||||
"format": "prettier -w --cache --check .",
|
||||
"lint": "biome lint .",
|
||||
"lint:fix": "biome lint . --write",
|
||||
"lint:fix:unsafe": "biome lint . --write --unsafe",
|
||||
"licenser": "deno run --allow-read jsr:@kt3k/license-checker@3.3.1/main",
|
||||
"og:dev": "x-satori -t ./docs/.vitepress/hooks/Template.vue -c ./.vitepress/hooks/satoriConfig.ts --dev"
|
||||
},
|
||||
"dependencies": {
|
||||
|
@ -26,44 +24,44 @@
|
|||
"@fmhy/components": "^0.0.3",
|
||||
"@headlessui/vue": "^1.7.23",
|
||||
"@resvg/resvg-js": "^2.6.2",
|
||||
"@vueuse/core": "^13.0.0",
|
||||
"consola": "^3.2.3",
|
||||
"feed": "^4.2.2",
|
||||
"itty-fetcher": "^0.9.4",
|
||||
"nitro-cors": "^0.7.1",
|
||||
"nitropack": "^2.10.4",
|
||||
"nitropack": "^2.11.6",
|
||||
"nprogress": "^0.2.0",
|
||||
"pathe": "^2.0.1",
|
||||
"unocss": "65.4.0",
|
||||
"vitepress": "^1.5.0",
|
||||
"vue": "^3.5.12",
|
||||
"reka-ui": "^2.1.1",
|
||||
"unocss": "66.1.0-beta.3",
|
||||
"vitepress": "^1.6.3",
|
||||
"vue": "^3.5.13",
|
||||
"x-satori": "^0.2.0",
|
||||
"zod": "^3.23.8"
|
||||
"zod": "^3.24.2"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@biomejs/biome": "^1.9.4",
|
||||
"@cloudflare/workers-types": "^4.20241230.0",
|
||||
"@ianvs/prettier-plugin-sort-imports": "^4.3.1",
|
||||
"@iconify-json/carbon": "^1.2.5",
|
||||
"@iconify-json/heroicons-solid": "^1.2.0",
|
||||
"@iconify-json/lucide": "^1.2.10",
|
||||
"@iconify-json/mdi": "^1.2.1",
|
||||
"@iconify-json/ph": "^1.2.2",
|
||||
"@iconify-json/simple-icons": "^1.2.12",
|
||||
"@iconify-json/twemoji": "^1.2.1",
|
||||
"@taskylizard/biome-config": "^1.0.5",
|
||||
"@iconify/utils": "^2.3.0",
|
||||
"@types/node": "^20.16.12",
|
||||
"@types/nprogress": "^0.2.3",
|
||||
"nitro-cloudflare-dev": "^0.2.1",
|
||||
"prettier": "^3.3.3",
|
||||
"nitro-cloudflare-dev": "^0.2.2",
|
||||
"prettier": "^3.5.3",
|
||||
"prettier-plugin-pkgsort": "^0.2.1",
|
||||
"prettier-plugin-tailwindcss": "^0.6.8",
|
||||
"sass": "^1.80.1",
|
||||
"stylelint": "^16.10.0",
|
||||
"stylelint-config-standard-scss": "^13.1.0",
|
||||
"typescript": "^5.6.3",
|
||||
"prettier-plugin-tailwindcss": "^0.6.11",
|
||||
"sass": "^1.85.1",
|
||||
"typescript": "^5.8.2",
|
||||
"unplugin-auto-import": "^0.18.3",
|
||||
"vite-plugin-optimize-exclude": "^0.0.1",
|
||||
"vite-plugin-terminal": "^1.2.0",
|
||||
"wrangler": "^3.99.0"
|
||||
"wrangler": "^3.114.1"
|
||||
},
|
||||
"pnpm": {
|
||||
"peerDependencyRules": {
|
||||
|
|
4296
pnpm-lock.yaml
generated
4296
pnpm-lock.yaml
generated
File diff suppressed because it is too large
Load diff
|
@ -1,7 +1,6 @@
|
|||
{
|
||||
"compilerOptions": {
|
||||
"verbatimModuleSyntax": true,
|
||||
"baseUrl": ".",
|
||||
"module": "esnext",
|
||||
"target": "esnext",
|
||||
"lib": ["DOM", "ESNext"],
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/**
|
||||
* Copyright (c) taskylizard. All rights reserved.
|
||||
* Copyright (c) 2025 taskylizard. Apache License 2.0.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
|
@ -14,6 +14,7 @@
|
|||
* limitations under the License.
|
||||
*/
|
||||
|
||||
import type { Rule } from 'unocss'
|
||||
import { colors, shortcuts } from '@fmhy/colors'
|
||||
import {
|
||||
defineConfig,
|
||||
|
@ -23,6 +24,38 @@ import {
|
|||
transformerDirectives
|
||||
} from 'unocss'
|
||||
|
||||
const colorScales = [
|
||||
'50',
|
||||
'100',
|
||||
'200',
|
||||
'300',
|
||||
'400',
|
||||
'500',
|
||||
'600',
|
||||
'700',
|
||||
'800',
|
||||
'900',
|
||||
'950'
|
||||
] as const
|
||||
|
||||
const colorPattern = Object.keys(colors).join('|')
|
||||
const createColorRules = (type: 'text' | 'bg' | 'border'): Rule[] => {
|
||||
const property =
|
||||
type === 'text'
|
||||
? 'color'
|
||||
: type === 'bg'
|
||||
? 'background-color'
|
||||
: 'border-color'
|
||||
|
||||
return colorScales.map(
|
||||
(scale) =>
|
||||
[
|
||||
new RegExp(`^${type}-(${colorPattern})-${scale}$`),
|
||||
([, color]) => ({ [property]: colors[color][scale] })
|
||||
] as const
|
||||
)
|
||||
}
|
||||
|
||||
export default defineConfig({
|
||||
content: {
|
||||
filesystem: ['.vitepress/config.mts', '.vitepress/constants.ts']
|
||||
|
@ -39,6 +72,30 @@ export default defineConfig({
|
|||
div: 'var(--vp-c-divider)'
|
||||
}
|
||||
},
|
||||
rules: [
|
||||
// Brand color utilities
|
||||
[
|
||||
/^brand-(\d+)$/,
|
||||
([, d]) => ({ color: `var(--vp-c-brand-${d})` })
|
||||
] as const,
|
||||
[
|
||||
/^bg-brand-(\d+)$/,
|
||||
([, d]) => ({ 'background-color': `var(--vp-c-brand-${d})` })
|
||||
] as const,
|
||||
[
|
||||
/^border-brand-(\d+)$/,
|
||||
([, d]) => ({ 'border-color': `var(--vp-c-brand-${d})` })
|
||||
] as const,
|
||||
[
|
||||
/^text-brand-(\d+)$/,
|
||||
([, d]) => ({ color: `var(--vp-c-brand-${d})` })
|
||||
] as const,
|
||||
|
||||
// Color scale utilities
|
||||
...createColorRules('text'),
|
||||
...createColorRules('bg'),
|
||||
...createColorRules('border')
|
||||
],
|
||||
presets: [
|
||||
presetUno(),
|
||||
presetAttributify(),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue